imap-processing 0.11.0__py3-none-any.whl → 0.13.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.
- imap_processing/__init__.py +11 -11
- imap_processing/_version.py +2 -2
- imap_processing/ccsds/ccsds_data.py +1 -2
- imap_processing/ccsds/excel_to_xtce.py +66 -18
- imap_processing/cdf/config/imap_codice_global_cdf_attrs.yaml +24 -40
- imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml +934 -42
- imap_processing/cdf/config/imap_codice_l1b_variable_attrs.yaml +1846 -128
- imap_processing/cdf/config/imap_glows_global_cdf_attrs.yaml +0 -5
- imap_processing/cdf/config/imap_hi_global_cdf_attrs.yaml +10 -11
- imap_processing/cdf/config/imap_hi_variable_attrs.yaml +17 -19
- imap_processing/cdf/config/imap_hit_global_cdf_attrs.yaml +27 -14
- imap_processing/cdf/config/imap_hit_l1a_variable_attrs.yaml +106 -116
- imap_processing/cdf/config/imap_hit_l1b_variable_attrs.yaml +120 -145
- imap_processing/cdf/config/imap_hit_l2_variable_attrs.yaml +14 -0
- imap_processing/cdf/config/imap_idex_global_cdf_attrs.yaml +25 -9
- imap_processing/cdf/config/imap_idex_l1a_variable_attrs.yaml +6 -4
- imap_processing/cdf/config/imap_idex_l1b_variable_attrs.yaml +3 -3
- imap_processing/cdf/config/imap_lo_global_cdf_attrs.yaml +0 -12
- imap_processing/cdf/config/imap_lo_l1a_variable_attrs.yaml +1 -1
- imap_processing/cdf/config/imap_mag_global_cdf_attrs.yaml +23 -20
- imap_processing/cdf/config/imap_mag_l1a_variable_attrs.yaml +361 -0
- imap_processing/cdf/config/imap_mag_l1b_variable_attrs.yaml +160 -0
- imap_processing/cdf/config/imap_mag_l1c_variable_attrs.yaml +160 -0
- imap_processing/cdf/config/imap_spacecraft_global_cdf_attrs.yaml +18 -0
- imap_processing/cdf/config/imap_spacecraft_variable_attrs.yaml +40 -0
- imap_processing/cdf/config/imap_swapi_global_cdf_attrs.yaml +1 -5
- imap_processing/cdf/config/imap_swapi_variable_attrs.yaml +22 -0
- imap_processing/cdf/config/imap_swe_global_cdf_attrs.yaml +12 -4
- imap_processing/cdf/config/imap_swe_l1a_variable_attrs.yaml +16 -2
- imap_processing/cdf/config/imap_swe_l1b_variable_attrs.yaml +64 -52
- imap_processing/cdf/config/imap_swe_l2_variable_attrs.yaml +71 -47
- imap_processing/cdf/config/imap_ultra_global_cdf_attrs.yaml +180 -19
- imap_processing/cdf/config/imap_ultra_l1a_variable_attrs.yaml +5045 -41
- imap_processing/cdf/config/imap_ultra_l1b_variable_attrs.yaml +80 -17
- imap_processing/cdf/config/imap_ultra_l1c_variable_attrs.yaml +32 -57
- imap_processing/cdf/utils.py +52 -38
- imap_processing/cli.py +477 -233
- imap_processing/codice/codice_l1a.py +466 -131
- imap_processing/codice/codice_l1b.py +51 -152
- imap_processing/codice/constants.py +1360 -569
- imap_processing/codice/decompress.py +2 -6
- imap_processing/ena_maps/ena_maps.py +1103 -146
- imap_processing/ena_maps/utils/coordinates.py +19 -0
- imap_processing/ena_maps/utils/map_utils.py +14 -17
- imap_processing/ena_maps/utils/spatial_utils.py +55 -52
- imap_processing/glows/l1a/glows_l1a.py +28 -99
- imap_processing/glows/l1a/glows_l1a_data.py +2 -2
- imap_processing/glows/l1b/glows_l1b.py +1 -4
- imap_processing/glows/l1b/glows_l1b_data.py +1 -3
- imap_processing/glows/l2/glows_l2.py +2 -5
- imap_processing/hi/l1a/hi_l1a.py +54 -29
- imap_processing/hi/l1a/histogram.py +0 -1
- imap_processing/hi/l1a/science_direct_event.py +6 -8
- imap_processing/hi/l1b/hi_l1b.py +111 -82
- imap_processing/hi/l1c/hi_l1c.py +416 -32
- imap_processing/hi/utils.py +58 -12
- imap_processing/hit/ancillary/imap_hit_l1b-to-l2-sector-dt0-factors_20250219_v002.csv +81 -0
- imap_processing/hit/ancillary/imap_hit_l1b-to-l2-standard-dt0-factors_20250219_v002.csv +205 -0
- imap_processing/hit/ancillary/imap_hit_l1b-to-l2-standard-dt1-factors_20250219_v002.csv +205 -0
- imap_processing/hit/ancillary/imap_hit_l1b-to-l2-standard-dt2-factors_20250219_v002.csv +205 -0
- imap_processing/hit/ancillary/imap_hit_l1b-to-l2-standard-dt3-factors_20250219_v002.csv +205 -0
- imap_processing/hit/ancillary/imap_hit_l1b-to-l2-summed-dt0-factors_20250219_v002.csv +68 -0
- imap_processing/hit/hit_utils.py +235 -5
- imap_processing/hit/l0/constants.py +20 -11
- imap_processing/hit/l0/decom_hit.py +21 -5
- imap_processing/hit/l1a/hit_l1a.py +71 -75
- imap_processing/hit/l1b/constants.py +321 -0
- imap_processing/hit/l1b/hit_l1b.py +377 -67
- imap_processing/hit/l2/constants.py +318 -0
- imap_processing/hit/l2/hit_l2.py +723 -0
- imap_processing/hit/packet_definitions/hit_packet_definitions.xml +1323 -71
- imap_processing/ialirt/l0/mag_l0_ialirt_data.py +155 -0
- imap_processing/ialirt/l0/parse_mag.py +374 -0
- imap_processing/ialirt/l0/process_swapi.py +69 -0
- imap_processing/ialirt/l0/process_swe.py +548 -0
- imap_processing/ialirt/packet_definitions/ialirt.xml +216 -208
- imap_processing/ialirt/packet_definitions/ialirt_codicehi.xml +1 -1
- imap_processing/ialirt/packet_definitions/ialirt_codicelo.xml +1 -1
- imap_processing/ialirt/packet_definitions/ialirt_mag.xml +115 -0
- imap_processing/ialirt/packet_definitions/ialirt_swapi.xml +14 -14
- imap_processing/ialirt/utils/grouping.py +114 -0
- imap_processing/ialirt/utils/time.py +29 -0
- imap_processing/idex/atomic_masses.csv +22 -0
- imap_processing/idex/decode.py +2 -2
- imap_processing/idex/idex_constants.py +33 -0
- imap_processing/idex/idex_l0.py +22 -8
- imap_processing/idex/idex_l1a.py +81 -51
- imap_processing/idex/idex_l1b.py +13 -39
- imap_processing/idex/idex_l2a.py +823 -0
- imap_processing/idex/idex_l2b.py +120 -0
- imap_processing/idex/idex_variable_unpacking_and_eu_conversion.csv +11 -11
- imap_processing/idex/packet_definitions/idex_housekeeping_packet_definition.xml +9130 -0
- imap_processing/lo/l0/lo_science.py +7 -2
- imap_processing/lo/l1a/lo_l1a.py +1 -5
- imap_processing/lo/l1b/lo_l1b.py +702 -29
- imap_processing/lo/l1b/tof_conversions.py +11 -0
- imap_processing/lo/l1c/lo_l1c.py +1 -4
- imap_processing/mag/constants.py +51 -0
- imap_processing/mag/imap_mag_sdc_configuration_v001.py +8 -0
- imap_processing/mag/l0/decom_mag.py +10 -3
- imap_processing/mag/l1a/mag_l1a.py +23 -19
- imap_processing/mag/l1a/mag_l1a_data.py +35 -10
- imap_processing/mag/l1b/mag_l1b.py +259 -50
- imap_processing/mag/l1c/interpolation_methods.py +388 -0
- imap_processing/mag/l1c/mag_l1c.py +621 -17
- imap_processing/mag/l2/mag_l2.py +140 -0
- imap_processing/mag/l2/mag_l2_data.py +288 -0
- imap_processing/quality_flags.py +1 -0
- imap_processing/spacecraft/packet_definitions/scid_x252.xml +538 -0
- imap_processing/spacecraft/quaternions.py +121 -0
- imap_processing/spice/geometry.py +19 -22
- imap_processing/spice/kernels.py +0 -276
- imap_processing/spice/pointing_frame.py +257 -0
- imap_processing/spice/repoint.py +149 -0
- imap_processing/spice/spin.py +38 -33
- imap_processing/spice/time.py +24 -0
- imap_processing/swapi/l1/swapi_l1.py +20 -12
- imap_processing/swapi/l2/swapi_l2.py +116 -5
- imap_processing/swapi/swapi_utils.py +32 -0
- imap_processing/swe/l1a/swe_l1a.py +44 -12
- imap_processing/swe/l1a/swe_science.py +13 -13
- imap_processing/swe/l1b/swe_l1b.py +898 -23
- imap_processing/swe/l2/swe_l2.py +75 -136
- imap_processing/swe/packet_definitions/swe_packet_definition.xml +1121 -1
- imap_processing/swe/utils/swe_constants.py +64 -0
- imap_processing/swe/utils/swe_utils.py +85 -28
- imap_processing/tests/ccsds/test_data/expected_output.xml +40 -1
- imap_processing/tests/ccsds/test_excel_to_xtce.py +24 -21
- imap_processing/tests/cdf/test_data/imap_instrument2_global_cdf_attrs.yaml +0 -2
- imap_processing/tests/cdf/test_utils.py +14 -16
- imap_processing/tests/codice/conftest.py +44 -33
- imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-counters-aggregated_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-counters-singles_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-ialirt_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-omni_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-pha_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-priorities_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-sectored_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-counters-aggregated_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-counters-singles_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-ialirt_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-nsw-angular_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-nsw-priority_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-nsw-species_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-pha_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-sw-angular_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-sw-priority_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-sw-species_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/test_codice_l1a.py +126 -53
- imap_processing/tests/codice/test_codice_l1b.py +6 -7
- imap_processing/tests/codice/test_decompress.py +4 -4
- imap_processing/tests/conftest.py +239 -27
- imap_processing/tests/ena_maps/conftest.py +51 -0
- imap_processing/tests/ena_maps/test_ena_maps.py +1068 -110
- imap_processing/tests/ena_maps/test_map_utils.py +66 -43
- imap_processing/tests/ena_maps/test_spatial_utils.py +17 -21
- imap_processing/tests/glows/conftest.py +10 -14
- imap_processing/tests/glows/test_glows_decom.py +4 -4
- imap_processing/tests/glows/test_glows_l1a_cdf.py +6 -27
- imap_processing/tests/glows/test_glows_l1a_data.py +6 -8
- imap_processing/tests/glows/test_glows_l1b.py +11 -11
- imap_processing/tests/glows/test_glows_l1b_data.py +5 -5
- imap_processing/tests/glows/test_glows_l2.py +2 -8
- imap_processing/tests/hi/conftest.py +1 -1
- imap_processing/tests/hi/data/l0/H45_diag_fee_20250208.bin +0 -0
- imap_processing/tests/hi/data/l0/H45_diag_fee_20250208_verify.csv +205 -0
- imap_processing/tests/hi/test_hi_l1b.py +22 -27
- imap_processing/tests/hi/test_hi_l1c.py +249 -18
- imap_processing/tests/hi/test_l1a.py +35 -7
- imap_processing/tests/hi/test_science_direct_event.py +3 -3
- imap_processing/tests/hi/test_utils.py +24 -2
- imap_processing/tests/hit/helpers/l1_validation.py +74 -73
- imap_processing/tests/hit/test_data/hskp_sample.ccsds +0 -0
- imap_processing/tests/hit/test_data/imap_hit_l0_raw_20100105_v001.pkts +0 -0
- imap_processing/tests/hit/test_decom_hit.py +5 -1
- imap_processing/tests/hit/test_hit_l1a.py +32 -36
- imap_processing/tests/hit/test_hit_l1b.py +300 -81
- imap_processing/tests/hit/test_hit_l2.py +716 -0
- imap_processing/tests/hit/test_hit_utils.py +184 -7
- imap_processing/tests/hit/validation_data/hit_l1b_standard_sample2_nsrl_v4_3decimals.csv +62 -62
- imap_processing/tests/hit/validation_data/hskp_sample_eu_3_6_2025.csv +89 -0
- imap_processing/tests/hit/validation_data/hskp_sample_raw.csv +89 -88
- imap_processing/tests/hit/validation_data/sci_sample_raw.csv +1 -1
- imap_processing/tests/ialirt/data/l0/461971383-404.bin +0 -0
- imap_processing/tests/ialirt/data/l0/461971384-405.bin +0 -0
- imap_processing/tests/ialirt/data/l0/461971385-406.bin +0 -0
- imap_processing/tests/ialirt/data/l0/461971386-407.bin +0 -0
- imap_processing/tests/ialirt/data/l0/461971387-408.bin +0 -0
- imap_processing/tests/ialirt/data/l0/461971388-409.bin +0 -0
- imap_processing/tests/ialirt/data/l0/461971389-410.bin +0 -0
- imap_processing/tests/ialirt/data/l0/461971390-411.bin +0 -0
- imap_processing/tests/ialirt/data/l0/461971391-412.bin +0 -0
- imap_processing/tests/ialirt/data/l0/sample_decoded_i-alirt_data.csv +383 -0
- imap_processing/tests/ialirt/unit/test_decom_ialirt.py +16 -81
- imap_processing/tests/ialirt/unit/test_grouping.py +81 -0
- imap_processing/tests/ialirt/unit/test_parse_mag.py +223 -0
- imap_processing/tests/ialirt/unit/test_process_codicehi.py +3 -3
- imap_processing/tests/ialirt/unit/test_process_codicelo.py +3 -10
- imap_processing/tests/ialirt/unit/test_process_ephemeris.py +4 -4
- imap_processing/tests/ialirt/unit/test_process_hit.py +3 -3
- imap_processing/tests/ialirt/unit/test_process_swapi.py +24 -16
- imap_processing/tests/ialirt/unit/test_process_swe.py +319 -6
- imap_processing/tests/ialirt/unit/test_time.py +16 -0
- imap_processing/tests/idex/conftest.py +127 -6
- imap_processing/tests/idex/test_data/imap_idex_l0_raw_20231218_v001.pkts +0 -0
- imap_processing/tests/idex/test_data/imap_idex_l0_raw_20241206_v001.pkts +0 -0
- imap_processing/tests/idex/test_data/imap_idex_l0_raw_20250108_v001.pkts +0 -0
- imap_processing/tests/idex/test_data/impact_14_tof_high_data.txt +4508 -4508
- imap_processing/tests/idex/test_idex_l0.py +33 -11
- imap_processing/tests/idex/test_idex_l1a.py +92 -21
- imap_processing/tests/idex/test_idex_l1b.py +106 -27
- imap_processing/tests/idex/test_idex_l2a.py +399 -0
- imap_processing/tests/idex/test_idex_l2b.py +93 -0
- imap_processing/tests/lo/test_cdfs/imap_lo_l1a_de_20241022_v002.cdf +0 -0
- imap_processing/tests/lo/test_cdfs/imap_lo_l1a_spin_20241022_v002.cdf +0 -0
- imap_processing/tests/lo/test_lo_l1a.py +3 -3
- imap_processing/tests/lo/test_lo_l1b.py +515 -6
- imap_processing/tests/lo/test_lo_l1c.py +1 -1
- imap_processing/tests/lo/test_lo_science.py +7 -7
- imap_processing/tests/lo/test_star_sensor.py +1 -1
- imap_processing/tests/mag/conftest.py +120 -2
- imap_processing/tests/mag/test_mag_decom.py +5 -4
- imap_processing/tests/mag/test_mag_l1a.py +51 -7
- imap_processing/tests/mag/test_mag_l1b.py +40 -59
- imap_processing/tests/mag/test_mag_l1c.py +354 -19
- imap_processing/tests/mag/test_mag_l2.py +130 -0
- imap_processing/tests/mag/test_mag_validation.py +247 -26
- imap_processing/tests/mag/validation/L1b/T009/MAGScience-normal-(2,2)-8s-20250204-16h39.csv +17 -0
- imap_processing/tests/mag/validation/L1b/T009/mag-l1a-l1b-t009-magi-out.csv +16 -16
- imap_processing/tests/mag/validation/L1b/T009/mag-l1a-l1b-t009-mago-out.csv +16 -16
- imap_processing/tests/mag/validation/L1b/T010/MAGScience-normal-(2,2)-8s-20250206-12h05.csv +17 -0
- imap_processing/tests/mag/validation/L1b/T011/MAGScience-normal-(2,2)-8s-20250204-16h08.csv +17 -0
- imap_processing/tests/mag/validation/L1b/T011/mag-l1a-l1b-t011-magi-out.csv +16 -16
- imap_processing/tests/mag/validation/L1b/T011/mag-l1a-l1b-t011-mago-out.csv +16 -16
- imap_processing/tests/mag/validation/L1b/T012/MAGScience-normal-(2,2)-8s-20250204-16h08.csv +17 -0
- imap_processing/tests/mag/validation/L1b/T012/data.bin +0 -0
- imap_processing/tests/mag/validation/L1b/T012/field_like_all_ranges.txt +19200 -0
- imap_processing/tests/mag/validation/L1b/T012/mag-l1a-l1b-t012-cal.cdf +0 -0
- imap_processing/tests/mag/validation/L1b/T012/mag-l1a-l1b-t012-in.csv +17 -0
- imap_processing/tests/mag/validation/L1b/T012/mag-l1a-l1b-t012-magi-out.csv +17 -0
- imap_processing/tests/mag/validation/L1b/T012/mag-l1a-l1b-t012-mago-out.csv +17 -0
- imap_processing/tests/mag/validation/L1c/T013/mag-l1b-l1c-t013-magi-normal-in.csv +1217 -0
- imap_processing/tests/mag/validation/L1c/T013/mag-l1b-l1c-t013-magi-normal-out.csv +1857 -0
- imap_processing/tests/mag/validation/L1c/T013/mag-l1b-l1c-t013-mago-normal-in.csv +1217 -0
- imap_processing/tests/mag/validation/L1c/T013/mag-l1b-l1c-t013-mago-normal-out.csv +1857 -0
- imap_processing/tests/mag/validation/L1c/T014/mag-l1b-l1c-t014-magi-normal-in.csv +1217 -0
- imap_processing/tests/mag/validation/L1c/T014/mag-l1b-l1c-t014-magi-normal-out.csv +1793 -0
- imap_processing/tests/mag/validation/L1c/T014/mag-l1b-l1c-t014-mago-normal-in.csv +1217 -0
- imap_processing/tests/mag/validation/L1c/T014/mag-l1b-l1c-t014-mago-normal-out.csv +1793 -0
- imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-magi-burst-in.csv +2561 -0
- imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-magi-normal-in.csv +961 -0
- imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-magi-normal-out.csv +1539 -0
- imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-mago-normal-in.csv +1921 -0
- imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-mago-normal-out.csv +2499 -0
- imap_processing/tests/mag/validation/L1c/T016/mag-l1b-l1c-t016-magi-normal-in.csv +865 -0
- imap_processing/tests/mag/validation/L1c/T016/mag-l1b-l1c-t016-magi-normal-out.csv +1196 -0
- imap_processing/tests/mag/validation/L1c/T016/mag-l1b-l1c-t016-mago-normal-in.csv +1729 -0
- imap_processing/tests/mag/validation/L1c/T016/mag-l1b-l1c-t016-mago-normal-out.csv +3053 -0
- imap_processing/tests/mag/validation/L2/imap_mag_l1b_norm-mago_20251017_v002.cdf +0 -0
- imap_processing/tests/mag/validation/calibration/imap_mag_l1b-calibration_20240229_v001.cdf +0 -0
- imap_processing/tests/mag/validation/calibration/imap_mag_l2-calibration-matrices_20251017_v004.cdf +0 -0
- imap_processing/tests/mag/validation/calibration/imap_mag_l2-offsets-norm_20251017_20251017_v001.cdf +0 -0
- imap_processing/tests/spacecraft/data/SSR_2024_190_20_08_12_0483851794_2_DA_apid0594_1packet.pkts +0 -0
- imap_processing/tests/spacecraft/test_quaternions.py +71 -0
- imap_processing/tests/spice/test_data/fake_repoint_data.csv +5 -0
- imap_processing/tests/spice/test_data/fake_spin_data.csv +11 -11
- imap_processing/tests/spice/test_geometry.py +9 -12
- imap_processing/tests/spice/test_kernels.py +1 -200
- imap_processing/tests/spice/test_pointing_frame.py +185 -0
- imap_processing/tests/spice/test_repoint.py +121 -0
- imap_processing/tests/spice/test_spin.py +50 -9
- imap_processing/tests/spice/test_time.py +14 -0
- imap_processing/tests/swapi/lut/imap_swapi_esa-unit-conversion_20250211_v000.csv +73 -0
- imap_processing/tests/swapi/lut/imap_swapi_lut-notes_20250211_v000.csv +1025 -0
- imap_processing/tests/swapi/test_swapi_l1.py +13 -11
- imap_processing/tests/swapi/test_swapi_l2.py +180 -8
- imap_processing/tests/swe/l0_data/2024051010_SWE_HK_packet.bin +0 -0
- imap_processing/tests/swe/l0_data/2024051011_SWE_CEM_RAW_packet.bin +0 -0
- imap_processing/tests/swe/l0_validation_data/idle_export_eu.SWE_APP_HK_20240510_092742.csv +49 -0
- imap_processing/tests/swe/l0_validation_data/idle_export_eu.SWE_CEM_RAW_20240510_092742.csv +593 -0
- imap_processing/tests/swe/lut/checker-board-indices.csv +24 -0
- imap_processing/tests/swe/lut/imap_swe_esa-lut_20250301_v000.csv +385 -0
- imap_processing/tests/swe/lut/imap_swe_l1b-in-flight-cal_20240510_20260716_v000.csv +3 -0
- imap_processing/tests/swe/test_swe_l1a.py +20 -2
- imap_processing/tests/swe/test_swe_l1a_cem_raw.py +52 -0
- imap_processing/tests/swe/test_swe_l1a_hk.py +68 -0
- imap_processing/tests/swe/test_swe_l1a_science.py +3 -3
- imap_processing/tests/swe/test_swe_l1b.py +162 -24
- imap_processing/tests/swe/test_swe_l2.py +153 -91
- imap_processing/tests/test_cli.py +171 -88
- imap_processing/tests/test_utils.py +140 -17
- imap_processing/tests/ultra/data/l0/FM45_UltraFM45_Functional_2024-01-22T0105_20240122T010548.CCSDS +0 -0
- imap_processing/tests/ultra/data/l0/ultra45_raw_sc_ultraimgrates_20220530_00.csv +164 -0
- 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
- imap_processing/tests/ultra/data/mock_data.py +369 -0
- imap_processing/tests/ultra/unit/conftest.py +115 -89
- imap_processing/tests/ultra/unit/test_badtimes.py +4 -4
- imap_processing/tests/ultra/unit/test_cullingmask.py +8 -6
- imap_processing/tests/ultra/unit/test_de.py +14 -13
- imap_processing/tests/ultra/unit/test_decom_apid_880.py +27 -76
- imap_processing/tests/ultra/unit/test_decom_apid_881.py +54 -11
- imap_processing/tests/ultra/unit/test_decom_apid_883.py +12 -10
- imap_processing/tests/ultra/unit/test_decom_apid_896.py +202 -55
- imap_processing/tests/ultra/unit/test_lookup_utils.py +23 -1
- imap_processing/tests/ultra/unit/test_spacecraft_pset.py +77 -0
- imap_processing/tests/ultra/unit/test_ultra_l1a.py +98 -305
- imap_processing/tests/ultra/unit/test_ultra_l1b.py +60 -14
- imap_processing/tests/ultra/unit/test_ultra_l1b_annotated.py +2 -2
- imap_processing/tests/ultra/unit/test_ultra_l1b_culling.py +26 -27
- imap_processing/tests/ultra/unit/test_ultra_l1b_extended.py +239 -70
- imap_processing/tests/ultra/unit/test_ultra_l1c.py +5 -5
- imap_processing/tests/ultra/unit/test_ultra_l1c_pset_bins.py +114 -83
- imap_processing/tests/ultra/unit/test_ultra_l2.py +230 -0
- imap_processing/ultra/constants.py +1 -1
- imap_processing/ultra/l0/decom_tools.py +27 -39
- imap_processing/ultra/l0/decom_ultra.py +168 -204
- imap_processing/ultra/l0/ultra_utils.py +152 -136
- imap_processing/ultra/l1a/ultra_l1a.py +55 -271
- imap_processing/ultra/l1b/badtimes.py +1 -4
- imap_processing/ultra/l1b/cullingmask.py +2 -6
- imap_processing/ultra/l1b/de.py +116 -57
- imap_processing/ultra/l1b/extendedspin.py +20 -18
- imap_processing/ultra/l1b/lookup_utils.py +72 -9
- imap_processing/ultra/l1b/ultra_l1b.py +36 -16
- imap_processing/ultra/l1b/ultra_l1b_culling.py +66 -30
- imap_processing/ultra/l1b/ultra_l1b_extended.py +297 -94
- imap_processing/ultra/l1c/histogram.py +2 -6
- imap_processing/ultra/l1c/spacecraft_pset.py +84 -0
- imap_processing/ultra/l1c/ultra_l1c.py +8 -9
- imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +206 -108
- imap_processing/ultra/l2/ultra_l2.py +299 -0
- imap_processing/ultra/lookup_tables/Angular_Profiles_FM45_LeftSlit.csv +526 -0
- imap_processing/ultra/lookup_tables/Angular_Profiles_FM45_RightSlit.csv +526 -0
- imap_processing/ultra/lookup_tables/Angular_Profiles_FM90_LeftSlit.csv +526 -0
- imap_processing/ultra/lookup_tables/Angular_Profiles_FM90_RightSlit.csv +526 -0
- imap_processing/ultra/lookup_tables/FM45_Startup1_ULTRA_IMGPARAMS_20240719.csv +2 -2
- imap_processing/ultra/lookup_tables/FM90_Startup1_ULTRA_IMGPARAMS_20240719.csv +2 -0
- imap_processing/ultra/packet_definitions/README.md +38 -0
- imap_processing/ultra/packet_definitions/ULTRA_SCI_COMBINED.xml +15302 -482
- imap_processing/ultra/utils/ultra_l1_utils.py +31 -12
- imap_processing/utils.py +69 -29
- {imap_processing-0.11.0.dist-info → imap_processing-0.13.0.dist-info}/METADATA +10 -6
- imap_processing-0.13.0.dist-info/RECORD +578 -0
- imap_processing/cdf/config/imap_mag_l1_variable_attrs.yaml +0 -237
- imap_processing/hi/l1a/housekeeping.py +0 -27
- imap_processing/hi/l1b/hi_eng_unit_convert_table.csv +0 -154
- imap_processing/swe/l1b/swe_esa_lookup_table.csv +0 -1441
- imap_processing/swe/l1b/swe_l1b_science.py +0 -652
- imap_processing/tests/codice/data/imap_codice_l1a_hi-counters-aggregated_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_hi-counters-singles_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_hi-omni_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_hi-sectored_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_hskp_20100101_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-counters-aggregated_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-counters-singles_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-nsw-angular_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-nsw-priority_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-nsw-species_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-sw-angular_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-sw-priority_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-sw-species_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_hi-counters-aggregated_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_hi-counters-singles_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_hi-omni_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_hi-sectored_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_hskp_20100101_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-counters-aggregated_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-counters-singles_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-nsw-angular_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-nsw-priority_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-nsw-species_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-sw-angular_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-sw-priority_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-sw-species_20240429_v001.cdf +0 -0
- imap_processing/tests/hi/data/l1/imap_hi_l1b_45sensor-de_20250415_v999.cdf +0 -0
- imap_processing/tests/hit/PREFLIGHT_raw_record_2023_256_15_59_04_apid1251.pkts +0 -0
- imap_processing/tests/hit/PREFLIGHT_raw_record_2023_256_15_59_04_apid1252.pkts +0 -0
- imap_processing/tests/hit/validation_data/hskp_sample_eu.csv +0 -89
- imap_processing/tests/hit/validation_data/sci_sample_raw1.csv +0 -29
- imap_processing/tests/idex/test_data/imap_idex_l0_raw_20231214_v001.pkts +0 -0
- imap_processing/tests/lo/test_cdfs/imap_lo_l1a_de_20100101_v001.cdf +0 -0
- imap_processing/tests/lo/test_cdfs/imap_lo_l1a_spin_20100101_v001.cdf +0 -0
- imap_processing/tests/swe/test_swe_l1b_science.py +0 -84
- imap_processing/tests/ultra/test_data/mock_data.py +0 -161
- imap_processing/ultra/l1c/pset.py +0 -40
- imap_processing/ultra/lookup_tables/dps_sensitivity45.cdf +0 -0
- imap_processing-0.11.0.dist-info/RECORD +0 -488
- /imap_processing/idex/packet_definitions/{idex_packet_definition.xml → idex_science_packet_definition.xml} +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/20240827095047_SWE_IALIRT_packet.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/BinLog CCSDS_FRAG_TLM_20240826_152323Z_IALIRT_data_for_SDC.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/IALiRT Raw Packet Telemetry.txt +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/apid01152.tlm +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/eu_SWP_IAL_20240826_152033.csv +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/hi_fsw_view_1_ccsds.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/hit_ialirt_sample.ccsds +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/hit_ialirt_sample.csv +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/idle_export_eu.SWE_IALIRT_20240827_093852.csv +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/imap_codice_l1a_hi-ialirt_20240523200000_v0.0.0.cdf +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/imap_codice_l1a_lo-ialirt_20241110193700_v0.0.0.cdf +0 -0
- /imap_processing/{mag/l1b → tests/spacecraft}/__init__.py +0 -0
- /imap_processing/{swe/l1b/engineering_unit_convert_table.csv → tests/swe/lut/imap_swe_eu-conversion_20240510_v000.csv} +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l0/FM45_40P_Phi28p5_BeamCal_LinearScan_phi28.50_theta-0.00_20240207T102740.CCSDS +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l0/FM45_7P_Phi0.0_BeamCal_LinearScan_phi0.04_theta-0.01_20230821T121304.CCSDS +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l0/FM45_TV_Cycle6_Hot_Ops_Front212_20240124T063837.CCSDS +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l0/Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.CCSDS +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l0/ultra45_raw_sc_auxdata_Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.csv +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l0/ultra45_raw_sc_enaphxtofhangimg_FM45_TV_Cycle6_Hot_Ops_Front212_20240124T063837.csv +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l0/ultra45_raw_sc_ultraimgrates_Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.csv +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l0/ultra45_raw_sc_ultrarawimgevent_FM45_7P_Phi00_BeamCal_LinearScan_phi004_theta-001_20230821T121304.csv +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l1/dps_exposure_helio_45_E1.cdf +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l1/dps_exposure_helio_45_E12.cdf +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l1/dps_exposure_helio_45_E24.cdf +0 -0
- {imap_processing-0.11.0.dist-info → imap_processing-0.13.0.dist-info}/LICENSE +0 -0
- {imap_processing-0.11.0.dist-info → imap_processing-0.13.0.dist-info}/WHEEL +0 -0
- {imap_processing-0.11.0.dist-info → imap_processing-0.13.0.dist-info}/entry_points.txt +0 -0
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
Epoch,MET,Type,SequenceCount,SID,Spin,AbortFlag,StartDelay,Counts
|
|
2
|
+
2022-150T23:01:44.000, 443600237,ImageRate,0,0,100,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 2, 3, 2, 4, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
3
|
+
2022-150T23:01:45.000, 443600238,ImageRate,1,0,100,0,2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 1, 4, 3, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
4
|
+
2022-150T23:01:46.000, 443600239,ImageRate,2,0,100,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 2, 5, 2, 3, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
5
|
+
2022-150T23:01:47.000, 443600240,ImageRate,3,0,100,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 1, 3, 1, 6, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
6
|
+
2022-150T23:01:48.000, 443600241,ImageRate,4,0,100,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
7
|
+
2022-150T23:01:49.000, 443600242,ImageRate,5,0,100,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 2, 2, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
8
|
+
2022-150T23:01:50.000, 443600243,ImageRate,6,0,100,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 3, 2, 4, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
9
|
+
2022-150T23:01:51.000, 443600244,ImageRate,7,0,100,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 6, 5, 2, 2, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
10
|
+
2022-150T23:01:52.000, 443600245,ImageRate,8,0,100,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 5, 5, 1, 1, 3, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
11
|
+
2022-150T23:01:53.000, 443600246,ImageRate,9,0,100,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 2, 1, 2, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
12
|
+
2022-150T23:01:54.000, 443600247,ImageRate,10,0,100,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 3, 0, 2, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
13
|
+
2022-150T23:01:55.000, 443600248,ImageRate,11,0,100,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 2, 3, 1, 3, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
14
|
+
2022-150T23:01:56.000, 443600249,ImageRate,12,0,100,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 4, 0, 1, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
15
|
+
2022-150T23:01:56.000, 443600249,ImageRate,13,0,100,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 1, 6, 1, 1, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
16
|
+
2022-150T23:01:57.000, 443600250,ImageRate,14,0,100,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 5, 1, 3, 3, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
17
|
+
2022-150T23:01:58.000, 443600251,ImageRate,15,0,101,0,2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 2, 4, 2, 2, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
18
|
+
2022-150T23:01:59.000, 443600252,ImageRate,16,0,101,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 2, 1, 1, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
19
|
+
2022-150T23:02:00.000, 443600253,ImageRate,17,0,101,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 3, 2, 2, 4, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
20
|
+
2022-150T23:02:01.000, 443600254,ImageRate,18,0,101,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 2, 1, 3, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
21
|
+
2022-150T23:02:02.000, 443600255,ImageRate,19,0,101,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 1, 4, 0, 1, 5, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
22
|
+
2022-150T23:02:03.000, 443600256,ImageRate,20,0,101,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 4, 1, 2, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
23
|
+
2022-150T23:02:04.000, 443600257,ImageRate,21,0,101,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 2, 5, 0, 3, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
24
|
+
2022-150T23:02:05.000, 443600258,ImageRate,22,0,101,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 4, 3, 1, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
25
|
+
2022-150T23:02:06.000, 443600259,ImageRate,23,0,101,0,2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6, 0, 0, 3, 4, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
26
|
+
2022-150T23:02:07.000, 443600260,ImageRate,24,0,101,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 1, 3, 0, 8, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
27
|
+
2022-150T23:02:08.000, 443600261,ImageRate,25,0,101,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 3, 4, 0, 3, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
28
|
+
2022-150T23:02:09.000, 443600262,ImageRate,26,0,101,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 1, 2, 2, 5, 3, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
29
|
+
2022-150T23:02:10.000, 443600263,ImageRate,27,0,101,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 1, 1, 1, 3, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
30
|
+
2022-150T23:02:10.000, 443600263,ImageRate,28,0,101,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 2, 2, 0, 3, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
31
|
+
2022-150T23:02:11.000, 443600264,ImageRate,29,0,101,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 3, 3, 3, 2, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
32
|
+
2022-150T23:02:12.000, 443600265,ImageRate,30,0,102,0,2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 1, 1, 1, 2, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
33
|
+
2022-150T23:02:13.000, 443600266,ImageRate,31,0,102,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 2, 2, 1, 2, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
34
|
+
2022-150T23:02:14.000, 443600267,ImageRate,32,0,102,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 2, 1, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
35
|
+
2022-150T23:02:15.000, 443600268,ImageRate,33,0,102,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 1, 1, 3, 7, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
36
|
+
2022-150T23:02:16.000, 443600269,ImageRate,34,0,102,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 4, 1, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
37
|
+
2022-150T23:02:17.000, 443600270,ImageRate,35,0,102,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 4, 2, 1, 2, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
38
|
+
2022-150T23:02:18.000, 443600271,ImageRate,36,0,102,0,2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 24, 67, 42, 15, 38, 84, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
39
|
+
2022-150T23:02:19.000, 443600272,ImageRate,37,0,102,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 1, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
40
|
+
2022-150T23:02:20.000, 443600273,ImageRate,38,0,102,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 2, 1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
41
|
+
2022-150T23:02:21.000, 443600274,ImageRate,39,0,102,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 3, 2, 3, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
42
|
+
2022-150T23:02:22.000, 443600275,ImageRate,40,0,102,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 1, 3, 4, 6, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
43
|
+
2022-150T23:02:23.000, 443600276,ImageRate,41,0,102,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 2, 1, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
44
|
+
2022-150T23:02:24.000, 443600277,ImageRate,42,0,102,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 2, 5, 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
45
|
+
2022-150T23:02:24.000, 443600277,ImageRate,43,0,102,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 2, 0, 1, 4, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
46
|
+
2022-150T23:02:25.000, 443600278,ImageRate,44,0,102,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 2, 1, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
47
|
+
2022-150T23:02:26.000, 443600279,ImageRate,45,0,103,0,2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6, 3, 0, 0, 2, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
48
|
+
2022-150T23:02:27.000, 443600280,ImageRate,46,0,103,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 1, 2, 1, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
49
|
+
2022-150T23:02:28.000, 443600281,ImageRate,47,0,103,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 4, 1, 2, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
50
|
+
2022-150T23:02:29.000, 443600282,ImageRate,48,0,103,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
51
|
+
2022-150T23:02:30.000, 443600283,ImageRate,49,0,103,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 4, 1, 2, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
52
|
+
2022-150T23:02:31.000, 443600284,ImageRate,50,0,103,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 2, 2, 2, 1, 3, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
53
|
+
2022-150T23:02:32.000, 443600285,ImageRate,51,0,103,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 3, 5, 0, 3, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
54
|
+
2022-150T23:02:33.000, 443600286,ImageRate,52,0,103,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 2, 2, 2, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
55
|
+
2022-150T23:02:34.000, 443600287,ImageRate,53,0,103,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 1, 2, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
56
|
+
2022-150T23:02:35.000, 443600288,ImageRate,54,0,103,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 4, 1, 1, 2, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
57
|
+
2022-150T23:02:36.000, 443600289,ImageRate,55,0,103,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 3, 1, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
58
|
+
2022-150T23:02:37.000, 443600290,ImageRate,56,0,103,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 4, 0, 1, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
59
|
+
2022-150T23:02:38.000, 443600291,ImageRate,57,0,103,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 6, 5, 2, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
60
|
+
2022-150T23:02:38.000, 443600291,ImageRate,58,0,103,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 5, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
61
|
+
2022-150T23:02:39.000, 443600292,ImageRate,59,0,103,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 3, 4, 1, 2, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
62
|
+
2022-150T23:02:40.000, 443600293,ImageRate,60,0,104,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2, 1, 3, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
63
|
+
2022-150T23:02:41.000, 443600294,ImageRate,61,0,104,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 4, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
64
|
+
2022-150T23:02:42.000, 443600295,ImageRate,62,0,104,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 4, 1, 3, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
65
|
+
2022-150T23:02:43.000, 443600296,ImageRate,63,0,104,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 2, 3, 1, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
66
|
+
2022-150T23:02:44.000, 443600297,ImageRate,64,0,104,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
67
|
+
2022-150T23:02:45.000, 443600298,ImageRate,65,0,104,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 6, 4, 0, 0, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
68
|
+
2022-150T23:02:46.000, 443600299,ImageRate,66,0,104,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 2, 3, 4, 5, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
69
|
+
2022-150T23:02:47.000, 443600300,ImageRate,67,0,104,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 1, 6, 1, 3, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
70
|
+
2022-150T23:02:48.000, 443600301,ImageRate,68,0,104,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 4, 4, 4, 5, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
71
|
+
2022-150T23:02:49.000, 443600302,ImageRate,69,0,104,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
72
|
+
2022-150T23:02:50.000, 443600303,ImageRate,70,0,104,0,1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 4, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]"
|
|
73
|
+
2022-150T23:02:51.000, 443600304,ImageRate,71,0,104,0,1,"[29, 29, 29, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, 2, 2, 6, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 116, 0, 0, 0, 0, 0]"
|
|
74
|
+
2022-150T23:02:52.000, 443600305,ImageRate,72,0,104,0,1,"[933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 1, 5, 1, 1, 6, 3, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3732, 0, 0, 0, 0, 0]"
|
|
75
|
+
2022-150T23:02:52.000, 443600305,ImageRate,73,0,104,0,1,"[933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6, 4, 3, 0, 2, 5, 2, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3732, 0, 0, 0, 0, 0]"
|
|
76
|
+
2022-150T23:02:53.000, 443600306,ImageRate,74,0,104,0,1,"[933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 6, 2, 1, 4, 8, 0, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3732, 0, 0, 0, 0, 0]"
|
|
77
|
+
2022-150T23:02:54.000, 443600307,ImageRate,75,0,105,0,1,"[932, 932, 932, 932, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 1, 3, 2, 6, 3, 932, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3728, 0, 0, 0, 0, 0]"
|
|
78
|
+
2022-150T23:02:55.000, 443600308,ImageRate,76,0,105,0,1,"[933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 695, 0, 2, 2, 1, 1, 2, 6, 4, 933, 0, 0, 0, 0, 0, 695, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4427, 0, 0, 0, 0, 0]"
|
|
79
|
+
2022-150T23:02:56.000, 443600309,ImageRate,77,0,105,0,2,"[933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 933, 3, 3, 2, 3, 1, 1, 9, 3, 933, 0, 0, 0, 0, 0, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 0, 0, 0, 0, 0]"
|
|
80
|
+
2022-150T23:02:57.000, 443600310,ImageRate,78,0,105,0,1,"[933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 933, 1, 2, 1, 4, 2, 3, 7, 0, 933, 0, 0, 0, 0, 0, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 0, 0, 0, 0, 0]"
|
|
81
|
+
2022-150T23:02:58.000, 443600311,ImageRate,79,0,105,0,1,"[933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 933, 0, 2, 4, 3, 1, 2, 3, 2, 933, 0, 0, 0, 0, 0, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 0, 0, 0, 0, 0]"
|
|
82
|
+
2022-150T23:02:59.000, 443600312,ImageRate,80,0,105,0,2,"[933, 933, 933, 933, 428, 428, 428, 0, 428, 428, 224, 168, 428, 428, 428, 428, 933, 2, 1, 4, 2, 1, 3, 2, 2, 933, 428, 428, 428, 106, 428, 933, 428, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 0, 0, 428, 428, 428]"
|
|
83
|
+
2022-150T23:03:00.000, 443600313,ImageRate,81,0,105,0,1,"[933, 933, 933, 933, 933, 933, 933, 0, 933, 933, 473, 386, 933, 933, 933, 933, 933, 2, 3, 1, 2, 0, 0, 2, 0, 933, 933, 933, 933, 251, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 0, 0, 933, 933, 933]"
|
|
84
|
+
2022-150T23:03:01.000, 443600314,ImageRate,82,0,105,0,2,"[933, 933, 933, 933, 933, 933, 933, 0, 933, 933, 478, 350, 933, 933, 933, 933, 933, 2, 1, 2, 3, 0, 4, 6, 2, 933, 933, 933, 933, 234, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 0, 0, 933, 933, 933]"
|
|
85
|
+
2022-150T23:03:02.000, 443600315,ImageRate,83,0,105,0,1,"[933, 933, 933, 933, 933, 933, 933, 0, 933, 933, 462, 413, 933, 933, 933, 933, 933, 2, 2, 2, 2, 0, 2, 2, 0, 933, 933, 933, 933, 269, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 0, 0, 933, 933, 933]"
|
|
86
|
+
2022-150T23:03:03.000, 443600316,ImageRate,84,0,105,0,1,"[933, 933, 933, 933, 933, 933, 933, 62, 933, 933, 529, 467, 933, 933, 933, 933, 933, 2, 4, 1, 1, 2, 4, 2, 0, 933, 933, 933, 933, 351, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 0, 0, 933, 933, 933]"
|
|
87
|
+
2022-150T23:03:04.000, 443600317,ImageRate,85,0,105,0,1,"[933, 933, 933, 933, 933, 933, 933, 410, 933, 933, 933, 933, 933, 933, 933, 933, 933, 4, 3, 3, 3, 0, 1, 4, 3, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 0, 0, 933, 933, 933]"
|
|
88
|
+
2022-150T23:03:05.000, 443600318,ImageRate,86,0,105,0,1,"[933, 933, 933, 933, 933, 933, 933, 423, 933, 933, 933, 933, 933, 933, 933, 933, 933, 3, 2, 4, 0, 1, 4, 3, 5, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 0, 0, 933, 933, 933]"
|
|
89
|
+
2022-150T23:03:06.000, 443600319,ImageRate,87,0,105,0,2,"[933, 933, 933, 933, 933, 933, 933, 368, 933, 933, 933, 933, 933, 933, 933, 933, 933, 0, 3, 3, 1, 0, 4, 7, 4, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 0, 0, 933, 933, 933]"
|
|
90
|
+
2022-150T23:03:06.000, 443600319,ImageRate,88,0,105,0,1,"[933, 934, 933, 933, 933, 933, 933, 373, 933, 933, 933, 933, 933, 933, 933, 933, 933, 1, 2, 3, 4, 0, 2, 3, 4, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 0, 0, 933, 933, 933]"
|
|
91
|
+
2022-150T23:03:07.000, 443600320,ImageRate,89,0,105,0,1,"[933, 933, 933, 933, 933, 933, 933, 1609, 933, 933, 191, 933, 933, 933, 933, 933, 933, 0, 2, 0, 2, 0, 3, 3, 2, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 87, 87, 933, 933, 933]"
|
|
92
|
+
2022-150T23:03:08.000, 443600321,ImageRate,90,0,106,0,1,"[932, 932, 932, 932, 932, 932, 932, 1740, 932, 932, 95, 932, 932, 932, 932, 932, 932, 3, 3, 1, 1, 2, 4, 5, 4, 932, 932, 932, 932, 932, 932, 932, 932, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4660, 95, 95, 932, 932, 932]"
|
|
93
|
+
2022-150T23:03:09.000, 443600322,ImageRate,91,0,106,0,1,"[933, 933, 933, 933, 933, 933, 933, 1762, 933, 933, 95, 933, 933, 933, 933, 933, 933, 0, 1, 2, 3, 2, 1, 6, 2, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 95, 95, 933, 933, 933]"
|
|
94
|
+
2022-150T23:03:10.000, 443600323,ImageRate,92,0,106,0,1,"[933, 933, 933, 933, 933, 933, 933, 1758, 933, 933, 76, 933, 933, 933, 933, 933, 933, 2, 4, 3, 1, 0, 6, 6, 3, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 76, 76, 933, 933, 933]"
|
|
95
|
+
2022-150T23:03:11.000, 443600324,ImageRate,93,0,106,0,2,"[933, 933, 933, 933, 933, 933, 976, 1596, 933, 933, 600, 933, 933, 933, 933, 933, 933, 0, 3, 2, 4, 1, 3, 6, 1, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 600, 600, 933, 933, 933]"
|
|
96
|
+
2022-150T23:03:12.000, 443600325,ImageRate,94,0,106,0,1,"[933, 933, 933, 933, 933, 933, 1002, 1433, 933, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 4, 4, 1, 0, 5, 1, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
97
|
+
2022-150T23:03:13.000, 443600326,ImageRate,95,0,106,0,1,"[933, 933, 933, 933, 933, 933, 992, 1457, 933, 933, 933, 933, 933, 933, 933, 933, 933, 3, 4, 1, 3, 1, 2, 4, 1, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
98
|
+
2022-150T23:03:14.000, 443600327,ImageRate,96,0,106,0,2,"[933, 933, 933, 933, 933, 933, 989, 1451, 933, 933, 933, 933, 933, 933, 933, 933, 933, 4, 3, 1, 1, 0, 2, 4, 4, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
99
|
+
2022-150T23:03:15.000, 443600328,ImageRate,97,0,106,0,1,"[932, 932, 932, 932, 932, 932, 988, 1408, 932, 932, 932, 932, 932, 932, 932, 932, 932, 3, 2, 0, 4, 1, 1, 6, 3, 932, 932, 932, 932, 932, 932, 932, 932, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4660, 932, 932, 932, 932, 932]"
|
|
100
|
+
2022-150T23:03:16.000, 443600329,ImageRate,98,0,106,0,1,"[933, 933, 933, 933, 933, 933, 994, 1434, 933, 933, 933, 933, 933, 933, 933, 933, 933, 1, 1, 3, 2, 2, 0, 6, 4, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
101
|
+
2022-150T23:03:17.000, 443600330,ImageRate,99,0,106,0,2,"[933, 933, 933, 933, 933, 933, 1001, 1423, 933, 933, 933, 933, 933, 933, 933, 933, 933, 2, 3, 0, 2, 1, 2, 4, 6, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
102
|
+
2022-150T23:03:18.000, 443600331,ImageRate,100,0,106,0,1,"[933, 933, 933, 933, 933, 933, 970, 1424, 933, 933, 933, 933, 933, 933, 933, 933, 933, 0, 2, 2, 0, 1, 2, 5, 0, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
103
|
+
2022-150T23:03:19.000, 443600332,ImageRate,101,0,106,0,1,"[933, 933, 933, 933, 933, 933, 988, 1414, 933, 933, 933, 933, 933, 933, 933, 933, 933, 1, 1, 2, 2, 3, 3, 4, 2, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
104
|
+
2022-150T23:03:20.000, 443600333,ImageRate,102,0,106,0,2,"[933, 933, 933, 933, 933, 933, 988, 1414, 933, 933, 933, 933, 933, 933, 933, 933, 933, 2, 10, 4, 1, 0, 5, 2, 2, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
105
|
+
2022-150T23:03:20.000, 443600333,ImageRate,103,0,106,0,1,"[933, 933, 933, 933, 933, 933, 982, 1443, 933, 933, 933, 933, 933, 933, 933, 933, 933, 1, 1, 2, 2, 2, 5, 2, 1, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
106
|
+
2022-150T23:03:21.000, 443600334,ImageRate,104,0,106,0,1,"[933, 933, 933, 933, 933, 933, 992, 1400, 933, 933, 933, 933, 933, 933, 933, 933, 933, 0, 2, 4, 5, 2, 1, 5, 4, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
107
|
+
2022-150T23:03:22.000, 443600335,ImageRate,105,0,107,0,1,"[933, 933, 933, 933, 933, 933, 983, 1412, 933, 933, 933, 933, 933, 933, 933, 933, 933, 1, 3, 3, 2, 0, 3, 4, 3, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
108
|
+
2022-150T23:03:23.000, 443600336,ImageRate,106,0,107,0,1,"[933, 933, 933, 933, 933, 933, 990, 1409, 933, 933, 933, 933, 933, 933, 933, 933, 933, 2, 0, 2, 1, 0, 5, 8, 4, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
109
|
+
2022-150T23:03:24.000, 443600337,ImageRate,107,0,107,0,1,"[933, 933, 933, 933, 933, 933, 992, 1413, 933, 933, 933, 933, 933, 933, 933, 933, 933, 2, 3, 1, 1, 0, 5, 4, 0, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
110
|
+
2022-150T23:03:25.000, 443600338,ImageRate,108,0,107,0,2,"[933, 933, 933, 933, 933, 933, 997, 1434, 933, 933, 933, 933, 933, 933, 933, 933, 933, 3, 1, 2, 1, 1, 1, 3, 2, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
111
|
+
2022-150T23:03:26.000, 443600339,ImageRate,109,0,107,0,1,"[933, 933, 933, 933, 933, 933, 998, 1418, 933, 933, 933, 933, 933, 933, 933, 933, 933, 2, 0, 0, 2, 2, 2, 5, 4, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
112
|
+
2022-150T23:03:27.000, 443600340,ImageRate,110,0,107,0,2,"[933, 933, 933, 933, 933, 933, 1000, 1440, 933, 933, 933, 933, 933, 933, 933, 933, 933, 1, 2, 1, 1, 1, 3, 2, 1, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
113
|
+
2022-150T23:03:28.000, 443600341,ImageRate,111,0,107,0,1,"[934, 934, 934, 934, 934, 934, 990, 1426, 934, 934, 934, 934, 934, 934, 934, 934, 934, 2, 2, 2, 2, 5, 2, 3, 3, 934, 934, 934, 934, 934, 934, 934, 934, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4670, 934, 934, 934, 934, 934]"
|
|
114
|
+
2022-150T23:03:29.000, 443600342,ImageRate,112,0,107,0,1,"[933, 933, 933, 933, 933, 933, 995, 1449, 933, 933, 933, 933, 933, 933, 933, 933, 933, 2, 7, 5, 1, 2, 6, 4, 3, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
115
|
+
2022-150T23:03:30.000, 443600343,ImageRate,113,0,107,0,1,"[933, 933, 933, 933, 933, 933, 1002, 1420, 933, 933, 933, 933, 933, 933, 933, 933, 933, 1, 2, 1, 3, 2, 2, 4, 1, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
116
|
+
2022-150T23:03:31.000, 443600344,ImageRate,114,0,107,0,1,"[933, 933, 933, 933, 933, 933, 985, 1395, 933, 933, 933, 933, 933, 933, 933, 933, 933, 2, 3, 1, 2, 1, 1, 4, 2, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
117
|
+
2022-150T23:03:32.000, 443600345,ImageRate,115,0,107,0,2,"[933, 933, 933, 933, 933, 933, 977, 1468, 933, 933, 933, 933, 933, 933, 933, 933, 933, 2, 3, 0, 3, 1, 2, 2, 5, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
118
|
+
2022-150T23:03:33.000, 443600346,ImageRate,116,0,107,0,1,"[933, 933, 933, 933, 933, 933, 982, 1439, 933, 933, 933, 933, 933, 933, 933, 933, 933, 1, 2, 4, 1, 2, 4, 4, 3, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
119
|
+
2022-150T23:03:34.000, 443600347,ImageRate,117,0,107,0,2,"[933, 933, 933, 933, 933, 933, 992, 1449, 933, 933, 933, 933, 933, 933, 933, 933, 933, 0, 1, 3, 1, 0, 2, 6, 1, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
120
|
+
2022-150T23:03:34.000, 443600347,ImageRate,118,0,107,0,1,"[933, 933, 933, 933, 933, 933, 981, 1414, 933, 933, 933, 933, 933, 933, 933, 933, 933, 1, 3, 8, 2, 4, 1, 7, 3, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
121
|
+
2022-150T23:03:35.000, 443600348,ImageRate,119,0,107,0,1,"[933, 933, 933, 933, 933, 933, 984, 1372, 933, 933, 933, 933, 933, 933, 933, 933, 933, 2, 4, 2, 0, 3, 1, 5, 4, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
122
|
+
2022-150T23:03:36.000, 443600349,ImageRate,120,0,108,0,1,"[933, 933, 933, 933, 933, 933, 998, 1392, 933, 933, 933, 933, 933, 933, 933, 933, 933, 2, 2, 2, 4, 3, 4, 5, 1, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
123
|
+
2022-150T23:03:37.000, 443600350,ImageRate,121,0,108,0,1,"[933, 933, 933, 933, 933, 933, 975, 1360, 933, 933, 933, 933, 933, 933, 933, 933, 933, 2, 1, 8, 2, 3, 2, 7, 1, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
124
|
+
2022-150T23:03:38.000, 443600351,ImageRate,122,0,108,0,1,"[933, 933, 933, 933, 933, 933, 995, 1379, 933, 933, 933, 933, 933, 933, 933, 933, 933, 1, 7, 2, 2, 0, 1, 2, 1, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
125
|
+
2022-150T23:03:39.000, 443600352,ImageRate,123,0,108,0,2,"[933, 933, 933, 933, 933, 933, 982, 1432, 933, 933, 933, 933, 933, 933, 933, 933, 933, 4, 4, 2, 1, 3, 1, 1, 1, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
126
|
+
2022-150T23:03:40.000, 443600353,ImageRate,124,0,108,0,1,"[933, 933, 933, 933, 933, 933, 991, 1402, 933, 933, 933, 933, 933, 933, 933, 933, 933, 1, 6, 4, 1, 1, 7, 3, 5, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
127
|
+
2022-150T23:03:41.000, 443600354,ImageRate,125,0,108,0,1,"[933, 933, 933, 933, 933, 933, 995, 1431, 933, 933, 933, 933, 933, 933, 933, 933, 933, 1, 2, 4, 1, 4, 1, 3, 2, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
128
|
+
2022-150T23:03:42.000, 443600355,ImageRate,126,0,108,0,2,"[933, 933, 933, 933, 933, 933, 982, 1411, 933, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 3, 1, 2, 3, 3, 3, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
129
|
+
2022-150T23:03:43.000, 443600356,ImageRate,127,0,108,0,1,"[933, 933, 933, 933, 933, 933, 1011, 1402, 933, 933, 933, 933, 933, 933, 933, 933, 933, 4, 5, 4, 2, 1, 2, 3, 2, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
130
|
+
2022-150T23:03:44.000, 443600357,ImageRate,128,0,108,0,1,"[933, 933, 933, 933, 933, 933, 983, 1436, 933, 933, 933, 933, 933, 933, 933, 933, 933, 1, 2, 3, 0, 2, 2, 1, 2, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
131
|
+
2022-150T23:03:45.000, 443600358,ImageRate,129,0,108,0,1,"[933, 933, 933, 933, 933, 933, 1010, 1390, 933, 933, 933, 933, 933, 933, 933, 933, 933, 2, 3, 4, 0, 0, 1, 3, 1, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
132
|
+
2022-150T23:03:46.000, 443600359,ImageRate,130,0,108,0,2,"[933, 933, 933, 933, 933, 933, 986, 1371, 933, 933, 933, 933, 933, 933, 933, 933, 933, 3, 8, 2, 4, 3, 5, 2, 0, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
133
|
+
2022-150T23:03:47.000, 443600360,ImageRate,131,0,108,0,1,"[933, 933, 933, 933, 933, 933, 995, 1353, 933, 933, 933, 933, 933, 933, 933, 933, 933, 2, 0, 2, 2, 1, 1, 4, 1, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
134
|
+
2022-150T23:03:48.000, 443600361,ImageRate,132,0,108,0,2,"[933, 933, 933, 933, 933, 933, 987, 1385, 933, 933, 933, 933, 933, 933, 933, 933, 933, 1, 6, 4, 3, 0, 2, 3, 4, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
135
|
+
2022-150T23:03:48.000, 443600361,ImageRate,133,0,108,0,2,"[933, 933, 933, 933, 933, 933, 989, 1394, 933, 933, 933, 933, 933, 933, 933, 933, 933, 3, 4, 6, 2, 1, 0, 4, 1, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
136
|
+
2022-150T23:03:49.000, 443600362,ImageRate,134,0,108,0,1,"[932, 932, 932, 932, 932, 932, 989, 1354, 932, 932, 932, 932, 932, 932, 932, 932, 932, 1, 4, 2, 3, 0, 1, 4, 2, 932, 932, 932, 932, 932, 932, 932, 932, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4660, 932, 932, 932, 932, 932]"
|
|
137
|
+
2022-150T23:03:50.000, 443600363,ImageRate,135,0,109,0,2,"[933, 933, 933, 933, 933, 933, 993, 1411, 933, 933, 933, 933, 933, 933, 933, 933, 933, 3, 2, 2, 0, 0, 3, 2, 2, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
138
|
+
2022-150T23:03:51.000, 443600364,ImageRate,136,0,109,0,2,"[933, 933, 933, 933, 933, 933, 998, 1383, 933, 933, 933, 933, 933, 933, 933, 933, 933, 3, 1, 3, 1, 2, 2, 5, 5, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
139
|
+
2022-150T23:03:52.000, 443600365,ImageRate,137,0,109,0,1,"[933, 933, 933, 933, 933, 933, 987, 1349, 933, 933, 933, 933, 933, 933, 933, 933, 933, 2, 1, 2, 0, 1, 2, 4, 2, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
140
|
+
2022-150T23:03:53.000, 443600366,ImageRate,138,0,109,0,2,"[933, 933, 933, 933, 933, 933, 988, 1362, 933, 933, 933, 933, 933, 933, 933, 933, 933, 2, 2, 4, 3, 2, 4, 1, 4, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
141
|
+
2022-150T23:03:54.000, 443600367,ImageRate,139,0,109,0,1,"[933, 933, 933, 933, 933, 933, 999, 1376, 933, 933, 933, 933, 933, 933, 933, 933, 933, 1, 3, 1, 1, 2, 1, 1, 2, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
142
|
+
2022-150T23:03:55.000, 443600368,ImageRate,140,0,109,0,1,"[933, 933, 933, 933, 933, 933, 990, 1397, 933, 933, 933, 933, 933, 933, 933, 933, 933, 1, 1, 3, 2, 5, 2, 2, 0, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
143
|
+
2022-150T23:03:56.000, 443600369,ImageRate,141,0,109,0,2,"[933, 933, 933, 933, 933, 933, 990, 1397, 933, 933, 933, 933, 933, 933, 933, 933, 933, 0, 5, 5, 2, 2, 2, 1, 1, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
144
|
+
2022-150T23:03:57.000, 443600370,ImageRate,142,0,109,0,1,"[933, 933, 933, 933, 933, 933, 1189, 1499, 933, 933, 933, 933, 933, 933, 933, 933, 933, 3, 0, 2, 1, 2, 3, 3, 3, 933, 933, 933, 933, 933, 933, 933, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 933, 933, 933, 933, 933]"
|
|
145
|
+
2022-150T23:03:58.000, 443600371,ImageRate,143,0,109,0,2,"[0, 933, 0, 933, 933, 0, 1823, 0, 933, 0, 933, 0, 933, 0, 933, 0, 713, 2, 2, 0, 1, 4, 1, 3, 1, 933, 933, 933, 933, 933, 933, 713, 933, 933, 0, 0, 933, 0, 933, 933, 0, 0, 30788, 933, 0, 933, 933, 0]"
|
|
146
|
+
2022-150T23:03:59.000, 443600372,ImageRate,144,0,109,0,3,"[0, 933, 0, 933, 933, 0, 1846, 0, 933, 0, 933, 0, 933, 0, 933, 0, 0, 1, 3, 1, 1, 2, 0, 1, 0, 932, 933, 933, 933, 933, 933, 0, 933, 932, 0, 0, 932, 0, 932, 932, 0, 0, 30760, 932, 0, 933, 933, 0]"
|
|
147
|
+
2022-150T23:04:00.000, 443600373,ImageRate,145,0,109,0,4,"[0, 933, 0, 933, 933, 0, 1845, 0, 933, 0, 933, 0, 933, 0, 933, 0, 0, 3, 2, 0, 2, 1, 1, 3, 2, 933, 933, 933, 933, 933, 933, 0, 933, 931, 0, 0, 931, 0, 931, 931, 0, 0, 30788, 931, 0, 933, 933, 0]"
|
|
148
|
+
2022-150T23:04:01.000, 443600374,ImageRate,146,0,109,0,3,"[0, 933, 0, 933, 933, 0, 1833, 0, 933, 0, 933, 0, 933, 0, 933, 0, 0, 0, 2, 5, 2, 0, 2, 9, 5, 933, 933, 933, 933, 933, 933, 0, 933, 929, 0, 0, 929, 0, 929, 929, 0, 0, 30788, 929, 0, 933, 933, 0]"
|
|
149
|
+
2022-150T23:04:02.000, 443600375,ImageRate,147,0,109,0,4,"[0, 933, 0, 933, 933, 0, 1843, 0, 933, 0, 933, 0, 933, 0, 933, 0, 0, 3, 5, 3, 1, 0, 2, 3, 3, 932, 933, 933, 933, 933, 933, 0, 933, 932, 0, 0, 932, 0, 932, 932, 0, 0, 30760, 932, 0, 933, 933, 0]"
|
|
150
|
+
2022-150T23:04:02.000, 443600375,ImageRate,148,0,109,0,4,"[0, 933, 0, 933, 933, 0, 1832, 0, 933, 0, 933, 0, 933, 0, 933, 0, 0, 2, 0, 1, 3, 1, 3, 3, 3, 932, 933, 933, 933, 933, 933, 0, 933, 931, 0, 0, 931, 0, 931, 931, 0, 0, 30760, 931, 0, 933, 933, 0]"
|
|
151
|
+
2022-150T23:04:03.000, 443600376,ImageRate,149,0,109,0,3,"[0, 933, 0, 933, 933, 0, 1844, 0, 933, 0, 933, 0, 933, 0, 933, 0, 0, 1, 1, 2, 3, 1, 2, 1, 4, 933, 933, 933, 933, 933, 933, 0, 933, 932, 0, 0, 932, 0, 932, 932, 0, 0, 30788, 932, 0, 933, 933, 0]"
|
|
152
|
+
2022-150T23:04:04.000, 443600377,ImageRate,150,0,110,0,4,"[0, 933, 0, 933, 933, 0, 1850, 0, 933, 0, 933, 0, 933, 0, 933, 0, 0, 5, 1, 1, 1, 4, 0, 2, 1, 932, 933, 933, 933, 933, 933, 0, 933, 932, 0, 0, 932, 0, 932, 932, 0, 0, 30760, 932, 0, 933, 933, 0]"
|
|
153
|
+
2022-150T23:04:05.000, 443600378,ImageRate,151,0,110,0,5,"[0, 933, 0, 933, 933, 0, 1840, 0, 933, 0, 933, 0, 933, 0, 933, 0, 0, 1, 2, 4, 2, 1, 2, 1, 2, 931, 933, 933, 933, 933, 933, 0, 933, 931, 0, 0, 931, 0, 931, 931, 0, 0, 30732, 931, 0, 933, 933, 0]"
|
|
154
|
+
2022-150T23:04:06.000, 443600379,ImageRate,152,0,110,0,4,"[0, 933, 0, 933, 933, 0, 1849, 0, 933, 0, 933, 0, 933, 0, 933, 0, 0, 0, 0, 5, 0, 2, 1, 2, 1, 933, 933, 933, 933, 933, 933, 0, 933, 933, 0, 0, 933, 0, 933, 933, 0, 0, 30788, 933, 0, 933, 933, 0]"
|
|
155
|
+
2022-150T23:04:07.000, 443600380,ImageRate,153,0,110,0,5,"[0, 933, 0, 933, 933, 0, 1844, 0, 933, 0, 933, 0, 933, 0, 933, 0, 0, 2, 5, 0, 3, 1, 3, 1, 2, 933, 933, 933, 933, 933, 933, 0, 933, 933, 0, 0, 933, 0, 933, 933, 0, 0, 30788, 933, 0, 933, 933, 0]"
|
|
156
|
+
2022-150T23:04:08.000, 443600381,ImageRate,154,0,110,0,5,"[0, 933, 0, 933, 933, 0, 1833, 0, 933, 0, 933, 0, 933, 0, 933, 0, 0, 1, 3, 2, 4, 1, 3, 6, 1, 933, 933, 933, 933, 933, 933, 0, 933, 933, 0, 0, 933, 0, 933, 933, 0, 0, 30788, 933, 0, 933, 933, 0]"
|
|
157
|
+
2022-150T23:04:09.000, 443600382,ImageRate,155,0,110,0,4,"[0, 932, 0, 932, 932, 0, 1831, 0, 932, 0, 932, 0, 932, 0, 932, 0, 0, 0, 1, 5, 4, 2, 3, 1, 3, 931, 932, 932, 932, 932, 932, 0, 932, 929, 0, 0, 929, 0, 929, 929, 0, 0, 30728, 929, 0, 932, 932, 0]"
|
|
158
|
+
2022-150T23:04:10.000, 443600383,ImageRate,156,0,110,0,5,"[0, 933, 0, 933, 933, 0, 1836, 0, 933, 0, 933, 0, 933, 0, 933, 0, 0, 3, 2, 4, 2, 1, 5, 3, 2, 933, 933, 933, 933, 933, 933, 0, 933, 933, 0, 0, 933, 0, 933, 933, 0, 0, 30788, 933, 0, 933, 933, 0]"
|
|
159
|
+
2022-150T23:04:11.000, 443600384,ImageRate,157,0,110,0,4,"[0, 933, 0, 933, 933, 0, 1839, 0, 933, 0, 933, 0, 933, 0, 933, 0, 0, 2, 2, 4, 0, 2, 2, 6, 3, 932, 933, 933, 933, 933, 933, 0, 933, 932, 0, 0, 932, 0, 932, 932, 0, 0, 30760, 932, 0, 933, 933, 0]"
|
|
160
|
+
2022-150T23:04:12.000, 443600385,ImageRate,158,0,110,0,3,"[0, 933, 0, 933, 933, 0, 1833, 0, 933, 0, 933, 0, 933, 0, 933, 0, 0, 2, 4, 2, 3, 3, 6, 2, 4, 933, 933, 933, 933, 933, 933, 0, 933, 933, 0, 0, 933, 0, 933, 933, 0, 0, 30788, 933, 0, 933, 933, 0]"
|
|
161
|
+
2022-150T23:04:13.000, 443600386,ImageRate,159,0,110,0,3,"[0, 933, 0, 933, 933, 0, 1840, 0, 933, 0, 933, 0, 933, 0, 933, 0, 0, 2, 0, 1, 2, 1, 3, 3, 3, 933, 933, 933, 933, 933, 933, 0, 933, 931, 0, 0, 931, 0, 931, 931, 0, 0, 30788, 931, 0, 933, 933, 0]"
|
|
162
|
+
2022-150T23:04:14.000, 443600387,ImageRate,160,0,110,0,4,"[0, 933, 0, 933, 933, 0, 1829, 0, 933, 0, 933, 0, 933, 0, 933, 0, 0, 0, 6, 2, 2, 1, 4, 6, 5, 933, 933, 933, 933, 933, 933, 0, 933, 933, 0, 0, 933, 0, 933, 933, 0, 0, 30788, 933, 0, 933, 933, 0]"
|
|
163
|
+
2022-150T23:04:15.000, 443600388,ImageRate,161,0,110,0,3,"[0, 933, 0, 933, 933, 0, 1834, 0, 933, 0, 933, 0, 933, 0, 933, 0, 0, 0, 2, 0, 2, 1, 0, 5, 6, 932, 933, 933, 933, 933, 933, 0, 933, 932, 0, 0, 932, 0, 932, 932, 0, 0, 30760, 932, 0, 933, 933, 0]"
|
|
164
|
+
2022-150T23:04:16.000, 443600389,ImageRate,162,0,110,0,4,"[0, 933, 0, 933, 933, 0, 1835, 0, 933, 0, 933, 0, 933, 0, 933, 0, 0, 5, 2, 3, 0, 1, 1, 1, 1, 933, 933, 933, 933, 933, 933, 0, 933, 932, 0, 0, 932, 0, 932, 932, 0, 0, 30788, 932, 0, 933, 933, 0]"
|