imap-processing 0.11.0__py3-none-any.whl → 0.12.0__py3-none-any.whl

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.

Potentially problematic release.


This version of imap-processing might be problematic. Click here for more details.

Files changed (288) hide show
  1. imap_processing/__init__.py +10 -11
  2. imap_processing/_version.py +2 -2
  3. imap_processing/ccsds/excel_to_xtce.py +65 -16
  4. imap_processing/cdf/config/imap_codice_global_cdf_attrs.yaml +6 -28
  5. imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml +365 -42
  6. imap_processing/cdf/config/imap_glows_global_cdf_attrs.yaml +0 -5
  7. imap_processing/cdf/config/imap_hi_global_cdf_attrs.yaml +10 -11
  8. imap_processing/cdf/config/imap_hi_variable_attrs.yaml +17 -19
  9. imap_processing/cdf/config/imap_hit_global_cdf_attrs.yaml +26 -13
  10. imap_processing/cdf/config/imap_hit_l1a_variable_attrs.yaml +106 -116
  11. imap_processing/cdf/config/imap_hit_l1b_variable_attrs.yaml +120 -145
  12. imap_processing/cdf/config/imap_hit_l2_variable_attrs.yaml +14 -0
  13. imap_processing/cdf/config/imap_idex_global_cdf_attrs.yaml +6 -9
  14. imap_processing/cdf/config/imap_idex_l1a_variable_attrs.yaml +1 -1
  15. imap_processing/cdf/config/imap_lo_global_cdf_attrs.yaml +0 -12
  16. imap_processing/cdf/config/imap_lo_l1a_variable_attrs.yaml +1 -1
  17. imap_processing/cdf/config/imap_mag_global_cdf_attrs.yaml +9 -21
  18. imap_processing/cdf/config/imap_mag_l1a_variable_attrs.yaml +361 -0
  19. imap_processing/cdf/config/imap_mag_l1b_variable_attrs.yaml +160 -0
  20. imap_processing/cdf/config/imap_mag_l1c_variable_attrs.yaml +160 -0
  21. imap_processing/cdf/config/imap_spacecraft_global_cdf_attrs.yaml +18 -0
  22. imap_processing/cdf/config/imap_spacecraft_variable_attrs.yaml +40 -0
  23. imap_processing/cdf/config/imap_swapi_global_cdf_attrs.yaml +1 -5
  24. imap_processing/cdf/config/imap_swe_global_cdf_attrs.yaml +12 -4
  25. imap_processing/cdf/config/imap_swe_l1a_variable_attrs.yaml +16 -2
  26. imap_processing/cdf/config/imap_swe_l1b_variable_attrs.yaml +48 -52
  27. imap_processing/cdf/config/imap_swe_l2_variable_attrs.yaml +71 -47
  28. imap_processing/cdf/config/imap_ultra_global_cdf_attrs.yaml +2 -14
  29. imap_processing/cdf/config/imap_ultra_l1b_variable_attrs.yaml +51 -2
  30. imap_processing/cdf/config/imap_ultra_l1c_variable_attrs.yaml +29 -14
  31. imap_processing/cdf/utils.py +13 -7
  32. imap_processing/cli.py +23 -8
  33. imap_processing/codice/codice_l1a.py +207 -85
  34. imap_processing/codice/constants.py +1322 -568
  35. imap_processing/codice/decompress.py +2 -6
  36. imap_processing/ena_maps/ena_maps.py +480 -116
  37. imap_processing/ena_maps/utils/coordinates.py +19 -0
  38. imap_processing/ena_maps/utils/map_utils.py +14 -17
  39. imap_processing/ena_maps/utils/spatial_utils.py +45 -47
  40. imap_processing/hi/l1a/hi_l1a.py +24 -18
  41. imap_processing/hi/l1a/histogram.py +0 -1
  42. imap_processing/hi/l1a/science_direct_event.py +6 -8
  43. imap_processing/hi/l1b/hi_l1b.py +31 -39
  44. imap_processing/hi/l1c/hi_l1c.py +405 -17
  45. imap_processing/hi/utils.py +58 -12
  46. imap_processing/hit/ancillary/imap_hit_l1b-to-l2-standard-dt0-factors_20250219_v002.csv +205 -0
  47. imap_processing/hit/ancillary/imap_hit_l1b-to-l2-standard-dt1-factors_20250219_v002.csv +205 -0
  48. imap_processing/hit/ancillary/imap_hit_l1b-to-l2-standard-dt2-factors_20250219_v002.csv +205 -0
  49. imap_processing/hit/ancillary/imap_hit_l1b-to-l2-standard-dt3-factors_20250219_v002.csv +205 -0
  50. imap_processing/hit/ancillary/imap_hit_l1b-to-l2-summed-dt0-factors_20250219_v002.csv +68 -0
  51. imap_processing/hit/hit_utils.py +173 -1
  52. imap_processing/hit/l0/constants.py +20 -11
  53. imap_processing/hit/l0/decom_hit.py +18 -4
  54. imap_processing/hit/l1a/hit_l1a.py +45 -54
  55. imap_processing/hit/l1b/constants.py +317 -0
  56. imap_processing/hit/l1b/hit_l1b.py +367 -18
  57. imap_processing/hit/l2/constants.py +281 -0
  58. imap_processing/hit/l2/hit_l2.py +614 -0
  59. imap_processing/hit/packet_definitions/hit_packet_definitions.xml +1323 -71
  60. imap_processing/ialirt/l0/mag_l0_ialirt_data.py +155 -0
  61. imap_processing/ialirt/l0/parse_mag.py +246 -0
  62. imap_processing/ialirt/l0/process_swe.py +252 -0
  63. imap_processing/ialirt/packet_definitions/ialirt.xml +7 -3
  64. imap_processing/ialirt/packet_definitions/ialirt_mag.xml +115 -0
  65. imap_processing/ialirt/utils/grouping.py +114 -0
  66. imap_processing/ialirt/utils/time.py +29 -0
  67. imap_processing/idex/atomic_masses.csv +22 -0
  68. imap_processing/idex/decode.py +2 -2
  69. imap_processing/idex/idex_constants.py +25 -0
  70. imap_processing/idex/idex_l1a.py +6 -7
  71. imap_processing/idex/idex_l1b.py +4 -31
  72. imap_processing/idex/idex_l2a.py +789 -0
  73. imap_processing/idex/idex_variable_unpacking_and_eu_conversion.csv +39 -33
  74. imap_processing/lo/l0/lo_science.py +6 -0
  75. imap_processing/lo/l1a/lo_l1a.py +0 -1
  76. imap_processing/lo/l1b/lo_l1b.py +177 -25
  77. imap_processing/mag/constants.py +8 -0
  78. imap_processing/mag/imap_mag_sdc-configuration_v001.yaml +6 -0
  79. imap_processing/mag/l0/decom_mag.py +10 -3
  80. imap_processing/mag/l1a/mag_l1a.py +22 -11
  81. imap_processing/mag/l1a/mag_l1a_data.py +28 -3
  82. imap_processing/mag/l1b/mag_l1b.py +190 -48
  83. imap_processing/mag/l1c/interpolation_methods.py +211 -0
  84. imap_processing/mag/l1c/mag_l1c.py +447 -9
  85. imap_processing/quality_flags.py +1 -0
  86. imap_processing/spacecraft/packet_definitions/scid_x252.xml +538 -0
  87. imap_processing/spacecraft/quaternions.py +123 -0
  88. imap_processing/spice/geometry.py +16 -19
  89. imap_processing/spice/repoint.py +120 -0
  90. imap_processing/swapi/l1/swapi_l1.py +4 -0
  91. imap_processing/swapi/l2/swapi_l2.py +0 -1
  92. imap_processing/swe/l1a/swe_l1a.py +47 -8
  93. imap_processing/swe/l1a/swe_science.py +5 -2
  94. imap_processing/swe/l1b/swe_l1b_science.py +103 -56
  95. imap_processing/swe/l2/swe_l2.py +60 -65
  96. imap_processing/swe/packet_definitions/swe_packet_definition.xml +1121 -1
  97. imap_processing/swe/utils/swe_constants.py +63 -0
  98. imap_processing/swe/utils/swe_utils.py +85 -28
  99. imap_processing/tests/ccsds/test_data/expected_output.xml +40 -1
  100. imap_processing/tests/ccsds/test_excel_to_xtce.py +23 -20
  101. imap_processing/tests/cdf/test_data/imap_instrument2_global_cdf_attrs.yaml +0 -2
  102. imap_processing/tests/codice/conftest.py +1 -1
  103. imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-counters-aggregated_20241110193700_v0.0.0.cdf +0 -0
  104. imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-counters-singles_20241110193700_v0.0.0.cdf +0 -0
  105. imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-ialirt_20241110193700_v0.0.0.cdf +0 -0
  106. imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-omni_20241110193700_v0.0.0.cdf +0 -0
  107. imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-pha_20241110193700_v0.0.0.cdf +0 -0
  108. imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-priorities_20241110193700_v0.0.0.cdf +0 -0
  109. imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-sectored_20241110193700_v0.0.0.cdf +0 -0
  110. imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-counters-aggregated_20241110193700_v0.0.0.cdf +0 -0
  111. imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-counters-singles_20241110193700_v0.0.0.cdf +0 -0
  112. imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-ialirt_20241110193700_v0.0.0.cdf +0 -0
  113. imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-nsw-angular_20241110193700_v0.0.0.cdf +0 -0
  114. imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-nsw-priority_20241110193700_v0.0.0.cdf +0 -0
  115. imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-nsw-species_20241110193700_v0.0.0.cdf +0 -0
  116. imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-pha_20241110193700_v0.0.0.cdf +0 -0
  117. imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-sw-angular_20241110193700_v0.0.0.cdf +0 -0
  118. imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-sw-priority_20241110193700_v0.0.0.cdf +0 -0
  119. imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-sw-species_20241110193700_v0.0.0.cdf +0 -0
  120. imap_processing/tests/codice/test_codice_l1a.py +110 -46
  121. imap_processing/tests/codice/test_decompress.py +4 -4
  122. imap_processing/tests/conftest.py +166 -10
  123. imap_processing/tests/ena_maps/conftest.py +51 -0
  124. imap_processing/tests/ena_maps/test_ena_maps.py +638 -109
  125. imap_processing/tests/ena_maps/test_map_utils.py +66 -43
  126. imap_processing/tests/ena_maps/test_spatial_utils.py +16 -20
  127. imap_processing/tests/hi/data/l0/H45_diag_fee_20250208.bin +0 -0
  128. imap_processing/tests/hi/data/l0/H45_diag_fee_20250208_verify.csv +205 -0
  129. imap_processing/tests/hi/test_hi_l1b.py +12 -15
  130. imap_processing/tests/hi/test_hi_l1c.py +234 -6
  131. imap_processing/tests/hi/test_l1a.py +30 -0
  132. imap_processing/tests/hi/test_science_direct_event.py +1 -1
  133. imap_processing/tests/hi/test_utils.py +24 -2
  134. imap_processing/tests/hit/helpers/l1_validation.py +39 -39
  135. imap_processing/tests/hit/test_data/hskp_sample.ccsds +0 -0
  136. imap_processing/tests/hit/test_data/imap_hit_l0_raw_20100105_v001.pkts +0 -0
  137. imap_processing/tests/hit/test_decom_hit.py +4 -0
  138. imap_processing/tests/hit/test_hit_l1a.py +24 -28
  139. imap_processing/tests/hit/test_hit_l1b.py +304 -40
  140. imap_processing/tests/hit/test_hit_l2.py +454 -0
  141. imap_processing/tests/hit/test_hit_utils.py +112 -2
  142. imap_processing/tests/hit/validation_data/hskp_sample_eu_3_6_2025.csv +89 -0
  143. imap_processing/tests/hit/validation_data/hskp_sample_raw.csv +89 -88
  144. imap_processing/tests/ialirt/test_data/l0/461971383-404.bin +0 -0
  145. imap_processing/tests/ialirt/test_data/l0/461971384-405.bin +0 -0
  146. imap_processing/tests/ialirt/test_data/l0/461971385-406.bin +0 -0
  147. imap_processing/tests/ialirt/test_data/l0/461971386-407.bin +0 -0
  148. imap_processing/tests/ialirt/test_data/l0/461971387-408.bin +0 -0
  149. imap_processing/tests/ialirt/test_data/l0/461971388-409.bin +0 -0
  150. imap_processing/tests/ialirt/test_data/l0/461971389-410.bin +0 -0
  151. imap_processing/tests/ialirt/test_data/l0/461971390-411.bin +0 -0
  152. imap_processing/tests/ialirt/test_data/l0/461971391-412.bin +0 -0
  153. imap_processing/tests/ialirt/test_data/l0/sample_decoded_i-alirt_data.csv +383 -0
  154. imap_processing/tests/ialirt/unit/test_grouping.py +81 -0
  155. imap_processing/tests/ialirt/unit/test_parse_mag.py +168 -0
  156. imap_processing/tests/ialirt/unit/test_process_swe.py +208 -3
  157. imap_processing/tests/ialirt/unit/test_time.py +16 -0
  158. imap_processing/tests/idex/conftest.py +62 -6
  159. imap_processing/tests/idex/test_data/imap_idex_l0_raw_20231218_v001.pkts +0 -0
  160. imap_processing/tests/idex/test_data/impact_14_tof_high_data.txt +4508 -4508
  161. imap_processing/tests/idex/test_idex_l1a.py +48 -4
  162. imap_processing/tests/idex/test_idex_l1b.py +3 -3
  163. imap_processing/tests/idex/test_idex_l2a.py +383 -0
  164. imap_processing/tests/lo/test_cdfs/imap_lo_l1a_de_20241022_v002.cdf +0 -0
  165. imap_processing/tests/lo/test_cdfs/imap_lo_l1a_spin_20241022_v002.cdf +0 -0
  166. imap_processing/tests/lo/test_lo_l1b.py +148 -4
  167. imap_processing/tests/lo/test_lo_science.py +1 -0
  168. imap_processing/tests/mag/conftest.py +69 -0
  169. imap_processing/tests/mag/test_mag_decom.py +1 -1
  170. imap_processing/tests/mag/test_mag_l1a.py +38 -0
  171. imap_processing/tests/mag/test_mag_l1b.py +34 -53
  172. imap_processing/tests/mag/test_mag_l1c.py +251 -20
  173. imap_processing/tests/mag/test_mag_validation.py +109 -25
  174. imap_processing/tests/mag/validation/L1b/T009/MAGScience-normal-(2,2)-8s-20250204-16h39.csv +17 -0
  175. imap_processing/tests/mag/validation/L1b/T009/mag-l1a-l1b-t009-magi-out.csv +16 -16
  176. imap_processing/tests/mag/validation/L1b/T009/mag-l1a-l1b-t009-mago-out.csv +16 -16
  177. imap_processing/tests/mag/validation/L1b/T010/MAGScience-normal-(2,2)-8s-20250206-12h05.csv +17 -0
  178. imap_processing/tests/mag/validation/L1b/T011/MAGScience-normal-(2,2)-8s-20250204-16h08.csv +17 -0
  179. imap_processing/tests/mag/validation/L1b/T011/mag-l1a-l1b-t011-magi-out.csv +16 -16
  180. imap_processing/tests/mag/validation/L1b/T011/mag-l1a-l1b-t011-mago-out.csv +16 -16
  181. imap_processing/tests/mag/validation/L1b/T012/MAGScience-normal-(2,2)-8s-20250204-16h08.csv +17 -0
  182. imap_processing/tests/mag/validation/L1b/T012/data.bin +0 -0
  183. imap_processing/tests/mag/validation/L1b/T012/field_like_all_ranges.txt +19200 -0
  184. imap_processing/tests/mag/validation/L1b/T012/mag-l1a-l1b-t012-cal.cdf +0 -0
  185. imap_processing/tests/mag/validation/L1b/T012/mag-l1a-l1b-t012-in.csv +17 -0
  186. imap_processing/tests/mag/validation/L1b/T012/mag-l1a-l1b-t012-magi-out.csv +17 -0
  187. imap_processing/tests/mag/validation/L1b/T012/mag-l1a-l1b-t012-mago-out.csv +17 -0
  188. imap_processing/tests/mag/validation/imap_calibration_mag_20240229_v01.cdf +0 -0
  189. imap_processing/tests/spacecraft/__init__.py +0 -0
  190. imap_processing/tests/spacecraft/data/SSR_2024_190_20_08_12_0483851794_2_DA_apid0594_1packet.pkts +0 -0
  191. imap_processing/tests/spacecraft/test_quaternions.py +71 -0
  192. imap_processing/tests/spice/test_data/fake_repoint_data.csv +5 -0
  193. imap_processing/tests/spice/test_geometry.py +6 -9
  194. imap_processing/tests/spice/test_repoint.py +111 -0
  195. imap_processing/tests/swapi/test_swapi_l1.py +7 -3
  196. imap_processing/tests/swe/l0_data/2024051010_SWE_HK_packet.bin +0 -0
  197. imap_processing/tests/swe/l0_data/2024051011_SWE_CEM_RAW_packet.bin +0 -0
  198. imap_processing/tests/swe/l0_validation_data/idle_export_eu.SWE_APP_HK_20240510_092742.csv +49 -0
  199. imap_processing/tests/swe/l0_validation_data/idle_export_eu.SWE_CEM_RAW_20240510_092742.csv +593 -0
  200. imap_processing/tests/swe/test_swe_l1a.py +18 -0
  201. imap_processing/tests/swe/test_swe_l1a_cem_raw.py +52 -0
  202. imap_processing/tests/swe/test_swe_l1a_hk.py +68 -0
  203. imap_processing/tests/swe/test_swe_l1b_science.py +23 -4
  204. imap_processing/tests/swe/test_swe_l2.py +112 -30
  205. imap_processing/tests/test_cli.py +2 -2
  206. imap_processing/tests/test_utils.py +138 -16
  207. imap_processing/tests/ultra/data/l0/FM45_UltraFM45_Functional_2024-01-22T0105_20240122T010548.CCSDS +0 -0
  208. imap_processing/tests/ultra/data/l0/ultra45_raw_sc_ultraimgrates_20220530_00.csv +164 -0
  209. imap_processing/tests/ultra/{test_data → data}/l0/ultra45_raw_sc_ultrarawimg_withFSWcalcs_FM45_40P_Phi28p5_BeamCal_LinearScan_phi2850_theta-000_20240207T102740.csv +3243 -3243
  210. imap_processing/tests/ultra/data/mock_data.py +341 -0
  211. imap_processing/tests/ultra/unit/conftest.py +69 -26
  212. imap_processing/tests/ultra/unit/test_badtimes.py +2 -0
  213. imap_processing/tests/ultra/unit/test_cullingmask.py +4 -0
  214. imap_processing/tests/ultra/unit/test_de.py +12 -4
  215. imap_processing/tests/ultra/unit/test_decom_apid_881.py +44 -0
  216. imap_processing/tests/ultra/unit/test_spacecraft_pset.py +78 -0
  217. imap_processing/tests/ultra/unit/test_ultra_l1a.py +28 -12
  218. imap_processing/tests/ultra/unit/test_ultra_l1b.py +34 -6
  219. imap_processing/tests/ultra/unit/test_ultra_l1b_culling.py +22 -26
  220. imap_processing/tests/ultra/unit/test_ultra_l1b_extended.py +86 -51
  221. imap_processing/tests/ultra/unit/test_ultra_l1c_pset_bins.py +94 -52
  222. imap_processing/ultra/l0/decom_tools.py +6 -5
  223. imap_processing/ultra/l1a/ultra_l1a.py +28 -56
  224. imap_processing/ultra/l1b/de.py +72 -28
  225. imap_processing/ultra/l1b/extendedspin.py +12 -14
  226. imap_processing/ultra/l1b/ultra_l1b.py +34 -9
  227. imap_processing/ultra/l1b/ultra_l1b_culling.py +65 -29
  228. imap_processing/ultra/l1b/ultra_l1b_extended.py +64 -19
  229. imap_processing/ultra/l1c/spacecraft_pset.py +86 -0
  230. imap_processing/ultra/l1c/ultra_l1c.py +7 -4
  231. imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +112 -61
  232. imap_processing/ultra/lookup_tables/ultra_90_dps_exposure_compressed.cdf +0 -0
  233. imap_processing/ultra/utils/ultra_l1_utils.py +20 -2
  234. imap_processing/utils.py +68 -28
  235. {imap_processing-0.11.0.dist-info → imap_processing-0.12.0.dist-info}/METADATA +8 -5
  236. {imap_processing-0.11.0.dist-info → imap_processing-0.12.0.dist-info}/RECORD +250 -199
  237. imap_processing/cdf/config/imap_mag_l1_variable_attrs.yaml +0 -237
  238. imap_processing/hi/l1a/housekeeping.py +0 -27
  239. imap_processing/tests/codice/data/imap_codice_l1a_hi-counters-aggregated_20240429_v001.cdf +0 -0
  240. imap_processing/tests/codice/data/imap_codice_l1a_hi-counters-singles_20240429_v001.cdf +0 -0
  241. imap_processing/tests/codice/data/imap_codice_l1a_hi-omni_20240429_v001.cdf +0 -0
  242. imap_processing/tests/codice/data/imap_codice_l1a_hi-sectored_20240429_v001.cdf +0 -0
  243. imap_processing/tests/codice/data/imap_codice_l1a_hskp_20100101_v001.cdf +0 -0
  244. imap_processing/tests/codice/data/imap_codice_l1a_lo-counters-aggregated_20240429_v001.cdf +0 -0
  245. imap_processing/tests/codice/data/imap_codice_l1a_lo-counters-singles_20240429_v001.cdf +0 -0
  246. imap_processing/tests/codice/data/imap_codice_l1a_lo-nsw-angular_20240429_v001.cdf +0 -0
  247. imap_processing/tests/codice/data/imap_codice_l1a_lo-nsw-priority_20240429_v001.cdf +0 -0
  248. imap_processing/tests/codice/data/imap_codice_l1a_lo-nsw-species_20240429_v001.cdf +0 -0
  249. imap_processing/tests/codice/data/imap_codice_l1a_lo-sw-angular_20240429_v001.cdf +0 -0
  250. imap_processing/tests/codice/data/imap_codice_l1a_lo-sw-priority_20240429_v001.cdf +0 -0
  251. imap_processing/tests/codice/data/imap_codice_l1a_lo-sw-species_20240429_v001.cdf +0 -0
  252. imap_processing/tests/codice/data/imap_codice_l1b_hi-counters-aggregated_20240429_v001.cdf +0 -0
  253. imap_processing/tests/codice/data/imap_codice_l1b_hi-counters-singles_20240429_v001.cdf +0 -0
  254. imap_processing/tests/codice/data/imap_codice_l1b_hi-omni_20240429_v001.cdf +0 -0
  255. imap_processing/tests/codice/data/imap_codice_l1b_hi-sectored_20240429_v001.cdf +0 -0
  256. imap_processing/tests/codice/data/imap_codice_l1b_hskp_20100101_v001.cdf +0 -0
  257. imap_processing/tests/codice/data/imap_codice_l1b_lo-counters-aggregated_20240429_v001.cdf +0 -0
  258. imap_processing/tests/codice/data/imap_codice_l1b_lo-counters-singles_20240429_v001.cdf +0 -0
  259. imap_processing/tests/codice/data/imap_codice_l1b_lo-nsw-angular_20240429_v001.cdf +0 -0
  260. imap_processing/tests/codice/data/imap_codice_l1b_lo-nsw-priority_20240429_v001.cdf +0 -0
  261. imap_processing/tests/codice/data/imap_codice_l1b_lo-nsw-species_20240429_v001.cdf +0 -0
  262. imap_processing/tests/codice/data/imap_codice_l1b_lo-sw-angular_20240429_v001.cdf +0 -0
  263. imap_processing/tests/codice/data/imap_codice_l1b_lo-sw-priority_20240429_v001.cdf +0 -0
  264. imap_processing/tests/codice/data/imap_codice_l1b_lo-sw-species_20240429_v001.cdf +0 -0
  265. imap_processing/tests/hi/data/l1/imap_hi_l1b_45sensor-de_20250415_v999.cdf +0 -0
  266. imap_processing/tests/hit/PREFLIGHT_raw_record_2023_256_15_59_04_apid1251.pkts +0 -0
  267. imap_processing/tests/hit/PREFLIGHT_raw_record_2023_256_15_59_04_apid1252.pkts +0 -0
  268. imap_processing/tests/hit/validation_data/hskp_sample_eu.csv +0 -89
  269. imap_processing/tests/hit/validation_data/sci_sample_raw1.csv +0 -29
  270. imap_processing/tests/idex/test_data/imap_idex_l0_raw_20231214_v001.pkts +0 -0
  271. imap_processing/tests/lo/test_cdfs/imap_lo_l1a_de_20100101_v001.cdf +0 -0
  272. imap_processing/tests/lo/test_cdfs/imap_lo_l1a_spin_20100101_v001.cdf +0 -0
  273. imap_processing/tests/ultra/test_data/mock_data.py +0 -161
  274. imap_processing/ultra/l1c/pset.py +0 -40
  275. /imap_processing/tests/ultra/{test_data → data}/l0/FM45_40P_Phi28p5_BeamCal_LinearScan_phi28.50_theta-0.00_20240207T102740.CCSDS +0 -0
  276. /imap_processing/tests/ultra/{test_data → data}/l0/FM45_7P_Phi0.0_BeamCal_LinearScan_phi0.04_theta-0.01_20230821T121304.CCSDS +0 -0
  277. /imap_processing/tests/ultra/{test_data → data}/l0/FM45_TV_Cycle6_Hot_Ops_Front212_20240124T063837.CCSDS +0 -0
  278. /imap_processing/tests/ultra/{test_data → data}/l0/Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.CCSDS +0 -0
  279. /imap_processing/tests/ultra/{test_data → data}/l0/ultra45_raw_sc_auxdata_Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.csv +0 -0
  280. /imap_processing/tests/ultra/{test_data → data}/l0/ultra45_raw_sc_enaphxtofhangimg_FM45_TV_Cycle6_Hot_Ops_Front212_20240124T063837.csv +0 -0
  281. /imap_processing/tests/ultra/{test_data → data}/l0/ultra45_raw_sc_ultraimgrates_Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.csv +0 -0
  282. /imap_processing/tests/ultra/{test_data → data}/l0/ultra45_raw_sc_ultrarawimgevent_FM45_7P_Phi00_BeamCal_LinearScan_phi004_theta-001_20230821T121304.csv +0 -0
  283. /imap_processing/tests/ultra/{test_data → data}/l1/dps_exposure_helio_45_E1.cdf +0 -0
  284. /imap_processing/tests/ultra/{test_data → data}/l1/dps_exposure_helio_45_E12.cdf +0 -0
  285. /imap_processing/tests/ultra/{test_data → data}/l1/dps_exposure_helio_45_E24.cdf +0 -0
  286. {imap_processing-0.11.0.dist-info → imap_processing-0.12.0.dist-info}/LICENSE +0 -0
  287. {imap_processing-0.11.0.dist-info → imap_processing-0.12.0.dist-info}/WHEEL +0 -0
  288. {imap_processing-0.11.0.dist-info → imap_processing-0.12.0.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,17 @@
1
+ sequence,x_pri,y_pri,z_pri,rng_pri,x_sec,y_sec,z_sec,rng_sec,pri_coarse,pri_fine,sec_coarse,sec_fine,compression,compression_width_bits
2
+ 14,13,-27,-1,1,2,-5,7,0,476381218,64355,476381218,64357,0,16
3
+ 14,26,-30,-13,1,7,-10,-5,0,476381218,64355,476381218,64357,0,16
4
+ 14,38,-51,-24,1,0,-14,0,0,476381218,64355,476381218,64357,0,16
5
+ 14,44,-53,-39,2,-1,-20,5,0,476381218,64355,476381218,64357,0,16
6
+ 14,50,-48,-50,2,12,-27,8,1,476381218,64355,476381218,64357,0,16
7
+ 14,52,-59,-48,2,9,-32,4,1,476381218,64355,476381218,64357,0,16
8
+ 14,53,-78,-44,2,17,-26,-4,1,476381218,64355,476381218,64357,0,16
9
+ 14,58,-87,-51,2,29,-36,-16,1,476381218,64355,476381218,64357,0,16
10
+ 14,51,-100,-68,3,41,-54,-29,1,476381218,64355,476381218,64357,0,16
11
+ 14,26,-114,-70,3,47,-51,-43,2,476381218,64355,476381218,64357,0,16
12
+ 14,34,-125,-67,3,50,-49,-49,2,476381218,64355,476381218,64357,0,16
13
+ 14,39,-121,-70,3,53,-66,-48,2,476381218,64355,476381218,64357,0,16
14
+ 14,29,-96,-54,3,54,-80,-44,2,476381218,64355,476381218,64357,0,16
15
+ 14,3,-9,-2,0,59,-91,-56,2,476381218,64355,476381218,64357,0,16
16
+ 14,0,-1,8,0,43,-103,-71,3,476381218,64355,476381218,64357,0,16
17
+ 14,5,-10,-2,0,23,-119,-67,3,476381218,64355,476381218,64357,0,16
@@ -0,0 +1,17 @@
1
+ t,coarse,fine,sequence,x,y,z,range,compression,compression_width
2
+ 2025-02-04T16:06:55.967024,476381218,64357,14,4.55075124996,-11.19786196854,15.77425592322,0,0,16
3
+ 2025-02-04T16:06:56.467024,476381218,64357,14,15.92762937486,-22.40731698594,-11.07018889848,0,0,16
4
+ 2025-02-04T16:06:56.967024,476381218,64357,14,0,-31.33237315404,0.16302044052,0,0,16
5
+ 2025-02-04T16:06:57.467024,476381218,64357,14,-2.27537562498,-44.75666872758,11.44735711164,0,0,16
6
+ 2025-02-04T16:06:57.967024,476381218,64357,14,0.885096288,-1.952868096,0.590544504,1,0,16
7
+ 2025-02-04T16:06:58.467024,476381218,64357,14,0.663822216,-2.313845568,0.302605344,1,0,16
8
+ 2025-02-04T16:06:58.967024,476381218,64357,14,1.253886408,-1.881232704,-0.277225488,1,0,16
9
+ 2025-02-04T16:06:59.467024,476381218,64357,14,2.138982696,-2.605478976,-1.139884128,1,0,16
10
+ 2025-02-04T16:06:59.967024,476381218,64357,14,3.024078984,-3.907900224,-2.071901592,1,0,16
11
+ 2025-02-04T16:07:00.467024,476381218,64357,14,0.88482713616,-0.9431913528,-0.78778074834,2,0,16
12
+ 2025-02-04T16:07:00.967024,476381218,64357,14,0.941305464,-0.90634074822,-0.89873597394,2,0,16
13
+ 2025-02-04T16:07:01.467024,476381218,64357,14,0.99778379184,-1.22037879546,-0.87847855812,2,0,16
14
+ 2025-02-04T16:07:01.967024,476381218,64357,14,1.01660990112,-1.47895667604,-0.80315324496,2,0,16
15
+ 2025-02-04T16:07:02.467024,476381218,64357,14,1.11074044752,-1.68224447592,-1.02364442208,2,0,16
16
+ 2025-02-04T16:07:02.967024,476381218,64357,14,0.19710391041,-0.46535117637,-0.31706811786,3,0,16
17
+ 2025-02-04T16:07:03.467024,476381218,64357,14,0.10542767301,-0.53738602233,-0.29896071126,3,0,16
@@ -0,0 +1,17 @@
1
+ t,coarse,fine,sequence,x,y,z,range,compression,compression_width
2
+ 2025-02-04T16:06:55.991994,476381218,64355,14,0.959660208,-1.952789976,-0.065792592,1,0,16
3
+ 2025-02-04T16:06:56.491994,476381218,64355,14,1.919320416,-2.168504496,-0.934627104,1,0,16
4
+ 2025-02-04T16:06:56.991994,476381218,64355,14,2.805160608,-3.687134832,-1.725878016,1,0,16
5
+ 2025-02-04T16:06:57.491994,476381218,64355,14,0.82931140512,-0.97823230506,-0.71816753502,2,0,16
6
+ 2025-02-04T16:06:57.991994,476381218,64355,14,0.942399324,-0.8856151974,-0.922033134,2,0,16
7
+ 2025-02-04T16:06:58.491994,476381218,64355,14,0.98009529696,-1.08887713398,-0.88430215752,2,0,16
8
+ 2025-02-04T16:06:58.991994,476381218,64355,14,0.99894328344,-1.44004598082,-0.8089813125,2,0,16
9
+ 2025-02-04T16:06:59.491994,476381218,64355,14,1.09318321584,-1.60624150722,-0.93784261842,2,0,16
10
+ 2025-02-04T16:06:59.991994,476381218,64355,14,0.23448643983,-0.4504876167,-0.30422097897,3,0,16
11
+ 2025-02-04T16:07:00.491994,476381218,64355,14,0.11954210658,-0.5137174926,-0.31298135118,3,0,16
12
+ 2025-02-04T16:07:00.991994,476381218,64355,14,0.15632429322,-0.5632591128,-0.29918061558,3,0,16
13
+ 2025-02-04T16:07:01.491994,476381218,64355,14,0.17931315987,-0.5452042089,-0.31278820557,3,0,16
14
+ 2025-02-04T16:07:01.991994,476381218,64355,14,0.13333542657,-0.4325684769,-0.24123552375,3,0,16
15
+ 2025-02-04T16:07:02.491994,476381218,64355,14,6.89166060498,-20.13180037308,-4.42656442566,0,0,16
16
+ 2025-02-04T16:07:02.991994,476381218,64355,14,0,-2.23802879004,18.00488498574,0,0,16
17
+ 2025-02-04T16:07:03.491994,476381218,64355,14,11.4861010083,-22.3628566716,-4.42269580368,0,0,16
File without changes
@@ -0,0 +1,71 @@
1
+ from pathlib import Path
2
+
3
+ import numpy as np
4
+ import pytest
5
+ import xarray as xr
6
+
7
+ from imap_processing.spacecraft import quaternions
8
+
9
+
10
+ @pytest.fixture()
11
+ def l1a_quaternion_ds():
12
+ time = np.arange(100)
13
+ data = np.linspace(-0.1, 0.1, 100)
14
+ data_vars = {"SCIENCEDATA1HZ_QUAT_10_HZ_TIME".lower(): time}
15
+ for i in range(4):
16
+ for j in range(10):
17
+ index = i * 10 + j
18
+ # 0-0.1, 0.1-0.2, 0.2-0.3, ... for each variable
19
+ data_vars[f"FSW_ACS_QUAT_10_HZ_BUFFERED_{index}".lower()] = data * j
20
+
21
+ ds = xr.Dataset(data_vars=data_vars)
22
+ return ds
23
+
24
+
25
+ def test_quaternion_packet_file():
26
+ # Single packet extracted with the following command:
27
+ # head --bytes 196 SSR_2024_190_20_08_12_0483851794_2_DA_apid0594.pkts > output.pkts
28
+ packet_file = (
29
+ Path(__file__).parent
30
+ / "data"
31
+ / "SSR_2024_190_20_08_12_0483851794_2_DA_apid0594_1packet.pkts"
32
+ )
33
+ l1a_ds = quaternions.load_quaternion_packets(packet_file)
34
+
35
+ # 1 packet
36
+ assert len(l1a_ds["epoch"]) == 1
37
+
38
+ # Make sure we have all of the expected variables
39
+ for i in range(40):
40
+ var = f"FSW_ACS_QUAT_10_HZ_BUFFERED_{i}".lower()
41
+ assert var in l1a_ds.data_vars
42
+ # Make sure it is a float32 between -1 and 1
43
+ assert l1a_ds[var].dtype == np.float32
44
+ assert -1 <= l1a_ds[var].values[0] <= 1
45
+
46
+
47
+ def test_quaternion_unpacking(l1a_quaternion_ds):
48
+ l1b_ds = quaternions.assemble_quaternions(l1a_quaternion_ds)
49
+
50
+ # Should be 10x the amount of data we got from the input dataset
51
+ # input was 0, 1, 2, ...
52
+ # expected is 0, 0.1, 0.2, ...
53
+ np.testing.assert_allclose(l1b_ds["epoch"], np.arange(0, 100, 0.1))
54
+
55
+ data = np.linspace(-0.1, 0.1, 100)
56
+ for var in ["quat_x", "quat_y", "quat_z", "quat_s"]:
57
+ # 10 increasing values, then reset and shift right by 0.2 / 99 for the linspace
58
+ # -0., -0.1, -0.2, ..., -0.9, -0., -0.09, -0.19, -0.29, ...
59
+ expected = np.stack([data * i for i in range(10)], axis=1).ravel()
60
+ np.testing.assert_allclose(l1b_ds[var], expected)
61
+
62
+
63
+ def test_process_quaternions():
64
+ packet_file = (
65
+ Path(__file__).parent
66
+ / "data"
67
+ / "SSR_2024_190_20_08_12_0483851794_2_DA_apid0594_1packet.pkts"
68
+ )
69
+ l1a_ds, l1b_ds = quaternions.process_quaternions(packet_file)
70
+ assert len(l1a_ds["epoch"]) == 1
71
+ assert len(l1b_ds["epoch"]) == 10
@@ -0,0 +1,5 @@
1
+ # This is a fake csv file for the sole purpose of testing repoint module functions
2
+ repoint_start_time,repoint_end_time,repoint_id
3
+ 0,5,0
4
+ 15,20,1
5
+ 25,30,2
@@ -208,8 +208,7 @@ def test_frame_transform_exceptions():
208
208
  SpiceFrame.ECLIPJ2000,
209
209
  ],
