openstudio-standards 0.8.3 → 0.8.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (87) hide show
  1. checksums.yaml +4 -4
  2. data/lib/openstudio-standards/btap/costing/README.md +502 -0
  3. data/lib/openstudio-standards/btap/costing/btap_costing.rb +473 -0
  4. data/lib/openstudio-standards/btap/costing/btap_measure_helper.rb +359 -0
  5. data/lib/openstudio-standards/btap/costing/btap_workflow.rb +117 -0
  6. data/lib/openstudio-standards/btap/costing/common_paths.rb +78 -0
  7. data/lib/openstudio-standards/btap/costing/common_resources/ConstructionProperties.csv +52 -0
  8. data/lib/openstudio-standards/btap/costing/common_resources/Constructions.csv +37 -0
  9. data/lib/openstudio-standards/btap/costing/common_resources/construction_sets.csv +1270 -0
  10. data/lib/openstudio-standards/btap/costing/common_resources/constructions_glazing.csv +61 -0
  11. data/lib/openstudio-standards/btap/costing/common_resources/constructions_opaque.csv +2256 -0
  12. data/lib/openstudio-standards/btap/costing/common_resources/costs.csv +1904 -0
  13. data/lib/openstudio-standards/btap/costing/common_resources/costs_local_factors.csv +2315 -0
  14. data/lib/openstudio-standards/btap/costing/common_resources/hvac_vent_ahu.csv +925 -0
  15. data/lib/openstudio-standards/btap/costing/common_resources/lighting.csv +364 -0
  16. data/lib/openstudio-standards/btap/costing/common_resources/lighting_sets.csv +2667 -0
  17. data/lib/openstudio-standards/btap/costing/common_resources/locations.csv +75 -0
  18. data/lib/openstudio-standards/btap/costing/common_resources/materials_glazing.csv +35 -0
  19. data/lib/openstudio-standards/btap/costing/common_resources/materials_hvac.csv +1699 -0
  20. data/lib/openstudio-standards/btap/costing/common_resources/materials_lighting.csv +267 -0
  21. data/lib/openstudio-standards/btap/costing/common_resources/materials_opaque.csv +164 -0
  22. data/lib/openstudio-standards/btap/costing/copy_test_results_files_to_expected_results.rb +11 -0
  23. data/lib/openstudio-standards/btap/costing/cost_building_from_file.rb +136 -0
  24. data/lib/openstudio-standards/btap/costing/costing_database_wrapper.rb +177 -0
  25. data/lib/openstudio-standards/btap/costing/daylighting_sensor_control_costing.rb +353 -0
  26. data/lib/openstudio-standards/btap/costing/dcv_costing.rb +314 -0
  27. data/lib/openstudio-standards/btap/costing/dummy.epw +8768 -0
  28. data/lib/openstudio-standards/btap/costing/dummy.osm +5320 -0
  29. data/lib/openstudio-standards/btap/costing/envelope_costing.rb +284 -0
  30. data/lib/openstudio-standards/btap/costing/heating_cooling_costing.rb +2584 -0
  31. data/lib/openstudio-standards/btap/costing/led_lighting_costing.rb +155 -0
  32. data/lib/openstudio-standards/btap/costing/lighting_costing.rb +209 -0
  33. data/lib/openstudio-standards/btap/costing/mech_sizing.json +502 -0
  34. data/lib/openstudio-standards/btap/costing/neb_end_use_prices.csv +42 -0
  35. data/lib/openstudio-standards/btap/costing/necb_2011_spacetype_info.csv +225 -0
  36. data/lib/openstudio-standards/btap/costing/necb_reference_runs.csv +28705 -0
  37. data/lib/openstudio-standards/btap/costing/nv_costing.rb +547 -0
  38. data/lib/openstudio-standards/btap/costing/parallel_tests.rb +92 -0
  39. data/lib/openstudio-standards/btap/costing/pv_ground_costing.rb +687 -0
  40. data/lib/openstudio-standards/btap/costing/shw_costing.rb +705 -0
  41. data/lib/openstudio-standards/btap/costing/test_list.txt +17 -0
  42. data/lib/openstudio-standards/btap/costing/test_run_all_test_locally.rb +26 -0
  43. data/lib/openstudio-standards/btap/costing/test_run_costing_tests.rb +80 -0
  44. data/lib/openstudio-standards/btap/costing/ventilation_costing.rb +2616 -0
  45. data/lib/openstudio-standards/constructions/modify.rb +2 -1
  46. data/lib/openstudio-standards/standards/Standards.Model.rb +39 -9
  47. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.Model.rb +2 -2
  48. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_csv/ashrae_90_1_prm.UserData.rb +6 -1
  49. data/lib/openstudio-standards/standards/necb/BTAPPRE1980/btap_pre1980.rb +2 -27
  50. data/lib/openstudio-standards/standards/necb/BTAPPRE1980/hvac_system_3_and_8_single_speed.rb +68 -27
  51. data/lib/openstudio-standards/standards/necb/BTAPPRE1980/hvac_system_4.rb +64 -25
  52. data/lib/openstudio-standards/standards/necb/BTAPPRE1980/hvac_system_6.rb +9 -14
  53. data/lib/openstudio-standards/standards/necb/ECMS/hvac_systems.rb +46 -20
  54. data/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb +635 -248
  55. data/lib/openstudio-standards/standards/necb/NECB2011/data/constants.json +43 -7
  56. data/lib/openstudio-standards/standards/necb/NECB2011/data/fuel_type_sets.json +7 -1
  57. data/lib/openstudio-standards/standards/necb/NECB2011/data/geometry/HighriseApartmentMult.osm +14272 -0
  58. data/lib/openstudio-standards/standards/necb/NECB2011/data/necb_2015_table_c1.json +1 -1
  59. data/lib/openstudio-standards/standards/necb/NECB2011/data/space_types.json +437 -437
  60. data/lib/openstudio-standards/standards/necb/NECB2011/data/systems.json +516 -0
  61. data/lib/openstudio-standards/standards/necb/NECB2011/data/systems_including_sys5.json +588 -0
  62. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_namer.rb +489 -0
  63. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_1_single_speed.rb +16 -6
  64. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_2_and_5.rb +48 -5
  65. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_3_and_8_multi_speed.rb +2 -2
  66. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_3_and_8_single_speed.rb +35 -27
  67. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_4.rb +34 -23
  68. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_6.rb +8 -6
  69. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_systems.rb +42 -13
  70. data/lib/openstudio-standards/standards/necb/NECB2011/necb_2011.rb +214 -25
  71. data/lib/openstudio-standards/standards/necb/NECB2011/system_fuels.rb +61 -1
  72. data/lib/openstudio-standards/standards/necb/NECB2015/data/space_types.json +636 -636
  73. data/lib/openstudio-standards/standards/necb/NECB2015/data/unitary_acs.json +38 -38
  74. data/lib/openstudio-standards/standards/necb/NECB2015/hvac_systems.rb +15 -6
  75. data/lib/openstudio-standards/standards/necb/NECB2017/data/space_types.json +636 -636
  76. data/lib/openstudio-standards/standards/necb/NECB2020/data/chillers.json +71 -71
  77. data/lib/openstudio-standards/standards/necb/README.md +343 -0
  78. data/lib/openstudio-standards/standards/necb/common/btap_data.rb +190 -28
  79. data/lib/openstudio-standards/standards/necb/common/btap_datapoint.rb +14 -5
  80. data/lib/openstudio-standards/standards/necb/common/eccc_electric_grid_intensity_20250311.csv +14 -0
  81. data/lib/openstudio-standards/standards/necb/common/nir_gas_grid_intensity_20250311.csv +14 -0
  82. data/lib/openstudio-standards/standards/necb/common/system_types.yaml +0 -0
  83. data/lib/openstudio-standards/utilities/logging.rb +18 -14
  84. data/lib/openstudio-standards/version.rb +1 -1
  85. data/lib/openstudio-standards/weather/modify.rb +2 -2
  86. data/lib/openstudio-standards.rb +12 -0
  87. metadata +53 -2
@@ -0,0 +1,1699 @@
1
+ material_id,Material,description,Size,Fuel,source,type,id,unit,province_state,city,year,material_cost,labour_cost,equipment_cost,material_op_factor,labour_op_factor,equipment_op_factor,comments,material_mult,labour_mult
2
+ 1,GasLine,"Gas Line tubing with lightning protection 3/4""",0.75,,rs-means,Unit,170391,L.F.,,,,,,,,,,,1,1
3
+ 2,GasLine,"Gas line fitting connection, flexible manifold with 4 ports (3/4 "" x 1/2"" x 1/2"" (4))",4,,rs-means,Unit,170392,each,,,,,,,,,,,1,1
4
+ 3,OilLine,"Oil line with lightning protection 1""",1,,rs-means,Unit,170391,L.F.,,,,,,,,,,,1,1
5
+ 4,OilLine,Oil filter 32 gph,32,,rs-means,Unit,170393,each,,,,,,,,,,,1,1
6
+ 5,OilTanks,"Double steel wall above ground storage tank includig cradles, 2000 gallon (US) capacity",2000,,rs-means,Unit,170394,each,,,,,,,,,,,1,1
7
+ 6,OilTanks,"Underground storage tank, steel, sti-P3, set in place, single wall, 1,000 gal cap, 7 ga. shell, excl. hold-down bars, excavation, pad pumps & piping",1000,,rs-means,Unit,170395,each,,,,,,,,,,,1,1
8
+ 7,OilTanks,"Storage tank, horizontal, steel, above ground, single wall, 550 gallon, incl. cradles, coating & fittings, excl. foundation, pumps or piping",550,,rs-means,Unit,170396,each,,,,,,,,,,,1,1
9
+ 8,OilTanks,Oil pump and motor 27 gph 1/3,27,,rs-means,Unit,170397,each,,,,,,,,,,,1,1
10
+ 9,Valves,"Valves, brass, gas cocks, threaded, 3/4""",0.75,,rs-means,Unit,170398,each,,,,,,,,,,,1,1
11
+ 10,ValvesGate,"Valves, bronze, gate, non-rising stem, soldered, 125 psi, 1-1/4""",1.25,,rs-means,Unit,170399,each,,,,,,,,,,,1,1
12
+ 11,ValvesGate,"Valves, bronze, gate, non-rising stem, soldered, 125 psi, 1-1/2""",1.5,,rs-means,Unit,170400,each,,,,,,,,,,,1,1
13
+ 12,ValvesGate,"Valves, bronze, gate, non-rising stem, threaded, class 150, 3/4""",0.75,,rs-means,Unit,170401,each,,,,,,,,,,,1,1
14
+ 13,ValvesGate,"Valves, bronze, gate, non-rising stem, threaded, class 150, 1""",1,,rs-means,Unit,170402,each,,,,,,,,,,,1,1
15
+ 14,ValvesGate,"Valves, bronze, gate, non-rising stem, threaded, class 150, 1-1/4""",1.25,,rs-means,Unit,170403,each,,,,,,,,,,,1,1
16
+ 15,ValvesGate,"Valves, bronze, gate, non-rising stem, threaded, class 150, 2""",2,,rs-means,Unit,170404,each,,,,,,,,,,,1,1
17
+ 16,ValvesPressure,"Valves, bronze, relief, pressure & temperature, self-closing, threaded, 3/4"", ASME",0.75,,rs-means,Unit,170405,each,,,,,,,,,,,1,1
18
+ 17,ValvesBFly,"Valves, iron body, butterfly, wafer type, lever actuator, 200 lb., 2""",2,,rs-means,Unit,170406,each,,,,,,,,,,,1,1
19
+ 18,ValvesBFly,"Valves, iron body, butterfly, wafer type, lever actuator, 200 lb., 2-1/2""",2.5,,rs-means,Unit,170407,each,,,,,,,,,,,1,1
20
+ 19,ValvesBFly,"Valves, iron body, butterfly, wafer type, lever actuator, 200 lb., 4""",4,,rs-means,Unit,170408,each,,,,,,,,,,,1,1
21
+ 20,ValvesBig,"Valves, iron body, gate, non-rising stem, flanged, 125 lb., 2""",2,,rs-means,Unit,170409,each,,,,,,,,,,,1,1
22
+ 21,ValvesBig,"Valves, iron body, gate, non-rising stem, flanged, 125 lb., 2-1/2""",2.5,,rs-means,Unit,170410,each,,,,,,,,,,,1,1
23
+ 22,ValvesBig,"Valves, iron body, gate, non-rising stem, flanged, 125 lb., 4""",4,,rs-means,Unit,170411,each,,,,,,,,,,,1,1
24
+ 23,ValvesBig,"Valves, cast iron body, multipurpose, functions as a shut off, balancing, check and metering valve, threaded, 2"" size",,,rs-means,Unit,170412,each,,,,,,,,,,,1,1
25
+ 24,PipeInsulationsilica,"Insulation, pipe covering (price copper tube one size less than I.P.S.), calcium silicate, 1"" wall, 1"" iron pipe size, includes 8 oz. canvas cover",1,,rs-means,Unit,170413,L.F.,,,,,,,,,,,1,1
26
+ 25,PipeInsulationsilica,"Insulation, pipe covering (price copper tube one size less than I.P.S.), calcium silicate, 1"" wall, 1-1/4"" iron pipe size, includes 8 oz. canvas cover",1.25,,rs-means,Unit,170414,L.F.,,,,,,,,,,,1,1
27
+ 26,PipeInsulationsilica,"Insulation, pipe covering (price copper tube one size less than I.P.S.), calcium silicate, 1"" wall, 1-1/2"" iron pipe size, includes 8 oz. canvas cover",1.6,,rs-means,Unit,170415,L.F.,,,,,,,,,,,1,1
28
+ 27,PipeInsulationsilica,"Insulation, pipe covering (price copper tube one size less than I.P.S.), calcium silicate, 1"" wall, 3"" iron pipe size, includes 8 oz. canvas cover",3,,rs-means,Unit,170416,L.F.,,,,,,,,,,,1,1
29
+ 28,PipeInsulation,"Insulation, pipe covering (price copper tube one size less than I.P.S.), fiberglass with all service jacket, 1"" wall, 3/4"" iron pipe size",0.75,,rs-means,Unit,170417,L.F.,,,,,,,,,,,1,1
30
+ 29,PipeInsulation,"Insulation, pipe covering (price copper tube one size less than I.P.S.), fiberglass with all service jacket, 1"" wall, 1"" iron pipe size",1,,rs-means,Unit,170418,L.F.,,,,,,,,,,,1,1
31
+ 30,PipeInsulation,"Insulation, pipe covering (price copper tube one size less than I.P.S.), fiberglass with all service jacket, 1"" wall, 1-1/4"" iron pipe size",1.25,,rs-means,Unit,170419,L.F.,,,,,,,,,,,1,1
32
+ 31,PipeInsulation,"Insulation, pipe covering (price copper tube one size less than I.P.S.), fiberglass with all service jacket, 1"" wall, 1-1/2"" iron pipe size",1.5,,rs-means,Unit,170420,L.F.,,,,,,,,,,,1,1
33
+ 32,PipeInsulation,"Insulation, pipe covering (price copper tube one size less than I.P.S.), fiberglass with all service jacket, 1"" wall, 2"" iron pipe size",2,,rs-means,Unit,170421,L.F.,,,,,,,,,,,1,1
34
+ 33,PipeInsulation,"Insulation, pipe covering (price copper tube one size less than I.P.S.), fiberglass with all service jacket, 1"" wall, 2-1/2"" iron pipe size",2.5,,rs-means,Unit,170422,L.F.,,,,,,,,,,,1,1
35
+ 34,PipeInsulation,"Insulation, pipe covering (price copper tube one size less than I.P.S.), fiberglass with all service jacket, 1-1/2"" wall, 2-1/2"" iron pipe size",2.5,,rs-means,Unit,170423,L.F.,,,,,,,,,,,1,1
36
+ 35,PipeInsulation,"Insulation, pipe covering (price copper tube one size less than I.P.S.), fiberglass with all service jacket, 1-1/2"" wall, 4"" iron pipe size",4,,rs-means,Unit,170424,L.F.,,,,,,,,,,,1,1
37
+ 36,PipeJacket,"Insulation, pipe covering (price copper tube one size less than I.P.S.), finishes, .016"" thick, for aluminum jacket, add",4,,rs-means,Unit,170425,L.F.,,,,,,,,,,,1,1
38
+ 37,CopperPipe,"Pipe, copper, tubing, solder, 3/4"" diameter, type L, includes coupling & clevis hanger assembly 10' O.C.",0.75,,rs-means,Unit,170426,L.F.,,,,,,,,,,,1,1
39
+ 38,CopperPipe,"Pipe, copper, tubing, solder, 1"" diameter, type L, includes coupling & clevis hanger assembly 10' O.C.",1,,rs-means,Unit,170427,L.F.,,,,,,,,,,,1,1
40
+ 39,CopperPipe,"Pipe, copper, tubing, solder, 1-1/4"" diameter, type L, includes coupling & clevis hanger assembly 10' O.C.",1.25,,rs-means,Unit,170428,L.F.,,,,,,,,,,,1,1
41
+ 40,CopperPipe,"Pipe, copper, tubing, solder, 1-1/2"" diameter, type L, includes coupling & clevis hanger assembly 10' O.C.",1.5,,rs-means,Unit,170429,L.F.,,,,,,,,,,,1,1
42
+ 41,CopperPipe,"Pipe, copper, tubing, solder, 2"" diameter, type L, includes coupling & clevis hanger assembly 10' O.C.",2,,rs-means,Unit,170430,L.F.,,,,,,,,,,,1,1
43
+ 42,CopperPipe,"Pipe, copper, tubing, solder, 2.5"" diameter, type L, includes coupling & clevis hanger assembly 10' O.C.",2.5,,rs-means,Unit,170431,each,,,,,,,,,,,1,1
44
+ 43,PipeAssem,"Pipe, sub assemblies used in assembly systems, chilled water unit, coil connections, per unit, under 10 ton",37.120000000000005,,rs-means,Unit,170432,each,,,,,,,,,,,1,1
45
+ 44,PipeAssem,"Pipe, sub assemblies used in assembly systems, chilled water unit, coil connections, per unit, 10 ton and up",37.123712,,rs-means,Unit,170433,each,,,,,,,,,,,1,1
46
+ 45,PipeDistribAssem,"Pipe, sub assemblies used in assembly systems, chilled water distribution piping, per ton, less than 61 ton systems",,,rs-means,Unit,170434,each,,,,,,,,,,,1,1
47
+ 46,CopperPipeElbow,"Elbow, 90 Deg., copper, wrought, copper x copper, 3/4""",0.75,,rs-means,Unit,170435,each,,,,,,,,,,,1,1
48
+ 47,CopperPipeElbow,"Elbow, 90 Deg., copper, wrought, copper x copper, 1""",1,,rs-means,Unit,170436,each,,,,,,,,,,,1,1
49
+ 48,CopperPipeElbow,"Elbow, 90 Deg., copper, wrought, copper x copper, 1-1/4""",1.25,,rs-means,Unit,170437,each,,,,,,,,,,,1,1
50
+ 49,CopperPipeElbow,"Elbow, 90 Deg., copper, wrought, copper x copper, 1-1/2""",1.5,,rs-means,Unit,170438,each,,,,,,,,,,,1,1
51
+ 50,CopperPipeElbow,"Elbow, 90 Deg., copper, wrought, copper x copper, 2""",2,,rs-means,Unit,170439,each,,,,,,,,,,,1,1
52
+ 51,CopperPipeElbow,"Elbow, 90 Deg., copper, wrought, copper x copper, 2-1/2""",2.5,,rs-means,Unit,170440,each,,,,,,,,,,,1,1
53
+ 52,CopperPipeTee,"Tee, copper, wrought, copper x copper, 3/4""",0.75,,rs-means,Unit,170441,each,,,,,,,,,,,1,1
54
+ 53,CopperPipeTee,"Tee, copper, wrought, copper x copper, 1""",1,,rs-means,Unit,170442,each,,,,,,,,,,,1,1
55
+ 54,CopperPipeTee,"Tee, copper, wrought, copper x copper, 1-1/4""",1.25,,rs-means,Unit,170443,each,,,,,,,,,,,1,1
56
+ 55,CopperPipeTee,"Tee, copper, wrought, copper x copper, 1-1/2""",1.5,,rs-means,Unit,170444,each,,,,,,,,,,,1,1
57
+ 56,CopperPipeTee,"Tee, copper, wrought, copper x copper, 2""",2,,rs-means,Unit,170445,each,,,,,,,,,,,1,1
58
+ 57,CopperPipeTee,"Tee, copper, wrought, copper x copper, 2-1/2""",2.5,,rs-means,Unit,170446,each,,,,,,,,,,,1,1
59
+ 58,CopperPipeUnion,"Union, copper, cast, copper x copper, 3/4""",0.75,,rs-means,Unit,170447,each,,,,,,,,,,,1,1
60
+ 59,CopperPipeUnion,"Union, copper, cast, copper x copper, 1""",1,,rs-means,Unit,170448,each,,,,,,,,,,,1,1
61
+ 60,CopperPipeUnion,"Union, copper, cast, copper x copper, 1-1/4""",1.25,,rs-means,Unit,170449,each,,,,,,,,,,,1,1
62
+ 61,CopperPipeUnion,"Union, copper, cast, copper x copper, 1-1/2""",1.5,,rs-means,Unit,170450,each,,,,,,,,,,,1,1
63
+ 62,CopperPipeUnion,"Union, copper, cast, copper x copper, 2""",2,,rs-means,Unit,170451,each,,,,,,,,,,,1,1
64
+ 63,CopperPipeUnion,"Union, copper, cast, copper x copper, 2-1/2""",2.5,,rs-means,Unit,170452,each,,,,,,,,,,,1,1
65
+ 64,CopperAdapter,"Adapter, copper, wrought, copper x male I.P.S., 3/4""",0.75,,rs-means,Unit,170453,each,,,,,,,,,,,1,1
66
+ 65,CopperAdapter,"Adapter, copper, wrought, copper x male I.P.S., 1""",1,,rs-means,Unit,170454,each,,,,,,,,,,,1,1
67
+ 66,CopperAdapter,"Adapter, copper, wrought, copper x male I.P.S., 1-1/4""",1.25,,rs-means,Unit,170455,each,,,,,,,,,,,1,1
68
+ 67,CopperAdapter,"Adapter, copper, wrought, copper x male I.P.S., 1-1/2""",1.5,,rs-means,Unit,170456,each,,,,,,,,,,,1,1
69
+ 68,CopperAdapter,"Adapter, copper, wrought, copper x male I.P.S., 2""",2,,rs-means,Unit,170457,each,,,,,,,,,,,1,1
70
+ 69,CopperAdapter,"Adapter, copper, wrought, copper x male I.P.S., 2-1/2""",2.5,,rs-means,Unit,170458,each,,,,,,,,,,,1,1
71
+ 70,SteelPipe,"Pipe, steel, black, threaded, 1/2"" diameter, schedule 40, Spec. A-53, includes coupling and clevis hanger assembly sized for covering, 10' OC",0.5,,rs-means,Unit,170459,L.F.,,,,,,,,,,,1,1
72
+ 71,SteelPipe,"Pipe, steel, black, threaded, 3/4"" diameter, schedule 40, Spec. A-53, includes coupling and clevis hanger assembly sized for covering, 10' OC",0.75,,rs-means,Unit,170460,L.F.,,,,,,,,,,,1,1
73
+ 72,SteelPipe,"Pipe, steel, black, threaded, 1"" diameter, schedule 40, Spec. A-53, includes coupling and clevis hanger assembly sized for covering, 10' OC",1,,rs-means,Unit,170461,L.F.,,,,,,,,,,,1,1
74
+ 73,SteelPipe,"Pipe, steel, black, threaded, 1-1/4"" diameter, schedule 40, Spec. A-53, includes coupling and clevis hanger assembly sized for covering, 10' OC",1.25,,rs-means,Unit,170462,L.F.,,,,,,,,,,,1,1
75
+ 74,SteelPipe,"Pipe, steel, black, threaded, 1-1/2"" diameter, schedule 40, Spec. A-53, includes coupling and clevis hanger assembly sized for covering, 10' OC",1.5,,rs-means,Unit,170463,L.F.,,,,,,,,,,,1,1
76
+ 75,SteelPipe,"Pipe, steel, black, threaded, 2"" diameter, schedule 40, Spec. A-53, includes coupling and clevis hanger assembly sized for covering, 10' OC",2,,rs-means,Unit,170464,L.F.,,,,,,,,,,,1,1
77
+ 76,SteelPipe,"Pipe, steel, black, welded, 2-1/2"" diameter, schedule 40, Spec. A-53, includes yoke & roll hanger assembly, sized for covering, 10' OC",2.5,,rs-means,Unit,170465,L.F.,,,,,,,,,,,1,1
78
+ 77,SteelPipe,"Pipe, steel, black, welded, 3"" diameter, schedule 40, Spec. A-53, includes yoke & roll hanger assembly, sized for covering, 10'",3,,rs-means,Unit,170466,L.F.,,,,,,,,,,,1,1
79
+ 78,SteelPipe,"Pipe, steel, black, welded, 4"" diameter, schedule 40, Spec. A-53, includes yoke & roll hanger assembly, sized for covering, 10' OC",4,,rs-means,Unit,170467,L.F.,,,,,,,,,,,1,1
80
+ 79,SteelPipeElbow,"Elbow, 90 Deg., steel, malleable iron, black, straight, threaded, 150 lb., 1/2""",0.5,,rs-means,Unit,170468,each,,,,,,,,,,,1,1
81
+ 80,SteelPipeElbow,"Elbow, 90 Deg., steel, malleable iron, black, straight, threaded, 150 lb., 3/4""",0.75,,rs-means,Unit,170469,each,,,,,,,,,,,1,1
82
+ 81,SteelPipeElbow,"Elbow, 90 Deg., steel, malleable iron, black, straight, threaded, 150 lb., 1""",1,,rs-means,Unit,170470,each,,,,,,,,,,,1,1
83
+ 82,SteelPipeElbow,"Elbow, 90 Deg., steel, malleable iron, black, straight, threaded, 150 lb., 1-1/4""",1.25,,rs-means,Unit,170471,each,,,,,,,,,,,1,1
84
+ 83,SteelPipeElbow,"Elbow, 90 Deg., steel, malleable iron, black, straight, threaded, 150 lb., 1-1/2""",1.5,,rs-means,Unit,170472,each,,,,,,,,,,,1,1
85
+ 84,SteelPipeElbow,"Elbow, 90 Deg., steel, malleable iron, black, straight, threaded, 150 lb., 2""",2,,rs-means,Unit,170473,each,,,,,,,,,,,1,1
86
+ 85,SteelPipeElbow,"Elbow, 90 Deg., steel, malleable iron, black, straight, threaded, 150 lb., 2-1/2""",2.5,,rs-means,Unit,170474,each,,,,,,,,,,,1,1
87
+ 86,SteelPipeTee,"Tee, steel, malleable iron, black, straight, threaded, 150 lb., 3/4""",0.75,,rs-means,Unit,170475,each,,,,,,,,,,,1,1
88
+ 87,SteelPipeTee,"Tee, steel, malleable iron, black, straight, threaded, 150 lb., 1""",1,,rs-means,Unit,170476,each,,,,,,,,,,,1,1
89
+ 88,SteelPipeTee,"Tee, steel, malleable iron, black, straight, threaded, 150 lb., 1-1/4""",1.25,,rs-means,Unit,170477,each,,,,,,,,,,,1,1
90
+ 89,SteelPipeTee,"Tee, steel, malleable iron, black, straight, threaded, 150 lb., 1-1/2""",1.5,,rs-means,Unit,170478,each,,,,,,,,,,,1,1
91
+ 90,SteelPipeTee,"Tee, steel, malleable iron, black, straight, threaded, 150 lb., 2""",2,,rs-means,Unit,170479,each,,,,,,,,,,,1,1
92
+ 91,SteelPipeTee,"Tee, steel, malleable iron, black, straight, threaded, 150 lb., 2-1/2""",2.5,,rs-means,Unit,170480,each,,,,,,,,,,,1,1
93
+ 92,SteelPipeTeeRed,"Tee, steel, malleable iron, black, reducing on the outlet, threaded, 150 lb., 3/4""",0.75,,rs-means,Unit,170481,each,,,,,,,,,,,1,1
94
+ 93,SteelPipeTeeRed,"Tee, steel, malleable iron, black, reducing on the outlet, threaded, 150 lb., 1""",1,,rs-means,Unit,170482,each,,,,,,,,,,,1,1
95
+ 94,SteelPipeTeeRed,"Tee, steel, malleable iron, black, reducing on the outlet, threaded, 150 lb., 2""",2,,rs-means,Unit,170483,each,,,,,,,,,,,1,1
96
+ 95,SteelPipeRed,"Reducer, steel, malleable iron, black, concentric, threaded, 150 lb., 3/4""",0.75,,rs-means,Unit,170484,each,,,,,,,,,,,1,1
97
+ 96,SteelPipeRed,"Reducer, steel, malleable iron, black, concentric, threaded, 150 lb., 1-1/4""",1.25,,rs-means,Unit,170485,each,,,,,,,,,,,1,1
98
+ 97,SteelPipeRed,"Reducer, steel, malleable iron, black, concentric, threaded, 150 lb., 2""",2,,rs-means,Unit,170486,each,,,,,,,,,,,1,1
99
+ 98,SteelPipeCap,"Cap, steel, malleable iron, black, threaded, 150 lb., 3/4""",0.75,,rs-means,Unit,170487,each,,,,,,,,,,,1,1
100
+ 99,SteelPipeUnion,"Union, steel, malleable iron, black, with brass seat, threaded, 150 lb., 3/4""",0.75,,rs-means,Unit,170488,each,,,,,,,,,,,1,1
101
+ 100,SteelPipeUnion,"Union, steel, malleable iron, black, with brass seat, threaded, 150 lb., 1""",1,,rs-means,Unit,170489,each,,,,,,,,,,,1,1
102
+ 101,SteelPipeUnion,"Union, steel, malleable iron, black, with brass seat, threaded, 150 lb., 1-1/4""",1.25,,rs-means,Unit,170490,each,,,,,,,,,,,1,1
103
+ 102,SteelPipeUnion,"Union, steel, malleable iron, black, with brass seat, threaded, 150 lb., 1-1/2""",1.5,,rs-means,Unit,170491,each,,,,,,,,,,,1,1
104
+ 103,SteelPipeUnion,"Union, steel, malleable iron, black, with brass seat, threaded, 150 lb., 2""",2,,rs-means,Unit,170492,each,,,,,,,,,,,1,1
105
+ 104,SteelPipeUnion,"Union, steel, malleable iron, black, with brass seat, threaded, 150 lb., 2-1/2""",2.5,,rs-means,Unit,170493,each,,,,,,,,,,,1,1
106
+ 105,CSteelElbow,"Elbow, 90 Deg., steel, carbon steel, black, long radius, butt weld, standard weight, 2-1/2"" pipe size, includes 1 weld per joint and weld machine",2.5,,rs-means,Unit,170494,each,,,,,,,,,,,1,1
107
+ 106,CSteelElbow,"Elbow, 90 Deg., steel, carbon steel, black, long radius, butt weld, standard weight, 4"" pipe size, includes 1 weld per joint and weld machine",4,,rs-means,Unit,170495,each,,,,,,,,,,,1,1
108
+ 107,CSteelRed,"Reducer, steel, carbon steel, black, eccentric, butt weld, standard weight, 2-1/2"" pipe size, includes 1 weld per joint and weld machine",2.5,,rs-means,Unit,170496,each,,,,,,,,,,,1,1
109
+ 108,CSteelTee,"Tee, steel, carbon steel, black, reducing on the outlet, butt weld, standard weight, 2-1/2"" x 2"" pipe size, includes 1 weld per joint and weld machine",2.5,,rs-means,Unit,170497,each,,,,,,,,,,,1,1
110
+ 109,CSteelNozzle,"Nozzle, steel, T-O-L, weld-on, 1/4"" pipe size, includes 1 weld per joint and weld machine",0.25,,rs-means,Unit,170498,each,,,,,,,,,,,1,1
111
+ 110,CSteelNozzle,"Nozzle, steel, T-O-L, weld-on, 1/2"" pipe size, includes 1 weld per joint and weld machine",0.5,,rs-means,Unit,170499,each,,,,,,,,,,,1,1
112
+ 111,CSteelNozzle,"Nozzle, steel, T-O-L, weld-on, 3/4"" pipe size, includes 1 weld per joint and weld machine",0.75,,rs-means,Unit,170500,each,,,,,,,,,,,1,1
113
+ 112,SteelFlange,"Flange, steel, forged steel, weld neck, 150 lb., 2-1/2"" pipe size, includes 1 weld per joint and weld machine",2.5,,rs-means,Unit,170501,each,,,,,,,,,,,1,1
114
+ 113,SteelFlange,"Flange, steel, forged steel, weld neck, 150 lb., 4"" pipe size, includes 1 weld per joint and weld machine",4,,rs-means,Unit,170502,each,,,,,,,,,,,1,1
115
+ 114,SteelPlug,"Pressure & temperature safety plug, 3/4"" external thread, 3/8"" diameter element, 7-1/2"" insertion, 316 stainless steel",,,rs-means,Unit,170503,each,,,,,,,,,,,1,1
116
+ 115,Strainers,"Strainer, Y type, bronze body, screwed, 125 lb., 3/4"" pipe size",0.75,,rs-means,Unit,170504,each,,,,,,,,,,,1,1
117
+ 116,Strainers,"Strainer, Y type, bronze body, screwed, 125 lb., 1"" pipe size",1,,rs-means,Unit,170505,each,,,,,,,,,,,1,1
118
+ 117,Strainers,"Strainer, Y type, bronze body, screwed, 125 lb., 1-1/4"" pipe size",1.25,,rs-means,Unit,170506,each,,,,,,,,,,,1,1
119
+ 118,Strainers,"Strainer, Y type, bronze body, screwed, 125 lb., 1-1/2"" pipe size",1.5,,rs-means,Unit,170507,each,,,,,,,,,,,1,1
120
+ 119,Strainers,"Strainer, Y type, bronze body, screwed, 125 lb., 2"" pipe size",2,,rs-means,Unit,170508,each,,,,,,,,,,,1,1
121
+ 120,Strainers,"Strainer, Y type, bronze body, flanged, 150 lb., 2-1/2"" pipe size, flanged",2.5,,rs-means,Unit,170509,each,,,,,,,,,,,1,1
122
+ 121,Strainers,"Strainer, Y type, bronze body, flanged, 150 lb., 3"" pipe size, flanged",3,,rs-means,Unit,170510,each,,,,,,,,,,,1,1
123
+ 122,CircuitSetter,"Circuit setter balance valve, bronze body, threaded, 3/4"" pipe size",0.75,,rs-means,Unit,170511,each,,,,,,,,,,,1,1
124
+ 123,CircuitSetter,"Circuit setter balance valve, bronze body, threaded, 1"" pipe size",1,,rs-means,Unit,170512,each,,,,,,,,,,,1,1
125
+ 124,CircuitSetter,"Circuit setter balance valve, bronze body, threaded, 1-1/4"" pipe size",1.25,,rs-means,Unit,170513,each,,,,,,,,,,,1,1
126
+ 125,CircuitSetter,"Circuit setter balance valve, bronze body, threaded, 1-1/2"" pipe size",1.5,,rs-means,Unit,170514,each,,,,,,,,,,,1,1
127
+ 126,CircuitSetter,"Circuit setter balance valve, bronze body, threaded, 2"" pipe size",2,,rs-means,Unit,170515,each,,,,,,,,,,,1,1
128
+ 127,CircuitSetter,"Circuit setter balance valve, bronze body, threaded, 2-1/2"" pipe size",2.5,,rs-means,Unit,170516,each,,,,,,,,,,,1,1
129
+ 128,AirSeparator,"Air control, air separator, micro-bubble type for total air removal, closed loop system, water (hot or chilled), or glycol system, threaded, 2-1/2"" diameter, excludes necessary bladder type tank",,,rs-means,Unit,170517,each,,,,,,,,,,,1,1
130
+ 129,ExpansionTanks,"Expansion joints, bellows type, neoprene cover, flanged spool, 6"" face to face, 2-1/2"" diameter",,,rs-means,Unit,170518,each,,,,,,,,,,,1,1
131
+ 130,ExpansionTanks,"Expansion tanks, steel, liquid expansion, painted, 15 gallon capacity, ASME",15,,rs-means,Unit,170519,each,,,,,,,,,,,1,1
132
+ 131,ExpansionTanks,"Expansion tanks, steel, liquid expansion, painted, 24 gallon capacity, ASME",24,,rs-means,Unit,170520,each,,,,,,,,,,,1,1
133
+ 132,ExpansionTanks,"Expansion tanks, steel, liquid expansion, painted, 60 gallon capacity, ASME",60,,rs-means,Unit,170521,each,,,,,,,,,,,1,1
134
+ 133,ExpansionTanks,"Expansion tanks, steel, liquid expansion, rubber diaphragm, size is acceptable capacity, 61 gallon capacity, ASME",,,rs-means,Unit,170522,each,,,,,,,,,,,1,1
135
+ 134,Balancing,"Balancing, air conditioning equipment, rooftop heating and cooling unit, (Subcontractor's quote including material & labor)",,,rs-means,Unit,170523,each,,,,,,,,,,,1,1
136
+ 135,Balancing,"Balancing, air conditioning equipment, supply, return, exhaust, registers and diffusers, high ceiling, (Subcontractor's quote including material & labor)",,,rs-means,Unit,170524,each,,,,,,,,,,,1,1
137
+ 136,Balancing,"Balancing, air conditioning equipment, supply, return, exhaust, registers and diffusers, variable volume boxes, (Subcontractor's quote including material & labor)",,,rs-means,Unit,170525,each,,,,,,,,,,,1,1
138
+ 137,Balancing,"Balancing, water, cooling tower, (Subcontractor's quote including material & labor)",,,rs-means,Unit,170526,each,,,,,,,,,,,1,1
139
+ 138,Balancing,"Balancing, water, fan coil unit, unit ventilator, (Subcontractor's quote including material & labor)",,,rs-means,Unit,170527,each,,,,,,,,,,,1,1
140
+ 139,Balancing,"Balancing, water, main and duct re-heat coils, (Subcontractor's quote including material & labor)",,,rs-means,Unit,170528,each,,,,,,,,,,,1,1
141
+ 140,Balancing,"Balancing, water, pumps, (Subcontractor's quote including material & labor)",,,rs-means,Unit,170529,each,,,,,,,,,,,1,1
142
+ 141,Balancing,"Balancing, water, unit heater, (Subcontractor's quote including material & labor)",,,rs-means,Unit,170530,each,,,,,,,,,,,1,1
143
+ 142,Controls,"Control components/DDC system, subcontractor's quote incl. material & labor, analog inputs, sensors (average 50' run in 1/2"" EMT), water flow",,,rs-means,Unit,170531,each,,,,,,,,,,,1,1
144
+ 143,Controls,"Pneumatic control system, heating & ventilating, split system, cooling tower, fan cycle, damper control, control system, including water readout in/out at panel",,,rs-means,Unit,170532,each,,,,,,,,,,,1,1
145
+ 144,Controls,"Pneumatic control system, fan coil, heating & cooling valves, 4 pipe control system",,,rs-means,Unit,170533,each,,,,,,,,,,,1,1
146
+ 145,Controls,"Control component, gauges, pressure or vacuum, 3-1/2"" dia. dial",,,rs-means,Unit,170534,each,,,,,,,,,,,1,1
147
+ 146,Controls,"Control component, thermometers, stem type, 9"" case, 8"" stem, 3/4"" NPT",,,rs-means,Unit,170535,each,,,,,,,,,,,1,1
148
+ 147,Controls,"Control component, thermostats, electric, timed, 1 set back",,,rs-means,Unit,170536,each,,,,,,,,,,,1,1
149
+ 148,Controls,"Control component, valves, motor controlled, electric motor actuated, brass, two way, screwed, 3/4"" pipe size, incl. actuator",,,rs-means,Unit,170537,each,,,,,,,,,,,1,1
150
+ 149,Controls,"Control component, valves, motor controlled, electric motor actuated, brass, two way, screwed, 1"" pipe size",,,rs-means,Unit,170538,each,,,,,,,,,,,1,1
151
+ 150,Controls,"Control component, burner solenoid valve, electric motor actuated, brass two way screwed, 2"" pipe size",,,rs-means,Unit,170539,each,,,,,,,,,,,1,1
152
+ 151,Controls,"Control component, burner solenoid valve, brass, three way, screwed, 1-1/2"" pipe size",,,rs-means,Unit,170540,each,,,,,,,,,,,1,1
153
+ 152,Controls,"Control component, burner solenoid valve, iron body, three way, flanged, 2-1/2"" pipe size",,,rs-means,Unit,170541,each,,,,,,,,,,,1,1
154
+ 153,DuctInsulationGrease,"Duct thermal insulation, blanket type, fiberglass, flexible, fire rated for grease ducts, 1-1/2"" thick",1.5,,rs-means,Unit,170542,ft2,,,,,,,,,,,1,1
155
+ 154,DuctInsulation,"Duct thermal insulation, blanket type, fiberglass, flexible, FSK vapor barrier wrap, .75 lb. density, 1-1/2"" thick",1.5,,rs-means,Unit,170543,ft2,,,,,,,,,,,1,1
156
+ 155,Ductwork,"Metal ductwork, fabricated rectangular, galvanized steel, under 200 lb., incl fittings, joints, supports & allow for a flexible connections field sketches, excludes as-built drawings and insulation",199,,rs-means,Unit,170544,lb.,,,,,,,,,,,1,1
157
+ 156,Ductwork,"Metal ductwork, fabricated rectangular, galvanized steel, 200 to 500 lb., incl fittings, joints, supports & allow for a flexible connections field sketches, excludes as-built drawings and insulation",200,,rs-means,Unit,170545,lb.,,,,,,,,,,,1,1
158
+ 157,Ductwork-F,"Rigid fibreglass reinforced plastic, 4 "" diameter",4,,rs-means,Unit,170546,L.F.,,,,,,,,,,,1,1
159
+ 158,Ductwork-F,"Rigid fibreglass reinforced plastic, 6 "" diameter",6,,rs-means,Unit,170547,L.F.,,,,,,,,,,,1,1
160
+ 159,Ductwork-F,"Rigid fibreglass reinforced plastic, 10 "" diameter",10,,rs-means,Unit,170548,L.F.,,,,,,,,,,,1,1
161
+ 160,Ductwork-F,"Rigid fibreglass reinforced plastic, 12 "" diameter",12,,rs-means,Unit,170549,L.F.,,,,,,,,,,,1,1
162
+ 161,Ductwork-P,"Polypropylene ducts, 4"" diameter",4,,rs-means,Unit,170550,L.F.,,,,,,,,,,,1,1
163
+ 162,Ductwork-P,"Polypropylene ducts,6"" diameter",6,,rs-means,Unit,170551,L.F.,,,,,,,,,,,1,1
164
+ 163,Ductwork-P,"Polypropylene ducts, 10"" diameter",10,,rs-means,Unit,170552,L.F.,,,,,,,,,,,1,1
165
+ 164,Ductwork-P,"Polypropylene ducts, 12"" diameter",12,,rs-means,Unit,170553,L.F.,,,,,,,,,,,1,1
166
+ 165,Ductwork-M,"Flexible metal ductwork insulated with 1"" PE jacket 4"" diameter",4,,rs-means,Unit,170554,L.F.,,,,,,,,,,,1,1
167
+ 166,Ductwork-M,"Flexible metal ductwork insulated with 1"" PE jacket 6"" diameter",6,,rs-means,Unit,170555,L.F.,,,,,,,,,,,1,1
168
+ 167,Ductwork-M,"Flexible metal ductwork insulated with 1"" PE jacket 10"" diameter",10,,rs-means,Unit,170556,L.F.,,,,,,,,,,,1,1
169
+ 168,Ductwork-M,"Flexible metal ductwork insulated with 1"" PE jacket 12"" diameter",12,,rs-means,Unit,170557,L.F.,,,,,,,,,,,1,1
170
+ 169,Ductwork-A,"Flexible aluminum ductwork insulated with 1"" PE jacket 4"" diameter",4,,rs-means,Unit,170558,L.F.,,,,,,,,,,,1,1
171
+ 170,Ductwork-A,"Flexible aluminum ductwork insulated with 1"" PE jacket 6"" diameter",6,,rs-means,Unit,170559,L.F.,,,,,,,,,,,1,1
172
+ 171,Ductwork-A,"Flexible aluminum ductwork insulated with 1"" PE jacket 10"" diameter",10,,rs-means,Unit,170560,L.F.,,,,,,,,,,,1,1
173
+ 172,Ductwork-A,"Flexible aluminum ductwork insulated with 1"" PE jacket 12"" diameter",12,,rs-means,Unit,170561,L.F.,,,,,,,,,,,1,1
174
+ 173,DuctworkAccess,"Duct accessories, round damper, butterfly, volume control, 6"" diam., includes lever lock regulator",6,,rs-means,Unit,170562,each,,,,,,,,,,,1,1
175
+ 174,DuctworkAccess,"Duct accessories, round damper, butterfly, volume control, 8"" diam., includes lever lock regulator",8,,rs-means,Unit,170563,each,,,,,,,,,,,1,1
176
+ 175,DuctworkFabric,"Ductwork, flexible coated fiberglass fabric on corrosion resistant metal helix, insulated, P.E. jacket, 1"" thick, 6"" diameter, pressure to 12""(WG) UL-181",6,,rs-means,Unit,170555,ft2,,,,,,,,,,,1,1
177
+ 176,DuctworkFabric,"Ductwork, flexible coated fiberglass fabric on corrosion resistant metal helix, insulated, P.E. jacket, 1"" thick, 8"" diameter, pressure to 12""(WG) UL-181",8,,rs-means,Unit,170564,ft2,,,,,,,,,,,1,1
178
+ 177,DuctworkLiner,"Insulation, ductwork, board type, fiberglass liner, no finish, 3 lb. density, 2"" thick",,,rs-means,Unit,170565,ft2,,,,,,,,,,,1,1
179
+ 178,FansDD-HP,"Fans, direct drive blower with motor 5"" SP, 1045 cfm 1/5 hp",1045,,rs-means,Unit,170566,each,,,,,,,,,,,1,1
180
+ 179,FansDD-HP,"Fans, direct drive blower with motor 5"" SP, 1385 cfm 1/4 hp",1385,,rs-means,Unit,170567,each,,,,,,,,,,,1,1
181
+ 180,FansDD-HP,"Fans, direct drive blower with motor 5"" SP, 1640 cfm 1/3 hp",1640,,rs-means,Unit,170568,each,,,,,,,,,,,1,1
182
+ 181,FansDD-HP,"Fans, direct drive blower with motor 5"" SP, 1760 cfm 1/2 hp",1760,,rs-means,Unit,170569,each,,,,,,,,,,,1,1
183
+ 182,FansDD-LP,"Fans, utility set direct drive steel 1/4""SP 150 cfm 1/8 hp",150,,rs-means,Unit,170570,each,,,,,,,,,,,1,1
184
+ 183,FansDD-LP,"Fans, utility set direct drive steel 1/4""SP 485 cfm 1/6 hp",485,,rs-means,Unit,170571,each,,,,,,,,,,,1,1
185
+ 184,FansDD-LP,"Fans, utility set direct drive steel 1/4""SP 1950 cfm 1/2 hp",1950,,rs-means,Unit,170572,each,,,,,,,,,,,1,1
186
+ 185,FansDD-LP,"Fans, utility set direct drive steel 1/4""SP 2410 cfm 3/4 hp",2410,,rs-means,Unit,170573,each,,,,,,,,,,,1,1
187
+ 186,FansDD-LP,"Fans, utility set direct drive steel 1/4""SP 3328 cfm 1-1/2 hp",3328,,rs-means,Unit,170574,each,,,,,,,,,,,1,1
188
+ 187,FansBelt,"Fans, utility set, belt drive, 3PH, 1/4"" SP, 800 cfm 1/4 hp",800,,rs-means,Unit,170575,each,,,,,,,,,,,1,1
189
+ 188,FansBelt,"Fans, utility set, belt drive, 3PH, 1/4"" SP, 1300 cfm 1/3 hp",1300,,rs-means,Unit,170576,each,,,,,,,,,,,1,1
190
+ 189,FansBelt,"Fans, utility set, belt drive, 3PH, 1/4"" SP, 2000 cfm 1 hp",2000,,rs-means,Unit,170577,each,,,,,,,,,,,1,1
191
+ 190,FansBelt,"Fans, utility set, belt drive, 3PH, 1/4"" SP, 2900 cfm 3/4 hp",2900,,rs-means,Unit,170578,each,,,,,,,,,,,1,1
192
+ 191,FansBelt,"Fans, utility set, belt drive, 3PH, 1/4"" SP, 3600 cfm 3/4 hp",3600,,rs-means,Unit,170579,each,,,,,,,,,,,1,1
193
+ 192,FansBelt,"Fans, utility set, belt drive, 3PH, 1/4"" SP, 4800 cfm 1 hp",4800,,rs-means,Unit,170580,each,,,,,,,,,,,1,1
194
+ 193,FansBelt,"Fans, utility set, belt drive, 3PH, 1/4"" SP, 6700 cfm 1-1/2 hp",6700,,rs-means,Unit,170581,each,,,,,,,,,,,1,1
195
+ 194,FansBelt,"Fans, utility set, belt drive, 3PH, 1/4"" SP, 7500 cfm 2 hp",7500,,rs-means,Unit,170582,each,,,,,,,,,,,1,1
196
+ 195,FansBelt,"Fans, utility set, belt drive, 3PH, 1/4"" SP, 1100 cfm 3 hp",11000,,rs-means,Unit,170583,each,,,,,,,,,,,1,1
197
+ 196,FansBelt,"Fans, utility set, belt drive, 3PH, 1/4"" SP, 13000 cfm 3 hp",13000,,rs-means,Unit,170584,each,,,,,,,,,,,1,1
198
+ 197,FansBelt,"Fans, utility set, belt drive, 3PH, 1/4"" SP, 15000 cfm 5 hp",15000,,rs-means,Unit,170585,each,,,,,,,,,,,1,1
199
+ 198,FansBelt,"Fans, utility set, belt drive, 3PH, 1/4"" SP, 17000 cfm 7-1/2 hp",17000,,rs-means,Unit,170586,each,,,,,,,,,,,1,1
200
+ 199,FansBelt,"Fans, utility set, belt drive, 3PH, 1/4"" SP, 20000 cfm 7-1/2 hp",20000,,rs-means,Unit,170587,each,,,,,,,,,,,1,1
201
+ 200,Fans,"Fans, centrifugal, airfoil, motor and drive complete, 1000CFM, 1/2 H.P.",1000,,rs-means,Unit,170588,each,,,,,,,,,,,1,1
202
+ 201,Fans,"Fans, centrifugal, airfoil, motor and drive complete, 2000 CFM, 1 H.P.",2000,,rs-means,Unit,170589,each,,,,,,,,,,,1,1
203
+ 202,Fans,"Fans, centrifugal, airfoil, motor and drive complete, 4000 CFM, 3 H.P.",4000,,rs-means,Unit,170590,each,,,,,,,,,,,1,1
204
+ 203,Fans,"Fans, centrifugal, airfoil, motor and drive complete, 8000 CFM, 7-1/2 H.P.",8000,,rs-means,Unit,170591,each,,,,,,,,,,,1,1
205
+ 204,FansFume,"Fans, centrifugal, airfoil, motor and drive complete, 12,000 CFM, 10 H.P.",12000,,rs-means,Unit,170592,each,,,,,,,,,,,1,1
206
+ 205,FansFume,"Fans, corrosive fume resistant, utility set, centrifugal, V belt drive, motor, 1/4"" S.P., 1200 CFM, 1/4 H.P.",1200,,rs-means,Unit,170593,each,,,,,,,,,,,1,1
207
+ 206,FansFume,"Fans, corrosive fume resistant, utility set, centrifugal, V belt drive, motor, 1/4"" S.P., 1520 CFM, 1/3 H.P.",1520,,rs-means,Unit,170594,each,,,,,,,,,,,1,1
208
+ 207,FansFume,"Fans, corrosive fume resistant, utility set, centrifugal, V belt drive, motor, 1/4"" S.P., 1850 CFM, 1/2 H.P.",1850,,rs-means,Unit,170595,each,,,,,,,,,,,1,1
209
+ 208,FansFume,"Fans, corrosive fume resistant, utility set, centrifugal, V belt drive, motor, 1/4"" S.P., 2180 CFM, 3/4 H.P.",2180,,rs-means,Unit,170596,each,,,,,,,,,,,1,1
210
+ 209,FansFume,"Fans, corrosive fume resistant, utility set, centrifugal, V belt drive, motor, 1/2"" S.P., 3600 CFM, 1 H.P.",3600,,rs-means,Unit,170597,each,,,,,,,,,,,1,1
211
+ 210,FansFume,"Fans, corrosive fume resistant, utility set, centrifugal, V belt drive, motor, 1/2"" S.P., 4250 CFM, 1-1/2 H.P., includes explosionproof motor",4250,,rs-means,Unit,170598,each,,,,,,,,,,,1,1
212
+ 211,FansFume,"Fans, corrosive fume resistant, utility set, centrifugal, V belt drive, motor, 1/2"" S.P., 4800 CFM, 2 H.P.",4800,,rs-means,Unit,170599,each,,,,,,,,,,,1,1
213
+ 212,FansFume,"Fans, corrosive fume resistant, utility set, centrifugal, V belt drive, motor, 1/2"" S.P., 6920 CFM, 5 H.P.",6920,,rs-means,Unit,170600,each,,,,,,,,,,,1,1
214
+ 213,FansFume,"Fans, corrosive fume resistant, utility set, centrifugal, V belt drive, motor, 1/2"" S.P., 7700 CFM, 7-1/2 H.P.",7700,,rs-means,Unit,170601,each,,,,,,,,,,,1,1
215
+ 214,CVMixingBoxes,"Constant Volume, 150-270 cfm with electric motor",270,,rs-means,Unit,170602,each,,,,,,,,,,,1,1
216
+ 215,CVMixingBoxes,"Constant Volume, 270-600 cfm with electric motor",600,,rs-means,Unit,170603,each,,,,,,,,,,,1,1
217
+ 216,CVMixingBoxes,"Constant Volume, 550-1000 cfm with electric motor",1000,,rs-means,Unit,170604,each,,,,,,,,,,,1,1
218
+ 217,CVMixingBoxes,"Constant Volume, 1000-1600 cfm with electric motor",1600,,rs-means,Unit,170605,each,,,,,,,,,,,1,1
219
+ 218,CVMixingBoxes,"Constant Volume, 1300-1900 cfm with electric motor",1900,,rs-means,Unit,170606,each,,,,,,,,,,,1,1
220
+ 219,CVMixingBoxes,"Constant Volume, 550-2640 cfm with electric motor",2640,,rs-means,Unit,170607,each,,,,,,,,,,,1,1
221
+ 220,CVMixingBoxes,"Constant Volume, 650-3120 cfm with electric motor",3120,,rs-means,Unit,170608,each,,,,,,,,,,,1,1
222
+ 221,VAVMixingBoxesClg,"VAV, pneumatic, Cooling only, 300-600 cfm includes electric motor",600,,rs-means,Unit,170609,each,,,,,,,,,,,1,1
223
+ 222,VAVMixingBoxesClg,"VAV, pneumatic, Cooling only, 500-1000 cfm includes electric motor",1000,,rs-means,Unit,170610,each,,,,,,,,,,,1,1
224
+ 223,VAVMixingBoxesClg,"VAV, pneumatic, Cooling only, 800-1600 cfm includes electric motor",1600,,rs-means,Unit,170611,each,,,,,,,,,,,1,1
225
+ 224,VAVMixingBoxesClg,"VAV, pneumatic, Cooling only, 1100-2000 cfm includes electric motor",2000,,rs-means,Unit,170612,each,,,,,,,,,,,1,1
226
+ 225,VAVMixingBoxesClg,"VAV, pneumatic, Cooling only, 1500-3000 cfm includes electric motor",3000,,rs-means,Unit,170613,each,,,,,,,,,,,1,1
227
+ 226,VAVMixingBoxesClg,"VAV, pneumatic, Cooling only, 2000-4000 cfm includes electric motor",4000,,rs-means,Unit,170614,each,,,,,,,,,,,1,1
228
+ 227,VAVMixingBoxesHtg,"VAV, pneumatic, HW Coils only, 200 cfm includes electric motor",200,,rs-means,Unit,170615,each,,,,,,,,,,,1,1
229
+ 228,VAVMixingBoxesHtg,"VAV, pneumatic, HW Coils only, 400 cfm includes electric motor",400,,rs-means,Unit,170616,each,,,,,,,,,,,1,1
230
+ 229,VAVMixingBoxesHtg,"VAV, pneumatic, HW Coils only, 600 cfm includes electric motor",600,,rs-means,Unit,170617,each,,,,,,,,,,,1,1
231
+ 230,VAVMixingBoxesHtg,"VAV, pneumatic, HW Coils only, 800 cfm includes electric motor",800,,rs-means,Unit,170618,each,,,,,,,,,,,1,1
232
+ 231,VAVMixingBoxesHtg,"VAV, pneumatic, HW Coils only, 1000 cfm includes electric motor",1000,,rs-means,Unit,170619,each,,,,,,,,,,,1,1
233
+ 232,VAVMixingBoxesHtg,"VAV, pneumatic, HW Coils only, 1250 cfm includes electric motor",1250,,rs-means,Unit,170620,each,,,,,,,,,,,1,1
234
+ 233,VAVMixingBoxesHtg,"VAV, pneumatic, HW Coils only, 1500 cfm includes electric motor",1500,,rs-means,Unit,170621,each,,,,,,,,,,,1,1
235
+ 234,VAVMixingBoxesHtg,"VAV, pneumatic, HW Coils only, 2000 cfm includes electric motor",2000,,rs-means,Unit,170622,each,,,,,,,,,,,1,1
236
+ 235,VAVMixingBoxesHtg,"VAV, pneumatic, HW Coils only, 3000 cfm includes electric motor",3000,,rs-means,Unit,170623,each,,,,,,,,,,,1,1
237
+ 236,VAVFanMixingBoxesClg,"VAV, fan power, Cooling only, 200 cfm includes electric motor",200,,rs-means,Unit,170624,each,,,,,,,,,,,1,1
238
+ 237,VAVFanMixingBoxesClg,"VAV, fan power, Cooling only, 400 cfm includes electric motor",400,,rs-means,Unit,170625,each,,,,,,,,,,,1,1
239
+ 238,VAVFanMixingBoxesClg,"VAV, fan power, Cooling only, 600 cfm includes electric motor",600,,rs-means,Unit,170626,each,,,,,,,,,,,1,1
240
+ 239,VAVFanMixingBoxesClg,"VAV, fan power, Cooling only, 800 cfm includes electric motor",800,,rs-means,Unit,170627,each,,,,,,,,,,,1,1
241
+ 240,VAVFanMixingBoxesClg,"VAV, fan power, Cooling only, 1000 cfm includes electric motor",1000,,rs-means,Unit,170628,each,,,,,,,,,,,1,1
242
+ 241,VAVFanMixingBoxesClg,"VAV, fan power, Cooling only, 1250 cfm includes electric motor",1250,,rs-means,Unit,170629,each,,,,,,,,,,,1,1
243
+ 242,VAVFanMixingBoxesClg,"VAV, fan power, Cooling only, 1500 cfm includes electric motor",1500,,rs-means,Unit,170630,each,,,,,,,,,,,1,1
244
+ 243,VAVFanMixingBoxesClg,"VAV, fan power, Cooling only, 2000 cfm includes electric motor",2000,,rs-means,Unit,170631,each,,,,,,,,,,,1,1
245
+ 244,VAVFanMixingBoxesHtg,"VAV, fan power, HW Coils only, 200 cfm includes electric motor",200,,rs-means,Unit,170632,each,,,,,,,,,,,1,1
246
+ 245,VAVFanMixingBoxesHtg,"VAV, fan power, HW Coils only, 400 cfm includes electric motor",400,,rs-means,Unit,170633,each,,,,,,,,,,,1,1
247
+ 246,VAVFanMixingBoxesHtg,"VAV, fan power, HW Coils only, 600 cfm includes electric motor",600,,rs-means,Unit,170634,each,,,,,,,,,,,1,1
248
+ 247,VAVFanMixingBoxesHtg,"VAV, fan power, HW Coils only, 800 cfm includes electric motor",800,,rs-means,Unit,170635,each,,,,,,,,,,,1,1
249
+ 248,VAVFanMixingBoxesHtg,"VAV, fan power, HW Coils only, 1000 cfm includes electric motor",1000,,rs-means,Unit,170636,each,,,,,,,,,,,1,1
250
+ 249,VAVFanMixingBoxesHtg,"VAV, fan power, HW Coils only, 1250 cfm includes electric motor",1250,,rs-means,Unit,170637,each,,,,,,,,,,,1,1
251
+ 250,VAVFanMixingBoxesHtg,"VAV, fan power, HW Coils only, 1500 cfm includes electric motor",1500,,rs-means,Unit,170638,each,,,,,,,,,,,1,1
252
+ 251,VAVFanMixingBoxesHtg,"VAV, fan power, HW Coils only, 2000 cfm includes electric motor",2000,,rs-means,Unit,170639,each,,,,,,,,,,,1,1
253
+ 253,Diffusers,"Diffuser, aluminum, ceiling, perforated, 24"" x 24"" lay-in panel size, 8"" x 8"", includes opposed blade damper",64,,rs-means,Unit,170640,each,,,,,,,,,,,1,1
254
+ 254,Diffusers,"Diffuser, aluminum, ceiling, T-bar mounting, 24"" x 24"" lay-in frame, 6"" x 6"", includes opposed blade damper",36,,rs-means,Unit,170641,each,,,,,,,,,,,1,1
255
+ 255,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 4"" x 12""",0.25,,rs-means,Unit,170642,each,,,,,,,,,,,1,1
256
+ 256,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 4"" x 24""",0.5,,rs-means,Unit,170643,each,,,,,,,,,,,1,1
257
+ 257,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 4"" x 48""",1,,rs-means,Unit,170644,each,,,,,,,,,,,1,1
258
+ 258,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 4"" x 72""",1.61,,rs-means,Unit,170645,each,,,,,,,,,,,1,1
259
+ 259,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 6"" x 12""",0.4,,rs-means,Unit,170646,each,,,,,,,,,,,1,1
260
+ 260,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 6"" x 24""",0.8,,rs-means,Unit,170647,each,,,,,,,,,,,1,1
261
+ 261,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 6"" x 48""",1.6,,rs-means,Unit,170648,each,,,,,,,,,,,1,1
262
+ 262,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 6"" x 72""",2.4,,rs-means,Unit,170649,each,,,,,,,,,,,1,1
263
+ 263,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 10"" x 12""",0.67,,rs-means,Unit,170650,each,,,,,,,,,,,1,1
264
+ 264,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 10"" x 24""",1.34,,rs-means,Unit,170651,each,,,,,,,,,,,1,1
265
+ 265,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 10"" x 48""",2.68,,rs-means,Unit,170652,each,,,,,,,,,,,1,1
266
+ 266,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 10"" x 72""",4,,rs-means,Unit,170653,each,,,,,,,,,,,1,1
267
+ 267,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 12"" x 12""",0.8,,rs-means,Unit,170654,each,,,,,,,,,,,1,1
268
+ 268,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 12"" x 24""",1.61,,rs-means,Unit,170655,each,,,,,,,,,,,1,1
269
+ 269,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 12"" x 48""",3.22,,rs-means,Unit,170656,each,,,,,,,,,,,1,1
270
+ 270,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 12"" x 72""",4.83,,rs-means,Unit,170657,each,,,,,,,,,,,1,1
271
+ 271,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 16"" x 16""",1.43,,rs-means,Unit,170658,each,,,,,,,,,,,1,1
272
+ 272,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 16"" x 24""",2.14,,rs-means,Unit,170659,each,,,,,,,,,,,1,1
273
+ 273,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 16"" x 48""",4.3,,rs-means,Unit,170660,each,,,,,,,,,,,1,1
274
+ 274,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 16"" x 72""",6.44,,rs-means,Unit,170661,each,,,,,,,,,,,1,1
275
+ 275,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 20"" x 24""",2.68,,rs-means,Unit,170662,each,,,,,,,,,,,1,1
276
+ 276,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 20"" x 48""",5.37,,rs-means,Unit,170663,each,,,,,,,,,,,1,1
277
+ 277,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 20"" x 72""",8,,rs-means,Unit,170664,each,,,,,,,,,,,1,1
278
+ 278,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 24"" x 24""",3.22,,rs-means,Unit,170665,each,,,,,,,,,,,1,1
279
+ 279,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 24"" x 48""",6.44,,rs-means,Unit,170666,each,,,,,,,,,,,1,1
280
+ 280,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 24"" x 72""",9.66,,rs-means,Unit,170667,each,,,,,,,,,,,1,1
281
+ 281,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 30"" x 28""",4.7,,rs-means,Unit,170668,each,,,,,,,,,,,1,1
282
+ 282,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 30"" x 48""",8,,rs-means,Unit,170669,each,,,,,,,,,,,1,1
283
+ 283,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 30"" x 72""",12.1,,rs-means,Unit,170670,each,,,,,,,,,,,1,1
284
+ 284,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 30"" x 84""",14.1,,rs-means,Unit,170671,each,,,,,,,,,,,1,1
285
+ 285,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 34"" x 32""",6.1,,rs-means,Unit,170672,each,,,,,,,,,,,1,1
286
+ 286,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 34"" x 48""",9.12,,rs-means,Unit,170673,each,,,,,,,,,,,1,1
287
+ 287,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 34"" x 72""",13.69,,rs-means,Unit,170674,each,,,,,,,,,,,1,1
288
+ 288,Coils,"Hot Water, DX, or Consensor Coils, copper tubes, aluminum fins 2 rows, 8 fins per inch Size 34"" x 84""",16,,rs-means,Unit,170675,each,,,,,,,,,,,1,1
289
+ 289,AHUCV,"Air handling unit, packaged weatherproof, with cooling/heating coil section, filters, mixing box, constant volume, single zone, 2000 CFM, cooling coils may be chilled water or DX, heating coils may be hot water, steam or electric",2000,,rs-means,Unit,170676,each,,,,,,,,,,,1,1
290
+ 290,AHUCV,"Air handling unit, packaged weatherproof, with cooling/heating coil section, filters, mixing box, constant volume, single zone, 5000 CFM, cooling coils may be chilled water or DX, heating coils may be hot water, steam or electric",5000,,rs-means,Unit,170677,each,,,,,,,,,,,1,1
291
+ 291,AHUCV,"Air handling unit, packaged weatherproof, with cooling/heating coil section, filters, mixing box, constant volume, single zone, 10,000 CFM, cooling coils may be chilled water or DX, heating coils may be hot water, steam or electric",10000,,rs-means,Unit,170678,each,,,,,,,,,,,1,1
292
+ 292,AHUCV,"Air handling unit, packaged weatherproof, with cooling/heating coil section, filters, mixing box, constant volume, single zone, 15,000 CFM, cooling coils may be chilled water or DX, heating coils may be hot water, steam or electric",15000,,rs-means,Unit,170679,each,,,,,,,,,,,1,1
293
+ 293,AHUCV,"Air handling unit, packaged weatherproof, with cooling/heating coil section, filters, mixing box, constant volume, single zone, 20,000 CFM, cooling coils may be chilled water or DX, heating coils may be hot water, steam or electric",20000,,rs-means,Unit,170680,each,,,,,,,,,,,1,1
294
+ 294,AHUCV,"Air handling unit, packaged weatherproof, with cooling/heating coil section, filters, mixing box, constant volume, single zone, 30,000 CFM, cooling coils may be chilled water or DX, heating coils may be hot water, steam or electric",30000,,rs-means,Unit,170681,each,,,,,,,,,,,1,1
295
+ 295,AHUVAV,"Air handling unit, packaged weatherproof, with cooling/heating coil section, filters, mixing box, variable air volume, single zone, 2000 CFM, cooling coils may be chilled water or DX, heating coils may be hot water, steam or electric",2000,,rs-means,Unit,170682,each,,,,,,,,,,,1,1
296
+ 296,AHUVAV,"Air handling unit, packaged weatherproof, with cooling/heating coil section, filters, mixing box, variable air volume, single zone, 5000 CFM, cooling coils may be chilled water or DX, heating coils may be hot water, steam or electric",5000,,rs-means,Unit,170683,each,,,,,,,,,,,1,1
297
+ 297,AHUVAV,"Air handling unit, packaged weatherproof, with cooling/heating coil section, filters, mixing box, variable air volume, single zone, 10,000 CFM, cooling coils may be chilled water or DX, heating coils may be hot water, steam or electric",10000,,rs-means,Unit,170684,each,,,,,,,,,,,1,1
298
+ 298,AHUVAV,"Air handling unit, packaged weatherproof, with cooling/heating coil section, filters, mixing box, variable air volume, single zone, 15,000 CFM, cooling coils may be chilled water or DX, heating coils may be hot water, steam or electric",15000,,rs-means,Unit,170685,each,,,,,,,,,,,1,1
299
+ 299,AHUVAV,"Air handling unit, packaged weatherproof, with cooling/heating coil section, filters, mixing box, variable air volume, single zone, 20,000 CFM, cooling coils may be chilled water or DX, heating coils may be hot water, steam or electric",20000,,rs-means,Unit,170686,each,,,,,,,,,,,1,1
300
+ 300,AHUVAV,"Air handling unit, packaged weatherproof, with cooling/heating coil section, filters, mixing box, variable air volume, single zone, 30,000 CFM, cooling coils may be chilled water or DX, heating coils may be hot water, steam or electric",30000,,rs-means,Unit,170687,each,,,,,,,,,,,1,1
301
+ 301,MUA,"Heating only Gas-Fired Makeup Air Unit, 250 MBTH, includes standard controls, stainless steel heat exchanger ",2000,G,rs-means,Unit,170688,each,,,,,,,,,,,1,1
302
+ 302,MUA,"Heating only Gas-Fired Makeup Air Unit, 250 MBTH, includes standard controls, stainless steel heat exchanger ",3000,G,rs-means,Unit,170688,each,,,,,,,,,,,1,1
303
+ 303,MUA,"Make-up air unit, indirect-fired, rooftop unit, natural gas, gravity vent, stainless steel exchanger, MBH is output, 70Deg.F temperature rise, 400 MBH, includes standard controls",5000,G,rs-means,Unit,170689,each,,,,,,,,,,,1,1
304
+ 304,MUA,"Make-up air unit, indirect-fired, rooftop unit, natural gas, gravity vent, stainless steel exchanger, MBH is output, 70Deg.F temperature rise, 550 MBH, includes standard controls",6000,G,rs-means,Unit,170690,each,,,,,,,,,,,1,1
305
+ 305,MUA,"Make-up air unit, indirect-fired, rooftop unit, natural gas, gravity vent, stainless steel exchanger, MBH is output, 70Deg.F temperature rise, 750 MBH, includes standard controls",8000,G,rs-means,Unit,170691,each,,,,,,,,,,,1,1
306
+ 306,MUA,"Make-up air unit, indirect-fired, rooftop unit, natural gas, gravity vent, stainless steel exchanger, MBH is output, 70Deg.F temperature rise, 1000 MBH, includes standard controls",10000,G,rs-means,Unit,170692,each,,,,,,,,,,,1,1
307
+ 307,MUA,"Make-up air unit, indirect-fired, rooftop unit, natural gas, gravity vent, stainless steel exchanger, MBH is output, 70Deg.F temperature rise, 1750 MBH, includes standard controls",16000,G,rs-means,Unit,170693,each,,,,,,,,,,,1,1
308
+ 308,MUA,"Make-up air unit, indirect-fired, rooftop unit, natural gas, gravity vent, stainless steel exchanger, MBH is output, 70Deg.F temperature rise, 2500 MBH, includes standard controls",24000,G,rs-means,Unit,170694,each,,,,,,,,,,,1,1
309
+ 309,MUA,"Make-up air unit, indirect-fired, rooftop unit, natural gas, gravity vent, stainless steel exchanger, MBH is output, 70Deg.F temperature rise, 3250 MBH, includes standard controls",30000,G,rs-means,Unit,170695,each,,,,,,,,,,,1,1
310
+ 310,MUA,"Make-up air unit, indirect-fired, rooftop unit, natural gas, gravity vent, stainless steel exchanger, MBH is output, 70Deg.F temperature rise, 4000 MBH, includes standard controls",35000,G,rs-means,Unit,170696,each,,,,,,,,,,,1,1
311
+ 311,MUA,"Make-up air unit, indirect-fired, rooftop unit, natural gas, gravity vent, stainless steel exchanger, MBH is output, 70Deg.F temperature rise, 6000 MBH, includes standard controls",40000,G,rs-means,Unit,170697,each,,,,,,,,,,,1,1
312
+ 312,RTU,"Rooftop air conditioner, single zone, electric cool, gas heat, 3 ton cooling, 60 MBH heating, includes, standard controls, curb and economizer",,G,rs-means,Unit,170698,each,,,,,,,,,,,1,1
313
+ 313,RTU,"Rooftop air conditioner, single zone, electric cool, gas heat, 4 ton cooling, 95 MBH heating, includes, standard controls, curb and economizer",,G,rs-means,Unit,170699,each,,,,,,,,,,,1,1
314
+ 314,RTU,"Rooftop air conditioner, single zone, electric cool, gas heat, 5 ton cooling, 112 MBH heating, includes, standard controls, curb and economizer",,G,rs-means,Unit,170700,each,,,,,,,,,,,1,1
315
+ 315,RTU,"Rooftop air conditioner, single zone, electric cool, gas heat SEER 14, 5 ton cooling, 112 MBH heating, includes, standard controls, curb and economizer",,G,rs-means,Unit,170701,each,,,,,,,,,,,1,1
316
+ 316,RTU,"Rooftop air conditioner, single zone, electric cool, gas heat, 6 ton cooling, 140 MBH heating, includes, standard controls, curb and economizer",,G,rs-means,Unit,170702,each,,,,,,,,,,,1,1
317
+ 317,RTU,"Rooftop air conditioner, single zone, electric cool, gas heat, 7.5 ton cooling, 170 MBH heating, includes, standard controls, curb and economizer",,G,rs-means,Unit,170703,each,,,,,,,,,,,1,1
318
+ 318,RTU,"Rooftop air conditioner, single zone, electric cool, gas heat, 10 ton cooling, 200 MBH heating, includes, standard controls, curb and economizer",,G,rs-means,Unit,170704,each,,,,,,,,,,,1,1
319
+ 319,RTU,"Rooftop air conditioner, single zone, electric cool, gas heat, 12.5 ton cooling, 230 MBH heating, includes, standard controls, curb and economizer",,G,rs-means,Unit,170705,each,,,,,,,,,,,1,1
320
+ 320,RTU,"Rooftop air conditioner, single zone, electric cool, gas heat, 15 ton cooling, 270 MBH heating, includes, standard controls, curb and economizer",,G,rs-means,Unit,170706,each,,,,,,,,,,,1,1
321
+ 321,RTU,"Rooftop air conditioner, single zone, electric cool, gas heat, 18 ton cooling, 330 MBH heating, includes, standard controls, curb and economizer",,G,rs-means,Unit,170707,each,,,,,,,,,,,1,1
322
+ 322,RTU,"Rooftop air conditioner, single zone, electric cool, gas heat, 20 ton cooling, 360 MBH heating, includes, standard controls, curb and economizer",,G,rs-means,Unit,170708,each,,,,,,,,,,,1,1
323
+ 323,RTU,"Rooftop air conditioner, single zone, electric cool, gas heat, 25 ton cooling, 450 MBH heating, includes, standard controls, curb and economizer",,G,rs-means,Unit,170709,each,,,,,,,,,,,1,1
324
+ 324,RTU,"Rooftop air conditioner, single zone, electric cool, gas heat, 30 ton cooling, 540 MBH heating, includes, standard controls, curb and economizer",,G,rs-means,Unit,170710,each,,,,,,,,,,,1,1
325
+ 325,RTU,"Rooftop air conditioner, single zone, electric cool, gas heat, 40 ton cooling, 675 MBH heating, includes, standard controls, curb and economizer",,G,rs-means,Unit,170711,each,,,,,,,,,,,1,1
326
+ 326,RTU,"Rooftop air conditioner, single zone, electric cool, gas heat, 50 ton cooling, 810 MBH heating, includes, standard controls, curb and economizer",,G,rs-means,Unit,170712,each,,,,,,,,,,,1,1
327
+ 327,RTU,"Rooftop air conditioner, single zone, electric cool, gas heat, 60 ton cooling, 900 MBH heating, includes, standard controls, curb and economizer",,G,rs-means,Unit,170713,each,,,,,,,,,,,1,1
328
+ 328,RTU,"Rooftop air conditioner, single zone, electric cool, gas heat, 80 ton cooling, 1000 MBH heating, includes, standard controls, curb and economizer",,G,rs-means,Unit,170714,each,,,,,,,,,,,1,1
329
+ 329,RTU,"Rooftop air conditioner, single zone, electric cool, gas heat, 90 ton cooling, 1200 MBH heating, includes, standard controls, curb and economizer",,G,rs-means,Unit,170715,each,,,,,,,,,,,1,1
330
+ 330,RTU,"Rooftop air conditioner, single zone, electric cool, gas heat, 100 ton cooling, 1350 MBH heating, includes, standard controls, curb and economizer",,G,rs-means,Unit,170716,each,,,,,,,,,,,1,1
331
+ 331,RTU,"Rooftop air conditioner, single zone, electric cool, electric heat, 5 Ton, includes, standard controls, curb and economizer",,E,rs-means,Unit,170717,each,,,,,,,,,,,1,1
332
+ 332,RTU,"Rooftop air conditioner, single zone, electric cool, electric heat, 10 ton, includes, standard controls, curb and economizer",,E,rs-means,Unit,170718,each,,,,,,,,,,,1,1
333
+ 333,RTU,"Rooftop air conditioner, single zone, electric cool, electric heat, 15 ton, includes, standard controls, curb and economizer",,E,rs-means,Unit,170719,each,,,,,,,,,,,1,1
334
+ 334,RTU,"Rooftop air conditioner, single zone, electric cool, electric heat, 20 ton, includes, standard controls, curb and economizer",,E,rs-means,Unit,170720,each,,,,,,,,,,,1,1
335
+ 335,RTU,"Rooftop air conditioner, single zone, electric cool, electric heat, 25 ton, includes, standard controls, curb and economizer",,E,rs-means,Unit,170721,each,,,,,,,,,,,1,1
336
+ 336,RTU,"Rooftop air conditioner, single zone, electric cool, electric heat, 30 ton, includes, standard controls, curb and economizer",,E,rs-means,Unit,170722,each,,,,,,,,,,,1,1
337
+ 337,RTU,"Rooftop air conditioner, single zone, electric cool, electric heat, 40 ton, includes, standard controls, curb and economizer",,E,rs-means,Unit,170723,each,,,,,,,,,,,1,1
338
+ 338,RTU,"Rooftop air conditioner, single zone, electric cool, electric heat, 50 ton, includes, standard controls, curb and economizer",,E,rs-means,Unit,170724,each,,,,,,,,,,,1,1
339
+ 339,RTU,"Rooftop air conditioner, single zone, electric cool, electric heat, 60 ton, includes, standard controls, curb and economizer",,E,rs-means,Unit,170725,each,,,,,,,,,,,1,1
340
+ 340,RTU,"Rooftop air conditioner, single zone, electric cool, electric heat, 75 ton, includes, standard controls, curb and economizer",,E,rs-means,Unit,170726,each,,,,,,,,,,,1,1
341
+ 341,RTU,"Rooftop air conditioner, multizone, electric cool, gas heat, 15 ton cooling, 360 MBH heating, includes, standard controls, curb and economizer",,G,rs-means,Unit,170727,each,,,,,,,,,,,1,1
342
+ 342,RTU,"Rooftop air conditioner, multizone, electric cool, gas heat, 25 ton cooling, 450 MBH heating, includes, standard controls, curb and economizer",,G,rs-means,Unit,170728,each,,,,,,,,,,,1,1
343
+ 343,RTU,"Rooftop air conditioner, multizone, electric cool, gas heat, 30 ton cooling, 540 MBH heating, includes, standard controls, curb and economizer",,G,rs-means,Unit,170729,each,,,,,,,,,,,1,1
344
+ 344,RTU,"Rooftop air conditioner, multizone, electric cool, gas heat, 70 ton cooling, 1500 MBH heating, includes, standard controls, curb and economizer",,G,rs-means,Unit,170730,each,,,,,,,,,,,1,1
345
+ 360,RTU,"Rooftop air conditioner, subassembly for assembly systems, duct work per ton for rooftop single zone units",,,rs-means,Unit,170731,each,,,,,,,,,,,1,1
346
+ 361,RTU,"Rooftop air conditioner, subassembly for assembly systems, duct work per ton for split system remote condensing units",,,rs-means,Unit,170732,each,,,,,,,,,,,1,1
347
+ 362,RTU,"Self-contained single package A.C., air cooled, for free blow or duct, packaged with electric heat, constant volume, 10 ton cooling, excludes remote condenser",,,rs-means,Unit,170733,each,,,,,,,,,,,1,1
348
+ 363,Pumps,"Pump, circulating, bronze, heated or chilled water application, in line, flanged joints, 1/4 H.P., 2-1/2"" size",186,,rs-means,Unit,170734,each,,,,,,,,,,,1,1
349
+ 364,Pumps,"Pump, circulating, cast iron, heated or chilled water application, in line, flanged joints, 1/8 H.P., 3/4"" to 1-1/2"" size",94,,rs-means,Unit,170735,each,,,,,,,,,,,1,1
350
+ 365,Pumps,"Pump, circulating, cast iron, high head, bronze impeller, flanged joints, 1 H.P., 2"" size",746,,rs-means,Unit,170736,each,,,,,,,,,,,1,1
351
+ 366,Pumps,"Pump, circulating, cast iron, close coupled, end suction, bronze impeller, flanged joints, 1-1/2 H.P., to 40 GPM, 1-1/2"" size",1119,,rs-means,Unit,170737,each,,,,,,,,,,,1,1
352
+ 367,Pumps,"Pump, circulating, cast iron, close coupled, end suction, bronze impeller, flanged joints, 2 H.P., to 50 GPM, 2"" size",1491,,rs-means,Unit,170738,each,,,,,,,,,,,1,1
353
+ 368,Pumps,"Pump, circulating, cast iron, close coupled, end suction, bronze impeller, flanged joints, 3 H.P., to 90 GPM, 2"" size",2237,,rs-means,Unit,170739,each,,,,,,,,,,,1,1
354
+ 369,Pumps,"Pump, circulating, cast iron, close coupled, end suction, bronze impeller, flanged joints, 3.5 H.P., to 150 GPM, 2-1/2"" size",2610,,rs-means,Unit,170740,each,,,,,,,,,,,1,1
355
+ 370,Pumps,"Pump, circulating, cast iron, close coupled, end suction, bronze impeller, flanged joints, 5 H.P., to 225 GPM, 3"" size",3729,,rs-means,Unit,170741,each,,,,,,,,,,,1,1
356
+ 371,Pumps,"Pump, circulating, cast iron, close coupled, end suction, bronze impeller, flanged joints, 10 H.P., to 350 GPM, 3"" size",7457,,rs-means,Unit,170742,each,,,,,,,,,,,1,1
357
+ 372,Pumps,"Pump, circulating, cast iron, close coupled, end suction, bronze impeller, flanged joints, 7-1/2 H.P., to 350 GPM, 4"" size",5593,,rs-means,Unit,170743,each,,,,,,,,,,,1,1
358
+ 373,Pumps,"Pump, circulating, cast iron, close coupled, end suction, bronze impeller, flanged joints, 10.5 H.P., to 600 GPM, 4"" size",7830,,rs-means,Unit,170744,each,,,,,,,,,,,1,1
359
+ 374,Pumps,"Pump, circulating, cast iron, close coupled, end suction, bronze impeller, flanged joints, 15 HP, to 1000 GPM, 5"" size",11185.5,,rs-means,Unit,170745,each,,,,,,,,,,,1,1
360
+ 375,Pumps,"Pump, circulating, cast iron, close coupled, end suction, bronze impeller, flanged joints, 20 HP to 1350 GPM, 5"" size",14914,,rs-means,Unit,170746,each,,,,,,,,,,,1,1
361
+ 376,Pumps,"Pump, circulating, cast iron, close coupled, end suction, bronze impeller, flanged joints, 25 H.P., to 1550 GPM, 5"" size",18643,,rs-means,Unit,170747,each,,,,,,,,,,,1,1
362
+ 378,CondensatePumps,"Condensate removal system, 115V with 1 gallon ABS tank, 1/50 hp 200 gph (US)",,,rs-means,Unit,170748,each,,,,,,,,,,,1,1
363
+ 379,CondensatePumps,"Condensate removal system, 115V with 1 gallon ABS tank, 1/18 hp 270 gph (US)",,,rs-means,Unit,170749,each,,,,,,,,,,,1,1
364
+ 380,CondensatePumps,"Condensate removal system, 115V with 1 gallon ABS tank, 1/5 hp 450 gph (US)",,,rs-means,Unit,170750,each,,,,,,,,,,,1,1
365
+ 381,CondensatePumps,"Condensate removal system, 230V with 1 gallon ABS tank, 1/5 hp 450 gph (US)",,,rs-means,Unit,170751,each,,,,,,,,,,,1,1
366
+ 382,Venting,"Vent chimney, prefabricated metal, gas, double wall, galvanized steel, 4"" diameter, U.L. listed",4,,rs-means,Unit,170752,LF,,,,,,,,,,,1,1
367
+ 383,Venting,"Vent chimney, prefabricated metal, gas, double wall, galvanized steel, 5"" diameter, U.L. listed",5,,rs-means,Unit,170753,LF,,,,,,,,,,,1,1
368
+ 384,Venting,"Vent chimney, prefabricated metal, gas, double wall, galvanized steel, 6"" diameter, U.L. listed",6,,rs-means,Unit,170754,LF,,,,,,,,,,,1,1
369
+ 385,VentingElbow,"Vent chimney, prefabricated metal, gas, double wall, galvanized steel fitting, elbow, 45 Deg., 4"" diameter, U.L. listed",4,,rs-means,Unit,170755,each,,,,,,,,,,,1,1
370
+ 386,VentingElbow,"Vent chimney, prefabricated metal, gas, double wall, galvanized steel fitting, elbow, 90 Deg., 6"" diameter, U.L. listed",6,,rs-means,Unit,170756,each,,,,,,,,,,,1,1
371
+ 387,VentingFlash,"Vent chimney, prefabricated metal, gas, double wall, galvanized steel fitting, roof flashing, 4"" diameter, U.L. listed",4,,rs-means,Unit,170757,each,,,,,,,,,,,1,1
372
+ 388,VentingFlash,"Vent chimney, prefabricated metal, gas, double wall, galvanized steel fitting, roof flashing, 6"" diameter, U.L. listed",6,,rs-means,Unit,170758,each,,,,,,,,,,,1,1
373
+ 389,VentingTee,"Vent chimney, prefabricated metal, gas, double wall, galvanized steel fitting, tee, 6"" diameter, U.L. listed",6,,rs-means,Unit,170759,each,,,,,,,,,,,1,1
374
+ 390,VentingCap,"Vent chimney, prefabricated metal, gas, double wall, galvanized steel fitting, tee cap, 6"" diameter, U.L. listed",6,,rs-means,Unit,170760,each,,,,,,,,,,,1,1
375
+ 391,VentingTop,"Vent chimney, prefabricated metal, gas, double wall, galvanized steel fitting, top, 4"" diameter, U.L. listed",4,,rs-means,Unit,170761,each,,,,,,,,,,,1,1
376
+ 392,VentingTop,"Vent chimney, prefabricated metal, gas, double wall, galvanized steel fitting, top, 6"" diameter, U.L. listed",6,,rs-means,Unit,170762,each,,,,,,,,,,,1,1
377
+ 393,ElecBoilers,"Boiler, electric, hot water, 7.5 kW, 25.6 MBH, ASME, includes standard controls and trim",7.5,E,rs-means,Unit,170763,each,,,,,,,,,,,1,1
378
+ 394,ElecBoilers,"Boiler, electric, hot water, 15 kW, 51.2 MBH, ASME, includes standard controls and trim",15,E,rs-means,Unit,170764,each,,,,,,,,,,,1,1
379
+ 395,ElecBoilers,"Boiler, electric, hot water, 30 kW, 102 MBH, ASME, includes standard controls and trim",30,E,rs-means,Unit,170765,each,,,,,,,,,,,1,1
380
+ 396,ElecBoilers,"Boiler, electric, hot water, 45 kW, 164 MBH, ASME, includes standard controls and trim",45,E,rs-means,Unit,170766,each,,,,,,,,,,,1,1
381
+ 397,ElecBoilers,"Boiler, electric, hot water, 60 kW, 205 MBH, ASME, includes standard controls and trim",60,E,rs-means,Unit,170767,each,,,,,,,,,,,1,1
382
+ 398,ElecBoilers,"Boiler, electric, hot water, 75 kW, 205 MBH, ASME, includes standard controls and trim",75,E,rs-means,Unit,170768,each,,,,,,,,,,,1,1
383
+ 399,ElecBoilers,"Boiler, electric, hot water, 90 kW, 307 MBH, ASME, includes standard controls and trim",90,E,rs-means,Unit,170769,each,,,,,,,,,,,1,1
384
+ 400,ElecBoilers,"Boiler, electric, hot water, 105 kW, 358 MBH, ASME, includes standard controls and trim",105,E,rs-means,Unit,170770,each,,,,,,,,,,,1,1
385
+ 401,ElecBoilers,"Boiler, electric, hot water, 135 kW, 461 MBH, ASME, includes standard controls and trim",135,E,rs-means,Unit,170771,each,,,,,,,,,,,1,1
386
+ 402,ElecBoilers,"Boiler, electric, hot water, 150 kW, 512 MBH, ASME, includes standard controls and trim",150,E,rs-means,Unit,170772,each,,,,,,,,,,,1,1
387
+ 403,ElecBoilers,"Boiler, electric, hot water, 165 kW, 563 MBH, ASME, includes standard controls and trim",165,E,rs-means,Unit,170773,each,,,,,,,,,,,1,1
388
+ 404,ElecBoilers,"Boiler, electric, hot water, 296 KW, 1010 MBH, ASME, includes standard controls and trim",296,E,rs-means,Unit,170774,each,,,,,,,,,,,1,1
389
+ 405,ElecBoilers,"Boiler, electric, hot water, 370 KW, 1263 MBH, ASME, includes standard controls and trim",370,E,rs-means,Unit,170775,each,,,,,,,,,,,1,1
390
+ 406,ElecBoilers,"Boiler, electric, hot water, 444 KW, 1515 MBH, ASME, includes standard controls and trim",444,E,rs-means,Unit,170776,each,,,,,,,,,,,1,1
391
+ 407,ElecBoilers,"Boiler, electric, hot water, 518 KW, 1768 MBH, ASME, includes standard controls and trim",518,E,rs-means,Unit,170777,each,,,,,,,,,,,1,1
392
+ 408,ElecBoilers,"Boiler, electric, hot water, 592 KW, 2020 MBH, ASME, includes standard controls and trim",592,E,rs-means,Unit,170778,each,,,,,,,,,,,1,1
393
+ 409,ElecBoilers,"Boiler, electric, hot water, 666 KW, 2273 MBH, ASME, includes standard controls and trim",666,E,rs-means,Unit,170779,each,,,,,,,,,,,1,1
394
+ 410,ElecBoilers,"Boiler, electric, hot water, 740 KW, 2526 MBH, ASME, includes standard controls and trim",740,E,rs-means,Unit,170780,each,,,,,,,,,,,1,1
395
+ 411,ElecBoilers,"Boiler, electric, hot water, 814 KW, 2778 MBH, ASME, includes standard controls and trim",814,E,rs-means,Unit,170781,each,,,,,,,,,,,1,1
396
+ 412,ElecBoilers,"Boiler, electric, hot water, 888 KW, 3031 MBH, ASME, includes standard controls and trim",888,E,rs-means,Unit,170782,each,,,,,,,,,,,1,1
397
+ 413,ElecBoilers,"Boiler, electric, hot water, 962 KW, 3283 MBH, ASME, includes standard controls and trim",962,E,rs-means,Unit,170783,each,,,,,,,,,,,1,1
398
+ 414,ElecBoilers,"Boiler, electric, hot water, 1,036 KW, 3536 MBH, ASME, includes standard controls and trim",1036,E,rs-means,Unit,170784,each,,,,,,,,,,,1,1
399
+ 415,ElecBoilers,"Boiler, electric, hot water, 1110 KW, 3788 MBH, ASME, includes standard controls and trim",1110,E,rs-means,Unit,170785,each,,,,,,,,,,,1,1
400
+ 416,ElecBoilers,"Boiler, electric, hot water, 1440 KW, 4915 MBH, ASME, includes standard controls and trim",1440,E,rs-means,Unit,170786,each,,,,,,,,,,,1,1
401
+ 417,ElecBoilers,"Boiler, electric, hot water, 1560 KW, 5323 MBH, ASME, includes standard controls and trim",1560,E,rs-means,Unit,170787,each,,,,,,,,,,,1,1
402
+ 418,ElecBoilers,"Boiler, electric, hot water, 1680 kW, 5733 MBH, ASME, includes standard controls and trim",1680,E,rs-means,Unit,170788,each,,,,,,,,,,,1,1
403
+ 419,ElecBoilers,"Boiler, electric, hot water, 1800 kW, 6143 MBH, ASME, includes standard controls and trim",1800,E,rs-means,Unit,170789,each,,,,,,,,,,,1,1
404
+ 420,ElecBoilers,"Boiler, electric, hot water, 1980 KW, 6757 MBH, ASME, includes standard controls and trim",1980,E,rs-means,Unit,170790,each,,,,,,,,,,,1,1
405
+ 421,ElecBoilers,"Boiler, electric, hot water, 2100 KW, 7167 MBH, ASME, includes standard controls and trim",2100,E,rs-means,Unit,170791,each,,,,,,,,,,,1,1
406
+ 422,ElecBoilers,"Boiler, electric, hot water, 2220 KW, 7576 MBH, ASME, includes standard controls and trim",2220,E,rs-means,Unit,170792,each,,,,,,,,,,,1,1
407
+ 423,ElecBoilers,"Boiler, electric, hot water, 2400 kW, 8191 MBH, ASME, includes standard controls and trim",2400,E,rs-means,Unit,170793,each,,,,,,,,,,,1,1
408
+ 424,ElecBoilers,"Boiler, electric, hot water, 2610 kW, 8905 MBH, ASME, includes standard controls and trim",2610,E,rs-means,Unit,170794,each,,,,,,,,,,,1,1
409
+ 425,ElecBoilers,"Boiler, electric, hot water, 2790 kW, 10133 MBH, ASME, includes standard controls and trim",2790,E,rs-means,Unit,170795,each,,,,,,,,,,,1,1
410
+ 426,ElecBoilers,"Boiler, electric, hot water, 2970 KW, 10133 MBH, ASME, includes standard controls and trim",2970,E,rs-means,Unit,170796,each,,,,,,,,,,,1,1
411
+ 427,ElecBoilers,"Boiler, electric, hot water, 3150 KW, 10748 MBH, ASME, includes standard controls and trim",3150,E,rs-means,Unit,170797,each,,,,,,,,,,,1,1
412
+ 428,ElecBoilers,"Boiler, electric, hot water, 3240 KW, 11055 MBH, ASME, includes standard controls and trim",3240,E,rs-means,Unit,170798,each,,,,,,,,,,,1,1
413
+ 429,ElecBoilers,"Boiler, electric, hot water, 3420 KW, 11669 MBH, ASME, includes standard controls and trim",3420,E,rs-means,Unit,170799,each,,,,,,,,,,,1,1
414
+ 430,ElecBoilers,"Boiler, electric, hot water, 3600 KW, 12,283 MBH, ASME, includes standard controls and trim",3600,E,rs-means,Unit,170800,each,,,,,,,,,,,1,1
415
+ 431,CondensingBoilers,"Condensing boilers, cast iron, gas fired, natural or LP, packaged, high efficiency, DOE MBH output, 42 MBH, (84.0%) AFUE, includes standard controls, circulator, trim",12.3,G,rs-means,Unit,170801,each,,,,,,,,,,,1,1
416
+ 432,CondensingBoilers,"Condensing boilers, cast iron, gas fired, natural or LP, packaged, high efficiency, DOE MBH output, 57 MBH, (84.3%) AFUE, includes standard controls, circulator, trim",16.7,G,rs-means,Unit,170802,each,,,,,,,,,,,1,1
417
+ 433,CondensingBoilers,"Condensing boilers, cast iron, gas fired, natural or LP, packaged, high efficiency, DOE MBH output, 85 MBH, (84.0%) AFUE, includes standard controls, circulator, trim",25,G,rs-means,Unit,170803,each,,,,,,,,,,,1,1
418
+ 434,CondensingBoilers,"Condensing boilers, cast iron, gas fired, natural or LP, packaged, high efficiency, DOE MBH output, 112 MBH, (83.7%) AFUE, includes standard controls, circulator, trim",32.8,G,rs-means,Unit,170804,each,,,,,,,,,,,1,1
419
+ 435,CondensingBoilers,"Condensing boilers, cast iron, gas fired, natural or LP, packaged, high efficiency, DOE MBH output, 140 MBH, (83.3%) AFUE, includes standard controls, circulator, trim",41,G,rs-means,Unit,170805,each,,,,,,,,,,,1,1
420
+ 436,CondensingBoilers,"Condensing boilers, cast iron, gas fired, natural or LP, packaged, high efficiency, DOE MBH output, 167 MBH, (83.0%) AFUE, includes standard controls, circulator, trim",49,G,rs-means,Unit,170806,each,,,,,,,,,,,1,1
421
+ 437,CondensingBoilers,"Condensing boilers, cast iron, gas fired, natural or LP, packaged, high efficiency, DOE MBH output, 194 MBH, (82.7%) AFUE, includes standard controls, circulator, trim",57,G,rs-means,Unit,170807,each,,,,,,,,,,,1,1
422
+ 438,PulseBoilers,"Condensing boilers, special feature gas fired boilers, hot water, pulse combustion, high efficiency, DOE 71 MBH, AFUE 95.2%, includes standard controls, circulator, trim",21,G,rs-means,Unit,170808,each,,,,,,,,,,,1,1
423
+ 439,PulseBoilers,"Condensing boilers, special feature gas fired boilers, hot water, pulse combustion, high efficiency, DOE 94 MBH, AFUE 95.3%, includes standard controls, circulator, trim",27.5,G,rs-means,Unit,170809,each,,,,,,,,,,,1,1
424
+ 440,PulseBoilers,"Condensing boilers, special feature gas fired boilers, hot water, pulse combustion, high efficiency, DOE 139 MBH, AFUE 95.6%, includes standard controls, circulator, trim",41,G,rs-means,Unit,170810,each,,,,,,,,,,,1,1
425
+ 441,PulseBoilers,"Condensing boilers, special feature gas fired boilers, hot water, pulse combustion, high efficiency, DOE 207 MBH, AFUE 95.4%, includes standard controls, circulator, trim",61,G,rs-means,Unit,170811,each,,,,,,,,,,,1,1
426
+ 442,PulseBoilers,"Condensing boilers, special feature gas fired boilers, hot water, pulse combustion, high efficiency, DOE 270 MBH, AFUE 96.4%, includes standard controls, circulator, trim",79,G,rs-means,Unit,170812,each,,,,,,,,,,,1,1
427
+ 443,PulseBoilers,"Condensing boilers, special feature gas fired boilers, hot water, pulse combustion, high efficiency, DOE 365 MBH, AFUE 91.7%, includes standard controls, circulator, trim",107,G,rs-means,Unit,170813,each,,,,,,,,,,,1,1
428
+ 444,GasBoilers,"Boiler, gas fired, natural or propane, cast iron, hot water, gross output, 80 MBH, includes standard controls and insulated jacket, packaged",23.5,G,rs-means,Unit,170814,each,,,,,,,,,,,1,1
429
+ 445,GasBoilers,"Boiler, gas fired, natural or propane, cast iron, hot water, gross output, 100 MBH, includes standard controls and insulated jacket, packaged",29.3,G,rs-means,Unit,170815,each,,,,,,,,,,,1,1
430
+ 446,GasBoilers,"Boiler, gas fired, natural or propane, cast iron, hot water, gross output, 122 MBH, includes standard controls and insulated jacket, packaged",35.8,G,rs-means,Unit,170816,each,,,,,,,,,,,1,1
431
+ 447,GasBoilers,"Boiler, gas fired, natural or propane, cast iron, hot water, gross output, 163 MBH, includes standard controls and insulated jacket, packaged",47.8,G,rs-means,Unit,170817,each,,,,,,,,,,,1,1
432
+ 448,GasBoilers,"Boiler, gas fired, natural or propane, cast iron, hot water, gross output, 203 MBH, includes standard controls and insulated jacket, packaged",59.5,G,rs-means,Unit,170818,each,,,,,,,,,,,1,1
433
+ 449,GasBoilers,"Boiler, gas fired, natural or propane, cast iron, hot water, gross output, 240 MBH, includes standard controls and insulated jacket, packaged",70.4,G,rs-means,Unit,170819,each,,,,,,,,,,,1,1
434
+ 450,GasBoilers,"Boiler, gas fired, natural or propane, cast iron, hot water, gross output, 280 MBH, includes standard controls and insulated jacket, packaged",82,G,rs-means,Unit,170820,each,,,,,,,,,,,1,1
435
+ 451,GasBoilers,"Boiler, gas fired, natural or propane, cast iron, hot water, gross output, 320 MBH, includes standard controls and insulated jacket, packaged",94,G,rs-means,Unit,170821,each,,,,,,,,,,,1,1
436
+ 452,GasBoilers,"Boiler, gas fired, natural or propane, cast iron, hot water, gross output, 360 MBH, includes standard controls and insulated jacket, packaged",106,G,rs-means,Unit,170822,each,,,,,,,,,,,1,1
437
+ 453,GasBoilers,"Boiler, gas fired, natural or propane, cast iron, hot water, gross output, 400 MBH, includes standard controls and insulated jacket, packaged",117.3,G,rs-means,Unit,170823,each,,,,,,,,,,,1,1
438
+ 454,GasBoilers,"Boiler, gas fired, natural or propane, cast iron, hot water, gross output, 440 MBH, includes standard controls and insulated jacket, packaged",129,G,rs-means,Unit,170824,each,,,,,,,,,,,1,1
439
+ 455,GasBoilers,"Boiler, gas fired, natural or propane, cast iron, hot water, gross output, 544 MBH, includes standard controls and insulated jacket, packaged",160,G,rs-means,Unit,170825,each,,,,,,,,,,,1,1
440
+ 456,GasBoilers,"Boiler, gas fired, natural or propane, cast iron, hot water, gross output, 765 MBH, includes standard controls and insulated jacket, packaged",224,G,rs-means,Unit,170826,each,,,,,,,,,,,1,1
441
+ 457,GasBoilers,"Boiler, gas fired, natural or propane, cast iron, hot water, gross output, 1088 MBH, includes standard controls and insulated jacket, packaged",319,G,rs-means,Unit,170827,each,,,,,,,,,,,1,1
442
+ 458,GasBoilers,"Boiler, gas fired, natural or propane, cast iron, hot water, gross output, 1275 MBH, includes standard controls and insulated jacket, packaged",374,G,rs-means,Unit,170828,each,,,,,,,,,,,1,1
443
+ 459,GasBoilers,"Boiler, gas fired, natural or propane, cast iron, hot water, gross output, 1530 MBH, includes standard controls and insulated jacket, packaged",448,G,rs-means,Unit,170829,each,,,,,,,,,,,1,1
444
+ 460,GasBoilers,"Boiler, gas fired, natural or propane, cast iron, hot water, gross output, 2000 MBH, includes standard controls and insulated jacket, packaged",586.5,G,rs-means,Unit,170830,each,,,,,,,,,,,1,1
445
+ 461,GasBoilers,"Boiler, gas fired, natural or propane, cast iron, hot water, gross output, 2312 MBH, includes standard controls and insulated jacket, packaged",678,G,rs-means,Unit,170831,each,,,,,,,,,,,1,1
446
+ 462,GasBoilers,"Boiler, gas fired, natural or propane, cast iron, hot water, gross output, 2856 MBH, includes standard controls and insulated jacket, packaged",840,G,rs-means,Unit,170832,each,,,,,,,,,,,1,1
447
+ 463,GasBoilers,"Boiler, gas fired, natural or propane, cast iron, hot water, gross output, 3264 MBH, includes standard controls and insulated jacket, packaged",957,G,rs-means,Unit,170833,each,,,,,,,,,,,1,1
448
+ 464,GasBoilers,"Boiler, gas fired, natural or propane, cast iron, hot water, gross output, 3996 MBH, includes standard controls and insulated jacket, packaged",1172,G,rs-means,Unit,170834,each,,,,,,,,,,,1,1
449
+ 465,GasBoilers,"Boiler, gas fired, natural or propane, cast iron, hot water, gross output, 4488 MBH, includes standard controls and insulated jacket, packaged",1316,G,rs-means,Unit,170835,each,,,,,,,,,,,1,1
450
+ 466,GasBoilers,"Boiler, gas fired, natural or propane, cast iron, hot water, gross output, 4720 MBH, includes standard controls and insulated jacket, packaged",1384,G,rs-means,Unit,170836,each,,,,,,,,,,,1,1
451
+ 467,GasBoilers,"Boiler, gas fired, natural or propane, cast iron, hot water, gross output, 5520 MBH, includes standard controls and insulated jacket, packaged",1618,G,rs-means,Unit,170837,each,,,,,,,,,,,1,1
452
+ 468,GasBoilers,"Boiler, gas fired, natural or propane, cast iron, hot water, gross output, 6100 MBH, includes standard controls and insulated jacket, packaged",1789,G,rs-means,Unit,170838,each,,,,,,,,,,,1,1
453
+ 469,GasBoilers,"Boiler, gas fired, natural or propane, cast iron, hot water, gross output, 6390 MBH, includes standard controls and insulated jacket, packaged",1874,G,rs-means,Unit,170839,each,,,,,,,,,,,1,1
454
+ 470,GasBoilers,"Boiler, gas fired, natural or propane, cast iron, hot water, gross output, 6680 MBH, includes standard controls and insulated jacket, packaged",1959,G,rs-means,Unit,170840,each,,,,,,,,,,,1,1
455
+ 471,GasBoilers,"Boiler, gas fired, natural or propane, cast iron, hot water, gross output, 6970 MBH, includes standard controls and insulated jacket, packaged",2044,G,rs-means,Unit,170841,each,,,,,,,,,,,1,1
456
+ 472,WoodBoilers,"Boiler solid-fuel, wood/biomass/coal, cast iron, , gross output, 1280 MBH, includes standard controls and insulated flush jacket, packaged",375,W,rs-means,Unit,170842,each,,,,,,,,,,,1,1
457
+ 473,WoodBoilers,"Boiler solid-fuel, wood/biomass/coal, cast iron, , gross output, 1460 MBH, includes standard controls and insulated flush jacket, packaged",428,W,rs-means,Unit,170843,each,,,,,,,,,,,1,1
458
+ 474,WoodBoilers,"Boiler solid-fuel, wood/biomass/coal, cast iron, , gross output, 1640 MBH, includes standard controls and insulated flush jacket, packaged",481,W,rs-means,Unit,170844,each,,,,,,,,,,,1,1
459
+ 475,WoodBoilers,"Boiler solid-fuel, wood/biomass/coal, cast iron, , gross output, 1820 MBH, includes standard controls and insulated flush jacket, packaged",534,W,rs-means,Unit,170845,each,,,,,,,,,,,1,1
460
+ 476,WoodBoilers,"Boiler solid-fuel, wood/biomass/coal, cast iron, , gross output, 2000 MBH, includes standard controls and insulated flush jacket, packaged",586.5,W,rs-means,Unit,170846,each,,,,,,,,,,,1,1
461
+ 477,WoodBoilers,"Boiler solid-fuel, wood/biomass/coal, cast iron, , gross output, 2360 MBH, includes standard controls and insulated flush jacket, packaged",692,W,rs-means,Unit,170847,each,,,,,,,,,,,1,1
462
+ 478,WoodBoilers,"Boiler solid-fuel, wood/biomass/coal, cast iron, , gross output, 2725 MBH, includes standard controls and insulated flush jacket, packaged",800,W,rs-means,Unit,170848,each,,,,,,,,,,,1,1
463
+ 479,WoodBoilers,"Boiler solid-fuel, wood/biomass/coal, cast iron, , gross output, 2950 MBH, includes standard controls and insulated flush jacket, packaged",865,W,rs-means,Unit,170849,each,,,,,,,,,,,1,1
464
+ 480,WoodBoilers,"Boiler solid-fuel, wood/biomass/coal, cast iron, , gross output, 3210 MBH, includes standard controls and insulated flush jacket, packaged",941,W,rs-means,Unit,170850,each,,,,,,,,,,,1,1
465
+ 481,WoodBoilers,"Boiler solid-fuel, wood/biomass/coal, cast iron, , gross output, 3480 MBH, includes standard controls and insulated flush jacket, packaged",1020.5,W,rs-means,Unit,170851,each,,,,,,,,,,,1,1
466
+ 482,WoodBoilers,"Boiler solid-fuel, wood/biomass/coal, cast iron, , gross output, 3745 MBH, includes standard controls and insulated flush jacket, packaged",1098,W,rs-means,Unit,170852,each,,,,,,,,,,,1,1
467
+ 483,WoodBoilers,"Boiler solid-fuel, wood/biomass/coal, cast iron, , gross output, 4000 MBH, includes standard controls and insulated flush jacket, packaged",1173,W,rs-means,Unit,170853,each,,,,,,,,,,,1,1
468
+ 484,WoodBoilers,"Boiler solid-fuel, wood/biomass/coal, cast iron, , gross output, 4200 MBH, includes standard controls and insulated flush jacket, packaged",1232,W,rs-means,Unit,170854,each,,,,,,,,,,,1,1
469
+ 485,WoodBoilers,"Boiler solid-fuel, wood/biomass/coal, cast iron, , gross output, 4400 MBH, includes standard controls and insulated flush jacket, packaged",1290,W,rs-means,Unit,170855,each,,,,,,,,,,,1,1
470
+ 486,WoodBoilers,"Boiler solid-fuel, wood/biomass/coal, cast iron, , gross output, 4600 MBH, includes standard controls and insulated flush jacket, packaged",1349,W,rs-means,Unit,170856,each,,,,,,,,,,,1,1
471
+ 487,OilBoilers,"Boiler, oil fired, burner, steel, hot water, gross output, 103 MBH, includes standard controls and insulated flush jacket",30,O,rs-means,Unit,170857,each,,,,,,,,,,,1,1
472
+ 488,OilBoilers,"Boiler, oil fired, burner, steel, hot water, gross output, 122 MBH, includes standard controls and insulated flush jacket",35,,rs-means,Unit,170858,each,,,,,,,,,,,1,1
473
+ 489,OilBoilers,"Boiler, oil fired, burner, steel, hot water, gross output, 137 MBH, includes standard controls and insulated flush jacket",40,,rs-means,Unit,170859,each,,,,,,,,,,,1,1
474
+ 490,OilBoilers,"Boiler, oil fired, burner, steel, hot water, gross output, 168 MBH, includes standard controls and insulated flush jacket",49,,rs-means,Unit,170860,each,,,,,,,,,,,1,1
475
+ 491,OilBoilers,"Boiler, oil fired, burner, steel, hot water, gross output, 225 MBH, includes standard controls and insulated flush jacket",66,,rs-means,Unit,170861,each,,,,,,,,,,,1,1
476
+ 492,OilBoilers,"Boiler, oil fired, burner, steel, hot water, gross output, 315 MBH, includes standard controls and insulated flush jacket",92,,rs-means,Unit,170862,each,,,,,,,,,,,1,1
477
+ 493,OilBoilers,"Boiler, oil fired, burner, steel, hot water, gross output, 420 MBH, includes standard controls and insulated flush jacket",123,,rs-means,Unit,170863,each,,,,,,,,,,,1,1
478
+ 494,OilBoilers,"Boiler, oil fired, burner, steel, hot water, gross output, 525 MBH, includes standard controls and insulated flush jacket",154,,rs-means,Unit,170864,each,,,,,,,,,,,1,1
479
+ 495,OilBoilers,"Boiler, oil fired, burner, steel, hot water, gross output, 735 MBH, includes standard controls and insulated flush jacket",215.5,,rs-means,Unit,170865,each,,,,,,,,,,,1,1
480
+ 496,OilBoilers,"Boiler, oil fired, burner, steel, hot water, gross output, 1050 MBH, includes standard controls and insulated flush jacket",308,,rs-means,Unit,170866,each,,,,,,,,,,,1,1
481
+ 497,OilBoilers,"Boiler, oil fired, burner, steel, hot water, gross output, 2310 MBH, includes standard controls and insulated flush jacket",677,,rs-means,Unit,170867,each,,,,,,,,,,,1,1
482
+ 498,OilBoilers,"Boiler, oil fired, burner, steel, hot water, gross output, 3150 MBH, includes standard controls and insulated flush jacket",924,,rs-means,Unit,170868,each,,,,,,,,,,,1,1
483
+ 499,OilBoilersWaterTube,"Boiler, packaged water tube, steam or hot water, gross output, #2 oil, 200 MBH",59,,rs-means,Unit,170869,each,,,,,,,,,,,1,1
484
+ 500,OilBoilersWaterTube,"Boiler, packaged water tube, steam or hot water, gross output, #2 oil, 275 MBH",80.6,,rs-means,Unit,170870,each,,,,,,,,,,,1,1
485
+ 501,OilBoilersWaterTube,"Boiler, packaged water tube, steam or hot water, gross output, #2 oil, 360 MBH",105.5,,rs-means,Unit,170871,each,,,,,,,,,,,1,1
486
+ 502,OilBoilersWaterTube,"Boiler, packaged water tube, steam or hot water, gross output, #2 oil, 520 MBH",152.5,,rs-means,Unit,170872,each,,,,,,,,,,,1,1
487
+ 503,OilBoilersWaterTube,"Boiler, packaged water tube, steam or hot water, gross output, #2 oil, 600 MBH",176,,rs-means,Unit,170873,each,,,,,,,,,,,1,1
488
+ 504,OilBoilersWaterTube,"Boiler, packaged water tube, steam or hot water, gross output, #2 oil, 720 MBH",211,,rs-means,Unit,170874,each,,,,,,,,,,,1,1
489
+ 505,OilBoilersWaterTube,"Boiler, packaged water tube, steam or hot water, gross output, #2 oil, 960 MBH",281.5,,rs-means,Unit,170875,each,,,,,,,,,,,1,1
490
+ 506,OilBoilersWaterTube,"Boiler, packaged water tube, steam or hot water, gross output, #2 oil, 1200 MBH",352,,rs-means,Unit,170876,each,,,,,,,,,,,1,1
491
+ 507,OilBoilersWaterTube,"Boiler, packaged water tube, steam or hot water, gross output, #2 oil, 1440 MBH",422,,rs-means,Unit,170877,each,,,,,,,,,,,1,1
492
+ 508,OilBoilersWaterTube,"Boiler, packaged water tube, steam or hot water, gross output, #2 oil, 1600 MBH",469,,rs-means,Unit,170878,each,,,,,,,,,,,1,1
493
+ 509,OilBoilersWaterTube,"Boiler, packaged water tube, steam or hot water, gross output, #2 oil, 1920 MBH",563,,rs-means,Unit,170879,each,,,,,,,,,,,1,1
494
+ 510,OilBoilersWaterTube,"Boiler, packaged water tube, steam or hot water, gross output, #2 oil, 2160 MBH",633,,rs-means,Unit,170880,each,,,,,,,,,,,1,1
495
+ 511,OilBoilersWaterTube,"Boiler, packaged water tube, steam or hot water, gross output, #2 oil, 2400 MBH",704,,rs-means,Unit,170881,each,,,,,,,,,,,1,1
496
+ 512,OilBoilersWaterTube,"Boiler, packaged water tube, steam or hot water, gross output, #2 oil, 3200 MBH",938,,rs-means,Unit,170882,each,,,,,,,,,,,1,1
497
+ 513,OilBoilersWaterTube,"Boiler, packaged water tube, steam or hot water, gross output, #2 oil, 4800 MBH",1408,,rs-means,Unit,170883,each,,,,,,,,,,,1,1
498
+ 514,GasBoilersWaterTube,"Boiler, packaged water tube, gas fired, steam or hot water, gross output, 200 MBH",59,,rs-means,Unit,170884,each,,,,,,,,,,,1,1
499
+ 515,GasBoilersWaterTube,"Boiler, packaged water tube, gas fired, steam or hot water, gross output, 275 MBH",81,,rs-means,Unit,170885,each,,,,,,,,,,,1,1
500
+ 516,GasBoilersWaterTube,"Boiler, packaged water tube, gas fired, steam or hot water, gross output, 360 MBH",105.5,,rs-means,Unit,170886,each,,,,,,,,,,,1,1
501
+ 517,GasBoilersWaterTube,"Boiler, packaged water tube, gas fired, steam or hot water, gross output, 520 MBH",152.5,,rs-means,Unit,170887,each,,,,,,,,,,,1,1
502
+ 518,GasBoilersWaterTube,"Boiler, packaged water tube, gas fired, steam or hot water, gross output, 600 MBH",176,,rs-means,Unit,170888,each,,,,,,,,,,,1,1
503
+ 519,GasBoilersWaterTube,"Boiler, packaged water tube, gas fired, steam or hot water, gross output, 720 MBH",211,,rs-means,Unit,170889,each,,,,,,,,,,,1,1
504
+ 520,GasBoilersWaterTube,"Boiler, packaged water tube, gas fired, steam or hot water, gross output, 960 MBH",281.5,,rs-means,Unit,170890,each,,,,,,,,,,,1,1
505
+ 521,GasBoilersWaterTube,"Boiler, packaged water tube, gas fired, steam or hot water, gross output, 1220 MBH",358,,rs-means,Unit,170891,each,,,,,,,,,,,1,1
506
+ 522,GasBoilersWaterTube,"Boiler, packaged water tube, gas fired, steam or hot water, gross output, 1440 MBH",422,,rs-means,Unit,170892,each,,,,,,,,,,,1,1
507
+ 523,GasBoilersWaterTube,"Boiler, packaged water tube, gas fired, steam or hot water, gross output, 1680 MBH",492,,rs-means,Unit,170893,each,,,,,,,,,,,1,1
508
+ 524,GasBoilersWaterTube,"Boiler, packaged water tube, gas fired, steam or hot water, gross output, 1920 MBH",563,,rs-means,Unit,170894,each,,,,,,,,,,,1,1
509
+ 525,GasBoilersWaterTube,"Boiler, packaged water tube, gas fired, steam or hot water, gross output, 2160 MBH",633,,rs-means,Unit,170895,each,,,,,,,,,,,1,1
510
+ 526,GasBoilersWaterTube,"Boiler, packaged water tube, gas fired, steam or hot water, gross output, 2400 MBH",704,,rs-means,Unit,170896,each,,,,,,,,,,,1,1
511
+ 527,ChemicalFeed,"Shot chemical feeder, by pass, in line mount, 300 PSIG, 1.7 gallon",1.7,,rs-means,Unit,170897,each,,,,,,,,,,,1,1
512
+ 528,ChemicalFeed,"Shot chemical feeder, by pass, floor mount, 300 PSIG, 12 gallon",12,,rs-means,Unit,170898,each,,,,,,,,,,,1,1
513
+ 529,Furnaces,"Furnace, hot air heating, blowers, electric, 34.1 MBH, U.L. listed, includes standard controls, excludes gas, oil or flue piping",10,E,rs-means,Unit,170899,each,,,,,,,,,,,1,1
514
+ 530,Furnaces,"Furnace, hot air heating, blowers, electric, 51.6 MBH, U.L. listed, includes standard controls, excludes gas, oil or flue piping",15,E,rs-means,Unit,170900,each,,,,,,,,,,,1,1
515
+ 531,Furnaces,"Furnace, hot air heating, blowers, electric, 68.3 MBH, U.L. listed, includes standard controls, excludes gas, oil or flue piping",20,E,rs-means,Unit,170901,each,,,,,,,,,,,1,1
516
+ 532,Furnaces,"Furnace, hot air heating, blowers, electric, 85.3 MBH, U.L. listed, includes standard controls, excludes gas, oil or flue piping",25,E,rs-means,Unit,170902,each,,,,,,,,,,,1,1
517
+ 533,FurnaceGas,"Furnace, gas, upflow, direct drive model, intermittent pilot, 45 MBH input, AGA certified, includes standard controls, excludes gas, oil or flue piping",13,G,rs-means,Unit,170903,each,,,,,,,,,,,1,1
518
+ 534,FurnaceGas,"Furnace, gas, upflow, direct drive model, intermittent pilot, 60 MBH input, AGA certified, includes standard controls, excludes gas, oil or flue piping",17.5,G,rs-means,Unit,170904,each,,,,,,,,,,,1,1
519
+ 535,FurnaceGas,"Furnace, gas, upflow, direct drive model, intermittent pilot, 75 MBH input, AGA certified, includes standard controls, excludes gas, oil or flue piping",22,G,rs-means,Unit,170905,each,,,,,,,,,,,1,1
520
+ 536,FurnaceGas,"Furnace, gas, upflow, direct drive model, intermittent pilot, 100 MBH input, AGA certified, includes standard controls, excludes gas, oil or flue piping",29,G,rs-means,Unit,170906,each,,,,,,,,,,,1,1
521
+ 537,FurnaceGas,"Furnace, gas, upflow, direct drive model, intermittent pilot, 125 MBH input, AGA certified, includes standard controls, excludes gas, oil or flue piping",37,G,rs-means,Unit,170907,each,,,,,,,,,,,1,1
522
+ 538,FurnaceGas,"Furnace, gas, upflow, direct drive model, intermittent pilot, 150 MBH input, AGA certified, includes standard controls, excludes gas, oil or flue piping",44,G,rs-means,Unit,170908,each,,,,,,,,,,,1,1
523
+ 539,FurnaceGas,"Furnace, gas, upflow, direct drive model, intermittent pilot, 200 MBH input, AGA certified, includes standard controls, excludes gas, oil or flue piping",59,G,rs-means,Unit,170909,each,,,,,,,,,,,1,1
524
+ 540,FurnaceGas,"Furnace, gas, upflow, direct drive model, intermittent pilot, 300 MBH input, AGA certified, includes standard controls, excludes gas, oil or flue piping",88,G,rs-means,Unit,170910,each,,,,,,,,,,,1,1
525
+ 541,FurnaceGas,"Furnace, gas, upflow, direct drive model, intermittent pilot, 400 MBH input, AGA certified, includes standard controls, excludes gas, oil or flue piping",117,G,rs-means,Unit,170911,each,,,,,,,,,,,1,1
526
+ 542,FurnaceOil,"Furnace, oil, atomizing gun type burner, 56 MBH output, U.L. listed, includes standard controls, excludes oil piping",16.5,O,rs-means,Unit,170912,each,,,,,,,,,,,1,1
527
+ 543,FurnaceOil,"Furnace, oil, atomizing gun type burner, 84 MBH output, U.L. listed, includes standard controls, excludes oil piping",25,O,rs-means,Unit,170913,each,,,,,,,,,,,1,1
528
+ 544,FurnaceOil,"Furnace, oil, atomizing gun type burner, 95 MBH output, U.L. listed, includes standard controls, excludes oil piping",28,O,rs-means,Unit,170914,each,,,,,,,,,,,1,1
529
+ 545,FurnaceOil,"Furnace, oil, atomizing gun type burner, 134 MBH output, U.L. listed, includes standard controls, excludes oil piping",39,O,rs-means,Unit,170915,each,,,,,,,,,,,1,1
530
+ 546,FurnaceOil,"Furnace, oil, atomizing gun type burner, 151 MBH output, U.L. listed, includes standard controls, excludes oil piping",44,O,rs-means,Unit,170916,each,,,,,,,,,,,1,1
531
+ 547,FurnaceOil,"Furnace, oil, atomizing gun type burner, 200 MBH output, U.L. listed, includes standard controls, excludes oil piping",59,O,rs-means,Unit,170917,each,,,,,,,,,,,1,1
532
+ 548,FurnaceOil,"Furnace, oil, atomizing gun type burner, 300 MBH output, U.L. listed, includes standard controls, excludes oil piping",88,O,rs-means,Unit,170918,each,,,,,,,,,,,1,1
533
+ 549,FurnaceOil,"Furnace, oil, atomizing gun type burner, 400 MBH output, U.L. listed, includes standard controls, excludes oil piping",117,O,rs-means,Unit,170919,each,,,,,,,,,,,1,1
534
+ 550,DuctFurGasInt,"Furnace, Duct, interior installation, stainless steel heat exchanger, 100 MBH, includes burner and controls",29,G,rs-means,Unit,170920,each,,,,,,,,,,,1,1
535
+ 551,DuctFurGasInt,"Furnace, Duct, interior installation, stainless steel heat exchanger, 120 MBH, includes burner and controls",35,G,rs-means,Unit,170921,each,,,,,,,,,,,1,1
536
+ 552,DuctFurGasInt,"Furnace, Duct, interior installation, stainless steel heat exchanger, 200 MBH, includes burner and controls",59,G,rs-means,Unit,170922,each,,,,,,,,,,,1,1
537
+ 553,DuctFurGasInt,"Furnace, Duct, interior installation, stainless steel heat exchanger, 240 MBH, includes burner and controls",70,G,rs-means,Unit,170923,each,,,,,,,,,,,1,1
538
+ 554,DuctFurGasInt,"Furnace, Duct, interior installation, stainless steel heat exchanger, 280 MBH, includes burner and controls",82,G,rs-means,Unit,170924,each,,,,,,,,,,,1,1
539
+ 555,DuctFurGasInt,"Furnace, Duct, interior installation, stainless steel heat exchanger, 320 MBH, includes burner and controls",94,G,rs-means,Unit,170925,each,,,,,,,,,,,1,1
540
+ 556,DuctFurGasExt,"Furnace, Duct, Exterior installation, stainless steel heat exchanger, 75 MBH, includes burner, controls and power venter",22,G,rs-means,Unit,170926,each,,,,,,,,,,,1,1
541
+ 557,DuctFurGasExt,"Furnace, Duct, Exterior installation, stainless steel heat exchanger, 94 MBH, includes burner, controls and power venter",27.5,G,rs-means,Unit,170927,each,,,,,,,,,,,1,1
542
+ 558,DuctFurGasExt,"Furnace, Duct, Exterior installation, stainless steel heat exchanger, 120 MBH, includes burner, controls and power venter",35,G,rs-means,Unit,170928,each,,,,,,,,,,,1,1
543
+ 559,DuctFurGasExt,"Furnace, Duct, Exterior installation, stainless steel heat exchanger, 157 MBH, includes burner, controls and power venter",46,G,rs-means,Unit,170929,each,,,,,,,,,,,1,1
544
+ 560,DuctFurGasExt,"Furnace, Duct, Exterior installation, stainless steel heat exchanger, 187 MBH, includes burner, controls and power venter",55,G,rs-means,Unit,170930,each,,,,,,,,,,,1,1
545
+ 561,DuctFurGasExt,"Furnace, Duct, Exterior installation, stainless steel heat exchanger, 225 MBH, includes burner, controls and power venter",66,G,rs-means,Unit,170931,each,,,,,,,,,,,1,1
546
+ 562,DuctFurGasExt,"Furnace, Duct, Exterior installation, stainless steel heat exchanger, 300 MBH, includes burner, controls and power venter",88,G,rs-means,Unit,170932,each,,,,,,,,,,,1,1
547
+ 563,DuctFurGasExt,"Furnace, Duct, Exterior installation, stainless steel heat exchanger, 375 MBH, includes burner, controls and power venter",110,G,rs-means,Unit,170933,each,,,,,,,,,,,1,1
548
+ 564,DuctFurGasExt,"Furnace, Duct, Exterior installation, stainless steel heat exchanger, 450 MBH, includes burner, controls and power venter",132,G,rs-means,Unit,170934,each,,,,,,,,,,,1,1
549
+ 565,DuctFurGasExt,"Furnace, Duct, Exterior installation, stainless steel heat exchanger, 600 MBH, includes burner, controls and power venter",176,G,rs-means,Unit,170935,each,,,,,,,,,,,1,1
550
+ 566,GasHeater,"Space heater, cabinet, grilles, fan, gas fired, suspension mounted, gravity vent, propeller fan, 20 MBH output, includes controls, burner and thermostat, excludes piping",6,G,rs-means,Unit,170936,each,,,,,,,,,,,1,1
551
+ 567,GasHeater,"Space heater, cabinet, grilles, fan, gas fired, suspension mounted, gravity vent, propeller fan, 40 MBH output, includes controls, burner and thermostat, excludes piping",12,G,rs-means,Unit,170937,each,,,,,,,,,,,1,1
552
+ 568,GasHeater,"Space heater, cabinet, grilles, fan, gas fired, suspension mounted, gravity vent, propeller fan, 60 MBH output, includes controls, burner and thermostat, excludes piping",17.5,G,rs-means,Unit,170938,each,,,,,,,,,,,1,1
553
+ 569,GasHeater,"Space heater, cabinet, grilles, fan, gas fired, suspension mounted, gravity vent, propeller fan, 80 MBH output, includes controls, burner and thermostat, excludes piping",24,G,rs-means,Unit,170939,each,,,,,,,,,,,1,1
554
+ 570,GasHeater,"Space heater, cabinet, grilles, fan, gas fired, suspension mounted, gravity vent, propeller fan, 100 MBH output, includes controls, burner and thermostat, excludes piping",29,G,rs-means,Unit,170940,each,,,,,,,,,,,1,1
555
+ 571,GasHeater,"Space heater, cabinet, grilles, fan, gas fired, suspension mounted, gravity vent, propeller fan, 130 MBH output, includes controls, burner and thermostat, excludes piping",38,G,rs-means,Unit,170941,each,,,,,,,,,,,1,1
556
+ 572,GasHeater,"Space heater, cabinet, grilles, fan, gas fired, suspension mounted, gravity vent, propeller fan, 140 MBH output, includes controls, burner and thermostat, excludes piping",41,G,rs-means,Unit,170942,each,,,,,,,,,,,1,1
557
+ 573,GasHeater,"Space heater, cabinet, grilles, fan, gas fired, suspension mounted, gravity vent, propeller fan, 160 MBH output, includes controls, burner and thermostat, excludes piping",47,G,rs-means,Unit,170943,each,,,,,,,,,,,1,1
558
+ 574,GasHeater,"Space heater, cabinet, grilles, fan, gas fired, suspension mounted, gravity vent, propeller fan, 180 MBH output, includes controls, burner and thermostat, excludes piping",53,G,rs-means,Unit,170944,each,,,,,,,,,,,1,1
559
+ 575,GasHeater,"Space heater, cabinet, grilles, fan, gas fired, suspension mounted, gravity vent, propeller fan, 200 MBH output, includes controls, burner and thermostat, excludes piping",59,G,rs-means,Unit,170945,each,,,,,,,,,,,1,1
560
+ 576,GasHeater,"Space heater, cabinet, grilles, fan, gas fired, suspension mounted, gravity vent, propeller fan, 240 MBH output, includes controls, burner and thermostat, excludes piping",70,G,rs-means,Unit,170946,each,,,,,,,,,,,1,1
561
+ 577,GasHeater,"Space heater, cabinet, grilles, fan, gas fired, suspension mounted, gravity vent, propeller fan, 280 MBH output, includes controls, burner and thermostat, excludes piping",82,G,rs-means,Unit,170947,each,,,,,,,,,,,1,1
562
+ 578,GasHeater,"Space heater, cabinet, grilles, fan, gas fired, suspension mounted, gravity vent, propeller fan, 320 MBH output, includes controls, burner and thermostat, excludes piping",94,G,rs-means,Unit,170948,each,,,,,,,,,,,1,1
563
+ 579,RefrigCondensingUnit,"Condensing unit, air cooled, compressor, 1 ton, direct drive, propeller fan, includes standard controls",3.517,,rs-means,Unit,170949,each,,,,,,,,,,,1,1
564
+ 580,RefrigCondensingUnit,"Condensing unit, air cooled, compressor, 1.5 ton, direct drive, propeller fan, includes standard controls",5.2755,,rs-means,Unit,170950,each,,,,,,,,,,,1,1
565
+ 581,RefrigCondensingUnit,"Condensing unit, air cooled, compressor, 2 ton, direct drive, propeller fan, includes standard controls",7.034,,rs-means,Unit,170951,each,,,,,,,,,,,1,1
566
+ 582,RefrigCondensingUnit,"Condensing unit, air cooled, compressor, 3 ton, direct drive, propeller fan, includes standard controls",10.551,,rs-means,Unit,170952,each,,,,,,,,,,,1,1
567
+ 583,RefrigCondensingUnit,"Condensing unit, air cooled, compressor, 5 ton, direct drive, propeller fan, includes standard controls",17.585,,rs-means,Unit,170953,each,,,,,,,,,,,1,1
568
+ 584,RefrigCondensingUnit,"Condensing unit, air cooled, compressor, 8 ton, direct drive, propeller fan, includes standard controls",28.136,,rs-means,Unit,170954,each,,,,,,,,,,,1,1
569
+ 585,RefrigCondensingUnit,"Condensing unit, air cooled, compressor, 10 ton, direct drive, propeller fan, includes standard controls",35.17,,rs-means,Unit,170955,each,,,,,,,,,,,1,1
570
+ 586,RefrigCondensingUnit,"Condensing unit, air cooled, compressor, 12 ton, direct drive, propeller fan, includes standard controls",42.204,,rs-means,Unit,170956,each,,,,,,,,,,,1,1
571
+ 587,RefrigCondensingUnit,"Condensing unit, air cooled, compressor, 14 ton, direct drive, propeller fan, includes standard controls",26.377499999999998,,rs-means,Unit,170957,each,,,,,,,,,,,1,1
572
+ 588,RefrigCondensingUnit,"Condensing unit, air cooled, compressor, 16 ton, direct drive, propeller fan, includes standard controls",49.238,,rs-means,Unit,170958,each,,,,,,,,,,,1,1
573
+ 589,RefrigCondensingUnit,"Condensing unit, air cooled, compressor, 21 ton, direct drive, propeller fan, includes standard controls",73.857,,rs-means,Unit,170959,each,,,,,,,,,,,1,1
574
+ 590,RefrigCondensingUnit,"Condensing unit, air cooled, compressor, 26 ton, direct drive, propeller fan, includes standard controls",91.442,,rs-means,Unit,170960,each,,,,,,,,,,,1,1
575
+ 591,RefrigCondensingUnit,"Condensing unit, air cooled, compressor, 30 ton, direct drive, propeller fan, includes standard controls",105.50999999999999,,rs-means,Unit,170961,each,,,,,,,,,,,1,1
576
+ 592,RefrigCondensingUnit,"Condensing unit, air cooled, compressor, 41 ton, direct drive, propeller fan, includes standard controls",144.197,,rs-means,Unit,170962,each,,,,,,,,,,,1,1
577
+ 593,RefrigCondensingUnit,"Condensing unit, air cooled, compressor, 52 ton, direct drive, propeller fan, includes standard controls",182.884,,rs-means,Unit,170963,each,,,,,,,,,,,1,1
578
+ 594,RefrigCondensingUnit,"Condensing unit, air cooled, compressor, 63 ton, direct drive, propeller fan, includes standard controls",221.571,,rs-means,Unit,170964,each,,,,,,,,,,,1,1
579
+ 595,RefrigCondensingUnit,"Condensing unit, air cooled, compressor, 76 ton, direct drive, propeller fan, includes standard controls",267.292,,rs-means,Unit,170965,each,,,,,,,,,,,1,1
580
+ 596,RefrigCondensingUnit,"Condensing unit, air cooled, compressor, 86 ton, direct drive, propeller fan, includes standard controls",302.462,,rs-means,Unit,170966,each,,,,,,,,,,,1,1
581
+ 597,RefrigCondensingUnit,"Condensing unit, air cooled, compressor, 97 ton, direct drive, propeller fan, includes standard controls",341.149,,rs-means,Unit,170967,each,,,,,,,,,,,1,1
582
+ 598,RefrigCondensingUnit,"Condensing unit, air cooled, compressor, 105 ton, direct drive, propeller fan, includes standard controls",369.28499999999997,,rs-means,Unit,170968,each,,,,,,,,,,,1,1
583
+ 599,RefrigCondensingUnit,"Condensing unit, air cooled, compressor, 118 ton, direct drive, propeller fan, includes standard controls",415.006,,rs-means,Unit,170969,each,,,,,,,,,,,1,1
584
+ 600,RefrigCondensingUnit,"Condensing unit, air cooled, compressor, 126 ton, direct drive, propeller fan, includes standard controls",443.142,,rs-means,Unit,170970,each,,,,,,,,,,,1,1
585
+ 601,WaterCondensingUnit,"Condensing unit, water cooled, compressor, heat exchanger 5 ton, includes standard controls",17.585,,rs-means,Unit,170971,each,,,,,,,,,,,1,1
586
+ 602,WaterCondensingUnit,"Condensing unit, water cooled, compressor, heat exchanger 10 ton, includes standard controls",35.17,,rs-means,Unit,170972,each,,,,,,,,,,,1,1
587
+ 603,WaterCondensingUnit,"Condensing unit, water cooled, compressor, heat exchanger 15 ton, includes standard controls",52.754999999999995,,rs-means,Unit,170973,each,,,,,,,,,,,1,1
588
+ 604,WaterCondensingUnit,"Condensing unit, water cooled, compressor, heat exchanger 20 ton, includes standard controls",70.34,,rs-means,Unit,170974,each,,,,,,,,,,,1,1
589
+ 605,WaterCondensingUnit,"Condensing unit, water cooled, compressor, heat exchanger 30 ton, includes standard controls",105.50999999999999,,rs-means,Unit,170975,each,,,,,,,,,,,1,1
590
+ 606,WaterCondensingUnit,"Condensing unit, water cooled, compressor, heat exchanger 40 ton, includes standard controls",140.68,,rs-means,Unit,170976,each,,,,,,,,,,,1,1
591
+ 607,RefrigCondensingUnit,"Condenser, ratings are for air cooled, belt drive, propeller fan, 50 ton",10.551,,rs-means,Unit,170977,each,,,,,,,,,,,1,1
592
+ 608,RefrigCondensingUnit,"Condenser, ratings are for evaporative, copper coil, pump, fan motor, 30Deg.F temperature difference, 50 ton, R-22",,,rs-means,Unit,170978,each,,,,,,,,,,,1,1
593
+ 609,RefrigCondensingUnit,"Condenser, ratings are for evaporative, copper coil, pump, fan motor, 30Deg.F temperature difference, R-22, for fan damper control, add",,,rs-means,Unit,170979,each,,,,,,,,,,,1,1
594
+ 610,GasAbsChiller,"Absorption water chiller, direct gas fired, water cooled, duplex, 100 ton",351.7,,rs-means,Unit,170980,each,,,,,,,,,,,1,1
595
+ 611,GasAbsChiller,"Absorption water chiller, direct gas fired, water cooled, duplex, 200 ton",703.4,,rs-means,Unit,170981,each,,,,,,,,,,,1,1
596
+ 612,GasAbsChiller,"Absorption water chiller, direct gas fired, water cooled, duplex, 300 ton",1055.1,,rs-means,Unit,170982,each,,,,,,,,,,,1,1
597
+ 613,GasAbsChiller,"Absorption water chiller, direct gas fired, water cooled, duplex, 400 ton",1406.8,,rs-means,Unit,170983,each,,,,,,,,,,,1,1
598
+ 614,GasAbsChiller,"Absorption water chiller, direct gas fired, water cooled, duplex, 500 ton",1758.5,,rs-means,Unit,170984,each,,,,,,,,,,,1,1
599
+ 615,GasAbsChiller,"Absorption water chiller, direct gas fired, water cooled, duplex, 600 ton",2110.2,,rs-means,Unit,170985,each,,,,,,,,,,,1,1
600
+ 616,GasAbsChiller,"Absorption water chiller, direct gas fired, water cooled, duplex, 700 ton",2461.9,,rs-means,Unit,170986,each,,,,,,,,,,,1,1
601
+ 617,GasAbsChiller,"Absorption water chiller, direct gas fired, water cooled, duplex, 800 ton",2813.6,,rs-means,Unit,170987,each,,,,,,,,,,,1,1
602
+ 618,GasAbsChiller,"Absorption water chiller, direct gas fired, water cooled, duplex, 900 ton",3165.2999999999997,,rs-means,Unit,170988,each,,,,,,,,,,,1,1
603
+ 619,GasAbsChiller,"Absorption water chiller, direct gas fired, water cooled, duplex, 1000 ton",3517,,rs-means,Unit,170989,each,,,,,,,,,,,1,1
604
+ 620,HotAbsChiller,"Absorption water chiller, indirect-fired, steam or hot water, water cooled, single stage, 100 ton",351.7,,rs-means,Unit,170990,each,,,,,,,,,,,1,1
605
+ 621,HotAbsChiller,"Absorption water chiller, indirect-fired, steam or hot water, water cooled, single stage, 148 ton",520.516,,rs-means,Unit,170991,each,,,,,,,,,,,1,1
606
+ 622,HotAbsChiller,"Absorption water chiller, indirect-fired, steam or hot water, water cooled, single stage, 200 ton",703.4,,rs-means,Unit,170992,each,,,,,,,,,,,1,1
607
+ 623,HotAbsChiller,"Absorption water chiller, indirect-fired, steam or hot water, water cooled, single stage, 250 ton",879.25,,rs-means,Unit,170993,each,,,,,,,,,,,1,1
608
+ 624,HotAbsChiller,"Absorption water chiller, indirect-fired, steam or hot water, water cooled, single stage, 354 ton",1245.018,,rs-means,Unit,170994,each,,,,,,,,,,,1,1
609
+ 625,HotAbsChiller,"Absorption water chiller, indirect-fired, steam or hot water, water cooled, single stage, 420 ton",1477.1399999999999,,rs-means,Unit,170995,each,,,,,,,,,,,1,1
610
+ 626,HotAbsChiller,"Absorption water chiller, indirect-fired, steam or hot water, water cooled, single stage, 665 ton",2338.805,,rs-means,Unit,170996,each,,,,,,,,,,,1,1
611
+ 627,HotAbsChiller,"Absorption water chiller, indirect-fired, steam or hot water, water cooled, single stage, 750 ton",2637.75,,rs-means,Unit,170997,each,,,,,,,,,,,1,1
612
+ 628,HotAbsChiller,"Absorption water chiller, indirect-fired, steam or hot water, water cooled, single stage, 850 ton",2989.45,,rs-means,Unit,170998,each,,,,,,,,,,,1,1
613
+ 629,HotAbsChiller,"Absorption water chiller, indirect-fired, steam or hot water, water cooled, single stage, 955 ton",3358.735,,rs-means,Unit,170999,each,,,,,,,,,,,1,1
614
+ 630,HotAbsChiller,"Absorption water chiller, indirect-fired, steam or hot water, water cooled, single stage, 1125 ton",3956.625,,rs-means,Unit,171000,each,,,,,,,,,,,1,1
615
+ 631,HotAbsChiller,"Absorption water chiller, indirect-fired, steam or hot water, water cooled, single stage, 1250 ton",4396.25,,rs-means,Unit,171001,each,,,,,,,,,,,1,1
616
+ 632,HotAbsChiller,"Absorption water chiller, indirect-fired, steam or hot water, water cooled, single stage, 1465 ton",5152.405,,rs-means,Unit,171002,each,,,,,,,,,,,1,1
617
+ 633,HotAbsChiller,"Absorption water chiller, indirect-fired, steam or hot water, water cooled, single stage, 1660 ton",5838.22,,rs-means,Unit,171003,each,,,,,,,,,,,1,1
618
+ 634,CentChillerWater,"Water chiller, centrifugal liquid chiller, packaged unit, water cooled, 200 ton, includes standard controls, excludes water tower",703.4,,rs-means,Unit,171004,each,,,,,,,,,,,1,1
619
+ 635,CentChillerWater,"Water chiller, centrifugal liquid chiller, packaged unit, water cooled, 300 ton, includes standard controls, excludes water tower",1055.1,,rs-means,Unit,171005,each,,,,,,,,,,,1,1
620
+ 636,CentChillerWater,"Water chiller, centrifugal liquid chiller, packaged unit, water cooled, 400 ton, includes standard controls, excludes water tower",1406.8,,rs-means,Unit,171006,each,,,,,,,,,,,1,1
621
+ 637,CentChillerWater,"Water chiller, centrifugal liquid chiller, packaged unit, water cooled, 500 ton, includes standard controls, excludes water tower",1758.5,,rs-means,Unit,171007,each,,,,,,,,,,,1,1
622
+ 638,CentChillerWater,"Water chiller, centrifugal liquid chiller, packaged unit, water cooled, 600 ton, includes standard controls, excludes water tower",2110.2,,rs-means,Unit,171008,each,,,,,,,,,,,1,1
623
+ 639,CentChillerWater,"Water chiller, centrifugal liquid chiller, packaged unit, water cooled, 700 ton, includes standard controls, excludes water tower",2461.9,,rs-means,Unit,171009,each,,,,,,,,,,,1,1
624
+ 640,CentChillerWater,"Water chiller, centrifugal liquid chiller, packaged unit, water cooled, 800 ton, includes standard controls, excludes water tower",2813.6,,rs-means,Unit,171010,each,,,,,,,,,,,1,1
625
+ 641,CentChillerWater,"Water chiller, centrifugal liquid chiller, packaged unit, water cooled, 900 ton, includes standard controls, excludes water tower",3165.2999999999997,,rs-means,Unit,171011,each,,,,,,,,,,,1,1
626
+ 642,CentChillerWater,"Water chiller, centrifugal liquid chiller, packaged unit, water cooled, 1000 ton, includes standard controls, excludes water tower",3517,,rs-means,Unit,171012,each,,,,,,,,,,,1,1
627
+ 643,CentChillerWater,"Water chiller, centrifugal liquid chiller, packaged unit, water cooled, 1200 ton, includes standard controls, excludes water tower",4220.4,,rs-means,Unit,171013,each,,,,,,,,,,,1,1
628
+ 644,CentChillerWater,"Water chiller, centrifugal liquid chiller, packaged unit, water cooled, 1500 ton, includes standard controls, excludes water tower",5275.5,,rs-means,Unit,171014,each,,,,,,,,,,,1,1
629
+ 645,CentChillerWater,"Water chiller, centrifugal liquid chiller, packaged unit, water cooled, 1700 ton, includes standard controls, excludes water tower",5978.9,,rs-means,Unit,171015,each,,,,,,,,,,,1,1
630
+ 646,CentChillerWater,"Water chiller, centrifugal liquid chiller, packaged unit, water cooled, 2000 ton, includes standard controls, excludes water tower",7034,,rs-means,Unit,171016,each,,,,,,,,,,,1,1
631
+ 647,CentChillerWater,"Water chiller, centrifugal liquid chiller, packaged unit, water cooled, 2500 ton, includes standard controls, excludes water tower",8792.5,,rs-means,Unit,171017,each,,,,,,,,,,,1,1
632
+ 648,RecChillerWater,"Water chiller, reciprocating, multiple compressor, semi-hermetic, water cooled, 15 ton cooling, includes standard controls, excludes water tower",52.754999999999995,,rs-means,Unit,171018,each,,,,,,,,,,,1,1
633
+ 649,RecChillerWater,"Water chiller, reciprocating, multiple compressor, semi-hermetic, water cooled, 25 ton cooling, includes standard controls, excludes water tower",87.925,,rs-means,Unit,171019,each,,,,,,,,,,,1,1
634
+ 650,RecChillerWater,"Water chiller, reciprocating, multiple compressor, semi-hermetic, water cooled, 30 ton cooling, includes standard controls, excludes water tower",105.50999999999999,,rs-means,Unit,171020,each,,,,,,,,,,,1,1
635
+ 651,RecChillerWater,"Water chiller, reciprocating, multiple compressor, semi-hermetic, water cooled, 35 ton cooling, includes standard controls, excludes water tower",123.095,,rs-means,Unit,171021,each,,,,,,,,,,,1,1
636
+ 652,RecChillerWater,"Water chiller, reciprocating, multiple compressor, semi-hermetic, water cooled, 40 ton cooling, includes standard controls, excludes water tower",140.68,,rs-means,Unit,171022,each,,,,,,,,,,,1,1
637
+ 653,RecChillerWater,"Water chiller, reciprocating, multiple compressor, semi-hermetic, water cooled, 50 ton cooling, includes standard controls, excludes water tower",175.85,,rs-means,Unit,171023,each,,,,,,,,,,,1,1
638
+ 654,RecChillerWater,"Water chiller, reciprocating, multiple compressor, semi-hermetic, water cooled, 60 ton cooling, includes standard controls, excludes water tower",211.01999999999998,,rs-means,Unit,171024,each,,,,,,,,,,,1,1
639
+ 655,RecChillerWater,"Water chiller, reciprocating, multiple compressor, semi-hermetic, water cooled, 75 ton cooling, includes standard controls, excludes water tower",263.775,,rs-means,Unit,171025,each,,,,,,,,,,,1,1
640
+ 656,RecChillerWater,"Water chiller, reciprocating, multiple compressor, semi-hermetic, water cooled, 100 ton cooling, includes standard controls, excludes water tower",351.7,,rs-means,Unit,171026,each,,,,,,,,,,,1,1
641
+ 657,RecChillerWater,"Water chiller, reciprocating, multiple compressor, semi-hermetic, water cooled, 115 ton cooling, includes standard controls, excludes water tower",404.455,,rs-means,Unit,171027,each,,,,,,,,,,,1,1
642
+ 658,RecChillerWater,"Water chiller, reciprocating, multiple compressor, semi-hermetic, water cooled, 125 ton cooling, includes standard controls, excludes water tower",439.625,,rs-means,Unit,171028,each,,,,,,,,,,,1,1
643
+ 659,RecChillerWater,"Water chiller, reciprocating, multiple compressor, semi-hermetic, water cooled, 145 ton cooling, includes standard controls, excludes water tower",509.965,,rs-means,Unit,171029,each,,,,,,,,,,,1,1
644
+ 660,RecChillerWater,"Water chiller, reciprocating, multiple compressor, semi-hermetic, water cooled, 155 ton cooling, includes standard controls, excludes water tower",545.135,,rs-means,Unit,171030,each,,,,,,,,,,,1,1
645
+ 661,RecChillerAir,"Water chiller, reciprocating, packaged, air cooled, 15 ton cooling, includes standard controls, excludes remote air cooled condensers",52.754999999999995,,rs-means,Unit,171031,each,,,,,,,,,,,1,1
646
+ 662,RecChillerAir,"Water chiller, reciprocating, packaged, air cooled, 25 ton cooling, includes standard controls, excludes remote air cooled condensers",87.925,,rs-means,Unit,171032,each,,,,,,,,,,,1,1
647
+ 663,RecChillerAir,"Water chiller, reciprocating, packaged, air cooled, 40 ton cooling, includes standard controls, excludes remote air cooled condensers",140.68,,rs-means,Unit,171033,each,,,,,,,,,,,1,1
648
+ 664,RecChillerAir,"Water chiller, reciprocating, packaged, air cooled, 50 ton cooling, includes standard controls, excludes remote air cooled condensers",175.85,,rs-means,Unit,171034,each,,,,,,,,,,,1,1
649
+ 665,RecChillerAir,"Water chiller, reciprocating, packaged, air cooled, 60 ton cooling, includes standard controls, excludes remote air cooled condensers",211.01999999999998,,rs-means,Unit,171035,each,,,,,,,,,,,1,1
650
+ 666,RecChillerAir,"Water chiller, reciprocating, packaged, air cooled, 75 ton cooling, includes standard controls, excludes remote air cooled condensers",263.775,,rs-means,Unit,171036,each,,,,,,,,,,,1,1
651
+ 667,RecChillerAir,"Water chiller, reciprocating, packaged, air cooled, 105 ton cooling, includes standard controls, excludes remote air cooled condensers",369.28499999999997,,rs-means,Unit,171037,each,,,,,,,,,,,1,1
652
+ 668,RecChillerAir,"Water chiller, reciprocating, packaged, air cooled, 115 ton cooling, includes standard controls, excludes remote air cooled condensers",404.455,,rs-means,Unit,171038,each,,,,,,,,,,,1,1
653
+ 669,RecChillerAir,"Water chiller, reciprocating, packaged, air cooled, 125 ton cooling, includes standard controls, excludes remote air cooled condensers",439.625,,rs-means,Unit,171039,each,,,,,,,,,,,1,1
654
+ 670,RecChillerAir,"Water chiller, reciprocating, packaged, air cooled, 145 ton cooling, includes standard controls, excludes remote air cooled condensers",509.965,,rs-means,Unit,171040,each,,,,,,,,,,,1,1
655
+ 671,ScrollChillerAir,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 15 Ton, includes standard controls",52.754999999999995,,rs-means,Unit,171041,each,,,,,,,,,,,1,1
656
+ 672,ScrollChillerAir,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 20 ton cooling, includes standard controls",70.34,,rs-means,Unit,171042,each,,,,,,,,,,,1,1
657
+ 673,ScrollChillerAir,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 25 ton cooling, includes standard controls",87.925,,rs-means,Unit,171043,each,,,,,,,,,,,1,1
658
+ 674,ScrollChillerAir,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 30 ton cooling, includes standard controls",105.50999999999999,,rs-means,Unit,171044,each,,,,,,,,,,,1,1
659
+ 675,ScrollChillerAir,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 40 ton cooling, includes standard controls",140.68,,rs-means,Unit,171045,each,,,,,,,,,,,1,1
660
+ 676,ScrollChillerAir,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 50 ton cooling, includes standard controls",175.85,,rs-means,Unit,171046,each,,,,,,,,,,,1,1
661
+ 677,ScrollChillerWater,"Water chiller, scroll, single compressor, hermetic, water cooled, 2 ton cooling, includes standard controls, excludes water tower",7.034,,rs-means,Unit,171047,each,,,,,,,,,,,1,1
662
+ 678,ScrollChillerWater,"Water chiller, scroll, single compressor, hermetic, water cooled, 5 ton cooling, includes standard controls, excludes water tower",17.585,,rs-means,Unit,171048,each,,,,,,,,,,,1,1
663
+ 679,ScrollChillerWater,"Water chiller, scroll, single compressor, hermetic, water cooled, 10 ton cooling, includes standard controls, excludes water tower",35.17,,rs-means,Unit,171049,each,,,,,,,,,,,1,1
664
+ 680,ScrollChillerWater,"Water chiller, scroll, single compressor, hermetic, water cooled, 15 ton cooling, includes standard controls, excludes water tower",52.754999999999995,,rs-means,Unit,171050,each,,,,,,,,,,,1,1
665
+ 681,ScrollChillerWater,"Water chiller, scroll, single compressor, hermetic, water cooled, 20 ton cooling, includes standard controls, excludes water tower",70.34,,rs-means,Unit,171051,each,,,,,,,,,,,1,1
666
+ 682,ScrollChillerWater,"Water chiller, scroll, single compressor, hermetic, water cooled, 30 ton cooling, includes standard controls, excludes water tower",105.50999999999999,,rs-means,Unit,171052,each,,,,,,,,,,,1,1
667
+ 683,ScrewChillerAir,"Water chiller, screw liquid chiller, air cooled, insulated evaporator, 130 ton, includes standard controls",457.21,,rs-means,Unit,171053,each,,,,,,,,,,,1,1
668
+ 684,ScrewChillerAir,"Water chiller, screw liquid chiller, air cooled, insulated evaporator, 160 ton, includes standard controls",562.72,,rs-means,Unit,171054,each,,,,,,,,,,,1,1
669
+ 685,ScrewChillerAir,"Water chiller, screw liquid chiller, air cooled, insulated evaporator, 210 ton, includes standard controls",738.5699999999999,,rs-means,Unit,171055,each,,,,,,,,,,,1,1
670
+ 686,ScrewChillerAir,"Water chiller, screw liquid chiller, air cooled, insulated evaporator, 270 ton, includes standard controls",949.5899999999999,,rs-means,Unit,171056,each,,,,,,,,,,,1,1
671
+ 687,ScrewChillerAir,"Water chiller, screw liquid chiller, air cooled, insulated evaporator, 320 ton, includes standard controls",1125.44,,rs-means,Unit,171057,each,,,,,,,,,,,1,1
672
+ 688,ScrewChillerWater,"Water chiller, screw liquid chiller, packaged unit, water cooled, 80 ton, includes standard controls, excludes water tower",281.36,,rs-means,Unit,171058,each,,,,,,,,,,,1,1
673
+ 689,ScrewChillerWater,"Water chiller, screw liquid chiller, packaged unit, water cooled, 100 ton, includes standard controls, excludes water tower",351.7,,rs-means,Unit,171059,each,,,,,,,,,,,1,1
674
+ 690,ScrewChillerWater,"Water chiller, screw liquid chiller, packaged unit, water cooled, 150 ton, includes standard controls, excludes water tower",527.55,,rs-means,Unit,171060,each,,,,,,,,,,,1,1
675
+ 691,ScrewChillerWater,"Water chiller, screw liquid chiller, packaged unit, water cooled, 200 ton, includes standard controls, excludes water tower",703.4,,rs-means,Unit,171061,each,,,,,,,,,,,1,1
676
+ 692,ScrewChillerWater,"Water chiller, screw liquid chiller, packaged unit, water cooled, 250 ton, includes standard controls, excludes water tower",879.25,,rs-means,Unit,171062,each,,,,,,,,,,,1,1
677
+ 693,ScrewChillerWater,"Water chiller, screw liquid chiller, packaged unit, water cooled, 300 ton, includes standard controls, excludes water tower",1055.1,,rs-means,Unit,171063,each,,,,,,,,,,,1,1
678
+ 694,ScrewChillerWater,"Water chiller, screw liquid chiller, packaged unit, water cooled, 350 ton, includes standard controls, excludes water tower",1230.95,,rs-means,Unit,171064,each,,,,,,,,,,,1,1
679
+ 695,DXChiller,"Water chiller, direct expansion, shell and tube type, for built-up systems, 1 ton, includes standard controls",3.517,,rs-means,Unit,171065,each,,,,,,,,,,,1,1
680
+ 696,DXChiller,"Water chiller, direct expansion, shell and tube type, for built-up systems, 5 Ton, includes standard controls",17.585,,rs-means,Unit,171066,each,,,,,,,,,,,1,1
681
+ 697,DXChiller,"Water chiller, direct expansion, shell and tube type, for built-up systems, 10 ton, includes standard controls",35.17,,rs-means,Unit,171067,each,,,,,,,,,,,1,1
682
+ 698,DXChiller,"Water chiller, direct expansion, shell and tube type, for built-up systems, 20 ton, includes standard controls",70.34,,rs-means,Unit,171068,each,,,,,,,,,,,1,1
683
+ 699,DXChiller,"Water chiller, direct expansion, shell and tube type, for built-up systems, 30 ton, includes standard controls",105.50999999999999,,rs-means,Unit,171069,each,,,,,,,,,,,1,1
684
+ 700,DXChiller,"Water chiller, direct expansion, shell and tube type, for built-up systems, 50 ton, includes standard controls",175.85,,rs-means,Unit,171070,each,,,,,,,,,,,1,1
685
+ 701,DXChiller,"Water chiller, direct expansion, shell and tube type, for built-up systems, 100 ton, includes standard controls",351.7,,rs-means,Unit,171071,each,,,,,,,,,,,1,1
686
+ 703,ClgTwr,"Cooling tower, packaged unit, galvanized steel, blow through, centrifugal type, 50 ton, includes standard controls, excludes pumps and piping",175.85,,rs-means,Unit,171072,each,,,,,,,,,,,1,1
687
+ 704,ClgTwr,"Cooling tower, packaged unit, galvanized steel, blow through, centrifugal type, 75 ton, includes standard controls, excludes pumps and piping",263.775,,rs-means,Unit,171073,each,,,,,,,,,,,1,1
688
+ 705,ClgTwr,"Cooling tower, packaged unit, galvanized steel, blow through, centrifugal type, 100 ton, includes standard controls, excludes pumps and piping",351.7,,rs-means,Unit,171074,each,,,,,,,,,,,1,1
689
+ 706,ClgTwr,"Cooling tower, packaged unit, galvanized steel, blow through, centrifugal type, 125 ton, includes standard controls, excludes pumps and piping",439.625,,rs-means,Unit,171075,each,,,,,,,,,,,1,1
690
+ 707,ClgTwr,"Cooling tower, packaged unit, galvanized steel, blow through, centrifugal type, 200 ton, includes standard controls, excludes pumps and piping",703.4,,rs-means,Unit,171076,each,,,,,,,,,,,1,1
691
+ 708,ClgTwr,"Cooling tower, packaged unit, galvanized steel, blow through, centrifugal type, 250 ton, includes standard controls, excludes pumps and piping",879.25,,rs-means,Unit,171077,each,,,,,,,,,,,1,1
692
+ 709,ClgTwr,"Cooling tower, packaged unit, galvanized steel, blow through, centrifugal type, 300 ton, includes standard controls, excludes pumps and piping",1055.1,,rs-means,Unit,171078,each,,,,,,,,,,,1,1
693
+ 710,ClgTwr,"Cooling tower, packaged unit, galvanized steel, blow through, centrifugal type, 350 ton, includes standard controls, excludes pumps and piping",1230.95,,rs-means,Unit,171079,each,,,,,,,,,,,1,1
694
+ 711,ClgTwr,"Cooling tower, packaged unit, galvanized steel, blow through, centrifugal type, 400 ton, includes standard controls, excludes pumps and piping",1406.8,,rs-means,Unit,171080,each,,,,,,,,,,,1,1
695
+ 712,ClgTwr,"Cooling tower, packaged unit, galvanized steel, blow through, centrifugal type, 450 ton, includes standard controls, excludes pumps and piping",1582.6499999999999,,rs-means,Unit,171081,each,,,,,,,,,,,1,1
696
+ 713,ClgTwr,"Cooling tower, packaged unit, galvanized steel, blow through, centrifugal type, 500 ton, includes standard controls, excludes pumps and piping",1758.5,,rs-means,Unit,171082,each,,,,,,,,,,,1,1
697
+ 714,ClgTwr,"Cooling tower, packaged unit, galvanized steel, blow through, centrifugal type, 600 ton, includes standard controls, excludes pumps and piping",2110.2,,rs-means,Unit,171083,each,,,,,,,,,,,1,1
698
+ 715,ClgTwr,"Cooling tower, packaged unit, galvanized steel, blow through, centrifugal type, 700 ton, includes standard controls, excludes pumps and piping",2461.9,,rs-means,Unit,171084,each,,,,,,,,,,,1,1
699
+ 716,ClgTwr,"Cooling tower, packaged unit, galvanized steel, blow through, centrifugal type, 800 ton, includes standard controls, excludes pumps and piping",2813.6,,rs-means,Unit,171085,each,,,,,,,,,,,1,1
700
+ 717,ClgTwr,"Cooling tower, packaged unit, galvanized steel, blow through, centrifugal type, 900 ton, includes standard controls, excludes pumps and piping",3165.2999999999997,,rs-means,Unit,171086,each,,,,,,,,,,,1,1
701
+ 718,ClgTwr,"Cooling tower, packaged unit, galvanized steel, blow through, centrifugal type, 1000 ton, includes standard controls, excludes pumps and piping",3517,,rs-means,Unit,171087,each,,,,,,,,,,,1,1
702
+ 719,ClgTwrPump,"Cooling tower, for pumps and piping, add",,,rs-means,Unit,171088,each,,,,,,,,,,,1,1
703
+ 720,ClgTwrFeed,"Cooling tower, cooling water chemical feeder",,,rs-means,Unit,171089,each,,,,,,,,,,,1,1
704
+ 721,LiqCooler,"Liquid cooler, packaged unit, closed circuit type, options included:, 50 ton, vibration switch, sump sweeper piping, grooved coil connections, fan motor inverter capable, 304 St. St. cold water basin, external platform w/ladder",175.85,,rs-means,Unit,171090,each,,,,,,,,,,,1,1
705
+ 722,LiqCooler,"Liquid cooler, packaged unit, closed circuit type, options included:, 100 ton, vibration switch, sump sweeper piping, grooved coil connections, fan motor inverter capable, 304 St. St. cold water basin, external platform w/ladder",351.7,,rs-means,Unit,171091,each,,,,,,,,,,,1,1
706
+ 723,LiqCooler,"Liquid cooler, packaged unit, closed circuit type, options included:, 150 ton, vibration switch, sump sweeper piping, grooved coil connections, fan motor inverter capable, 304 St. St. cold water basin, external platform w/ladder",527.55,,rs-means,Unit,171092,each,,,,,,,,,,,1,1
707
+ 724,LiqCooler,"Liquid cooler, packaged unit, closed circuit type, options included:, 200 ton, vibration switch, sump sweeper piping, grooved coil connections, fan motor inverter capable, 304 St. St. cold water basin, external platform w/ladder",703.4,,rs-means,Unit,171093,each,,,,,,,,,,,1,1
708
+ 725,LiqCooler,"Liquid cooler, packaged unit, closed circuit type, options included:, 250 ton, vibration switch, sump sweeper piping, grooved coil connections, fan motor inverter capable, 304 St. St. cold water basin, external platform w/ladder",879.25,,rs-means,Unit,171094,each,,,,,,,,,,,1,1
709
+ 726,ashp,"Heat pump, air to air single package, 0.5 ton cooling, 5 MBH electric heat @ 0Deg.F, excludes interconnecting tubing, curbs, pads and ductwork",1.4649999999999999,,rs-means,Unit,171095,each,,,,,,,,,,,1,1
710
+ 727,ashp,"Heat pump, air to air single package, 0.75 ton cooling, 5 MBH electric heat @ 0Deg.F, excludes interconnecting tubing, curbs, pads and ductwork",1.4649999999999999,,rs-means,Unit,171096,each,,,,,,,,,,,1,1
711
+ 727,wshp,"Heat pump, water source to air, single package, 1 ton cooling, 13 MBH heat @ 75Deg.F, excludes water supply",3.8089999999999997,3.517,rs-means,Unit,171097,each,,,,,,,,,,,1,1
712
+ 728,ashp,"Heat pump, air to air single package, 1 ton cooling, 5 MBH electric heat @ 0Deg.F, excludes interconnecting tubing, curbs, pads and ductwork",1.4649999999999999,,rs-means,Unit,171098,each,,,,,,,,,,,1,1
713
+ 728,wshp,"Heat pump, water source to air, single package, 1 ton cooling, 13 MBH heat @ 75Deg.F, excludes water supply",3.8089999999999997,3.517,rs-means,Unit,171097,each,,,,,,,,,,,1,1
714
+ 729,ashp,"Heat pump, air to air single package, 1.5 ton cooling, 5 MBH electric heat @ 0Deg.F, excludes interconnecting tubing, curbs, pads and ductwork",1.4649999999999999,,rs-means,Unit,171099,each,,,,,,,,,,,1,1
715
+ 729,wshp,"Heat pump, water source to air, single package, 1.5 ton cooling, 17 MBH heat @ 75Deg.F, excludes water supply",4.97,5.275,rs-means,Unit,171100,each,,,,,,,,,,,1,1
716
+ 730,ashp,"Heat pump, air to air single package, 2 ton cooling, 6.5 MBH electric heat @ 0Deg.F, excludes interconnecting tubing, curbs, pads and ductwork",1.9044999999999999,,rs-means,Unit,171101,each,,,,,,,,,,,1,1
717
+ 730,wshp,"Heat pump, water source to air, single package, 2 ton cooling, 19 MBH heat @ 75Deg.F, excludes water supply",5.56,7.034,rs-means,Unit,171102,each,,,,,,,,,,,1,1
718
+ 731,ashp,"Heat pump, air to air single package, 2.5 ton cooling, 8 MBH electric heat @ 0Deg.F, excludes interconnecting tubing, curbs, pads and ductwork",2.344,,rs-means,Unit,171103,each,,,,,,,,,,,1,1
719
+ 731,wshp,"Heat pump, water source to air, single package, 2.5 ton cooling, 25 MBH heat @ 75Deg.F, excludes water supply",7.32,8.792,rs-means,Unit,171104,each,,,,,,,,,,,1,1
720
+ 732,ashp,"Heat pump, air to air single package, 3 ton cooling, 10 MBH electric heat @ 0Deg.F, excludes interconnecting tubing, curbs, pads and ductwork",2.9299999999999997,,rs-means,Unit,171105,each,,,,,,,,,,,1,1
721
+ 732,wshp,"Heat pump, water source to air, single package, 3 ton cooling, 27 MBH heat @ 75Deg.F, excludes water supply",7.9,10.551,rs-means,Unit,171106,each,,,,,,,,,,,1,1
722
+ 733,ashp,"Heat pump, air to air single package, 3.5 ton cooling, 11 MBH electric heat @ 0Deg.F, excludes interconnecting tubing, curbs, pads and ductwork",3.223,,rs-means,Unit,171107,each,,,,,,,,,,,1,1
723
+ 733,wshp,"Heat pump, water source to air, single package, 3.5 ton cooling, 29 MBH heat @ 75Deg.F, excludes water supply",8.49,12.309,rs-means,Unit,171108,each,,,,,,,,,,,1,1
724
+ 734,ashp,"Heat pump, air to air single package, 4 ton cooling, 13 MBH electric heat @ 0Deg.F, excludes interconnecting tubing, curbs, pads and ductwork",3.8089999999999997,,rs-means,Unit,171109,each,,,,,,,,,,,1,1
725
+ 734,wshp,"Heat pump, water source to air, single package, 4 ton cooling, 31 MBH heat @ 75Deg.F, excludes water supply",9.07,14.067,rs-means,Unit,171110,each,,,,,,,,,,,1,1
726
+ 735,ashp,"Heat pump, air to air single package, 5 ton cooling, 27 MBH electric heat @ 0Deg.F, excludes interconnecting tubing, curbs, pads and ductwork",7.911,,rs-means,Unit,171111,each,,,,,,,,,,,1,1
727
+ 735,wshp,"Heat pump, water source to air, single package, 5 ton cooling, 29 MBH heat @ 75Deg.F, excludes water supply",8.49,17.584,rs-means,Unit,171112,each,,,,,,,,,,,1,1
728
+ 736,ashp,"Heat pump, air to air single package, 7.5 ton cooling, 35 MBH electric heat @ 0Deg.F, excludes interconnecting tubing, curbs, pads and ductwork",10.254999999999999,,rs-means,Unit,171113,each,,,,,,,,,,,1,1
729
+ 736,wshp,"Heat pump, water source to air, single package, 7.5 ton cooling, 35 MBH heat @ 75Deg.F, excludes water supply",10.254999999999999,26.376,rs-means,Unit,171114,each,,,,,,,,,,,1,1
730
+ 737,ashp,"Heat pump, air to air single package, 10 ton cooling, 45 MBH electric heat @ 0Deg.F, excludes interconnecting tubing, curbs, pads and ductwork",13.184999999999999,,rs-means,Unit,171115,each,,,,,,,,,,,1,1
731
+ 737,wshp,"Heat pump, water source to air, single package, 8 ton cooling, 40 MBH heat @ 75Deg.F, excludes water supply",11.71,28.135,rs-means,Unit,171116,each,,,,,,,,,,,1,1
732
+ 738,ashp,"Heat pump, air to air single package, 12 ton cooling, 50 MBH electric heat @ 0Deg.F, excludes interconnecting tubing, curbs, pads and ductwork",14.649999999999999,,rs-means,Unit,171117,each,,,,,,,,,,,1,1
733
+ 738,wshp,"Heat pump, water source to air, single package, 10 ton cooling, 50 MBH heat @ 75Deg.F, excludes water supply",14.649999999999999,35.169,rs-means,Unit,171118,each,,,,,,,,,,,1,1
734
+ 739,wshp,"Heat pump, water source to air, single package, 15 ton cooling, 64 MBH heat @ 75Deg.F, excludes water supply",18.73,52.753,rs-means,Unit,171119,each,,,,,,,,,,,1,1
735
+ 740,wshp,"Heat pump, water source to air, single package, 20 ton cooling, 100 MBH heat @ 75Deg.F, excludes water supply",29.28,70.337,rs-means,Unit,171120,each,,,,,,,,,,,1,1
736
+ 741,wshp,"Heat pump, water source to air, single package, 25 ton cooling, 100 MBH heat @ 75Deg.F, excludes water supply",29.28,87.921,rs-means,Unit,171121,each,,,,,,,,,,,1,1
737
+ 742,wshp,"Heat pump, water source to air, single package, 30 ton cooling, 128 MBH heat @ 75Deg.F, excludes water supply",37.47,105.506,rs-means,Unit,171122,each,,,,,,,,,,,1,1
738
+ 743,wshp,"Heat pump, water source to air, single package, 40 ton cooling, 200 MBH heat @ 75Deg.F, excludes water supply",58.56,140.674,rs-means,Unit,171123,each,,,,,,,,,,,1,1
739
+ 744,wshp,"Heat pump, water source to air, single package, 50 ton cooling, 200 MBH heat @ 75Deg.F, excludes water supply",58.56,175.843,rs-means,Unit,171124,each,,,,,,,,,,,1,1
740
+ 745,FanCoilCabinet,"Fan coil A.C., cabinet mounted, chilled water, 1/2 ton cooling, includes filters and controls",1.7585,,rs-means,Unit,171125,,,,,,,,,,,,1,1
741
+ 746,FanCoilClg,"Fan coil A.C., cabinet mounted, chilled water, 3/4 ton cooling, includes filters and controls",2.63775,,rs-means,Unit,171125,,,,,,,,,,,,1,1
742
+ 747,FanCoilCabinet,"Fan coil A.C., cabinet mounted, chilled water, 1 ton cooling, includes filters and controls",3.517,,rs-means,Unit,171125,,,,,,,,,,,,1,1
743
+ 748,FanCoilCabinet,"Fan coil A.C., cabinet mounted, chilled water, 1 1/2 ton cooling, includes filters and controls",5.2755,,rs-means,Unit,171125,,,,,,,,,,,,1,1
744
+ 749,FanCoilCabinet,"Fan coil A.C., cabinet mounted, chilled water, 2 ton cooling, includes filters and controls",7.034,,rs-means,Unit,171125,,,,,,,,,,,,1,1
745
+ 750,FanCoilCabinet,"Fan coil A.C., cabinet mounted, chilled water, 2 1/2 ton cooling, includes filters and controls",8.7925,,rs-means,Unit,171125,,,,,,,,,,,,1,1
746
+ 751,FanCoilCabinet,"Fan coil A.C., cabinet mounted, chilled water, 3 ton cooling, includes filters and controls",10.551,,rs-means,Unit,171125,,,,,,,,,,,,1,1
747
+ 752,FanCoilDX,"Fan coil A.C., direct expansion for use w/air cooled condensing unit, 1.5 ton cooling, includes filters and controls",5.2725,,rs-means,Unit,171126,,,,,,,,,,,,1,1
748
+ 753,FanCoilDX,"Fan coil A.C., direct expansion for use w/air cooled condensing unit, 2 ton cooling, includes filters and controls",7.03,,rs-means,Unit,171127,,,,,,,,,,,,1,1
749
+ 754,FanCoilDX,"Fan coil A.C., direct expansion for use w/air cooled condensing unit, 2.5 ton cooling, includes filters and controls",8.7875,,rs-means,Unit,171128,,,,,,,,,,,,1,1
750
+ 755,FanCoilDX,"Fan coil A.C., direct expansion for use w/air cooled condensing unit, 3 ton cooling, includes filters and controls",10.545,,rs-means,Unit,171129,,,,,,,,,,,,1,1
751
+ 756,FanCoilDX,"Fan coil A.C., direct expansion for use w/air cooled condensing unit, 3.5 ton cooling, includes filters and controls",12.3025,,rs-means,Unit,171130,,,,,,,,,,,,1,1
752
+ 757,FanCoilDX,"Fan coil A.C., direct expansion for use w/air cooled condensing unit, 4 ton cooling, includes filters and controls",14.06,,rs-means,Unit,171131,,,,,,,,,,,,1,1
753
+ 758,FanCoilDX,"Fan coil A.C., direct expansion for use w/air cooled condensing unit, 5 ton cooling, includes filters and controls",17.575,,rs-means,Unit,171132,,,,,,,,,,,,1,1
754
+ 759,FanCoilDX,"Fan coil A.C., direct expansion for use w/air cooled condensing unit, 7.5 ton cooling, includes filters and controls",26.3625,,rs-means,Unit,171133,,,,,,,,,,,,1,1
755
+ 760,FanCoilDX,"Fan coil A.C., direct expansion for use w/air cooled condensing unit, 10 ton cooling, includes filters and controls",35.15,,rs-means,Unit,171134,,,,,,,,,,,,1,1
756
+ 761,FanCoilDX,"Fan coil A.C., direct expansion for use w/air cooled condensing unit, 12.5 ton cooling, includes filters and controls",43.9375,,rs-means,Unit,171135,,,,,,,,,,,,1,1
757
+ 762,FanCoilDX,"Fan coil A.C., direct expansion for use w/air cooled condensing unit, 15 ton cooling, includes filters and controls",52.725,,rs-means,Unit,171136,,,,,,,,,,,,1,1
758
+ 763,FanCoilDX,"Fan coil A.C., direct expansion for use w/air cooled condensing unit, 20 ton cooling, includes filters and controls",70.3,,rs-means,Unit,171137,,,,,,,,,,,,1,1
759
+ 764,FanCoilDX,"Fan coil A.C., direct expansion for use w/air cooled condensing unit, 25 ton cooling, includes filters and controls",87.875,,rs-means,Unit,171138,,,,,,,,,,,,1,1
760
+ 765,FanCoilDX,"Fan coil A.C., direct expansion for use w/air cooled condensing unit, 30 ton cooling, includes filters and controls",105.45,,rs-means,Unit,171139,,,,,,,,,,,,1,1
761
+ 766,FanCoil,"Fan coil unit, chilled water, horizontal unit, housing, 2 pipe, .5 ton cooling, includes filters and fan speed control, excludes valves",1.7585,,rs-means,Unit,171140,,,,,,,,,,,,1,1
762
+ 767,FanCoil,"Fan coil unit, chilled water, horizontal unit, housing, 2 pipe, 1 ton cooling, includes filters and fan speed control, excludes valves",3.517,,rs-means,Unit,171140,,,,,,,,,,,,1,1
763
+ 768,FanCoil,"Fan coil unit, chilled water, horizontal unit, housing, 2 pipe, 1.5 ton cooling, includes filters and fan speed control, excludes valves",5.2755,,rs-means,Unit,171141,,,,,,,,,,,,1,1
764
+ 769,FanCoil,"Fan coil unit, chilled water, horizontal unit, housing, 2 pipe, 2 ton cooling, includes filters and fan speed control, excludes valves",7.034,,rs-means,Unit,171142,,,,,,,,,,,,1,1
765
+ 770,FanCoil,"Fan coil unit, chilled water, horizontal unit, housing, 2 pipe, 3 ton cooling, includes filters and fan speed control, excludes valves",10.551,,rs-means,Unit,171143,,,,,,,,,,,,1,1
766
+ 771,FanCoil,"Fan coil unit, chilled water, horizontal unit, housing, 2 pipe, 3.5 ton cooling, includes filters and fan speed control, excludes valves",12.3095,,rs-means,Unit,171144,,,,,,,,,,,,1,1
767
+ 772,FanCoil,"Fan coil unit, chilled water, horizontal unit, housing, 2 pipe, 4 ton cooling, includes filters and fan speed control, excludes valves",14.068,,rs-means,Unit,171145,,,,,,,,,,,,1,1
768
+ 773,FanCoil,"Fan coil unit, chilled water, horizontal unit, housing, 2 pipe, 5 ton cooling, includes filters and fan speed control, excludes valves",17.585,,rs-means,Unit,171146,,,,,,,,,,,,1,1
769
+ 774,FanCoil,"Fan coil unit, chilled water, horizontal unit, housing, 2 pipe, 6 ton cooling, includes filters and fan speed control, excludes valves",21.102,,rs-means,Unit,171147,,,,,,,,,,,,1,1
770
+ 775,FanCoil,"Fan coil unit, chilled water, horizontal unit, housing, 2 pipe, 7 ton cooling, includes filters and fan speed control, excludes valves",24.619,,rs-means,Unit,171148,,,,,,,,,,,,1,1
771
+ 776,FanCoil,"Fan coil unit, chilled water, horizontal unit, housing, 2 pipe, 8 ton cooling, includes filters and fan speed control, excludes valves",28.136,,rs-means,Unit,171149,,,,,,,,,,,,1,1
772
+ 777,FanCoil,"Fan coil unit, chilled water, horizontal unit, housing, 2 pipe, 10 ton cooling, includes filters and fan speed control, excludes valves",35.17,,rs-means,Unit,171150,,,,,,,,,,,,1,1
773
+ 778,FanCoil,"Fan coil unit, chilled water, horizontal unit, housing, 2 pipe, 12.5 ton cooling, includes filters and fan speed control, excludes valves",43.9625,,rs-means,Unit,171151,,,,,,,,,,,,1,1
774
+ 779,FanCoil,"Fan coil unit, chilled water, horizontal unit, housing, 2 pipe, 15 ton cooling, includes filters and fan speed control, excludes valves",52.754999999999995,,rs-means,Unit,171152,,,,,,,,,,,,1,1
775
+ 780,FanCoil,"Fan coil unit, chilled water, horizontal unit, housing, 2 pipe, 20 ton cooling, includes filters and fan speed control, excludes valves",70.34,,rs-means,Unit,171153,,,,,,,,,,,,1,1
776
+ 781,FanCoil,"Fan coil unit, chilled water, horizontal unit, housing, 2 pipe, 25 ton cooling, includes filters and fan speed control, excludes valves",87.925,,rs-means,Unit,171154,,,,,,,,,,,,1,1
777
+ 782,FanCoilHtgClgVent,"Fan coil with heating and cooling coils and ventilation, standard controls, 750 cfm 2 tons cooling",7.034,,rs-means,Unit,171155,,,,,,,,,,,,1,1
778
+ 783,FanCoilHtgClgVent,"Fan coil with heating and cooling coils and ventilation, standard controls, 1000 cfm 2.5 tons cooling",8.7925,,rs-means,Unit,171156,,,,,,,,,,,,1,1
779
+ 784,FanCoilHtgClgVent,"Fan coil with heating and cooling coils and ventilation, standard controls, 1250 cfm 3 tons cooling",10.551,,rs-means,Unit,171157,,,,,,,,,,,,1,1
780
+ 785,FanCoilHtgClgVent,"Fan coil with heating and cooling coils and ventilation, standard controls, 1500 cfm 4 tons cooling",14.068,,rs-means,Unit,171158,,,,,,,,,,,,1,1
781
+ 786,FanCoilHtgClgVent,"Fan coil with heating and cooling coils and ventilation, standard controls, 2000 cfm 5 tons cooling",17.585,,rs-means,Unit,171159,,,,,,,,,,,,1,1
782
+ 787,FanCoilElec,"Fan coil, chilled water, electric heat, 2 pipe, 0.5 tons cooling, includes filters and fan speed control, excludes valves",1.7575,,rs-means,Unit,171160,,,,,,,,,,,,1,1
783
+ 788,FanCoilElec,"Fan coil, chilled water, electric heat, 2 pipe, 0.75 tons cooling, includes filters and fan speed control, excludes valves",2.63625,,rs-means,Unit,171161,,,,,,,,,,,,1,1
784
+ 789,FanCoilElec,"Fan coil, chilled water, electric heat, 2 pipe, 1 tons cooling, includes filters and fan speed control, excludes valves",3.515,,rs-means,Unit,171162,,,,,,,,,,,,1,1
785
+ 790,FanCoilElec,"Fan coil, chilled water, electric heat, 2 pipe, 1.5 tons cooling, includes filters and fan speed control, excludes valves",5.2725,,rs-means,Unit,171163,,,,,,,,,,,,1,1
786
+ 791,FanCoilElec,"Fan coil, chilled water, electric heat, 2 pipe, 2 tons cooling, includes filters and fan speed control, excludes valves",7.03,,rs-means,Unit,171164,,,,,,,,,,,,1,1
787
+ 792,FanCoilElec,"Fan coil, chilled water, electric heat, 2 pipe, 2.5 tons cooling, includes filters and fan speed control, excludes valves",8.7875,,rs-means,Unit,171165,,,,,,,,,,,,1,1
788
+ 793,FanCoilElec,"Fan coil, chilled water, electric heat, 2 pipe, 3 tons cooling, includes filters and fan speed control, excludes valves",10.545,,rs-means,Unit,171166,,,,,,,,,,,,1,1
789
+ 794,FanCoilElec,"Fan coil, chilled water, electric heat, 2 pipe, 3.5 tons cooling, includes filters and fan speed control, excludes valves",12.3025,,rs-means,Unit,171167,,,,,,,,,,,,1,1
790
+ 795,FanCoilElec,"Fan coil, chilled water, electric heat, 2 pipe, 4 tons cooling, includes filters and fan speed control, excludes valves",14.06,,rs-means,Unit,171168,,,,,,,,,,,,1,1
791
+ 796,FanCoilElec,"Fan coil, chilled water, electric heat, 2 pipe, 5 tons cooling, includes filters and fan speed control, excludes valves",17.575,,rs-means,Unit,171169,,,,,,,,,,,,1,1
792
+ 797,FanCoilElec,"Fan coil, chilled water, electric heat, 2 pipe, 6 tons cooling, includes filters and fan speed control, excludes valves",21.09,,rs-means,Unit,171170,,,,,,,,,,,,1,1
793
+ 798,FanCoilElec,"Fan coil, chilled water, electric heat, 2 pipe, 7 tons cooling, includes filters and fan speed control, excludes valves",24.605,,rs-means,Unit,171171,,,,,,,,,,,,1,1
794
+ 799,FanCoilElec,"Fan coil, chilled water, electric heat, 2 pipe, 8 tons cooling, includes filters and fan speed control, excludes valves",28.12,,rs-means,Unit,171172,,,,,,,,,,,,1,1
795
+ 800,FanCoilElec,"Fan coil, chilled water, electric heat, 2 pipe, 10 tons cooling, includes filters and fan speed control, excludes valves",35.15,,rs-means,Unit,171173,,,,,,,,,,,,1,1
796
+ 801,ElecDuct,"Electric duct heaters 480V 3ph, finned tubular insert 12 inches wide by 6 inches high",6.7,,rs-means,Unit,171174,,,,,,,,,,,,1,1
797
+ 802,ElecDuct,"Electric duct heaters 480V 3ph, finned tubular insert 12 inches wide by 12 inches high",13.3,,rs-means,Unit,171175,,,,,,,,,,,,1,1
798
+ 803,ElecDuct,"Electric duct heaters 480V 3ph, finned tubular insert 12 inches wide by 18 inches high",20,,rs-means,Unit,171176,,,,,,,,,,,,1,1
799
+ 804,ElecDuct,"Electric duct heaters 480V 3ph, finned tubular insert 12 inches wide by 24 inches high",26.7,,rs-means,Unit,171177,,,,,,,,,,,,1,1
800
+ 805,ElecDuct,"Electric duct heaters 480V 3ph, finned tubular insert 12 inches wide by 30 inches high",33.3,,rs-means,Unit,171178,,,,,,,,,,,,1,1
801
+ 807,,"Hydronic heating, terminal units, rough-in baseboard panel and fin tube, wall hung, with supply and balance valves",,,rs-means,Unit,171179,,,,,,,,,,,,1,1
802
+ 808,,"Hydronic heating, unit heater, propeller, horizontal flow, 115 V, hot water, 60Deg.F entering air, 81 MBH",,,rs-means,Unit,171180,,,,,,,,,,,,1,1
803
+ 809,,"Hydronic heating, unit heater, propeller, horizontal flow, 115 V, hot water, 60Deg.F entering air, 198 MBH",,,rs-means,Unit,171181,,,,,,,,,,,,1,1
804
+ 810,CondensingUnit,"Air cooled compressor, standard controls 1.5 tons",5.2755,,rs-means,Unit,171182,,,,,,,,,,,,1,1
805
+ 811,CondensingUnit,"Air cooled compressor, standard controls 2 tons",7.034,,rs-means,Unit,171183,,,,,,,,,,,,1,1
806
+ 812,CondensingUnit,"Air cooled compressor, standard controls 2.5 tons",8.7925,,rs-means,Unit,171184,,,,,,,,,,,,1,1
807
+ 813,CondensingUnit,"Air cooled compressor, standard controls 3 tons",10.551,,rs-means,Unit,171185,,,,,,,,,,,,1,1
808
+ 814,CondensingUnit,"Air cooled compressor, standard controls 3.5 tons",12.3095,,rs-means,Unit,171186,,,,,,,,,,,,1,1
809
+ 815,CondensingUnit,"Air cooled compressor, standard controls 4 tons",14.068,,rs-means,Unit,171187,,,,,,,,,,,,1,1
810
+ 816,CondensingUnit,"Air cooled compressor, standard controls 5 tons",17.585,,rs-means,Unit,171188,,,,,,,,,,,,1,1
811
+ 817,CondensingUnit,"Air cooled compressor, standard controls 7.5 tons",26.377499999999998,,rs-means,Unit,171189,,,,,,,,,,,,1,1
812
+ 818,CondensingUnit,"Air cooled compressor, standard controls 8.5 tons",29.8945,,rs-means,Unit,171190,,,,,,,,,,,,1,1
813
+ 819,CondensingUnit,"Air cooled compressor, standard controls 10 tons",35.17,,rs-means,Unit,171191,,,,,,,,,,,,1,1
814
+ 820,CondensingUnit,"Air cooled compressor, standard controls 12.5 tons",43.9625,,rs-means,Unit,171192,,,,,,,,,,,,1,1
815
+ 821,CondensingUnit,"Air cooled compressor, standard controls 15 tons",52.754999999999995,,rs-means,Unit,171193,,,,,,,,,,,,1,1
816
+ 822,CondensingUnit,"Air cooled compressor, standard controls 20 tons",70.34,,rs-means,Unit,171194,,,,,,,,,,,,1,1
817
+ 823,CondensingUnit,"Air cooled compressor, standard controls 25 tons",87.925,,rs-means,Unit,171195,,,,,,,,,,,,1,1
818
+ 824,CondensingUnit,"Air cooled compressor, standard controls 30 tons",105.50999999999999,,rs-means,Unit,171196,,,,,,,,,,,,1,1
819
+ 825,CondensingUnit,"Air cooled compressor, standard controls 40 tons",140.68,,rs-means,Unit,171197,,,,,,,,,,,,1,1
820
+ 826,CondensingUnit,"Air cooled compressor, standard controls 50 tons",175.85,,rs-means,Unit,171198,,,,,,,,,,,,1,1
821
+ 827,CondensingUnit,"Air cooled compressor, standard controls 60 tons",211.01999999999998,,rs-means,Unit,171199,,,,,,,,,,,,1,1
822
+ 828,CondensingUnit,"Air cooled compressor, standard controls 70 tons",246.19,,rs-means,Unit,171200,,,,,,,,,,,,1,1
823
+ 829,CondensingUnit,"Air cooled compressor, standard controls 80 tons",281.36,,rs-means,Unit,171201,,,,,,,,,,,,1,1
824
+ 830,CondensingUnit,"Air cooled compressor, standard controls 90 tons",316.53,,rs-means,Unit,171202,,,,,,,,,,,,1,1
825
+ 831,CondensingUnit,"Air cooled compressor, standard controls 100 tons",351.7,,rs-means,Unit,171203,,,,,,,,,,,,1,1
826
+ 832,ElecHeat,"Electric heater, recessed, cabinet type 120-277V, single pole",2,,rs-means,Unit,171204,,,,,,,,,,,,1,1
827
+ 833,ElecHeat,"Electric heater, recessed, cabinet type 120-277V, single pole",3,,rs-means,Unit,171205,,,,,,,,,,,,1,1
828
+ 834,ElecHeat,"Electric heater, recessed, cabinet type 120-277V, single pole",4,,rs-means,Unit,171206,,,,,,,,,,,,1,1
829
+ 835,ElecHeat,"Electric heater, recessed, cabinet type 120-277V, single pole",5,,rs-means,Unit,171207,,,,,,,,,,,,1,1
830
+ 836,ElecHeat,"Electric heater, recessed, cabinet type 120-277V, single pole",6,,rs-means,Unit,171208,,,,,,,,,,,,1,1
831
+ 837,ElecHeat,"Electric heater, recessed, cabinet type 120-277V, single pole",8,,rs-means,Unit,171209,,,,,,,,,,,,1,1
832
+ 838,ElecHeat,"Electric heater, recessed, cabinet type 120-277V, single pole",10,,rs-means,Unit,171210,,,,,,,,,,,,1,1
833
+ 839,ElecHeat,"Electric heater, recessed, cabinet type 120-277V, single pole",12,,rs-means,Unit,171211,,,,,,,,,,,,1,1
834
+ 840,ElecHeat,"Electric heater, recessed, cabinet type 120-277V, single pole",13.5,,rs-means,Unit,171212,,,,,,,,,,,,1,1
835
+ 841,ElecHeat,"Electric heater, recessed, cabinet type 120-277V, single pole",16,,rs-means,Unit,171213,,,,,,,,,,,,1,1
836
+ 842,ElecHeat,"Electric heater, recessed, cabinet type 120-277V, single pole",20,,rs-means,Unit,171214,,,,,,,,,,,,1,1
837
+ 843,ElecHeat,"Electric heater, recessed, cabinet type 120-277V, single pole",24,,rs-means,Unit,171215,,,,,,,,,,,,1,1
838
+ 845,ElectricBaseboard,"Electric heating, baseboard heater, 935 watt, 5' long",,,rs-means,Unit,171216,,,,,,,,,,,,1,1
839
+ 846,ElectTrace,"Electric heating, heat trace system, 400 degree, 115 V, 5 watts per LF",,,rs-means,Unit,171217,,,,,,,,,,,,1,1
840
+ 847,ElecUnitHeater,"Electric heating, unit heater, heavy duty, three phase, 208-240 volt, 5 kW, includes fan & mounting bracket",,,rs-means,Unit,171218,,,,,,,,,,,,1,1
841
+ 848,Wiring,"Wire, copper, solid, 600 volt, #14, type THWN-THHN, in raceway",14,,rs-means,Unit,181219,CLF,,,,,,,,,,,1,1
842
+ 849,Wiring,"Wire, copper, solid, 600 volt, #12, type THWN-THHN, in raceway",12,,rs-means,Unit,180140,CLF,,,,,,,,,,,1,1
843
+ 850,Wiring,"Wire, copper, solid, 600 volt, #10, type THWN-THHN, in raceway",10,,rs-means,Unit,180141,CLF,,,,,,,,,,,1,1
844
+ 851,Conduit,"Intermediate metal conduit, 1"" diameter, to 15' high, incl 2 terminations, 2 elbows, 11 beam clamps, and 11 couplings per 100 LF",,,rs-means,Unit,181220,L.F.,,,,,,,,,,,1,1
845
+ 852,Box,"Outlet boxes, pressed steel, concrete, set flush, 4"" deep",4,,rs-means,Unit,180143,,,,,,,,,,,,1,1
846
+ 853,Box,"Outlet boxes, pressed steel, concrete, plate, incl 3/8"" stud",1,,rs-means,Unit,180144,,,,,,,,,,,,1,1
847
+ 854,T-stat,"Thermostat, residential, hook-up, using low voltage wire, heating only, 25' of #18-3",,,rs-means,Unit,181221,,,,,,,,,,,,1,1
848
+ 859,TanklessGas,"Tankless water heater, gas/propane, 3.2 gpm (US), excludes venting",3.2,Gas,rs-means,Unit,171222,,,,,,,,,,,,1,1
849
+ 860,TanklessGas,"Tankless water heater, gas/propane, 6.4 gpm (US), excludes venting",6.4,Gas,rs-means,Unit,171223,,,,,,,,,,,,1,1
850
+ 861,TanklessGas,"Tankless water heater, gas/propane, 8.4 gpm (US), excludes venting",8.4,Gas,rs-means,Unit,171224,,,,,,,,,,,,1,1
851
+ 862,TanklessGas,"Tankless water heater, gas/propane, 9.5 gpm (US), excludes venting",9.5,Gas,rs-means,Unit,171225,,,,,,,,,,,,1,1
852
+ 863,TanklessElec,"Tankless water heater, electric, 6 gallon (US)",6,E,rs-means,Unit,171226,,,,,,,,,,,,1,1
853
+ 864,TanklessElec,"Tankless water heater, electric, 10 gallon (US)",10,E,rs-means,Unit,171227,,,,,,,,,,,,1,1
854
+ 865,TanklessElec,"Tankless water heater, electric, 15 gallon (US)",15,E,rs-means,Unit,171228,,,,,,,,,,,,1,1
855
+ 866,TanklessElec,"Tankless water heater, electric, 20 gallon (US)",20,E,rs-means,Unit,171229,,,,,,,,,,,,1,1
856
+ 867,TanklessElec,"Tankless water heater, electric, 30 gallon (US)",30,E,rs-means,Unit,171230,,,,,,,,,,,,1,1
857
+ 868,WaterResElec,"Residential water heater, electric, single element, 10 gallon (US)",10,E,rs-means,Unit,171231,,,,,,,,,,,,1,1
858
+ 869,WaterResElec,"Residential water heater, electric, single element, 20 gallon (US)",20,E,rs-means,Unit,171232,,,,,,,,,,,,1,1
859
+ 870,WaterResElec,"Residential water heater, electric, double element, 30 gallon (US)",30,E,rs-means,Unit,171233,,,,,,,,,,,,1,1
860
+ 871,WaterResElec,"Residential water heater, electric, double element, 40 gallon (US)",40,E,rs-means,Unit,171234,,,,,,,,,,,,1,1
861
+ 872,WaterResElec,"Residential water heater, electric, double element, 52 gallon (US)",52,E,rs-means,Unit,171235,,,,,,,,,,,,1,1
862
+ 873,WaterResElec,"Residential water heater, electric, double element, 66 gallon (US)",66,E,rs-means,Unit,171236,,,,,,,,,,,,1,1
863
+ 874,WaterResElec,"Residential water heater, electric, double element, 80 gallon (US)",80,E,rs-means,Unit,171237,,,,,,,,,,,,1,1
864
+ 875,WaterResElec,"Residential water heater, electric, double element, 120 gallon (US)",120,E,rs-means,Unit,171238,,,,,,,,,,,,1,1
865
+ 876,WaterResGas,"Residential atmospheric water heater, gas 30 gallon (US) excludes vent",30,Gas,rs-means,Unit,171239,,,,,,,,,,,,1,1
866
+ 877,WaterResGas,"Residential atmospheric water heater, gas 40 gallon (US) excludes vent",40,Gas,rs-means,Unit,171240,,,,,,,,,,,,1,1
867
+ 878,WaterResGas,"Residential atmospheric water heater, gas 50 gallon (US) excludes vent",50,Gas,rs-means,Unit,171241,,,,,,,,,,,,1,1
868
+ 879,WaterResGas,"Residential atmospheric water heater, gas 60 gallon (US) excludes vent",60,Gas,rs-means,Unit,171242,,,,,,,,,,,,1,1
869
+ 880,WaterResGas,"Residential atmospheric water heater, gas 75 gallon (US) excludes vent",75,Gas,rs-means,Unit,171243,,,,,,,,,,,,1,1
870
+ 881,WaterResGas,"Residential atmospheric water heater, gas 100 gallon (US) excludes vent",100,Gas,rs-means,Unit,171244,,,,,,,,,,,,1,1
871
+ 882,WaterResOil,"Residential Oil fired water heater, 30 gallon (US) excludes vent",30,Oil,rs-means,Unit,171245,,,,,,,,,,,,1,1
872
+ 883,WaterResOil,"Residential Oil fired water heater, 50 gallon (US) excludes vent",50,Oil,rs-means,Unit,171246,,,,,,,,,,,,1,1
873
+ 884,WaterResOil,"Residential Oil fired water heater, 70 gallon (US) excludes vent",70,Oil,rs-means,Unit,171247,,,,,,,,,,,,1,1
874
+ 885,WaterElec,"Commercial electric water heater, 100F degree rise, 9 kW, 37 gph (US), 208 V, 50 gallon (US)",9,50,rs-means,Unit,171248,,,,,,,,,,,,1,1
875
+ 886,WaterElec,"Commercial electric water heater, 100F degree rise, 36 kW, 148 gph (US), 208 V, 50 gallon (US)",36,50,rs-means,Unit,171249,,,,,,,,,,,,1,1
876
+ 887,WaterElec,"Commercial electric water heater, 100F degree rise, 12 kW, 49 gph (US), 208 V, 80 gallon (US)",12,80,rs-means,Unit,171250,,,,,,,,,,,,1,1
877
+ 888,WaterElec,"Commercial electric water heater, 100F degree rise, 36 kW, 148 gph (US), 208 V, 80 gallon (US)",36,80,rs-means,Unit,171251,,,,,,,,,,,,1,1
878
+ 889,WaterElec,"Commercial electric water heater, 100F degree rise, 36 kW, 148 gph (US), 208 V, 100 gallon (US)",36,100,rs-means,Unit,171252,,,,,,,,,,,,1,1
879
+ 890,WaterElec,"Commercial electric water heater, 100F degree rise, 36 kW, 148 gph (US), 208 V, 120 gallon (US)",36,120,rs-means,Unit,171253,,,,,,,,,,,,1,1
880
+ 891,WaterElec,"Commercial electric water heater, 100F degree rise, 15 kW, 61 gph (US), 480 V, 150 gallon (US)",15,150,rs-means,Unit,171254,,,,,,,,,,,,1,1
881
+ 892,WaterElec,"Commercial electric water heater, 100F degree rise, 120 kW, 490 gph (US), 480 V, 150 gallon (US)",120,150,rs-means,Unit,171255,,,,,,,,,,,,1,1
882
+ 893,WaterElec,"Commercial electric water heater, 100F degree rise, 15 kW, 61 gph (US), 480 V, 200 gallon (US)",15,200,rs-means,Unit,171256,,,,,,,,,,,,1,1
883
+ 894,WaterElec,"Commercial electric water heater, 100F degree rise, 120 kW, 490 gph (US), 480 V, 200 gallon (US)",120,200,rs-means,Unit,171257,,,,,,,,,,,,1,1
884
+ 895,WaterElec,"Commercial electric water heater, 100F degree rise, 15 kW, 61 gph (US), 480 V, 250 gallon (US)",15,250,rs-means,Unit,171258,,,,,,,,,,,,1,1
885
+ 896,WaterElec,"Commercial electric water heater, 100F degree rise, 150 kW, 615 gph (US), 480 V, 250 gallon (US)",150,250,rs-means,Unit,171259,,,,,,,,,,,,1,1
886
+ 897,WaterElec,"Commercial electric water heater, 100F degree rise, 30 kW, 123 gph (US), 480 V, 300 gallon (US)",30,300,rs-means,Unit,171260,,,,,,,,,,,,1,1
887
+ 898,WaterElec,"Commercial electric water heater, 100F degree rise, 180 kW, 738 gph (US), 480 V, 300 gallon (US)",180,300,rs-means,Unit,171261,,,,,,,,,,,,1,1
888
+ 899,WaterElec,"Commercial electric water heater, 100F degree rise, 30 kW, 123 gph (US), 480 V, 350 gallon (US)",30,350,rs-means,Unit,171262,,,,,,,,,,,,1,1
889
+ 900,WaterElec,"Commercial electric water heater, 100F degree rise, 180 kW, 738 gph (US), 480 V, 350 gallon (US)",180,350,rs-means,Unit,171263,,,,,,,,,,,,1,1
890
+ 901,WaterElec,"Commercial electric water heater, 100F degree rise, 30 kW, 123 gph (US), 480 V, 400 gallon (US)",30,400,rs-means,Unit,171264,,,,,,,,,,,,1,1
891
+ 902,WaterElec,"Commercial electric water heater, 100F degree rise, 180 kW, 860 gph (US), 480 V, 400 gallon (US)",210,400,rs-means,Unit,171265,,,,,,,,,,,,1,1
892
+ 903,WaterElec,"Commercial electric water heater, 100F degree rise, 30 kW, 123 gph (US), 480 V, 500 gallon (US)",30,500,rs-means,Unit,171266,,,,,,,,,,,,1,1
893
+ 904,WaterElec,"Commercial electric water heater, 100F degree rise, 240 kW, 984 gph (US), 480 V, 500 gallon (US)",240,500,rs-means,Unit,171267,,,,,,,,,,,,1,1
894
+ 905,WaterElec,"Commercial electric water heater, 100F degree rise, 30 kW, 123 gph (US), 480 V, 600 gallon (US)",30,600,rs-means,Unit,171268,,,,,,,,,,,,1,1
895
+ 906,WaterElec,"Commercial electric water heater, 100F degree rise, 300 kW, 1230 gph (US), 480 V, 600 gallon (US)",300,600,rs-means,Unit,171269,,,,,,,,,,,,1,1
896
+ 907,WaterElec,"Commercial electric water heater, 100F degree rise, 30 kW, 123 gph (US), 480 V, 700 gallon (US)",30,700,rs-means,Unit,171270,,,,,,,,,,,,1,1
897
+ 908,WaterElec,"Commercial electric water heater, 100F degree rise, 300 kW, 1230 gph (US), 480 V, 700 gallon (US)",300,700,rs-means,Unit,171271,,,,,,,,,,,,1,1
898
+ 909,WaterElec,"Commercial electric water heater, 100F degree rise, 60 kW, 245 gph (US), 480 V, 800 gallon (US)",60,800,rs-means,Unit,171272,,,,,,,,,,,,1,1
899
+ 910,WaterElec,"Commercial electric water heater, 100F degree rise, 300 kW, 1230 gph (US), 480 V, 800 gallon (US)",300,800,rs-means,Unit,171273,,,,,,,,,,,,1,1
900
+ 911,WaterElec,"Commercial electric water heater, 100F degree rise, 60 kW, 245 gph (US), 480 V, 1000 gallon (US)",60,1000,rs-means,Unit,171274,,,,,,,,,,,,1,1
901
+ 912,WaterElec,"Commercial electric water heater, 100F degree rise, 480 kW, 1970 gph (US), 480 V, 1000 gallon (US)",480,1000,rs-means,Unit,171275,,,,,,,,,,,,1,1
902
+ 913,WaterElec,"Commercial electric water heater, 100F degree rise, 60 kW, 245 gph (US), 480 V, 1200 gallon (US)",60,1200,rs-means,Unit,171276,,,,,,,,,,,,1,1
903
+ 914,WaterElec,"Commercial electric water heater, 100F degree rise, 480 kW, 1970 gph (US), 480 V, 1200 gallon (US)",480,1200,rs-means,Unit,171277,,,,,,,,,,,,1,1
904
+ 915,WaterElec,"Commercial electric water heater, 100F degree rise, 60 kW, 245 gph (US), 480 V, 1500 gallon (US)",60,1500,rs-means,Unit,171278,,,,,,,,,,,,1,1
905
+ 916,WaterElec,"Commercial electric water heater, 100F degree rise, 480 kW, 1970 gph (US), 480 V, 1500 gallon (US)",480,1500,rs-means,Unit,171279,,,,,,,,,,,,1,1
906
+ 917,WaterGas,"Commercial gas water heater, 22 kW, 73 gph (US), excludes vent",22,,rs-means,Unit,171280,,,,,,,,,,,,1,1
907
+ 918,WaterGas,"Commercial gas water heater, 29 kW, 95 gph (US), excludes vent",29,,rs-means,Unit,171281,,,,,,,,,,,,1,1
908
+ 919,WaterGas,"Commercial gas water heater, 35 kW, 110 gph (US), excludes vent",35,,rs-means,Unit,171282,,,,,,,,,,,,1,1
909
+ 920,WaterGas,"Commercial gas water heater, 35 kW, 115 gph (US), excludes vent",35,,rs-means,Unit,171283,,,,,,,,,,,,1,1
910
+ 921,WaterGas,"Commercial gas water heater, 41 kW, 130 gph (US), excludes vent",41,,rs-means,Unit,171284,,,,,,,,,,,,1,1
911
+ 922,WaterGas,"Commercial gas water heater, 45 kW, 150 gph (US), excludes vent",45,,rs-means,Unit,171285,,,,,,,,,,,,1,1
912
+ 923,WaterGas,"Commercial gas water heater, 53 kW, 170 gph (US), excludes vent",53,,rs-means,Unit,171286,,,,,,,,,,,,1,1
913
+ 924,WaterGas,"Commercial gas water heater, 59 kW, 192 gph (US), excludes vent",59,,rs-means,Unit,171287,,,,,,,,,,,,1,1
914
+ 925,WaterGas,"Commercial gas water heater, 73 kW, 245 gph (US), excludes vent",73,,rs-means,Unit,171288,,,,,,,,,,,,1,1
915
+ 926,WaterGas,"Commercial gas water heater, 76 kW, 250 gph (US), excludes vent",76,,rs-means,Unit,171289,,,,,,,,,,,,1,1
916
+ 927,WaterGas,"Commercial gas water heater, 106 kW, 360 gph (US), excludes vent",106,,rs-means,Unit,171290,,,,,,,,,,,,1,1
917
+ 928,WaterGas,"Commercial gas water heater, 147 kW, 480 gph (US), excludes vent",147,,rs-means,Unit,171291,,,,,,,,,,,,1,1
918
+ 929,WaterGas,"Commercial gas water heater, 212 kW, 690 gph (US), excludes vent",212,,rs-means,Unit,171292,,,,,,,,,,,,1,1
919
+ 930,WaterOil,"Commerical oil-fired water heater, 41 kW, 135 gph (US), 140 gallons (US)",41,140,rs-means,Unit,171293,,,,,,,,,,,,1,1
920
+ 931,WaterOil,"Commerical oil-fired water heater, 58 kW, 191 gph (US), 140 gallons (US)",58,140,rs-means,Unit,171294,,,,,,,,,,,,1,1
921
+ 932,WaterOil,"Commerical oil-fired water heater, 75 kW, 247 gph (US), 140 gallons (US)",75,140,rs-means,Unit,171295,,,,,,,,,,,,1,1
922
+ 933,WaterOil,"Commerical oil-fired water heater, 79 kW, 259 gph (US), 140 gallons (US)",79,140,rs-means,Unit,171296,,,,,,,,,,,,1,1
923
+ 934,WaterOil,"Commerical oil-fired water heater, 117 kW, 384 gph (US), 140 gallons (US)",117,140,rs-means,Unit,171297,,,,,,,,,,,,1,1
924
+ 935,WaterOil,"Commerical oil-fired water heater, 158 kW, 519 gph (US), 140 gallons (US)",158,140,rs-means,Unit,171298,,,,,,,,,,,,1,1
925
+ 936,WaterOil,"Commerical oil-fired water heater, 211 kW, 691 gph (US), 140 gallons (US)",211,140,rs-means,Unit,171299,,,,,,,,,,,,1,1
926
+ 937,WaterOil,"Commerical oil-fired water heater, 88 kW, 288 gph (US), 221 gallons (US)",88,221,rs-means,Unit,171300,,,,,,,,,,,,1,1
927
+ 938,WaterOil,"Commerical oil-fired water heater,175.8 kW, 576 gph (US), 221 gallons (US)",175.8,221,rs-means,Unit,171301,,,,,,,,,,,,1,1
928
+ 939,WaterOil,"Commerical oil-fired water heater, 234.4 kW, 768 gph (US), 221 gallons (US)",234.4,221,rs-means,Unit,171302,,,,,,,,,,,,1,1
929
+ 940,WaterOil,"Commerical oil-fired water heater, 292 kW, 960 gph (US), 201 gallons (US)",293,201,rs-means,Unit,171303,,,,,,,,,,,,1,1
930
+ 941,WaterOil,"Commerical oil-fired water heater, 366 kW, 1200 gph (US), 201 gallons (US)",366,201,rs-means,Unit,171304,,,,,,,,,,,,1,1
931
+ 942,WaterOil,"Commerical oil-fired water heater, 440 kW, 1441 gph (US), 201 gallons (US)",440,201,rs-means,Unit,171305,,,,,,,,,,,,1,1
932
+ 943,WaterOil,"Commerical oil-fired water heater, 175.8 kW, 576 gph (US), 411 gallons (US)",175.8,411,rs-means,Unit,171306,,,,,,,,,,,,1,1
933
+ 944,WaterOil,"Commerical oil-fired water heater, 234 kW, 768 gph (US), 411 gallons (US)",234,411,rs-means,Unit,171307,,,,,,,,,,,,1,1
934
+ 945,WaterOil,"Commerical oil-fired water heater, 293 kW, 960 gph (US), 411 gallons (US)",293,411,rs-means,Unit,171308,,,,,,,,,,,,1,1
935
+ 946,WaterOil,"Commerical oil-fired water heater, 366 kW, 1200 gph (US), 411 gallons (US)",366,411,rs-means,Unit,171309,,,,,,,,,,,,1,1
936
+ 947,WaterOil,"Commerical oil-fired water heater, 440 kW, 1441 gph (US), 397 gallons (US)",440,397,rs-means,Unit,171310,,,,,,,,,,,,1,1
937
+ 948,WaterOil,"Commerical oil-fired water heater, 513 kW, 1681 gph (US), 397 gallons (US)",513,397,rs-means,Unit,171311,,,,,,,,,,,,1,1
938
+ 949,WaterOil,"Commerical oil-fired water heater, 586 kW, 1921 gph (US), 397 gallons (US)",586,397,rs-means,Unit,171312,,,,,,,,,,,,1,1
939
+ 950,WaterOil,"Commerical oil-fired water heater, 659 kW, 2161 gph (US), 375 gallons (US)",659,375,rs-means,Unit,171313,,,,,,,,,,,,1,1
940
+ 951,WaterOil,"Commerical oil-fired water heater, 732.5 kW, 2401 gph (US), 375 gallons (US)",732.5,375,rs-means,Unit,171314,,,,,,,,,,,,1,1
941
+ 952,Airtowaterhp,"Air to water heat pump, single package, excludes storage tank, 35.5 MBH water heating, 2.3 ton cooling air",10.404022991199087,8.0887619,rs-means,Unit,171315,each,,,,,,,,,,,1,1
942
+ 953,Airtowaterhp,"Air to water heat pump, single package, excludes storage tank, 58 MBH water heating, 3.8 ton cooling air",16.998122070128087,13.364041399999998,rs-means,Unit,171316,each,,,,,,,,,,,1,1
943
+ 954,Airtowaterhp,"Air to water heat pump, single package, excludes storage tank, 76 MBH water heating, 4.9 ton cooling air",22.273401333271284,17.2325797,rs-means,Unit,171317,each,,,,,,,,,,,1,1
944
+ 955,Airtowaterhp,"Air to water heat pump, single package, excludes storage tank, 98 MBH water heating, 6.5 ton cooling air",28.720964877112973,22.8595445,rs-means,Unit,171318,each,,,,,,,,,,,1,1
945
+ 956,Airtowaterhp,"Air to water heat pump, single package, excludes storage tank, 113 MBH water heating, 7.4 ton cooling air",33.1170309297323,26.0247122,rs-means,Unit,171319,each,,,,,,,,,,,1,1
946
+ 957,Airtowaterhp,"Air to water heat pump, single package, excludes storage tank, 142 MBH water heating, 9.2 ton cooling air",41.61609196479635,32.3550476,rs-means,Unit,171320,each,,,,,,,,,,,1,1
947
+ 958,Airtowaterhp,"Air to water heat pump, single package, excludes storage tank, 171 MBH water heating, 11.1 ton cooling air",50.11515299986039,39.037068299999994,rs-means,Unit,171321,each,,,,,,,,,,,1,1
948
+ 959,ERV,Packaged ERV wheel with controls,1000,,rs-means,Unit,171322,each,,,,,,,,,,,1,1
949
+ 960,ERV,Packaged ERV wheel with controls,2000,,rs-means,Unit,171323,each,,,,,,,,,,,1,1
950
+ 961,ERV,Packaged ERV wheel with controls,4000,,rs-means,Unit,171324,each,,,,,,,,,,,1,1
951
+ 962,ERV,Packaged ERV wheel with controls,6000,,rs-means,Unit,171325,each,,,,,,,,,,,1,1
952
+ 963,ERV,Packaged ERV wheel with controls,8000,,rs-means,Unit,171326,each,,,,,,,,,,,1,1
953
+ 964,ERV,Packaged ERV wheel with controls,10000,,rs-means,Unit,171327,each,,,,,,,,,,,1,1
954
+ 965,ERV,Packaged ERV wheel with controls,20000,,rs-means,Unit,171328,each,,,,,,,,,,,1,1
955
+ 966,ERV,Packaged ERV wheel with controls,25000,,rs-means,Unit,171329,each,,,,,,,,,,,1,1
956
+ 967,ERV,Packaged ERV wheel with controls,30000,,rs-means,Unit,171330,each,,,,,,,,,,,1,1
957
+ 968,ERV,Packaged ERV wheel with controls,40000,,rs-means,Unit,171331,each,,,,,,,,,,,1,1
958
+ 969,ERV,Packaged ERV wheel with controls,50000,,rs-means,Unit,171332,each,,,,,,,,,,,1,1
959
+ 970,HeatPipe,"Air to Air Heat Pipe Heat Exchanger, Glycol, 50% efficient, 100 MBTUH (29 kW)",1700,,rs-means,Unit,171333,each,,,,,,,,,,,1,1
960
+ 971,HeatPipe,"Air to Air Heat Pipe Heat Exchanger, Glycol, 50% efficient, 160 MBTUH (47 kW)",2700,,rs-means,Unit,171334,each,,,,,,,,,,,1,1
961
+ 972,HeatPipe,"Air to Air Heat Pipe Heat Exchanger, Glycol, 50% efficient, 620 MBTUH (182 kW)",4000,,rs-means,Unit,171335,each,,,,,,,,,,,1,1
962
+ 973,ValvesGate,"Valves, bronze, gate, non-rising stem, threaded, class 150, 1/4""",0.25,,rs-means,Unit,171336,each,,,,,,,,,,,1,1
963
+ 974,ValvesGate,"Valves, bronze, gate, non-rising stem, threaded, class 150, 3/8""",0.33,,rs-means,Unit,171337,each,,,,,,,,,,,1,1
964
+ 975,ValvesGate,"Valves, bronze, gate, non-rising stem, threaded, class 150, 1/2""",0.5,,rs-means,Unit,171338,each,,,,,,,,,,,1,1
965
+ 976,ValvesGate,"Valves, bronze, gate, non-rising stem, threaded, class 150, 2.5""",2.5,,rs-means,Unit,171339,each,,,,,,,,,,,1,1
966
+ 977,ValvesGate,"Valves, bronze, gate, non-rising stem, threaded, class 150, 3""",3,,rs-means,Unit,171340,each,,,,,,,,,,,1,1
967
+ 978,Shutoff,"Valve, brass, ball, shut-off with a union connection, threaded with strainer (diameter in inches)",0.5,,rs-means,Unit,171341,each,,,,,,,,,,,1,1
968
+ 979,Shutoff,"Valve, brass, ball, shut-off with a union connection, threaded with strainer (diameter in inches)",0.75,,rs-means,Unit,171342,each,,,,,,,,,,,1,1
969
+ 980,Shutoff,"Valve, brass, ball, shut-off with a union connection, threaded with strainer (diameter in inches)",1,,rs-means,Unit,171343,each,,,,,,,,,,,1,1
970
+ 981,Shutoff,"Valve, brass, ball, shut-off with a union connection, threaded with strainer (diameter in inches)",1.25,,rs-means,Unit,171344,each,,,,,,,,,,,1,1
971
+ 982,Shutoff,"Valve, brass, ball, shut-off with a union connection, threaded with strainer (diameter in inches)",1.5,,rs-means,Unit,171345,each,,,,,,,,,,,1,1
972
+ 983,Shutoff,"Valve, brass, ball, shut-off with a union connection, threaded with strainer (diameter in inches)",2,,rs-means,Unit,171346,each,,,,,,,,,,,1,1
973
+ 984,PipeInsulation,"Insulation, pipe covering (price copper tube one size less than I.P.S.), fiberglass with all service jacket, 1"" wall, 1/2"" iron pipe size",0.5,,rs-means,Unit,171347,L.F.,,,,,,,,,,,1,1
974
+ 985,FlexPipe,"Stainless steel braided, threaded on both ends ( 12 inches long, diameter in inches) ",0.5,,rs-means,Unit,171348,each,,,,,,,,,,,1,1
975
+ 986,FlexPipe,"Stainless steel braided, threaded on both ends ( 12 inches long, diameter in inches) ",0.75,,rs-means,Unit,171349,each,,,,,,,,,,,1,1
976
+ 987,FlexPipe,"Stainless steel braided, threaded on both ends ( 12 inches long, diameter in inches) ",1,,rs-means,Unit,171350,each,,,,,,,,,,,1,1
977
+ 988,FlexPipe,"Stainless steel braided, threaded on both ends ( 12 inches long, diameter in inches) ",1.25,,rs-means,Unit,171351,each,,,,,,,,,,,1,1
978
+ 989,CopperPipeTee,"Tee, copper, wrought, copper x copper, 1/2""",0.5,,rs-means,Unit,171352,each,,,,,,,,,,,1,1
979
+ 990,SteelPipeElbow,"Elbow, 90 Deg., steel, malleable iron, black, straight, threaded, 150 lb., 3""",3,,rs-means,Unit,171353,each,,,,,,,,,,,1,1
980
+ 991,SteelPipeElbow,"Elbow, 90 Deg., steel, malleable iron, black, straight, threaded, 150 lb., 3-1/2""",3.5,,rs-means,Unit,171354,each,,,,,,,,,,,1,1
981
+ 992,SteelPipeElbow,"Elbow, 90 Deg., steel, malleable iron, black, straight, threaded, 150 lb., 4""",4,,rs-means,Unit,171355,each,,,,,,,,,,,1,1
982
+ 993,SteelPipeTee,"Tee, steel, malleable iron, black, straight, threaded, 150 lb., 1/2""",0.5,,rs-means,Unit,171356,each,,,,,,,,,,,1,1
983
+ 994,SteelPipeTee,"Tee, steel, malleable iron, black, straight, threaded, 150 lb., 3""",3,,rs-means,Unit,171357,each,,,,,,,,,,,1,1
984
+ 995,SteelPipeTee,"Tee, steel, malleable iron, black, straight, threaded, 150 lb., 3-1/2""",3.5,,rs-means,Unit,171358,each,,,,,,,,,,,1,1
985
+ 996,SteelPipeTee,"Tee, steel, malleable iron, black, straight, threaded, 150 lb., 4""",4,,rs-means,Unit,171359,each,,,,,,,,,,,1,1
986
+ 997,SteelPipeTeeRed,"Tee, steel, malleable iron, black, reducing on the outlet, threaded, 150 lb., 1/5""",0.5,,rs-means,Unit,171360,each,,,,,,,,,,,1,1
987
+ 998,SteelPipeTeeRed,"Tee, steel, malleable iron, black, reducing on the outlet, threaded, 150 lb., 1-1/4""",1.25,,rs-means,Unit,171361,each,,,,,,,,,,,1,1
988
+ 999,SteelPipeTeeRed,"Tee, steel, malleable iron, black, reducing on the outlet, threaded, 150 lb., 1-1/2""",1.5,,rs-means,Unit,171362,each,,,,,,,,,,,1,1
989
+ 1000,SteelPipeTeeRed,"Tee, steel, malleable iron, black, reducing on the outlet, threaded, 150 lb., 2-1/2""",2.5,,rs-means,Unit,171363,each,,,,,,,,,,,1,1
990
+ 1001,SteelPipeTeeRed,"Tee, steel, malleable iron, black, reducing on the outlet, threaded, 150 lb., 3""",3,,rs-means,Unit,171364,each,,,,,,,,,,,1,1
991
+ 1002,SteelPipeTeeRed,"Tee, steel, malleable iron, black, reducing on the outlet, threaded, 150 lb., 3-1/2""",3.5,,rs-means,Unit,171365,each,,,,,,,,,,,1,1
992
+ 1003,SteelPipeTeeRed,"Tee, steel, malleable iron, black, reducing on the outlet, threaded, 150 lb., 4""",4,,rs-means,Unit,171366,each,,,,,,,,,,,1,1
993
+ 1004,SteelPipeRed,"Reducer, steel, malleable iron, black, concentric, threaded, 150 lb., 1/2""",0.5,,rs-means,Unit,171367,each,,,,,,,,,,,1,1
994
+ 1005,SteelPipeRed,"Reducer, steel, malleable iron, black, concentric, threaded, 150 lb., 1""",1,,rs-means,Unit,171368,each,,,,,,,,,,,1,1
995
+ 1006,SteelPipeRed,"Reducer, steel, malleable iron, black, concentric, threaded, 150 lb., 1-1/2""",1.5,,rs-means,Unit,171369,each,,,,,,,,,,,1,1
996
+ 1007,SteelPipeRed,"Reducer, steel, malleable iron, black, concentric, threaded, 150 lb., 2-1/2""",2.5,,rs-means,Unit,171370,each,,,,,,,,,,,1,1
997
+ 1008,SteelPipeRed,"Reducer, steel, malleable iron, black, concentric, threaded, 150 lb., 3""",3,,rs-means,Unit,171371,each,,,,,,,,,,,1,1
998
+ 1009,SteelPipeRed,"Reducer, steel, malleable iron, black, concentric, threaded, 150 lb., 3-1/2""",3.5,,rs-means,Unit,171372,each,,,,,,,,,,,1,1
999
+ 1010,SteelPipeRed,"Reducer, steel, malleable iron, black, concentric, threaded, 150 lb., 4""",4,,rs-means,Unit,171373,each,,,,,,,,,,,1,1
1000
+ 1011,SteelPipeCap,"Cap, steel, malleable iron, black, threaded, 150 lb., 1/2""",0.5,,rs-means,Unit,171374,each,,,,,,,,,,,1,1
1001
+ 1012,SteelPipeCap,"Cap, steel, malleable iron, black, threaded, 150 lb., 1""",1,,rs-means,Unit,171375,each,,,,,,,,,,,1,1
1002
+ 1013,SteelPipeCap,"Cap, steel, malleable iron, black, threaded, 150 lb., 1-1/2""",1.5,,rs-means,Unit,171376,each,,,,,,,,,,,1,1
1003
+ 1014,SteelPipeCap,"Cap, steel, malleable iron, black, threaded, 150 lb., 2""",2,,rs-means,Unit,171377,each,,,,,,,,,,,1,1
1004
+ 1015,SteelPipeUnion,"Union, steel, malleable iron, black, with brass seat, threaded, 150 lb., 1/2""",0.5,,rs-means,Unit,171378,each,,,,,,,,,,,1,1
1005
+ 1016,SteelPipeUnion,"Union, steel, malleable iron, black, with brass seat, threaded, 150 lb., 3""",3,,rs-means,Unit,171379,each,,,,,,,,,,,1,1
1006
+ 1017,CSteelElbow,"Elbow, 90 Deg., steel, carbon steel, black, long radius, butt weld, standard weight, 3/4"" pipe size, includes 1 weld per joint and weld machine",0.75,,rs-means,Unit,171380,each,,,,,,,,,,,1,1
1007
+ 1018,CSteelElbow,"Elbow, 90 Deg., steel, carbon steel, black, long radius, butt weld, standard weight, 1"" pipe size, includes 1 weld per joint and weld machine",1,,rs-means,Unit,171381,each,,,,,,,,,,,1,1
1008
+ 1019,CSteelElbow,"Elbow, 90 Deg., steel, carbon steel, black, long radius, butt weld, standard weight, 1-1/2"" pipe size, includes 1 weld per joint and weld machine",1.5,,rs-means,Unit,171382,each,,,,,,,,,,,1,1
1009
+ 1020,CSteelElbow,"Elbow, 90 Deg., steel, carbon steel, black, long radius, butt weld, standard weight, 2"" pipe size, includes 1 weld per joint and weld machine",2,,rs-means,Unit,171383,each,,,,,,,,,,,1,1
1010
+ 1021,CSteelElbow,"Elbow, 90 Deg., steel, carbon steel, black, long radius, butt weld, standard weight, 3"" pipe size, includes 1 weld per joint and weld machine",3,,rs-means,Unit,171384,each,,,,,,,,,,,1,1
1011
+ 1022,CSteelRed,"Reducer, steel, carbon steel, black, eccentric, butt weld, standard weight, 2"" pipe size, includes 1 weld per joint and weld machine",2,,rs-means,Unit,171385,each,,,,,,,,,,,1,1
1012
+ 1023,CSteelRed,"Reducer, steel, carbon steel, black, eccentric, butt weld, standard weight, 3"" pipe size, includes 1 weld per joint and weld machine",3,,rs-means,Unit,171386,each,,,,,,,,,,,1,1
1013
+ 1024,CSteelRed,"Reducer, steel, carbon steel, black, eccentric, butt weld, standard weight, 4"" pipe size, includes 1 weld per joint and weld machine",4,,rs-means,Unit,171387,each,,,,,,,,,,,1,1
1014
+ 1025,CSteelTee,"Tee, steel, carbon steel, black, reducing on the outlet, butt weld, standard weight, 3"" x 2-1/2"" pipe size, includes 1 weld per joint and weld machine",3,,rs-means,Unit,171388,each,,,,,,,,,,,1,1
1015
+ 1026,CSteelTee,"Tee, steel, carbon steel, black, reducing on the outlet, butt weld, standard weight, 4"" x 3"" pipe size, includes 1 weld per joint and weld machine",4,,rs-means,Unit,171389,each,,,,,,,,,,,1,1
1016
+ 1027,CSteelNozzle,"Nozzle, steel, T-O-L, weld-on, 1"" pipe size, includes 1 weld per joint and weld machine",1,,rs-means,Unit,171390,each,,,,,,,,,,,1,1
1017
+ 1028,CSteelNozzle,"Nozzle, steel, T-O-L, weld-on, 1-1/4"" pipe size, includes 1 weld per joint and weld machine",1.25,,rs-means,Unit,171391,each,,,,,,,,,,,1,1
1018
+ 1029,CSteelNozzle,"Nozzle, steel, T-O-L, weld-on, 1-1/2"" pipe size, includes 1 weld per joint and weld machine",1.5,,rs-means,Unit,171392,each,,,,,,,,,,,1,1
1019
+ 1030,CSteelNozzle,"Nozzle, steel, T-O-L, weld-on, 2"" pipe size, includes 1 weld per joint and weld machine",2,,rs-means,Unit,171393,each,,,,,,,,,,,1,1
1020
+ 1031,CSteelNozzle,"Nozzle, steel, T-O-L, weld-on, 2-1/2"" pipe size, includes 1 weld per joint and weld machine",2.5,,rs-means,Unit,171394,each,,,,,,,,,,,1,1
1021
+ 1032,CSteelNozzle,"Nozzle, steel, T-O-L, weld-on, 4"" pipe size, includes 1 weld per joint and weld machine",4,,rs-means,Unit,171395,each,,,,,,,,,,,1,1
1022
+ 1033,SteelFlange,"Flange, steel, forged steel, weld neck, 150 lb., 1/2"" pipe size, includes 1 weld per joint and weld machine",0.5,,rs-means,Unit,171396,each,,,,,,,,,,,1,1
1023
+ 1034,SteelFlange,"Flange, steel, forged steel, weld neck, 150 lb., 3/4"" pipe size, includes 1 weld per joint and weld machine",0.75,,rs-means,Unit,171397,each,,,,,,,,,,,1,1
1024
+ 1035,SteelFlange,"Flange, steel, forged steel, weld neck, 150 lb., 1"" pipe size, includes 1 weld per joint and weld machine",1,,rs-means,Unit,171398,each,,,,,,,,,,,1,1
1025
+ 1036,SteelFlange,"Flange, steel, forged steel, weld neck, 150 lb., 1-1/4"" pipe size, includes 1 weld per joint and weld machine",1.25,,rs-means,Unit,171399,each,,,,,,,,,,,1,1
1026
+ 1037,SteelFlange,"Flange, steel, forged steel, weld neck, 150 lb., 1-1/2"" pipe size, includes 1 weld per joint and weld machine",1.5,,rs-means,Unit,171400,each,,,,,,,,,,,1,1
1027
+ 1038,SteelFlange,"Flange, steel, forged steel, weld neck, 150 lb., 2"" pipe size, includes 1 weld per joint and weld machine",2,,rs-means,Unit,171401,each,,,,,,,,,,,1,1
1028
+ 1039,SteelFlange,"Flange, steel, forged steel, weld neck, 150 lb., 3"" pipe size, includes 1 weld per joint and weld machine",3,,rs-means,Unit,171402,each,,,,,,,,,,,1,1
1029
+ 1040,Strainers,"Strainer, Y type, bronze body, flanged, 150 lb., 4"" pipe size, flanged",4,,rs-means,Unit,171403,each,,,,,,,,,,,1,1
1030
+ 1041,CircuitSetter,"Circuit setter balance valve, bronze body, threaded, 3"" pipe size",3,,rs-means,Unit,171404,each,,,,,,,,,,,1,1
1031
+ 1042,DuctInsulation,"Duct thermal insulation, blanket type, fiberglass, flexible, FSK vapor barrier wrap, .75 lb. density, 2"" thick",2,,rs-means,Unit,171405,ft2,,,,,,,,,,,1,1
1032
+ 1043,DuctInsulation,"Duct thermal insulation, blanket type, fiberglass, flexible, FSK vapor barrier wrap, .75 lb. density, 3"" thick",3,,rs-means,Unit,171406,ft2,,,,,,,,,,,1,1
1033
+ 1044,DuctInsulation,"Duct thermal insulation, blanket type, fiberglass, flexible, FSK vapor barrier wrap, .75 lb. density, 4"" thick",4,,rs-means,Unit,171407,ft2,,,,,,,,,,,1,1
1034
+ 1045,Ductwork-S,4 inches galvanized steel 26 ga,4,,rs-means,Unit,171408,L.F.,,,,,,,,,,,1,1
1035
+ 1046,Ductwork-S,5 inches galvanized steel 26 ga,5,,rs-means,Unit,171409,L.F.,,,,,,,,,,,1,1
1036
+ 1047,Ductwork-S,6 inches galvanized steel 26 ga,6,,rs-means,Unit,171410,L.F.,,,,,,,,,,,1,1
1037
+ 1048,Ductwork-S,7 inches galvanized steel 26 ga,7,,rs-means,Unit,171411,L.F.,,,,,,,,,,,1,1
1038
+ 1049,Ductwork-S,8 inches galvanized steel 26 ga,8,,rs-means,Unit,171412,L.F.,,,,,,,,,,,1,1
1039
+ 1050,Ductwork-S,10 inches galvanized steel 26 ga,10,,rs-means,Unit,171413,L.F.,,,,,,,,,,,1,1
1040
+ 1051,Ductwork-S,12 inches galvanized steel 26 ga,12,,rs-means,Unit,171414,L.F.,,,,,,,,,,,1,1
1041
+ 1052,Ductwork-S,14 inches galvanized steel 26 ga,14,,rs-means,Unit,171415,L.F.,,,,,,,,,,,1,1
1042
+ 1053,Ductwork-S,16 inches galvanized steel 26 ga,16,,rs-means,Unit,171416,L.F.,,,,,,,,,,,1,1
1043
+ 1054,Ductwork-S,18 inches galvanized steel 26 ga,18,,rs-means,Unit,171417,L.F.,,,,,,,,,,,1,1
1044
+ 1055,Ductwork-S,20 inches galvanized steel 26 ga,20,,rs-means,Unit,171418,L.F.,,,,,,,,,,,1,1
1045
+ 1056,Ductwork-S,22 inches galvanized steel 26 ga,22,,rs-means,Unit,171419,L.F.,,,,,,,,,,,1,1
1046
+ 1057,Ductwork-S,24 inches galvanized steel 26 ga,24,,rs-means,Unit,171420,L.F.,,,,,,,,,,,1,1
1047
+ 1058,Ductwork-S,30 inches galvanized steel 26 ga,30,,rs-means,Unit,171421,L.F.,,,,,,,,,,,1,1
1048
+ 1059,Ductwork-S,36 inches galvanized steel 26 ga,36,,rs-means,Unit,171422,L.F.,,,,,,,,,,,1,1
1049
+ 1060,Ductwork-Fitting,Round collar fitting without damper,8,,rs-means,Unit,171423,each,,,,,,,,,,,1,1
1050
+ 1061,DHWPump,Recirculating DHW Pump (in watts),187,,rs-means,Unit,171424,each,,,,,,,,,,,1,1
1051
+ 1062,ConvectCopper,"hot water convector 1 inch copper tube, aluminum fins ",1,,rs-means,Unit,171425,LF,,,,,,,,,,,1,1
1052
+ 1063,ConvectCopper,"hot water convector 1.25 in copper tube, aluminum fins",1.25,,rs-means,Unit,171426,LF,,,,,,,,,,,1,1
1053
+ 1064,ConvectSteel,"hot water convector 1.25 in. steel tube, steel fins 10 inch high with damper",1.25,,rs-means,Unit,171427,LF,,,,,,,,,,,1,1
1054
+ 1065,ConvectSteel,"hot water convector 2 in. steel tube, steel fins 10 inch high with damper",2,,rs-means,Unit,171428,LF,,,,,,,,,,,1,1
1055
+ 1066,outsidebox,12 x 12 x 6 NEMA weathertight pull box ,,,rs-means,Unit,181429,,,,,,,,,,,,1,1
1056
+ 1067,PTAC,"Wall Sleeve cabinet type with thermostat and controls 208V 8800 BTUH (2.6 kW) heat, 6000 BTUH (1.76 kW) cooling",1.76,,rs-means,Unit,171430,each,,,,,,,,,,,1,1
1057
+ 1068,PTAC,"Wall Sleeve cabinet type with thermostat and controls 208V 13900 BTUH (4.1 kW) heat, 9000 BTUH (2.63 kW) cooling",2.63,,rs-means,Unit,171431,each,,,,,,,,,,,1,1
1058
+ 1069,PTAC,"Wall Sleeve cabinet type with thermostat and controls 208V 13900 BTUH (4.1 kW) heat, 12000 BTUH (3.52 kW) cooling",3.52,,rs-means,Unit,171432,each,,,,,,,,,,,1,1
1059
+ 1070,PTAC,"Wall Sleeve cabinet type with thermostat and controls 208V 13900 BTUH (4.1 kW) heat, 15000 BTUH (4.4 kW) cooling",4.4,,rs-means,Unit,171433,each,,,,,,,,,,,1,1
1060
+ 1071,PTAC,"Wall Sleeve cabinet type with thermostat and controls 208V 34400 BTUH (10 kW) heat, 18000 BTUH (5.28 kW) cooling",5.28,,rs-means,Unit,171434,each,,,,,,,,,,,1,1
1061
+ 1072,PTAC,"Wall Sleeve cabinet type with thermostat and controls 208V 34400 BTUH (10 kW) heat, 24000 BTUH (7.03 kW) cooling",7.03,,rs-means,Unit,171435,each,,,,,,,,,,,1,1
1062
+ 1073,PTAC,"Wall Sleeve cabinet type with thermostat and controls 208V 34400 BTUH (10 kW) heat, 30000 BTUH (8.79 kW) cooling",8.79,,rs-means,Unit,171436,each,,,,,,,,,,,1,1
1063
+ 1074,PTAC,"Wall Sleeve cabinet type with thermostat and controls 208V 34400 BTUH (10 kW) heat, 36000 BTUH (10.55 kW) cooling",10.55,,rs-means,Unit,171437,each,,,,,,,,,,,1,1
1064
+ 1075,PTAC,"Wall Sleeve cabinet type with thermostat and controls 208V 34400 BTUH (10 kW) heat, 42000 BTUH (12.31 kW) cooling",12.31,,rs-means,Unit,171438,each,,,,,,,,,,,1,1
1065
+ 1076,PTAC,"Wall Sleeve cabinet type with thermostat and controls 208V 34400 BTUH (10 kW) heat, 48000 BTUH (14.07 kW) cooling",14.07,,rs-means,Unit,171439,each,,,,,,,,,,,1,1
1066
+ 1077,hotwateruh,"vertical unit heater hot water, propeller fan, 115V, 60F entering air 8 MBH",2.344,,rs-means,Unit,171440,each,,,,,,,,,,,1,1
1067
+ 1078,hotwateruh,"vertical unit heater hot water, propeller fan, 115V, 60F entering air 12 MBH",3.516,,rs-means,Unit,171441,each,,,,,,,,,,,1,1
1068
+ 1079,hotwateruh,"vertical unit heater hot water, propeller fan, 115V, 60F entering air 16 MBH",4.688,,rs-means,Unit,171442,each,,,,,,,,,,,1,1
1069
+ 1080,hotwateruh,"vertical unit heater hot water, propeller fan, 115V, 60F entering air 30 MBH",8.79,,rs-means,Unit,171443,each,,,,,,,,,,,1,1
1070
+ 1081,hotwateruh,"vertical unit heater hot water, propeller fan, 115V, 60F entering air 43 MBH",12.598999999999998,,rs-means,Unit,171444,each,,,,,,,,,,,1,1
1071
+ 1082,hotwateruh,"vertical unit heater hot water, propeller fan, 115V, 60F entering air 57 MBH",16.701,,rs-means,Unit,171445,each,,,,,,,,,,,1,1
1072
+ 1083,hotwateruh,"vertical unit heater hot water, propeller fan, 115V, 60F entering air 68 MBH",19.924,,rs-means,Unit,171446,each,,,,,,,,,,,1,1
1073
+ 1084,hotwateruh,"vertical unit heater hot water, propeller fan, 115V, 60F entering air 105 MBH",30.764999999999997,,rs-means,Unit,171447,each,,,,,,,,,,,1,1
1074
+ 1085,hotwateruh,"vertical unit heater hot water, propeller fan, 115V, 60F entering air 123 MBH",36.038999999999994,,rs-means,Unit,171448,each,,,,,,,,,,,1,1
1075
+ 1086,hotwateruh,"vertical unit heater hot water, propeller fan, 115V, 60F entering air 140 MBH",41.019999999999996,,rs-means,Unit,171449,each,,,,,,,,,,,1,1
1076
+ 1087,hotwateruh,"vertical unit heater hot water, propeller fan, 115V, 60F entering air 156 MBH",45.708,,rs-means,Unit,171450,each,,,,,,,,,,,1,1
1077
+ 1088,hotwateruh,"vertical unit heater hot water, propeller fan, 115V, 60F entering air 210 MBH",61.529999999999994,,rs-means,Unit,171451,each,,,,,,,,,,,1,1
1078
+ 1089,hotwateruh,"vertical unit heater hot water, propeller fan, 115V, 60F entering air 223 MBH",65.339,,rs-means,Unit,171452,each,,,,,,,,,,,1,1
1079
+ 1090,hotwateruh,"vertical unit heater hot water, propeller fan, 115V, 60F entering air 257 MBH",75.301,,rs-means,Unit,171453,each,,,,,,,,,,,1,1
1080
+ 1091,VFD,"VFD motor Controllers Enclosed NEMA 1, 460V 3 HP motor size (units in watts)",2237.1000000000004,,rs-means,Unit,181454,each,,,,,,,,,,,1,1
1081
+ 1092,VFD,"VFD motor Controllers Enclosed NEMA 1, 460V 5 HP motor size (units in watts)",3728.5,,rs-means,Unit,181455,each,,,,,,,,,,,1,1
1082
+ 1093,VFD,"VFD motor Controllers Enclosed NEMA 1, 460V 7.5 HP motor size (units in watts)",5592.75,,rs-means,Unit,181456,each,,,,,,,,,,,1,1
1083
+ 1094,VFD,"VFD motor Controllers Enclosed NEMA 1, 460V 10 HP motor size (units in watts)",7457,,rs-means,Unit,181457,each,,,,,,,,,,,1,1
1084
+ 1095,VFD,"VFD motor Controllers Enclosed NEMA 1, 460V 15 HP motor size (units in watts)",11185.5,,rs-means,Unit,181458,each,,,,,,,,,,,1,1
1085
+ 1096,VFD,"VFD motor Controllers Enclosed NEMA 1, 460V 20 HP motor size (units in watts)",14914,,rs-means,Unit,181459,each,,,,,,,,,,,1,1
1086
+ 1097,VFD,"VFD motor Controllers Enclosed NEMA 1, 460V 25 HP motor size (units in watts)",18642.5,,rs-means,Unit,181460,each,,,,,,,,,,,1,1
1087
+ 1098,VFD,"VFD motor Controllers Enclosed NEMA 1, 460V 30 HP motor size (units in watts)",22371,,rs-means,Unit,181461,each,,,,,,,,,,,1,1
1088
+ 1099,VFD,"VFD motor Controllers Enclosed NEMA 1, 460V 40 HP motor size (units in watts)",29828,,rs-means,Unit,181462,each,,,,,,,,,,,1,1
1089
+ 1100,VFD,"VFD motor Controllers Enclosed NEMA 1, 460V 50 HP motor size (units in watts)",37285,,rs-means,Unit,181463,each,,,,,,,,,,,1,1
1090
+ 1101,VFD,"VFD motor Controllers Enclosed NEMA 1, 460V 60 HP motor size (units in watts)",44742,,rs-means,Unit,181464,each,,,,,,,,,,,1,1
1091
+ 1102,VFD,"VFD motor Controllers Enclosed NEMA 1, 460V 75 HP motor size (units in watts)",55927.5,,rs-means,Unit,181465,each,,,,,,,,,,,1,1
1092
+ 1103,VFD,"VFD motor Controllers Enclosed NEMA 1, 460V 100 HP motor size (units in watts)",74570,,rs-means,Unit,181466,each,,,,,,,,,,,1,1
1093
+ 1104,VFD,"VFD motor Controllers Enclosed NEMA 1, 460V 125 HP motor size (units in watts)",93212.5,,rs-means,Unit,181467,each,,,,,,,,,,,1,1
1094
+ 1105,VFD,"VFD motor Controllers Enclosed NEMA 1, 460V 150 HP motor size (units in watts)",111855,,rs-means,Unit,181468,each,,,,,,,,,,,1,1
1095
+ 1106,VFD,"VFD motor Controllers Enclosed NEMA 1, 460V 200 HP motor size (units in watts)",149140,,rs-means,Unit,181469,each,,,,,,,,,,,1,1
1096
+ 1107,WINAC,"Window air conditioner 15 amp, 125V 5000 BTU",1465,,rs-means,Unit,171470,each,,,,,,,,,,,1,1
1097
+ 1108,WINAC,"Window air conditioner 15 amp, 125V 6000 BTU",1758,,rs-means,Unit,171471,each,,,,,,,,,,,1,1
1098
+ 1109,WINAC,"Window air conditioner 15 amp, 125V 8000 BTU",2344,,rs-means,Unit,171472,each,,,,,,,,,,,1,1
1099
+ 1110,WINAC,"Window air conditioner 15 amp, 125V 10000 BTU",2930,,rs-means,Unit,171473,each,,,,,,,,,,,1,1
1100
+ 1111,WINAC,"Window air conditioner 15 amp, 125V 12000 BTU",3516,,rs-means,Unit,171474,each,,,,,,,,,,,1,1
1101
+ 1112,SplitSZWall,Split ductless wall mount single zone cooling only 0.75 ton,2637,,rs-means,Unit,171475,each,,,,,,,,,,,1,1
1102
+ 1113,SplitSZWall,Split ductless wall mount single zone cooling only 1 ton,3516,,rs-means,Unit,171476,each,,,,,,,,,,,1,1
1103
+ 1114,SplitSZWall,Split ductless wall mount single zone cooling only 1.5 ton,5274,,rs-means,Unit,171477,each,,,,,,,,,,,1,1
1104
+ 1115,SplitSZWall,Split ductless wall mount single zone cooling only 2 ton,7032,,rs-means,Unit,171478,each,,,,,,,,,,,1,1
1105
+ 1116,SplitSZCeiling,Split ductless ceiling mount single zone cooling only 2 ton,7032,,rs-means,Unit,171479,each,,,,,,,,,,,1,1
1106
+ 1117,SplitSZCeiling,Split ductless ceiling mount single zone cooling only 3 ton,10548,,rs-means,Unit,171480,each,,,,,,,,,,,1,1
1107
+ 1118,Plug,Receptacle 15 amp 120V grounded,15,,rs-means,Unit,181481,each,,,,,,,,,,,1,1
1108
+ 1119,Plug,Receptacle 20 amp 120V grounded,20,,rs-means,Unit,181482,each,,,,,,,,,,,1,1
1109
+ 1120,Pvpanel,150 watt panel,150,poly,rs-means,Unit,181483,each,,,,,,,,,,,1,1
1110
+ 1121,inverter24,24 volt inverter 3000 watt,3,,rs-means,Unit,181484,each,,,,,,,,,,,1,1
1111
+ 1122,inverter24,24 volt inverter 4000 watt,4,,rs-means,Unit,181485,each,,,,,,,,,,,1,1
1112
+ 1123,inverter48,48 volt inverter 4000 watts,4,,rs-means,Unit,181486,each,,,,,,,,,,,1,1
1113
+ 1124,inverter48,48 volt inverter 5000 watts,5,,rs-means,Unit,181487,each,,,,,,,,,,,1,1
1114
+ 1125,pvcombinerbox,10 lug nema combiner box,,,rs-means,Unit,181488,each,,,,,,,,,,,1,1
1115
+ 1126,pvbatterycharge,battery charge controller with temperature sensor,,,rs-means,Unit,181489,each,,,,,,,,,,,1,1
1116
+ 1127,pvdisplay,"digital readout panel hrs, volts, amps",,,rs-means,Unit,181490,each,,,,,,,,,,,1,1
1117
+ 1128,pvbattery,deep cycle 6V 180AH,,,rs-means,Unit,181491,each,,,,,,,,,,,1,1
1118
+ 1129,nibattery,deep cycle 100AH 12V 10 cells,12,,rs-means,Unit,181492,each,,,,,,,,,,,1,1
1119
+ 1130,nibattery,deep cycle 100AH 24V 10 cells,24,,rs-means,Unit,181493,each,,,,,,,,,,,1,1
1120
+ 1131,nibattery,deep cycle 100AH 48V 10 cells,48,,rs-means,Unit,181494,each,,,,,,,,,,,1,1
1121
+ 1132,pvbatterycable,24 AWG #2/0 sealed with copper ring lugs,,,rs-means,Unit,181495,each,,,,,,,,,,,1,1
1122
+ 1133,pvdisconnect,system disconnect DC 175 amp circuit breaker,,,rs-means,Unit,181496,each,,,,,,,,,,,1,1
1123
+ 1134,pvlowvoltdisconnect,low voltage dsconnect,,,rs-means,Unit,181497,each,,,,,,,,,,,1,1
1124
+ 1135,pvbox, box for pv/inverter,,,rs-means,Unit,181498,each,,,,,,,,,,,1,1
1125
+ 1136,pvroofrack,"rack system for 1 panel, non-penetrating ballast",,,rs-means,Unit,181499,each,,,,,,,,,,,1,1
1126
+ 1137,pvgroundmount,"ground mount, fixed, ballast 3 panel",3,,rs-means,Unit,181500,each,,,,,,,,,,,1,1
1127
+ 1138,pvgroundmount,"ground mount, fixed, ballast 4 panel",4,,rs-means,Unit,181501,each,,,,,,,,,,,1,1
1128
+ 1139,pvgroundmount,"ground mount, fixed, ballast 5 panel",5,,rs-means,Unit,181502,each,,,,,,,,,,,1,1
1129
+ 1140,pvgroundmount,"ground mount, fixed, ballast 6 panel",6,,rs-means,Unit,181503,each,,,,,,,,,,,1,1
1130
+ 1141,pvgroundmountadj,"ground mount, adjustable, ballast 3 panel",3,,rs-means,Unit,181504,each,,,,,,,,,,,1,1
1131
+ 1142,pvgroundmountadj,"ground mount, adjustable, ballast 4 panel",4,,rs-means,Unit,181505,each,,,,,,,,,,,1,1
1132
+ 1143,pvgroundmountadj,"ground mount, adjustable ballast 5 panel",5,,rs-means,Unit,181506,each,,,,,,,,,,,1,1
1133
+ 1144,pvgroundmountadj,"ground mount, adjustable, ballast 6 panel",6,,rs-means,Unit,181507,each,,,,,,,,,,,1,1
1134
+ 1145,pvpolemount,pv pole mount passive tracking 1 panel (pole excluded),1,,rs-means,Unit,181508,each,,,,,,,,,,,1,1
1135
+ 1146,pvpolemount,pv pole mount passive tracking 2 panel (pole excluded),2,,rs-means,Unit,181509,each,,,,,,,,,,,1,1
1136
+ 1147,pvpolemount,pv pole mount passive tracking 3 panel (pole excluded),3,,rs-means,Unit,181510,each,,,,,,,,,,,1,1
1137
+ 1148,pvpolemount,pv pole mount passive tracking 4 panel (pole excluded),4,,rs-means,Unit,181511,each,,,,,,,,,,,1,1
1138
+ 1149,pvpolemount,pv pole mount passive tracking 6 panel (pole excluded),6,,rs-means,Unit,181512,each,,,,,,,,,,,1,1
1139
+ 1150,pvpolemount,pv pole mount passive tracking 8 panel (pole excluded),8,,rs-means,Unit,181513,each,,,,,,,,,,,1,1
1140
+ 1151,pvpole,aluminum 10 ft high (exclude concrete base),10,,rs-means,Unit,181514,each,,,,,,,,,,,1,1
1141
+ 1152,pvpole,aluminum 16 ft high (exclude concrete base),16,,rs-means,Unit,181515,each,,,,,,,,,,,1,1
1142
+ 1153,pvpole,aluminum 20 ft high (exclude concrete base),20,,rs-means,Unit,181516,each,,,,,,,,,,,1,1
1143
+ 1154,pvpole,aluminum 30 ft high (exclude concrete base),30,,rs-means,Unit,181517,each,,,,,,,,,,,1,1
1144
+ 1155,pvpole,aluminum 40 ft high (exclude concrete base),40,,rs-means,Unit,181518,each,,,,,,,,,,,1,1
1145
+ 1156,concreteforms,single use forms,,,rs-means,Unit,021519,SFCA,,,,,,,,,,,1,1
1146
+ 1157,concrete,ready mix heavyweight 2000 psi,2000,,rs-means,Unit,021520,C.Y.,,,,,,,,,,,1,1
1147
+ 1158,concrete,ready mix heavyweight 2500 psi,2500,,rs-means,Unit,021521,C.Y.,,,,,,,,,,,1,1
1148
+ 1159,concrete,ready mix heavyweight 3000 psi,3000,,rs-means,Unit,020049,C.Y.,,,,,,,,,,,1,1
1149
+ 1160,concrete,ready mix heavyweight 3500 psi,3500,,rs-means,Unit,020106,C.Y.,,,,,,,,,,,1,1
1150
+ 1161,concrete,ready mix heavyweight 4000 psi,4000,,rs-means,Unit,021522,C.Y.,,,,,,,,,,,1,1
1151
+ 1162,concrete,ready mix heavyweight 4500 psi,4500,,rs-means,Unit,021523,C.Y.,,,,,,,,,,,1,1
1152
+ 1163,concrete,ready mix heavyweight 5000 psi,5000,,rs-means,Unit,021524,C.Y.,,,,,,,,,,,1,1
1153
+ 1164,concrete,ready mix heavyweight 6000 psi,6000,,rs-means,Unit,021525,C.Y.,,,,,,,,,,,1,1
1154
+ 1165,pex,1/2 in tubing (oxygen barrier type for systems with ferrous materials),0.5,,rs-means,Unit,171526,L.F.,,,,,,,,,,,1,1
1155
+ 1166,pex,3/4 in tubing (oxygen barrier type for systems with ferrous materials),0.75,,rs-means,Unit,171527,L.F.,,,,,,,,,,,1,1
1156
+ 1167,pex,1 in tubing (oxygen barrier type for systems with ferrous materials),1,,rs-means,Unit,171528,L.F.,,,,,,,,,,,1,1
1157
+ 1168,manifold,"1 in. 2 circuit, brass, with supply and return valves, flow meter, thermometer, drain/fill valve",2,,rs-means,Unit,171529,each,,,,,,,,,,,1,1
1158
+ 1169,manifold,"1 in. 3 circuit, brass, with supply and return valves, flow meter, thermometer, drain/fill valve",3,,rs-means,Unit,171530,each,,,,,,,,,,,1,1
1159
+ 1170,manifold,"1 in. 4 circuit, brass, with supply and return valves, flow meter, thermometer, drain/fill valve",4,,rs-means,Unit,171531,each,,,,,,,,,,,1,1
1160
+ 1171,manifold,"1 in. 5 circuit, brass, with supply and return valves, flow meter, thermometer, drain/fill valve",5,,rs-means,Unit,171532,each,,,,,,,,,,,1,1
1161
+ 1172,manifold,"1 in. 6 circuit, brass, with supply and return valves, flow meter, thermometer, drain/fill valve",6,,rs-means,Unit,171533,each,,,,,,,,,,,1,1
1162
+ 1173,manifold,"1 in. 7 circuit, brass, with supply and return valves, flow meter, thermometer, drain/fill valve",7,,rs-means,Unit,171534,each,,,,,,,,,,,1,1
1163
+ 1174,manifold,"1 in. 8 circuit, brass, with supply and return valves, flow meter, thermometer, drain/fill valve",8,,rs-means,Unit,171535,each,,,,,,,,,,,1,1
1164
+ 1175,manifold,"1 in. 9 circuit, brass, with supply and return valves, flow meter, thermometer, drain/fill valve",9,,rs-means,Unit,171536,each,,,,,,,,,,,1,1
1165
+ 1176,manifold,"1 in. 10 circuit, brass, with supply and return valves, flow meter, thermometer, drain/fill valve",10,,rs-means,Unit,171537,each,,,,,,,,,,,1,1
1166
+ 1177,manifold,"1 in. 11 circuit, brass, with supply and return valves, flow meter, thermometer, drain/fill valve",11,,rs-means,Unit,171538,each,,,,,,,,,,,1,1
1167
+ 1178,manifold,"1 in. 12 circuit, brass, with supply and return valves, flow meter, thermometer, drain/fill valve",12,,rs-means,Unit,171539,each,,,,,,,,,,,1,1
1168
+ 1179,radiantvalveact,thermostatic zone valve actuator,,,rs-means,Unit,171540,each,,,,,,,,,,,1,1
1169
+ 1180,radiantvalveactend,thermostatic zone valve actuator with end switch,,,rs-means,Unit,171541,each,,,,,,,,,,,1,1
1170
+ 1181,radiantmotorvalve,"motorized straight zone valve with operator, 3/4 in. connection",0.75,,rs-means,Unit,171542,,,,,,,,,,,,1,1
1171
+ 1182,radiantmotorvalve,"motorized straight zone valve with operator, 1 in. connection",1,,rs-means,Unit,171543,,,,,,,,,,,,1,1
1172
+ 1183,radiantmotorvalve,"motorized straight zone valve with operator, 1-1/4 in. connection",1.25,,rs-means,Unit,171544,,,,,,,,,,,,1,1
1173
+ 1184,radiantmixvalve,"4-way mixing valve, brass, manual operation 1"" connection",1,,rs-means,Unit,171545,,,,,,,,,,,,1,1
1174
+ 1185,radiantmixvalve,"4-way mixing valve, brass, manual operation 1-1/4"" connection",1.25,,rs-means,Unit,171546,,,,,,,,,,,,1,1
1175
+ 1186,radiantmixvalve,"4-way mixing valve, brass, manual operation 1-1/2"" connection",1.5,,rs-means,Unit,171547,,,,,,,,,,,,1,1
1176
+ 1187,radiantmixvalve,"4-way mixing valve, brass, manual operation 2"" connection",2,,rs-means,Unit,171548,,,,,,,,,,,,1,1
1177
+ 1188,radiantmixmotorvalve,"4-way mixing valve, brass, motorized, 1 and 1-1/4 connection",1,,rs-means,Unit,171549,,,,,,,,,,,,1,1
1178
+ 1189,radiantmixmotorvalve,"4-way mixing valve, brass, motorized, 1-1/2 and 2connection",1.5,,rs-means,Unit,171550,,,,,,,,,,,,1,1
1179
+ 1190,radiantcontrolpanel,"4 zone valve actuator control panel, expandable",4,,rs-means,Unit,171551,,,,,,,,,,,,1,1
1180
+ 1191,radiantcontrolpanel,"6 zone valve actuator control panel, expandable",6,,rs-means,Unit,171552,,,,,,,,,,,,1,1
1181
+ 1192,pexcoupler,compression type 0.5 x 0.5 inches,0.5,,rs-means,Unit,171553,,,,,,,,,,,,1,1
1182
+ 1193,pexcoupler,compression type 0.75 x 0.75 inches,0.75,,rs-means,Unit,171554,,,,,,,,,,,,1,1
1183
+ 1194,pexadapter,compression type 0.5 x female sweat 0.5,0.5,,rs-means,Unit,171555,,,,,,,,,,,,1,1
1184
+ 1195,pexadapter,compression type 0.5 x female sweat 0.75,0.75,,rs-means,Unit,171556,,,,,,,,,,,,1,1
1185
+ 1196,pexadapter,compression type 5/8 x female sweat 0.75,0.66,,rs-means,Unit,171557,,,,,,,,,,,,1,1
1186
+ 1197,pexelbow,compression type 0.5 x female sweat 0.5,0.5,,rs-means,Unit,171558,,,,,,,,,,,,1,1
1187
+ 1198,pexelbow,compression type 0.5 x female sweat 0.75,0.75,,rs-means,Unit,171559,,,,,,,,,,,,1,1
1188
+ 1199,pexelbow,compression type 5/8 x female sweat 0.75,0.66,,rs-means,Unit,171560,,,,,,,,,,,,1,1
1189
+ 1200,heattrace115,heat trace cable 115V 2.5 watts/l.f. 400 degree,2.5,,rs-means,Unit,171561,,,,,,,,,,,,1,1
1190
+ 1201,heattrace115,heat trace cable 115V 5 watts/l.f. 400 degree,5,,rs-means,Unit,171217,,,,,,,,,,,,1,1
1191
+ 1202,heattrace115,heat trace cable 115V 10 watts/l.f. 400 degree,10,,rs-means,Unit,171562,,,,,,,,,,,,1,1
1192
+ 1203,heattrace208,heat trace cable 208V 5 watts/l.f. 400 degree,5,,rs-means,Unit,171563,,,,,,,,,,,,1,1
1193
+ 1204,heattrace480,heat trace cable 480V 8 watts/l.f. 400 degree,8,,rs-means,Unit,171564,,,,,,,,,,,,1,1
1194
+ 1205,radiantceilingpanel,2 ft x 4 ft 500 watt ceiling panel,500,,rs-means,Unit,171565,,,,,,,,,,,,1,1
1195
+ 1206,radiantceilingpanel,2 ft x 4 ft 750 watt ceiling panel,750,,rs-means,Unit,171566,,,,,,,,,,,,1,1
1196
+ 1207,lowtempsolar,"1 collector (low temperature hot water, 4 ft x 8 ft), circulator, fittings, 65 US gallon tank, excludes connecting piping, insulation, heat exchanger and special controls)",1,,rs-means,Unit,171567,,,,,,,,,,,,1,1
1197
+ 1208,lowtempsolar,"2 collector (low temperature hot water, 4 ft x 8 ft), circulator, fittings, 100 US gallon tank, excludes connecting piping, insulation, heat exchanger and special controls)",2,,rs-means,Unit,171568,,,,,,,,,,,,1,1
1198
+ 1209,lowtempsolar,"2 collector (low temperature hot water, 4 ft x 8 ft), circulator, fittings, 120 US gallon tank, excludes connecting piping, insulation, heat exchanger and special controls)",2,,rs-means,Unit,171569,,,,,,,,,,,,1,1
1199
+ 1210,lowtempsolar,"3 collector (low temperature hot water, 4 ft x 8 ft), circulator, fittings, 120 US gallon tank, excludes connecting piping, insulation, heat exchanger and special controls)",3,,rs-means,Unit,171570,,,,,,,,,,,,1,1
1200
+ 1211,medtempsolar,"1 collector (medium temperature hot water, 4 ft x 8 ft), circulator, fittings, 80 US gallon tank, excludes connecting piping, insulation, heat exchanger and special controls)",1,,rs-means,Unit,171571,,,,,,,,,,,,1,1
1201
+ 1212,medtempsolar,"2 collector (medium temperature hot water, 4 ft x 8 ft), circulator, fittings, 120 US gallon tank, excludes connecting piping, insulation, heat exchanger and special controls)",2,,rs-means,Unit,171572,,,,,,,,,,,,1,1
1202
+ 1213,medtempsolar,"3 collector (medium temperature hot water, 4 ft x 8 ft), circulator, fittings, 80 US gallon tank, excludes connecting piping, insulation, heat exchanger and special controls)",3,,rs-means,Unit,171573,,,,,,,,,,,,1,1
1203
+ 1214,evactube,evacuated solar tube collectors 20 tube unit (excludes labour),20,,rs-means,Unit,171574,,,,,,,,,,,,1,1
1204
+ 1215,evactube,evacuated solar tube collectors 30 tube unit (excludes labour),30,,rs-means,Unit,171574,,,,,,,,,,,,1,1
1205
+ 1216,airblower,"air blower, 100 - 300 ft2 system 1/10 hp",300,,rs-means,Unit,171575,,,,,,,,,,,,1,1
1206
+ 1217,airblower,"air blower, 300 - 500 ft2 system 1/5 hp",500,,rs-means,Unit,171576,,,,,,,,,,,,1,1
1207
+ 1218,boosterfan,"booster fan, 6 in diameter blade, 120 cfm",120,,rs-means,Unit,171577,,,,,,,,,,,,1,1
1208
+ 1219,boosterfan,"booster fan, 6 in diameter blade, 225 cfm",225,,rs-means,Unit,171578,,,,,,,,,,,,1,1
1209
+ 1220,boosterfan,"booster fan, 8 in diameter blade, 150 cfm",150,,rs-means,Unit,171579,,,,,,,,,,,,1,1
1210
+ 1221,boosterfan,"booster fan, 8 in diameter blade, 310 cfm",310,,rs-means,Unit,171580,,,,,,,,,,,,1,1
1211
+ 1222,boosterfan,"booster fan, 8 in diameter blade, 425 cfm",425,,rs-means,Unit,171581,,,,,,,,,,,,1,1
1212
+ 1223,circpump,"circulator 1/25 hp, 5.3 usgpm",5.3,,rs-means,Unit,171582,,,,,,,,,,,,1,1
1213
+ 1224,circpump,"circulator 1/20 hp, 17 usgpm",17,,rs-means,Unit,171583,,,,,,,,,,,,1,1
1214
+ 1225,circpump,"circulator 1/20 hp, 17 usgpm, stainless steel",17,,rs-means,Unit,171584,,,,,,,,,,,,1,1
1215
+ 1226,circpump,"circulator 1/12 hp, 30 usgpm",30,,rs-means,Unit,171585,,,,,,,,,,,,1,1
1216
+ 1227,aircollector,"air collector with aluminum absorber plate, wall or roof mount, flat black, plastic glazing, 4 ft x 8 ft",32,,rs-means,Unit,171586,,,,,,,,,,,,1,1
1217
+ 1228,aircollector,"air collector with aluminum absorber plate, wall or roof mount, flat black, plastic glazing, 4 ft x 10 ft",40,,rs-means,Unit,171587,,,,,,,,,,,,1,1
1218
+ 1229,liqplatecollector,"liquid collector with copper absorber plate, tempered single glazing (5/32""), aluminum framing, 4 ft x 8 ft",32,,rs-means,Unit,171588,,,,,,,,,,,,1,1
1219
+ 1230,liqplatecollector,"liquid collector with copper absorber plate, tempered single glazing (5/32""), aluminum framing, 3 ft - 8 inches x 6 ft",22,,rs-means,Unit,171589,,,,,,,,,,,,1,1
1220
+ 1231,liqplatecollector,"liquid collector with copper absorber plate, tempered single glazing (5/32""), aluminum framing, 4 ft x 10 ft",40,,rs-means,Unit,171590,,,,,,,,,,,,1,1
1221
+ 1232,liqplatecollector,"liquid collector with copper absorber plate, tempered single glazing (5/32""), aluminum framing, 3 ft - 5 inches x 7.5 ft",26,,rs-means,Unit,171591,,,,,,,,,,,,1,1
1222
+ 1233,liqevaccollector,"liquid collector with vacuum tubes, tempered single glazing (5/32""), aluminum framing, 4 ft x 6 ft - 10 inches",32,,rs-means,Unit,171592,,,,,,,,,,,,1,1
1223
+ 1234,mount,,,,rs-means,Unit,171593,,,,,,,,,,,,1,1
1224
+ 1235,freezestat,freezestat sensor,,,rs-means,Unit,171594,,,,,,,,,,,,1,1
1225
+ 1236,rheostat,rheostat,,,rs-means,Unit,171595,,,,,,,,,,,,1,1
1226
+ 1237,tempcontrol,"differential controller with 2 sensors, thermostat, hard wired",,,rs-means,Unit,171596,,,,,,,,,,,,1,1
1227
+ 1238,tempmonitor,"digital temperature monitoring, 4 locations",,,rs-means,Unit,171597,,,,,,,,,,,,1,1
1228
+ 1239,aquastat,aquastat,,,rs-means,Unit,171598,,,,,,,,,,,,1,1
1229
+ 1240,pressgauge,pressure gauge ,,,rs-means,Unit,171599,,,,,,,,,,,,1,1
1230
+ 1241,fluidairex,"fluid to air heat exchanger, 45 MBTUH (13 kW) includes coil, blower, circulator, controls, excludes piping",13,,rs-means,Unit,171600,,,,,,,,,,,,1,1
1231
+ 1242,fluidairex,"fluid to air heat exchanger, 70 MBTUH (20.5 kW) includes coil, blower, circulator, controls, excludes piping",20.5,,rs-means,Unit,171601,,,,,,,,,,,,1,1
1232
+ 1243,fluidairex,"fluid to air heat exchanger, 80 MBTUH (23.5 kW) includes coil, blower, circulator, controls, excludes piping",23.5,,rs-means,Unit,171602,,,,,,,,,,,,1,1
1233
+ 1244,fluidfluidex,"fluid to fluid heat exchanger package, 2 circulating pumps, expansion tank, check valve, relief valve, controller, temperature sensors, excludes piping",,,rs-means,Unit,171603,,,,,,,,,,,,1,1
1234
+ 1245,glycol,propylene glycol heat transfer fluid (per us gallon),,,rs-means,Unit,171604,,,,,,,,,,,,1,1
1235
+ 1246,solartank,"tank, galvanized steel clad, double wall, 4 in fibreglass insulation, 45 mil polypropylene lining, 4' high 4'x4' 64 ft3/450 usg",450,,rs-means,Unit,171605,,,,,,,,,,,,1,1
1236
+ 1247,solartank,"tank, galvanized steel clad, double wall, 4 in fibreglass insulation, 45 mil polypropylene lining, 4' high 4'x8' 128 ft3/900 usg",900,,rs-means,Unit,171606,,,,,,,,,,,,1,1
1237
+ 1248,solartank,"tank, galvanized steel clad, double wall, 4 in fibreglass insulation, 45 mil polypropylene lining, 4' high 4'x12' 190 ft3/1300 usg",1300,,rs-means,Unit,171607,,,,,,,,,,,,1,1
1238
+ 1249,solartank,"tank, galvanized steel clad, double wall, 4 in fibreglass insulation, 45 mil polypropylene lining, 4' high 8'x8' 250 ft3/1700 usg",1700,,rs-means,Unit,171608,,,,,,,,,,,,1,1
1239
+ 1250,solartank,"tank, galvanized steel clad, double wall, 4 in fibreglass insulation, 45 mil polypropylene lining, 6'-3"" high 7'x7' 306 ft3/2000 usg",2000,,rs-means,Unit,171609,,,,,,,,,,,,1,1
1240
+ 1251,solartank,"tank, galvanized steel clad, double wall, 4 in fibreglass insulation, 45 mil polypropylene lining, 6'-3"" high 7'x10' 6"" 459 ft3/3000 usg",3000,,rs-means,Unit,171610,,,,,,,,,,,,1,1
1241
+ 1252,solartank,"tank, galvanized steel clad, double wall, 4 in fibreglass insulation, 45 mil polypropylene lining, 6'-3"" high 7'x14' 613 ft3/4000 usg",4000,,rs-means,Unit,171611,,,,,,,,,,,,1,1
1242
+ 1253,solartank,"tank, galvanized steel clad, double wall, 4 in fibreglass insulation, 45 mil polypropylene lining, 6'-3"" high 10'-6'x10'-6"" 689 ft3/4500 usg",4500,,rs-means,Unit,171612,,,,,,,,,,,,1,1
1243
+ 1254,solartank,"tank, galvanized steel clad, double wall, 4 in fibreglass insulation, 45 mil polypropylene lining, 6'-3"" high 10'-6'x14' 919 ft3/6000 usg",6000,,rs-means,Unit,171613,,,,,,,,,,,,1,1
1244
+ 1255,solartank,"tank, galvanized steel clad, double wall, 4 in fibreglass insulation, 45 mil polypropylene lining, 6'-3"" high 14'x14' 1225 ft3/8000 usg",8000,,rs-means,Unit,171614,,,,,,,,,,,,1,1
1245
+ 1256,solartank,"tank, galvanized steel clad, double wall, 4 in fibreglass insulation, 45 mil polypropylene lining, 6'-3"" high 14'x17'-6"" 1531 ft3/10000 usg",10000,,rs-means,Unit,171615,,,,,,,,,,,,1,1
1246
+ 1257,solartank,"tank, galvanized steel clad, double wall, 4 in fibreglass insulation, 45 mil polypropylene lining, 6'-3"" high 17'-6""x17'-6"" 1914 ft3/12500 usg",12500,,rs-means,Unit,171616,,,,,,,,,,,,1,1
1247
+ 1258,solartank,"tank, galvanized steel clad, double wall, 4 in fibreglass insulation, 45 mil polypropylene lining, 6'-3"" high 17'-6""x21 2297 ft3/15000 usg",15000,,rs-means,Unit,171617,,,,,,,,,,,,1,1
1248
+ 1259,solartank,"tank, galvanized steel clad, double wall, 4 in fibreglass insulation, 45 mil polypropylene lining, 6'-3"" high 21'x21' 2756 ft3/18000 usg",18000,,rs-means,Unit,171618,,,,,,,,,,,,1,1
1249
+ 1260,solarelectank,"tank with heat exchanger and electric element 2"" x 2 lb density insulation 66 usg",66,,rs-means,Unit,171619,,,,,,,,,,,,1,1
1250
+ 1261,solarelectank,"tank with heat exchanger and electric element 2"" x 2 lb density insulation 80 usg",80,,rs-means,Unit,171620,,,,,,,,,,,,1,1
1251
+ 1262,solarelectank,"tank with heat exchanger and electric element 2"" x 2 lb density insulation 100 usg",100,,rs-means,Unit,171621,,,,,,,,,,,,1,1
1252
+ 1263,solarelectank,"tank with heat exchanger and electric element 2"" x 2 lb density insulation 120 usg",120,,rs-means,Unit,171622,,,,,,,,,,,,1,1
1253
+ 1264,tankwrap,"1.5"" tank wrap with vinyl jacket for 60 usg water heater ",60,,rs-means,Unit,171623,,,,,,,,,,,,1,1
1254
+ 1265,tankwrap,"1.5"" tank wrap with vinyl jacket for 80 usg water heater ",80,,rs-means,Unit,171624,,,,,,,,,,,,1,1
1255
+ 1266,purge,"air purger 1"" pipe size",,,rs-means,Unit,171625,,,,,,,,,,,,1,1
1256
+ 1267,elimin,"air eliminator automatic 3/4"" pipe size",,,rs-means,Unit,171626,,,,,,,,,,,,1,1
1257
+ 1268,ventauto,"air vent automatic 1/8"" fitting",,,rs-means,Unit,171627,,,,,,,,,,,,1,1
1258
+ 1269,ventmanual,"air vent manual 1/8"" fitting",,,rs-means,Unit,171628,,,,,,,,,,,,1,1
1259
+ 1270,backflowvalve,"backflow preventer valve 1/2"" pipe size",0.5,,rs-means,Unit,171629,,,,,,,,,,,,1,1
1260
+ 1271,backflowvalve,"backflow preventer valve 3/4"" pipe size",0.75,,rs-means,Unit,171630,,,,,,,,,,,,1,1
1261
+ 1272,balancingvalve,"balancing valve 3/4"" pipe size",,,rs-means,Unit,171631,,,,,,,,,,,,1,1
1262
+ 1273,draindownvalve,draindown valve with 1/2 copper tube,,,rs-means,Unit,171632,,,,,,,,,,,,1,1
1263
+ 1274,controlvalve,"flow control valve 1/2"" pipe size",,,rs-means,Unit,171633,,,,,,,,,,,,1,1
1264
+ 1275,extank,expansion tank up to 5 usg,,,rs-means,Unit,171634,,,,,,,,,,,,1,1
1265
+ 1276,reliefvalve,"relief valve, temp and pressure, 3/4"" pipe size",,,rs-means,Unit,171635,,,,,,,,,,,,1,1
1266
+ 1277,solenoid,"brass solenoid valve 24V, 3/4"" NPT",0.75,,rs-means,Unit,171636,,,,,,,,,,,,1,1
1267
+ 1278,solenoid,"brass solenoid valve 24V, 1"" NPT",1,,rs-means,Unit,171637,,,,,,,,,,,,1,1
1268
+ 1279,vacvalve,"vacuum relief valve 3/4"" pipe size",,,rs-means,Unit,171638,,,,,,,,,,,,1,1
1269
+ 1280,ccashp,MUZ-FH06NAH (heating capacity in kW),2.55,,custom,Unit,171639,,ONTARIO,TORONTO,2017,1632,772,0,1.3,1.3,,1,1,1
1270
+ 1281,ccashp,MUZ-FH09NAH-1 (heating capacity in kW),3.2,,custom,Unit,171640,,ONTARIO,TORONTO,2017,1788,772,0,1.3,1.3,,1,1,1
1271
+ 1282,ccashp,MUZ-FH12NAH (heating capacity in kW),3.99,,custom,Unit,171641,,ONTARIO,TORONTO,2017,1974,772,0,1.3,1.3,,1,1,1
1272
+ 1283,ccashp,MUZ-FH15NAH (heating capacity in kW),5.28,,custom,Unit,171642,,ONTARIO,TORONTO,2017,2418,772,0,1.3,1.3,,1,1,1
1273
+ 1284,ccashp,MUZ-FH18NAH2 (heating capacity in kW),6.33,,custom,Unit,171643,,ONTARIO,TORONTO,2017,2784,772,0,1.3,1.3,,1,1,1
1274
+ 1285,ccashp,MXZ-2C20NAHZ2-U1 (heating capacity in kW),6.44,,custom,Unit,171644,,ONTARIO,TORONTO,2017,3456,772,0,1.3,1.3,,1,1,1
1275
+ 1286,ccashp,MXZ-3C24NAHZ2-U1 (heating capacity in kW),7.33,,custom,Unit,171645,,ONTARIO,TORONTO,2017,4806,772,0,1.3,1.3,,1,1,1
1276
+ 1287,ccashp,MXZ-3C30NAHZ2-U1 (heating capacity in kW),8.38,,custom,Unit,171646,,ONTARIO,TORONTO,2017,5076,772,0,1.3,1.3,,1,1,1
1277
+ 1288,ccashp,MXZ-4C36NAHZ-U1 (heating capacity in kW),13.19,,custom,Unit,171647,,ONTARIO,TORONTO,2017,5670,772,0,1.3,1.3,,1,1,1
1278
+ 1289,ccashp,MXZ-5C42NAHZ-U1 (heating capacity in kW),14.07,,custom,Unit,171648,,ONTARIO,TORONTO,2017,6847.2,772,0,1.3,1.3,,1,1,1
1279
+ 1290,ccashp,MXZ-8C48NAHZ (heating capacity in kW),15.83,,custom,Unit,171649,,ONTARIO,TORONTO,2017,7501.2,772,0,1.3,1.3,,1,1,1
1280
+ 1291,ccashp_condensor,PUHY-HP72TJMU-A (heating capacity in kW),23.45,,custom,Unit,171650,,ONTARIO,TORONTO,2017,18840,772,0,1.3,1.3,,1,1,1
1281
+ 1292,ccashp_condensor,PUHY-HP96TJMU-A (heating capacity in kW),31.65,,custom,Unit,171651,,ONTARIO,TORONTO,2017,20569.2,772,0,1.3,1.3,,1,1,1
1282
+ 1293,ccashp_condensor,PUHY-HP144TSJMU-A (heating capacity in kW),46.89,,custom,Unit,171652,,ONTARIO,TORONTO,2017,37974,772,0,1.3,1.3,,1,1,1
1283
+ 1294,ccashp_condensor,PUHY-HP192TSJMU-A (heating capacity in kW),63.3,,custom,Unit,171653,,ONTARIO,TORONTO,2017,41432.4,772,0,1.3,1.3,,1,1,1
1284
+ 1295,remotecondensor,remote condensor ,,,custom,Unit,171654,,ONTARIO,TORONTO,2017,1425,385,0,1.3,1.3,,1,1,1
1285
+ 1296,EV_valve,daikin 1.75 ton,6.755,,custom,Unit,171655,,ONTARIO,TORONTO,2017,250.8,385,0,1.3,1.3,,1,1,1
1286
+ 1297,EV_valve,daikin 2.25 ton,8.685,,custom,Unit,171656,,ONTARIO,TORONTO,2017,258.4,385,0,1.3,1.3,,1,1,1
1287
+ 1298,EV_valve,daikin 3 ton,11.58,,custom,Unit,171657,,ONTARIO,TORONTO,2017,273.6,385,0,1.3,1.3,,1,1,1
1288
+ 1299,EV_valve,daikin 3.5 ton,13.51,,custom,Unit,171658,,ONTARIO,TORONTO,2017,284.24,385,0,1.3,1.3,,1,1,1
1289
+ 1300,EV_valve,daikin 4.5 ton,17.37,,custom,Unit,171659,,ONTARIO,TORONTO,2017,305.52,385,0,1.3,1.3,,1,1,1
1290
+ 1301,EV_valve,daikin 5 ton,19.3,,custom,Unit,171660,,ONTARIO,TORONTO,2017,313.12,385,0,1.3,1.3,,1,1,1
1291
+ 1302,EV_valve,daikin 7 ton,27.02,,custom,Unit,171661,,ONTARIO,TORONTO,2017,337.44,385,0,1.3,1.3,,1,1,1
1292
+ 1303,EV_valve,daikin 9 ton,34.74,,custom,Unit,171662,,ONTARIO,TORONTO,2017,361.76,385,0,1.3,1.3,,1,1,1
1293
+ 1304,EV_valve,daikin 10 ton,38.6,,custom,Unit,171663,,ONTARIO,TORONTO,2017,373.92,385,0,1.3,1.3,,1,1,1
1294
+ 1305,EV_valve,daikin 12 ton,46.32,,custom,Unit,171664,,ONTARIO,TORONTO,2017,398.24,385,0,1.3,1.3,,1,1,1
1295
+ 1306,EV_valve,daikin 16 ton,61.76,,custom,Unit,171665,,ONTARIO,TORONTO,2017,446.88,385,0,1.3,1.3,,1,1,1
1296
+ 1307,lowtempkit,low temperature kit 7.5-20 ton units (daikin),,,custom,Unit,171666,,ONTARIO,TORONTO,2017,227.1,102,0,1.3,1.3,,1,1,1
1297
+ 1308,refrig_piping,piping and assemblies used in refrigeration systems cost per ton,ton,,rs-means,Unit,171667,,,,,,,,,,,,1,1
1298
+ 1309,CondensingOilFurnace,95% AFUE 49 MBH at 1000 cfm,14.36950146627566,,rs-means,Unit,171668,,,,,,,,,,,,1,1
1299
+ 1310,CondensingOilFurnace,95% AFUE 73.5 MBH at 2000 cfm,21.55425219941349,,rs-means,Unit,171669,,,,,,,,,,,,1,1
1300
+ 1311,CondensingOilFurnace,95% AFUE 96 MBH at 2000 cfm,28.1524926686217,,rs-means,Unit,171670,,,,,,,,,,,,1,1
1301
+ 1312,CondensingOilFurnace,95% AFUE 115.6 MBH at 2000 cfm,33.90029325513196,,rs-means,Unit,171671,,,,,,,,,,,,1,1
1302
+ 1313,CondensingOilFurnace,95% AFUE 147 MBH at 2000 cfm,43.10850439882698,,rs-means,Unit,171672,,,,,,,,,,,,1,1
1303
+ 1314,CondensingOilFurnace,95% AFUE 192 MBH at 4000 cfm,56.3049853372434,,rs-means,Unit,171673,,,,,,,,,,,,1,1
1304
+ 1315,CondensingOilFurnace,95% AFUE 231.5 MBH at 4000 cfm,67.88856304985337,,rs-means,Unit,171674,,,,,,,,,,,,1,1
1305
+ 1316,CO-CO2sensor,,,,rs-means,Unit,171675,,,,,,,,,,,,1,1
1306
+ 1317,VAVboxcontroller,,,,rs-means,Unit,171676,,,,,,,,,,,,1,1
1307
+ 1318,Humiditycontroller,,,,rs-means,Unit,171677,,,,,,,,,,,,1,1
1308
+ 1319,Boilerreset,,,,rs-means,Unit,171678,,,,,,,,,,,,1,1
1309
+ 1320,Humidistatroomcontrol,,,,rs-means,Unit,171679,,,,,,,,,,,,1,1
1310
+ 1321,Humidistatroomtransmitter,,,,rs-means,Unit,171680,,,,,,,,,,,,1,1
1311
+ 1322,Humidistatductcontrol,,,,rs-means,Unit,171681,,,,,,,,,,,,1,1
1312
+ 1323,Humidistatducttransmitter,,,,rs-means,Unit,171682,,,,,,,,,,,,1,1
1313
+ 1324,Humiditysensor,electric operated,,,rs-means,Unit,171683,,,,,,,,,,,,1,1
1314
+ 1325,Pressuresensor,electric operated,,,rs-means,Unit,171684,,,,,,,,,,,,1,1
1315
+ 1326,Temperaturesensor,electric operated,,,rs-means,Unit,171685,,,,,,,,,,,,1,1
1316
+ 1327,Vent_pvc,6 inch PVC pipe straight length,6,,rs-means,Unit,171686,,,,,,,,,,,,1,1
1317
+ 1328,Vent_pvc_coupling,6 inch PVC coupling ,6,,rs-means,Unit,171687,,,,,,,,,,,,1,1
1318
+ 1329,Vent_pvc_elbow,6 inch PVC elbow,6,,rs-means,Unit,171688,,,,,,,,,,,,1,1
1319
+ 1330,Waterheater_power_vent,power vent (1/8 hp) fan for water heater excludes exhaust piping (fan assembly only) ,0.125,,custom,Unit,171689,,ONTARIO,TORONTO,2020,300,100,0,1.25,1.25,1,https://www.dhontario.com/free-venting-upgrade-for-rental-power-vented-water-heaterstorontogta/,1,1
1320
+ 1331,Waterheater_power_vent,power vent (1/2 hp) fan for water heater excludes exhaust piping (fan assembly only) ,0.5,,custom,Unit,171690,,ONTARIO,TORONTO,2020,500,100,0,1.25,1.25,1,https://www.dhontario.com/free-venting-upgrade-for-rental-power-vented-water-heaterstorontogta/,1,1
1321
+ 1332,Excavation_trench_1_4,"1-4 ft deep, units are cubic yard and bucket cubic yard ",0.5,,rs-means,Unit,201691,BCY,,,,,,,,,,,1,1
1322
+ 1333,Excavation_trench_1_4,"1-4 ft deep, units are cubic yard and bucket cubic yard ",0.75,,rs-means,Unit,201692,BCY,,,,,,,,,,,1,1
1323
+ 1334,Excavation_trench_4_6,"4-6 ft deep, units are cubic yard and bucket cubic yard ",0.5,,rs-means,Unit,201693,BCY,,,,,,,,,,,1,1
1324
+ 1335,Excavation_trench_4_6,"4-6 ft deep, units are cubic yard and bucket cubic yard ",0.75,,rs-means,Unit,201694,BCY,,,,,,,,,,,1,1
1325
+ 1336,Excavation_trench_4_6,"4-6 ft deep, units are cubic yard and bucket cubic yard ",1,,rs-means,Unit,201695,BCY,,,,,,,,,,,1,1
1326
+ 1337,Excavation_trench_4_6,"4-6 ft deep, units are cubic yard and bucket cubic yard ",1.5,,rs-means,Unit,201696,BCY,,,,,,,,,,,1,1
1327
+ 1338,Excavation_trench_6_10,"6-10 ft deep, units are cubic yard and bucket cubic yard ",0.75,,rs-means,Unit,201697,BCY,,,,,,,,,,,1,1
1328
+ 1339,Excavation_trench_6_10,"6-10 ft deep, units are cubic yard and bucket cubic yard ",1,,rs-means,Unit,201698,BCY,,,,,,,,,,,1,1
1329
+ 1340,Excavation_trench_6_10,"6-10 ft deep, units are cubic yard and bucket cubic yard ",1.5,,rs-means,Unit,201699,BCY,,,,,,,,,,,1,1
1330
+ 1341,Excavation_trench_6_10,"6-10 ft deep, units are cubic yard and bucket cubic yard ",2.5,,rs-means,Unit,201700,BCY,,,,,,,,,,,1,1
1331
+ 1342,Excavation_trench_10_14,"10-14 ft deep, units are cubic yard and bucket cubic yard ",0.75,,rs-means,Unit,201701,BCY,,,,,,,,,,,1,1
1332
+ 1343,Excavation_trench_10_14,"10-14 ft deep, units are cubic yard and bucket cubic yard ",1,,rs-means,Unit,201702,BCY,,,,,,,,,,,1,1
1333
+ 1344,Excavation_trench_10_14,"10-14 ft deep, units are cubic yard and bucket cubic yard ",1.5,,rs-means,Unit,201703,BCY,,,,,,,,,,,1,1
1334
+ 1345,Excavation_trench_10_14,"10-14 ft deep, units are cubic yard and bucket cubic yard ",2.5,,rs-means,Unit,201704,BCY,,,,,,,,,,,1,1
1335
+ 1346,Excavation_trench_10_14,"10-14 ft deep, units are cubic yard and bucket cubic yard ",3,,rs-means,Unit,201705,BCY,,,,,,,,,,,1,1
1336
+ 1347,Excavation_trench_14_30,"14-20 ft deep, units are cubic yard and bucket cubic yard ",1,,rs-means,Unit,201706,BCY,,,,,,,,,,,1,1
1337
+ 1348,Excavation_trench_14_30,"14-20 ft deep, units are cubic yard and bucket cubic yard ",1.5,,rs-means,Unit,201707,BCY,,,,,,,,,,,1,1
1338
+ 1349,Excavation_trench_14_30,"14-20 ft deep, units are cubic yard and bucket cubic yard ",2.5,,rs-means,Unit,201708,BCY,,,,,,,,,,,1,1
1339
+ 1350,Excavation_trench_14_30,"14-20 ft deep, units are cubic yard and bucket cubic yard ",3,,rs-means,Unit,201709,BCY,,,,,,,,,,,1,1
1340
+ 1351,Excavation_trench_14_30,"14-20 ft deep, units are cubic yard and bucket cubic yard ",3.5,,rs-means,Unit,201710,BCY,,,,,,,,,,,1,1
1341
+ 1352,Backfill ,tranch with dozer no compaction up to 300 ft haul,,,rs-means,Unit,201711,ECY,,,,,,,,,,,1,1
1342
+ 1353,Compaction_WalkBehind,"vibrating plate 18"" wide 6 inch lift units are passes and equivalent yards compacted",2,,rs-means,Unit,201712,ECY,,,,,,,,,,,1,1
1343
+ 1354,Compaction_WalkBehind,"vibrating plate 18"" wide 6 inch lift units are passes and equivalent yards compacted",3,,rs-means,Unit,201713,ECY,,,,,,,,,,,1,1
1344
+ 1355,Compaction_WalkBehind,"vibrating plate 18"" wide 6 inch lift units are passes and equivalent yards compacted",4,,rs-means,Unit,201714,ECY,,,,,,,,,,,1,1
1345
+ 1356,Ground_Rod,10 ft copper clad rod 3/4 diameter,10,,rs-means,Unit,181715,unit,,,,,,,,,,,1,1
1346
+ 1357,Wire_copper_solid,#14,14,,rs-means,Unit,181716,CLF,,,,,,,,,,,1,1
1347
+ 1358,Wire_copper_solid,#12,12,,rs-means,Unit,181717,CLF,,,,,,,,,,,1,1
1348
+ 1359,Wire_copper_solid,#10,10,,rs-means,Unit,181718,CLF,,,,,,,,,,,1,1
1349
+ 1360,Wire_copper_solid,#8,8,,rs-means,Unit,181719,CLF,,,,,,,,,,,1,1
1350
+ 1361,Wire_copper_solid,#6,6,,rs-means,Unit,181720,CLF,,,,,,,,,,,1,1
1351
+ 1362,Wire_copper_solid,#4,4,,rs-means,Unit,181721,CLF,,,,,,,,,,,1,1
1352
+ 1363,Wire_copper_solid,#2,2,,rs-means,Unit,181722,CLF,,,,,,,,,,,1,1
1353
+ 1364,Wire_copper_stranded,#8,8,,rs-means,Unit,181723,CLF,,,,,,,,,,,1,1
1354
+ 1365,Wire_copper_stranded,#6,6,,rs-means,Unit,181724,CLF,,,,,,,,,,,1,1
1355
+ 1366,Wire_copper_stranded,#4,4,,rs-means,Unit,181725,CLF,,,,,,,,,,,1,1
1356
+ 1367,Wire_copper_stranded,#2,2,,rs-means,Unit,181726,CLF,,,,,,,,,,,1,1
1357
+ 1368,Wire_copper_stranded,#1,1,,rs-means,Unit,181727,CLF,,,,,,,,,,,1,1
1358
+ 1369,Wire_copper_stranded,1/0,1/0,,rs-means,Unit,181728,CLF,,,,,,,,,,,1,1
1359
+ 1370,Wire_copper_stranded,2/0,2/0,,rs-means,Unit,181729,CLF,,,,,,,,,,,1,1
1360
+ 1371,Wire_copper_stranded,3/0,3/0,,rs-means,Unit,181730,CLF,,,,,,,,,,,1,1
1361
+ 1372,Wire_copper_stranded,4/0,4/0,,rs-means,Unit,181731,CLF,,,,,,,,,,,1,1
1362
+ 1373,Exo_weld,4/0 to ground rod,,,rs-means,Unit,181732,unit,,,,,,,,,,,1,1
1363
+ 1374,Brazed_connection,#6 wire,6,,rs-means,Unit,181733,unit,,,,,,,,,,,1,1
1364
+ 1375,Brazed_connection,#2 wire,2,,rs-means,Unit,181734,unit,,,,,,,,,,,1,1
1365
+ 1376,Brazed_connection,3/0 wire,3/0,,rs-means,Unit,181735,unit,,,,,,,,,,,1,1
1366
+ 1377,Brazed_connection,4/0 wire,4/0,,rs-means,Unit,181736,unit,,,,,,,,,,,1,1
1367
+ 1378,Transformer_dry_low_voltage,single phase 240/480 primiary 120/240 secondary units kVA,1,,rs-means,Unit,181737,unit,,,,,,,,,,,1,1
1368
+ 1379,Transformer_dry_low_voltage,single phase 240/480 primiary 120/240 secondary units kVA,2,,rs-means,Unit,181738,unit,,,,,,,,,,,1,1
1369
+ 1380,Transformer_dry_low_voltage,single phase 240/480 primiary 120/240 secondary units kVA,3,,rs-means,Unit,181739,unit,,,,,,,,,,,1,1
1370
+ 1381,Transformer_dry_low_voltage,single phase 240/480 primiary 120/240 secondary units kVA,5,,rs-means,Unit,181740,unit,,,,,,,,,,,1,1
1371
+ 1382,Transformer_dry_low_voltage,single phase 240/480 primiary 120/240 secondary units kVA,7.5,,rs-means,Unit,181741,unit,,,,,,,,,,,1,1
1372
+ 1383,Transformer_dry_low_voltage,single phase 240/480 primiary 120/240 secondary units kVA,10,,rs-means,Unit,181742,unit,,,,,,,,,,,1,1
1373
+ 1384,Transformer_dry_low_voltage,single phase 240/480 primiary 120/240 secondary units kVA,15,,rs-means,Unit,181743,unit,,,,,,,,,,,1,1
1374
+ 1385,Transformer_dry_low_voltage,single phase 240/480 primiary 120/240 secondary units kVA,25,,rs-means,Unit,181744,unit,,,,,,,,,,,1,1
1375
+ 1386,Transformer_dry_low_voltage,single phase 240/480 primiary 120/240 secondary units kVA,37.5,,rs-means,Unit,181745,unit,,,,,,,,,,,1,1
1376
+ 1387,Transformer_dry_low_voltage,single phase 240/480 primiary 120/240 secondary units kVA,50,,rs-means,Unit,181746,unit,,,,,,,,,,,1,1
1377
+ 1388,Transformer_dry_low_voltage,single phase 240/480 primiary 120/240 secondary units kVA,75,,rs-means,Unit,181747,unit,,,,,,,,,,,1,1
1378
+ 1389,Transformer_dry_low_voltage,single phase 240/480 primiary 120/240 secondary units kVA,100,,rs-means,Unit,181748,unit,,,,,,,,,,,1,1
1379
+ 1390,Transformer_dry_low_voltage,single phase 240/480 primiary 120/240 secondary units kVA,167,,rs-means,Unit,181749,unit,,,,,,,,,,,1,1
1380
+ 1391,Circuit_breaker600,3 pole NEMA 1 600V units are amps,30,,rs-means,Unit,181750,unit,,,,,,,,,,,1,1
1381
+ 1392,Circuit_breaker600,3 pole NEMA 1 600V units are amps,60,,rs-means,Unit,181751,unit,,,,,,,,,,,1,1
1382
+ 1393,Circuit_breaker600,3 pole NEMA 1 600V units are amps,100,,rs-means,Unit,181752,unit,,,,,,,,,,,1,1
1383
+ 1394,Circuit_breaker600,3 pole NEMA 1 600V units are amps,200,,rs-means,Unit,181753,unit,,,,,,,,,,,1,1
1384
+ 1395,Circuit_breaker600,3 pole NEMA 1 600V units are amps,400,,rs-means,Unit,181754,unit,,,,,,,,,,,1,1
1385
+ 1396,Circuit_breaker600,3 pole NEMA 1 600V units are amps,600,,rs-means,Unit,181755,unit,,,,,,,,,,,1,1
1386
+ 1397,Circuit_breaker600,3 pole NEMA 1 600V units are amps,,,rs-means,Unit,181750,unit,,,,,,,,,,,1,1
1387
+ 1398,Circuit_breaker600,3 pole NEMA 1 600V units are amps,,,rs-means,Unit,181750,unit,,,,,,,,,,,1,1
1388
+ 1399,Circuit_breaker600,3 pole NEMA 1 600V units are amps,,,rs-means,Unit,181750,unit,,,,,,,,,,,1,1
1389
+ 1400,Circuit_breaker600,3 pole NEMA 1 600V units are amps,,,rs-means,Unit,181750,unit,,,,,,,,,,,1,1
1390
+ 1401,Circuit_breaker600,3 pole NEMA 1 600V units are amps,,,rs-means,Unit,181756,unit,,,,,,,,,,,1,1
1391
+ 1402,Circuit_breaker240,3 pole NEMA 240V units are amps,30,,rs-means,Unit,181757,unit,,,,,,,,,,,1,1
1392
+ 1403,Circuit_breaker240,3 pole NEMA 240V units are amps,60,,rs-means,Unit,181758,unit,,,,,,,,,,,1,1
1393
+ 1404,Circuit_breaker240,3 pole NEMA 240V units are amps,100,,rs-means,Unit,181759,unit,,,,,,,,,,,1,1
1394
+ 1405,Circuit_breaker240,3 pole NEMA 240V units are amps,200,,rs-means,Unit,181760,unit,,,,,,,,,,,1,1
1395
+ 1406,Circuit_breaker240,3 pole NEMA 240V units are amps,400,,rs-means,Unit,181761,unit,,,,,,,,,,,1,1
1396
+ 1407,Circuit_breaker240,3 pole NEMA 240V units are amps,600,,rs-means,Unit,181762,unit,,,,,,,,,,,1,1
1397
+ 1414,Safety_switch,general duty 3 pole NEMA 1 fusable units are amps,30,,rs-means,Unit,181763,unit,,,,,,,,,,,1,1
1398
+ 1415,Safety_switch,general duty 3 pole NEMA 1 fusable units are amps,60,,rs-means,Unit,181764,unit,,,,,,,,,,,1,1
1399
+ 1416,Safety_switch,general duty 3 pole NEMA 1 fusable units are amps,100,,rs-means,Unit,181765,unit,,,,,,,,,,,1,1
1400
+ 1417,Safety_switch,general duty 3 pole NEMA 1 fusable units are amps,200,,rs-means,Unit,181766,unit,,,,,,,,,,,1,1
1401
+ 1418,Safety_switch,general duty 3 pole NEMA 1 fusable units are amps,400,,rs-means,Unit,181767,unit,,,,,,,,,,,1,1
1402
+ 1419,Safety_switch,general duty 3 pole NEMA 1 fusable units are amps,600,,rs-means,Unit,181768,unit,,,,,,,,,,,1,1
1403
+ 1420,fuse_250V_timedelay,dual element time delay units are amps,30,,rs-means,Unit,181769,unit,,,,,,,,,,,1,1
1404
+ 1421,fuse_250V_timedelay,dual element time delay units are amps,5,,rs-means,Unit,181770,unit,,,,,,,,,,,1,1
1405
+ 1422,fuse_250V_timedelay,dual element time delay units are amps,60,,rs-means,Unit,181771,unit,,,,,,,,,,,1,1
1406
+ 1423,fuse_250V_timedelay,dual element time delay units are amps,100,,rs-means,Unit,181772,unit,,,,,,,,,,,1,1
1407
+ 1424,fuse_250V_timedelay,dual element time delay units are amps,200,,rs-means,Unit,181773,unit,,,,,,,,,,,1,1
1408
+ 1425,fuse_250V_timedelay,dual element time delay units are amps,400,,rs-means,Unit,181774,unit,,,,,,,,,,,1,1
1409
+ 1426,fuse_250V_timedelay,dual element time delay units are amps,600,,rs-means,Unit,181775,unit,,,,,,,,,,,1,1
1410
+ 1427,fuse_120V,standard fuse 0.3 to 14 amp,14,,rs-means,Unit,181776,unit,,,,,,,,,,,1,1
1411
+ 1428,fuse_120V,standard fuse 15 to 30 amp,15,,rs-means,Unit,181777,unit,,,,,,,,,,,1,1
1412
+ 1429,pvpanel,Solarland 12V SLP100-12U 26.57 x 41.81 x 1.18,100,poly,custom,,181778,unit,BRITISH COLUMBIA,VANCOUVER,2020,224.75,35,0,1.25,1.25,1,www.wholesalesolar.com,1,1
1413
+ 1430,pvpanel,Solarland 12V SLP120-12U 26.57 x 48.98 x 1.38,120,poly,custom,,181779,unit,BRITISH COLUMBIA,VANCOUVER,2020,269.7,35,0,1.25,1.25,1,www.wholesalesolar.com,1,1
1414
+ 1431,pvpanel,Solarland 12V SLP175S-12 26.57 x 59.06 x 1.38,175,mono,custom,,181780,unit,BRITISH COLUMBIA,VANCOUVER,2020,324,35,0,1.25,1.25,1,www.wholesalesolar.com,1,1
1415
+ 1432,pvpanel,Heliene Black 60 cell 39.4 x 65.5 x 1.6 ,320,mono,custom,,181781,unit,BRITISH COLUMBIA,VANCOUVER,2020,256,35,0,1.25,1.25,1,www.wholesalesolar.com,1,1
1416
+ 1433,pvpanel,Panasonic Black Frame HIT 60 cell 41.5 x 62.5 x 1.6 ,325,mono,custom,,181782,unit,BRITISH COLUMBIA,VANCOUVER,2020,355,35,0,1.25,1.25,1,www.wholesalesolar.com,1,1
1417
+ 1434,pvpanel,LG NeON2 LG-335N1K-V5 Black/Black 40 x 66.4 x 1.57 ,335,mono,custom,,181783,unit,BRITISH COLUMBIA,VANCOUVER,2020,380,35,0,1.25,1.25,1,www.wholesalesolar.com,1,1
1418
+ 1435,pvpanel,Astronergy CHSM6612M Silver Mono PERC 38.98 x 76.93 x 1.57 ,365,perc,custom,,181784,unit,BRITISH COLUMBIA,VANCOUVER,2020,257,35,0,1.25,1.25,1,www.wholesalesolar.com,1,1
1419
+ 1436,pvpanel,Canadian Solar MC4 CS3k-320MS Black Mon PERC 39.1 x 65.9 x 1.38,320,perc,custom,,181785,unit,BRITISH COLUMBIA,VANCOUVER,2020,205,35,0,1.25,1.25,1,www.wholesalesolar.com,1,1
1420
+ 1437,pvpanel,Mission Solar Black Mon PERC 39.33 x 65.53 x 1.58,310,perc,custom,,181786,unit,BRITISH COLUMBIA,VANCOUVER,2020,259,35,0,1.25,1.25,1,www.wholesalesolar.com,1,1
1421
+ 1438,pvpanel,Hanwha Mono 39.4 x 65.7 x 1.26,310,mono,custom,,181787,unit,BRITISH COLUMBIA,KAMLOOPS,2020,269.6,35,0,1.25,1.25,1,www.cdnsolar.ca,1,1
1422
+ 1439,pvpanel,Canadian Solar CS3k-325MS Black Mon PERC 39.1 x 65.9 x 1.38,325,perc,custom,,181788,unit,BRITISH COLUMBIA,KAMLOOPS,2020,283,35,0,1.25,1.25,1,www.cdnsolar.ca,1,1
1423
+ 1440,pvpanel,Canadian Solar 72 Cell Maxpower 325 38.7 x 76.9 x 1.57,325,poly,custom,,181789,unit,ONTARIO,LONDON,2020,279,35,0,1.25,1.25,1,www.thesolarsupermarket.com,1,1
1424
+ 1441,pvpanel,Hanwha 72 Cell Quantum HSQ-340-72P 39.7 x 78.5 x 1.38,340,poly,custom,,181790,unit,ONTARIO,LONDON,2020,305,35,0,1.25,1.25,1,www.thesolarsupermarket.com,1,1
1425
+ 1442,pvpanel,Hanwha SF220-30-P225 37 x 65.04 x 1.97,220,poly,custom,,181791,unit,ONTARIO,LONDON,2020,170,35,0,1.25,1.25,1,www.thesolarsupermarket.com,1,1
1426
+ 1443,pvpanel,Heliene 36HD 26.6 x 58.6 x 1.6,160,mono,custom,,181792,unit,ONTARIO,LONDON,2020,263,35,0,1.25,1.25,1,www.thesolarsupermarket.com,1,1
1427
+ 1444,pvpanel,HES-160-36PV 26.6 x 58.3 x 1.38,160,poly,custom,,181793,unit,ONTARIO,LONDON,2020,259,35,0,1.25,1.25,1,www.thesolarsupermarket.com,1,1
1428
+ 1445,pvpanel,HES-265-60PV 39 x 64.6 x 1.36,265,poly,custom,,181794,unit,ONTARIO,LONDON,2020,249,35,0,1.25,1.25,1,www.thesolarsupermarket.com,1,1
1429
+ 1446,pvpanel,"Global Solar Energy PowerFlex+ flexible thin film (CIGS) for awnings, BIPV 19.4 x 81.4 x 0.12",100,thin,custom,,181795,unit,BRITISH COLUMBIA,VICTORIA,2019,399,35,0,1.25,1.25,1,www.modernoutpost.com,1,1
1430
+ 1447,pvpanel,"Powerfilm, Soltronic Semi-Flex with Sunpower cells, 21 x 44.5 x 0.08",100,thin,custom,,181796,unit,BRITISH COLUMBIA,VICTORIA,2019,649,35,0,1.25,1.25,1,www.modernoutpost.com,1,1
1431
+ 1448,pvpanel,"Go Power, GP-Flex - 100E, Flexible with Sunpower cells, 21.3 x 41.7 x 0.1",100,thin,custom,,181797,unit,BRITISH COLUMBIA,VICTORIA,2019,549,35,0,1.25,1.25,1,www.modernoutpost.com,1,1
1432
+ 1449,RecChillerAir,"Water chiller, reciprocating, packaged, air cooled, 20 ton cooling, includes standard controls, excludes remote air cooled condensers",70.34,,rs-means,Unit,171798,each,,,,,,,,,,,1,1
1433
+ 1450,RecChillerAir,"Water chiller, reciprocating, packaged, air cooled, 35 ton cooling, includes standard controls, excludes remote air cooled condensers",123.095,,rs-means,Unit,171799,each,,,,,,,,,,,1,1
1434
+ 1451,RecChillerAir,"Water chiller, reciprocating, packaged, air cooled, 45 ton cooling, includes standard controls, excludes remote air cooled condensers",158.265,,rs-means,Unit,171800,each,,,,,,,,,,,1,1
1435
+ 1452,RecChillerAir,"Water chiller, reciprocating, packaged, air cooled, 50 ton cooling, includes standard controls, excludes remote air cooled condensers",175.85,,rs-means,Unit,171034,each,,,,,,,,,,,1,1
1436
+ 1453,RecChillerAir,"Water chiller, reciprocating, packaged, air cooled, 85 ton cooling, includes standard controls, excludes remote air cooled condensers",298.945,,rs-means,Unit,171801,each,,,,,,,,,,,1,1
1437
+ 1454,RecChillerAir,"Water chiller, reciprocating, packaged, air cooled, 95 ton cooling, includes standard controls, excludes remote air cooled condensers",334.115,,rs-means,Unit,171802,each,,,,,,,,,,,1,1
1438
+ 1455,RecChillerWater,"Water chiller, reciprocating, multiple compressor, semi-hermetic, water cooled, 45 ton cooling, includes standard controls, excludes water tower",158.265,,rs-means,Unit,171803,each,,,,,,,,,,,1,1
1439
+ 1456,ScrollChillerAir,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 10 Ton, includes standard controls",35.17,,rs-means,Unit,171804,each,,,,,,,,,,,1,1
1440
+ 1457,ScrollChillerAir,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 35 Ton, includes standard controls",123.095,,rs-means,Unit,171805,each,,,,,,,,,,,1,1
1441
+ 1458,ScrollChillerAir,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 45 Ton, includes standard controls",158.265,,rs-means,Unit,171806,each,,,,,,,,,,,1,1
1442
+ 1459,ScrollChillerAir,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 70 Ton, includes standard controls",246.19,,rs-means,Unit,171807,each,,,,,,,,,,,1,1
1443
+ 1460,ScrollChillerAir,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 100 Ton, includes standard controls",351.7,,rs-means,Unit,171808,each,,,,,,,,,,,1,1
1444
+ 1461,ScrollChillerAir,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 110 Ton, includes standard controls",386.87,,rs-means,Unit,171809,each,,,,,,,,,,,1,1
1445
+ 1462,ScrollChillerAir,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 130 Ton, includes standard controls",457.21,,rs-means,Unit,171810,each,,,,,,,,,,,1,1
1446
+ 1463,ScrollChillerAir,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 170 Ton, includes standard controls",597.89,,rs-means,Unit,171811,each,,,,,,,,,,,1,1
1447
+ 1464,ScrollChillerAir,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 210 Ton, includes standard controls",738.5699999999999,,rs-means,Unit,171812,each,,,,,,,,,,,1,1
1448
+ 1465,ScrollChillerAir,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 250 Ton, includes standard controls",879.25,,rs-means,Unit,171813,each,,,,,,,,,,,1,1
1449
+ 1466,ScrollChillerAir,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 275 Ton, includes standard controls",967.175,,rs-means,Unit,171814,each,,,,,,,,,,,1,1
1450
+ 1467,ScrollChillerAir,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 300 Ton, includes standard controls",1055.1,,rs-means,Unit,171815,each,,,,,,,,,,,1,1
1451
+ 1468,ScrollChillerAir,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 330 Ton, includes standard controls",1160.61,,rs-means,Unit,171816,each,,,,,,,,,,,1,1
1452
+ 1469,ScrollChillerAir,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 390 Ton, includes standard controls",1371.6299999999999,,rs-means,Unit,171817,each,,,,,,,,,,,1,1
1453
+ 1470,groundconduit,galvanized steel conduit 1.5 inches in diameter,1.5,,rs-means,Unit,181818,each,,,,,,,,,,,1,1
1454
+ 1471,CondensingUnit-adv,"Air cooled compressor, standard controls 1.5 tons",5.2755,,rs-means,Unit,171182,,,,,,,,,,,,1.36,1
1455
+ 1472,CondensingUnit-adv,"Air cooled compressor, standard controls 2 tons",7.034,,rs-means,Unit,171183,,,,,,,,,,,,1.36,1
1456
+ 1473,CondensingUnit-adv,"Air cooled compressor, standard controls 2.5 tons",8.7925,,rs-means,Unit,171184,,,,,,,,,,,,1.36,1
1457
+ 1474,CondensingUnit-adv,"Air cooled compressor, standard controls 3 tons",10.551,,rs-means,Unit,171185,,,,,,,,,,,,1.36,1
1458
+ 1475,CondensingUnit-adv,"Air cooled compressor, standard controls 3.5 tons",12.3095,,rs-means,Unit,171186,,,,,,,,,,,,1.36,1
1459
+ 1476,CondensingUnit-adv,"Air cooled compressor, standard controls 4 tons",14.068,,rs-means,Unit,171187,,,,,,,,,,,,1.36,1
1460
+ 1477,CondensingUnit-adv,"Air cooled compressor, standard controls 5 tons",17.585,,rs-means,Unit,171188,,,,,,,,,,,,1.36,1
1461
+ 1478,CondensingUnit-adv,"Air cooled compressor, standard controls 7.5 tons",26.377499999999998,,rs-means,Unit,171189,,,,,,,,,,,,1.36,1
1462
+ 1479,CondensingUnit-adv,"Air cooled compressor, standard controls 8.5 tons",29.8945,,rs-means,Unit,171190,,,,,,,,,,,,1.36,1
1463
+ 1480,CondensingUnit-adv,"Air cooled compressor, standard controls 10 tons",35.17,,rs-means,Unit,171191,,,,,,,,,,,,1.36,1
1464
+ 1481,CondensingUnit-adv,"Air cooled compressor, standard controls 12.5 tons",43.9625,,rs-means,Unit,171192,,,,,,,,,,,,1.36,1
1465
+ 1482,CondensingUnit-adv,"Air cooled compressor, standard controls 15 tons",52.754999999999995,,rs-means,Unit,171193,,,,,,,,,,,,1.36,1
1466
+ 1483,CondensingUnit-adv,"Air cooled compressor, standard controls 20 tons",70.34,,rs-means,Unit,171194,,,,,,,,,,,,1.36,1
1467
+ 1484,CondensingUnit-adv,"Air cooled compressor, standard controls 25 tons",87.925,,rs-means,Unit,171195,,,,,,,,,,,,1.36,1
1468
+ 1485,CondensingUnit-adv,"Air cooled compressor, standard controls 30 tons",105.50999999999999,,rs-means,Unit,171196,,,,,,,,,,,,1.36,1
1469
+ 1486,CondensingUnit-adv,"Air cooled compressor, standard controls 40 tons",140.68,,rs-means,Unit,171197,,,,,,,,,,,,1.36,1
1470
+ 1487,CondensingUnit-adv,"Air cooled compressor, standard controls 50 tons",175.85,,rs-means,Unit,171198,,,,,,,,,,,,1.36,1
1471
+ 1488,CondensingUnit-adv,"Air cooled compressor, standard controls 60 tons",211.01999999999998,,rs-means,Unit,171199,,,,,,,,,,,,1.36,1
1472
+ 1489,CondensingUnit-adv,"Air cooled compressor, standard controls 70 tons",246.19,,rs-means,Unit,171200,,,,,,,,,,,,1.36,1
1473
+ 1490,CondensingUnit-adv,"Air cooled compressor, standard controls 80 tons",281.36,,rs-means,Unit,171201,,,,,,,,,,,,1.36,1
1474
+ 1491,CondensingUnit-adv,"Air cooled compressor, standard controls 90 tons",316.53,,rs-means,Unit,171202,,,,,,,,,,,,1.36,1
1475
+ 1492,CondensingUnit-adv,"Air cooled compressor, standard controls 100 tons",351.7,,rs-means,Unit,171203,,,,,,,,,,,,1.36,1
1476
+ 1493,VRF-HP-HRV-Outdoor,Outdoor HP unit with VSD condensing fan U-72MF2U94 MF2 460V HTG 81 KBTU CLG 72 KBTU,23.732999999999997,,custom,,171819,unit,ONTARIO,TORONTO,2020,16685,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1477
+ 1494,VRF-HP-HRV-Outdoor,Outdoor HP unit with VSD condensing fan U-96MF2U94 MF2 460V HTG 108 KBTU CLG 96 KBTU,31.644,,custom,,171820,unit,ONTARIO,TORONTO,2020,19612.5,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1478
+ 1495,VRF-HP-HRV-Outdoor,Outdoor HP unit with VSD condensing fan U-120MF2U94 MF2 460V HTG 135 KBTU CLG 120 KBTU,39.555,,custom,,171821,unit,ONTARIO,TORONTO,2020,25420,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1479
+ 1496,VRF-HP-HRV-Outdoor,Outdoor HP unit with VSD condensing fan U-144MF2U94 MF2 460V HTG 162 KBTU CLG 144 KBTU,47.465999999999994,,custom,,171822,unit,ONTARIO,TORONTO,2020,31535,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1480
+ 1497,VRF-HP-Outdoor,Outdoor HP unit with VSD condensing fan U-72ME2U94 ME2 460V HTG 81 KBTU CLG 72 KBTU,23.732999999999997,,custom,,171823,unit,ONTARIO,TORONTO,2020,15172.5,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1481
+ 1498,VRF-HP-Outdoor,Outdoor HP unit with VSD condensing fan U-96ME2U94 ME2 460V HTG 108 KBTU CLG 96 KBTU,31.644,,custom,,171824,unit,ONTARIO,TORONTO,2020,16652.5,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1482
+ 1499,VRF-HP-Outdoor,Outdoor HP unit with VSD condensing fan U-120ME2U94 ME2 460V HTG 135 KBTU CLG 120 KBTU,39.555,,custom,,171825,unit,ONTARIO,TORONTO,2020,21585,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1483
+ 1500,VRF-HP-Outdoor,Outdoor HP unit with VSD condensing fan U-144ME2U94 ME2 460V HTG 162 KBTU CLG 144 KBTU,47.465999999999994,,custom,,171826,unit,ONTARIO,TORONTO,2020,26775,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1484
+ 1501,VRF-MiniHP-Outdoor,Outdoor HP unit with VSD condensing fan U-36LE1U6 LE 460V HTG 38.5 KBTU CLG 37 KBTU,11.2805,,custom,,171827,unit,ONTARIO,TORONTO,2020,7392.5,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1485
+ 1502,VRF-MiniHP-Outdoor,Outdoor HP unit with VSD condensing fan U-52LE1U6 LE 460V HTG 55 KBTU CLG 52 KBTU,16.115,,custom,,171828,unit,ONTARIO,TORONTO,2020,8675,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1486
+ 1503,VRF-WallMount,Wallmount cassette: 230/265/320 cfm fan S-07MK2U6 MK2 460V HTG 8.5 KBTU CLG 7.5 KBTU,2.4905,,custom,,171829,unit,ONTARIO,TORONTO,2020,1600,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1487
+ 1504,VRF-WallMount,Wallmount cassette: 240/300/345 cfm fan S-09MK2U6 MK2 460V HTG 11 KBTU CLG 9.6 KBTU,3.223,,custom,,171830,unit,ONTARIO,TORONTO,2020,1600,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1488
+ 1505,VRF-WallMount,Wallmount cassette: 240/335/395 cfm fan S-12MK2U6 MK2 460V HTG 14 KBTU CLG 12 KBTU,4.101999999999999,,custom,,171831,unit,ONTARIO,TORONTO,2020,1682.5,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1489
+ 1506,VRF-WallMount,Wallmount cassette: 335/441/565 cfm fan S-18MK2U6 MK2 460V HTG 20 KBTU CLG 18 KBTU,5.859999999999999,,custom,,171832,unit,ONTARIO,TORONTO,2020,1775,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1490
+ 1507,VRF-WallMount,Wallmount cassette: 406/512/635 cfm fan S-24MK2U6 MK2 460V HTG 27 KBTU CLG 25 KBTU,7.911,,custom,,171833,unit,ONTARIO,TORONTO,2020,1970,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1491
+ 1508,VRF-CeilingMount,4-way cassette: 371/424/494 cfm fan S-12MY2U6 MY2 460V HTG 14 KBTU CLG 12 KBTU,4.101999999999999,,custom,,171834,unit,ONTARIO,TORONTO,2020,1835,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1492
+ 1509,VRF-CeilingMount,4-way cassette: 305/345/390 cfm fan S-18MY2U6 MY2 460V HTG 21 KBTU CLG 19 KBTU,6.153,,custom,,171835,unit,ONTARIO,TORONTO,2020,1885,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1493
+ 1510,VRF-DuctMount,concealed duct cassette: 212/247/283 cfm fan S-07MM2U6 MM2 460V HTG 8.5 KBTU CLG 7.5 KBTU,2.4905,,custom,,171836,unit,ONTARIO,TORONTO,2020,1680,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1494
+ 1511,VRF-DuctMount,concealed duct cassette: 230/265/300 cfm fan S-09MM2U6 MM2 460V HTG 11 KBTU CLG 9.6 KBTU,3.223,,custom,,171837,unit,ONTARIO,TORONTO,2020,1715,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1495
+ 1512,VRF-DuctMount,concealed duct cassette: 247/283/318 cfm fan S-12MM2U6 MM2 460V HTG 14 KBTU CLG 12 KBTU,4.101999999999999,,custom,,171838,unit,ONTARIO,TORONTO,2020,1735,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1496
+ 1513,VRF-DuctMount,concealed duct cassette: 283/336/371 cfm fan S-15MM2U6 MM2 460V HTG 17 KBTU CLG 15 KBTU,4.981,,custom,,171839,unit,ONTARIO,TORONTO,2020,1790,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1497
+ 1514,VRF-DuctMount,concealed duct cassette: 353/406/442 cfm fan S-18MM2U6 MM2 460V HTG 21 KBTU CLG 18 KBTU,6.153,,custom,,171840,unit,ONTARIO,TORONTO,2020,1850,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1498
+ 1515,VRF-FloorMount,floor mount unit: fan S-07MP1U6 460V HTG 9 KBTU CLG 7.5 KBTU,2.637,,custom,,171841,unit,ONTARIO,TORONTO,2020,2197.5,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1499
+ 1516,VRF-FloorMount,floor mount unit: fan S-09MP1U6 460V HTG 9.6 KBTU CLG 9 KBTU,2.8127999999999997,,custom,,171842,unit,ONTARIO,TORONTO,2020,2252.5,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1500
+ 1517,VRF-FloorMount,floor mount unit: fan S-12MP1U6 460V HTG 12 KBTU CLG 12 KBTU,3.516,,custom,,171843,unit,ONTARIO,TORONTO,2020,2307.5,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1501
+ 1518,VRF-FloorMount,floor mount unit: fan S-15MP1U6 460V HTG 15 KBTU CLG 15 KBTU,4.395,,custom,,171844,unit,ONTARIO,TORONTO,2020,2565,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1502
+ 1519,VRF-FloorMount,floor mount unit: fan S-18MP1U6 460V HTG 18 KBTU CLG 18 KBTU,5.274,,custom,,171845,unit,ONTARIO,TORONTO,2020,2620,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1503
+ 1520,VRF-FloorMount,floor mount unit: fan S-24MP1U6 460V HTG 24 KBTU CLG 24 KBTU,7.032,,custom,,171846,unit,ONTARIO,TORONTO,2020,2772.5,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1504
+ 1521,VRF-Sys-Controller,System basic controller CZ-64ESMC2Y,,,custom,,171847,unit,ONTARIO,TORONTO,2020,910,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1505
+ 1522,VRF-Bacnet-IP,Bacnet IP Controller USPA-AC-BAC-128,,,custom,,171848,unit,ONTARIO,TORONTO,2020,4812.5,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1506
+ 1523,VRF-Comm,Communication adapter CZ-CFUNC1U,,,custom,,171849,unit,ONTARIO,TORONTO,2020,2660,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1507
+ 1524,VRF-Solenoid-1a,"Soleniod valve kit for 3-way (with heat recovery) CZ-P160HR2U (max 1 vrf units, size in kW)",5.566999999999999,,custom,,171850,unit,ONTARIO,TORONTO,2020,1492.5,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1508
+ 1525,VRF-DuctFlange,Duct flange for 4 way duct connection to indoor ceiling unit CZ-160DAF2,,,custom,,171851,unit,ONTARIO,TORONTO,2020,315,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1509
+ 1526,Refrig-tubing,refrigerant interior piping set 0.5 in supply 0.75 in return 10 ft length,10,,rs-means,Unit,171852,,,,,,,,,,,,1,1
1510
+ 1527,Refrig-tubing,refrigerant interior piping set 0.5 in supply 0.75 in return 50 ft length,50,,rs-means,Unit,171853,,,,,,,,,,,,,
1511
+ 1528,VRF-Solenoid,"Soleniod valve kit for 3-way (with heat recovery) CZ-P4160HR2U (max 4 vrf units, size in kW)",69.9684,4,custom,,171854,unit,ONTARIO,TORONTO,2020,6550,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1512
+ 1529,VRF-Solenoid,"Soleniod valve kit for 3-way (with heat recovery) CZ-P560HR2U (max 1 vrf units, size in kW)",5.566999999999999,1,custom,,171855,unit,ONTARIO,TORONTO,2020,1347.5,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1513
+ 1530,VRF-Solenoid,"Soleniod valve kit for 3-way (with heat recovery) CZ-P4560HR2U (max 4 vrf units, size in kW)",24.4655,4,custom,,171856,unit,ONTARIO,TORONTO,2020,5985,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1514
+ 1531,VRF-Solenoid,"Soleniod valve kit for 3-way (with heat recovery) CZ-P6560HR2U (max 6 vrf units, size in kW)",36.3906,6,custom,,171857,unit,ONTARIO,TORONTO,2020,8852.5,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1515
+ 1532,VRF-Solenoid,"Soleniod valve kit for 3-way (with heat recovery) CZ-P8560HR2U (max 8 vrf units, size in kW)",47.5832,8,custom,,171858,unit,ONTARIO,TORONTO,2020,11682.5,664,0,1.25,1.25,1,"panasonic, labour rsmeans toronto 2020",1,1
1516
+ 1533,wiring-control,"600 v copper, #14 THWN wire with PVC jacket - 2 wire",2,,rs-means,Unit,181859,CLF,,,,,,,,,,,1,1
1517
+ 1534,wiring-control,"600 v copper, #14 THWN wire with PVC jacket - 3 wire",3,,rs-means,Unit,181860,CLF,,,,,,,,,,,1,1
1518
+ 1535,wiring-control,"600 v copper, #14 THWN wire with PVC jacket - 4 wire",4,,rs-means,Unit,181861,CLF,,,,,,,,,,,1,1
1519
+ 1536,wiring-control,"600 v copper, #14 THWN wire with PVC jacket - 5 wire",5,,rs-means,Unit,181862,CLF,,,,,,,,,,,1,1
1520
+ 1537,nat_vent_control,SyxthSense natural ventilation AHU controller,,,custom,Unit,171863,unit,ONTARIO,TORONTO,2020,376.464,200,0,1.25,1.25,1,pricing in pd sterling converted,1,1
1521
+ 1538,nat_vent_sensor,SyxthSense natural ventilation CO2 sensor and lead ,,,custom,Unit,171864,unit,ONTARIO,TORONTO,2020,30.187499999999996,200,0,1.25,1.25,1,pricing in pd sterling converted,1,1
1522
+ 1539,nat_vent_usb,SyxthSense natural ventilation USB connection and configuration kit,,,custom,Unit,171865,unit,ONTARIO,TORONTO,2020,125.488,30,0,1.25,1.25,1,pricing in pd sterling converted,1,1
1523
+ 1540,duct_damper_motor,"round duct damper, motor operated diameter in inches",6,,rs-means,Unit,171866,unit,,,,,,,,,,,,
1524
+ 1541,duct_damper_motor,"round duct damper, motor operated diameter in inches",7,,rs-means,Unit,171867,unit,,,,,,,,,,,,
1525
+ 1542,duct_damper_motor,"round duct damper, motor operated diameter in inches",8,,rs-means,Unit,171868,unit,,,,,,,,,,,,
1526
+ 1543,duct_damper_motor,"round duct damper, motor operated diameter in inches",10,,rs-means,Unit,171869,unit,,,,,,,,,,,,
1527
+ 1544,duct_damper_motor,"round duct damper, motor operated diameter in inches",12,,rs-means,Unit,171870,unit,,,,,,,,,,,,
1528
+ 1545,duct_damper_motor,"round duct damper, motor operated diameter in inches",14,,rs-means,Unit,171871,unit,,,,,,,,,,,,
1529
+ 1546,duct_damper_lever,"round duct damper, volume control, lever locking and adjustable, diameter in inches",6,,rs-means,Unit,170562,unit,,,,,,,,,,,,
1530
+ 1547,duct_damper_lever,"round duct damper, volume control, lever locking and adjustable, diameter in inches",7,,rs-means,Unit,171872,unit,,,,,,,,,,,,
1531
+ 1548,duct_damper_lever,"round duct damper, volume control, lever locking and adjustable, diameter in inches",8,,rs-means,Unit,170563,unit,,,,,,,,,,,,
1532
+ 1549,duct_damper_lever,"round duct damper, volume control, lever locking and adjustable, diameter in inches",9,,rs-means,Unit,171873,unit,,,,,,,,,,,,
1533
+ 1550,duct_damper_lever,"round duct damper, volume control, lever locking and adjustable, diameter in inches",10,,rs-means,Unit,171874,unit,,,,,,,,,,,,
1534
+ 1551,duct_damper_lever,"round duct damper, volume control, lever locking and adjustable, diameter in inches",12,,rs-means,Unit,171875,unit,,,,,,,,,,,,
1535
+ 1552,duct_damper_lever,"round duct damper, volume control, lever locking and adjustable, diameter in inches",14,,rs-means,Unit,171876,unit,,,,,,,,,,,,
1536
+ 1553,duct_damper_lever,"round duct damper, volume control, lever locking and adjustable, diameter in inches",16,,rs-means,Unit,171877,unit,,,,,,,,,,,,
1537
+ 1554,ChillerHot_VSDAbsorptionWaterChiller,"Absorption water chiller, indirect-fired, steam or hot water, water cooled, single stage, 100 ton",351.7,,rs-means,Unit,170990,each,,,,,,,,,,,1.35,1
1538
+ 1555,ChillerHot_VSDAbsorptionWaterChiller,"Absorption water chiller, indirect-fired, steam or hot water, water cooled, single stage, 148 ton",520.516,,rs-means,Unit,170991,each,,,,,,,,,,,1.35,1
1539
+ 1556,ChillerHot_VSDAbsorptionWaterChiller,"Absorption water chiller, indirect-fired, steam or hot water, water cooled, single stage, 200 ton",703.4,,rs-means,Unit,170992,each,,,,,,,,,,,1.3,1
1540
+ 1557,ChillerHot_VSDAbsorptionWaterChiller,"Absorption water chiller, indirect-fired, steam or hot water, water cooled, single stage, 250 ton",879.25,,rs-means,Unit,170993,each,,,,,,,,,,,1.3,1
1541
+ 1558,ChillerHot_VSDAbsorptionWaterChiller,"Absorption water chiller, indirect-fired, steam or hot water, water cooled, single stage, 354 ton",1245.018,,rs-means,Unit,170994,each,,,,,,,,,,,1.3,1
1542
+ 1559,ChillerHot_VSDAbsorptionWaterChiller,"Absorption water chiller, indirect-fired, steam or hot water, water cooled, single stage, 420 ton",1477.1399999999999,,rs-means,Unit,170995,each,,,,,,,,,,,1.3,1
1543
+ 1560,ChillerHot_VSDAbsorptionWaterChiller,"Absorption water chiller, indirect-fired, steam or hot water, water cooled, single stage, 665 ton",2338.805,,rs-means,Unit,170996,each,,,,,,,,,,,1.3,1
1544
+ 1561,ChillerHot_VSDAbsorptionWaterChiller,"Absorption water chiller, indirect-fired, steam or hot water, water cooled, single stage, 750 ton",2637.75,,rs-means,Unit,170997,each,,,,,,,,,,,1.3,1
1545
+ 1562,ChillerHot_VSDAbsorptionWaterChiller,"Absorption water chiller, indirect-fired, steam or hot water, water cooled, single stage, 850 ton",2989.45,,rs-means,Unit,170998,each,,,,,,,,,,,1.3,1
1546
+ 1563,ChillerHot_VSDAbsorptionWaterChiller,"Absorption water chiller, indirect-fired, steam or hot water, water cooled, single stage, 955 ton",3358.735,,rs-means,Unit,170999,each,,,,,,,,,,,1.3,1
1547
+ 1564,ChillerHot_VSDAbsorptionWaterChiller,"Absorption water chiller, indirect-fired, steam or hot water, water cooled, single stage, 1125 ton",3956.625,,rs-means,Unit,171000,each,,,,,,,,,,,1.3,1
1548
+ 1565,ChillerHot_VSDAbsorptionWaterChiller,"Absorption water chiller, indirect-fired, steam or hot water, water cooled, single stage, 1250 ton",4396.25,,rs-means,Unit,171001,each,,,,,,,,,,,1.3,1
1549
+ 1566,ChillerHot_VSDAbsorptionWaterChiller,"Absorption water chiller, indirect-fired, steam or hot water, water cooled, single stage, 1465 ton",5152.405,,rs-means,Unit,171002,each,,,,,,,,,,,1.3,1
1550
+ 1567,ChillerHot_VSDAbsorptionWaterChiller,"Absorption water chiller, indirect-fired, steam or hot water, water cooled, single stage, 1660 ton",5838.22,,rs-means,Unit,171003,each,,,,,,,,,,,1.3,1
1551
+ 1568,ChillerElectricEIR_VSDCentrifugalWaterChiller,"Water chiller, centrifugal liquid chiller, packaged unit, water cooled, 200 ton, includes standard controls, excludes water tower",703.4,,rs-means,Unit,171004,each,,,,,,,,,,,1.27,1
1552
+ 1569,ChillerElectricEIR_VSDCentrifugalWaterChiller,"Water chiller, centrifugal liquid chiller, packaged unit, water cooled, 300 ton, includes standard controls, excludes water tower",1055.1,,rs-means,Unit,171005,each,,,,,,,,,,,1.27,1
1553
+ 1570,ChillerElectricEIR_VSDCentrifugalWaterChiller,"Water chiller, centrifugal liquid chiller, packaged unit, water cooled, 400 ton, includes standard controls, excludes water tower",1406.8,,rs-means,Unit,171006,each,,,,,,,,,,,1.27,1
1554
+ 1571,ChillerElectricEIR_VSDCentrifugalWaterChiller,"Water chiller, centrifugal liquid chiller, packaged unit, water cooled, 500 ton, includes standard controls, excludes water tower",1758.5,,rs-means,Unit,171007,each,,,,,,,,,,,1.27,1
1555
+ 1572,ChillerElectricEIR_VSDCentrifugalWaterChiller,"Water chiller, centrifugal liquid chiller, packaged unit, water cooled, 600 ton, includes standard controls, excludes water tower",2110.2,,rs-means,Unit,171008,each,,,,,,,,,,,1.2,1
1556
+ 1573,ChillerElectricEIR_VSDCentrifugalWaterChiller,"Water chiller, centrifugal liquid chiller, packaged unit, water cooled, 700 ton, includes standard controls, excludes water tower",2461.9,,rs-means,Unit,171009,each,,,,,,,,,,,1.2,1
1557
+ 1574,ChillerElectricEIR_VSDCentrifugalWaterChiller,"Water chiller, centrifugal liquid chiller, packaged unit, water cooled, 800 ton, includes standard controls, excludes water tower",2813.6,,rs-means,Unit,171010,each,,,,,,,,,,,1.2,1
1558
+ 1575,ChillerElectricEIR_VSDCentrifugalWaterChiller,"Water chiller, centrifugal liquid chiller, packaged unit, water cooled, 900 ton, includes standard controls, excludes water tower",3165.2999999999997,,rs-means,Unit,171011,each,,,,,,,,,,,1.2,1
1559
+ 1576,ChillerElectricEIR_VSDCentrifugalWaterChiller,"Water chiller, centrifugal liquid chiller, packaged unit, water cooled, 1000 ton, includes standard controls, excludes water tower",3517,,rs-means,Unit,171012,each,,,,,,,,,,,1.2,1
1560
+ 1577,ChillerElectricEIR_VSDCentrifugalWaterChiller,"Water chiller, centrifugal liquid chiller, packaged unit, water cooled, 1200 ton, includes standard controls, excludes water tower",4220.4,,rs-means,Unit,171013,each,,,,,,,,,,,1.2,1
1561
+ 1578,ChillerElectricEIR_VSDCentrifugalWaterChiller,"Water chiller, centrifugal liquid chiller, packaged unit, water cooled, 1500 ton, includes standard controls, excludes water tower",5275.5,,rs-means,Unit,171014,each,,,,,,,,,,,1.2,1
1562
+ 1579,ChillerElectricEIR_VSDCentrifugalWaterChiller,"Water chiller, centrifugal liquid chiller, packaged unit, water cooled, 1700 ton, includes standard controls, excludes water tower",5978.9,,rs-means,Unit,171015,each,,,,,,,,,,,1.2,1
1563
+ 1580,ChillerElectricEIR_VSDCentrifugalWaterChiller,"Water chiller, centrifugal liquid chiller, packaged unit, water cooled, 2000 ton, includes standard controls, excludes water tower",7034,,rs-means,Unit,171016,each,,,,,,,,,,,1.2,1
1564
+ 1581,ChillerElectricEIR_VSDCentrifugalWaterChiller,"Water chiller, centrifugal liquid chiller, packaged unit, water cooled, 2500 ton, includes standard controls, excludes water tower",8792.5,,rs-means,Unit,171017,each,,,,,,,,,,,1.2,1
1565
+ 1582,ChillerElectricEIR_VSDReciprocatingWaterChiller,"Water chiller, reciprocating, multiple compressor, semi-hermetic, water cooled, 15 ton cooling, includes standard controls, excludes water tower",52.754999999999995,,rs-means,Unit,171018,each,,,,,,,,,,,1.35,1
1566
+ 1583,ChillerElectricEIR_VSDReciprocatingWaterChiller,"Water chiller, reciprocating, multiple compressor, semi-hermetic, water cooled, 25 ton cooling, includes standard controls, excludes water tower",87.925,,rs-means,Unit,171019,each,,,,,,,,,,,1.35,1
1567
+ 1584,ChillerElectricEIR_VSDReciprocatingWaterChiller,"Water chiller, reciprocating, multiple compressor, semi-hermetic, water cooled, 30 ton cooling, includes standard controls, excludes water tower",105.50999999999999,,rs-means,Unit,171020,each,,,,,,,,,,,1.35,1
1568
+ 1585,ChillerElectricEIR_VSDReciprocatingWaterChiller,"Water chiller, reciprocating, multiple compressor, semi-hermetic, water cooled, 35 ton cooling, includes standard controls, excludes water tower",123.095,,rs-means,Unit,171021,each,,,,,,,,,,,1.35,1
1569
+ 1586,ChillerElectricEIR_VSDReciprocatingWaterChiller,"Water chiller, reciprocating, multiple compressor, semi-hermetic, water cooled, 40 ton cooling, includes standard controls, excludes water tower",140.68,,rs-means,Unit,171022,each,,,,,,,,,,,1.35,1
1570
+ 1587,ChillerElectricEIR_VSDReciprocatingWaterChiller,"Water chiller, reciprocating, multiple compressor, semi-hermetic, water cooled, 50 ton cooling, includes standard controls, excludes water tower",175.85,,rs-means,Unit,171023,each,,,,,,,,,,,1.35,1
1571
+ 1588,ChillerElectricEIR_VSDReciprocatingWaterChiller,"Water chiller, reciprocating, multiple compressor, semi-hermetic, water cooled, 60 ton cooling, includes standard controls, excludes water tower",211.01999999999998,,rs-means,Unit,171024,each,,,,,,,,,,,1.35,1
1572
+ 1589,ChillerElectricEIR_VSDReciprocatingWaterChiller,"Water chiller, reciprocating, multiple compressor, semi-hermetic, water cooled, 75 ton cooling, includes standard controls, excludes water tower",263.775,,rs-means,Unit,171025,each,,,,,,,,,,,1.35,1
1573
+ 1590,ChillerElectricEIR_VSDReciprocatingWaterChiller,"Water chiller, reciprocating, multiple compressor, semi-hermetic, water cooled, 100 ton cooling, includes standard controls, excludes water tower",351.7,,rs-means,Unit,171026,each,,,,,,,,,,,1.35,1
1574
+ 1591,ChillerElectricEIR_VSDReciprocatingWaterChiller,"Water chiller, reciprocating, multiple compressor, semi-hermetic, water cooled, 115 ton cooling, includes standard controls, excludes water tower",404.455,,rs-means,Unit,171027,each,,,,,,,,,,,1.35,1
1575
+ 1592,ChillerElectricEIR_VSDReciprocatingWaterChiller,"Water chiller, reciprocating, multiple compressor, semi-hermetic, water cooled, 125 ton cooling, includes standard controls, excludes water tower",439.625,,rs-means,Unit,171028,each,,,,,,,,,,,1.35,1
1576
+ 1593,ChillerElectricEIR_VSDReciprocatingWaterChiller,"Water chiller, reciprocating, multiple compressor, semi-hermetic, water cooled, 145 ton cooling, includes standard controls, excludes water tower",509.965,,rs-means,Unit,171029,each,,,,,,,,,,,1.35,1
1577
+ 1594,ChillerElectricEIR_VSDReciprocatingWaterChiller,"Water chiller, reciprocating, multiple compressor, semi-hermetic, water cooled, 155 ton cooling, includes standard controls, excludes water tower",545.135,,rs-means,Unit,171030,each,,,,,,,,,,,1.3,1
1578
+ 1595,ChillerElectricEIR_VSDReciprocatingAirChiller,"Water chiller, reciprocating, packaged, air cooled, 15 ton cooling, includes standard controls, excludes remote air cooled condensers",52.754999999999995,,rs-means,Unit,171031,each,,,,,,,,,,,1.35,1
1579
+ 1596,ChillerElectricEIR_VSDReciprocatingAirChiller,"Water chiller, reciprocating, packaged, air cooled, 25 ton cooling, includes standard controls, excludes remote air cooled condensers",87.925,,rs-means,Unit,171032,each,,,,,,,,,,,1.35,1
1580
+ 1597,ChillerElectricEIR_VSDReciprocatingAirChiller,"Water chiller, reciprocating, packaged, air cooled, 40 ton cooling, includes standard controls, excludes remote air cooled condensers",140.68,,rs-means,Unit,171033,each,,,,,,,,,,,1.35,1
1581
+ 1598,ChillerElectricEIR_VSDReciprocatingAirChiller,"Water chiller, reciprocating, packaged, air cooled, 50 ton cooling, includes standard controls, excludes remote air cooled condensers",175.85,,rs-means,Unit,171034,each,,,,,,,,,,,1.35,1
1582
+ 1599,ChillerElectricEIR_VSDReciprocatingAirChiller,"Water chiller, reciprocating, packaged, air cooled, 60 ton cooling, includes standard controls, excludes remote air cooled condensers",211.01999999999998,,rs-means,Unit,171035,each,,,,,,,,,,,1.35,1
1583
+ 1600,ChillerElectricEIR_VSDReciprocatingAirChiller,"Water chiller, reciprocating, packaged, air cooled, 75 ton cooling, includes standard controls, excludes remote air cooled condensers",263.775,,rs-means,Unit,171036,each,,,,,,,,,,,1.35,1
1584
+ 1601,ChillerElectricEIR_VSDReciprocatingAirChiller,"Water chiller, reciprocating, packaged, air cooled, 105 ton cooling, includes standard controls, excludes remote air cooled condensers",369.28499999999997,,rs-means,Unit,171037,each,,,,,,,,,,,1.35,1
1585
+ 1602,ChillerElectricEIR_VSDReciprocatingAirChiller,"Water chiller, reciprocating, packaged, air cooled, 115 ton cooling, includes standard controls, excludes remote air cooled condensers",404.455,,rs-means,Unit,171038,each,,,,,,,,,,,1.35,1
1586
+ 1603,ChillerElectricEIR_VSDReciprocatingAirChiller,"Water chiller, reciprocating, packaged, air cooled, 125 ton cooling, includes standard controls, excludes remote air cooled condensers",439.625,,rs-means,Unit,171039,each,,,,,,,,,,,1.35,1
1587
+ 1604,ChillerElectricEIR_VSDReciprocatingAirChiller,"Water chiller, reciprocating, packaged, air cooled, 145 ton cooling, includes standard controls, excludes remote air cooled condensers",509.965,,rs-means,Unit,171040,each,,,,,,,,,,,1.35,1
1588
+ 1605,ChillerElectricEIR_VSDScrollAirChiller,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 15 Ton, includes standard controls",52.754999999999995,,rs-means,Unit,171041,each,,,,,,,,,,,1.35,1
1589
+ 1606,ChillerElectricEIR_VSDScrollAirChiller,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 20 ton cooling, includes standard controls",70.34,,rs-means,Unit,171042,each,,,,,,,,,,,1.35,1
1590
+ 1607,ChillerElectricEIR_VSDScrollAirChiller,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 25 ton cooling, includes standard controls",87.925,,rs-means,Unit,171043,each,,,,,,,,,,,1.35,1
1591
+ 1608,ChillerElectricEIR_VSDScrollAirChiller,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 30 ton cooling, includes standard controls",105.50999999999999,,rs-means,Unit,171044,each,,,,,,,,,,,1.35,1
1592
+ 1609,ChillerElectricEIR_VSDScrollAirChiller,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 40 ton cooling, includes standard controls",140.68,,rs-means,Unit,171045,each,,,,,,,,,,,1.35,1
1593
+ 1610,ChillerElectricEIR_VSDScrollAirChiller,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 50 ton cooling, includes standard controls",175.85,,rs-means,Unit,171046,each,,,,,,,,,,,1.35,1
1594
+ 1611,ChillerElectricEIR_VSDScrollWaterChiller,"Water chiller, scroll, single compressor, hermetic, water cooled, 2 ton cooling, includes standard controls, excludes water tower",7.034,,rs-means,Unit,171047,each,,,,,,,,,,,1.35,1
1595
+ 1612,ChillerElectricEIR_VSDScrollWaterChiller,"Water chiller, scroll, single compressor, hermetic, water cooled, 5 ton cooling, includes standard controls, excludes water tower",17.585,,rs-means,Unit,171048,each,,,,,,,,,,,1.35,1
1596
+ 1613,ChillerElectricEIR_VSDScrollWaterChiller,"Water chiller, scroll, single compressor, hermetic, water cooled, 10 ton cooling, includes standard controls, excludes water tower",35.17,,rs-means,Unit,171049,each,,,,,,,,,,,1.35,1
1597
+ 1614,ChillerElectricEIR_VSDScrollWaterChiller,"Water chiller, scroll, single compressor, hermetic, water cooled, 15 ton cooling, includes standard controls, excludes water tower",52.754999999999995,,rs-means,Unit,171050,each,,,,,,,,,,,1.35,1
1598
+ 1615,ChillerElectricEIR_VSDScrollWaterChiller,"Water chiller, scroll, single compressor, hermetic, water cooled, 20 ton cooling, includes standard controls, excludes water tower",70.34,,rs-means,Unit,171051,each,,,,,,,,,,,1.35,1
1599
+ 1616,ChillerElectricEIR_VSDScrollWaterChiller,"Water chiller, scroll, single compressor, hermetic, water cooled, 30 ton cooling, includes standard controls, excludes water tower",105.50999999999999,,rs-means,Unit,171052,each,,,,,,,,,,,1.35,1
1600
+ 1617,ChillerElectricEIR_VSDScrewAirChiller,"Water chiller, screw liquid chiller, air cooled, insulated evaporator, 130 ton, includes standard controls",457.21,,rs-means,Unit,171053,each,,,,,,,,,,,1.35,1
1601
+ 1618,ChillerElectricEIR_VSDScrewAirChiller,"Water chiller, screw liquid chiller, air cooled, insulated evaporator, 160 ton, includes standard controls",562.72,,rs-means,Unit,171054,each,,,,,,,,,,,1.3,1
1602
+ 1619,ChillerElectricEIR_VSDScrewAirChiller,"Water chiller, screw liquid chiller, air cooled, insulated evaporator, 210 ton, includes standard controls",738.5699999999999,,rs-means,Unit,171055,each,,,,,,,,,,,1.3,1
1603
+ 1620,ChillerElectricEIR_VSDScrewAirChiller,"Water chiller, screw liquid chiller, air cooled, insulated evaporator, 270 ton, includes standard controls",949.5899999999999,,rs-means,Unit,171056,each,,,,,,,,,,,1.3,1
1604
+ 1621,ChillerElectricEIR_VSDScrewAirChiller,"Water chiller, screw liquid chiller, air cooled, insulated evaporator, 320 ton, includes standard controls",1125.44,,rs-means,Unit,171057,each,,,,,,,,,,,1.3,1
1605
+ 1622,ChillerElectricEIR_VSDScrewWaterChiller,"Water chiller, screw liquid chiller, packaged unit, water cooled, 80 ton, includes standard controls, excludes water tower",281.36,,rs-means,Unit,171058,each,,,,,,,,,,,1.35,1
1606
+ 1623,ChillerElectricEIR_VSDScrewWaterChiller,"Water chiller, screw liquid chiller, packaged unit, water cooled, 100 ton, includes standard controls, excludes water tower",351.7,,rs-means,Unit,171059,each,,,,,,,,,,,1.35,1
1607
+ 1624,ChillerElectricEIR_VSDScrewWaterChiller,"Water chiller, screw liquid chiller, packaged unit, water cooled, 150 ton, includes standard controls, excludes water tower",527.55,,rs-means,Unit,171060,each,,,,,,,,,,,1.35,1
1608
+ 1625,ChillerElectricEIR_VSDScrewWaterChiller,"Water chiller, screw liquid chiller, packaged unit, water cooled, 200 ton, includes standard controls, excludes water tower",703.4,,rs-means,Unit,171061,each,,,,,,,,,,,1.3,1
1609
+ 1626,ChillerElectricEIR_VSDScrewWaterChiller,"Water chiller, screw liquid chiller, packaged unit, water cooled, 250 ton, includes standard controls, excludes water tower",879.25,,rs-means,Unit,171062,each,,,,,,,,,,,1.3,1
1610
+ 1627,ChillerElectricEIR_VSDScrewWaterChiller,"Water chiller, screw liquid chiller, packaged unit, water cooled, 300 ton, includes standard controls, excludes water tower",1055.1,,rs-means,Unit,171063,each,,,,,,,,,,,1.3,1
1611
+ 1628,ChillerElectricEIR_VSDScrewWaterChiller,"Water chiller, screw liquid chiller, packaged unit, water cooled, 350 ton, includes standard controls, excludes water tower",1230.95,,rs-means,Unit,171064,each,,,,,,,,,,,1.3,1
1612
+ 1629,ChillerElectricEIR_VSDDXAirChiller,"Water chiller, direct expansion, shell and tube type, for built-up systems, 1 ton, includes standard controls",3.517,,rs-means,Unit,171065,each,,,,,,,,,,,1.35,1
1613
+ 1630,ChillerElectricEIR_VSDDXAirChiller,"Water chiller, direct expansion, shell and tube type, for built-up systems, 5 Ton, includes standard controls",17.585,,rs-means,Unit,171066,each,,,,,,,,,,,1.35,1
1614
+ 1631,ChillerElectricEIR_VSDDXAirChiller,"Water chiller, direct expansion, shell and tube type, for built-up systems, 10 ton, includes standard controls",35.17,,rs-means,Unit,171067,each,,,,,,,,,,,1.35,1
1615
+ 1632,ChillerElectricEIR_VSDDXAirChiller,"Water chiller, direct expansion, shell and tube type, for built-up systems, 20 ton, includes standard controls",70.34,,rs-means,Unit,171068,each,,,,,,,,,,,1.35,1
1616
+ 1633,ChillerElectricEIR_VSDDXAirChiller,"Water chiller, direct expansion, shell and tube type, for built-up systems, 30 ton, includes standard controls",105.50999999999999,,rs-means,Unit,171069,each,,,,,,,,,,,1.35,1
1617
+ 1634,ChillerElectricEIR_VSDDXAirChiller,"Water chiller, direct expansion, shell and tube type, for built-up systems, 50 ton, includes standard controls",175.85,,rs-means,Unit,171070,each,,,,,,,,,,,1.35,1
1618
+ 1635,ChillerElectricEIR_VSDDXAirChiller,"Water chiller, direct expansion, shell and tube type, for built-up systems, 100 ton, includes standard controls",351.7,,rs-means,Unit,171071,each,,,,,,,,,,,1.35,1
1619
+ 1636,ChillerElectricEIR_VSDReciprocatingAirChiller,"Water chiller, reciprocating, packaged, air cooled, 20 ton cooling, includes standard controls, excludes remote air cooled condensers",70.34,,rs-means,Unit,171798,each,,,,,,,,,,,1.35,1
1620
+ 1637,ChillerElectricEIR_VSDReciprocatingAirChiller,"Water chiller, reciprocating, packaged, air cooled, 35 ton cooling, includes standard controls, excludes remote air cooled condensers",123.095,,rs-means,Unit,171799,each,,,,,,,,,,,1.35,1
1621
+ 1638,ChillerElectricEIR_VSDReciprocatingAirChiller,"Water chiller, reciprocating, packaged, air cooled, 45 ton cooling, includes standard controls, excludes remote air cooled condensers",158.265,,rs-means,Unit,171800,each,,,,,,,,,,,1.35,1
1622
+ 1639,ChillerElectricEIR_VSDReciprocatingAirChiller,"Water chiller, reciprocating, packaged, air cooled, 50 ton cooling, includes standard controls, excludes remote air cooled condensers",175.85,,rs-means,Unit,171034,each,,,,,,,,,,,1.35,1
1623
+ 1640,ChillerElectricEIR_VSDReciprocatingAirChiller,"Water chiller, reciprocating, packaged, air cooled, 85 ton cooling, includes standard controls, excludes remote air cooled condensers",298.945,,rs-means,Unit,171801,each,,,,,,,,,,,1.35,1
1624
+ 1641,ChillerElectricEIR_VSDReciprocatingAirChiller,"Water chiller, reciprocating, packaged, air cooled, 95 ton cooling, includes standard controls, excludes remote air cooled condensers",334.115,,rs-means,Unit,171802,each,,,,,,,,,,,1.35,1
1625
+ 1642,ChillerElectricEIR_VSDScrollAirChiller,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 10 Ton, includes standard controls",35.17,,rs-means,Unit,171804,each,,,,,,,,,,,1.35,1
1626
+ 1643,ChillerElectricEIR_VSDScrollAirChiller,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 35 Ton, includes standard controls",123.095,,rs-means,Unit,171805,each,,,,,,,,,,,1.35,1
1627
+ 1644,ChillerElectricEIR_VSDScrollAirChiller,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 45 Ton, includes standard controls",158.265,,rs-means,Unit,171806,each,,,,,,,,,,,1.35,1
1628
+ 1645,ChillerElectricEIR_VSDScrollAirChiller,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 70 Ton, includes standard controls",246.19,,rs-means,Unit,171807,each,,,,,,,,,,,1.35,1
1629
+ 1646,ChillerElectricEIR_VSDScrollAirChiller,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 100 Ton, includes standard controls",351.7,,rs-means,Unit,171808,each,,,,,,,,,,,1.35,1
1630
+ 1647,ChillerElectricEIR_VSDScrollAirChiller,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 110 Ton, includes standard controls",386.87,,rs-means,Unit,171809,each,,,,,,,,,,,1.35,1
1631
+ 1648,ChillerElectricEIR_VSDScrollAirChiller,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 130 Ton, includes standard controls",457.21,,rs-means,Unit,171810,each,,,,,,,,,,,1.35,1
1632
+ 1649,ChillerElectricEIR_VSDScrollAirChiller,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 170 Ton, includes standard controls",597.89,,rs-means,Unit,171811,each,,,,,,,,,,,1.3,1
1633
+ 1650,ChillerElectricEIR_VSDScrollAirChiller,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 210 Ton, includes standard controls",738.5699999999999,,rs-means,Unit,171812,each,,,,,,,,,,,1.3,1
1634
+ 1651,ChillerElectricEIR_VSDScrollAirChiller,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 250 Ton, includes standard controls",879.25,,rs-means,Unit,171813,each,,,,,,,,,,,1.3,1
1635
+ 1652,ChillerElectricEIR_VSDScrollAirChiller,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 275 Ton, includes standard controls",967.175,,rs-means,Unit,171814,each,,,,,,,,,,,1.3,1
1636
+ 1653,ChillerElectricEIR_VSDScrollAirChiller,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 300 Ton, includes standard controls",1055.1,,rs-means,Unit,171815,each,,,,,,,,,,,1.3,1
1637
+ 1654,ChillerElectricEIR_VSDScrollAirChiller,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 330 Ton, includes standard controls",1160.61,,rs-means,Unit,171816,each,,,,,,,,,,,1.3,1
1638
+ 1655,ChillerElectricEIR_VSDScrollAirChiller,"Packaged water chiller, scroll, liquid chiller, packaged unit with integral air cooled condenser, 390 Ton, includes standard controls",1371.6299999999999,,rs-means,Unit,171817,each,,,,,,,,,,,1.3,1
1639
+ 1656,vrf_separation tube_indoor,separation tube per branch controller (CZ-P68OBK1U Panasonic),,,custom,Unit,171878,each,ONTARIO,TORONTO,2020,271.4,300,0,1.25,1.25,1,,1,1
1640
+ 1657,vrf_separation tube_outdoor,separation tube per branch controller (CZ-P68OPJ1U Panasonic),,,custom,Unit,171879,each,ONTARIO,TORONTO,2020,271.4,300,0,1.25,1.25,1,,1,1
1641
+ 1658,PEX_tubing,condensation tubing 0.5 inch diameter PEX,0.5,,rs-means,Unit,171880,LF,,,,,,,,,,,1,1
1642
+ 1659,PVC_coupling,"PVC coupling for PEX and conduit 0.5""",0.5,,rs-means,Unit,171881,each,,,,,,,,,,,1,1
1643
+ 1660,PVC_tee,"PVC tee connector for PEX and conduit 0.5""",0.5,,rs-means,Unit,171882,each,,,,,,,,,,,1,1
1644
+ 1661,Refrig-tubing-large,refrigerant piping set 0.5 in supply 1-1/8 in return 10 ft length,10,,rs-means,Unit,171883,each,,,,,,,,,,,1,1
1645
+ 1662,Refrig-tubing-large,refrigerant piping set 0.5 in supply 1-1/8 in return 20 ft length,20,,rs-means,Unit,171884,each,,,,,,,,,,,1,1
1646
+ 1663,Refrig-tubing-large,refrigerant piping set 0.5 in supply 1-1/8 in return 50 ft length,50,,rs-means,Unit,171885,each,,,,,,,,,,,1,1
1647
+ 1664,Slatwall,"MDF panel with wood veener finish for wall sleeve/DOAS suite enclsure 4'x8'x3/4""",,,rs-means,Unit,111886,each,,,,,,,,,,,1,1
1648
+ 1665,Air_Intake,"Aluminum air intake with screen/grille mill finish 8"" high, 5"" wide, 4' deep",8,,rs-means,Unit,171887,each,,,,,,,,,,,1,1
1649
+ 1666,Condenser_wall_mount,metal struts to hanger condensers off wall (include installation,,,rs-means,Unit,171888,each,,,,,,,,,,,1,1
1650
+ 1667,Flue_coupling,"coupling for PVC flues: 4"" diameter",,,rs-means,Unit,171889,each,,,,,,,,,,,1,1
1651
+ 1668,WaterGas_HE,"Commercial gas water heater, 22 kW, 73 gph (US), excludes vent",22,,rs-means,Unit,171280,,,,,,,,,,,,1.3,1
1652
+ 1669,WaterGas_HE,"Commercial gas water heater, 29 kW, 95 gph (US), excludes vent",29,,rs-means,Unit,171281,,,,,,,,,,,,1.3,1
1653
+ 1670,WaterGas_HE,"Commercial gas water heater, 35 kW, 110 gph (US), excludes vent",35,,rs-means,Unit,171282,,,,,,,,,,,,1.3,1
1654
+ 1671,WaterGas_HE,"Commercial gas water heater, 35 kW, 115 gph (US), excludes vent",35,,rs-means,Unit,171283,,,,,,,,,,,,1.3,1
1655
+ 1672,WaterGas_HE,"Commercial gas water heater, 41 kW, 130 gph (US), excludes vent",41,,rs-means,Unit,171284,,,,,,,,,,,,1.3,1
1656
+ 1673,WaterGas_HE,"Commercial gas water heater, 45 kW, 150 gph (US), excludes vent",45,,rs-means,Unit,171285,,,,,,,,,,,,1.3,1
1657
+ 1674,WaterGas_HE,"Commercial gas water heater, 53 kW, 170 gph (US), excludes vent",53,,rs-means,Unit,171286,,,,,,,,,,,,1.3,1
1658
+ 1675,WaterGas_HE,"Commercial gas water heater, 59 kW, 192 gph (US), excludes vent",59,,rs-means,Unit,171287,,,,,,,,,,,,1.3,1
1659
+ 1676,WaterGas_HE,"Commercial gas water heater, 73 kW, 245 gph (US), excludes vent",73,,rs-means,Unit,171288,,,,,,,,,,,,1.3,1
1660
+ 1677,WaterGas_HE,"Commercial gas water heater, 76 kW, 250 gph (US), excludes vent",76,,rs-means,Unit,171289,,,,,,,,,,,,1.3,1
1661
+ 1678,WaterGas_HE,"Commercial gas water heater, 106 kW, 360 gph (US), excludes vent",106,,rs-means,Unit,171290,,,,,,,,,,,,1.3,1
1662
+ 1679,WaterGas_HE,"Commercial gas water heater, 147 kW, 480 gph (US), excludes vent",147,,rs-means,Unit,171291,,,,,,,,,,,,1.3,1
1663
+ 1680,WaterGas_HE,"Commercial gas water heater, 212 kW, 690 gph (US), excludes vent",212,,rs-means,Unit,171292,,,,,,,,,,,,1.3,1
1664
+ 1681,WaterOil_HE,"Commerical oil-fired water heater, 41 kW, 135 gph (US), 140 gallons (US)",41,140,rs-means,Unit,171293,,,,,,,,,,,,1.3,1
1665
+ 1682,WaterOil_HE,"Commerical oil-fired water heater, 58 kW, 191 gph (US), 140 gallons (US)",58,140,rs-means,Unit,171294,,,,,,,,,,,,1.3,1
1666
+ 1683,WaterOil_HE,"Commerical oil-fired water heater, 75 kW, 247 gph (US), 140 gallons (US)",75,140,rs-means,Unit,171295,,,,,,,,,,,,1.3,1
1667
+ 1684,WaterOil_HE,"Commerical oil-fired water heater, 79 kW, 259 gph (US), 140 gallons (US)",79,140,rs-means,Unit,171296,,,,,,,,,,,,1.3,1
1668
+ 1685,WaterOil_HE,"Commerical oil-fired water heater, 117 kW, 384 gph (US), 140 gallons (US)",117,140,rs-means,Unit,171297,,,,,,,,,,,,1.3,1
1669
+ 1686,WaterOil_HE,"Commerical oil-fired water heater, 158 kW, 519 gph (US), 140 gallons (US)",158,140,rs-means,Unit,171298,,,,,,,,,,,,1.3,1
1670
+ 1687,WaterOil_HE,"Commerical oil-fired water heater, 211 kW, 691 gph (US), 140 gallons (US)",211,140,rs-means,Unit,171299,,,,,,,,,,,,1.3,1
1671
+ 1688,WaterOil_HE,"Commerical oil-fired water heater, 88 kW, 288 gph (US), 221 gallons (US)",88,221,rs-means,Unit,171300,,,,,,,,,,,,1.3,1
1672
+ 1689,WaterOil_HE,"Commerical oil-fired water heater,175.8 kW, 576 gph (US), 221 gallons (US)",175.8,221,rs-means,Unit,171301,,,,,,,,,,,,1.3,1
1673
+ 1690,WaterOil_HE,"Commerical oil-fired water heater, 234.4 kW, 768 gph (US), 221 gallons (US)",234.4,221,rs-means,Unit,171302,,,,,,,,,,,,1.3,1
1674
+ 1691,WaterOil_HE,"Commerical oil-fired water heater, 292 kW, 960 gph (US), 201 gallons (US)",293,201,rs-means,Unit,171303,,,,,,,,,,,,1.3,1
1675
+ 1692,WaterOil_HE,"Commerical oil-fired water heater, 366 kW, 1200 gph (US), 201 gallons (US)",366,201,rs-means,Unit,171304,,,,,,,,,,,,1.3,1
1676
+ 1693,WaterOil_HE,"Commerical oil-fired water heater, 440 kW, 1441 gph (US), 201 gallons (US)",440,201,rs-means,Unit,171305,,,,,,,,,,,,1.3,1
1677
+ 1694,WaterOil_HE,"Commerical oil-fired water heater, 175.8 kW, 576 gph (US), 411 gallons (US)",175.8,411,rs-means,Unit,171306,,,,,,,,,,,,1.3,1
1678
+ 1695,WaterOil_HE,"Commerical oil-fired water heater, 234 kW, 768 gph (US), 411 gallons (US)",234,411,rs-means,Unit,171307,,,,,,,,,,,,1.3,1
1679
+ 1696,WaterOil_HE,"Commerical oil-fired water heater, 293 kW, 960 gph (US), 411 gallons (US)",293,411,rs-means,Unit,171308,,,,,,,,,,,,1.3,1
1680
+ 1697,WaterOil_HE,"Commerical oil-fired water heater, 366 kW, 1200 gph (US), 411 gallons (US)",366,411,rs-means,Unit,171309,,,,,,,,,,,,1.3,1
1681
+ 1698,WaterOil_HE,"Commerical oil-fired water heater, 440 kW, 1441 gph (US), 397 gallons (US)",440,397,rs-means,Unit,171310,,,,,,,,,,,,1.3,1
1682
+ 1699,WaterOil_HE,"Commerical oil-fired water heater, 513 kW, 1681 gph (US), 397 gallons (US)",513,397,rs-means,Unit,171311,,,,,,,,,,,,1.3,1
1683
+ 1700,WaterOil_HE,"Commerical oil-fired water heater, 586 kW, 1921 gph (US), 397 gallons (US)",586,397,rs-means,Unit,171312,,,,,,,,,,,,1.3,1
1684
+ 1701,WaterOil_HE,"Commerical oil-fired water heater, 659 kW, 2161 gph (US), 375 gallons (US)",659,375,rs-means,Unit,171313,,,,,,,,,,,,1.3,1
1685
+ 1702,WaterOil_HE,"Commerical oil-fired water heater, 732.5 kW, 2401 gph (US), 375 gallons (US)",732.5,375,rs-means,Unit,171314,,,,,,,,,,,,1.3,1
1686
+ 1703,gshp_ground_loop,Ground source heat pump ground loop cost estimate per kW,,,custom,,321890,kW,NATIONAL,NATIONAL,2022,2400,0,0,1,1,1,Cost Estimate of $2400/kW for GSHP ground loop done in winter 2022-2023.,1,1
1687
+ 1704,gshp_buried_pipe,"Buried pipe from building to ground source heat pump bore field, 50 mm or less",50,,custom,,321891,L.M.,NATIONAL,NATIONAL,2022,700,0,0,1,1,1,Cost Estimate of $700/m for piping done in spring 2022-2023.,1,1
1688
+ 1705,gshp_buried_pipe,"Buried pipe from building to ground source heat pump bore field, 50 mm to 100 mm",100,,custom,,321892,L.M.,NATIONAL,NATIONAL,2022,900,0,0,1,1,1,Cost Estimate of $900/m for piping done in spring 2022-2023.,1,1
1689
+ 1706,gshp_buried_pipe,"Buried pipe from building to ground source heat pump bore field, 100 mm to 150 mm",150,,custom,,321893,L.M.,NATIONAL,NATIONAL,2022,1000,0,0,1,1,1,Cost Estimate of $1000/m for piping done in spring 2022-2023.,1,1
1690
+ 1707,gshp_buried_pipe,"Buried pipe from building to ground source heat pump bore field, 150 mm to 200 mm",200,,custom,,321894,L.M.,NATIONAL,NATIONAL,2022,1200,0,0,1,1,1,Cost Estimate of $1200/m for piping done in spring 2022-2023.,1,1
1691
+ 1708,gshp_buried_pipe,"Buried pipe from building to ground source heat pump bore field, over 200 mm",250,,custom,,321895,L.M.,NATIONAL,NATIONAL,2022,1400,0,0,1,1,1,Cost Estimate of $1400/m for piping done in spring 2022-2023.,1,1
1692
+ 1709,SteelPipe,"Pipe, steel, black, welded, 6"" diameter, schedule 40, Spec. A-53, includes yoke & roll hanger assembly, sized for covering, 10' OC",6,,rs-means,Unit,171896,L.F.,,,,,,,,,,,1,1
1693
+ 1710,SteelPipe,"Pipe, steel, black, welded, 8"" diameter, schedule 40, Spec. A-53, includes yoke & roll hanger assembly, sized for covering, 10' OC",8,,rs-means,Unit,171897,L.F.,,,,,,,,,,,1,1
1694
+ 1711,HPHW_Heater,"HPHW, 9 kW, 30 MBH 30-gallon (US)",9,30,custom,Unit,171898,each,ONTARIO,TORONTO,2020,1760.0000000000002,1210,0,1,1,1,,1,1
1695
+ 1712,HPHW_Heater,"HPHW, 11 kW, 35 MBH 40-gallon (US)",11,40,custom,Unit,171899,each,ONTARIO,TORONTO,2020,2090,1210,0,1,1,1,,1,1
1696
+ 1713,HPHW_Heater,"HPHW, 15 kW, 50 MBH 50-gallon (US)",15,50,custom,Unit,171900,each,ONTARIO,TORONTO,2020,2420,1540.0000000000002,0,1,1,1,,1,1
1697
+ 1714,HPHW_Heater,"HPHW, 25 kW, 80 MBH 80-gallon (US)",25,80,custom,Unit,171901,each,ONTARIO,TORONTO,2020,3960.0000000000005,2200,0,1,1,1,,1,1
1698
+ 1715,HPHW_Heater,"HPHW, 30 kW, 100 MBH 100-gallon (US)",30,100,custom,Unit,171902,each,ONTARIO,TORONTO,2020,7260.000000000001,3520.0000000000005,0,1,1,1,,1,1
1699
+ 1716,HPHW_Heater,"HPHW, 35 kW, 120 MBH 120-gallon (US)",35,120,custom,Unit,171903,each,ONTARIO,TORONTO,2020,8360,3850.0000000000005,0,1,1,1,,1,1