From 62cdf44afc6a23f7e316432c4cf3eb58ce25b305 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 14 Nov 2023 14:09:53 -0700 Subject: [PATCH 1/5] Add resstock arguments for various detailed schedules. --- measures/ResStockArguments/measure.rb | 43 ++++++++++++++++++ measures/ResStockArguments/measure.xml | 60 ++++++++++++++++++++++++-- measures/UpgradeCosts/measure.xml | 10 +---- 3 files changed, 102 insertions(+), 11 deletions(-) diff --git a/measures/ResStockArguments/measure.rb b/measures/ResStockArguments/measure.rb index 2eb9c3df52..18be818606 100644 --- a/measures/ResStockArguments/measure.rb +++ b/measures/ResStockArguments/measure.rb @@ -347,6 +347,26 @@ def arguments(model) arg.setDescription('Whether the heat pump uses the existing system as backup.') args << arg + arg = OpenStudio::Measure::OSArgument.makeStringArgument('heating_setpoint_schedule', false) + arg.setDisplayName('Heating Setpoint: Schedule CSV File Path') + arg.setDescription('Absolute/relative path of csv file containing user-specified detailed heating setpoint schedule.') + args << arg + + arg = OpenStudio::Measure::OSArgument.makeStringArgument('cooling_setpoint_schedule', false) + arg.setDisplayName('Cooling Setpoint: Schedule CSV File Path') + arg.setDescription('Absolute/relative path of csv file containing user-specified detailed cooling setpoint schedule.') + args << arg + + arg = OpenStudio::Measure::OSArgument.makeStringArgument('water_heater_setpoint_schedule', false) + arg.setDisplayName('Water Heater Setpoint: Schedule CSV File Path') + arg.setDescription('Absolute/relative path of csv file containing user-specified detailed water heater setpoint schedule.') + args << arg + + arg = OpenStudio::Measure::OSArgument.makeStringArgument('battery_schedule', false) + arg.setDisplayName('Battery: Schedule CSV File Path') + arg.setDescription('Absolute/relative path of csv file containing user-specified detailed battery schedule.') + args << arg + return args end @@ -731,6 +751,29 @@ def run(model, runner, user_arguments) end args[:rim_joist_assembly_r] = rim_joist_assembly_r + # Detailed Schedules + schedules_filepaths = [] + + if args[:heating_setpoint_schedule].is_initialized + schedules_filepaths << args[:heating_setpoint_schedule].get + end + + if args[:cooling_setpoint_schedule].is_initialized + schedules_filepaths << args[:cooling_setpoint_schedule].get + end + + if args[:water_heater_setpoint_schedule].is_initialized + schedules_filepaths << args[:water_heater_setpoint_schedule].get + end + + if args[:battery_schedule].is_initialized + schedules_filepaths << args[:battery_schedule].get + end + + if !schedules_filepaths.empty? + args[:schedules_filepaths] = schedules_filepaths.join(',') + end + args.each do |arg_name, arg_value| begin if arg_value.is_initialized diff --git a/measures/ResStockArguments/measure.xml b/measures/ResStockArguments/measure.xml index 04044e29db..226fc36a50 100644 --- a/measures/ResStockArguments/measure.xml +++ b/measures/ResStockArguments/measure.xml @@ -3,14 +3,21 @@ 3.1 res_stock_arguments c984bb9e-4ac4-4930-a399-9d23f8f6936a - 0f7806f4-076e-4db7-a108-a92a13539218 - 2023-10-10T21:15:02Z + 621b9745-cba5-4524-adca-a511df21411c + 2023-11-14T21:08:27Z 2C38F48B ResStockArguments ResStock Arguments Measure that pre-processes the arguments passed to the BuildResidentialHPXML and BuildResidentialScheduleFile measures. Passes in all arguments from the options lookup, processes them, and then registers values to the runner to be used by other measures. + + existing_hpxml_path + existing_hpxml_path + String + false + false + schedules_filepaths schedules_filepaths @@ -146,6 +153,13 @@ false false + + unit_multiplier + unit_multiplier + String + false + false + geometry_unit_type Geometry: Unit Type @@ -4660,6 +4674,14 @@ false false + + building_id + BuildingID + The ID of the HPXML Building. Only required if there are multiple Building elements in the HPXML file. Use 'ALL' to apply schedules to all the HPXML Buildings (dwelling units) of a multifamily building. + String + false + false + geometry_unit_cfa_bin Geometry: Unit Conditioned Floor Area Bin @@ -5138,6 +5160,38 @@ + + heating_setpoint_schedule + Heating Setpoint: Schedule CSV File Path + Absolute/relative path of csv file containing user-specified detailed heating setpoint schedule. + String + false + false + + + cooling_setpoint_schedule + Cooling Setpoint: Schedule CSV File Path + Absolute/relative path of csv file containing user-specified detailed cooling setpoint schedule. + String + false + false + + + water_heater_setpoint_schedule + Water Heater Setpoint: Schedule CSV File Path + Absolute/relative path of csv file containing user-specified detailed water heater setpoint schedule. + String + false + false + + + battery_schedule + Battery: Schedule CSV File Path + Absolute/relative path of csv file containing user-specified detailed battery schedule. + String + false + false + @@ -5161,7 +5215,7 @@ measure.rb rb script - EE32E37A + F5547CB6 constants.rb diff --git a/measures/UpgradeCosts/measure.xml b/measures/UpgradeCosts/measure.xml index 9d0e996b56..40cbb9c6f0 100644 --- a/measures/UpgradeCosts/measure.xml +++ b/measures/UpgradeCosts/measure.xml @@ -3,8 +3,8 @@ 3.1 upgrade_costs ef51212c-acc4-48d7-9b29-cf2a5c6c4449 - b7e23fcc-8201-463f-bb3b-cb6c5d2b15ef - 2023-11-08T14:37:22Z + 29804957-2795-4043-9d30-828aba72695d + 2023-11-14T21:08:27Z 9BF1E6AC UpgradeCosts Upgrade Costs @@ -173,12 +173,6 @@ test BD0C91AB - - SFD_2story_FB_UA_GRG_GSHP_ElecTanklessWH.xml - xml - test - 12672F1D - SFD_2story_PB_UA_ElecFurnace_ElecTankWH.osw osw From cd3dde0fa9dd13367cd77f9b574d9e87d4feb13f Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 14 Nov 2023 14:10:21 -0700 Subject: [PATCH 2/5] Assign detailed battery schedule for one existing option. --- resources/options_lookup.tsv | 25960 ++++++++++++++++----------------- 1 file changed, 12980 insertions(+), 12980 deletions(-) diff --git a/resources/options_lookup.tsv b/resources/options_lookup.tsv index e95075d8bf..7095e98fd5 100644 --- a/resources/options_lookup.tsv +++ b/resources/options_lookup.tsv @@ -1,12982 +1,12982 @@ -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 -ASHRAE IECC Climate Zone 2004 2A ResStockArguments site_iecc_zone=2A -ASHRAE IECC Climate Zone 2004 2B ResStockArguments site_iecc_zone=2B -ASHRAE IECC Climate Zone 2004 3A ResStockArguments site_iecc_zone=3A -ASHRAE IECC Climate Zone 2004 3B ResStockArguments site_iecc_zone=3B -ASHRAE IECC Climate Zone 2004 3C ResStockArguments site_iecc_zone=3C -ASHRAE IECC Climate Zone 2004 4A ResStockArguments site_iecc_zone=4A -ASHRAE IECC Climate Zone 2004 4B ResStockArguments site_iecc_zone=4B -ASHRAE IECC Climate Zone 2004 4C ResStockArguments site_iecc_zone=4C -ASHRAE IECC Climate Zone 2004 5A ResStockArguments site_iecc_zone=5A -ASHRAE IECC Climate Zone 2004 5B ResStockArguments site_iecc_zone=5B -ASHRAE IECC Climate Zone 2004 6A ResStockArguments site_iecc_zone=6A -ASHRAE IECC Climate Zone 2004 6B ResStockArguments site_iecc_zone=6B -ASHRAE IECC Climate Zone 2004 7A ResStockArguments site_iecc_zone=7 -ASHRAE IECC Climate Zone 2004 7AK ResStockArguments site_iecc_zone=7 -ASHRAE IECC Climate Zone 2004 7B ResStockArguments site_iecc_zone=7 -ASHRAE IECC Climate Zone 2004 8AK ResStockArguments site_iecc_zone=8 -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 Spot Vent Hour Hour1 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=1 -Bathroom Spot Vent Hour Hour10 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=10 -Bathroom Spot Vent Hour Hour11 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=11 -Bathroom Spot Vent Hour Hour12 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=12 -Bathroom Spot Vent Hour Hour13 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=13 -Bathroom Spot Vent Hour Hour14 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=14 -Bathroom Spot Vent Hour Hour15 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=15 -Bathroom Spot Vent Hour Hour16 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=16 -Bathroom Spot Vent Hour Hour17 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=17 -Bathroom Spot Vent Hour Hour18 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=18 -Bathroom Spot Vent Hour Hour19 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=19 -Bathroom Spot Vent Hour Hour2 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=2 -Bathroom Spot Vent Hour Hour20 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=20 -Bathroom Spot Vent Hour Hour21 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=21 -Bathroom Spot Vent Hour Hour22 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=22 -Bathroom Spot Vent Hour Hour23 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=23 -Bathroom Spot Vent Hour Hour3 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=3 -Bathroom Spot Vent Hour Hour4 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=4 -Bathroom Spot Vent Hour Hour5 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=5 -Bathroom Spot Vent Hour Hour6 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=6 -Bathroom Spot Vent Hour Hour7 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=7 -Bathroom Spot Vent Hour Hour8 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=8 -Bathroom Spot Vent Hour Hour9 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=9 -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_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_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_efficiency=0 ceiling_fan_quantity=0 ceiling_fan_cooling_setpoint_temp_offset=0 -Ceiling Fan None ResStockArguments ceiling_fan_present=false 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_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_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" -City "AL, Auburn" -City "AL, Birmingham" -City "AL, Decatur" -City "AL, Dothan" -City "AL, Florence" -City "AL, Gadsden" -City "AL, Hoover" -City "AL, Huntsville" -City "AL, Madison" -City "AL, Mobile" -City "AL, Montgomery" -City "AL, Phenix City" -City "AL, Tuscaloosa" -City "AR, Bentonville" -City "AR, Conway" -City "AR, Fayetteville" -City "AR, Fort Smith" -City "AR, Hot Springs" -City "AR, Jonesboro" -City "AR, Little Rock" -City "AR, North Little Rock" -City "AR, Pine Bluff" -City "AR, Rogers" -City "AR, Springdale" -City "AZ, Apache Junction" -City "AZ, Avondale" -City "AZ, Buckeye" -City "AZ, Bullhead City" -City "AZ, Casa Grande" -City "AZ, Casas Adobes" -City "AZ, Catalina Foothills" -City "AZ, Chandler" -City "AZ, Flagstaff" -City "AZ, Fortuna Foothills" -City "AZ, Gilbert" -City "AZ, Glendale" -City "AZ, Goodyear" -City "AZ, Green Valley" -City "AZ, Lake Havasu City" -City "AZ, Marana" -City "AZ, Maricopa" -City "AZ, Mesa" -City "AZ, Oro Valley" -City "AZ, Peoria" -City "AZ, Phoenix" -City "AZ, Prescott Valley" -City "AZ, Prescott" -City "AZ, San Tan Valley" -City "AZ, Scottsdale" -City "AZ, Sierra Vista" -City "AZ, Sun City West" -City "AZ, Sun City" -City "AZ, Surprise" -City "AZ, Tempe" -City "AZ, Tucson" -City "AZ, Yuma" -City "CA, Alameda" -City "CA, Alhambra" -City "CA, Aliso Viejo" -City "CA, Altadena" -City "CA, Anaheim" -City "CA, Antioch" -City "CA, Apple Valley" -City "CA, Arcadia" -City "CA, Arden-Arcade" -City "CA, Bakersfield" -City "CA, Baldwin Park" -City "CA, Bellflower" -City "CA, Berkeley" -City "CA, Beverly Hills" -City "CA, Brea" -City "CA, Brentwood" -City "CA, Buena Park" -City "CA, Burbank" -City "CA, Camarillo" -City "CA, Campbell" -City "CA, Carlsbad" -City "CA, Carmichael" -City "CA, Carson" -City "CA, Castro Valley" -City "CA, Cathedral City" -City "CA, Cerritos" -City "CA, Chico" -City "CA, Chino Hills" -City "CA, Chino" -City "CA, Chula Vista" -City "CA, Citrus Heights" -City "CA, Clovis" -City "CA, Colton" -City "CA, Compton" -City "CA, Concord" -City "CA, Corona" -City "CA, Costa Mesa" -City "CA, Covina" -City "CA, Culver City" -City "CA, Cupertino" -City "CA, Cypress" -City "CA, Daly City" -City "CA, Dana Point" -City "CA, Danville" -City "CA, Davis" -City "CA, Diamond Bar" -City "CA, Downey" -City "CA, Dublin" -City "CA, East Los Angeles" -City "CA, El Cajon" -City "CA, El Dorado Hills" -City "CA, El Monte" -City "CA, Elk Grove" -City "CA, Encinitas" -City "CA, Escondido" -City "CA, Fairfield" -City "CA, Florence-Graham" -City "CA, Florin" -City "CA, Folsom" -City "CA, Fontana" -City "CA, Fountain Valley" -City "CA, Fremont" -City "CA, Fresno" -City "CA, Fullerton" -City "CA, Garden Grove" -City "CA, Gardena" -City "CA, Gilroy" -City "CA, Glendale" -City "CA, Glendora" -City "CA, Hacienda Heights" -City "CA, Hanford" -City "CA, Hawthorne" -City "CA, Hayward" -City "CA, Hemet" -City "CA, Hesperia" -City "CA, Highland" -City "CA, Huntington Beach" -City "CA, Huntington Park" -City "CA, Indio" -City "CA, Inglewood" -City "CA, Irvine" -City "CA, La Habra" -City "CA, La Mesa" -City "CA, La Quinta" -City "CA, Laguna Niguel" -City "CA, Lake Elsinore" -City "CA, Lake Forest" -City "CA, Lakewood" -City "CA, Lancaster" -City "CA, Lincoln" -City "CA, Livermore" -City "CA, Lodi" -City "CA, Long Beach" -City "CA, Los Angeles" -City "CA, Lynwood" -City "CA, Madera" -City "CA, Manhattan Beach" -City "CA, Manteca" -City "CA, Martinez" -City "CA, Menifee" -City "CA, Merced" -City "CA, Milpitas" -City "CA, Mission Viejo" -City "CA, Modesto" -City "CA, Montebello" -City "CA, Monterey Park" -City "CA, Moreno Valley" -City "CA, Mountain View" -City "CA, Murrieta" -City "CA, Napa" -City "CA, National City" -City "CA, Newport Beach" -City "CA, North Highlands" -City "CA, Norwalk" -City "CA, Novato" -City "CA, Oakland" -City "CA, Oceanside" -City "CA, Ontario" -City "CA, Orange" -City "CA, Oxnard" -City "CA, Palm Desert" -City "CA, Palm Springs" -City "CA, Palmdale" -City "CA, Palo Alto" -City "CA, Pasadena" -City "CA, Perris" -City "CA, Petaluma" -City "CA, Pico Rivera" -City "CA, Pittsburg" -City "CA, Placentia" -City "CA, Pleasanton" -City "CA, Pomona" -City "CA, Porterville" -City "CA, Poway" -City "CA, Rancho Cordova" -City "CA, Rancho Cucamonga" -City "CA, Rancho Palos Verdes" -City "CA, Rancho Santa Margarita" -City "CA, Redding" -City "CA, Redlands" -City "CA, Redondo Beach" -City "CA, Redwood City" -City "CA, Rialto" -City "CA, Richmond" -City "CA, Riverside" -City "CA, Rocklin" -City "CA, Rohnert Park" -City "CA, Rosemead" -City "CA, Roseville" -City "CA, Rowland Heights" -City "CA, Sacramento" -City "CA, Salinas" -City "CA, San Bernardino" -City "CA, San Bruno" -City "CA, San Buenaventura Ventura" -City "CA, San Clemente" -City "CA, San Diego" -City "CA, San Francisco" -City "CA, San Jose" -City "CA, San Leandro" -City "CA, San Luis Obispo" -City "CA, San Marcos" -City "CA, San Mateo" -City "CA, San Rafael" -City "CA, San Ramon" -City "CA, Santa Ana" -City "CA, Santa Barbara" -City "CA, Santa Clara" -City "CA, Santa Clarita" -City "CA, Santa Cruz" -City "CA, Santa Maria" -City "CA, Santa Monica" -City "CA, Santa Rosa" -City "CA, Santee" -City "CA, Simi Valley" -City "CA, South Gate" -City "CA, South Lake Tahoe" -City "CA, South San Francisco" -City "CA, South Whittier" -City "CA, Stockton" -City "CA, Sunnyvale" -City "CA, Temecula" -City "CA, Thousand Oaks" -City "CA, Torrance" -City "CA, Tracy" -City "CA, Tulare" -City "CA, Turlock" -City "CA, Tustin" -City "CA, Union City" -City "CA, Upland" -City "CA, Vacaville" -City "CA, Vallejo" -City "CA, Victorville" -City "CA, Visalia" -City "CA, Vista" -City "CA, Walnut Creek" -City "CA, West Covina" -City "CA, West Hollywood" -City "CA, West Sacramento" -City "CA, Westminster" -City "CA, Whittier" -City "CA, Woodland" -City "CA, Yorba Linda" -City "CA, Yuba City" -City "CA, Yucaipa" -City "CO, Arvada" -City "CO, Aurora" -City "CO, Boulder" -City "CO, Broomfield" -City "CO, Castle Rock" -City "CO, Centennial" -City "CO, Colorado Springs" -City "CO, Commerce City" -City "CO, Denver" -City "CO, Englewood" -City "CO, Fort Collins" -City "CO, Grand Junction" -City "CO, Greeley" -City "CO, Highlands Ranch" -City "CO, Lakewood" -City "CO, Littleton" -City "CO, Longmont" -City "CO, Loveland" -City "CO, Parker" -City "CO, Pueblo" -City "CO, Thornton" -City "CO, Westminster" -City "CT, Bridgeport" -City "CT, Bristol" -City "CT, Danbury" -City "CT, East Hartford" -City "CT, Hartford" -City "CT, Meriden" -City "CT, Middletown" -City "CT, Milford City Balance" -City "CT, New Britain" -City "CT, New Haven" -City "CT, Norwalk" -City "CT, Norwich" -City "CT, Shelton" -City "CT, Stamford" -City "CT, Stratford" -City "CT, Torrington" -City "CT, Waterbury" -City "CT, West Hartford" -City "CT, West Haven" -City "DC, Washington" -City "DE, Dover" -City "DE, Wilmington" -City "FL, Alafaya" -City "FL, Altamonte Springs" -City "FL, Apopka" -City "FL, Aventura" -City "FL, Boca Raton" -City "FL, Bonita Springs" -City "FL, Boynton Beach" -City "FL, Bradenton" -City "FL, Brandon" -City "FL, Cape Coral" -City "FL, Carrollwood" -City "FL, Clearwater" -City "FL, Coconut Creek" -City "FL, Coral Gables" -City "FL, Coral Springs" -City "FL, Country Club" -City "FL, Dania Beach" -City "FL, Davie" -City "FL, Daytona Beach" -City "FL, Deerfield Beach" -City "FL, Delray Beach" -City "FL, Deltona" -City "FL, Doral" -City "FL, Dunedin" -City "FL, East Lake" -City "FL, Estero" -City "FL, Fort Lauderdale" -City "FL, Fort Myers" -City "FL, Fort Pierce" -City "FL, Fountainebleau" -City "FL, Four Corners" -City "FL, Gainesville" -City "FL, Greenacres" -City "FL, Hallandale Beach" -City "FL, Hialeah" -City "FL, Hollywood" -City "FL, Homestead" -City "FL, Jacksonville" -City "FL, Jupiter" -City "FL, Kendale Lakes" -City "FL, Kendall" -City "FL, Kissimmee" -City "FL, Lake Worth" -City "FL, Lakeland" -City "FL, Largo" -City "FL, Lauderhill" -City "FL, Lehigh Acres" -City "FL, Marco Island" -City "FL, Margate" -City "FL, Melbourne" -City "FL, Merritt Island" -City "FL, Miami Beach" -City "FL, Miami Gardens" -City "FL, Miami" -City "FL, Miramar" -City "FL, Naples" -City "FL, New Smyrna Beach" -City "FL, North Fort Myers" -City "FL, North Miami Beach" -City "FL, North Miami" -City "FL, North Port" -City "FL, Oakland Park" -City "FL, Ocala" -City "FL, Orlando" -City "FL, Ormond Beach" -City "FL, Palm Bay" -City "FL, Palm Beach Gardens" -City "FL, Palm Coast" -City "FL, Palm Harbor" -City "FL, Panama City Beach" -City "FL, Panama City" -City "FL, Pembroke Pines" -City "FL, Pensacola" -City "FL, Pine Hills" -City "FL, Pinellas Park" -City "FL, Plantation" -City "FL, Poinciana" -City "FL, Pompano Beach" -City "FL, Port Charlotte" -City "FL, Port Orange" -City "FL, Port St Lucie" -City "FL, Riverview" -City "FL, Riviera Beach" -City "FL, Sanford" -City "FL, Sarasota" -City "FL, Spring Hill" -City "FL, St Cloud" -City "FL, St Petersburg" -City "FL, Sun City Center" -City "FL, Sunny Isles Beach" -City "FL, Sunrise" -City "FL, Tallahassee" -City "FL, Tamarac" -City "FL, Tamiami" -City "FL, Tampa" -City "FL, The Hammocks" -City "FL, The Villages" -City "FL, Titusville" -City "FL, Town N Country" -City "FL, University" -City "FL, Venice" -City "FL, Wellington" -City "FL, Wesley Chapel" -City "FL, West Palm Beach" -City "FL, Weston" -City "FL, Winter Haven" -City "GA, Albany" -City "GA, Alpharetta" -City "GA, Athens-Clarke County Unified Government Balance" -City "GA, Atlanta" -City "GA, Augusta-Richmond County Consolidated Government Balance" -City "GA, Columbus" -City "GA, Dunwoody" -City "GA, East Point" -City "GA, Hinesville" -City "GA, Johns Creek" -City "GA, Mableton" -City "GA, Macon" -City "GA, Marietta" -City "GA, Newnan" -City "GA, North Atlanta" -City "GA, Rome" -City "GA, Roswell" -City "GA, Sandy Springs" -City "GA, Savannah" -City "GA, Smyrna" -City "GA, Valdosta" -City "GA, Warner Robins" -City "HI, East Honolulu" -City "HI, Hilo" -City "HI, Kailua" -City "HI, Urban Honolulu" -City "IA, Ames" -City "IA, Ankeny" -City "IA, Cedar Falls" -City "IA, Cedar Rapids" -City "IA, Council Bluffs" -City "IA, Davenport" -City "IA, Des Moines" -City "IA, Dubuque" -City "IA, Iowa City" -City "IA, Marion" -City "IA, Sioux City" -City "IA, Urbandale" -City "IA, Waterloo" -City "IA, West Des Moines" -City "ID, Boise City" -City "ID, Caldwell" -City "ID, Coeur Dalene" -City "ID, Idaho Falls" -City "ID, Meridian" -City "ID, Nampa" -City "ID, Pocatello" -City "ID, Twin Falls" -City "IL, Arlington Heights" -City "IL, Aurora" -City "IL, Belleville" -City "IL, Berwyn" -City "IL, Bloomington" -City "IL, Bolingbrook" -City "IL, Buffalo Grove" -City "IL, Calumet City" -City "IL, Carol Stream" -City "IL, Champaign" -City "IL, Chicago" -City "IL, Cicero" -City "IL, Crystal Lake" -City "IL, Decatur" -City "IL, Dekalb" -City "IL, Des Plaines" -City "IL, Downers Grove" -City "IL, Elgin" -City "IL, Elmhurst" -City "IL, Evanston" -City "IL, Glenview" -City "IL, Hoffman Estates" -City "IL, Joliet" -City "IL, Lombard" -City "IL, Moline" -City "IL, Mount Prospect" -City "IL, Naperville" -City "IL, Normal" -City "IL, Oak Lawn" -City "IL, Oak Park" -City "IL, Orland Park" -City "IL, Palatine" -City "IL, Peoria" -City "IL, Quincy" -City "IL, Rock Island" -City "IL, Rockford" -City "IL, Schaumburg" -City "IL, Skokie" -City "IL, Springfield" -City "IL, Tinley Park" -City "IL, Urbana" -City "IL, Waukegan" -City "IL, Wheaton" -City "IL, Wheeling" -City "IN, Anderson" -City "IN, Bloomington" -City "IN, Carmel" -City "IN, Columbus" -City "IN, Elkhart" -City "IN, Evansville" -City "IN, Fishers" -City "IN, Fort Wayne" -City "IN, Gary" -City "IN, Greenwood" -City "IN, Hammond" -City "IN, Indianapolis City Balance" -City "IN, Jeffersonville" -City "IN, Kokomo" -City "IN, Lafayette" -City "IN, Lawrence" -City "IN, Mishawaka" -City "IN, Muncie" -City "IN, New Albany" -City "IN, Noblesville" -City "IN, Portage" -City "IN, Richmond" -City "IN, South Bend" -City "IN, Terre Haute" -City "KS, Hutchinson" -City "KS, Kansas City" -City "KS, Lawrence" -City "KS, Lenexa" -City "KS, Manhattan" -City "KS, Olathe" -City "KS, Overland Park" -City "KS, Salina" -City "KS, Shawnee" -City "KS, Topeka" -City "KS, Wichita" -City "KY, Bowling Green" -City "KY, Covington" -City "KY, Lexington-Fayette" -City "KY, Louisville Jefferson County Metro Government Balance" -City "KY, Owensboro" -City "LA, Alexandria" -City "LA, Baton Rouge" -City "LA, Bossier City" -City "LA, Kenner" -City "LA, Lafayette" -City "LA, Lake Charles" -City "LA, Metairie" -City "LA, Monroe" -City "LA, New Orleans" -City "LA, Shreveport" -City "MA, Arlington" -City "MA, Attleboro" -City "MA, Barnstable Town" -City "MA, Beverly" -City "MA, Boston" -City "MA, Brockton" -City "MA, Brookline" -City "MA, Cambridge" -City "MA, Chicopee" -City "MA, Everett" -City "MA, Fall River" -City "MA, Fitchburg" -City "MA, Framingham" -City "MA, Haverhill" -City "MA, Holyoke" -City "MA, Lawrence" -City "MA, Leominster" -City "MA, Lowell" -City "MA, Lynn" -City "MA, Malden" -City "MA, Marlborough" -City "MA, Medford" -City "MA, Methuen Town" -City "MA, New Bedford" -City "MA, Newton" -City "MA, Peabody" -City "MA, Pittsfield" -City "MA, Quincy" -City "MA, Revere" -City "MA, Salem" -City "MA, Somerville" -City "MA, Springfield" -City "MA, Taunton" -City "MA, Waltham" -City "MA, Watertown Town" -City "MA, Westfield" -City "MA, Weymouth Town" -City "MA, Woburn" -City "MA, Worcester" -City "MD, Annapolis" -City "MD, Aspen Hill" -City "MD, Baltimore" -City "MD, Bel Air South" -City "MD, Bethesda" -City "MD, Bowie" -City "MD, Catonsville" -City "MD, Columbia" -City "MD, Dundalk" -City "MD, Ellicott City" -City "MD, Essex" -City "MD, Frederick" -City "MD, Gaithersburg" -City "MD, Germantown" -City "MD, Glen Burnie" -City "MD, Hagerstown" -City "MD, North Bethesda" -City "MD, Ocean City" -City "MD, Odenton" -City "MD, Potomac" -City "MD, Rockville" -City "MD, Severn" -City "MD, Silver Spring" -City "MD, Towson" -City "MD, Waldorf" -City "MD, Wheaton" -City "MD, Woodlawn" -City "ME, Bangor" -City "ME, Lewiston" -City "ME, Portland" -City "MI, Ann Arbor" -City "MI, Battle Creek" -City "MI, Bay City" -City "MI, Dearborn Heights" -City "MI, Dearborn" -City "MI, Detroit" -City "MI, Farmington Hills" -City "MI, Flint" -City "MI, Grand Rapids" -City "MI, Jackson" -City "MI, Kalamazoo" -City "MI, Kentwood" -City "MI, Lansing" -City "MI, Lincoln Park" -City "MI, Livonia" -City "MI, Midland" -City "MI, Muskegon" -City "MI, Novi" -City "MI, Pontiac" -City "MI, Portage" -City "MI, Rochester Hills" -City "MI, Roseville" -City "MI, Royal Oak" -City "MI, Saginaw" -City "MI, Southfield" -City "MI, St Clair Shores" -City "MI, Sterling Heights" -City "MI, Taylor" -City "MI, Troy" -City "MI, Warren" -City "MI, Westland" -City "MI, Wyoming" -City "MN, Apple Valley" -City "MN, Blaine" -City "MN, Bloomington" -City "MN, Brooklyn Park" -City "MN, Burnsville" -City "MN, Coon Rapids" -City "MN, Duluth" -City "MN, Eagan" -City "MN, Eden Prairie" -City "MN, Edina" -City "MN, Lakeville" -City "MN, Mankato" -City "MN, Maple Grove" -City "MN, Maplewood" -City "MN, Minneapolis" -City "MN, Minnetonka" -City "MN, Moorhead" -City "MN, Plymouth" -City "MN, Richfield" -City "MN, Rochester" -City "MN, Roseville" -City "MN, St Cloud" -City "MN, St Louis Park" -City "MN, St Paul" -City "MN, Woodbury" -City "MO, Blue Springs" -City "MO, Cape Girardeau" -City "MO, Chesterfield" -City "MO, Columbia" -City "MO, Florissant" -City "MO, Independence" -City "MO, Jefferson City" -City "MO, Joplin" -City "MO, Kansas City" -City "MO, Lees Summit" -City "MO, Ofallon" -City "MO, Springfield" -City "MO, St Charles" -City "MO, St Joseph" -City "MO, St Louis" -City "MO, St Peters" -City "MO, University City" -City "MS, Biloxi" -City "MS, Gulfport" -City "MS, Hattiesburg" -City "MS, Jackson" -City "MS, Meridian" -City "MS, Southaven" -City "MS, Tupelo" -City "MT, Billings" -City "MT, Bozeman" -City "MT, Butte-Silver Bow Balance" -City "MT, Great Falls" -City "MT, Missoula" -City "NC, Asheville" -City "NC, Burlington" -City "NC, Cary" -City "NC, Chapel Hill" -City "NC, Charlotte" -City "NC, Concord" -City "NC, Durham" -City "NC, Fayetteville" -City "NC, Gastonia" -City "NC, Goldsboro" -City "NC, Greensboro" -City "NC, Greenville" -City "NC, Hickory" -City "NC, High Point" -City "NC, Huntersville" -City "NC, Jacksonville" -City "NC, Kannapolis" -City "NC, Raleigh" -City "NC, Rocky Mount" -City "NC, Wilmington" -City "NC, Wilson" -City "NC, Winston-Salem" -City "ND, Bismarck" -City "ND, Fargo" -City "ND, Grand Forks" -City "ND, Minot" -City "NE, Bellevue" -City "NE, Grand Island" -City "NE, Lincoln" -City "NE, Omaha" -City "NH, Concord" -City "NH, Manchester" -City "NH, Nashua" -City "NJ, Atlantic City" -City "NJ, Bayonne" -City "NJ, Camden" -City "NJ, Clifton" -City "NJ, East Orange" -City "NJ, Elizabeth" -City "NJ, Fort Lee" -City "NJ, Hackensack" -City "NJ, Hoboken" -City "NJ, Jersey City" -City "NJ, Linden" -City "NJ, New Brunswick" -City "NJ, Newark" -City "NJ, Ocean City" -City "NJ, Passaic" -City "NJ, Paterson" -City "NJ, Perth Amboy" -City "NJ, Plainfield" -City "NJ, Sayreville" -City "NJ, Toms River" -City "NJ, Trenton" -City "NJ, Union City" -City "NJ, Vineland" -City "NJ, West New York" -City "NM, Albuquerque" -City "NM, Clovis" -City "NM, Farmington" -City "NM, Las Cruces" -City "NM, Rio Rancho" -City "NM, Roswell" -City "NM, Santa Fe" -City "NM, South Valley" -City "NV, Carson City" -City "NV, Enterprise" -City "NV, Henderson" -City "NV, Las Vegas" -City "NV, North Las Vegas" -City "NV, Pahrump" -City "NV, Paradise" -City "NV, Reno" -City "NV, Sparks" -City "NV, Spring Valley" -City "NV, Sunrise Manor" -City "NV, Whitney" -City "NY, Albany" -City "NY, Binghamton" -City "NY, Brighton" -City "NY, Buffalo" -City "NY, Cheektowaga" -City "NY, Coram" -City "NY, Hempstead" -City "NY, Irondequoit" -City "NY, Levittown" -City "NY, Long Beach" -City "NY, Mount Vernon" -City "NY, New Rochelle" -City "NY, New York" -City "NY, Niagara Falls" -City "NY, Rochester" -City "NY, Rome" -City "NY, Schenectady" -City "NY, Syracuse" -City "NY, Tonawanda" -City "NY, Troy" -City "NY, Utica" -City "NY, West Seneca" -City "NY, White Plains" -City "NY, Yonkers" -City "OH, Akron" -City "OH, Beavercreek" -City "OH, Boardman" -City "OH, Canton" -City "OH, Cincinnati" -City "OH, Cleveland Heights" -City "OH, Cleveland" -City "OH, Columbus" -City "OH, Cuyahoga Falls" -City "OH, Dayton" -City "OH, Delaware" -City "OH, Dublin" -City "OH, Elyria" -City "OH, Euclid" -City "OH, Fairborn" -City "OH, Fairfield" -City "OH, Findlay" -City "OH, Grove City" -City "OH, Hamilton" -City "OH, Huber Heights" -City "OH, Kettering" -City "OH, Lakewood" -City "OH, Lancaster" -City "OH, Lima" -City "OH, Lorain" -City "OH, Mansfield" -City "OH, Marion" -City "OH, Mentor" -City "OH, Middletown" -City "OH, Newark" -City "OH, Parma" -City "OH, Springfield" -City "OH, Stow" -City "OH, Strongsville" -City "OH, Toledo" -City "OH, Warren" -City "OH, Youngstown" -City "OK, Bartlesville" -City "OK, Broken Arrow" -City "OK, Edmond" -City "OK, Enid" -City "OK, Lawton" -City "OK, Midwest City" -City "OK, Moore" -City "OK, Muskogee" -City "OK, Norman" -City "OK, Oklahoma City" -City "OK, Stillwater" -City "OK, Tulsa" -City "OR, Albany" -City "OR, Aloha" -City "OR, Beaverton" -City "OR, Bend" -City "OR, Corvallis" -City "OR, Eugene" -City "OR, Grants Pass" -City "OR, Gresham" -City "OR, Hillsboro" -City "OR, Lake Oswego" -City "OR, Medford" -City "OR, Portland" -City "OR, Salem" -City "OR, Springfield" -City "OR, Tigard" -City "PA, Allentown" -City "PA, Altoona" -City "PA, Bethlehem" -City "PA, Erie" -City "PA, Harrisburg" -City "PA, Lancaster" -City "PA, Levittown" -City "PA, Philadelphia" -City "PA, Pittsburgh" -City "PA, Reading" -City "PA, Scranton" -City "PA, Wilkes-Barre" -City "PA, York" -City "RI, Cranston" -City "RI, East Providence" -City "RI, Pawtucket" -City "RI, Providence" -City "RI, Warwick" -City "RI, Woonsocket" -City "SC, Charleston" -City "SC, Columbia" -City "SC, Florence" -City "SC, Goose Creek" -City "SC, Greenville" -City "SC, Hilton Head Island" -City "SC, Mount Pleasant" -City "SC, Myrtle Beach" -City "SC, North Charleston" -City "SC, North Myrtle Beach" -City "SC, Rock Hill" -City "SC, Spartanburg" -City "SC, Summerville" -City "SC, Sumter" -City "SD, Rapid City" -City "SD, Sioux Falls" -City "TN, Bartlett" -City "TN, Chattanooga" -City "TN, Clarksville" -City "TN, Cleveland" -City "TN, Collierville" -City "TN, Columbia" -City "TN, Franklin" -City "TN, Germantown" -City "TN, Hendersonville" -City "TN, Jackson" -City "TN, Johnson City" -City "TN, Kingsport" -City "TN, Knoxville" -City "TN, Memphis" -City "TN, Murfreesboro" -City "TN, Nashville-Davidson Metropolitan Government Balance" -City "TN, Smyrna" -City "TX, Abilene" -City "TX, Allen" -City "TX, Amarillo" -City "TX, Arlington" -City "TX, Atascocita" -City "TX, Austin" -City "TX, Baytown" -City "TX, Beaumont" -City "TX, Bedford" -City "TX, Brownsville" -City "TX, Bryan" -City "TX, Burleson" -City "TX, Carrollton" -City "TX, Cedar Hill" -City "TX, Cedar Park" -City "TX, College Station" -City "TX, Conroe" -City "TX, Coppell" -City "TX, Corpus Christi" -City "TX, Dallas" -City "TX, Denton" -City "TX, Desoto" -City "TX, Edinburg" -City "TX, El Paso" -City "TX, Euless" -City "TX, Flower Mound" -City "TX, Fort Worth" -City "TX, Frisco" -City "TX, Galveston" -City "TX, Garland" -City "TX, Georgetown" -City "TX, Grand Prairie" -City "TX, Grapevine" -City "TX, Haltom City" -City "TX, Harlingen" -City "TX, Houston" -City "TX, Hurst" -City "TX, Irving" -City "TX, Keller" -City "TX, Killeen" -City "TX, Laredo" -City "TX, League City" -City "TX, Lewisville" -City "TX, Longview" -City "TX, Lubbock" -City "TX, Lufkin" -City "TX, Mansfield" -City "TX, Mcallen" -City "TX, Mckinney" -City "TX, Mesquite" -City "TX, Midland" -City "TX, Mission" -City "TX, Missouri City" -City "TX, New Braunfels" -City "TX, North Richland Hills" -City "TX, Odessa" -City "TX, Pasadena" -City "TX, Pearland" -City "TX, Pflugerville" -City "TX, Pharr" -City "TX, Plano" -City "TX, Port Arthur" -City "TX, Richardson" -City "TX, Round Rock" -City "TX, Rowlett" -City "TX, San Angelo" -City "TX, San Antonio" -City "TX, San Marcos" -City "TX, Sherman" -City "TX, Spring" -City "TX, Sugar Land" -City "TX, Temple" -City "TX, Texarkana" -City "TX, Texas City" -City "TX, The Colony" -City "TX, The Woodlands" -City "TX, Tyler" -City "TX, Victoria" -City "TX, Waco" -City "TX, Wichita Falls" -City "TX, Wylie" -City "UT, Layton" -City "UT, Lehi" -City "UT, Logan" -City "UT, Millcreek" -City "UT, Murray" -City "UT, Ogden" -City "UT, Orem" -City "UT, Provo" -City "UT, Salt Lake City" -City "UT, Sandy" -City "UT, South Jordan" -City "UT, St George" -City "UT, Taylorsville" -City "UT, West Jordan" -City "UT, West Valley City" -City "VA, Alexandria" -City "VA, Arlington" -City "VA, Ashburn" -City "VA, Blacksburg" -City "VA, Centreville" -City "VA, Charlottesville" -City "VA, Chesapeake" -City "VA, Dale City" -City "VA, Danville" -City "VA, Hampton" -City "VA, Harrisonburg" -City "VA, Lake Ridge" -City "VA, Leesburg" -City "VA, Lynchburg" -City "VA, Mclean" -City "VA, Mechanicsville" -City "VA, Newport News" -City "VA, Norfolk" -City "VA, Petersburg" -City "VA, Portsmouth" -City "VA, Reston" -City "VA, Richmond" -City "VA, Roanoke" -City "VA, Suffolk" -City "VA, Tuckahoe" -City "VA, Virginia Beach" -City "VT, Burlington" -City "WA, Auburn" -City "WA, Bellevue" -City "WA, Bellingham" -City "WA, Bremerton" -City "WA, Edmonds" -City "WA, Everett" -City "WA, Federal Way" -City "WA, Kennewick" -City "WA, Kent" -City "WA, Kirkland" -City "WA, Lacey" -City "WA, Lakewood" -City "WA, Longview" -City "WA, Marysville" -City "WA, Olympia" -City "WA, Pasco" -City "WA, Puyallup" -City "WA, Redmond" -City "WA, Renton" -City "WA, Richland" -City "WA, Sammamish" -City "WA, Seattle" -City "WA, Shoreline" -City "WA, South Hill" -City "WA, Spokane Valley" -City "WA, Spokane" -City "WA, Tacoma" -City "WA, Vancouver" -City "WA, Yakima" -City "WI, Appleton" -City "WI, Beloit" -City "WI, Eau Claire" -City "WI, Fond Du Lac" -City "WI, Green Bay" -City "WI, Greenfield" -City "WI, Janesville" -City "WI, Kenosha" -City "WI, La Crosse" -City "WI, Madison" -City "WI, Manitowoc" -City "WI, Menomonee Falls" -City "WI, Milwaukee" -City "WI, New Berlin" -City "WI, Oshkosh" -City "WI, Racine" -City "WI, Sheboygan" -City "WI, Waukesha" -City "WI, Wausau" -City "WI, Wauwatosa" -City "WI, West Allis" -City "WV, Charleston" -City "WV, Huntington" -City "WV, Parkersburg" -City "WY, Casper" -City "WY, Cheyenne" -City In another census Place -City In another census Place -City Not in a census Place -City Not in a census Place -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_present=true 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_present=true 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_present=true 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_present=true 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_present=true 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_present=false 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_present=true 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 -Clothes Washer Presence Void -Clothes Washer Presence Yes -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 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 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 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 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 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 -Cooling Setpoint 62F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=62 hvac_control_cooling_weekend_setpoint_temp=62 use_auto_cooling_season=false -Cooling Setpoint 64F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=64 hvac_control_cooling_weekend_setpoint_temp=64 use_auto_cooling_season=false -Cooling Setpoint 65F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=65 hvac_control_cooling_weekend_setpoint_temp=65 use_auto_cooling_season=false -Cooling Setpoint 66F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=66 hvac_control_cooling_weekend_setpoint_temp=66 use_auto_cooling_season=false -Cooling Setpoint 67F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=67 hvac_control_cooling_weekend_setpoint_temp=67 use_auto_cooling_season=false -Cooling Setpoint 68F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=68 hvac_control_cooling_weekend_setpoint_temp=68 use_auto_cooling_season=false -Cooling Setpoint 69F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=69 hvac_control_cooling_weekend_setpoint_temp=69 use_auto_cooling_season=false -Cooling Setpoint 70F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=70 hvac_control_cooling_weekend_setpoint_temp=70 use_auto_cooling_season=false -Cooling Setpoint 72F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=72 hvac_control_cooling_weekend_setpoint_temp=72 use_auto_cooling_season=false -Cooling Setpoint 73F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=73 hvac_control_cooling_weekend_setpoint_temp=73 use_auto_cooling_season=false -Cooling Setpoint 74F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=74 hvac_control_cooling_weekend_setpoint_temp=74 use_auto_cooling_season=false -Cooling Setpoint 75F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=75 hvac_control_cooling_weekend_setpoint_temp=75 use_auto_cooling_season=false -Cooling Setpoint 76F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=76 hvac_control_cooling_weekend_setpoint_temp=76 use_auto_cooling_season=false -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 -Cooling Setpoint 77F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=77 hvac_control_cooling_weekend_setpoint_temp=77 use_auto_cooling_season=false -Cooling Setpoint 78F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=78 hvac_control_cooling_weekend_setpoint_temp=78 use_auto_cooling_season=false -Cooling Setpoint 80F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=80 hvac_control_cooling_weekend_setpoint_temp=80 use_auto_cooling_season=false -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 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" -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 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 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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_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 -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_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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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_heating_capacity=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 -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 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 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 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 Propane ResStockArguments heating_system_2_fuel=propane -HVAC Secondary Heating Partial Space Conditioning 20% Conditioned ResStockArguments heating_system_2_fraction_heat_load_served=0.2 -HVAC Secondary Heating Partial Space Conditioning 30% Conditioned ResStockArguments heating_system_2_fraction_heat_load_served=0.3 -HVAC Secondary Heating Partial Space Conditioning 40% Conditioned ResStockArguments heating_system_2_fraction_heat_load_served=0.4 -HVAC Secondary Heating Partial Space Conditioning 50% Conditioned ResStockArguments heating_system_2_fraction_heat_load_served=0.5 -HVAC Secondary Heating Partial Space Conditioning <10% Conditioned ResStockArguments heating_system_2_fraction_heat_load_served=0.1 -HVAC Secondary Heating Partial Space Conditioning None ResStockArguments heating_system_2_fraction_heat_load_served=0 -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_heating_capacity=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 -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_heating_capacity=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 +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 +ASHRAE IECC Climate Zone 2004 2A ResStockArguments site_iecc_zone=2A +ASHRAE IECC Climate Zone 2004 2B ResStockArguments site_iecc_zone=2B +ASHRAE IECC Climate Zone 2004 3A ResStockArguments site_iecc_zone=3A +ASHRAE IECC Climate Zone 2004 3B ResStockArguments site_iecc_zone=3B +ASHRAE IECC Climate Zone 2004 3C ResStockArguments site_iecc_zone=3C +ASHRAE IECC Climate Zone 2004 4A ResStockArguments site_iecc_zone=4A +ASHRAE IECC Climate Zone 2004 4B ResStockArguments site_iecc_zone=4B +ASHRAE IECC Climate Zone 2004 4C ResStockArguments site_iecc_zone=4C +ASHRAE IECC Climate Zone 2004 5A ResStockArguments site_iecc_zone=5A +ASHRAE IECC Climate Zone 2004 5B ResStockArguments site_iecc_zone=5B +ASHRAE IECC Climate Zone 2004 6A ResStockArguments site_iecc_zone=6A +ASHRAE IECC Climate Zone 2004 6B ResStockArguments site_iecc_zone=6B +ASHRAE IECC Climate Zone 2004 7A ResStockArguments site_iecc_zone=7 +ASHRAE IECC Climate Zone 2004 7AK ResStockArguments site_iecc_zone=7 +ASHRAE IECC Climate Zone 2004 7B ResStockArguments site_iecc_zone=7 +ASHRAE IECC Climate Zone 2004 8AK ResStockArguments site_iecc_zone=8 +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 Spot Vent Hour Hour1 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=1 +Bathroom Spot Vent Hour Hour10 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=10 +Bathroom Spot Vent Hour Hour11 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=11 +Bathroom Spot Vent Hour Hour12 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=12 +Bathroom Spot Vent Hour Hour13 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=13 +Bathroom Spot Vent Hour Hour14 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=14 +Bathroom Spot Vent Hour Hour15 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=15 +Bathroom Spot Vent Hour Hour16 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=16 +Bathroom Spot Vent Hour Hour17 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=17 +Bathroom Spot Vent Hour Hour18 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=18 +Bathroom Spot Vent Hour Hour19 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=19 +Bathroom Spot Vent Hour Hour2 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=2 +Bathroom Spot Vent Hour Hour20 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=20 +Bathroom Spot Vent Hour Hour21 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=21 +Bathroom Spot Vent Hour Hour22 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=22 +Bathroom Spot Vent Hour Hour23 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=23 +Bathroom Spot Vent Hour Hour3 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=3 +Bathroom Spot Vent Hour Hour4 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=4 +Bathroom Spot Vent Hour Hour5 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=5 +Bathroom Spot Vent Hour Hour6 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=6 +Bathroom Spot Vent Hour Hour7 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=7 +Bathroom Spot Vent Hour Hour8 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=8 +Bathroom Spot Vent Hour Hour9 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=9 +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_schedule=auto +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_schedule=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_schedule=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_schedule=../../../resources/data/schedule_files/battery.csv +Battery None ResStockArguments battery_present=false battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto battery_schedule=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_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_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_efficiency=0 ceiling_fan_quantity=0 ceiling_fan_cooling_setpoint_temp_offset=0 +Ceiling Fan None ResStockArguments ceiling_fan_present=false 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_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_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" +City "AL, Auburn" +City "AL, Birmingham" +City "AL, Decatur" +City "AL, Dothan" +City "AL, Florence" +City "AL, Gadsden" +City "AL, Hoover" +City "AL, Huntsville" +City "AL, Madison" +City "AL, Mobile" +City "AL, Montgomery" +City "AL, Phenix City" +City "AL, Tuscaloosa" +City "AR, Bentonville" +City "AR, Conway" +City "AR, Fayetteville" +City "AR, Fort Smith" +City "AR, Hot Springs" +City "AR, Jonesboro" +City "AR, Little Rock" +City "AR, North Little Rock" +City "AR, Pine Bluff" +City "AR, Rogers" +City "AR, Springdale" +City "AZ, Apache Junction" +City "AZ, Avondale" +City "AZ, Buckeye" +City "AZ, Bullhead City" +City "AZ, Casa Grande" +City "AZ, Casas Adobes" +City "AZ, Catalina Foothills" +City "AZ, Chandler" +City "AZ, Flagstaff" +City "AZ, Fortuna Foothills" +City "AZ, Gilbert" +City "AZ, Glendale" +City "AZ, Goodyear" +City "AZ, Green Valley" +City "AZ, Lake Havasu City" +City "AZ, Marana" +City "AZ, Maricopa" +City "AZ, Mesa" +City "AZ, Oro Valley" +City "AZ, Peoria" +City "AZ, Phoenix" +City "AZ, Prescott Valley" +City "AZ, Prescott" +City "AZ, San Tan Valley" +City "AZ, Scottsdale" +City "AZ, Sierra Vista" +City "AZ, Sun City West" +City "AZ, Sun City" +City "AZ, Surprise" +City "AZ, Tempe" +City "AZ, Tucson" +City "AZ, Yuma" +City "CA, Alameda" +City "CA, Alhambra" +City "CA, Aliso Viejo" +City "CA, Altadena" +City "CA, Anaheim" +City "CA, Antioch" +City "CA, Apple Valley" +City "CA, Arcadia" +City "CA, Arden-Arcade" +City "CA, Bakersfield" +City "CA, Baldwin Park" +City "CA, Bellflower" +City "CA, Berkeley" +City "CA, Beverly Hills" +City "CA, Brea" +City "CA, Brentwood" +City "CA, Buena Park" +City "CA, Burbank" +City "CA, Camarillo" +City "CA, Campbell" +City "CA, Carlsbad" +City "CA, Carmichael" +City "CA, Carson" +City "CA, Castro Valley" +City "CA, Cathedral City" +City "CA, Cerritos" +City "CA, Chico" +City "CA, Chino Hills" +City "CA, Chino" +City "CA, Chula Vista" +City "CA, Citrus Heights" +City "CA, Clovis" +City "CA, Colton" +City "CA, Compton" +City "CA, Concord" +City "CA, Corona" +City "CA, Costa Mesa" +City "CA, Covina" +City "CA, Culver City" +City "CA, Cupertino" +City "CA, Cypress" +City "CA, Daly City" +City "CA, Dana Point" +City "CA, Danville" +City "CA, Davis" +City "CA, Diamond Bar" +City "CA, Downey" +City "CA, Dublin" +City "CA, East Los Angeles" +City "CA, El Cajon" +City "CA, El Dorado Hills" +City "CA, El Monte" +City "CA, Elk Grove" +City "CA, Encinitas" +City "CA, Escondido" +City "CA, Fairfield" +City "CA, Florence-Graham" +City "CA, Florin" +City "CA, Folsom" +City "CA, Fontana" +City "CA, Fountain Valley" +City "CA, Fremont" +City "CA, Fresno" +City "CA, Fullerton" +City "CA, Garden Grove" +City "CA, Gardena" +City "CA, Gilroy" +City "CA, Glendale" +City "CA, Glendora" +City "CA, Hacienda Heights" +City "CA, Hanford" +City "CA, Hawthorne" +City "CA, Hayward" +City "CA, Hemet" +City "CA, Hesperia" +City "CA, Highland" +City "CA, Huntington Beach" +City "CA, Huntington Park" +City "CA, Indio" +City "CA, Inglewood" +City "CA, Irvine" +City "CA, La Habra" +City "CA, La Mesa" +City "CA, La Quinta" +City "CA, Laguna Niguel" +City "CA, Lake Elsinore" +City "CA, Lake Forest" +City "CA, Lakewood" +City "CA, Lancaster" +City "CA, Lincoln" +City "CA, Livermore" +City "CA, Lodi" +City "CA, Long Beach" +City "CA, Los Angeles" +City "CA, Lynwood" +City "CA, Madera" +City "CA, Manhattan Beach" +City "CA, Manteca" +City "CA, Martinez" +City "CA, Menifee" +City "CA, Merced" +City "CA, Milpitas" +City "CA, Mission Viejo" +City "CA, Modesto" +City "CA, Montebello" +City "CA, Monterey Park" +City "CA, Moreno Valley" +City "CA, Mountain View" +City "CA, Murrieta" +City "CA, Napa" +City "CA, National City" +City "CA, Newport Beach" +City "CA, North Highlands" +City "CA, Norwalk" +City "CA, Novato" +City "CA, Oakland" +City "CA, Oceanside" +City "CA, Ontario" +City "CA, Orange" +City "CA, Oxnard" +City "CA, Palm Desert" +City "CA, Palm Springs" +City "CA, Palmdale" +City "CA, Palo Alto" +City "CA, Pasadena" +City "CA, Perris" +City "CA, Petaluma" +City "CA, Pico Rivera" +City "CA, Pittsburg" +City "CA, Placentia" +City "CA, Pleasanton" +City "CA, Pomona" +City "CA, Porterville" +City "CA, Poway" +City "CA, Rancho Cordova" +City "CA, Rancho Cucamonga" +City "CA, Rancho Palos Verdes" +City "CA, Rancho Santa Margarita" +City "CA, Redding" +City "CA, Redlands" +City "CA, Redondo Beach" +City "CA, Redwood City" +City "CA, Rialto" +City "CA, Richmond" +City "CA, Riverside" +City "CA, Rocklin" +City "CA, Rohnert Park" +City "CA, Rosemead" +City "CA, Roseville" +City "CA, Rowland Heights" +City "CA, Sacramento" +City "CA, Salinas" +City "CA, San Bernardino" +City "CA, San Bruno" +City "CA, San Buenaventura Ventura" +City "CA, San Clemente" +City "CA, San Diego" +City "CA, San Francisco" +City "CA, San Jose" +City "CA, San Leandro" +City "CA, San Luis Obispo" +City "CA, San Marcos" +City "CA, San Mateo" +City "CA, San Rafael" +City "CA, San Ramon" +City "CA, Santa Ana" +City "CA, Santa Barbara" +City "CA, Santa Clara" +City "CA, Santa Clarita" +City "CA, Santa Cruz" +City "CA, Santa Maria" +City "CA, Santa Monica" +City "CA, Santa Rosa" +City "CA, Santee" +City "CA, Simi Valley" +City "CA, South Gate" +City "CA, South Lake Tahoe" +City "CA, South San Francisco" +City "CA, South Whittier" +City "CA, Stockton" +City "CA, Sunnyvale" +City "CA, Temecula" +City "CA, Thousand Oaks" +City "CA, Torrance" +City "CA, Tracy" +City "CA, Tulare" +City "CA, Turlock" +City "CA, Tustin" +City "CA, Union City" +City "CA, Upland" +City "CA, Vacaville" +City "CA, Vallejo" +City "CA, Victorville" +City "CA, Visalia" +City "CA, Vista" +City "CA, Walnut Creek" +City "CA, West Covina" +City "CA, West Hollywood" +City "CA, West Sacramento" +City "CA, Westminster" +City "CA, Whittier" +City "CA, Woodland" +City "CA, Yorba Linda" +City "CA, Yuba City" +City "CA, Yucaipa" +City "CO, Arvada" +City "CO, Aurora" +City "CO, Boulder" +City "CO, Broomfield" +City "CO, Castle Rock" +City "CO, Centennial" +City "CO, Colorado Springs" +City "CO, Commerce City" +City "CO, Denver" +City "CO, Englewood" +City "CO, Fort Collins" +City "CO, Grand Junction" +City "CO, Greeley" +City "CO, Highlands Ranch" +City "CO, Lakewood" +City "CO, Littleton" +City "CO, Longmont" +City "CO, Loveland" +City "CO, Parker" +City "CO, Pueblo" +City "CO, Thornton" +City "CO, Westminster" +City "CT, Bridgeport" +City "CT, Bristol" +City "CT, Danbury" +City "CT, East Hartford" +City "CT, Hartford" +City "CT, Meriden" +City "CT, Middletown" +City "CT, Milford City Balance" +City "CT, New Britain" +City "CT, New Haven" +City "CT, Norwalk" +City "CT, Norwich" +City "CT, Shelton" +City "CT, Stamford" +City "CT, Stratford" +City "CT, Torrington" +City "CT, Waterbury" +City "CT, West Hartford" +City "CT, West Haven" +City "DC, Washington" +City "DE, Dover" +City "DE, Wilmington" +City "FL, Alafaya" +City "FL, Altamonte Springs" +City "FL, Apopka" +City "FL, Aventura" +City "FL, Boca Raton" +City "FL, Bonita Springs" +City "FL, Boynton Beach" +City "FL, Bradenton" +City "FL, Brandon" +City "FL, Cape Coral" +City "FL, Carrollwood" +City "FL, Clearwater" +City "FL, Coconut Creek" +City "FL, Coral Gables" +City "FL, Coral Springs" +City "FL, Country Club" +City "FL, Dania Beach" +City "FL, Davie" +City "FL, Daytona Beach" +City "FL, Deerfield Beach" +City "FL, Delray Beach" +City "FL, Deltona" +City "FL, Doral" +City "FL, Dunedin" +City "FL, East Lake" +City "FL, Estero" +City "FL, Fort Lauderdale" +City "FL, Fort Myers" +City "FL, Fort Pierce" +City "FL, Fountainebleau" +City "FL, Four Corners" +City "FL, Gainesville" +City "FL, Greenacres" +City "FL, Hallandale Beach" +City "FL, Hialeah" +City "FL, Hollywood" +City "FL, Homestead" +City "FL, Jacksonville" +City "FL, Jupiter" +City "FL, Kendale Lakes" +City "FL, Kendall" +City "FL, Kissimmee" +City "FL, Lake Worth" +City "FL, Lakeland" +City "FL, Largo" +City "FL, Lauderhill" +City "FL, Lehigh Acres" +City "FL, Marco Island" +City "FL, Margate" +City "FL, Melbourne" +City "FL, Merritt Island" +City "FL, Miami Beach" +City "FL, Miami Gardens" +City "FL, Miami" +City "FL, Miramar" +City "FL, Naples" +City "FL, New Smyrna Beach" +City "FL, North Fort Myers" +City "FL, North Miami Beach" +City "FL, North Miami" +City "FL, North Port" +City "FL, Oakland Park" +City "FL, Ocala" +City "FL, Orlando" +City "FL, Ormond Beach" +City "FL, Palm Bay" +City "FL, Palm Beach Gardens" +City "FL, Palm Coast" +City "FL, Palm Harbor" +City "FL, Panama City Beach" +City "FL, Panama City" +City "FL, Pembroke Pines" +City "FL, Pensacola" +City "FL, Pine Hills" +City "FL, Pinellas Park" +City "FL, Plantation" +City "FL, Poinciana" +City "FL, Pompano Beach" +City "FL, Port Charlotte" +City "FL, Port Orange" +City "FL, Port St Lucie" +City "FL, Riverview" +City "FL, Riviera Beach" +City "FL, Sanford" +City "FL, Sarasota" +City "FL, Spring Hill" +City "FL, St Cloud" +City "FL, St Petersburg" +City "FL, Sun City Center" +City "FL, Sunny Isles Beach" +City "FL, Sunrise" +City "FL, Tallahassee" +City "FL, Tamarac" +City "FL, Tamiami" +City "FL, Tampa" +City "FL, The Hammocks" +City "FL, The Villages" +City "FL, Titusville" +City "FL, Town N Country" +City "FL, University" +City "FL, Venice" +City "FL, Wellington" +City "FL, Wesley Chapel" +City "FL, West Palm Beach" +City "FL, Weston" +City "FL, Winter Haven" +City "GA, Albany" +City "GA, Alpharetta" +City "GA, Athens-Clarke County Unified Government Balance" +City "GA, Atlanta" +City "GA, Augusta-Richmond County Consolidated Government Balance" +City "GA, Columbus" +City "GA, Dunwoody" +City "GA, East Point" +City "GA, Hinesville" +City "GA, Johns Creek" +City "GA, Mableton" +City "GA, Macon" +City "GA, Marietta" +City "GA, Newnan" +City "GA, North Atlanta" +City "GA, Rome" +City "GA, Roswell" +City "GA, Sandy Springs" +City "GA, Savannah" +City "GA, Smyrna" +City "GA, Valdosta" +City "GA, Warner Robins" +City "HI, East Honolulu" +City "HI, Hilo" +City "HI, Kailua" +City "HI, Urban Honolulu" +City "IA, Ames" +City "IA, Ankeny" +City "IA, Cedar Falls" +City "IA, Cedar Rapids" +City "IA, Council Bluffs" +City "IA, Davenport" +City "IA, Des Moines" +City "IA, Dubuque" +City "IA, Iowa City" +City "IA, Marion" +City "IA, Sioux City" +City "IA, Urbandale" +City "IA, Waterloo" +City "IA, West Des Moines" +City "ID, Boise City" +City "ID, Caldwell" +City "ID, Coeur Dalene" +City "ID, Idaho Falls" +City "ID, Meridian" +City "ID, Nampa" +City "ID, Pocatello" +City "ID, Twin Falls" +City "IL, Arlington Heights" +City "IL, Aurora" +City "IL, Belleville" +City "IL, Berwyn" +City "IL, Bloomington" +City "IL, Bolingbrook" +City "IL, Buffalo Grove" +City "IL, Calumet City" +City "IL, Carol Stream" +City "IL, Champaign" +City "IL, Chicago" +City "IL, Cicero" +City "IL, Crystal Lake" +City "IL, Decatur" +City "IL, Dekalb" +City "IL, Des Plaines" +City "IL, Downers Grove" +City "IL, Elgin" +City "IL, Elmhurst" +City "IL, Evanston" +City "IL, Glenview" +City "IL, Hoffman Estates" +City "IL, Joliet" +City "IL, Lombard" +City "IL, Moline" +City "IL, Mount Prospect" +City "IL, Naperville" +City "IL, Normal" +City "IL, Oak Lawn" +City "IL, Oak Park" +City "IL, Orland Park" +City "IL, Palatine" +City "IL, Peoria" +City "IL, Quincy" +City "IL, Rock Island" +City "IL, Rockford" +City "IL, Schaumburg" +City "IL, Skokie" +City "IL, Springfield" +City "IL, Tinley Park" +City "IL, Urbana" +City "IL, Waukegan" +City "IL, Wheaton" +City "IL, Wheeling" +City "IN, Anderson" +City "IN, Bloomington" +City "IN, Carmel" +City "IN, Columbus" +City "IN, Elkhart" +City "IN, Evansville" +City "IN, Fishers" +City "IN, Fort Wayne" +City "IN, Gary" +City "IN, Greenwood" +City "IN, Hammond" +City "IN, Indianapolis City Balance" +City "IN, Jeffersonville" +City "IN, Kokomo" +City "IN, Lafayette" +City "IN, Lawrence" +City "IN, Mishawaka" +City "IN, Muncie" +City "IN, New Albany" +City "IN, Noblesville" +City "IN, Portage" +City "IN, Richmond" +City "IN, South Bend" +City "IN, Terre Haute" +City "KS, Hutchinson" +City "KS, Kansas City" +City "KS, Lawrence" +City "KS, Lenexa" +City "KS, Manhattan" +City "KS, Olathe" +City "KS, Overland Park" +City "KS, Salina" +City "KS, Shawnee" +City "KS, Topeka" +City "KS, Wichita" +City "KY, Bowling Green" +City "KY, Covington" +City "KY, Lexington-Fayette" +City "KY, Louisville Jefferson County Metro Government Balance" +City "KY, Owensboro" +City "LA, Alexandria" +City "LA, Baton Rouge" +City "LA, Bossier City" +City "LA, Kenner" +City "LA, Lafayette" +City "LA, Lake Charles" +City "LA, Metairie" +City "LA, Monroe" +City "LA, New Orleans" +City "LA, Shreveport" +City "MA, Arlington" +City "MA, Attleboro" +City "MA, Barnstable Town" +City "MA, Beverly" +City "MA, Boston" +City "MA, Brockton" +City "MA, Brookline" +City "MA, Cambridge" +City "MA, Chicopee" +City "MA, Everett" +City "MA, Fall River" +City "MA, Fitchburg" +City "MA, Framingham" +City "MA, Haverhill" +City "MA, Holyoke" +City "MA, Lawrence" +City "MA, Leominster" +City "MA, Lowell" +City "MA, Lynn" +City "MA, Malden" +City "MA, Marlborough" +City "MA, Medford" +City "MA, Methuen Town" +City "MA, New Bedford" +City "MA, Newton" +City "MA, Peabody" +City "MA, Pittsfield" +City "MA, Quincy" +City "MA, Revere" +City "MA, Salem" +City "MA, Somerville" +City "MA, Springfield" +City "MA, Taunton" +City "MA, Waltham" +City "MA, Watertown Town" +City "MA, Westfield" +City "MA, Weymouth Town" +City "MA, Woburn" +City "MA, Worcester" +City "MD, Annapolis" +City "MD, Aspen Hill" +City "MD, Baltimore" +City "MD, Bel Air South" +City "MD, Bethesda" +City "MD, Bowie" +City "MD, Catonsville" +City "MD, Columbia" +City "MD, Dundalk" +City "MD, Ellicott City" +City "MD, Essex" +City "MD, Frederick" +City "MD, Gaithersburg" +City "MD, Germantown" +City "MD, Glen Burnie" +City "MD, Hagerstown" +City "MD, North Bethesda" +City "MD, Ocean City" +City "MD, Odenton" +City "MD, Potomac" +City "MD, Rockville" +City "MD, Severn" +City "MD, Silver Spring" +City "MD, Towson" +City "MD, Waldorf" +City "MD, Wheaton" +City "MD, Woodlawn" +City "ME, Bangor" +City "ME, Lewiston" +City "ME, Portland" +City "MI, Ann Arbor" +City "MI, Battle Creek" +City "MI, Bay City" +City "MI, Dearborn Heights" +City "MI, Dearborn" +City "MI, Detroit" +City "MI, Farmington Hills" +City "MI, Flint" +City "MI, Grand Rapids" +City "MI, Jackson" +City "MI, Kalamazoo" +City "MI, Kentwood" +City "MI, Lansing" +City "MI, Lincoln Park" +City "MI, Livonia" +City "MI, Midland" +City "MI, Muskegon" +City "MI, Novi" +City "MI, Pontiac" +City "MI, Portage" +City "MI, Rochester Hills" +City "MI, Roseville" +City "MI, Royal Oak" +City "MI, Saginaw" +City "MI, Southfield" +City "MI, St Clair Shores" +City "MI, Sterling Heights" +City "MI, Taylor" +City "MI, Troy" +City "MI, Warren" +City "MI, Westland" +City "MI, Wyoming" +City "MN, Apple Valley" +City "MN, Blaine" +City "MN, Bloomington" +City "MN, Brooklyn Park" +City "MN, Burnsville" +City "MN, Coon Rapids" +City "MN, Duluth" +City "MN, Eagan" +City "MN, Eden Prairie" +City "MN, Edina" +City "MN, Lakeville" +City "MN, Mankato" +City "MN, Maple Grove" +City "MN, Maplewood" +City "MN, Minneapolis" +City "MN, Minnetonka" +City "MN, Moorhead" +City "MN, Plymouth" +City "MN, Richfield" +City "MN, Rochester" +City "MN, Roseville" +City "MN, St Cloud" +City "MN, St Louis Park" +City "MN, St Paul" +City "MN, Woodbury" +City "MO, Blue Springs" +City "MO, Cape Girardeau" +City "MO, Chesterfield" +City "MO, Columbia" +City "MO, Florissant" +City "MO, Independence" +City "MO, Jefferson City" +City "MO, Joplin" +City "MO, Kansas City" +City "MO, Lees Summit" +City "MO, Ofallon" +City "MO, Springfield" +City "MO, St Charles" +City "MO, St Joseph" +City "MO, St Louis" +City "MO, St Peters" +City "MO, University City" +City "MS, Biloxi" +City "MS, Gulfport" +City "MS, Hattiesburg" +City "MS, Jackson" +City "MS, Meridian" +City "MS, Southaven" +City "MS, Tupelo" +City "MT, Billings" +City "MT, Bozeman" +City "MT, Butte-Silver Bow Balance" +City "MT, Great Falls" +City "MT, Missoula" +City "NC, Asheville" +City "NC, Burlington" +City "NC, Cary" +City "NC, Chapel Hill" +City "NC, Charlotte" +City "NC, Concord" +City "NC, Durham" +City "NC, Fayetteville" +City "NC, Gastonia" +City "NC, Goldsboro" +City "NC, Greensboro" +City "NC, Greenville" +City "NC, Hickory" +City "NC, High Point" +City "NC, Huntersville" +City "NC, Jacksonville" +City "NC, Kannapolis" +City "NC, Raleigh" +City "NC, Rocky Mount" +City "NC, Wilmington" +City "NC, Wilson" +City "NC, Winston-Salem" +City "ND, Bismarck" +City "ND, Fargo" +City "ND, Grand Forks" +City "ND, Minot" +City "NE, Bellevue" +City "NE, Grand Island" +City "NE, Lincoln" +City "NE, Omaha" +City "NH, Concord" +City "NH, Manchester" +City "NH, Nashua" +City "NJ, Atlantic City" +City "NJ, Bayonne" +City "NJ, Camden" +City "NJ, Clifton" +City "NJ, East Orange" +City "NJ, Elizabeth" +City "NJ, Fort Lee" +City "NJ, Hackensack" +City "NJ, Hoboken" +City "NJ, Jersey City" +City "NJ, Linden" +City "NJ, New Brunswick" +City "NJ, Newark" +City "NJ, Ocean City" +City "NJ, Passaic" +City "NJ, Paterson" +City "NJ, Perth Amboy" +City "NJ, Plainfield" +City "NJ, Sayreville" +City "NJ, Toms River" +City "NJ, Trenton" +City "NJ, Union City" +City "NJ, Vineland" +City "NJ, West New York" +City "NM, Albuquerque" +City "NM, Clovis" +City "NM, Farmington" +City "NM, Las Cruces" +City "NM, Rio Rancho" +City "NM, Roswell" +City "NM, Santa Fe" +City "NM, South Valley" +City "NV, Carson City" +City "NV, Enterprise" +City "NV, Henderson" +City "NV, Las Vegas" +City "NV, North Las Vegas" +City "NV, Pahrump" +City "NV, Paradise" +City "NV, Reno" +City "NV, Sparks" +City "NV, Spring Valley" +City "NV, Sunrise Manor" +City "NV, Whitney" +City "NY, Albany" +City "NY, Binghamton" +City "NY, Brighton" +City "NY, Buffalo" +City "NY, Cheektowaga" +City "NY, Coram" +City "NY, Hempstead" +City "NY, Irondequoit" +City "NY, Levittown" +City "NY, Long Beach" +City "NY, Mount Vernon" +City "NY, New Rochelle" +City "NY, New York" +City "NY, Niagara Falls" +City "NY, Rochester" +City "NY, Rome" +City "NY, Schenectady" +City "NY, Syracuse" +City "NY, Tonawanda" +City "NY, Troy" +City "NY, Utica" +City "NY, West Seneca" +City "NY, White Plains" +City "NY, Yonkers" +City "OH, Akron" +City "OH, Beavercreek" +City "OH, Boardman" +City "OH, Canton" +City "OH, Cincinnati" +City "OH, Cleveland Heights" +City "OH, Cleveland" +City "OH, Columbus" +City "OH, Cuyahoga Falls" +City "OH, Dayton" +City "OH, Delaware" +City "OH, Dublin" +City "OH, Elyria" +City "OH, Euclid" +City "OH, Fairborn" +City "OH, Fairfield" +City "OH, Findlay" +City "OH, Grove City" +City "OH, Hamilton" +City "OH, Huber Heights" +City "OH, Kettering" +City "OH, Lakewood" +City "OH, Lancaster" +City "OH, Lima" +City "OH, Lorain" +City "OH, Mansfield" +City "OH, Marion" +City "OH, Mentor" +City "OH, Middletown" +City "OH, Newark" +City "OH, Parma" +City "OH, Springfield" +City "OH, Stow" +City "OH, Strongsville" +City "OH, Toledo" +City "OH, Warren" +City "OH, Youngstown" +City "OK, Bartlesville" +City "OK, Broken Arrow" +City "OK, Edmond" +City "OK, Enid" +City "OK, Lawton" +City "OK, Midwest City" +City "OK, Moore" +City "OK, Muskogee" +City "OK, Norman" +City "OK, Oklahoma City" +City "OK, Stillwater" +City "OK, Tulsa" +City "OR, Albany" +City "OR, Aloha" +City "OR, Beaverton" +City "OR, Bend" +City "OR, Corvallis" +City "OR, Eugene" +City "OR, Grants Pass" +City "OR, Gresham" +City "OR, Hillsboro" +City "OR, Lake Oswego" +City "OR, Medford" +City "OR, Portland" +City "OR, Salem" +City "OR, Springfield" +City "OR, Tigard" +City "PA, Allentown" +City "PA, Altoona" +City "PA, Bethlehem" +City "PA, Erie" +City "PA, Harrisburg" +City "PA, Lancaster" +City "PA, Levittown" +City "PA, Philadelphia" +City "PA, Pittsburgh" +City "PA, Reading" +City "PA, Scranton" +City "PA, Wilkes-Barre" +City "PA, York" +City "RI, Cranston" +City "RI, East Providence" +City "RI, Pawtucket" +City "RI, Providence" +City "RI, Warwick" +City "RI, Woonsocket" +City "SC, Charleston" +City "SC, Columbia" +City "SC, Florence" +City "SC, Goose Creek" +City "SC, Greenville" +City "SC, Hilton Head Island" +City "SC, Mount Pleasant" +City "SC, Myrtle Beach" +City "SC, North Charleston" +City "SC, North Myrtle Beach" +City "SC, Rock Hill" +City "SC, Spartanburg" +City "SC, Summerville" +City "SC, Sumter" +City "SD, Rapid City" +City "SD, Sioux Falls" +City "TN, Bartlett" +City "TN, Chattanooga" +City "TN, Clarksville" +City "TN, Cleveland" +City "TN, Collierville" +City "TN, Columbia" +City "TN, Franklin" +City "TN, Germantown" +City "TN, Hendersonville" +City "TN, Jackson" +City "TN, Johnson City" +City "TN, Kingsport" +City "TN, Knoxville" +City "TN, Memphis" +City "TN, Murfreesboro" +City "TN, Nashville-Davidson Metropolitan Government Balance" +City "TN, Smyrna" +City "TX, Abilene" +City "TX, Allen" +City "TX, Amarillo" +City "TX, Arlington" +City "TX, Atascocita" +City "TX, Austin" +City "TX, Baytown" +City "TX, Beaumont" +City "TX, Bedford" +City "TX, Brownsville" +City "TX, Bryan" +City "TX, Burleson" +City "TX, Carrollton" +City "TX, Cedar Hill" +City "TX, Cedar Park" +City "TX, College Station" +City "TX, Conroe" +City "TX, Coppell" +City "TX, Corpus Christi" +City "TX, Dallas" +City "TX, Denton" +City "TX, Desoto" +City "TX, Edinburg" +City "TX, El Paso" +City "TX, Euless" +City "TX, Flower Mound" +City "TX, Fort Worth" +City "TX, Frisco" +City "TX, Galveston" +City "TX, Garland" +City "TX, Georgetown" +City "TX, Grand Prairie" +City "TX, Grapevine" +City "TX, Haltom City" +City "TX, Harlingen" +City "TX, Houston" +City "TX, Hurst" +City "TX, Irving" +City "TX, Keller" +City "TX, Killeen" +City "TX, Laredo" +City "TX, League City" +City "TX, Lewisville" +City "TX, Longview" +City "TX, Lubbock" +City "TX, Lufkin" +City "TX, Mansfield" +City "TX, Mcallen" +City "TX, Mckinney" +City "TX, Mesquite" +City "TX, Midland" +City "TX, Mission" +City "TX, Missouri City" +City "TX, New Braunfels" +City "TX, North Richland Hills" +City "TX, Odessa" +City "TX, Pasadena" +City "TX, Pearland" +City "TX, Pflugerville" +City "TX, Pharr" +City "TX, Plano" +City "TX, Port Arthur" +City "TX, Richardson" +City "TX, Round Rock" +City "TX, Rowlett" +City "TX, San Angelo" +City "TX, San Antonio" +City "TX, San Marcos" +City "TX, Sherman" +City "TX, Spring" +City "TX, Sugar Land" +City "TX, Temple" +City "TX, Texarkana" +City "TX, Texas City" +City "TX, The Colony" +City "TX, The Woodlands" +City "TX, Tyler" +City "TX, Victoria" +City "TX, Waco" +City "TX, Wichita Falls" +City "TX, Wylie" +City "UT, Layton" +City "UT, Lehi" +City "UT, Logan" +City "UT, Millcreek" +City "UT, Murray" +City "UT, Ogden" +City "UT, Orem" +City "UT, Provo" +City "UT, Salt Lake City" +City "UT, Sandy" +City "UT, South Jordan" +City "UT, St George" +City "UT, Taylorsville" +City "UT, West Jordan" +City "UT, West Valley City" +City "VA, Alexandria" +City "VA, Arlington" +City "VA, Ashburn" +City "VA, Blacksburg" +City "VA, Centreville" +City "VA, Charlottesville" +City "VA, Chesapeake" +City "VA, Dale City" +City "VA, Danville" +City "VA, Hampton" +City "VA, Harrisonburg" +City "VA, Lake Ridge" +City "VA, Leesburg" +City "VA, Lynchburg" +City "VA, Mclean" +City "VA, Mechanicsville" +City "VA, Newport News" +City "VA, Norfolk" +City "VA, Petersburg" +City "VA, Portsmouth" +City "VA, Reston" +City "VA, Richmond" +City "VA, Roanoke" +City "VA, Suffolk" +City "VA, Tuckahoe" +City "VA, Virginia Beach" +City "VT, Burlington" +City "WA, Auburn" +City "WA, Bellevue" +City "WA, Bellingham" +City "WA, Bremerton" +City "WA, Edmonds" +City "WA, Everett" +City "WA, Federal Way" +City "WA, Kennewick" +City "WA, Kent" +City "WA, Kirkland" +City "WA, Lacey" +City "WA, Lakewood" +City "WA, Longview" +City "WA, Marysville" +City "WA, Olympia" +City "WA, Pasco" +City "WA, Puyallup" +City "WA, Redmond" +City "WA, Renton" +City "WA, Richland" +City "WA, Sammamish" +City "WA, Seattle" +City "WA, Shoreline" +City "WA, South Hill" +City "WA, Spokane Valley" +City "WA, Spokane" +City "WA, Tacoma" +City "WA, Vancouver" +City "WA, Yakima" +City "WI, Appleton" +City "WI, Beloit" +City "WI, Eau Claire" +City "WI, Fond Du Lac" +City "WI, Green Bay" +City "WI, Greenfield" +City "WI, Janesville" +City "WI, Kenosha" +City "WI, La Crosse" +City "WI, Madison" +City "WI, Manitowoc" +City "WI, Menomonee Falls" +City "WI, Milwaukee" +City "WI, New Berlin" +City "WI, Oshkosh" +City "WI, Racine" +City "WI, Sheboygan" +City "WI, Waukesha" +City "WI, Wausau" +City "WI, Wauwatosa" +City "WI, West Allis" +City "WV, Charleston" +City "WV, Huntington" +City "WV, Parkersburg" +City "WY, Casper" +City "WY, Cheyenne" +City In another census Place +City In another census Place +City Not in a census Place +City Not in a census Place +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_present=true 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_present=true 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_present=true 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_present=true 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_present=true 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_present=false 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_present=true 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 +Clothes Washer Presence Void +Clothes Washer Presence Yes +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 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 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 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 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 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 +Cooling Setpoint 62F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=62 hvac_control_cooling_weekend_setpoint_temp=62 use_auto_cooling_season=false +Cooling Setpoint 64F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=64 hvac_control_cooling_weekend_setpoint_temp=64 use_auto_cooling_season=false +Cooling Setpoint 65F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=65 hvac_control_cooling_weekend_setpoint_temp=65 use_auto_cooling_season=false +Cooling Setpoint 66F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=66 hvac_control_cooling_weekend_setpoint_temp=66 use_auto_cooling_season=false +Cooling Setpoint 67F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=67 hvac_control_cooling_weekend_setpoint_temp=67 use_auto_cooling_season=false +Cooling Setpoint 68F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=68 hvac_control_cooling_weekend_setpoint_temp=68 use_auto_cooling_season=false +Cooling Setpoint 69F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=69 hvac_control_cooling_weekend_setpoint_temp=69 use_auto_cooling_season=false +Cooling Setpoint 70F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=70 hvac_control_cooling_weekend_setpoint_temp=70 use_auto_cooling_season=false +Cooling Setpoint 72F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=72 hvac_control_cooling_weekend_setpoint_temp=72 use_auto_cooling_season=false +Cooling Setpoint 73F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=73 hvac_control_cooling_weekend_setpoint_temp=73 use_auto_cooling_season=false +Cooling Setpoint 74F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=74 hvac_control_cooling_weekend_setpoint_temp=74 use_auto_cooling_season=false +Cooling Setpoint 75F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=75 hvac_control_cooling_weekend_setpoint_temp=75 use_auto_cooling_season=false +Cooling Setpoint 76F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=76 hvac_control_cooling_weekend_setpoint_temp=76 use_auto_cooling_season=false +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 +Cooling Setpoint 77F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=77 hvac_control_cooling_weekend_setpoint_temp=77 use_auto_cooling_season=false +Cooling Setpoint 78F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=78 hvac_control_cooling_weekend_setpoint_temp=78 use_auto_cooling_season=false +Cooling Setpoint 80F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=80 hvac_control_cooling_weekend_setpoint_temp=80 use_auto_cooling_season=false +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 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" +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 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 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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_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 +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_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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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_heating_capacity=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 +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 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 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 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 Propane ResStockArguments heating_system_2_fuel=propane +HVAC Secondary Heating Partial Space Conditioning 20% Conditioned ResStockArguments heating_system_2_fraction_heat_load_served=0.2 +HVAC Secondary Heating Partial Space Conditioning 30% Conditioned ResStockArguments heating_system_2_fraction_heat_load_served=0.3 +HVAC Secondary Heating Partial Space Conditioning 40% Conditioned ResStockArguments heating_system_2_fraction_heat_load_served=0.4 +HVAC Secondary Heating Partial Space Conditioning 50% Conditioned ResStockArguments heating_system_2_fraction_heat_load_served=0.5 +HVAC Secondary Heating Partial Space Conditioning <10% Conditioned ResStockArguments heating_system_2_fraction_heat_load_served=0.1 +HVAC Secondary Heating Partial Space Conditioning None ResStockArguments heating_system_2_fraction_heat_load_served=0 +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_heating_capacity=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 +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_heating_capacity=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 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_heating_capacity=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 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_heating_capacity=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 -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 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 -Heating Setpoint 60F ResStockArguments hvac_control_heating_weekday_setpoint_temp=60 hvac_control_heating_weekend_setpoint_temp=60 use_auto_heating_season=false -Heating Setpoint 62F ResStockArguments hvac_control_heating_weekday_setpoint_temp=62 hvac_control_heating_weekend_setpoint_temp=62 use_auto_heating_season=false -Heating Setpoint 63F ResStockArguments hvac_control_heating_weekday_setpoint_temp=63 hvac_control_heating_weekend_setpoint_temp=63 use_auto_heating_season=false -Heating Setpoint 64F ResStockArguments hvac_control_heating_weekday_setpoint_temp=64 hvac_control_heating_weekend_setpoint_temp=64 use_auto_heating_season=false -Heating Setpoint 65F ResStockArguments hvac_control_heating_weekday_setpoint_temp=65 hvac_control_heating_weekend_setpoint_temp=65 use_auto_heating_season=false -Heating Setpoint 66F ResStockArguments hvac_control_heating_weekday_setpoint_temp=66 hvac_control_heating_weekend_setpoint_temp=66 use_auto_heating_season=false -Heating Setpoint 67F ResStockArguments hvac_control_heating_weekday_setpoint_temp=67 hvac_control_heating_weekend_setpoint_temp=67 use_auto_heating_season=false -Heating Setpoint 68F ResStockArguments hvac_control_heating_weekday_setpoint_temp=68 hvac_control_heating_weekend_setpoint_temp=68 use_auto_heating_season=false -Heating Setpoint 69F ResStockArguments hvac_control_heating_weekday_setpoint_temp=69 hvac_control_heating_weekend_setpoint_temp=69 use_auto_heating_season=false -Heating Setpoint 70F ResStockArguments hvac_control_heating_weekday_setpoint_temp=70 hvac_control_heating_weekend_setpoint_temp=70 use_auto_heating_season=false -Heating Setpoint 71F ResStockArguments hvac_control_heating_weekday_setpoint_temp=71 hvac_control_heating_weekend_setpoint_temp=71 use_auto_heating_season=false -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 -Heating Setpoint 72F ResStockArguments hvac_control_heating_weekday_setpoint_temp=72 hvac_control_heating_weekend_setpoint_temp=72 use_auto_heating_season=false -Heating Setpoint 73F ResStockArguments hvac_control_heating_weekday_setpoint_temp=73 hvac_control_heating_weekend_setpoint_temp=73 use_auto_heating_season=false -Heating Setpoint 74F ResStockArguments hvac_control_heating_weekday_setpoint_temp=74 hvac_control_heating_weekend_setpoint_temp=74 use_auto_heating_season=false -Heating Setpoint 75F ResStockArguments hvac_control_heating_weekday_setpoint_temp=75 hvac_control_heating_weekend_setpoint_temp=75 use_auto_heating_season=false -Heating Setpoint 76F ResStockArguments hvac_control_heating_weekday_setpoint_temp=76 hvac_control_heating_weekend_setpoint_temp=76 use_auto_heating_season=false -Heating Setpoint 78F ResStockArguments hvac_control_heating_weekday_setpoint_temp=78 hvac_control_heating_weekend_setpoint_temp=78 use_auto_heating_season=false -Heating Setpoint 80F ResStockArguments hvac_control_heating_weekday_setpoint_temp=80 hvac_control_heating_weekend_setpoint_temp=80 use_auto_heating_season=false -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 None ResStockArguments holiday_lighting_present=false holiday_lighting_daily_kwh=0 -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 200% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.0 -Hot Water Fixtures 50% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.5 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -Insulation Rim Joist None ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 -Insulation Rim Joist Uninsulated ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 -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 -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 -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 -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 -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 -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 -Occupants 1 ResStockArguments geometry_unit_num_occupants=1 -Occupants 10+ ResStockArguments geometry_unit_num_occupants=11 -Occupants 2 ResStockArguments geometry_unit_num_occupants=2 -Occupants 3 ResStockArguments geometry_unit_num_occupants=3 -Occupants 4 ResStockArguments geometry_unit_num_occupants=4 -Occupants 5 ResStockArguments geometry_unit_num_occupants=5 -Occupants 6 ResStockArguments geometry_unit_num_occupants=6 -Occupants 7 ResStockArguments geometry_unit_num_occupants=7 -Occupants 8 ResStockArguments geometry_unit_num_occupants=8 -Occupants 9 ResStockArguments geometry_unit_num_occupants=9 -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" -PUMA "AK, 00102" -PUMA "AK, 00200" -PUMA "AK, 00300" -PUMA "AK, 00400" -PUMA "AL, 00100" -PUMA "AL, 00200" -PUMA "AL, 00301" -PUMA "AL, 00302" -PUMA "AL, 00400" -PUMA "AL, 00500" -PUMA "AL, 00600" -PUMA "AL, 00700" -PUMA "AL, 00800" -PUMA "AL, 00900" -PUMA "AL, 01000" -PUMA "AL, 01100" -PUMA "AL, 01200" -PUMA "AL, 01301" -PUMA "AL, 01302" -PUMA "AL, 01303" -PUMA "AL, 01304" -PUMA "AL, 01305" -PUMA "AL, 01400" -PUMA "AL, 01500" -PUMA "AL, 01600" -PUMA "AL, 01700" -PUMA "AL, 01800" -PUMA "AL, 01900" -PUMA "AL, 02000" -PUMA "AL, 02100" -PUMA "AL, 02200" -PUMA "AL, 02300" -PUMA "AL, 02400" -PUMA "AL, 02500" -PUMA "AL, 02600" -PUMA "AL, 02701" -PUMA "AL, 02702" -PUMA "AL, 02703" -PUMA "AR, 00100" -PUMA "AR, 00200" -PUMA "AR, 00300" -PUMA "AR, 00400" -PUMA "AR, 00500" -PUMA "AR, 00600" -PUMA "AR, 00700" -PUMA "AR, 00800" -PUMA "AR, 00900" -PUMA "AR, 01000" -PUMA "AR, 01100" -PUMA "AR, 01200" -PUMA "AR, 01300" -PUMA "AR, 01400" -PUMA "AR, 01500" -PUMA "AR, 01600" -PUMA "AR, 01700" -PUMA "AR, 01800" -PUMA "AR, 01900" -PUMA "AR, 02000" -PUMA "AZ, 00100" -PUMA "AZ, 00101" -PUMA "AZ, 00102" -PUMA "AZ, 00103" -PUMA "AZ, 00104" -PUMA "AZ, 00105" -PUMA "AZ, 00106" -PUMA "AZ, 00107" -PUMA "AZ, 00108" -PUMA "AZ, 00109" -PUMA "AZ, 00110" -PUMA "AZ, 00111" -PUMA "AZ, 00112" -PUMA "AZ, 00113" -PUMA "AZ, 00114" -PUMA "AZ, 00115" -PUMA "AZ, 00116" -PUMA "AZ, 00117" -PUMA "AZ, 00118" -PUMA "AZ, 00119" -PUMA "AZ, 00120" -PUMA "AZ, 00121" -PUMA "AZ, 00122" -PUMA "AZ, 00123" -PUMA "AZ, 00124" -PUMA "AZ, 00125" -PUMA "AZ, 00126" -PUMA "AZ, 00127" -PUMA "AZ, 00128" -PUMA "AZ, 00129" -PUMA "AZ, 00130" -PUMA "AZ, 00131" -PUMA "AZ, 00132" -PUMA "AZ, 00133" -PUMA "AZ, 00134" -PUMA "AZ, 00201" -PUMA "AZ, 00202" -PUMA "AZ, 00203" -PUMA "AZ, 00204" -PUMA "AZ, 00205" -PUMA "AZ, 00206" -PUMA "AZ, 00207" -PUMA "AZ, 00208" -PUMA "AZ, 00209" -PUMA "AZ, 00300" -PUMA "AZ, 00400" -PUMA "AZ, 00500" -PUMA "AZ, 00600" -PUMA "AZ, 00700" -PUMA "AZ, 00800" -PUMA "AZ, 00803" -PUMA "AZ, 00805" -PUMA "AZ, 00807" -PUMA "AZ, 00900" -PUMA "CA, 00101" -PUMA "CA, 00102" -PUMA "CA, 00103" -PUMA "CA, 00104" -PUMA "CA, 00105" -PUMA "CA, 00106" -PUMA "CA, 00107" -PUMA "CA, 00108" -PUMA "CA, 00109" -PUMA "CA, 00110" -PUMA "CA, 00300" -PUMA "CA, 00701" -PUMA "CA, 00702" -PUMA "CA, 01100" -PUMA "CA, 01301" -PUMA "CA, 01302" -PUMA "CA, 01303" -PUMA "CA, 01304" -PUMA "CA, 01305" -PUMA "CA, 01306" -PUMA "CA, 01307" -PUMA "CA, 01308" -PUMA "CA, 01309" -PUMA "CA, 01500" -PUMA "CA, 01700" -PUMA "CA, 01901" -PUMA "CA, 01902" -PUMA "CA, 01903" -PUMA "CA, 01904" -PUMA "CA, 01905" -PUMA "CA, 01906" -PUMA "CA, 01907" -PUMA "CA, 02300" -PUMA "CA, 02500" -PUMA "CA, 02901" -PUMA "CA, 02902" -PUMA "CA, 02903" -PUMA "CA, 02904" -PUMA "CA, 02905" -PUMA "CA, 03100" -PUMA "CA, 03300" -PUMA "CA, 03701" -PUMA "CA, 03702" -PUMA "CA, 03703" -PUMA "CA, 03704" -PUMA "CA, 03705" -PUMA "CA, 03706" -PUMA "CA, 03707" -PUMA "CA, 03708" -PUMA "CA, 03709" -PUMA "CA, 03710" -PUMA "CA, 03711" -PUMA "CA, 03712" -PUMA "CA, 03713" -PUMA "CA, 03714" -PUMA "CA, 03715" -PUMA "CA, 03716" -PUMA "CA, 03717" -PUMA "CA, 03718" -PUMA "CA, 03719" -PUMA "CA, 03720" -PUMA "CA, 03721" -PUMA "CA, 03722" -PUMA "CA, 03723" -PUMA "CA, 03724" -PUMA "CA, 03725" -PUMA "CA, 03726" -PUMA "CA, 03727" -PUMA "CA, 03728" -PUMA "CA, 03729" -PUMA "CA, 03730" -PUMA "CA, 03731" -PUMA "CA, 03732" -PUMA "CA, 03733" -PUMA "CA, 03734" -PUMA "CA, 03735" -PUMA "CA, 03736" -PUMA "CA, 03737" -PUMA "CA, 03738" -PUMA "CA, 03739" -PUMA "CA, 03740" -PUMA "CA, 03741" -PUMA "CA, 03742" -PUMA "CA, 03743" -PUMA "CA, 03744" -PUMA "CA, 03745" -PUMA "CA, 03746" -PUMA "CA, 03747" -PUMA "CA, 03748" -PUMA "CA, 03749" -PUMA "CA, 03750" -PUMA "CA, 03751" -PUMA "CA, 03752" -PUMA "CA, 03753" -PUMA "CA, 03754" -PUMA "CA, 03755" -PUMA "CA, 03756" -PUMA "CA, 03757" -PUMA "CA, 03758" -PUMA "CA, 03759" -PUMA "CA, 03760" -PUMA "CA, 03761" -PUMA "CA, 03762" -PUMA "CA, 03763" -PUMA "CA, 03764" -PUMA "CA, 03765" -PUMA "CA, 03766" -PUMA "CA, 03767" -PUMA "CA, 03768" -PUMA "CA, 03769" -PUMA "CA, 03900" -PUMA "CA, 04101" -PUMA "CA, 04102" -PUMA "CA, 04701" -PUMA "CA, 04702" -PUMA "CA, 05301" -PUMA "CA, 05302" -PUMA "CA, 05303" -PUMA "CA, 05500" -PUMA "CA, 05700" -PUMA "CA, 05901" -PUMA "CA, 05902" -PUMA "CA, 05903" -PUMA "CA, 05904" -PUMA "CA, 05905" -PUMA "CA, 05906" -PUMA "CA, 05907" -PUMA "CA, 05908" -PUMA "CA, 05909" -PUMA "CA, 05910" -PUMA "CA, 05911" -PUMA "CA, 05912" -PUMA "CA, 05913" -PUMA "CA, 05914" -PUMA "CA, 05915" -PUMA "CA, 05916" -PUMA "CA, 05917" -PUMA "CA, 05918" -PUMA "CA, 06101" -PUMA "CA, 06102" -PUMA "CA, 06103" -PUMA "CA, 06501" -PUMA "CA, 06502" -PUMA "CA, 06503" -PUMA "CA, 06504" -PUMA "CA, 06505" -PUMA "CA, 06506" -PUMA "CA, 06507" -PUMA "CA, 06508" -PUMA "CA, 06509" -PUMA "CA, 06510" -PUMA "CA, 06511" -PUMA "CA, 06512" -PUMA "CA, 06513" -PUMA "CA, 06514" -PUMA "CA, 06515" -PUMA "CA, 06701" -PUMA "CA, 06702" -PUMA "CA, 06703" -PUMA "CA, 06704" -PUMA "CA, 06705" -PUMA "CA, 06706" -PUMA "CA, 06707" -PUMA "CA, 06708" -PUMA "CA, 06709" -PUMA "CA, 06710" -PUMA "CA, 06711" -PUMA "CA, 06712" -PUMA "CA, 07101" -PUMA "CA, 07102" -PUMA "CA, 07103" -PUMA "CA, 07104" -PUMA "CA, 07105" -PUMA "CA, 07106" -PUMA "CA, 07107" -PUMA "CA, 07108" -PUMA "CA, 07109" -PUMA "CA, 07110" -PUMA "CA, 07111" -PUMA "CA, 07112" -PUMA "CA, 07113" -PUMA "CA, 07114" -PUMA "CA, 07115" -PUMA "CA, 07301" -PUMA "CA, 07302" -PUMA "CA, 07303" -PUMA "CA, 07304" -PUMA "CA, 07305" -PUMA "CA, 07306" -PUMA "CA, 07307" -PUMA "CA, 07308" -PUMA "CA, 07309" -PUMA "CA, 07310" -PUMA "CA, 07311" -PUMA "CA, 07312" -PUMA "CA, 07313" -PUMA "CA, 07314" -PUMA "CA, 07315" -PUMA "CA, 07316" -PUMA "CA, 07317" -PUMA "CA, 07318" -PUMA "CA, 07319" -PUMA "CA, 07320" -PUMA "CA, 07321" -PUMA "CA, 07322" -PUMA "CA, 07501" -PUMA "CA, 07502" -PUMA "CA, 07503" -PUMA "CA, 07504" -PUMA "CA, 07505" -PUMA "CA, 07506" -PUMA "CA, 07507" -PUMA "CA, 07701" -PUMA "CA, 07702" -PUMA "CA, 07703" -PUMA "CA, 07704" -PUMA "CA, 07901" -PUMA "CA, 07902" -PUMA "CA, 08101" -PUMA "CA, 08102" -PUMA "CA, 08103" -PUMA "CA, 08104" -PUMA "CA, 08105" -PUMA "CA, 08106" -PUMA "CA, 08301" -PUMA "CA, 08302" -PUMA "CA, 08303" -PUMA "CA, 08501" -PUMA "CA, 08502" -PUMA "CA, 08503" -PUMA "CA, 08504" -PUMA "CA, 08505" -PUMA "CA, 08506" -PUMA "CA, 08507" -PUMA "CA, 08508" -PUMA "CA, 08509" -PUMA "CA, 08510" -PUMA "CA, 08511" -PUMA "CA, 08512" -PUMA "CA, 08513" -PUMA "CA, 08514" -PUMA "CA, 08701" -PUMA "CA, 08702" -PUMA "CA, 08900" -PUMA "CA, 09501" -PUMA "CA, 09502" -PUMA "CA, 09503" -PUMA "CA, 09701" -PUMA "CA, 09702" -PUMA "CA, 09703" -PUMA "CA, 09901" -PUMA "CA, 09902" -PUMA "CA, 09903" -PUMA "CA, 09904" -PUMA "CA, 10100" -PUMA "CA, 10701" -PUMA "CA, 10702" -PUMA "CA, 10703" -PUMA "CA, 11101" -PUMA "CA, 11102" -PUMA "CA, 11103" -PUMA "CA, 11104" -PUMA "CA, 11105" -PUMA "CA, 11106" -PUMA "CA, 11300" -PUMA "CO, 00100" -PUMA "CO, 00102" -PUMA "CO, 00103" -PUMA "CO, 00200" -PUMA "CO, 00300" -PUMA "CO, 00400" -PUMA "CO, 00600" -PUMA "CO, 00700" -PUMA "CO, 00800" -PUMA "CO, 00801" -PUMA "CO, 00802" -PUMA "CO, 00803" -PUMA "CO, 00804" -PUMA "CO, 00805" -PUMA "CO, 00806" -PUMA "CO, 00807" -PUMA "CO, 00808" -PUMA "CO, 00809" -PUMA "CO, 00810" -PUMA "CO, 00811" -PUMA "CO, 00812" -PUMA "CO, 00813" -PUMA "CO, 00814" -PUMA "CO, 00815" -PUMA "CO, 00816" -PUMA "CO, 00817" -PUMA "CO, 00818" -PUMA "CO, 00819" -PUMA "CO, 00820" -PUMA "CO, 00821" -PUMA "CO, 00822" -PUMA "CO, 00823" -PUMA "CO, 00824" -PUMA "CO, 00900" -PUMA "CO, 01001" -PUMA "CO, 01002" -PUMA "CO, 04101" -PUMA "CO, 04102" -PUMA "CO, 04103" -PUMA "CO, 04104" -PUMA "CO, 04105" -PUMA "CO, 04106" -PUMA "CT, 00100" -PUMA "CT, 00101" -PUMA "CT, 00102" -PUMA "CT, 00103" -PUMA "CT, 00104" -PUMA "CT, 00105" -PUMA "CT, 00300" -PUMA "CT, 00301" -PUMA "CT, 00302" -PUMA "CT, 00303" -PUMA "CT, 00304" -PUMA "CT, 00305" -PUMA "CT, 00306" -PUMA "CT, 00500" -PUMA "CT, 00700" -PUMA "CT, 00900" -PUMA "CT, 00901" -PUMA "CT, 00902" -PUMA "CT, 00903" -PUMA "CT, 00904" -PUMA "CT, 00905" -PUMA "CT, 00906" -PUMA "CT, 01100" -PUMA "CT, 01101" -PUMA "CT, 01300" -PUMA "CT, 01500" -PUMA "DC, 00101" -PUMA "DC, 00102" -PUMA "DC, 00103" -PUMA "DC, 00104" -PUMA "DC, 00105" -PUMA "DE, 00101" -PUMA "DE, 00102" -PUMA "DE, 00103" -PUMA "DE, 00104" -PUMA "DE, 00200" -PUMA "DE, 00300" -PUMA "FL, 00101" -PUMA "FL, 00102" -PUMA "FL, 00500" -PUMA "FL, 00901" -PUMA "FL, 00902" -PUMA "FL, 00903" -PUMA "FL, 00904" -PUMA "FL, 01101" -PUMA "FL, 01102" -PUMA "FL, 01103" -PUMA "FL, 01104" -PUMA "FL, 01105" -PUMA "FL, 01106" -PUMA "FL, 01107" -PUMA "FL, 01108" -PUMA "FL, 01109" -PUMA "FL, 01110" -PUMA "FL, 01111" -PUMA "FL, 01112" -PUMA "FL, 01113" -PUMA "FL, 01114" -PUMA "FL, 01500" -PUMA "FL, 01701" -PUMA "FL, 01900" -PUMA "FL, 02101" -PUMA "FL, 02102" -PUMA "FL, 02103" -PUMA "FL, 02300" -PUMA "FL, 02700" -PUMA "FL, 03101" -PUMA "FL, 03102" -PUMA "FL, 03103" -PUMA "FL, 03104" -PUMA "FL, 03105" -PUMA "FL, 03106" -PUMA "FL, 03107" -PUMA "FL, 03301" -PUMA "FL, 03302" -PUMA "FL, 03500" -PUMA "FL, 05301" -PUMA "FL, 05701" -PUMA "FL, 05702" -PUMA "FL, 05703" -PUMA "FL, 05704" -PUMA "FL, 05705" -PUMA "FL, 05706" -PUMA "FL, 05707" -PUMA "FL, 05708" -PUMA "FL, 06100" -PUMA "FL, 06300" -PUMA "FL, 06901" -PUMA "FL, 06902" -PUMA "FL, 06903" -PUMA "FL, 07101" -PUMA "FL, 07102" -PUMA "FL, 07103" -PUMA "FL, 07104" -PUMA "FL, 07105" -PUMA "FL, 07300" -PUMA "FL, 07301" -PUMA "FL, 08101" -PUMA "FL, 08102" -PUMA "FL, 08103" -PUMA "FL, 08301" -PUMA "FL, 08302" -PUMA "FL, 08303" -PUMA "FL, 08500" -PUMA "FL, 08601" -PUMA "FL, 08602" -PUMA "FL, 08603" -PUMA "FL, 08604" -PUMA "FL, 08605" -PUMA "FL, 08606" -PUMA "FL, 08607" -PUMA "FL, 08608" -PUMA "FL, 08609" -PUMA "FL, 08610" -PUMA "FL, 08611" -PUMA "FL, 08612" -PUMA "FL, 08613" -PUMA "FL, 08614" -PUMA "FL, 08615" -PUMA "FL, 08616" -PUMA "FL, 08617" -PUMA "FL, 08618" -PUMA "FL, 08619" -PUMA "FL, 08620" -PUMA "FL, 08621" -PUMA "FL, 08622" -PUMA "FL, 08623" -PUMA "FL, 08624" -PUMA "FL, 08700" -PUMA "FL, 08900" -PUMA "FL, 09100" -PUMA "FL, 09300" -PUMA "FL, 09501" -PUMA "FL, 09502" -PUMA "FL, 09503" -PUMA "FL, 09504" -PUMA "FL, 09505" -PUMA "FL, 09506" -PUMA "FL, 09507" -PUMA "FL, 09508" -PUMA "FL, 09509" -PUMA "FL, 09510" -PUMA "FL, 09701" -PUMA "FL, 09702" -PUMA "FL, 09901" -PUMA "FL, 09902" -PUMA "FL, 09903" -PUMA "FL, 09904" -PUMA "FL, 09905" -PUMA "FL, 09906" -PUMA "FL, 09907" -PUMA "FL, 09908" -PUMA "FL, 09909" -PUMA "FL, 09910" -PUMA "FL, 09911" -PUMA "FL, 10101" -PUMA "FL, 10102" -PUMA "FL, 10103" -PUMA "FL, 10104" -PUMA "FL, 10301" -PUMA "FL, 10302" -PUMA "FL, 10303" -PUMA "FL, 10304" -PUMA "FL, 10305" -PUMA "FL, 10306" -PUMA "FL, 10307" -PUMA "FL, 10308" -PUMA "FL, 10501" -PUMA "FL, 10502" -PUMA "FL, 10503" -PUMA "FL, 10504" -PUMA "FL, 10700" -PUMA "FL, 10900" -PUMA "FL, 11101" -PUMA "FL, 11102" -PUMA "FL, 11300" -PUMA "FL, 11501" -PUMA "FL, 11502" -PUMA "FL, 11503" -PUMA "FL, 11701" -PUMA "FL, 11702" -PUMA "FL, 11703" -PUMA "FL, 11704" -PUMA "FL, 12100" -PUMA "FL, 12701" -PUMA "FL, 12702" -PUMA "FL, 12703" -PUMA "FL, 12704" -PUMA "GA, 00100" -PUMA "GA, 00200" -PUMA "GA, 00300" -PUMA "GA, 00401" -PUMA "GA, 00402" -PUMA "GA, 00500" -PUMA "GA, 00600" -PUMA "GA, 00700" -PUMA "GA, 00800" -PUMA "GA, 00900" -PUMA "GA, 01001" -PUMA "GA, 01002" -PUMA "GA, 01003" -PUMA "GA, 01004" -PUMA "GA, 01005" -PUMA "GA, 01006" -PUMA "GA, 01007" -PUMA "GA, 01008" -PUMA "GA, 01100" -PUMA "GA, 01200" -PUMA "GA, 01300" -PUMA "GA, 01400" -PUMA "GA, 01500" -PUMA "GA, 01600" -PUMA "GA, 01700" -PUMA "GA, 01800" -PUMA "GA, 01900" -PUMA "GA, 02001" -PUMA "GA, 02002" -PUMA "GA, 02003" -PUMA "GA, 02004" -PUMA "GA, 02100" -PUMA "GA, 02200" -PUMA "GA, 02300" -PUMA "GA, 02400" -PUMA "GA, 02500" -PUMA "GA, 02600" -PUMA "GA, 02700" -PUMA "GA, 02800" -PUMA "GA, 02900" -PUMA "GA, 03001" -PUMA "GA, 03002" -PUMA "GA, 03003" -PUMA "GA, 03004" -PUMA "GA, 03005" -PUMA "GA, 03101" -PUMA "GA, 03102" -PUMA "GA, 03200" -PUMA "GA, 03300" -PUMA "GA, 03400" -PUMA "GA, 03500" -PUMA "GA, 03600" -PUMA "GA, 03700" -PUMA "GA, 03800" -PUMA "GA, 03900" -PUMA "GA, 04000" -PUMA "GA, 04001" -PUMA "GA, 04002" -PUMA "GA, 04003" -PUMA "GA, 04004" -PUMA "GA, 04005" -PUMA "GA, 04006" -PUMA "GA, 04100" -PUMA "GA, 04200" -PUMA "GA, 04300" -PUMA "GA, 04400" -PUMA "GA, 04500" -PUMA "GA, 04600" -PUMA "GA, 05001" -PUMA "GA, 05002" -PUMA "GA, 06001" -PUMA "GA, 06002" -PUMA "HI, 00100" -PUMA "HI, 00200" -PUMA "HI, 00301" -PUMA "HI, 00302" -PUMA "HI, 00303" -PUMA "HI, 00304" -PUMA "HI, 00305" -PUMA "HI, 00306" -PUMA "HI, 00307" -PUMA "HI, 00308" -PUMA "IA, 00100" -PUMA "IA, 00200" -PUMA "IA, 00400" -PUMA "IA, 00500" -PUMA "IA, 00600" -PUMA "IA, 00700" -PUMA "IA, 00800" -PUMA "IA, 00900" -PUMA "IA, 01000" -PUMA "IA, 01100" -PUMA "IA, 01200" -PUMA "IA, 01300" -PUMA "IA, 01400" -PUMA "IA, 01500" -PUMA "IA, 01600" -PUMA "IA, 01700" -PUMA "IA, 01800" -PUMA "IA, 01900" -PUMA "IA, 02000" -PUMA "IA, 02100" -PUMA "IA, 02200" -PUMA "IA, 02300" -PUMA "ID, 00100" -PUMA "ID, 00200" -PUMA "ID, 00300" -PUMA "ID, 00400" -PUMA "ID, 00500" -PUMA "ID, 00600" -PUMA "ID, 00701" -PUMA "ID, 00702" -PUMA "ID, 00800" -PUMA "ID, 00900" -PUMA "ID, 01000" -PUMA "ID, 01100" -PUMA "ID, 01200" -PUMA "ID, 01300" -PUMA "IL, 00104" -PUMA "IL, 00105" -PUMA "IL, 00202" -PUMA "IL, 00300" -PUMA "IL, 00401" -PUMA "IL, 00501" -PUMA "IL, 00600" -PUMA "IL, 00700" -PUMA "IL, 00800" -PUMA "IL, 00900" -PUMA "IL, 01001" -PUMA "IL, 01104" -PUMA "IL, 01105" -PUMA "IL, 01204" -PUMA "IL, 01205" -PUMA "IL, 01300" -PUMA "IL, 01500" -PUMA "IL, 01602" -PUMA "IL, 01701" -PUMA "IL, 01900" -PUMA "IL, 02000" -PUMA "IL, 02100" -PUMA "IL, 02200" -PUMA "IL, 02300" -PUMA "IL, 02400" -PUMA "IL, 02501" -PUMA "IL, 02601" -PUMA "IL, 02700" -PUMA "IL, 02801" -PUMA "IL, 02901" -PUMA "IL, 03005" -PUMA "IL, 03007" -PUMA "IL, 03008" -PUMA "IL, 03009" -PUMA "IL, 03102" -PUMA "IL, 03105" -PUMA "IL, 03106" -PUMA "IL, 03107" -PUMA "IL, 03108" -PUMA "IL, 03202" -PUMA "IL, 03203" -PUMA "IL, 03204" -PUMA "IL, 03205" -PUMA "IL, 03207" -PUMA "IL, 03208" -PUMA "IL, 03209" -PUMA "IL, 03306" -PUMA "IL, 03307" -PUMA "IL, 03308" -PUMA "IL, 03309" -PUMA "IL, 03310" -PUMA "IL, 03401" -PUMA "IL, 03407" -PUMA "IL, 03408" -PUMA "IL, 03409" -PUMA "IL, 03410" -PUMA "IL, 03411" -PUMA "IL, 03412" -PUMA "IL, 03413" -PUMA "IL, 03414" -PUMA "IL, 03415" -PUMA "IL, 03416" -PUMA "IL, 03417" -PUMA "IL, 03418" -PUMA "IL, 03419" -PUMA "IL, 03420" -PUMA "IL, 03421" -PUMA "IL, 03422" -PUMA "IL, 03501" -PUMA "IL, 03502" -PUMA "IL, 03503" -PUMA "IL, 03504" -PUMA "IL, 03520" -PUMA "IL, 03521" -PUMA "IL, 03522" -PUMA "IL, 03523" -PUMA "IL, 03524" -PUMA "IL, 03525" -PUMA "IL, 03526" -PUMA "IL, 03527" -PUMA "IL, 03528" -PUMA "IL, 03529" -PUMA "IL, 03530" -PUMA "IL, 03531" -PUMA "IL, 03532" -PUMA "IL, 03601" -PUMA "IL, 03602" -PUMA "IL, 03700" -PUMA "IN, 00101" -PUMA "IN, 00102" -PUMA "IN, 00103" -PUMA "IN, 00104" -PUMA "IN, 00200" -PUMA "IN, 00300" -PUMA "IN, 00401" -PUMA "IN, 00402" -PUMA "IN, 00500" -PUMA "IN, 00600" -PUMA "IN, 00700" -PUMA "IN, 00800" -PUMA "IN, 00900" -PUMA "IN, 01001" -PUMA "IN, 01002" -PUMA "IN, 01003" -PUMA "IN, 01100" -PUMA "IN, 01200" -PUMA "IN, 01300" -PUMA "IN, 01400" -PUMA "IN, 01500" -PUMA "IN, 01600" -PUMA "IN, 01700" -PUMA "IN, 01801" -PUMA "IN, 01802" -PUMA "IN, 01803" -PUMA "IN, 01900" -PUMA "IN, 02000" -PUMA "IN, 02100" -PUMA "IN, 02200" -PUMA "IN, 02301" -PUMA "IN, 02302" -PUMA "IN, 02303" -PUMA "IN, 02304" -PUMA "IN, 02305" -PUMA "IN, 02306" -PUMA "IN, 02307" -PUMA "IN, 02400" -PUMA "IN, 02500" -PUMA "IN, 02600" -PUMA "IN, 02700" -PUMA "IN, 02800" -PUMA "IN, 02900" -PUMA "IN, 03000" -PUMA "IN, 03100" -PUMA "IN, 03200" -PUMA "IN, 03300" -PUMA "IN, 03400" -PUMA "IN, 03500" -PUMA "IN, 03600" -PUMA "KS, 00100" -PUMA "KS, 00200" -PUMA "KS, 00300" -PUMA "KS, 00400" -PUMA "KS, 00500" -PUMA "KS, 00601" -PUMA "KS, 00602" -PUMA "KS, 00603" -PUMA "KS, 00604" -PUMA "KS, 00700" -PUMA "KS, 00801" -PUMA "KS, 00802" -PUMA "KS, 00900" -PUMA "KS, 01000" -PUMA "KS, 01100" -PUMA "KS, 01200" -PUMA "KS, 01301" -PUMA "KS, 01302" -PUMA "KS, 01303" -PUMA "KS, 01304" -PUMA "KS, 01400" -PUMA "KS, 01500" -PUMA "KY, 00100" -PUMA "KY, 00200" -PUMA "KY, 00300" -PUMA "KY, 00400" -PUMA "KY, 00500" -PUMA "KY, 00600" -PUMA "KY, 00700" -PUMA "KY, 00800" -PUMA "KY, 00900" -PUMA "KY, 01000" -PUMA "KY, 01100" -PUMA "KY, 01200" -PUMA "KY, 01300" -PUMA "KY, 01400" -PUMA "KY, 01500" -PUMA "KY, 01600" -PUMA "KY, 01701" -PUMA "KY, 01702" -PUMA "KY, 01703" -PUMA "KY, 01704" -PUMA "KY, 01705" -PUMA "KY, 01706" -PUMA "KY, 01800" -PUMA "KY, 01901" -PUMA "KY, 01902" -PUMA "KY, 02000" -PUMA "KY, 02100" -PUMA "KY, 02200" -PUMA "KY, 02300" -PUMA "KY, 02400" -PUMA "KY, 02500" -PUMA "KY, 02600" -PUMA "KY, 02700" -PUMA "KY, 02800" -PUMA "LA, 00100" -PUMA "LA, 00101" -PUMA "LA, 00200" -PUMA "LA, 00300" -PUMA "LA, 00400" -PUMA "LA, 00500" -PUMA "LA, 00600" -PUMA "LA, 00700" -PUMA "LA, 00800" -PUMA "LA, 00900" -PUMA "LA, 01000" -PUMA "LA, 01100" -PUMA "LA, 01200" -PUMA "LA, 01201" -PUMA "LA, 01300" -PUMA "LA, 01400" -PUMA "LA, 01500" -PUMA "LA, 01501" -PUMA "LA, 01502" -PUMA "LA, 01600" -PUMA "LA, 01700" -PUMA "LA, 01800" -PUMA "LA, 01900" -PUMA "LA, 02000" -PUMA "LA, 02100" -PUMA "LA, 02200" -PUMA "LA, 02201" -PUMA "LA, 02300" -PUMA "LA, 02301" -PUMA "LA, 02302" -PUMA "LA, 02400" -PUMA "LA, 02401" -PUMA "LA, 02402" -PUMA "LA, 02500" -PUMA "MA, 00100" -PUMA "MA, 00200" -PUMA "MA, 00300" -PUMA "MA, 00301" -PUMA "MA, 00302" -PUMA "MA, 00303" -PUMA "MA, 00304" -PUMA "MA, 00400" -PUMA "MA, 00501" -PUMA "MA, 00502" -PUMA "MA, 00503" -PUMA "MA, 00504" -PUMA "MA, 00505" -PUMA "MA, 00506" -PUMA "MA, 00507" -PUMA "MA, 00508" -PUMA "MA, 00701" -PUMA "MA, 00702" -PUMA "MA, 00703" -PUMA "MA, 00704" -PUMA "MA, 01000" -PUMA "MA, 01300" -PUMA "MA, 01400" -PUMA "MA, 01600" -PUMA "MA, 01900" -PUMA "MA, 01901" -PUMA "MA, 01902" -PUMA "MA, 02400" -PUMA "MA, 02800" -PUMA "MA, 03301" -PUMA "MA, 03302" -PUMA "MA, 03303" -PUMA "MA, 03304" -PUMA "MA, 03305" -PUMA "MA, 03306" -PUMA "MA, 03400" -PUMA "MA, 03500" -PUMA "MA, 03601" -PUMA "MA, 03602" -PUMA "MA, 03603" -PUMA "MA, 03900" -PUMA "MA, 04000" -PUMA "MA, 04200" -PUMA "MA, 04301" -PUMA "MA, 04302" -PUMA "MA, 04303" -PUMA "MA, 04500" -PUMA "MA, 04700" -PUMA "MA, 04800" -PUMA "MA, 04901" -PUMA "MA, 04902" -PUMA "MA, 04903" -PUMA "MD, 00100" -PUMA "MD, 00200" -PUMA "MD, 00301" -PUMA "MD, 00302" -PUMA "MD, 00400" -PUMA "MD, 00501" -PUMA "MD, 00502" -PUMA "MD, 00503" -PUMA "MD, 00504" -PUMA "MD, 00505" -PUMA "MD, 00506" -PUMA "MD, 00507" -PUMA "MD, 00601" -PUMA "MD, 00602" -PUMA "MD, 00700" -PUMA "MD, 00801" -PUMA "MD, 00802" -PUMA "MD, 00803" -PUMA "MD, 00804" -PUMA "MD, 00805" -PUMA "MD, 00901" -PUMA "MD, 00902" -PUMA "MD, 01001" -PUMA "MD, 01002" -PUMA "MD, 01003" -PUMA "MD, 01004" -PUMA "MD, 01005" -PUMA "MD, 01006" -PUMA "MD, 01007" -PUMA "MD, 01101" -PUMA "MD, 01102" -PUMA "MD, 01103" -PUMA "MD, 01104" -PUMA "MD, 01105" -PUMA "MD, 01106" -PUMA "MD, 01107" -PUMA "MD, 01201" -PUMA "MD, 01202" -PUMA "MD, 01203" -PUMA "MD, 01204" -PUMA "MD, 01300" -PUMA "MD, 01400" -PUMA "MD, 01500" -PUMA "MD, 01600" -PUMA "ME, 00100" -PUMA "ME, 00200" -PUMA "ME, 00300" -PUMA "ME, 00400" -PUMA "ME, 00500" -PUMA "ME, 00600" -PUMA "ME, 00700" -PUMA "ME, 00800" -PUMA "ME, 00900" -PUMA "ME, 01000" -PUMA "MI, 00100" -PUMA "MI, 00200" -PUMA "MI, 00300" -PUMA "MI, 00400" -PUMA "MI, 00500" -PUMA "MI, 00600" -PUMA "MI, 00700" -PUMA "MI, 00801" -PUMA "MI, 00802" -PUMA "MI, 00900" -PUMA "MI, 01001" -PUMA "MI, 01002" -PUMA "MI, 01003" -PUMA "MI, 01004" -PUMA "MI, 01100" -PUMA "MI, 01200" -PUMA "MI, 01300" -PUMA "MI, 01400" -PUMA "MI, 01500" -PUMA "MI, 01600" -PUMA "MI, 01701" -PUMA "MI, 01702" -PUMA "MI, 01703" -PUMA "MI, 01704" -PUMA "MI, 01801" -PUMA "MI, 01802" -PUMA "MI, 01900" -PUMA "MI, 02000" -PUMA "MI, 02101" -PUMA "MI, 02102" -PUMA "MI, 02200" -PUMA "MI, 02300" -PUMA "MI, 02400" -PUMA "MI, 02500" -PUMA "MI, 02600" -PUMA "MI, 02701" -PUMA "MI, 02702" -PUMA "MI, 02703" -PUMA "MI, 02800" -PUMA "MI, 02901" -PUMA "MI, 02902" -PUMA "MI, 02903" -PUMA "MI, 02904" -PUMA "MI, 02905" -PUMA "MI, 02906" -PUMA "MI, 02907" -PUMA "MI, 02908" -PUMA "MI, 03001" -PUMA "MI, 03002" -PUMA "MI, 03003" -PUMA "MI, 03004" -PUMA "MI, 03005" -PUMA "MI, 03006" -PUMA "MI, 03100" -PUMA "MI, 03201" -PUMA "MI, 03202" -PUMA "MI, 03203" -PUMA "MI, 03204" -PUMA "MI, 03205" -PUMA "MI, 03206" -PUMA "MI, 03207" -PUMA "MI, 03208" -PUMA "MI, 03209" -PUMA "MI, 03210" -PUMA "MI, 03211" -PUMA "MI, 03212" -PUMA "MI, 03213" -PUMA "MI, 03300" -PUMA "MN, 00100" -PUMA "MN, 00200" -PUMA "MN, 00300" -PUMA "MN, 00400" -PUMA "MN, 00500" -PUMA "MN, 00600" -PUMA "MN, 00700" -PUMA "MN, 00800" -PUMA "MN, 00900" -PUMA "MN, 01000" -PUMA "MN, 01101" -PUMA "MN, 01102" -PUMA "MN, 01103" -PUMA "MN, 01201" -PUMA "MN, 01202" -PUMA "MN, 01301" -PUMA "MN, 01302" -PUMA "MN, 01303" -PUMA "MN, 01304" -PUMA "MN, 01401" -PUMA "MN, 01402" -PUMA "MN, 01403" -PUMA "MN, 01404" -PUMA "MN, 01405" -PUMA "MN, 01406" -PUMA "MN, 01407" -PUMA "MN, 01408" -PUMA "MN, 01409" -PUMA "MN, 01410" -PUMA "MN, 01501" -PUMA "MN, 01502" -PUMA "MN, 01503" -PUMA "MN, 01600" -PUMA "MN, 01700" -PUMA "MN, 01800" -PUMA "MN, 01900" -PUMA "MN, 02000" -PUMA "MN, 02100" -PUMA "MN, 02200" -PUMA "MN, 02300" -PUMA "MN, 02400" -PUMA "MN, 02500" -PUMA "MN, 02600" -PUMA "MO, 00100" -PUMA "MO, 00200" -PUMA "MO, 00300" -PUMA "MO, 00400" -PUMA "MO, 00500" -PUMA "MO, 00600" -PUMA "MO, 00700" -PUMA "MO, 00800" -PUMA "MO, 00901" -PUMA "MO, 00902" -PUMA "MO, 00903" -PUMA "MO, 01001" -PUMA "MO, 01002" -PUMA "MO, 01003" -PUMA "MO, 01004" -PUMA "MO, 01005" -PUMA "MO, 01100" -PUMA "MO, 01200" -PUMA "MO, 01300" -PUMA "MO, 01400" -PUMA "MO, 01500" -PUMA "MO, 01600" -PUMA "MO, 01701" -PUMA "MO, 01702" -PUMA "MO, 01703" -PUMA "MO, 01801" -PUMA "MO, 01802" -PUMA "MO, 01803" -PUMA "MO, 01804" -PUMA "MO, 01805" -PUMA "MO, 01806" -PUMA "MO, 01807" -PUMA "MO, 01808" -PUMA "MO, 01901" -PUMA "MO, 01902" -PUMA "MO, 02001" -PUMA "MO, 02002" -PUMA "MO, 02100" -PUMA "MO, 02200" -PUMA "MO, 02300" -PUMA "MO, 02400" -PUMA "MO, 02500" -PUMA "MO, 02601" -PUMA "MO, 02602" -PUMA "MO, 02603" -PUMA "MO, 02700" -PUMA "MO, 02800" -PUMA "MS, 00100" -PUMA "MS, 00200" -PUMA "MS, 00300" -PUMA "MS, 00400" -PUMA "MS, 00500" -PUMA "MS, 00600" -PUMA "MS, 00700" -PUMA "MS, 00800" -PUMA "MS, 00900" -PUMA "MS, 01000" -PUMA "MS, 01100" -PUMA "MS, 01200" -PUMA "MS, 01300" -PUMA "MS, 01400" -PUMA "MS, 01500" -PUMA "MS, 01600" -PUMA "MS, 01700" -PUMA "MS, 01800" -PUMA "MS, 01900" -PUMA "MS, 02000" -PUMA "MS, 02100" -PUMA "MT, 00100" -PUMA "MT, 00200" -PUMA "MT, 00300" -PUMA "MT, 00400" -PUMA "MT, 00500" -PUMA "MT, 00600" -PUMA "MT, 00700" -PUMA "NC, 00100" -PUMA "NC, 00200" -PUMA "NC, 00300" -PUMA "NC, 00400" -PUMA "NC, 00500" -PUMA "NC, 00600" -PUMA "NC, 00700" -PUMA "NC, 00800" -PUMA "NC, 00900" -PUMA "NC, 01000" -PUMA "NC, 01100" -PUMA "NC, 01201" -PUMA "NC, 01202" -PUMA "NC, 01203" -PUMA "NC, 01204" -PUMA "NC, 01205" -PUMA "NC, 01206" -PUMA "NC, 01207" -PUMA "NC, 01208" -PUMA "NC, 01301" -PUMA "NC, 01302" -PUMA "NC, 01400" -PUMA "NC, 01500" -PUMA "NC, 01600" -PUMA "NC, 01701" -PUMA "NC, 01702" -PUMA "NC, 01703" -PUMA "NC, 01704" -PUMA "NC, 01801" -PUMA "NC, 01802" -PUMA "NC, 01803" -PUMA "NC, 01900" -PUMA "NC, 02000" -PUMA "NC, 02100" -PUMA "NC, 02201" -PUMA "NC, 02202" -PUMA "NC, 02300" -PUMA "NC, 02400" -PUMA "NC, 02500" -PUMA "NC, 02600" -PUMA "NC, 02700" -PUMA "NC, 02800" -PUMA "NC, 02900" -PUMA "NC, 03001" -PUMA "NC, 03002" -PUMA "NC, 03101" -PUMA "NC, 03102" -PUMA "NC, 03103" -PUMA "NC, 03104" -PUMA "NC, 03105" -PUMA "NC, 03106" -PUMA "NC, 03107" -PUMA "NC, 03108" -PUMA "NC, 03200" -PUMA "NC, 03300" -PUMA "NC, 03400" -PUMA "NC, 03500" -PUMA "NC, 03600" -PUMA "NC, 03700" -PUMA "NC, 03800" -PUMA "NC, 03900" -PUMA "NC, 04000" -PUMA "NC, 04100" -PUMA "NC, 04200" -PUMA "NC, 04300" -PUMA "NC, 04400" -PUMA "NC, 04500" -PUMA "NC, 04600" -PUMA "NC, 04700" -PUMA "NC, 04800" -PUMA "NC, 04900" -PUMA "NC, 05001" -PUMA "NC, 05002" -PUMA "NC, 05003" -PUMA "NC, 05100" -PUMA "NC, 05200" -PUMA "NC, 05300" -PUMA "NC, 05400" -PUMA "ND, 00100" -PUMA "ND, 00200" -PUMA "ND, 00300" -PUMA "ND, 00400" -PUMA "ND, 00500" -PUMA "NE, 00100" -PUMA "NE, 00200" -PUMA "NE, 00300" -PUMA "NE, 00400" -PUMA "NE, 00500" -PUMA "NE, 00600" -PUMA "NE, 00701" -PUMA "NE, 00702" -PUMA "NE, 00801" -PUMA "NE, 00802" -PUMA "NE, 00901" -PUMA "NE, 00902" -PUMA "NE, 00903" -PUMA "NE, 00904" -PUMA "NH, 00100" -PUMA "NH, 00200" -PUMA "NH, 00300" -PUMA "NH, 00400" -PUMA "NH, 00500" -PUMA "NH, 00600" -PUMA "NH, 00700" -PUMA "NH, 00800" -PUMA "NH, 00900" -PUMA "NH, 01000" -PUMA "NJ, 00101" -PUMA "NJ, 00102" -PUMA "NJ, 00301" -PUMA "NJ, 00302" -PUMA "NJ, 00303" -PUMA "NJ, 00304" -PUMA "NJ, 00305" -PUMA "NJ, 00306" -PUMA "NJ, 00307" -PUMA "NJ, 00308" -PUMA "NJ, 00400" -PUMA "NJ, 00501" -PUMA "NJ, 00502" -PUMA "NJ, 00503" -PUMA "NJ, 00601" -PUMA "NJ, 00602" -PUMA "NJ, 00701" -PUMA "NJ, 00702" -PUMA "NJ, 00703" -PUMA "NJ, 00800" -PUMA "NJ, 00901" -PUMA "NJ, 00902" -PUMA "NJ, 00903" -PUMA "NJ, 00904" -PUMA "NJ, 00905" -PUMA "NJ, 00906" -PUMA "NJ, 00907" -PUMA "NJ, 01001" -PUMA "NJ, 01002" -PUMA "NJ, 01003" -PUMA "NJ, 01101" -PUMA "NJ, 01102" -PUMA "NJ, 01103" -PUMA "NJ, 01104" -PUMA "NJ, 01105" -PUMA "NJ, 01106" -PUMA "NJ, 01201" -PUMA "NJ, 01202" -PUMA "NJ, 01203" -PUMA "NJ, 01204" -PUMA "NJ, 01205" -PUMA "NJ, 01301" -PUMA "NJ, 01302" -PUMA "NJ, 01401" -PUMA "NJ, 01402" -PUMA "NJ, 01403" -PUMA "NJ, 01404" -PUMA "NJ, 01501" -PUMA "NJ, 01502" -PUMA "NJ, 01503" -PUMA "NJ, 01504" -PUMA "NJ, 01600" -PUMA "NJ, 01700" -PUMA "NJ, 01800" -PUMA "NJ, 01901" -PUMA "NJ, 01902" -PUMA "NJ, 01903" -PUMA "NJ, 01904" -PUMA "NJ, 02001" -PUMA "NJ, 02002" -PUMA "NJ, 02003" -PUMA "NJ, 02101" -PUMA "NJ, 02102" -PUMA "NJ, 02103" -PUMA "NJ, 02104" -PUMA "NJ, 02201" -PUMA "NJ, 02202" -PUMA "NJ, 02301" -PUMA "NJ, 02302" -PUMA "NJ, 02303" -PUMA "NJ, 02400" -PUMA "NJ, 02500" -PUMA "NJ, 02600" -PUMA "NM, 00100" -PUMA "NM, 00200" -PUMA "NM, 00300" -PUMA "NM, 00400" -PUMA "NM, 00500" -PUMA "NM, 00600" -PUMA "NM, 00700" -PUMA "NM, 00801" -PUMA "NM, 00802" -PUMA "NM, 00803" -PUMA "NM, 00804" -PUMA "NM, 00805" -PUMA "NM, 00806" -PUMA "NM, 00900" -PUMA "NM, 01001" -PUMA "NM, 01002" -PUMA "NM, 01100" -PUMA "NM, 01200" -PUMA "NV, 00101" -PUMA "NV, 00102" -PUMA "NV, 00103" -PUMA "NV, 00200" -PUMA "NV, 00300" -PUMA "NV, 00401" -PUMA "NV, 00402" -PUMA "NV, 00403" -PUMA "NV, 00404" -PUMA "NV, 00405" -PUMA "NV, 00406" -PUMA "NV, 00407" -PUMA "NV, 00408" -PUMA "NV, 00409" -PUMA "NV, 00410" -PUMA "NV, 00411" -PUMA "NV, 00412" -PUMA "NV, 00413" -PUMA "NY, 00100" -PUMA "NY, 00200" -PUMA "NY, 00300" -PUMA "NY, 00401" -PUMA "NY, 00402" -PUMA "NY, 00403" -PUMA "NY, 00500" -PUMA "NY, 00600" -PUMA "NY, 00701" -PUMA "NY, 00702" -PUMA "NY, 00703" -PUMA "NY, 00704" -PUMA "NY, 00800" -PUMA "NY, 00901" -PUMA "NY, 00902" -PUMA "NY, 00903" -PUMA "NY, 00904" -PUMA "NY, 00905" -PUMA "NY, 00906" -PUMA "NY, 01000" -PUMA "NY, 01101" -PUMA "NY, 01102" -PUMA "NY, 01201" -PUMA "NY, 01202" -PUMA "NY, 01203" -PUMA "NY, 01204" -PUMA "NY, 01205" -PUMA "NY, 01206" -PUMA "NY, 01207" -PUMA "NY, 01300" -PUMA "NY, 01400" -PUMA "NY, 01500" -PUMA "NY, 01600" -PUMA "NY, 01700" -PUMA "NY, 01801" -PUMA "NY, 01802" -PUMA "NY, 01900" -PUMA "NY, 02001" -PUMA "NY, 02002" -PUMA "NY, 02100" -PUMA "NY, 02201" -PUMA "NY, 02202" -PUMA "NY, 02203" -PUMA "NY, 02300" -PUMA "NY, 02401" -PUMA "NY, 02402" -PUMA "NY, 02500" -PUMA "NY, 02600" -PUMA "NY, 02701" -PUMA "NY, 02702" -PUMA "NY, 02801" -PUMA "NY, 02802" -PUMA "NY, 02901" -PUMA "NY, 02902" -PUMA "NY, 02903" -PUMA "NY, 03001" -PUMA "NY, 03002" -PUMA "NY, 03003" -PUMA "NY, 03101" -PUMA "NY, 03102" -PUMA "NY, 03103" -PUMA "NY, 03104" -PUMA "NY, 03105" -PUMA "NY, 03106" -PUMA "NY, 03107" -PUMA "NY, 03201" -PUMA "NY, 03202" -PUMA "NY, 03203" -PUMA "NY, 03204" -PUMA "NY, 03205" -PUMA "NY, 03206" -PUMA "NY, 03207" -PUMA "NY, 03208" -PUMA "NY, 03209" -PUMA "NY, 03210" -PUMA "NY, 03211" -PUMA "NY, 03212" -PUMA "NY, 03301" -PUMA "NY, 03302" -PUMA "NY, 03303" -PUMA "NY, 03304" -PUMA "NY, 03305" -PUMA "NY, 03306" -PUMA "NY, 03307" -PUMA "NY, 03308" -PUMA "NY, 03309" -PUMA "NY, 03310" -PUMA "NY, 03311" -PUMA "NY, 03312" -PUMA "NY, 03313" -PUMA "NY, 03701" -PUMA "NY, 03702" -PUMA "NY, 03703" -PUMA "NY, 03704" -PUMA "NY, 03705" -PUMA "NY, 03706" -PUMA "NY, 03707" -PUMA "NY, 03708" -PUMA "NY, 03709" -PUMA "NY, 03710" -PUMA "NY, 03801" -PUMA "NY, 03802" -PUMA "NY, 03803" -PUMA "NY, 03804" -PUMA "NY, 03805" -PUMA "NY, 03806" -PUMA "NY, 03807" -PUMA "NY, 03808" -PUMA "NY, 03809" -PUMA "NY, 03810" -PUMA "NY, 03901" -PUMA "NY, 03902" -PUMA "NY, 03903" -PUMA "NY, 04001" -PUMA "NY, 04002" -PUMA "NY, 04003" -PUMA "NY, 04004" -PUMA "NY, 04005" -PUMA "NY, 04006" -PUMA "NY, 04007" -PUMA "NY, 04008" -PUMA "NY, 04009" -PUMA "NY, 04010" -PUMA "NY, 04011" -PUMA "NY, 04012" -PUMA "NY, 04013" -PUMA "NY, 04014" -PUMA "NY, 04015" -PUMA "NY, 04016" -PUMA "NY, 04017" -PUMA "NY, 04018" -PUMA "NY, 04101" -PUMA "NY, 04102" -PUMA "NY, 04103" -PUMA "NY, 04104" -PUMA "NY, 04105" -PUMA "NY, 04106" -PUMA "NY, 04107" -PUMA "NY, 04108" -PUMA "NY, 04109" -PUMA "NY, 04110" -PUMA "NY, 04111" -PUMA "NY, 04112" -PUMA "NY, 04113" -PUMA "NY, 04114" -PUMA "OH, 00100" -PUMA "OH, 00200" -PUMA "OH, 00300" -PUMA "OH, 00400" -PUMA "OH, 00500" -PUMA "OH, 00600" -PUMA "OH, 00700" -PUMA "OH, 00801" -PUMA "OH, 00802" -PUMA "OH, 00901" -PUMA "OH, 00902" -PUMA "OH, 00903" -PUMA "OH, 00904" -PUMA "OH, 00905" -PUMA "OH, 00906" -PUMA "OH, 00907" -PUMA "OH, 00908" -PUMA "OH, 00909" -PUMA "OH, 00910" -PUMA "OH, 01000" -PUMA "OH, 01100" -PUMA "OH, 01200" -PUMA "OH, 01300" -PUMA "OH, 01400" -PUMA "OH, 01500" -PUMA "OH, 01600" -PUMA "OH, 01700" -PUMA "OH, 01801" -PUMA "OH, 01802" -PUMA "OH, 01803" -PUMA "OH, 01804" -PUMA "OH, 01805" -PUMA "OH, 01900" -PUMA "OH, 02000" -PUMA "OH, 02100" -PUMA "OH, 02200" -PUMA "OH, 02300" -PUMA "OH, 02400" -PUMA "OH, 02500" -PUMA "OH, 02600" -PUMA "OH, 02700" -PUMA "OH, 02800" -PUMA "OH, 02900" -PUMA "OH, 03000" -PUMA "OH, 03100" -PUMA "OH, 03200" -PUMA "OH, 03300" -PUMA "OH, 03400" -PUMA "OH, 03500" -PUMA "OH, 03600" -PUMA "OH, 03700" -PUMA "OH, 03800" -PUMA "OH, 03900" -PUMA "OH, 04000" -PUMA "OH, 04101" -PUMA "OH, 04102" -PUMA "OH, 04103" -PUMA "OH, 04104" -PUMA "OH, 04105" -PUMA "OH, 04106" -PUMA "OH, 04107" -PUMA "OH, 04108" -PUMA "OH, 04109" -PUMA "OH, 04110" -PUMA "OH, 04111" -PUMA "OH, 04200" -PUMA "OH, 04300" -PUMA "OH, 04400" -PUMA "OH, 04500" -PUMA "OH, 04601" -PUMA "OH, 04602" -PUMA "OH, 04603" -PUMA "OH, 04604" -PUMA "OH, 04700" -PUMA "OH, 04800" -PUMA "OH, 04900" -PUMA "OH, 05000" -PUMA "OH, 05100" -PUMA "OH, 05200" -PUMA "OH, 05301" -PUMA "OH, 05302" -PUMA "OH, 05401" -PUMA "OH, 05402" -PUMA "OH, 05403" -PUMA "OH, 05501" -PUMA "OH, 05502" -PUMA "OH, 05503" -PUMA "OH, 05504" -PUMA "OH, 05505" -PUMA "OH, 05506" -PUMA "OH, 05507" -PUMA "OH, 05600" -PUMA "OH, 05700" -PUMA "OK, 00100" -PUMA "OK, 00200" -PUMA "OK, 00300" -PUMA "OK, 00400" -PUMA "OK, 00500" -PUMA "OK, 00601" -PUMA "OK, 00602" -PUMA "OK, 00701" -PUMA "OK, 00702" -PUMA "OK, 00800" -PUMA "OK, 00900" -PUMA "OK, 01001" -PUMA "OK, 01002" -PUMA "OK, 01003" -PUMA "OK, 01004" -PUMA "OK, 01005" -PUMA "OK, 01006" -PUMA "OK, 01101" -PUMA "OK, 01102" -PUMA "OK, 01201" -PUMA "OK, 01202" -PUMA "OK, 01203" -PUMA "OK, 01204" -PUMA "OK, 01301" -PUMA "OK, 01302" -PUMA "OK, 01400" -PUMA "OK, 01501" -PUMA "OK, 01601" -PUMA "OR, 00100" -PUMA "OR, 00200" -PUMA "OR, 00300" -PUMA "OR, 00400" -PUMA "OR, 00500" -PUMA "OR, 00600" -PUMA "OR, 00703" -PUMA "OR, 00704" -PUMA "OR, 00705" -PUMA "OR, 00800" -PUMA "OR, 00901" -PUMA "OR, 00902" -PUMA "OR, 01000" -PUMA "OR, 01103" -PUMA "OR, 01104" -PUMA "OR, 01105" -PUMA "OR, 01200" -PUMA "OR, 01301" -PUMA "OR, 01302" -PUMA "OR, 01303" -PUMA "OR, 01305" -PUMA "OR, 01314" -PUMA "OR, 01316" -PUMA "OR, 01317" -PUMA "OR, 01318" -PUMA "OR, 01319" -PUMA "OR, 01320" -PUMA "OR, 01321" -PUMA "OR, 01322" -PUMA "OR, 01323" -PUMA "OR, 01324" -PUMA "PA, 00101" -PUMA "PA, 00102" -PUMA "PA, 00200" -PUMA "PA, 00300" -PUMA "PA, 00400" -PUMA "PA, 00500" -PUMA "PA, 00600" -PUMA "PA, 00701" -PUMA "PA, 00702" -PUMA "PA, 00801" -PUMA "PA, 00802" -PUMA "PA, 00803" -PUMA "PA, 00900" -PUMA "PA, 01000" -PUMA "PA, 01100" -PUMA "PA, 01200" -PUMA "PA, 01300" -PUMA "PA, 01400" -PUMA "PA, 01501" -PUMA "PA, 01502" -PUMA "PA, 01600" -PUMA "PA, 01701" -PUMA "PA, 01702" -PUMA "PA, 01801" -PUMA "PA, 01802" -PUMA "PA, 01803" -PUMA "PA, 01804" -PUMA "PA, 01805" -PUMA "PA, 01806" -PUMA "PA, 01807" -PUMA "PA, 01900" -PUMA "PA, 02001" -PUMA "PA, 02002" -PUMA "PA, 02003" -PUMA "PA, 02100" -PUMA "PA, 02200" -PUMA "PA, 02301" -PUMA "PA, 02302" -PUMA "PA, 02401" -PUMA "PA, 02402" -PUMA "PA, 02500" -PUMA "PA, 02600" -PUMA "PA, 02701" -PUMA "PA, 02702" -PUMA "PA, 02703" -PUMA "PA, 02801" -PUMA "PA, 02802" -PUMA "PA, 02803" -PUMA "PA, 02901" -PUMA "PA, 02902" -PUMA "PA, 03001" -PUMA "PA, 03002" -PUMA "PA, 03003" -PUMA "PA, 03004" -PUMA "PA, 03101" -PUMA "PA, 03102" -PUMA "PA, 03103" -PUMA "PA, 03104" -PUMA "PA, 03105" -PUMA "PA, 03106" -PUMA "PA, 03201" -PUMA "PA, 03202" -PUMA "PA, 03203" -PUMA "PA, 03204" -PUMA "PA, 03205" -PUMA "PA, 03206" -PUMA "PA, 03207" -PUMA "PA, 03208" -PUMA "PA, 03209" -PUMA "PA, 03210" -PUMA "PA, 03211" -PUMA "PA, 03301" -PUMA "PA, 03302" -PUMA "PA, 03303" -PUMA "PA, 03304" -PUMA "PA, 03401" -PUMA "PA, 03402" -PUMA "PA, 03403" -PUMA "PA, 03404" -PUMA "PA, 03501" -PUMA "PA, 03502" -PUMA "PA, 03503" -PUMA "PA, 03504" -PUMA "PA, 03601" -PUMA "PA, 03602" -PUMA "PA, 03603" -PUMA "PA, 03701" -PUMA "PA, 03702" -PUMA "PA, 03800" -PUMA "PA, 03900" -PUMA "PA, 04001" -PUMA "PA, 04002" -PUMA "RI, 00101" -PUMA "RI, 00102" -PUMA "RI, 00103" -PUMA "RI, 00104" -PUMA "RI, 00201" -PUMA "RI, 00300" -PUMA "RI, 00400" -PUMA "SC, 00101" -PUMA "SC, 00102" -PUMA "SC, 00103" -PUMA "SC, 00104" -PUMA "SC, 00105" -PUMA "SC, 00200" -PUMA "SC, 00301" -PUMA "SC, 00302" -PUMA "SC, 00400" -PUMA "SC, 00501" -PUMA "SC, 00502" -PUMA "SC, 00601" -PUMA "SC, 00602" -PUMA "SC, 00603" -PUMA "SC, 00604" -PUMA "SC, 00605" -PUMA "SC, 00700" -PUMA "SC, 00800" -PUMA "SC, 00900" -PUMA "SC, 01000" -PUMA "SC, 01101" -PUMA "SC, 01102" -PUMA "SC, 01201" -PUMA "SC, 01202" -PUMA "SC, 01203" -PUMA "SC, 01204" -PUMA "SC, 01300" -PUMA "SC, 01400" -PUMA "SC, 01500" -PUMA "SC, 01600" -PUMA "SD, 00100" -PUMA "SD, 00200" -PUMA "SD, 00300" -PUMA "SD, 00400" -PUMA "SD, 00500" -PUMA "SD, 00600" -PUMA "TN, 00100" -PUMA "TN, 00200" -PUMA "TN, 00300" -PUMA "TN, 00400" -PUMA "TN, 00500" -PUMA "TN, 00600" -PUMA "TN, 00700" -PUMA "TN, 00800" -PUMA "TN, 00900" -PUMA "TN, 01000" -PUMA "TN, 01100" -PUMA "TN, 01200" -PUMA "TN, 01300" -PUMA "TN, 01400" -PUMA "TN, 01500" -PUMA "TN, 01601" -PUMA "TN, 01602" -PUMA "TN, 01603" -PUMA "TN, 01604" -PUMA "TN, 01700" -PUMA "TN, 01800" -PUMA "TN, 01900" -PUMA "TN, 02001" -PUMA "TN, 02002" -PUMA "TN, 02003" -PUMA "TN, 02100" -PUMA "TN, 02200" -PUMA "TN, 02300" -PUMA "TN, 02401" -PUMA "TN, 02402" -PUMA "TN, 02501" -PUMA "TN, 02502" -PUMA "TN, 02503" -PUMA "TN, 02504" -PUMA "TN, 02505" -PUMA "TN, 02600" -PUMA "TN, 02700" -PUMA "TN, 02800" -PUMA "TN, 02900" -PUMA "TN, 03000" -PUMA "TN, 03100" -PUMA "TN, 03201" -PUMA "TN, 03202" -PUMA "TN, 03203" -PUMA "TN, 03204" -PUMA "TN, 03205" -PUMA "TN, 03206" -PUMA "TN, 03207" -PUMA "TN, 03208" -PUMA "TX, 00100" -PUMA "TX, 00200" -PUMA "TX, 00300" -PUMA "TX, 00400" -PUMA "TX, 00501" -PUMA "TX, 00502" -PUMA "TX, 00600" -PUMA "TX, 00700" -PUMA "TX, 00800" -PUMA "TX, 00900" -PUMA "TX, 01000" -PUMA "TX, 01100" -PUMA "TX, 01200" -PUMA "TX, 01300" -PUMA "TX, 01400" -PUMA "TX, 01501" -PUMA "TX, 01502" -PUMA "TX, 01600" -PUMA "TX, 01700" -PUMA "TX, 01800" -PUMA "TX, 01901" -PUMA "TX, 01902" -PUMA "TX, 01903" -PUMA "TX, 01904" -PUMA "TX, 01905" -PUMA "TX, 01906" -PUMA "TX, 01907" -PUMA "TX, 02001" -PUMA "TX, 02002" -PUMA "TX, 02003" -PUMA "TX, 02004" -PUMA "TX, 02005" -PUMA "TX, 02006" -PUMA "TX, 02101" -PUMA "TX, 02102" -PUMA "TX, 02200" -PUMA "TX, 02301" -PUMA "TX, 02302" -PUMA "TX, 02303" -PUMA "TX, 02304" -PUMA "TX, 02305" -PUMA "TX, 02306" -PUMA "TX, 02307" -PUMA "TX, 02308" -PUMA "TX, 02309" -PUMA "TX, 02310" -PUMA "TX, 02311" -PUMA "TX, 02312" -PUMA "TX, 02313" -PUMA "TX, 02314" -PUMA "TX, 02315" -PUMA "TX, 02316" -PUMA "TX, 02317" -PUMA "TX, 02318" -PUMA "TX, 02319" -PUMA "TX, 02320" -PUMA "TX, 02321" -PUMA "TX, 02322" -PUMA "TX, 02400" -PUMA "TX, 02501" -PUMA "TX, 02502" -PUMA "TX, 02503" -PUMA "TX, 02504" -PUMA "TX, 02505" -PUMA "TX, 02506" -PUMA "TX, 02507" -PUMA "TX, 02508" -PUMA "TX, 02509" -PUMA "TX, 02510" -PUMA "TX, 02511" -PUMA "TX, 02512" -PUMA "TX, 02513" -PUMA "TX, 02514" -PUMA "TX, 02515" -PUMA "TX, 02516" -PUMA "TX, 02600" -PUMA "TX, 02700" -PUMA "TX, 02800" -PUMA "TX, 02900" -PUMA "TX, 03000" -PUMA "TX, 03100" -PUMA "TX, 03200" -PUMA "TX, 03301" -PUMA "TX, 03302" -PUMA "TX, 03303" -PUMA "TX, 03304" -PUMA "TX, 03305" -PUMA "TX, 03306" -PUMA "TX, 03400" -PUMA "TX, 03501" -PUMA "TX, 03502" -PUMA "TX, 03601" -PUMA "TX, 03602" -PUMA "TX, 03700" -PUMA "TX, 03801" -PUMA "TX, 03802" -PUMA "TX, 03900" -PUMA "TX, 04000" -PUMA "TX, 04100" -PUMA "TX, 04200" -PUMA "TX, 04301" -PUMA "TX, 04302" -PUMA "TX, 04400" -PUMA "TX, 04501" -PUMA "TX, 04502" -PUMA "TX, 04503" -PUMA "TX, 04504" -PUMA "TX, 04601" -PUMA "TX, 04602" -PUMA "TX, 04603" -PUMA "TX, 04604" -PUMA "TX, 04605" -PUMA "TX, 04606" -PUMA "TX, 04607" -PUMA "TX, 04608" -PUMA "TX, 04609" -PUMA "TX, 04610" -PUMA "TX, 04611" -PUMA "TX, 04612" -PUMA "TX, 04613" -PUMA "TX, 04614" -PUMA "TX, 04615" -PUMA "TX, 04616" -PUMA "TX, 04617" -PUMA "TX, 04618" -PUMA "TX, 04619" -PUMA "TX, 04620" -PUMA "TX, 04621" -PUMA "TX, 04622" -PUMA "TX, 04623" -PUMA "TX, 04624" -PUMA "TX, 04625" -PUMA "TX, 04626" -PUMA "TX, 04627" -PUMA "TX, 04628" -PUMA "TX, 04629" -PUMA "TX, 04630" -PUMA "TX, 04631" -PUMA "TX, 04632" -PUMA "TX, 04633" -PUMA "TX, 04634" -PUMA "TX, 04635" -PUMA "TX, 04636" -PUMA "TX, 04637" -PUMA "TX, 04638" -PUMA "TX, 04701" -PUMA "TX, 04702" -PUMA "TX, 04801" -PUMA "TX, 04802" -PUMA "TX, 04803" -PUMA "TX, 04901" -PUMA "TX, 04902" -PUMA "TX, 04903" -PUMA "TX, 04904" -PUMA "TX, 04905" -PUMA "TX, 05000" -PUMA "TX, 05100" -PUMA "TX, 05201" -PUMA "TX, 05202" -PUMA "TX, 05203" -PUMA "TX, 05204" -PUMA "TX, 05301" -PUMA "TX, 05302" -PUMA "TX, 05303" -PUMA "TX, 05304" -PUMA "TX, 05305" -PUMA "TX, 05306" -PUMA "TX, 05307" -PUMA "TX, 05308" -PUMA "TX, 05309" -PUMA "TX, 05400" -PUMA "TX, 05500" -PUMA "TX, 05600" -PUMA "TX, 05700" -PUMA "TX, 05800" -PUMA "TX, 05901" -PUMA "TX, 05902" -PUMA "TX, 05903" -PUMA "TX, 05904" -PUMA "TX, 05905" -PUMA "TX, 05906" -PUMA "TX, 05907" -PUMA "TX, 05908" -PUMA "TX, 05909" -PUMA "TX, 05910" -PUMA "TX, 05911" -PUMA "TX, 05912" -PUMA "TX, 05913" -PUMA "TX, 05914" -PUMA "TX, 05915" -PUMA "TX, 05916" -PUMA "TX, 06000" -PUMA "TX, 06100" -PUMA "TX, 06200" -PUMA "TX, 06301" -PUMA "TX, 06302" -PUMA "TX, 06400" -PUMA "TX, 06500" -PUMA "TX, 06601" -PUMA "TX, 06602" -PUMA "TX, 06603" -PUMA "TX, 06701" -PUMA "TX, 06702" -PUMA "TX, 06703" -PUMA "TX, 06801" -PUMA "TX, 06802" -PUMA "TX, 06803" -PUMA "TX, 06804" -PUMA "TX, 06805" -PUMA "TX, 06806" -PUMA "TX, 06807" -PUMA "TX, 06900" -PUMA "UT, 03001" -PUMA "UT, 05001" -PUMA "UT, 11001" -PUMA "UT, 11002" -PUMA "UT, 13001" -PUMA "UT, 21001" -PUMA "UT, 35001" -PUMA "UT, 35002" -PUMA "UT, 35003" -PUMA "UT, 35004" -PUMA "UT, 35005" -PUMA "UT, 35006" -PUMA "UT, 35007" -PUMA "UT, 35008" -PUMA "UT, 35009" -PUMA "UT, 49001" -PUMA "UT, 49002" -PUMA "UT, 49003" -PUMA "UT, 49004" -PUMA "UT, 53001" -PUMA "UT, 57001" -PUMA "UT, 57002" -PUMA "VA, 01301" -PUMA "VA, 01302" -PUMA "VA, 04101" -PUMA "VA, 04102" -PUMA "VA, 04103" -PUMA "VA, 10701" -PUMA "VA, 10702" -PUMA "VA, 10703" -PUMA "VA, 51010" -PUMA "VA, 51020" -PUMA "VA, 51040" -PUMA "VA, 51044" -PUMA "VA, 51045" -PUMA "VA, 51080" -PUMA "VA, 51084" -PUMA "VA, 51085" -PUMA "VA, 51087" -PUMA "VA, 51089" -PUMA "VA, 51090" -PUMA "VA, 51095" -PUMA "VA, 51096" -PUMA "VA, 51097" -PUMA "VA, 51105" -PUMA "VA, 51110" -PUMA "VA, 51115" -PUMA "VA, 51120" -PUMA "VA, 51125" -PUMA "VA, 51135" -PUMA "VA, 51145" -PUMA "VA, 51154" -PUMA "VA, 51155" -PUMA "VA, 51164" -PUMA "VA, 51165" -PUMA "VA, 51167" -PUMA "VA, 51175" -PUMA "VA, 51186" -PUMA "VA, 51206" -PUMA "VA, 51215" -PUMA "VA, 51224" -PUMA "VA, 51225" -PUMA "VA, 51235" -PUMA "VA, 51244" -PUMA "VA, 51245" -PUMA "VA, 51246" -PUMA "VA, 51255" -PUMA "VA, 55001" -PUMA "VA, 55002" -PUMA "VA, 59301" -PUMA "VA, 59302" -PUMA "VA, 59303" -PUMA "VA, 59304" -PUMA "VA, 59305" -PUMA "VA, 59306" -PUMA "VA, 59307" -PUMA "VA, 59308" -PUMA "VA, 59309" -PUMA "VT, 00100" -PUMA "VT, 00200" -PUMA "VT, 00300" -PUMA "VT, 00400" -PUMA "WA, 10100" -PUMA "WA, 10200" -PUMA "WA, 10300" -PUMA "WA, 10400" -PUMA "WA, 10501" -PUMA "WA, 10502" -PUMA "WA, 10503" -PUMA "WA, 10504" -PUMA "WA, 10600" -PUMA "WA, 10701" -PUMA "WA, 10702" -PUMA "WA, 10703" -PUMA "WA, 10800" -PUMA "WA, 10901" -PUMA "WA, 10902" -PUMA "WA, 11000" -PUMA "WA, 11101" -PUMA "WA, 11102" -PUMA "WA, 11103" -PUMA "WA, 11104" -PUMA "WA, 11200" -PUMA "WA, 11300" -PUMA "WA, 11401" -PUMA "WA, 11402" -PUMA "WA, 11501" -PUMA "WA, 11502" -PUMA "WA, 11503" -PUMA "WA, 11504" -PUMA "WA, 11505" -PUMA "WA, 11506" -PUMA "WA, 11507" -PUMA "WA, 11601" -PUMA "WA, 11602" -PUMA "WA, 11603" -PUMA "WA, 11604" -PUMA "WA, 11605" -PUMA "WA, 11606" -PUMA "WA, 11607" -PUMA "WA, 11608" -PUMA "WA, 11609" -PUMA "WA, 11610" -PUMA "WA, 11611" -PUMA "WA, 11612" -PUMA "WA, 11613" -PUMA "WA, 11614" -PUMA "WA, 11615" -PUMA "WA, 11616" -PUMA "WA, 11701" -PUMA "WA, 11702" -PUMA "WA, 11703" -PUMA "WA, 11704" -PUMA "WA, 11705" -PUMA "WA, 11706" -PUMA "WA, 11801" -PUMA "WA, 11802" -PUMA "WA, 11900" -PUMA "WI, 00100" -PUMA "WI, 00101" -PUMA "WI, 00102" -PUMA "WI, 00103" -PUMA "WI, 00200" -PUMA "WI, 00300" -PUMA "WI, 00600" -PUMA "WI, 00700" -PUMA "WI, 00800" -PUMA "WI, 00900" -PUMA "WI, 01000" -PUMA "WI, 01001" -PUMA "WI, 01300" -PUMA "WI, 01301" -PUMA "WI, 01400" -PUMA "WI, 01401" -PUMA "WI, 01500" -PUMA "WI, 01501" -PUMA "WI, 01600" -PUMA "WI, 01601" -PUMA "WI, 02400" -PUMA "WI, 02500" -PUMA "WI, 10000" -PUMA "WI, 20000" -PUMA "WI, 30000" -PUMA "WI, 40101" -PUMA "WI, 40301" -PUMA "WI, 40701" -PUMA "WI, 41001" -PUMA "WI, 41002" -PUMA "WI, 41003" -PUMA "WI, 41004" -PUMA "WI, 41005" -PUMA "WI, 50000" -PUMA "WI, 55101" -PUMA "WI, 55102" -PUMA "WI, 55103" -PUMA "WI, 70101" -PUMA "WI, 70201" -PUMA "WI, 70301" -PUMA "WV, 00100" -PUMA "WV, 00200" -PUMA "WV, 00300" -PUMA "WV, 00400" -PUMA "WV, 00500" -PUMA "WV, 00600" -PUMA "WV, 00700" -PUMA "WV, 00800" -PUMA "WV, 00900" -PUMA "WV, 01000" -PUMA "WV, 01100" -PUMA "WV, 01200" -PUMA "WV, 01300" -PUMA "WY, 00100" -PUMA "WY, 00200" -PUMA "WY, 00300" -PUMA "WY, 00400" -PUMA "WY, 00500" -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_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_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_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_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_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_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_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_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_period=Jul 1 5 - Jul 31 14 schedules_power_outage_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 roof_radiant_barrier=false roof_radiant_barrier_grade=1 -Radiant Barrier None ResStockArguments roof_radiant_barrier=false roof_radiant_barrier_grade=1 -Radiant Barrier Yes ResStockArguments roof_radiant_barrier=true roof_radiant_barrier_grade=1 -Range Spot Vent Hour Hour0 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=0 -Range Spot Vent Hour Hour1 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=1 -Range Spot Vent Hour Hour10 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=10 -Range Spot Vent Hour Hour11 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=11 -Range Spot Vent Hour Hour12 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=12 -Range Spot Vent Hour Hour13 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=13 -Range Spot Vent Hour Hour14 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=14 -Range Spot Vent Hour Hour15 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=15 -Range Spot Vent Hour Hour16 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=16 -Range Spot Vent Hour Hour17 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=17 -Range Spot Vent Hour Hour18 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=18 -Range Spot Vent Hour Hour19 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=19 -Range Spot Vent Hour Hour2 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=2 -Range Spot Vent Hour Hour20 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=20 -Range Spot Vent Hour Hour21 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=21 -Range Spot Vent Hour Hour22 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=22 -Range Spot Vent Hour Hour23 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=23 -Range Spot Vent Hour Hour3 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=3 -Range Spot Vent Hour Hour4 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=4 -Range Spot Vent Hour Hour5 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=5 -Range Spot Vent Hour Hour6 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=6 -Range Spot Vent Hour Hour7 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=7 -Range Spot Vent Hour Hour8 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=8 -Range Spot Vent Hour Hour9 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=9 -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 -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_period=Jan 1 - Dec 31 -Vintage 1940s ResStockArguments vintage=1940s -Vintage 1950s ResStockArguments vintage=1950s -Vintage 1960s ResStockArguments vintage=1960s -Vintage 1970s ResStockArguments vintage=1970s -Vintage 1980s ResStockArguments vintage=1980s -Vintage 1990s ResStockArguments vintage=1990s -Vintage 2000s ResStockArguments vintage=2000s -Vintage 2010s ResStockArguments vintage=2010s -Vintage <1940 ResStockArguments vintage=<1940 -Vintage <1950 ResStockArguments vintage=<1950 -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" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=2.3 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_units_served=1 -Water Heater Efficiency "Electric Heat Pump, 50 gal, 140F" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=2.3 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_units_served=1 -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_units_served=1 -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_units_served=1 -Water Heater Efficiency "Electric Heat Pump, 80 gal" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=80 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=2.3 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_units_served=1 -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_units_served=1 -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_units_served=1 -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_units_served=1 -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_units_served=1 -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_units_served=1 -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_units_served=1 -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_units_served=1 -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_units_served=1 -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_units_served=1 -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_units_served=1 -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_units_served=1 -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_units_served=1 -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_units_served=1 -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_units_served=1 -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_units_served=1 -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_units_served=1 -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_units_served=1 -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 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 None -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 -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 -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 -Windows "Double, Clear, Non-metal, Air" ResStockArguments window_ufactor=0.49 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 -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 -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 -Windows "Double, Clear, Thermal-Break, Air" ResStockArguments window_ufactor=0.63 window_shgc=0.62 skylight_ufactor=0.37 skylight_shgc=0.3 -Windows "Double, Low-E, H-Gain" ResStockArguments window_ufactor=0.29 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 -Windows "Double, Low-E, L-Gain" ResStockArguments window_ufactor=0.26 window_shgc=0.31 skylight_ufactor=0.37 skylight_shgc=0.3 -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 -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 -Windows "Single, Clear, Metal" ResStockArguments window_ufactor=1.16 window_shgc=0.76 skylight_ufactor=0.37 skylight_shgc=0.3 -Windows "Single, Clear, Metal, Exterior Clear Storm" ResStockArguments window_ufactor=0.67 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 -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 -Windows "Single, Clear, Non-metal" ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 -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 -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 -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 -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 -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 -Windows No Windows ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 -Windows Void +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 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 +Heating Setpoint 60F ResStockArguments hvac_control_heating_weekday_setpoint_temp=60 hvac_control_heating_weekend_setpoint_temp=60 use_auto_heating_season=false +Heating Setpoint 62F ResStockArguments hvac_control_heating_weekday_setpoint_temp=62 hvac_control_heating_weekend_setpoint_temp=62 use_auto_heating_season=false +Heating Setpoint 63F ResStockArguments hvac_control_heating_weekday_setpoint_temp=63 hvac_control_heating_weekend_setpoint_temp=63 use_auto_heating_season=false +Heating Setpoint 64F ResStockArguments hvac_control_heating_weekday_setpoint_temp=64 hvac_control_heating_weekend_setpoint_temp=64 use_auto_heating_season=false +Heating Setpoint 65F ResStockArguments hvac_control_heating_weekday_setpoint_temp=65 hvac_control_heating_weekend_setpoint_temp=65 use_auto_heating_season=false +Heating Setpoint 66F ResStockArguments hvac_control_heating_weekday_setpoint_temp=66 hvac_control_heating_weekend_setpoint_temp=66 use_auto_heating_season=false +Heating Setpoint 67F ResStockArguments hvac_control_heating_weekday_setpoint_temp=67 hvac_control_heating_weekend_setpoint_temp=67 use_auto_heating_season=false +Heating Setpoint 68F ResStockArguments hvac_control_heating_weekday_setpoint_temp=68 hvac_control_heating_weekend_setpoint_temp=68 use_auto_heating_season=false +Heating Setpoint 69F ResStockArguments hvac_control_heating_weekday_setpoint_temp=69 hvac_control_heating_weekend_setpoint_temp=69 use_auto_heating_season=false +Heating Setpoint 70F ResStockArguments hvac_control_heating_weekday_setpoint_temp=70 hvac_control_heating_weekend_setpoint_temp=70 use_auto_heating_season=false +Heating Setpoint 71F ResStockArguments hvac_control_heating_weekday_setpoint_temp=71 hvac_control_heating_weekend_setpoint_temp=71 use_auto_heating_season=false +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 +Heating Setpoint 72F ResStockArguments hvac_control_heating_weekday_setpoint_temp=72 hvac_control_heating_weekend_setpoint_temp=72 use_auto_heating_season=false +Heating Setpoint 73F ResStockArguments hvac_control_heating_weekday_setpoint_temp=73 hvac_control_heating_weekend_setpoint_temp=73 use_auto_heating_season=false +Heating Setpoint 74F ResStockArguments hvac_control_heating_weekday_setpoint_temp=74 hvac_control_heating_weekend_setpoint_temp=74 use_auto_heating_season=false +Heating Setpoint 75F ResStockArguments hvac_control_heating_weekday_setpoint_temp=75 hvac_control_heating_weekend_setpoint_temp=75 use_auto_heating_season=false +Heating Setpoint 76F ResStockArguments hvac_control_heating_weekday_setpoint_temp=76 hvac_control_heating_weekend_setpoint_temp=76 use_auto_heating_season=false +Heating Setpoint 78F ResStockArguments hvac_control_heating_weekday_setpoint_temp=78 hvac_control_heating_weekend_setpoint_temp=78 use_auto_heating_season=false +Heating Setpoint 80F ResStockArguments hvac_control_heating_weekday_setpoint_temp=80 hvac_control_heating_weekend_setpoint_temp=80 use_auto_heating_season=false +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 None ResStockArguments holiday_lighting_present=false holiday_lighting_daily_kwh=0 +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 200% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.0 +Hot Water Fixtures 50% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.5 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +Insulation Rim Joist None ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 +Insulation Rim Joist Uninsulated ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 +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 +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 +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 +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 +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 +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 +Occupants 1 ResStockArguments geometry_unit_num_occupants=1 +Occupants 10+ ResStockArguments geometry_unit_num_occupants=11 +Occupants 2 ResStockArguments geometry_unit_num_occupants=2 +Occupants 3 ResStockArguments geometry_unit_num_occupants=3 +Occupants 4 ResStockArguments geometry_unit_num_occupants=4 +Occupants 5 ResStockArguments geometry_unit_num_occupants=5 +Occupants 6 ResStockArguments geometry_unit_num_occupants=6 +Occupants 7 ResStockArguments geometry_unit_num_occupants=7 +Occupants 8 ResStockArguments geometry_unit_num_occupants=8 +Occupants 9 ResStockArguments geometry_unit_num_occupants=9 +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" +PUMA "AK, 00102" +PUMA "AK, 00200" +PUMA "AK, 00300" +PUMA "AK, 00400" +PUMA "AL, 00100" +PUMA "AL, 00200" +PUMA "AL, 00301" +PUMA "AL, 00302" +PUMA "AL, 00400" +PUMA "AL, 00500" +PUMA "AL, 00600" +PUMA "AL, 00700" +PUMA "AL, 00800" +PUMA "AL, 00900" +PUMA "AL, 01000" +PUMA "AL, 01100" +PUMA "AL, 01200" +PUMA "AL, 01301" +PUMA "AL, 01302" +PUMA "AL, 01303" +PUMA "AL, 01304" +PUMA "AL, 01305" +PUMA "AL, 01400" +PUMA "AL, 01500" +PUMA "AL, 01600" +PUMA "AL, 01700" +PUMA "AL, 01800" +PUMA "AL, 01900" +PUMA "AL, 02000" +PUMA "AL, 02100" +PUMA "AL, 02200" +PUMA "AL, 02300" +PUMA "AL, 02400" +PUMA "AL, 02500" +PUMA "AL, 02600" +PUMA "AL, 02701" +PUMA "AL, 02702" +PUMA "AL, 02703" +PUMA "AR, 00100" +PUMA "AR, 00200" +PUMA "AR, 00300" +PUMA "AR, 00400" +PUMA "AR, 00500" +PUMA "AR, 00600" +PUMA "AR, 00700" +PUMA "AR, 00800" +PUMA "AR, 00900" +PUMA "AR, 01000" +PUMA "AR, 01100" +PUMA "AR, 01200" +PUMA "AR, 01300" +PUMA "AR, 01400" +PUMA "AR, 01500" +PUMA "AR, 01600" +PUMA "AR, 01700" +PUMA "AR, 01800" +PUMA "AR, 01900" +PUMA "AR, 02000" +PUMA "AZ, 00100" +PUMA "AZ, 00101" +PUMA "AZ, 00102" +PUMA "AZ, 00103" +PUMA "AZ, 00104" +PUMA "AZ, 00105" +PUMA "AZ, 00106" +PUMA "AZ, 00107" +PUMA "AZ, 00108" +PUMA "AZ, 00109" +PUMA "AZ, 00110" +PUMA "AZ, 00111" +PUMA "AZ, 00112" +PUMA "AZ, 00113" +PUMA "AZ, 00114" +PUMA "AZ, 00115" +PUMA "AZ, 00116" +PUMA "AZ, 00117" +PUMA "AZ, 00118" +PUMA "AZ, 00119" +PUMA "AZ, 00120" +PUMA "AZ, 00121" +PUMA "AZ, 00122" +PUMA "AZ, 00123" +PUMA "AZ, 00124" +PUMA "AZ, 00125" +PUMA "AZ, 00126" +PUMA "AZ, 00127" +PUMA "AZ, 00128" +PUMA "AZ, 00129" +PUMA "AZ, 00130" +PUMA "AZ, 00131" +PUMA "AZ, 00132" +PUMA "AZ, 00133" +PUMA "AZ, 00134" +PUMA "AZ, 00201" +PUMA "AZ, 00202" +PUMA "AZ, 00203" +PUMA "AZ, 00204" +PUMA "AZ, 00205" +PUMA "AZ, 00206" +PUMA "AZ, 00207" +PUMA "AZ, 00208" +PUMA "AZ, 00209" +PUMA "AZ, 00300" +PUMA "AZ, 00400" +PUMA "AZ, 00500" +PUMA "AZ, 00600" +PUMA "AZ, 00700" +PUMA "AZ, 00800" +PUMA "AZ, 00803" +PUMA "AZ, 00805" +PUMA "AZ, 00807" +PUMA "AZ, 00900" +PUMA "CA, 00101" +PUMA "CA, 00102" +PUMA "CA, 00103" +PUMA "CA, 00104" +PUMA "CA, 00105" +PUMA "CA, 00106" +PUMA "CA, 00107" +PUMA "CA, 00108" +PUMA "CA, 00109" +PUMA "CA, 00110" +PUMA "CA, 00300" +PUMA "CA, 00701" +PUMA "CA, 00702" +PUMA "CA, 01100" +PUMA "CA, 01301" +PUMA "CA, 01302" +PUMA "CA, 01303" +PUMA "CA, 01304" +PUMA "CA, 01305" +PUMA "CA, 01306" +PUMA "CA, 01307" +PUMA "CA, 01308" +PUMA "CA, 01309" +PUMA "CA, 01500" +PUMA "CA, 01700" +PUMA "CA, 01901" +PUMA "CA, 01902" +PUMA "CA, 01903" +PUMA "CA, 01904" +PUMA "CA, 01905" +PUMA "CA, 01906" +PUMA "CA, 01907" +PUMA "CA, 02300" +PUMA "CA, 02500" +PUMA "CA, 02901" +PUMA "CA, 02902" +PUMA "CA, 02903" +PUMA "CA, 02904" +PUMA "CA, 02905" +PUMA "CA, 03100" +PUMA "CA, 03300" +PUMA "CA, 03701" +PUMA "CA, 03702" +PUMA "CA, 03703" +PUMA "CA, 03704" +PUMA "CA, 03705" +PUMA "CA, 03706" +PUMA "CA, 03707" +PUMA "CA, 03708" +PUMA "CA, 03709" +PUMA "CA, 03710" +PUMA "CA, 03711" +PUMA "CA, 03712" +PUMA "CA, 03713" +PUMA "CA, 03714" +PUMA "CA, 03715" +PUMA "CA, 03716" +PUMA "CA, 03717" +PUMA "CA, 03718" +PUMA "CA, 03719" +PUMA "CA, 03720" +PUMA "CA, 03721" +PUMA "CA, 03722" +PUMA "CA, 03723" +PUMA "CA, 03724" +PUMA "CA, 03725" +PUMA "CA, 03726" +PUMA "CA, 03727" +PUMA "CA, 03728" +PUMA "CA, 03729" +PUMA "CA, 03730" +PUMA "CA, 03731" +PUMA "CA, 03732" +PUMA "CA, 03733" +PUMA "CA, 03734" +PUMA "CA, 03735" +PUMA "CA, 03736" +PUMA "CA, 03737" +PUMA "CA, 03738" +PUMA "CA, 03739" +PUMA "CA, 03740" +PUMA "CA, 03741" +PUMA "CA, 03742" +PUMA "CA, 03743" +PUMA "CA, 03744" +PUMA "CA, 03745" +PUMA "CA, 03746" +PUMA "CA, 03747" +PUMA "CA, 03748" +PUMA "CA, 03749" +PUMA "CA, 03750" +PUMA "CA, 03751" +PUMA "CA, 03752" +PUMA "CA, 03753" +PUMA "CA, 03754" +PUMA "CA, 03755" +PUMA "CA, 03756" +PUMA "CA, 03757" +PUMA "CA, 03758" +PUMA "CA, 03759" +PUMA "CA, 03760" +PUMA "CA, 03761" +PUMA "CA, 03762" +PUMA "CA, 03763" +PUMA "CA, 03764" +PUMA "CA, 03765" +PUMA "CA, 03766" +PUMA "CA, 03767" +PUMA "CA, 03768" +PUMA "CA, 03769" +PUMA "CA, 03900" +PUMA "CA, 04101" +PUMA "CA, 04102" +PUMA "CA, 04701" +PUMA "CA, 04702" +PUMA "CA, 05301" +PUMA "CA, 05302" +PUMA "CA, 05303" +PUMA "CA, 05500" +PUMA "CA, 05700" +PUMA "CA, 05901" +PUMA "CA, 05902" +PUMA "CA, 05903" +PUMA "CA, 05904" +PUMA "CA, 05905" +PUMA "CA, 05906" +PUMA "CA, 05907" +PUMA "CA, 05908" +PUMA "CA, 05909" +PUMA "CA, 05910" +PUMA "CA, 05911" +PUMA "CA, 05912" +PUMA "CA, 05913" +PUMA "CA, 05914" +PUMA "CA, 05915" +PUMA "CA, 05916" +PUMA "CA, 05917" +PUMA "CA, 05918" +PUMA "CA, 06101" +PUMA "CA, 06102" +PUMA "CA, 06103" +PUMA "CA, 06501" +PUMA "CA, 06502" +PUMA "CA, 06503" +PUMA "CA, 06504" +PUMA "CA, 06505" +PUMA "CA, 06506" +PUMA "CA, 06507" +PUMA "CA, 06508" +PUMA "CA, 06509" +PUMA "CA, 06510" +PUMA "CA, 06511" +PUMA "CA, 06512" +PUMA "CA, 06513" +PUMA "CA, 06514" +PUMA "CA, 06515" +PUMA "CA, 06701" +PUMA "CA, 06702" +PUMA "CA, 06703" +PUMA "CA, 06704" +PUMA "CA, 06705" +PUMA "CA, 06706" +PUMA "CA, 06707" +PUMA "CA, 06708" +PUMA "CA, 06709" +PUMA "CA, 06710" +PUMA "CA, 06711" +PUMA "CA, 06712" +PUMA "CA, 07101" +PUMA "CA, 07102" +PUMA "CA, 07103" +PUMA "CA, 07104" +PUMA "CA, 07105" +PUMA "CA, 07106" +PUMA "CA, 07107" +PUMA "CA, 07108" +PUMA "CA, 07109" +PUMA "CA, 07110" +PUMA "CA, 07111" +PUMA "CA, 07112" +PUMA "CA, 07113" +PUMA "CA, 07114" +PUMA "CA, 07115" +PUMA "CA, 07301" +PUMA "CA, 07302" +PUMA "CA, 07303" +PUMA "CA, 07304" +PUMA "CA, 07305" +PUMA "CA, 07306" +PUMA "CA, 07307" +PUMA "CA, 07308" +PUMA "CA, 07309" +PUMA "CA, 07310" +PUMA "CA, 07311" +PUMA "CA, 07312" +PUMA "CA, 07313" +PUMA "CA, 07314" +PUMA "CA, 07315" +PUMA "CA, 07316" +PUMA "CA, 07317" +PUMA "CA, 07318" +PUMA "CA, 07319" +PUMA "CA, 07320" +PUMA "CA, 07321" +PUMA "CA, 07322" +PUMA "CA, 07501" +PUMA "CA, 07502" +PUMA "CA, 07503" +PUMA "CA, 07504" +PUMA "CA, 07505" +PUMA "CA, 07506" +PUMA "CA, 07507" +PUMA "CA, 07701" +PUMA "CA, 07702" +PUMA "CA, 07703" +PUMA "CA, 07704" +PUMA "CA, 07901" +PUMA "CA, 07902" +PUMA "CA, 08101" +PUMA "CA, 08102" +PUMA "CA, 08103" +PUMA "CA, 08104" +PUMA "CA, 08105" +PUMA "CA, 08106" +PUMA "CA, 08301" +PUMA "CA, 08302" +PUMA "CA, 08303" +PUMA "CA, 08501" +PUMA "CA, 08502" +PUMA "CA, 08503" +PUMA "CA, 08504" +PUMA "CA, 08505" +PUMA "CA, 08506" +PUMA "CA, 08507" +PUMA "CA, 08508" +PUMA "CA, 08509" +PUMA "CA, 08510" +PUMA "CA, 08511" +PUMA "CA, 08512" +PUMA "CA, 08513" +PUMA "CA, 08514" +PUMA "CA, 08701" +PUMA "CA, 08702" +PUMA "CA, 08900" +PUMA "CA, 09501" +PUMA "CA, 09502" +PUMA "CA, 09503" +PUMA "CA, 09701" +PUMA "CA, 09702" +PUMA "CA, 09703" +PUMA "CA, 09901" +PUMA "CA, 09902" +PUMA "CA, 09903" +PUMA "CA, 09904" +PUMA "CA, 10100" +PUMA "CA, 10701" +PUMA "CA, 10702" +PUMA "CA, 10703" +PUMA "CA, 11101" +PUMA "CA, 11102" +PUMA "CA, 11103" +PUMA "CA, 11104" +PUMA "CA, 11105" +PUMA "CA, 11106" +PUMA "CA, 11300" +PUMA "CO, 00100" +PUMA "CO, 00102" +PUMA "CO, 00103" +PUMA "CO, 00200" +PUMA "CO, 00300" +PUMA "CO, 00400" +PUMA "CO, 00600" +PUMA "CO, 00700" +PUMA "CO, 00800" +PUMA "CO, 00801" +PUMA "CO, 00802" +PUMA "CO, 00803" +PUMA "CO, 00804" +PUMA "CO, 00805" +PUMA "CO, 00806" +PUMA "CO, 00807" +PUMA "CO, 00808" +PUMA "CO, 00809" +PUMA "CO, 00810" +PUMA "CO, 00811" +PUMA "CO, 00812" +PUMA "CO, 00813" +PUMA "CO, 00814" +PUMA "CO, 00815" +PUMA "CO, 00816" +PUMA "CO, 00817" +PUMA "CO, 00818" +PUMA "CO, 00819" +PUMA "CO, 00820" +PUMA "CO, 00821" +PUMA "CO, 00822" +PUMA "CO, 00823" +PUMA "CO, 00824" +PUMA "CO, 00900" +PUMA "CO, 01001" +PUMA "CO, 01002" +PUMA "CO, 04101" +PUMA "CO, 04102" +PUMA "CO, 04103" +PUMA "CO, 04104" +PUMA "CO, 04105" +PUMA "CO, 04106" +PUMA "CT, 00100" +PUMA "CT, 00101" +PUMA "CT, 00102" +PUMA "CT, 00103" +PUMA "CT, 00104" +PUMA "CT, 00105" +PUMA "CT, 00300" +PUMA "CT, 00301" +PUMA "CT, 00302" +PUMA "CT, 00303" +PUMA "CT, 00304" +PUMA "CT, 00305" +PUMA "CT, 00306" +PUMA "CT, 00500" +PUMA "CT, 00700" +PUMA "CT, 00900" +PUMA "CT, 00901" +PUMA "CT, 00902" +PUMA "CT, 00903" +PUMA "CT, 00904" +PUMA "CT, 00905" +PUMA "CT, 00906" +PUMA "CT, 01100" +PUMA "CT, 01101" +PUMA "CT, 01300" +PUMA "CT, 01500" +PUMA "DC, 00101" +PUMA "DC, 00102" +PUMA "DC, 00103" +PUMA "DC, 00104" +PUMA "DC, 00105" +PUMA "DE, 00101" +PUMA "DE, 00102" +PUMA "DE, 00103" +PUMA "DE, 00104" +PUMA "DE, 00200" +PUMA "DE, 00300" +PUMA "FL, 00101" +PUMA "FL, 00102" +PUMA "FL, 00500" +PUMA "FL, 00901" +PUMA "FL, 00902" +PUMA "FL, 00903" +PUMA "FL, 00904" +PUMA "FL, 01101" +PUMA "FL, 01102" +PUMA "FL, 01103" +PUMA "FL, 01104" +PUMA "FL, 01105" +PUMA "FL, 01106" +PUMA "FL, 01107" +PUMA "FL, 01108" +PUMA "FL, 01109" +PUMA "FL, 01110" +PUMA "FL, 01111" +PUMA "FL, 01112" +PUMA "FL, 01113" +PUMA "FL, 01114" +PUMA "FL, 01500" +PUMA "FL, 01701" +PUMA "FL, 01900" +PUMA "FL, 02101" +PUMA "FL, 02102" +PUMA "FL, 02103" +PUMA "FL, 02300" +PUMA "FL, 02700" +PUMA "FL, 03101" +PUMA "FL, 03102" +PUMA "FL, 03103" +PUMA "FL, 03104" +PUMA "FL, 03105" +PUMA "FL, 03106" +PUMA "FL, 03107" +PUMA "FL, 03301" +PUMA "FL, 03302" +PUMA "FL, 03500" +PUMA "FL, 05301" +PUMA "FL, 05701" +PUMA "FL, 05702" +PUMA "FL, 05703" +PUMA "FL, 05704" +PUMA "FL, 05705" +PUMA "FL, 05706" +PUMA "FL, 05707" +PUMA "FL, 05708" +PUMA "FL, 06100" +PUMA "FL, 06300" +PUMA "FL, 06901" +PUMA "FL, 06902" +PUMA "FL, 06903" +PUMA "FL, 07101" +PUMA "FL, 07102" +PUMA "FL, 07103" +PUMA "FL, 07104" +PUMA "FL, 07105" +PUMA "FL, 07300" +PUMA "FL, 07301" +PUMA "FL, 08101" +PUMA "FL, 08102" +PUMA "FL, 08103" +PUMA "FL, 08301" +PUMA "FL, 08302" +PUMA "FL, 08303" +PUMA "FL, 08500" +PUMA "FL, 08601" +PUMA "FL, 08602" +PUMA "FL, 08603" +PUMA "FL, 08604" +PUMA "FL, 08605" +PUMA "FL, 08606" +PUMA "FL, 08607" +PUMA "FL, 08608" +PUMA "FL, 08609" +PUMA "FL, 08610" +PUMA "FL, 08611" +PUMA "FL, 08612" +PUMA "FL, 08613" +PUMA "FL, 08614" +PUMA "FL, 08615" +PUMA "FL, 08616" +PUMA "FL, 08617" +PUMA "FL, 08618" +PUMA "FL, 08619" +PUMA "FL, 08620" +PUMA "FL, 08621" +PUMA "FL, 08622" +PUMA "FL, 08623" +PUMA "FL, 08624" +PUMA "FL, 08700" +PUMA "FL, 08900" +PUMA "FL, 09100" +PUMA "FL, 09300" +PUMA "FL, 09501" +PUMA "FL, 09502" +PUMA "FL, 09503" +PUMA "FL, 09504" +PUMA "FL, 09505" +PUMA "FL, 09506" +PUMA "FL, 09507" +PUMA "FL, 09508" +PUMA "FL, 09509" +PUMA "FL, 09510" +PUMA "FL, 09701" +PUMA "FL, 09702" +PUMA "FL, 09901" +PUMA "FL, 09902" +PUMA "FL, 09903" +PUMA "FL, 09904" +PUMA "FL, 09905" +PUMA "FL, 09906" +PUMA "FL, 09907" +PUMA "FL, 09908" +PUMA "FL, 09909" +PUMA "FL, 09910" +PUMA "FL, 09911" +PUMA "FL, 10101" +PUMA "FL, 10102" +PUMA "FL, 10103" +PUMA "FL, 10104" +PUMA "FL, 10301" +PUMA "FL, 10302" +PUMA "FL, 10303" +PUMA "FL, 10304" +PUMA "FL, 10305" +PUMA "FL, 10306" +PUMA "FL, 10307" +PUMA "FL, 10308" +PUMA "FL, 10501" +PUMA "FL, 10502" +PUMA "FL, 10503" +PUMA "FL, 10504" +PUMA "FL, 10700" +PUMA "FL, 10900" +PUMA "FL, 11101" +PUMA "FL, 11102" +PUMA "FL, 11300" +PUMA "FL, 11501" +PUMA "FL, 11502" +PUMA "FL, 11503" +PUMA "FL, 11701" +PUMA "FL, 11702" +PUMA "FL, 11703" +PUMA "FL, 11704" +PUMA "FL, 12100" +PUMA "FL, 12701" +PUMA "FL, 12702" +PUMA "FL, 12703" +PUMA "FL, 12704" +PUMA "GA, 00100" +PUMA "GA, 00200" +PUMA "GA, 00300" +PUMA "GA, 00401" +PUMA "GA, 00402" +PUMA "GA, 00500" +PUMA "GA, 00600" +PUMA "GA, 00700" +PUMA "GA, 00800" +PUMA "GA, 00900" +PUMA "GA, 01001" +PUMA "GA, 01002" +PUMA "GA, 01003" +PUMA "GA, 01004" +PUMA "GA, 01005" +PUMA "GA, 01006" +PUMA "GA, 01007" +PUMA "GA, 01008" +PUMA "GA, 01100" +PUMA "GA, 01200" +PUMA "GA, 01300" +PUMA "GA, 01400" +PUMA "GA, 01500" +PUMA "GA, 01600" +PUMA "GA, 01700" +PUMA "GA, 01800" +PUMA "GA, 01900" +PUMA "GA, 02001" +PUMA "GA, 02002" +PUMA "GA, 02003" +PUMA "GA, 02004" +PUMA "GA, 02100" +PUMA "GA, 02200" +PUMA "GA, 02300" +PUMA "GA, 02400" +PUMA "GA, 02500" +PUMA "GA, 02600" +PUMA "GA, 02700" +PUMA "GA, 02800" +PUMA "GA, 02900" +PUMA "GA, 03001" +PUMA "GA, 03002" +PUMA "GA, 03003" +PUMA "GA, 03004" +PUMA "GA, 03005" +PUMA "GA, 03101" +PUMA "GA, 03102" +PUMA "GA, 03200" +PUMA "GA, 03300" +PUMA "GA, 03400" +PUMA "GA, 03500" +PUMA "GA, 03600" +PUMA "GA, 03700" +PUMA "GA, 03800" +PUMA "GA, 03900" +PUMA "GA, 04000" +PUMA "GA, 04001" +PUMA "GA, 04002" +PUMA "GA, 04003" +PUMA "GA, 04004" +PUMA "GA, 04005" +PUMA "GA, 04006" +PUMA "GA, 04100" +PUMA "GA, 04200" +PUMA "GA, 04300" +PUMA "GA, 04400" +PUMA "GA, 04500" +PUMA "GA, 04600" +PUMA "GA, 05001" +PUMA "GA, 05002" +PUMA "GA, 06001" +PUMA "GA, 06002" +PUMA "HI, 00100" +PUMA "HI, 00200" +PUMA "HI, 00301" +PUMA "HI, 00302" +PUMA "HI, 00303" +PUMA "HI, 00304" +PUMA "HI, 00305" +PUMA "HI, 00306" +PUMA "HI, 00307" +PUMA "HI, 00308" +PUMA "IA, 00100" +PUMA "IA, 00200" +PUMA "IA, 00400" +PUMA "IA, 00500" +PUMA "IA, 00600" +PUMA "IA, 00700" +PUMA "IA, 00800" +PUMA "IA, 00900" +PUMA "IA, 01000" +PUMA "IA, 01100" +PUMA "IA, 01200" +PUMA "IA, 01300" +PUMA "IA, 01400" +PUMA "IA, 01500" +PUMA "IA, 01600" +PUMA "IA, 01700" +PUMA "IA, 01800" +PUMA "IA, 01900" +PUMA "IA, 02000" +PUMA "IA, 02100" +PUMA "IA, 02200" +PUMA "IA, 02300" +PUMA "ID, 00100" +PUMA "ID, 00200" +PUMA "ID, 00300" +PUMA "ID, 00400" +PUMA "ID, 00500" +PUMA "ID, 00600" +PUMA "ID, 00701" +PUMA "ID, 00702" +PUMA "ID, 00800" +PUMA "ID, 00900" +PUMA "ID, 01000" +PUMA "ID, 01100" +PUMA "ID, 01200" +PUMA "ID, 01300" +PUMA "IL, 00104" +PUMA "IL, 00105" +PUMA "IL, 00202" +PUMA "IL, 00300" +PUMA "IL, 00401" +PUMA "IL, 00501" +PUMA "IL, 00600" +PUMA "IL, 00700" +PUMA "IL, 00800" +PUMA "IL, 00900" +PUMA "IL, 01001" +PUMA "IL, 01104" +PUMA "IL, 01105" +PUMA "IL, 01204" +PUMA "IL, 01205" +PUMA "IL, 01300" +PUMA "IL, 01500" +PUMA "IL, 01602" +PUMA "IL, 01701" +PUMA "IL, 01900" +PUMA "IL, 02000" +PUMA "IL, 02100" +PUMA "IL, 02200" +PUMA "IL, 02300" +PUMA "IL, 02400" +PUMA "IL, 02501" +PUMA "IL, 02601" +PUMA "IL, 02700" +PUMA "IL, 02801" +PUMA "IL, 02901" +PUMA "IL, 03005" +PUMA "IL, 03007" +PUMA "IL, 03008" +PUMA "IL, 03009" +PUMA "IL, 03102" +PUMA "IL, 03105" +PUMA "IL, 03106" +PUMA "IL, 03107" +PUMA "IL, 03108" +PUMA "IL, 03202" +PUMA "IL, 03203" +PUMA "IL, 03204" +PUMA "IL, 03205" +PUMA "IL, 03207" +PUMA "IL, 03208" +PUMA "IL, 03209" +PUMA "IL, 03306" +PUMA "IL, 03307" +PUMA "IL, 03308" +PUMA "IL, 03309" +PUMA "IL, 03310" +PUMA "IL, 03401" +PUMA "IL, 03407" +PUMA "IL, 03408" +PUMA "IL, 03409" +PUMA "IL, 03410" +PUMA "IL, 03411" +PUMA "IL, 03412" +PUMA "IL, 03413" +PUMA "IL, 03414" +PUMA "IL, 03415" +PUMA "IL, 03416" +PUMA "IL, 03417" +PUMA "IL, 03418" +PUMA "IL, 03419" +PUMA "IL, 03420" +PUMA "IL, 03421" +PUMA "IL, 03422" +PUMA "IL, 03501" +PUMA "IL, 03502" +PUMA "IL, 03503" +PUMA "IL, 03504" +PUMA "IL, 03520" +PUMA "IL, 03521" +PUMA "IL, 03522" +PUMA "IL, 03523" +PUMA "IL, 03524" +PUMA "IL, 03525" +PUMA "IL, 03526" +PUMA "IL, 03527" +PUMA "IL, 03528" +PUMA "IL, 03529" +PUMA "IL, 03530" +PUMA "IL, 03531" +PUMA "IL, 03532" +PUMA "IL, 03601" +PUMA "IL, 03602" +PUMA "IL, 03700" +PUMA "IN, 00101" +PUMA "IN, 00102" +PUMA "IN, 00103" +PUMA "IN, 00104" +PUMA "IN, 00200" +PUMA "IN, 00300" +PUMA "IN, 00401" +PUMA "IN, 00402" +PUMA "IN, 00500" +PUMA "IN, 00600" +PUMA "IN, 00700" +PUMA "IN, 00800" +PUMA "IN, 00900" +PUMA "IN, 01001" +PUMA "IN, 01002" +PUMA "IN, 01003" +PUMA "IN, 01100" +PUMA "IN, 01200" +PUMA "IN, 01300" +PUMA "IN, 01400" +PUMA "IN, 01500" +PUMA "IN, 01600" +PUMA "IN, 01700" +PUMA "IN, 01801" +PUMA "IN, 01802" +PUMA "IN, 01803" +PUMA "IN, 01900" +PUMA "IN, 02000" +PUMA "IN, 02100" +PUMA "IN, 02200" +PUMA "IN, 02301" +PUMA "IN, 02302" +PUMA "IN, 02303" +PUMA "IN, 02304" +PUMA "IN, 02305" +PUMA "IN, 02306" +PUMA "IN, 02307" +PUMA "IN, 02400" +PUMA "IN, 02500" +PUMA "IN, 02600" +PUMA "IN, 02700" +PUMA "IN, 02800" +PUMA "IN, 02900" +PUMA "IN, 03000" +PUMA "IN, 03100" +PUMA "IN, 03200" +PUMA "IN, 03300" +PUMA "IN, 03400" +PUMA "IN, 03500" +PUMA "IN, 03600" +PUMA "KS, 00100" +PUMA "KS, 00200" +PUMA "KS, 00300" +PUMA "KS, 00400" +PUMA "KS, 00500" +PUMA "KS, 00601" +PUMA "KS, 00602" +PUMA "KS, 00603" +PUMA "KS, 00604" +PUMA "KS, 00700" +PUMA "KS, 00801" +PUMA "KS, 00802" +PUMA "KS, 00900" +PUMA "KS, 01000" +PUMA "KS, 01100" +PUMA "KS, 01200" +PUMA "KS, 01301" +PUMA "KS, 01302" +PUMA "KS, 01303" +PUMA "KS, 01304" +PUMA "KS, 01400" +PUMA "KS, 01500" +PUMA "KY, 00100" +PUMA "KY, 00200" +PUMA "KY, 00300" +PUMA "KY, 00400" +PUMA "KY, 00500" +PUMA "KY, 00600" +PUMA "KY, 00700" +PUMA "KY, 00800" +PUMA "KY, 00900" +PUMA "KY, 01000" +PUMA "KY, 01100" +PUMA "KY, 01200" +PUMA "KY, 01300" +PUMA "KY, 01400" +PUMA "KY, 01500" +PUMA "KY, 01600" +PUMA "KY, 01701" +PUMA "KY, 01702" +PUMA "KY, 01703" +PUMA "KY, 01704" +PUMA "KY, 01705" +PUMA "KY, 01706" +PUMA "KY, 01800" +PUMA "KY, 01901" +PUMA "KY, 01902" +PUMA "KY, 02000" +PUMA "KY, 02100" +PUMA "KY, 02200" +PUMA "KY, 02300" +PUMA "KY, 02400" +PUMA "KY, 02500" +PUMA "KY, 02600" +PUMA "KY, 02700" +PUMA "KY, 02800" +PUMA "LA, 00100" +PUMA "LA, 00101" +PUMA "LA, 00200" +PUMA "LA, 00300" +PUMA "LA, 00400" +PUMA "LA, 00500" +PUMA "LA, 00600" +PUMA "LA, 00700" +PUMA "LA, 00800" +PUMA "LA, 00900" +PUMA "LA, 01000" +PUMA "LA, 01100" +PUMA "LA, 01200" +PUMA "LA, 01201" +PUMA "LA, 01300" +PUMA "LA, 01400" +PUMA "LA, 01500" +PUMA "LA, 01501" +PUMA "LA, 01502" +PUMA "LA, 01600" +PUMA "LA, 01700" +PUMA "LA, 01800" +PUMA "LA, 01900" +PUMA "LA, 02000" +PUMA "LA, 02100" +PUMA "LA, 02200" +PUMA "LA, 02201" +PUMA "LA, 02300" +PUMA "LA, 02301" +PUMA "LA, 02302" +PUMA "LA, 02400" +PUMA "LA, 02401" +PUMA "LA, 02402" +PUMA "LA, 02500" +PUMA "MA, 00100" +PUMA "MA, 00200" +PUMA "MA, 00300" +PUMA "MA, 00301" +PUMA "MA, 00302" +PUMA "MA, 00303" +PUMA "MA, 00304" +PUMA "MA, 00400" +PUMA "MA, 00501" +PUMA "MA, 00502" +PUMA "MA, 00503" +PUMA "MA, 00504" +PUMA "MA, 00505" +PUMA "MA, 00506" +PUMA "MA, 00507" +PUMA "MA, 00508" +PUMA "MA, 00701" +PUMA "MA, 00702" +PUMA "MA, 00703" +PUMA "MA, 00704" +PUMA "MA, 01000" +PUMA "MA, 01300" +PUMA "MA, 01400" +PUMA "MA, 01600" +PUMA "MA, 01900" +PUMA "MA, 01901" +PUMA "MA, 01902" +PUMA "MA, 02400" +PUMA "MA, 02800" +PUMA "MA, 03301" +PUMA "MA, 03302" +PUMA "MA, 03303" +PUMA "MA, 03304" +PUMA "MA, 03305" +PUMA "MA, 03306" +PUMA "MA, 03400" +PUMA "MA, 03500" +PUMA "MA, 03601" +PUMA "MA, 03602" +PUMA "MA, 03603" +PUMA "MA, 03900" +PUMA "MA, 04000" +PUMA "MA, 04200" +PUMA "MA, 04301" +PUMA "MA, 04302" +PUMA "MA, 04303" +PUMA "MA, 04500" +PUMA "MA, 04700" +PUMA "MA, 04800" +PUMA "MA, 04901" +PUMA "MA, 04902" +PUMA "MA, 04903" +PUMA "MD, 00100" +PUMA "MD, 00200" +PUMA "MD, 00301" +PUMA "MD, 00302" +PUMA "MD, 00400" +PUMA "MD, 00501" +PUMA "MD, 00502" +PUMA "MD, 00503" +PUMA "MD, 00504" +PUMA "MD, 00505" +PUMA "MD, 00506" +PUMA "MD, 00507" +PUMA "MD, 00601" +PUMA "MD, 00602" +PUMA "MD, 00700" +PUMA "MD, 00801" +PUMA "MD, 00802" +PUMA "MD, 00803" +PUMA "MD, 00804" +PUMA "MD, 00805" +PUMA "MD, 00901" +PUMA "MD, 00902" +PUMA "MD, 01001" +PUMA "MD, 01002" +PUMA "MD, 01003" +PUMA "MD, 01004" +PUMA "MD, 01005" +PUMA "MD, 01006" +PUMA "MD, 01007" +PUMA "MD, 01101" +PUMA "MD, 01102" +PUMA "MD, 01103" +PUMA "MD, 01104" +PUMA "MD, 01105" +PUMA "MD, 01106" +PUMA "MD, 01107" +PUMA "MD, 01201" +PUMA "MD, 01202" +PUMA "MD, 01203" +PUMA "MD, 01204" +PUMA "MD, 01300" +PUMA "MD, 01400" +PUMA "MD, 01500" +PUMA "MD, 01600" +PUMA "ME, 00100" +PUMA "ME, 00200" +PUMA "ME, 00300" +PUMA "ME, 00400" +PUMA "ME, 00500" +PUMA "ME, 00600" +PUMA "ME, 00700" +PUMA "ME, 00800" +PUMA "ME, 00900" +PUMA "ME, 01000" +PUMA "MI, 00100" +PUMA "MI, 00200" +PUMA "MI, 00300" +PUMA "MI, 00400" +PUMA "MI, 00500" +PUMA "MI, 00600" +PUMA "MI, 00700" +PUMA "MI, 00801" +PUMA "MI, 00802" +PUMA "MI, 00900" +PUMA "MI, 01001" +PUMA "MI, 01002" +PUMA "MI, 01003" +PUMA "MI, 01004" +PUMA "MI, 01100" +PUMA "MI, 01200" +PUMA "MI, 01300" +PUMA "MI, 01400" +PUMA "MI, 01500" +PUMA "MI, 01600" +PUMA "MI, 01701" +PUMA "MI, 01702" +PUMA "MI, 01703" +PUMA "MI, 01704" +PUMA "MI, 01801" +PUMA "MI, 01802" +PUMA "MI, 01900" +PUMA "MI, 02000" +PUMA "MI, 02101" +PUMA "MI, 02102" +PUMA "MI, 02200" +PUMA "MI, 02300" +PUMA "MI, 02400" +PUMA "MI, 02500" +PUMA "MI, 02600" +PUMA "MI, 02701" +PUMA "MI, 02702" +PUMA "MI, 02703" +PUMA "MI, 02800" +PUMA "MI, 02901" +PUMA "MI, 02902" +PUMA "MI, 02903" +PUMA "MI, 02904" +PUMA "MI, 02905" +PUMA "MI, 02906" +PUMA "MI, 02907" +PUMA "MI, 02908" +PUMA "MI, 03001" +PUMA "MI, 03002" +PUMA "MI, 03003" +PUMA "MI, 03004" +PUMA "MI, 03005" +PUMA "MI, 03006" +PUMA "MI, 03100" +PUMA "MI, 03201" +PUMA "MI, 03202" +PUMA "MI, 03203" +PUMA "MI, 03204" +PUMA "MI, 03205" +PUMA "MI, 03206" +PUMA "MI, 03207" +PUMA "MI, 03208" +PUMA "MI, 03209" +PUMA "MI, 03210" +PUMA "MI, 03211" +PUMA "MI, 03212" +PUMA "MI, 03213" +PUMA "MI, 03300" +PUMA "MN, 00100" +PUMA "MN, 00200" +PUMA "MN, 00300" +PUMA "MN, 00400" +PUMA "MN, 00500" +PUMA "MN, 00600" +PUMA "MN, 00700" +PUMA "MN, 00800" +PUMA "MN, 00900" +PUMA "MN, 01000" +PUMA "MN, 01101" +PUMA "MN, 01102" +PUMA "MN, 01103" +PUMA "MN, 01201" +PUMA "MN, 01202" +PUMA "MN, 01301" +PUMA "MN, 01302" +PUMA "MN, 01303" +PUMA "MN, 01304" +PUMA "MN, 01401" +PUMA "MN, 01402" +PUMA "MN, 01403" +PUMA "MN, 01404" +PUMA "MN, 01405" +PUMA "MN, 01406" +PUMA "MN, 01407" +PUMA "MN, 01408" +PUMA "MN, 01409" +PUMA "MN, 01410" +PUMA "MN, 01501" +PUMA "MN, 01502" +PUMA "MN, 01503" +PUMA "MN, 01600" +PUMA "MN, 01700" +PUMA "MN, 01800" +PUMA "MN, 01900" +PUMA "MN, 02000" +PUMA "MN, 02100" +PUMA "MN, 02200" +PUMA "MN, 02300" +PUMA "MN, 02400" +PUMA "MN, 02500" +PUMA "MN, 02600" +PUMA "MO, 00100" +PUMA "MO, 00200" +PUMA "MO, 00300" +PUMA "MO, 00400" +PUMA "MO, 00500" +PUMA "MO, 00600" +PUMA "MO, 00700" +PUMA "MO, 00800" +PUMA "MO, 00901" +PUMA "MO, 00902" +PUMA "MO, 00903" +PUMA "MO, 01001" +PUMA "MO, 01002" +PUMA "MO, 01003" +PUMA "MO, 01004" +PUMA "MO, 01005" +PUMA "MO, 01100" +PUMA "MO, 01200" +PUMA "MO, 01300" +PUMA "MO, 01400" +PUMA "MO, 01500" +PUMA "MO, 01600" +PUMA "MO, 01701" +PUMA "MO, 01702" +PUMA "MO, 01703" +PUMA "MO, 01801" +PUMA "MO, 01802" +PUMA "MO, 01803" +PUMA "MO, 01804" +PUMA "MO, 01805" +PUMA "MO, 01806" +PUMA "MO, 01807" +PUMA "MO, 01808" +PUMA "MO, 01901" +PUMA "MO, 01902" +PUMA "MO, 02001" +PUMA "MO, 02002" +PUMA "MO, 02100" +PUMA "MO, 02200" +PUMA "MO, 02300" +PUMA "MO, 02400" +PUMA "MO, 02500" +PUMA "MO, 02601" +PUMA "MO, 02602" +PUMA "MO, 02603" +PUMA "MO, 02700" +PUMA "MO, 02800" +PUMA "MS, 00100" +PUMA "MS, 00200" +PUMA "MS, 00300" +PUMA "MS, 00400" +PUMA "MS, 00500" +PUMA "MS, 00600" +PUMA "MS, 00700" +PUMA "MS, 00800" +PUMA "MS, 00900" +PUMA "MS, 01000" +PUMA "MS, 01100" +PUMA "MS, 01200" +PUMA "MS, 01300" +PUMA "MS, 01400" +PUMA "MS, 01500" +PUMA "MS, 01600" +PUMA "MS, 01700" +PUMA "MS, 01800" +PUMA "MS, 01900" +PUMA "MS, 02000" +PUMA "MS, 02100" +PUMA "MT, 00100" +PUMA "MT, 00200" +PUMA "MT, 00300" +PUMA "MT, 00400" +PUMA "MT, 00500" +PUMA "MT, 00600" +PUMA "MT, 00700" +PUMA "NC, 00100" +PUMA "NC, 00200" +PUMA "NC, 00300" +PUMA "NC, 00400" +PUMA "NC, 00500" +PUMA "NC, 00600" +PUMA "NC, 00700" +PUMA "NC, 00800" +PUMA "NC, 00900" +PUMA "NC, 01000" +PUMA "NC, 01100" +PUMA "NC, 01201" +PUMA "NC, 01202" +PUMA "NC, 01203" +PUMA "NC, 01204" +PUMA "NC, 01205" +PUMA "NC, 01206" +PUMA "NC, 01207" +PUMA "NC, 01208" +PUMA "NC, 01301" +PUMA "NC, 01302" +PUMA "NC, 01400" +PUMA "NC, 01500" +PUMA "NC, 01600" +PUMA "NC, 01701" +PUMA "NC, 01702" +PUMA "NC, 01703" +PUMA "NC, 01704" +PUMA "NC, 01801" +PUMA "NC, 01802" +PUMA "NC, 01803" +PUMA "NC, 01900" +PUMA "NC, 02000" +PUMA "NC, 02100" +PUMA "NC, 02201" +PUMA "NC, 02202" +PUMA "NC, 02300" +PUMA "NC, 02400" +PUMA "NC, 02500" +PUMA "NC, 02600" +PUMA "NC, 02700" +PUMA "NC, 02800" +PUMA "NC, 02900" +PUMA "NC, 03001" +PUMA "NC, 03002" +PUMA "NC, 03101" +PUMA "NC, 03102" +PUMA "NC, 03103" +PUMA "NC, 03104" +PUMA "NC, 03105" +PUMA "NC, 03106" +PUMA "NC, 03107" +PUMA "NC, 03108" +PUMA "NC, 03200" +PUMA "NC, 03300" +PUMA "NC, 03400" +PUMA "NC, 03500" +PUMA "NC, 03600" +PUMA "NC, 03700" +PUMA "NC, 03800" +PUMA "NC, 03900" +PUMA "NC, 04000" +PUMA "NC, 04100" +PUMA "NC, 04200" +PUMA "NC, 04300" +PUMA "NC, 04400" +PUMA "NC, 04500" +PUMA "NC, 04600" +PUMA "NC, 04700" +PUMA "NC, 04800" +PUMA "NC, 04900" +PUMA "NC, 05001" +PUMA "NC, 05002" +PUMA "NC, 05003" +PUMA "NC, 05100" +PUMA "NC, 05200" +PUMA "NC, 05300" +PUMA "NC, 05400" +PUMA "ND, 00100" +PUMA "ND, 00200" +PUMA "ND, 00300" +PUMA "ND, 00400" +PUMA "ND, 00500" +PUMA "NE, 00100" +PUMA "NE, 00200" +PUMA "NE, 00300" +PUMA "NE, 00400" +PUMA "NE, 00500" +PUMA "NE, 00600" +PUMA "NE, 00701" +PUMA "NE, 00702" +PUMA "NE, 00801" +PUMA "NE, 00802" +PUMA "NE, 00901" +PUMA "NE, 00902" +PUMA "NE, 00903" +PUMA "NE, 00904" +PUMA "NH, 00100" +PUMA "NH, 00200" +PUMA "NH, 00300" +PUMA "NH, 00400" +PUMA "NH, 00500" +PUMA "NH, 00600" +PUMA "NH, 00700" +PUMA "NH, 00800" +PUMA "NH, 00900" +PUMA "NH, 01000" +PUMA "NJ, 00101" +PUMA "NJ, 00102" +PUMA "NJ, 00301" +PUMA "NJ, 00302" +PUMA "NJ, 00303" +PUMA "NJ, 00304" +PUMA "NJ, 00305" +PUMA "NJ, 00306" +PUMA "NJ, 00307" +PUMA "NJ, 00308" +PUMA "NJ, 00400" +PUMA "NJ, 00501" +PUMA "NJ, 00502" +PUMA "NJ, 00503" +PUMA "NJ, 00601" +PUMA "NJ, 00602" +PUMA "NJ, 00701" +PUMA "NJ, 00702" +PUMA "NJ, 00703" +PUMA "NJ, 00800" +PUMA "NJ, 00901" +PUMA "NJ, 00902" +PUMA "NJ, 00903" +PUMA "NJ, 00904" +PUMA "NJ, 00905" +PUMA "NJ, 00906" +PUMA "NJ, 00907" +PUMA "NJ, 01001" +PUMA "NJ, 01002" +PUMA "NJ, 01003" +PUMA "NJ, 01101" +PUMA "NJ, 01102" +PUMA "NJ, 01103" +PUMA "NJ, 01104" +PUMA "NJ, 01105" +PUMA "NJ, 01106" +PUMA "NJ, 01201" +PUMA "NJ, 01202" +PUMA "NJ, 01203" +PUMA "NJ, 01204" +PUMA "NJ, 01205" +PUMA "NJ, 01301" +PUMA "NJ, 01302" +PUMA "NJ, 01401" +PUMA "NJ, 01402" +PUMA "NJ, 01403" +PUMA "NJ, 01404" +PUMA "NJ, 01501" +PUMA "NJ, 01502" +PUMA "NJ, 01503" +PUMA "NJ, 01504" +PUMA "NJ, 01600" +PUMA "NJ, 01700" +PUMA "NJ, 01800" +PUMA "NJ, 01901" +PUMA "NJ, 01902" +PUMA "NJ, 01903" +PUMA "NJ, 01904" +PUMA "NJ, 02001" +PUMA "NJ, 02002" +PUMA "NJ, 02003" +PUMA "NJ, 02101" +PUMA "NJ, 02102" +PUMA "NJ, 02103" +PUMA "NJ, 02104" +PUMA "NJ, 02201" +PUMA "NJ, 02202" +PUMA "NJ, 02301" +PUMA "NJ, 02302" +PUMA "NJ, 02303" +PUMA "NJ, 02400" +PUMA "NJ, 02500" +PUMA "NJ, 02600" +PUMA "NM, 00100" +PUMA "NM, 00200" +PUMA "NM, 00300" +PUMA "NM, 00400" +PUMA "NM, 00500" +PUMA "NM, 00600" +PUMA "NM, 00700" +PUMA "NM, 00801" +PUMA "NM, 00802" +PUMA "NM, 00803" +PUMA "NM, 00804" +PUMA "NM, 00805" +PUMA "NM, 00806" +PUMA "NM, 00900" +PUMA "NM, 01001" +PUMA "NM, 01002" +PUMA "NM, 01100" +PUMA "NM, 01200" +PUMA "NV, 00101" +PUMA "NV, 00102" +PUMA "NV, 00103" +PUMA "NV, 00200" +PUMA "NV, 00300" +PUMA "NV, 00401" +PUMA "NV, 00402" +PUMA "NV, 00403" +PUMA "NV, 00404" +PUMA "NV, 00405" +PUMA "NV, 00406" +PUMA "NV, 00407" +PUMA "NV, 00408" +PUMA "NV, 00409" +PUMA "NV, 00410" +PUMA "NV, 00411" +PUMA "NV, 00412" +PUMA "NV, 00413" +PUMA "NY, 00100" +PUMA "NY, 00200" +PUMA "NY, 00300" +PUMA "NY, 00401" +PUMA "NY, 00402" +PUMA "NY, 00403" +PUMA "NY, 00500" +PUMA "NY, 00600" +PUMA "NY, 00701" +PUMA "NY, 00702" +PUMA "NY, 00703" +PUMA "NY, 00704" +PUMA "NY, 00800" +PUMA "NY, 00901" +PUMA "NY, 00902" +PUMA "NY, 00903" +PUMA "NY, 00904" +PUMA "NY, 00905" +PUMA "NY, 00906" +PUMA "NY, 01000" +PUMA "NY, 01101" +PUMA "NY, 01102" +PUMA "NY, 01201" +PUMA "NY, 01202" +PUMA "NY, 01203" +PUMA "NY, 01204" +PUMA "NY, 01205" +PUMA "NY, 01206" +PUMA "NY, 01207" +PUMA "NY, 01300" +PUMA "NY, 01400" +PUMA "NY, 01500" +PUMA "NY, 01600" +PUMA "NY, 01700" +PUMA "NY, 01801" +PUMA "NY, 01802" +PUMA "NY, 01900" +PUMA "NY, 02001" +PUMA "NY, 02002" +PUMA "NY, 02100" +PUMA "NY, 02201" +PUMA "NY, 02202" +PUMA "NY, 02203" +PUMA "NY, 02300" +PUMA "NY, 02401" +PUMA "NY, 02402" +PUMA "NY, 02500" +PUMA "NY, 02600" +PUMA "NY, 02701" +PUMA "NY, 02702" +PUMA "NY, 02801" +PUMA "NY, 02802" +PUMA "NY, 02901" +PUMA "NY, 02902" +PUMA "NY, 02903" +PUMA "NY, 03001" +PUMA "NY, 03002" +PUMA "NY, 03003" +PUMA "NY, 03101" +PUMA "NY, 03102" +PUMA "NY, 03103" +PUMA "NY, 03104" +PUMA "NY, 03105" +PUMA "NY, 03106" +PUMA "NY, 03107" +PUMA "NY, 03201" +PUMA "NY, 03202" +PUMA "NY, 03203" +PUMA "NY, 03204" +PUMA "NY, 03205" +PUMA "NY, 03206" +PUMA "NY, 03207" +PUMA "NY, 03208" +PUMA "NY, 03209" +PUMA "NY, 03210" +PUMA "NY, 03211" +PUMA "NY, 03212" +PUMA "NY, 03301" +PUMA "NY, 03302" +PUMA "NY, 03303" +PUMA "NY, 03304" +PUMA "NY, 03305" +PUMA "NY, 03306" +PUMA "NY, 03307" +PUMA "NY, 03308" +PUMA "NY, 03309" +PUMA "NY, 03310" +PUMA "NY, 03311" +PUMA "NY, 03312" +PUMA "NY, 03313" +PUMA "NY, 03701" +PUMA "NY, 03702" +PUMA "NY, 03703" +PUMA "NY, 03704" +PUMA "NY, 03705" +PUMA "NY, 03706" +PUMA "NY, 03707" +PUMA "NY, 03708" +PUMA "NY, 03709" +PUMA "NY, 03710" +PUMA "NY, 03801" +PUMA "NY, 03802" +PUMA "NY, 03803" +PUMA "NY, 03804" +PUMA "NY, 03805" +PUMA "NY, 03806" +PUMA "NY, 03807" +PUMA "NY, 03808" +PUMA "NY, 03809" +PUMA "NY, 03810" +PUMA "NY, 03901" +PUMA "NY, 03902" +PUMA "NY, 03903" +PUMA "NY, 04001" +PUMA "NY, 04002" +PUMA "NY, 04003" +PUMA "NY, 04004" +PUMA "NY, 04005" +PUMA "NY, 04006" +PUMA "NY, 04007" +PUMA "NY, 04008" +PUMA "NY, 04009" +PUMA "NY, 04010" +PUMA "NY, 04011" +PUMA "NY, 04012" +PUMA "NY, 04013" +PUMA "NY, 04014" +PUMA "NY, 04015" +PUMA "NY, 04016" +PUMA "NY, 04017" +PUMA "NY, 04018" +PUMA "NY, 04101" +PUMA "NY, 04102" +PUMA "NY, 04103" +PUMA "NY, 04104" +PUMA "NY, 04105" +PUMA "NY, 04106" +PUMA "NY, 04107" +PUMA "NY, 04108" +PUMA "NY, 04109" +PUMA "NY, 04110" +PUMA "NY, 04111" +PUMA "NY, 04112" +PUMA "NY, 04113" +PUMA "NY, 04114" +PUMA "OH, 00100" +PUMA "OH, 00200" +PUMA "OH, 00300" +PUMA "OH, 00400" +PUMA "OH, 00500" +PUMA "OH, 00600" +PUMA "OH, 00700" +PUMA "OH, 00801" +PUMA "OH, 00802" +PUMA "OH, 00901" +PUMA "OH, 00902" +PUMA "OH, 00903" +PUMA "OH, 00904" +PUMA "OH, 00905" +PUMA "OH, 00906" +PUMA "OH, 00907" +PUMA "OH, 00908" +PUMA "OH, 00909" +PUMA "OH, 00910" +PUMA "OH, 01000" +PUMA "OH, 01100" +PUMA "OH, 01200" +PUMA "OH, 01300" +PUMA "OH, 01400" +PUMA "OH, 01500" +PUMA "OH, 01600" +PUMA "OH, 01700" +PUMA "OH, 01801" +PUMA "OH, 01802" +PUMA "OH, 01803" +PUMA "OH, 01804" +PUMA "OH, 01805" +PUMA "OH, 01900" +PUMA "OH, 02000" +PUMA "OH, 02100" +PUMA "OH, 02200" +PUMA "OH, 02300" +PUMA "OH, 02400" +PUMA "OH, 02500" +PUMA "OH, 02600" +PUMA "OH, 02700" +PUMA "OH, 02800" +PUMA "OH, 02900" +PUMA "OH, 03000" +PUMA "OH, 03100" +PUMA "OH, 03200" +PUMA "OH, 03300" +PUMA "OH, 03400" +PUMA "OH, 03500" +PUMA "OH, 03600" +PUMA "OH, 03700" +PUMA "OH, 03800" +PUMA "OH, 03900" +PUMA "OH, 04000" +PUMA "OH, 04101" +PUMA "OH, 04102" +PUMA "OH, 04103" +PUMA "OH, 04104" +PUMA "OH, 04105" +PUMA "OH, 04106" +PUMA "OH, 04107" +PUMA "OH, 04108" +PUMA "OH, 04109" +PUMA "OH, 04110" +PUMA "OH, 04111" +PUMA "OH, 04200" +PUMA "OH, 04300" +PUMA "OH, 04400" +PUMA "OH, 04500" +PUMA "OH, 04601" +PUMA "OH, 04602" +PUMA "OH, 04603" +PUMA "OH, 04604" +PUMA "OH, 04700" +PUMA "OH, 04800" +PUMA "OH, 04900" +PUMA "OH, 05000" +PUMA "OH, 05100" +PUMA "OH, 05200" +PUMA "OH, 05301" +PUMA "OH, 05302" +PUMA "OH, 05401" +PUMA "OH, 05402" +PUMA "OH, 05403" +PUMA "OH, 05501" +PUMA "OH, 05502" +PUMA "OH, 05503" +PUMA "OH, 05504" +PUMA "OH, 05505" +PUMA "OH, 05506" +PUMA "OH, 05507" +PUMA "OH, 05600" +PUMA "OH, 05700" +PUMA "OK, 00100" +PUMA "OK, 00200" +PUMA "OK, 00300" +PUMA "OK, 00400" +PUMA "OK, 00500" +PUMA "OK, 00601" +PUMA "OK, 00602" +PUMA "OK, 00701" +PUMA "OK, 00702" +PUMA "OK, 00800" +PUMA "OK, 00900" +PUMA "OK, 01001" +PUMA "OK, 01002" +PUMA "OK, 01003" +PUMA "OK, 01004" +PUMA "OK, 01005" +PUMA "OK, 01006" +PUMA "OK, 01101" +PUMA "OK, 01102" +PUMA "OK, 01201" +PUMA "OK, 01202" +PUMA "OK, 01203" +PUMA "OK, 01204" +PUMA "OK, 01301" +PUMA "OK, 01302" +PUMA "OK, 01400" +PUMA "OK, 01501" +PUMA "OK, 01601" +PUMA "OR, 00100" +PUMA "OR, 00200" +PUMA "OR, 00300" +PUMA "OR, 00400" +PUMA "OR, 00500" +PUMA "OR, 00600" +PUMA "OR, 00703" +PUMA "OR, 00704" +PUMA "OR, 00705" +PUMA "OR, 00800" +PUMA "OR, 00901" +PUMA "OR, 00902" +PUMA "OR, 01000" +PUMA "OR, 01103" +PUMA "OR, 01104" +PUMA "OR, 01105" +PUMA "OR, 01200" +PUMA "OR, 01301" +PUMA "OR, 01302" +PUMA "OR, 01303" +PUMA "OR, 01305" +PUMA "OR, 01314" +PUMA "OR, 01316" +PUMA "OR, 01317" +PUMA "OR, 01318" +PUMA "OR, 01319" +PUMA "OR, 01320" +PUMA "OR, 01321" +PUMA "OR, 01322" +PUMA "OR, 01323" +PUMA "OR, 01324" +PUMA "PA, 00101" +PUMA "PA, 00102" +PUMA "PA, 00200" +PUMA "PA, 00300" +PUMA "PA, 00400" +PUMA "PA, 00500" +PUMA "PA, 00600" +PUMA "PA, 00701" +PUMA "PA, 00702" +PUMA "PA, 00801" +PUMA "PA, 00802" +PUMA "PA, 00803" +PUMA "PA, 00900" +PUMA "PA, 01000" +PUMA "PA, 01100" +PUMA "PA, 01200" +PUMA "PA, 01300" +PUMA "PA, 01400" +PUMA "PA, 01501" +PUMA "PA, 01502" +PUMA "PA, 01600" +PUMA "PA, 01701" +PUMA "PA, 01702" +PUMA "PA, 01801" +PUMA "PA, 01802" +PUMA "PA, 01803" +PUMA "PA, 01804" +PUMA "PA, 01805" +PUMA "PA, 01806" +PUMA "PA, 01807" +PUMA "PA, 01900" +PUMA "PA, 02001" +PUMA "PA, 02002" +PUMA "PA, 02003" +PUMA "PA, 02100" +PUMA "PA, 02200" +PUMA "PA, 02301" +PUMA "PA, 02302" +PUMA "PA, 02401" +PUMA "PA, 02402" +PUMA "PA, 02500" +PUMA "PA, 02600" +PUMA "PA, 02701" +PUMA "PA, 02702" +PUMA "PA, 02703" +PUMA "PA, 02801" +PUMA "PA, 02802" +PUMA "PA, 02803" +PUMA "PA, 02901" +PUMA "PA, 02902" +PUMA "PA, 03001" +PUMA "PA, 03002" +PUMA "PA, 03003" +PUMA "PA, 03004" +PUMA "PA, 03101" +PUMA "PA, 03102" +PUMA "PA, 03103" +PUMA "PA, 03104" +PUMA "PA, 03105" +PUMA "PA, 03106" +PUMA "PA, 03201" +PUMA "PA, 03202" +PUMA "PA, 03203" +PUMA "PA, 03204" +PUMA "PA, 03205" +PUMA "PA, 03206" +PUMA "PA, 03207" +PUMA "PA, 03208" +PUMA "PA, 03209" +PUMA "PA, 03210" +PUMA "PA, 03211" +PUMA "PA, 03301" +PUMA "PA, 03302" +PUMA "PA, 03303" +PUMA "PA, 03304" +PUMA "PA, 03401" +PUMA "PA, 03402" +PUMA "PA, 03403" +PUMA "PA, 03404" +PUMA "PA, 03501" +PUMA "PA, 03502" +PUMA "PA, 03503" +PUMA "PA, 03504" +PUMA "PA, 03601" +PUMA "PA, 03602" +PUMA "PA, 03603" +PUMA "PA, 03701" +PUMA "PA, 03702" +PUMA "PA, 03800" +PUMA "PA, 03900" +PUMA "PA, 04001" +PUMA "PA, 04002" +PUMA "RI, 00101" +PUMA "RI, 00102" +PUMA "RI, 00103" +PUMA "RI, 00104" +PUMA "RI, 00201" +PUMA "RI, 00300" +PUMA "RI, 00400" +PUMA "SC, 00101" +PUMA "SC, 00102" +PUMA "SC, 00103" +PUMA "SC, 00104" +PUMA "SC, 00105" +PUMA "SC, 00200" +PUMA "SC, 00301" +PUMA "SC, 00302" +PUMA "SC, 00400" +PUMA "SC, 00501" +PUMA "SC, 00502" +PUMA "SC, 00601" +PUMA "SC, 00602" +PUMA "SC, 00603" +PUMA "SC, 00604" +PUMA "SC, 00605" +PUMA "SC, 00700" +PUMA "SC, 00800" +PUMA "SC, 00900" +PUMA "SC, 01000" +PUMA "SC, 01101" +PUMA "SC, 01102" +PUMA "SC, 01201" +PUMA "SC, 01202" +PUMA "SC, 01203" +PUMA "SC, 01204" +PUMA "SC, 01300" +PUMA "SC, 01400" +PUMA "SC, 01500" +PUMA "SC, 01600" +PUMA "SD, 00100" +PUMA "SD, 00200" +PUMA "SD, 00300" +PUMA "SD, 00400" +PUMA "SD, 00500" +PUMA "SD, 00600" +PUMA "TN, 00100" +PUMA "TN, 00200" +PUMA "TN, 00300" +PUMA "TN, 00400" +PUMA "TN, 00500" +PUMA "TN, 00600" +PUMA "TN, 00700" +PUMA "TN, 00800" +PUMA "TN, 00900" +PUMA "TN, 01000" +PUMA "TN, 01100" +PUMA "TN, 01200" +PUMA "TN, 01300" +PUMA "TN, 01400" +PUMA "TN, 01500" +PUMA "TN, 01601" +PUMA "TN, 01602" +PUMA "TN, 01603" +PUMA "TN, 01604" +PUMA "TN, 01700" +PUMA "TN, 01800" +PUMA "TN, 01900" +PUMA "TN, 02001" +PUMA "TN, 02002" +PUMA "TN, 02003" +PUMA "TN, 02100" +PUMA "TN, 02200" +PUMA "TN, 02300" +PUMA "TN, 02401" +PUMA "TN, 02402" +PUMA "TN, 02501" +PUMA "TN, 02502" +PUMA "TN, 02503" +PUMA "TN, 02504" +PUMA "TN, 02505" +PUMA "TN, 02600" +PUMA "TN, 02700" +PUMA "TN, 02800" +PUMA "TN, 02900" +PUMA "TN, 03000" +PUMA "TN, 03100" +PUMA "TN, 03201" +PUMA "TN, 03202" +PUMA "TN, 03203" +PUMA "TN, 03204" +PUMA "TN, 03205" +PUMA "TN, 03206" +PUMA "TN, 03207" +PUMA "TN, 03208" +PUMA "TX, 00100" +PUMA "TX, 00200" +PUMA "TX, 00300" +PUMA "TX, 00400" +PUMA "TX, 00501" +PUMA "TX, 00502" +PUMA "TX, 00600" +PUMA "TX, 00700" +PUMA "TX, 00800" +PUMA "TX, 00900" +PUMA "TX, 01000" +PUMA "TX, 01100" +PUMA "TX, 01200" +PUMA "TX, 01300" +PUMA "TX, 01400" +PUMA "TX, 01501" +PUMA "TX, 01502" +PUMA "TX, 01600" +PUMA "TX, 01700" +PUMA "TX, 01800" +PUMA "TX, 01901" +PUMA "TX, 01902" +PUMA "TX, 01903" +PUMA "TX, 01904" +PUMA "TX, 01905" +PUMA "TX, 01906" +PUMA "TX, 01907" +PUMA "TX, 02001" +PUMA "TX, 02002" +PUMA "TX, 02003" +PUMA "TX, 02004" +PUMA "TX, 02005" +PUMA "TX, 02006" +PUMA "TX, 02101" +PUMA "TX, 02102" +PUMA "TX, 02200" +PUMA "TX, 02301" +PUMA "TX, 02302" +PUMA "TX, 02303" +PUMA "TX, 02304" +PUMA "TX, 02305" +PUMA "TX, 02306" +PUMA "TX, 02307" +PUMA "TX, 02308" +PUMA "TX, 02309" +PUMA "TX, 02310" +PUMA "TX, 02311" +PUMA "TX, 02312" +PUMA "TX, 02313" +PUMA "TX, 02314" +PUMA "TX, 02315" +PUMA "TX, 02316" +PUMA "TX, 02317" +PUMA "TX, 02318" +PUMA "TX, 02319" +PUMA "TX, 02320" +PUMA "TX, 02321" +PUMA "TX, 02322" +PUMA "TX, 02400" +PUMA "TX, 02501" +PUMA "TX, 02502" +PUMA "TX, 02503" +PUMA "TX, 02504" +PUMA "TX, 02505" +PUMA "TX, 02506" +PUMA "TX, 02507" +PUMA "TX, 02508" +PUMA "TX, 02509" +PUMA "TX, 02510" +PUMA "TX, 02511" +PUMA "TX, 02512" +PUMA "TX, 02513" +PUMA "TX, 02514" +PUMA "TX, 02515" +PUMA "TX, 02516" +PUMA "TX, 02600" +PUMA "TX, 02700" +PUMA "TX, 02800" +PUMA "TX, 02900" +PUMA "TX, 03000" +PUMA "TX, 03100" +PUMA "TX, 03200" +PUMA "TX, 03301" +PUMA "TX, 03302" +PUMA "TX, 03303" +PUMA "TX, 03304" +PUMA "TX, 03305" +PUMA "TX, 03306" +PUMA "TX, 03400" +PUMA "TX, 03501" +PUMA "TX, 03502" +PUMA "TX, 03601" +PUMA "TX, 03602" +PUMA "TX, 03700" +PUMA "TX, 03801" +PUMA "TX, 03802" +PUMA "TX, 03900" +PUMA "TX, 04000" +PUMA "TX, 04100" +PUMA "TX, 04200" +PUMA "TX, 04301" +PUMA "TX, 04302" +PUMA "TX, 04400" +PUMA "TX, 04501" +PUMA "TX, 04502" +PUMA "TX, 04503" +PUMA "TX, 04504" +PUMA "TX, 04601" +PUMA "TX, 04602" +PUMA "TX, 04603" +PUMA "TX, 04604" +PUMA "TX, 04605" +PUMA "TX, 04606" +PUMA "TX, 04607" +PUMA "TX, 04608" +PUMA "TX, 04609" +PUMA "TX, 04610" +PUMA "TX, 04611" +PUMA "TX, 04612" +PUMA "TX, 04613" +PUMA "TX, 04614" +PUMA "TX, 04615" +PUMA "TX, 04616" +PUMA "TX, 04617" +PUMA "TX, 04618" +PUMA "TX, 04619" +PUMA "TX, 04620" +PUMA "TX, 04621" +PUMA "TX, 04622" +PUMA "TX, 04623" +PUMA "TX, 04624" +PUMA "TX, 04625" +PUMA "TX, 04626" +PUMA "TX, 04627" +PUMA "TX, 04628" +PUMA "TX, 04629" +PUMA "TX, 04630" +PUMA "TX, 04631" +PUMA "TX, 04632" +PUMA "TX, 04633" +PUMA "TX, 04634" +PUMA "TX, 04635" +PUMA "TX, 04636" +PUMA "TX, 04637" +PUMA "TX, 04638" +PUMA "TX, 04701" +PUMA "TX, 04702" +PUMA "TX, 04801" +PUMA "TX, 04802" +PUMA "TX, 04803" +PUMA "TX, 04901" +PUMA "TX, 04902" +PUMA "TX, 04903" +PUMA "TX, 04904" +PUMA "TX, 04905" +PUMA "TX, 05000" +PUMA "TX, 05100" +PUMA "TX, 05201" +PUMA "TX, 05202" +PUMA "TX, 05203" +PUMA "TX, 05204" +PUMA "TX, 05301" +PUMA "TX, 05302" +PUMA "TX, 05303" +PUMA "TX, 05304" +PUMA "TX, 05305" +PUMA "TX, 05306" +PUMA "TX, 05307" +PUMA "TX, 05308" +PUMA "TX, 05309" +PUMA "TX, 05400" +PUMA "TX, 05500" +PUMA "TX, 05600" +PUMA "TX, 05700" +PUMA "TX, 05800" +PUMA "TX, 05901" +PUMA "TX, 05902" +PUMA "TX, 05903" +PUMA "TX, 05904" +PUMA "TX, 05905" +PUMA "TX, 05906" +PUMA "TX, 05907" +PUMA "TX, 05908" +PUMA "TX, 05909" +PUMA "TX, 05910" +PUMA "TX, 05911" +PUMA "TX, 05912" +PUMA "TX, 05913" +PUMA "TX, 05914" +PUMA "TX, 05915" +PUMA "TX, 05916" +PUMA "TX, 06000" +PUMA "TX, 06100" +PUMA "TX, 06200" +PUMA "TX, 06301" +PUMA "TX, 06302" +PUMA "TX, 06400" +PUMA "TX, 06500" +PUMA "TX, 06601" +PUMA "TX, 06602" +PUMA "TX, 06603" +PUMA "TX, 06701" +PUMA "TX, 06702" +PUMA "TX, 06703" +PUMA "TX, 06801" +PUMA "TX, 06802" +PUMA "TX, 06803" +PUMA "TX, 06804" +PUMA "TX, 06805" +PUMA "TX, 06806" +PUMA "TX, 06807" +PUMA "TX, 06900" +PUMA "UT, 03001" +PUMA "UT, 05001" +PUMA "UT, 11001" +PUMA "UT, 11002" +PUMA "UT, 13001" +PUMA "UT, 21001" +PUMA "UT, 35001" +PUMA "UT, 35002" +PUMA "UT, 35003" +PUMA "UT, 35004" +PUMA "UT, 35005" +PUMA "UT, 35006" +PUMA "UT, 35007" +PUMA "UT, 35008" +PUMA "UT, 35009" +PUMA "UT, 49001" +PUMA "UT, 49002" +PUMA "UT, 49003" +PUMA "UT, 49004" +PUMA "UT, 53001" +PUMA "UT, 57001" +PUMA "UT, 57002" +PUMA "VA, 01301" +PUMA "VA, 01302" +PUMA "VA, 04101" +PUMA "VA, 04102" +PUMA "VA, 04103" +PUMA "VA, 10701" +PUMA "VA, 10702" +PUMA "VA, 10703" +PUMA "VA, 51010" +PUMA "VA, 51020" +PUMA "VA, 51040" +PUMA "VA, 51044" +PUMA "VA, 51045" +PUMA "VA, 51080" +PUMA "VA, 51084" +PUMA "VA, 51085" +PUMA "VA, 51087" +PUMA "VA, 51089" +PUMA "VA, 51090" +PUMA "VA, 51095" +PUMA "VA, 51096" +PUMA "VA, 51097" +PUMA "VA, 51105" +PUMA "VA, 51110" +PUMA "VA, 51115" +PUMA "VA, 51120" +PUMA "VA, 51125" +PUMA "VA, 51135" +PUMA "VA, 51145" +PUMA "VA, 51154" +PUMA "VA, 51155" +PUMA "VA, 51164" +PUMA "VA, 51165" +PUMA "VA, 51167" +PUMA "VA, 51175" +PUMA "VA, 51186" +PUMA "VA, 51206" +PUMA "VA, 51215" +PUMA "VA, 51224" +PUMA "VA, 51225" +PUMA "VA, 51235" +PUMA "VA, 51244" +PUMA "VA, 51245" +PUMA "VA, 51246" +PUMA "VA, 51255" +PUMA "VA, 55001" +PUMA "VA, 55002" +PUMA "VA, 59301" +PUMA "VA, 59302" +PUMA "VA, 59303" +PUMA "VA, 59304" +PUMA "VA, 59305" +PUMA "VA, 59306" +PUMA "VA, 59307" +PUMA "VA, 59308" +PUMA "VA, 59309" +PUMA "VT, 00100" +PUMA "VT, 00200" +PUMA "VT, 00300" +PUMA "VT, 00400" +PUMA "WA, 10100" +PUMA "WA, 10200" +PUMA "WA, 10300" +PUMA "WA, 10400" +PUMA "WA, 10501" +PUMA "WA, 10502" +PUMA "WA, 10503" +PUMA "WA, 10504" +PUMA "WA, 10600" +PUMA "WA, 10701" +PUMA "WA, 10702" +PUMA "WA, 10703" +PUMA "WA, 10800" +PUMA "WA, 10901" +PUMA "WA, 10902" +PUMA "WA, 11000" +PUMA "WA, 11101" +PUMA "WA, 11102" +PUMA "WA, 11103" +PUMA "WA, 11104" +PUMA "WA, 11200" +PUMA "WA, 11300" +PUMA "WA, 11401" +PUMA "WA, 11402" +PUMA "WA, 11501" +PUMA "WA, 11502" +PUMA "WA, 11503" +PUMA "WA, 11504" +PUMA "WA, 11505" +PUMA "WA, 11506" +PUMA "WA, 11507" +PUMA "WA, 11601" +PUMA "WA, 11602" +PUMA "WA, 11603" +PUMA "WA, 11604" +PUMA "WA, 11605" +PUMA "WA, 11606" +PUMA "WA, 11607" +PUMA "WA, 11608" +PUMA "WA, 11609" +PUMA "WA, 11610" +PUMA "WA, 11611" +PUMA "WA, 11612" +PUMA "WA, 11613" +PUMA "WA, 11614" +PUMA "WA, 11615" +PUMA "WA, 11616" +PUMA "WA, 11701" +PUMA "WA, 11702" +PUMA "WA, 11703" +PUMA "WA, 11704" +PUMA "WA, 11705" +PUMA "WA, 11706" +PUMA "WA, 11801" +PUMA "WA, 11802" +PUMA "WA, 11900" +PUMA "WI, 00100" +PUMA "WI, 00101" +PUMA "WI, 00102" +PUMA "WI, 00103" +PUMA "WI, 00200" +PUMA "WI, 00300" +PUMA "WI, 00600" +PUMA "WI, 00700" +PUMA "WI, 00800" +PUMA "WI, 00900" +PUMA "WI, 01000" +PUMA "WI, 01001" +PUMA "WI, 01300" +PUMA "WI, 01301" +PUMA "WI, 01400" +PUMA "WI, 01401" +PUMA "WI, 01500" +PUMA "WI, 01501" +PUMA "WI, 01600" +PUMA "WI, 01601" +PUMA "WI, 02400" +PUMA "WI, 02500" +PUMA "WI, 10000" +PUMA "WI, 20000" +PUMA "WI, 30000" +PUMA "WI, 40101" +PUMA "WI, 40301" +PUMA "WI, 40701" +PUMA "WI, 41001" +PUMA "WI, 41002" +PUMA "WI, 41003" +PUMA "WI, 41004" +PUMA "WI, 41005" +PUMA "WI, 50000" +PUMA "WI, 55101" +PUMA "WI, 55102" +PUMA "WI, 55103" +PUMA "WI, 70101" +PUMA "WI, 70201" +PUMA "WI, 70301" +PUMA "WV, 00100" +PUMA "WV, 00200" +PUMA "WV, 00300" +PUMA "WV, 00400" +PUMA "WV, 00500" +PUMA "WV, 00600" +PUMA "WV, 00700" +PUMA "WV, 00800" +PUMA "WV, 00900" +PUMA "WV, 01000" +PUMA "WV, 01100" +PUMA "WV, 01200" +PUMA "WV, 01300" +PUMA "WY, 00100" +PUMA "WY, 00200" +PUMA "WY, 00300" +PUMA "WY, 00400" +PUMA "WY, 00500" +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_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_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_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_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_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_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_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_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_period=Jul 1 5 - Jul 31 14 schedules_power_outage_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 roof_radiant_barrier=false roof_radiant_barrier_grade=1 +Radiant Barrier None ResStockArguments roof_radiant_barrier=false roof_radiant_barrier_grade=1 +Radiant Barrier Yes ResStockArguments roof_radiant_barrier=true roof_radiant_barrier_grade=1 +Range Spot Vent Hour Hour0 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=0 +Range Spot Vent Hour Hour1 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=1 +Range Spot Vent Hour Hour10 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=10 +Range Spot Vent Hour Hour11 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=11 +Range Spot Vent Hour Hour12 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=12 +Range Spot Vent Hour Hour13 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=13 +Range Spot Vent Hour Hour14 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=14 +Range Spot Vent Hour Hour15 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=15 +Range Spot Vent Hour Hour16 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=16 +Range Spot Vent Hour Hour17 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=17 +Range Spot Vent Hour Hour18 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=18 +Range Spot Vent Hour Hour19 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=19 +Range Spot Vent Hour Hour2 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=2 +Range Spot Vent Hour Hour20 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=20 +Range Spot Vent Hour Hour21 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=21 +Range Spot Vent Hour Hour22 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=22 +Range Spot Vent Hour Hour23 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=23 +Range Spot Vent Hour Hour3 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=3 +Range Spot Vent Hour Hour4 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=4 +Range Spot Vent Hour Hour5 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=5 +Range Spot Vent Hour Hour6 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=6 +Range Spot Vent Hour Hour7 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=7 +Range Spot Vent Hour Hour8 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=8 +Range Spot Vent Hour Hour9 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=9 +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 +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_period=Jan 1 - Dec 31 +Vintage 1940s ResStockArguments vintage=1940s +Vintage 1950s ResStockArguments vintage=1950s +Vintage 1960s ResStockArguments vintage=1960s +Vintage 1970s ResStockArguments vintage=1970s +Vintage 1980s ResStockArguments vintage=1980s +Vintage 1990s ResStockArguments vintage=1990s +Vintage 2000s ResStockArguments vintage=2000s +Vintage 2010s ResStockArguments vintage=2010s +Vintage <1940 ResStockArguments vintage=<1940 +Vintage <1950 ResStockArguments vintage=<1950 +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" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=2.3 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_units_served=1 +Water Heater Efficiency "Electric Heat Pump, 50 gal, 140F" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=2.3 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_units_served=1 +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_units_served=1 +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_units_served=1 +Water Heater Efficiency "Electric Heat Pump, 80 gal" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=80 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=2.3 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_units_served=1 +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_units_served=1 +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_units_served=1 +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_units_served=1 +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_units_served=1 +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_units_served=1 +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_units_served=1 +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_units_served=1 +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_units_served=1 +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_units_served=1 +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_units_served=1 +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_units_served=1 +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_units_served=1 +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_units_served=1 +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_units_served=1 +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_units_served=1 +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_units_served=1 +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_units_served=1 +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 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 None +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 +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 +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 +Windows "Double, Clear, Non-metal, Air" ResStockArguments window_ufactor=0.49 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 +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 +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 +Windows "Double, Clear, Thermal-Break, Air" ResStockArguments window_ufactor=0.63 window_shgc=0.62 skylight_ufactor=0.37 skylight_shgc=0.3 +Windows "Double, Low-E, H-Gain" ResStockArguments window_ufactor=0.29 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 +Windows "Double, Low-E, L-Gain" ResStockArguments window_ufactor=0.26 window_shgc=0.31 skylight_ufactor=0.37 skylight_shgc=0.3 +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 +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 +Windows "Single, Clear, Metal" ResStockArguments window_ufactor=1.16 window_shgc=0.76 skylight_ufactor=0.37 skylight_shgc=0.3 +Windows "Single, Clear, Metal, Exterior Clear Storm" ResStockArguments window_ufactor=0.67 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 +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 +Windows "Single, Clear, Non-metal" ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 +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 +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 +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 +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 +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 +Windows No Windows ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 +Windows Void From 38b138a194c27677b221ce0b975a2e146883a2bf Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 14 Nov 2023 15:40:47 -0700 Subject: [PATCH 3/5] Force add the new schedule_files folder. --- resources/data/schedule_files/battery.csv | 8761 +++++++++++++++++++++ 1 file changed, 8761 insertions(+) create mode 100644 resources/data/schedule_files/battery.csv diff --git a/resources/data/schedule_files/battery.csv b/resources/data/schedule_files/battery.csv new file mode 100644 index 0000000000..579731f431 --- /dev/null +++ b/resources/data/schedule_files/battery.csv @@ -0,0 +1,8761 @@ +battery +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 From 843951b410a7bbda93a72bc62e195ab6ffbdf25c Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 29 Jul 2024 11:59:31 -0700 Subject: [PATCH 4/5] Add other detailed schedule arguments to ignore list. --- measures/ResStockArguments/measure.xml | 6 +++--- measures/ResStockArguments/resources/constants.rb | 5 ++++- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/measures/ResStockArguments/measure.xml b/measures/ResStockArguments/measure.xml index 49c8524843..eb23f0ae53 100644 --- a/measures/ResStockArguments/measure.xml +++ b/measures/ResStockArguments/measure.xml @@ -3,8 +3,8 @@ 3.1 res_stock_arguments c984bb9e-4ac4-4930-a399-9d23f8f6936a - 3320bae9-0eb8-490b-b2be-5dc6ccd3387e - 2024-07-29T18:06:14Z + 8ab67d90-9696-4641-9fce-4d573631981c + 2024-07-29T18:58:04Z 2C38F48B ResStockArguments ResStock Arguments @@ -7573,7 +7573,7 @@ constants.rb rb resource - 21A87806 + FA535657 resstock_arguments_test.rb diff --git a/measures/ResStockArguments/resources/constants.rb b/measures/ResStockArguments/resources/constants.rb index f6c9348fb9..8527e44a2c 100644 --- a/measures/ResStockArguments/resources/constants.rb +++ b/measures/ResStockArguments/resources/constants.rb @@ -90,7 +90,10 @@ def self.build_residential_schedule_file_excludes def self.other_excludes # these are ResStockArguments that haven't made their way into options_lookup.tsv yet - return ['heating_system_actual_cfm_per_ton', + return ['heating_setpoint_schedule', + 'cooling_setpoint_schedule', + 'water_heater_setpoint_schedule', + 'heating_system_actual_cfm_per_ton', 'heating_system_rated_cfm_per_ton'] end From 444ca87466f9c511580336335a838f13256e5717 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 29 Jul 2024 13:03:47 -0700 Subject: [PATCH 5/5] Refactor assignment of schedule arguments. --- measures/ResStockArguments/measure.rb | 25 ++++++------------------- measures/ResStockArguments/measure.xml | 6 +++--- 2 files changed, 9 insertions(+), 22 deletions(-) diff --git a/measures/ResStockArguments/measure.rb b/measures/ResStockArguments/measure.rb index c041e79d26..eb168d9a9d 100644 --- a/measures/ResStockArguments/measure.rb +++ b/measures/ResStockArguments/measure.rb @@ -788,27 +788,14 @@ def run(model, runner, user_arguments) # Detailed Schedules schedules_filepaths = [] + schedules_filepaths << args[:heating_setpoint_schedule] if !args[:heating_setpoint_schedule].nil? + schedules_filepaths << args[:cooling_setpoint_schedule] if !args[:cooling_setpoint_schedule].nil? + schedules_filepaths << args[:water_heater_setpoint_schedule] if !args[:water_heater_setpoint_schedule].nil? + schedules_filepaths << args[:battery_schedule] if !args[:battery_schedule].nil? - if args[:heating_setpoint_schedule].is_initialized - schedules_filepaths << args[:heating_setpoint_schedule].get - end - - if args[:cooling_setpoint_schedule].is_initialized - schedules_filepaths << args[:cooling_setpoint_schedule].get - end - - if args[:water_heater_setpoint_schedule].is_initialized - schedules_filepaths << args[:water_heater_setpoint_schedule].get - end - - if args[:battery_schedule].is_initialized - schedules_filepaths << args[:battery_schedule].get - end - - if !schedules_filepaths.empty? - args[:schedules_filepaths] = schedules_filepaths.join(',') - end + args[:schedules_filepaths] = schedules_filepaths.join(',') if !schedules_filepaths.empty? + # Register argument values args.each do |arg_name, arg_value| if args_to_delete.include?(arg_name) || (arg_value == Constants.Auto) arg_value = '' # don't assign these to BuildResidentialHPXML or BuildResidentialScheduleFile diff --git a/measures/ResStockArguments/measure.xml b/measures/ResStockArguments/measure.xml index eb23f0ae53..19180a1242 100644 --- a/measures/ResStockArguments/measure.xml +++ b/measures/ResStockArguments/measure.xml @@ -3,8 +3,8 @@ 3.1 res_stock_arguments c984bb9e-4ac4-4930-a399-9d23f8f6936a - 8ab67d90-9696-4641-9fce-4d573631981c - 2024-07-29T18:58:04Z + 19e97c83-7910-4d84-a170-af3324a7358f + 2024-07-29T20:03:25Z 2C38F48B ResStockArguments ResStock Arguments @@ -7567,7 +7567,7 @@ measure.rb rb script - E0588B94 + 9C9DB5D4 constants.rb