210
210
  )
211
- @pytest.mark.parametrize("degrees_bool", [True, False])
212
- def test_frame_transform_az_el_same_frame(spice_frame, degrees_bool):
211
+ def test_frame_transform_az_el_same_frame(spice_frame):
213
212
  """Test that frame_transform returns az/el when input/output frames are same."""
214
213
  az_el_points = np.array(
215
214
  [
@@ -231,10 +230,8 @@ def test_frame_transform_az_el_same_frame(spice_frame, degrees_bool):
231
230
  [360, 90],
232
231
  ]
233
232
  )
234
- if not degrees_bool:
235
- az_el_points = np.deg2rad(az_el_points)
236
233
  result = frame_transform_az_el(
237
- 0, az_el_points, spice_frame, spice_frame, degrees=degrees_bool
234
+ 0, az_el_points, spice_frame, spice_frame, degrees=True
238
235
  )
239
236
  np.testing.assert_allclose(result, az_el_points)
240
237
 
@@ -360,12 +357,12 @@ def test_spherical_to_cartesian():
360
357
  # Convert elevation to colatitude for SPICE
361
358
  colat = np.pi / 2 - spherical_points[:, 2]
362
359
 
363
- cartesian_from_degrees = spherical_to_cartesian(
364
- spherical_points_degrees, degrees=True
365
- )
360
+ cartesian_from_degrees = spherical_to_cartesian(spherical_points_degrees)
366
361
 
367
362
  for i in range(len(colat)):
368
- cartesian_coords = spherical_to_cartesian(np.array([spherical_points[i]]))
363
+ cartesian_coords = spherical_to_cartesian(
364
+ np.array([spherical_points_degrees[i]])
365
+ )
369
366
  spice_coords = spiceypy.sphrec(r, colat[i], spherical_points[i, 1])
370
367
 
371
368
  np.testing.assert_allclose(cartesian_coords[0], spice_coords, atol=1e-5)
@@ -0,0 +1,111 @@
1
+ """Test coverage for imap_processing.spice.repoint.py"""
2
+
3
+ import numpy as np
4
+ import pandas as pd
5
+ import pytest
6
+
7
+ from imap_processing.spice.repoint import get_repoint_data, interpolate_repoint_data
8
+
9
+
10
+ @pytest.fixture()
11
+ def fake_repoint_data(monkeypatch, spice_test_data_path):
12
+ """Generate fake spin dataframe for testing"""
13
+ fake_repoint_path = spice_test_data_path / "fake_repoint_data.csv"
14
+ monkeypatch.setenv("REPOINT_DATA_FILEPATH", str(fake_repoint_path))
15
+ return fake_repoint_path
16
+
17
+
18
+ def test_get_repoint_data(fake_repoint_data):
19
+ """Test coverarge for get_repoint_data function."""
20
+ repoint_df = get_repoint_data()
21
+ assert isinstance(repoint_df, pd.DataFrame)
22
+ assert set(repoint_df.columns) == {
23
+ "repoint_start_time",
24
+ "repoint_end_time",
25
+ "repoint_id",
26
+ }
27
+
28
+
29
+ def test_spin_data_no_table():
30
+ """Test coverage for get_repoint_data function when the env var is not set."""
31
+ with pytest.raises(
32
+ ValueError, match="REPOINT_DATA_FILEPATH environment variable is not set."
33
+ ):
34
+ get_repoint_data()
35
+
36
+
37
+ def test_interpolate_repoint_data(fake_repoint_data):
38
+ """Test coverage for get_repoint_data function."""
39
+ query_times = np.array([0, 6, 32])
40
+ expected_vals = {
41
+ "repoint_start_time": np.array([0, 0, 25]),
42
+ "repoint_end_time": np.array([5, 5, 30]),
43
+ "repoint_id": np.array([0, 0, 2]),
44
+ "repoint_in_progress": np.array([True, False, False]),
45
+ }
46
+ repoint_df = interpolate_repoint_data(query_times)
47
+
48
+ for key, expected_array in expected_vals.items():
49
+ np.testing.assert_array_equal(repoint_df[key].values, expected_array)
50
+
51
+
52
+ @pytest.mark.parametrize(
53
+ "query_times, match_str",
54
+ [
55
+ (
56
+ np.array([-1, 9]),
57
+ "1 query times are before",
58
+ ), # Query times before start of table
59
+ (
60
+ np.array([0, 24 * 60 * 60 + 26]),
61
+ "1 query times are after",
62
+ ), # Query times after end of valid range
63
+ ],
64
+ )
65
+ def test_interpolate_repoint_data_exceptions(query_times, match_str, fake_repoint_data):
66
+ # Test when query time is
67
+ # Test raising a ValueError when the query time is in between an end and the
68
+ # next start time.
69
+ with pytest.raises(ValueError, match=match_str):
70
+ _ = interpolate_repoint_data(query_times)
71
+
72
+
73
+ def test_interpolate_repoint_data_with_use_fake_fixture(use_fake_repoint_data_for_time):
74
+ """Test coverage for using use_fake_repoint_data_for_time fixutre."""
75
+ repoint_period = 24 * 60 * 60
76
+ repoint_start_times = np.arange(1000, 1000 + 10 * repoint_period, repoint_period)
77
+ _ = use_fake_repoint_data_for_time(repoint_start_times, repoint_id_start=10)
78
+ # Query times are all start times concatenated with 16 minutes after each start time
79
+ query_times = np.concat([repoint_start_times, repoint_start_times + 16 * 60])
80
+ repoint_df = interpolate_repoint_data(query_times)
81
+
82
+ # Expected repoint_start_times are the seeded start times array repeated twice
83
+ np.testing.assert_array_equal(
84
+ repoint_df["repoint_start_time"].values,
85
+ np.concat([repoint_start_times, repoint_start_times]),
86
+ )
87
+ # Expected repoint_end_times are the seeded start times + 15 minutes
88
+ np.testing.assert_array_equal(
89
+ repoint_df["repoint_end_time"].values,
90
+ np.concat([repoint_start_times + 15 * 60, repoint_start_times + 15 * 60]),
91
+ )
92
+ # Expected repoint_id
93
+ np.testing.assert_array_equal(
94
+ repoint_df["repoint_id"].values,
95
+ np.concat(
96
+ [
97
+ np.arange(repoint_start_times.size) + 10,
98
+ np.arange(repoint_start_times.size) + 10,
99
+ ]
100
+ ),
101
+ )
102
+ # Expected repoint_in_progress
103
+ np.testing.assert_array_equal(
104
+ repoint_df["repoint_in_progress"].values,
105
+ np.concat(
106
+ [
107
+ np.full(repoint_start_times.size, True),
108
+ np.full(repoint_start_times.size, False),
109
+ ]
110
+ ),
111
+ )
@@ -138,9 +138,13 @@ def test_swapi_algorithm(decom_test_data):
138
138
  def test_process_swapi_science(decom_test_data):
139
139
  """Test process swapi science"""
140
140
  ds_data = decom_test_data[SWAPIAPID.SWP_SCI]
141
- processed_data = process_swapi_science(
142
- ds_data, decom_test_data[SWAPIAPID.SWP_HK], data_version="001"
143
- )
141
+
142
+ # Add duplicate epoch data to test for bad data
143
+ hk_ds = decom_test_data[SWAPIAPID.SWP_HK]
144
+ assert hk_ds["epoch"].shape == (17,)
145
+ hk_duplicate_ds = xr.concat([hk_ds, hk_ds], dim="epoch")
146
+ assert hk_duplicate_ds["epoch"].shape == (34,)
147
+ processed_data = process_swapi_science(ds_data, hk_duplicate_ds, data_version="001")
144
148
 
145
149
  # Test dataset dimensions
146
150
  assert processed_data.sizes == {
@@ -0,0 +1,49 @@
1
+ PHVERNO,PHTYPE,PHSHF,PHAPID,PHGROUPF,PHSEQCNT,PHDLEN,SHCOARSE,APP_MODE,SAFED,ITF_ERR_CNT,CMD_ACC_COUNT,CMD_REJ_COUNT,LAST_ACC_OPCODE,HV_DISABLE_PLUG,HV_LIMIT_PLUG,HVPS_ENABLE,HVPS_CEM_ENABLE,HVPS_ESA_ENABLE,HVPS_LOW_RANGE_ENABLE,HVPS_BULK_ENABLE,SENSOR_P12A_N12A_CTRL,SENSOR_P5A_N5A_CTRL,SENSOR_P3P3D_P5D_CTRL,HVPS_ERROR_COUNT,HVPS_CEM_DAC,HVPS_ESA_DAC,THRESHOLD,STIM_ENABLE,STIM_CONFIGURATION,HVPS_VBULK,HVPS_VCEM,HVPS_VESA,HVPS_VESA_LOW_RANGE,HVPS_ICEM,FEE_TEMP,SENSOR_TEMP,HVPS_TEMP,LVPS_BACK_BOARD_TEMP,LVPS_FRONT_BOARD_TEMP,LVPS_MID_BOARD_TEMP,LVPS_3_3V_VMON,LVPS_5V_P_VMON,LVPS_5V_N_VMON,LVPS_12V_P_VMON,LVPS_12V_N_VMON,LVPS_3_3V_IMON,LVPS_5V_P_IMON,LVPS_5V_N_IMON,LVPS_12V_P_IMON,LVPS_12V_N_IMON,CDH_PROCESSOR_TEMP,CDH_1_8V_LDO_TEMP,CDH_1_5V_LDO_TEMP,CDH_SDRAM_TEMP,CDH_1_5V_VMON,CDH_1_8V_VMON,CDH_3_3V_VMON,CDH_12V_P_VMON,CDH_12V_N_VMON,CDH_5V_VMON,CDH_ANALOG_REF_VMON,FDC_TRIGGER_CNT_FSW,FDC_TRIGGER_CNT_HVPS,FDC_TRIGGER_CNT_LVPS,FDC_TRIGGER_CNT_CDH,FDC_TRIGGER_CNT_SYSTEM,FDC_TRIGGER_CNT_SCIENCE,FDC_LAST_TRIGGER_INDEX,FDC_LAST_TRIGGER_ACTION,FDC_LAST_TRIGGER_MINMAX,MISSED_PPS_CNT,CMD_FIFO_OVERFLOW,TLM_FIFO_OVERFLOW,CPU_IDLE,MARKER,ACTIVE_MACRO,ACTIVE_MACRO_TRIGGER,CKSUM,timestamp
2
+ 0,0,1,1330,3,11,77,453046121,LVENG,NOT_SAFED,0,0,0,0,NOT_INSERTED,NOT_INSERTED,DISABLED,DISABLED,DISABLED,LOW_RANGE,DISABLED,INACTIVE,INACTIVE,INACTIVE,0,0,0,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.224661,11.717339,-11.763774,4.964994,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,2,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,34298,27:48.7
3
+ 0,0,1,1330,3,12,77,453047269,LVENG,NOT_SAFED,1,0,0,0,NOT_INSERTED,NOT_INSERTED,DISABLED,DISABLED,DISABLED,LOW_RANGE,DISABLED,INACTIVE,INACTIVE,INACTIVE,0,0,0,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.227103,11.723236,-11.769615,4.967435,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,2,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,46152,27:49.5
4
+ 0,0,1,1330,3,13,77,453047267,LVENG,NOT_SAFED,1,0,0,0,NOT_INSERTED,NOT_INSERTED,DISABLED,DISABLED,DISABLED,LOW_RANGE,DISABLED,INACTIVE,INACTIVE,INACTIVE,0,0,0,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.224661,11.711442,-11.757933,4.964994,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,4,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,7208,27:54.4
5
+ 0,0,1,1330,3,547,77,453051004,HVENG,NOT_SAFED,1,12,0,SWE_HV_CEM_LEVEL,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,82.05128,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.224661,11.717339,-11.763774,4.964994,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,64317,30:12.4
6
+ 0,0,1,1330,3,548,77,453051011,HVENG,NOT_SAFED,1,12,0,SWE_HV_CEM_LEVEL,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,82.05128,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.224661,11.717339,-11.757933,4.964994,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,31998,30:19.4
7
+ 0,0,1,1330,3,549,77,453051018,HVENG,NOT_SAFED,1,12,0,SWE_HV_CEM_LEVEL,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,82.05128,5.3846153999999995,0,DISABLED,79,6.66666,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.224661,11.717339,-11.757933,4.964994,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,3596,30:26.4
8
+ 0,0,1,1330,3,550,77,453051025,HVENG,NOT_SAFED,1,12,0,SWE_HV_CEM_LEVEL,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,82.05128,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.227103,11.723236,-11.769615,4.967435,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,11174,30:33.4
9
+ 0,0,1,1330,3,551,77,453051032,HVENG,NOT_SAFED,1,13,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,182.564098,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.227103,11.723236,-11.769615,4.967435,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,20954,30:40.4
10
+ 0,0,1,1330,3,552,77,453051039,HVENG,NOT_SAFED,1,13,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,205.1282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.224661,11.711442,-11.757933,4.964994,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,32551,30:47.4
11
+ 0,0,1,1330,3,553,77,453051046,HVENG,NOT_SAFED,1,13,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,205.1282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.22344,11.711442,-11.757933,4.964994,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,53691,30:54.4
12
+ 0,0,1,1330,3,554,77,453051053,HVENG,NOT_SAFED,1,13,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,205.1282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.22344,11.711442,-11.757933,4.964994,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,11390,31:01.4
13
+ 0,0,1,1330,3,555,77,453051060,HVENG,NOT_SAFED,1,13,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,205.1282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.224661,11.711442,-11.757933,4.964994,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,5331,31:08.4
14
+ 0,0,1,1330,3,556,77,453051067,HVENG,NOT_SAFED,1,13,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,205.1282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.2258820000000004,11.723236,-11.769615,4.967435,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,58304,31:15.4
15
+ 0,0,1,1330,3,557,77,453051074,HVENG,NOT_SAFED,1,13,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,205.1282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.2258820000000004,11.723236,-11.763774,4.967435,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,43497,31:22.4
16
+ 0,0,1,1330,3,558,77,453051081,HVENG,NOT_SAFED,1,13,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,205.1282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.224661,11.711442,-11.757933,4.964994,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,43215,31:29.5
17
+ 0,0,1,1330,3,559,77,453051088,HVENG,NOT_SAFED,1,13,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,205.1282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.224661,11.717339,-11.757933,4.964994,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,9799,31:36.4
18
+ 0,0,1,1330,3,560,77,453051095,HVENG,NOT_SAFED,1,13,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,205.1282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.224661,11.711442,-11.757933,4.964994,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,8928,31:43.4
19
+ 0,0,1,1330,3,561,77,453051102,HVENG,NOT_SAFED,1,14,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,564.1025500000001,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.227103,11.717339,-11.757933,4.967435,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,33006,31:50.4
20
+ 0,0,1,1330,3,562,77,453051109,HVENG,NOT_SAFED,1,14,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,1128.2051000000001,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.227103,11.723236,-11.769615,4.967435,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,98,0,NONE,NONE,32394,31:57.4
21
+ 0,0,1,1330,3,563,77,453051116,HVENG,NOT_SAFED,1,14,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,1743.5897,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.2258820000000004,11.723236,-11.769615,4.967435,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,98,0,NONE,NONE,8345,32:04.4
22
+ 0,0,1,1330,3,564,77,453051123,HVENG,NOT_SAFED,1,14,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,2051.282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.227103,11.723236,-11.769615,4.967435,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,10220,32:11.4
23
+ 0,0,1,1330,3,565,77,453051130,HVENG,NOT_SAFED,1,14,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,2051.282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.224661,11.711442,-11.757933,4.964994,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,58973,32:18.4
24
+ 0,0,1,1330,3,566,77,453051137,HVENG,NOT_SAFED,1,14,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,2051.282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.224661,11.711442,-11.757933,4.964994,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,64360,32:25.4
25
+ 0,0,1,1330,3,567,77,453051144,HVENG,NOT_SAFED,1,14,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,2051.282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.227103,11.723236,-11.769615,4.967435,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,15065,32:32.4
26
+ 0,0,1,1330,3,568,77,453051151,HVENG,NOT_SAFED,1,14,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,2051.282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.22344,11.711442,-11.763774,4.967435,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,45589,32:39.4
27
+ 0,0,1,1330,3,569,77,453051158,HVENG,NOT_SAFED,1,14,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,2051.282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.2258820000000004,11.723236,-11.769615,4.967435,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,44791,32:46.4
28
+ 0,0,1,1330,3,570,77,453051165,HVENG,NOT_SAFED,1,14,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,2051.282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.2258820000000004,11.723236,-11.769615,4.967435,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,21298,32:53.4
29
+ 0,0,1,1330,3,571,77,453051172,HVENG,NOT_SAFED,1,14,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,2051.282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.224661,11.711442,-11.757933,4.964994,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,55739,33:00.4
30
+ 0,0,1,1330,3,572,77,453051179,HVENG,NOT_SAFED,1,14,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,2051.282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.224661,11.711442,-11.757933,4.964994,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,5308,33:07.4
31
+ 0,0,1,1330,3,573,77,453051186,HVENG,NOT_SAFED,1,14,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,2051.282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.224661,11.711442,-11.757933,4.967435,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,30579,33:14.4
32
+ 0,0,1,1330,3,574,77,453051193,HVENG,NOT_SAFED,1,14,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,2051.282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.2258820000000004,11.723236,-11.769615,4.967435,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,62913,33:21.4
33
+ 0,0,1,1330,3,575,77,453051200,HVENG,NOT_SAFED,1,14,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,2051.282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.227103,11.723236,-11.769615,4.967435,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,26398,33:28.4
34
+ 0,0,1,1330,3,576,77,453051207,HVENG,NOT_SAFED,1,14,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,2051.282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.224661,11.711442,-11.769615,4.967435,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,14116,33:35.4
35
+ 0,0,1,1330,3,577,77,453051214,HVENG,NOT_SAFED,1,14,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,2051.282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.224661,11.717339,-11.763774,4.967435,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,48211,33:42.4
36
+ 0,0,1,1330,3,578,77,453051221,HVENG,NOT_SAFED,1,14,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,2051.282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.224661,11.711442,-11.757933,4.967435,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,29058,33:49.4
37
+ 0,0,1,1330,3,579,77,453051228,HVENG,NOT_SAFED,1,14,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,2051.282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.224661,11.711442,-11.757933,4.964994,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,53573,33:56.4
38
+ 0,0,1,1330,3,580,77,453051235,HVENG,NOT_SAFED,1,14,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,2051.282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.227103,11.723236,-11.769615,4.967435,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,28014,34:03.4
39
+ 0,0,1,1330,3,581,77,453051242,HVENG,NOT_SAFED,1,14,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,2051.282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.227103,11.723236,-11.769615,4.967435,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,35018,34:10.4
40
+ 0,0,1,1330,3,582,77,453051249,HVENG,NOT_SAFED,1,14,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,2051.282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.224661,11.711442,-11.757933,4.964994,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,37394,34:17.4
41
+ 0,0,1,1330,3,583,77,453051256,HVENG,NOT_SAFED,1,14,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,2051.282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.2258820000000004,11.723236,-11.769615,4.967435,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,19874,34:24.4
42
+ 0,0,1,1330,3,584,77,453051263,HVENG,NOT_SAFED,1,14,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,2051.282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.22344,11.711442,-11.757933,4.964994,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,50484,34:31.4
43
+ 0,0,1,1330,3,585,77,453051270,HVENG,NOT_SAFED,1,14,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,2051.282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.224661,11.711442,-11.757933,4.964994,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,12141,34:38.4
44
+ 0,0,1,1330,3,586,77,453051277,HVENG,NOT_SAFED,1,14,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,2051.282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.227103,11.723236,-11.769615,4.967435,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,63165,34:45.4
45
+ 0,0,1,1330,3,587,77,453051284,HVENG,NOT_SAFED,1,14,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,2051.282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.2258820000000004,11.723236,-11.769615,4.967435,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,52752,34:52.4
46
+ 0,0,1,1330,3,588,77,453051291,HVENG,NOT_SAFED,1,14,0,SWE_HV_CEM_RAMP,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,2051.282,5.3846153999999995,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.227103,11.723236,-11.769615,4.967435,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,99,0,NONE,NONE,7446,34:59.4
47
+ 0,0,1,1330,3,589,77,453051298,HVSCI,NOT_SAFED,1,15,0,SWE_MODE,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,2051.282,4.062393173999999,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.224661,11.717339,-11.757933,4.967435,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,98,0,NONE,NONE,27459,35:06.4
48
+ 0,0,1,1330,3,590,77,453051305,HVSCI,NOT_SAFED,1,15,0,SWE_MODE,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,2051.282,4.062393173999999,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.224661,11.711442,-11.757933,4.964994,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,98,0,NONE,NONE,31681,35:13.4
49
+ 0,0,1,1330,3,591,77,453051312,HVSCI,NOT_SAFED,1,15,0,SWE_MODE,NOT_INSERTED,NOT_INSERTED,ENABLED,ENABLED,ENABLED,LOW_RANGE,ENABLED,ACTIVE,ACTIVE,ACTIVE,0,2051.282,5.641880358,0,DISABLED,79,6.153840000000001,5.753662999999998,4.04686043,0.08493323,1.394689073e-06,-839.804619,-839.804619,-839.804619,-271.4664571,-271.4664571,-271.4664571,6.5970450000000005,9.995895,-9.995895,23.992604999999998,-23.992605,3.7873120399999998,1.997335584,1.887795,2.870431551,0.529168219,-839.804619,-839.804619,-839.804619,-839.804619,1.504272,1.8083010000000002,3.2258820000000004,11.717339,-11.769615,4.964994,0.029292,0,0,0,0,0,0,0,REPORT_ONLY,MIN,9,NOT_OVERFLOWN,NOT_OVERFLOWN,98,0,NONE,NONE,2871,35:20.4