NIRCam Claw Detection#


Author: Mees Fix (mfix@stsci.edu)
Latest Update: 05 March 2025
Use case: NIRCam Imaging detectors A1, A3, B1, B2 or B4.
Data: None
Test Pipeline Version: None

Introduction#

This notebook demonstrates how to use JWST pointing information provided in a user’s APT program to detect the potential of claws in NIRCam observations. Claws are a scattered light phenomenon that occur when a bright star falls in the susceptibility region. When present, claws occur primarily in the A1, A3, B1, B2 or B4 detectors, affecting roughly 5% of the pixels on those detectors.

All datasets necessary for this notebook to run are included in the jwst_rogue_path_tool python package. This includes the following:

  • APT_test_4RPtool.records.json: A mock program that contains NIRCam instrument configurations that could contain contain claws we want to detect.

  • rogue_path_nrca.fits: fits file that contains the susceptibility region intensity contours for NIRCam module A.

  • rogue_path_nrcb.fits: fits file that contains the susceptibility region intensity contours for NIRCam module B.

  • two_mass_kmag_lt_5.csv: 2MASS stellar sources that have magnitudes less than 5.

To generate your own records.json file for a specific program via APT, see the JDox page for APT Export files.

Table of Contents#

  • Imports

  • Run the JWST Rogue Path Tool

    • Handling records.json Files

    • Selecting and Displaying APT Data

    • Generating APT Program Object

  • Plotting Rogue Path Tool Results

    • Exposure Level Valid Angle Plots

    • Observation Level Valid Angle Plots

    • Single Angle of Attitude in V2 & V3 Space Plots

    • Flux as a Function of Attitude Plots

  • Reporting & Applying PA Constraints in APT

Imports#

import numpy as np
import pathlib

from jwst_rogue_path_tool.program_data_parser import aptJsonFile
from jwst_rogue_path_tool.detect_claws import aptProgram
from jwst_rogue_path_tool.constants import PROJECT_DIRNAME

Run the JWST Rogue Path Tool#

Handling records.json Files#

Here we will look at the tools in the JWST Rogue Path Tool to parse and analyze the input data for the tool. The list of tables available are printed in a list below.

apt_json_filename = pathlib.Path(PROJECT_DIRNAME) / "data" / "APT_test_4RPtool.records.json"

# Parse the APT JSON file to obtain useful information for Claw Tool
parsed_json = aptJsonFile(apt_json_filename)

parsed_json.tablenames
['program',
 'observation',
 'mosaic',
 'target',
 'target_description',
 'fixed_target',
 'instruments',
 'visit',
 'visit_overheads',
 'visit_track',
 'visit_targets',
 'miri_templates',
 'miri_exposure_specification',
 'nircam_templates',
 'nircam_exposure_specification',
 'nircam_imaging_dither',
 'niriss_templates',
 'niriss_exposure_specification',
 'niriss_target_acq',
 'niriss_dither',
 'apt_diagnostics',
 'special_requirements',
 'link',
 'visit_linkspec',
 'exposures',
 'observation_association_candidates',
 'association_candidates']

Selecting and Displaying APT Data#

Below we print the exposure level data from our program. This is a list of dictionaries, each dictionary in the list represents an observation.

tablename = "exposures"
parsed_json.data[tablename]  # This is a list of dictionaries
[{'program': 0,
  'observation': 1,
  'visit': 1,
  'exposure': 0,
  'pointing_sequence_number': 0,
  'exposure_spec_order_number': 0,
  'target_id': 1,
  'target_order_number': 0,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'BASE',
  'dither_point_index': 0,
  'ideal_x_position': -58.0001799,
  'ideal_y_position': -23.4999796,
  'max_data_rate': 2.3005486156451145,
  'mosaic_tile_order_number': 0,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -29.8773783,
  'oss_ideal_y_position': -22.7853593,
  'pointing_type': 'BASE',
  'v2': 56.0734166,
  'v3': -516.319756,
  'dark_parallel_slot_duration': 0,
  'external_parallel_slot_duration': 0},
 {'program': 0,
  'observation': 1,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 1,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -58.0001799,
  'ideal_y_position': -23.4999796,
  'implicit_exposure': 'N',
  'max_data_rate': 2.3005486156451145,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -29.8773783,
  'oss_ideal_y_position': -22.7853593,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.08381870392,
  'dec_center_rotation': 19.23776711048,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.12942092617 19.21930240069 124.0387127081 19.21992474154 124.03920709787 19.25635328757 124.1288185723 19.25577263751 ',
  'v2': 56.0734166,
  'v3': -516.319756,
  'dark_parallel_slot_duration': 746,
  'exposure_duration': 381,
  'external_parallel_slot_duration': 340,
  'photon_collecting_duration': 311.366},
 {'program': 0,
  'observation': 1,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 2,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -57.7739791,
  'ideal_y_position': -23.3340798,
  'implicit_exposure': 'N',
  'max_data_rate': 2.3005486156451145,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -30.1036174,
  'oss_ideal_y_position': -22.6195127,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.0838853217,
  'dec_center_rotation': 19.23772111523,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.12948752365 19.21925638885 124.03877933122 19.2198787625 124.03927373564 19.25630730835 124.12888518473 19.25572662589 ',
  'v2': 55.8470001,
  'v3': -516.1541507,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 350,
  'external_parallel_slot_duration': 340,
  'photon_collecting_duration': 311.366},
 {'program': 0,
  'observation': 1,
  'visit': 2,
  'exposure': 0,
  'pointing_sequence_number': 0,
  'exposure_spec_order_number': 0,
  'target_id': 1,
  'target_order_number': 0,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'BASE',
  'dither_point_index': 0,
  'ideal_x_position': 0,
  'ideal_y_position': 0,
  'max_data_rate': 2.3005486156451145,
  'mosaic_tile_order_number': 0,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -87.8829185,
  'oss_ideal_y_position': 0.7009706,
  'pointing_type': 'BASE',
  'v2': -1.957302,
  'v3': -492.89529,
  'dark_parallel_slot_duration': 0,
  'external_parallel_slot_duration': 0},
 {'program': 0,
  'observation': 1,
  'visit': 2,
  'exposure': 1,
  'pointing_sequence_number': 1,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 3,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 0,
  'ideal_y_position': 0,
  'implicit_exposure': 'N',
  'max_data_rate': 2.3005486156451145,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -87.8829185,
  'oss_ideal_y_position': 0.7009706,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10089166666,
  'dec_center_rotation': 19.23126111111,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.14649015843 19.21279216436 124.05578559824 19.21342291098 124.05628375559 19.24985141101 124.1458916191 19.24926245682 ',
  'v2': -1.957302,
  'v3': -492.89529,
  'dark_parallel_slot_duration': 746,
  'exposure_duration': 381,
  'external_parallel_slot_duration': 340,
  'photon_collecting_duration': 311.366},
 {'program': 0,
  'observation': 1,
  'visit': 2,
  'exposure': 2,
  'pointing_sequence_number': 2,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 4,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 0.2262006,
  'ideal_y_position': 0.1659,
  'implicit_exposure': 'N',
  'max_data_rate': 2.3005486156451145,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -88.1091576,
  'oss_ideal_y_position': 0.8668173,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10095827698,
  'dec_center_rotation': 19.23121510958,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.14655674848 19.21274614636 124.05585221395 19.21337692577 124.05635038593 19.24980542562 124.1459582241 19.24921643903 ',
  'v2': -2.1837183,
  'v3': -492.7296845,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 350,
  'external_parallel_slot_duration': 340,
  'photon_collecting_duration': 311.366},
 {'program': 0,
  'observation': 1,
  'visit': 3,
  'exposure': 0,
  'pointing_sequence_number': 0,
  'exposure_spec_order_number': 0,
  'target_id': 1,
  'target_order_number': 0,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'BASE',
  'dither_point_index': 0,
  'ideal_x_position': 58.0001483,
  'ideal_y_position': 23.5000186,
  'max_data_rate': 2.3005486156451145,
  'mosaic_tile_order_number': 0,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -145.8884725,
  'oss_ideal_y_position': 24.1873062,
  'pointing_type': 'BASE',
  'v2': -59.9879891,
  'v3': -469.4707849,
  'dark_parallel_slot_duration': 0,
  'external_parallel_slot_duration': 0},
 {'program': 0,
  'observation': 1,
  'visit': 3,
  'exposure': 1,
  'pointing_sequence_number': 1,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 5,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 58.0001483,
  'ideal_y_position': 23.5000186,
  'implicit_exposure': 'N',
  'max_data_rate': 2.3005486156451145,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -145.8884725,
  'oss_ideal_y_position': 24.1873062,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.11796326743,
  'dec_center_rotation': 19.22475350799,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.16355803755 19.20628034649 124.0728571367 19.2069194982 124.07335906101 19.2433479519 124.16296331217 19.24275069423 ',
  'v2': -59.9879891,
  'v3': -469.4707849,
  'dark_parallel_slot_duration': 746,
  'exposure_duration': 381,
  'external_parallel_slot_duration': 340,
  'photon_collecting_duration': 311.366},
 {'program': 0,
  'observation': 1,
  'visit': 3,
  'exposure': 2,
  'pointing_sequence_number': 2,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 6,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 58.2263488,
  'ideal_y_position': 23.6659188,
  'implicit_exposure': 'N',
  'max_data_rate': 2.3005486156451145,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -146.1147117,
  'oss_ideal_y_position': 24.353153,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.11802987027,
  'dec_center_rotation': 19.22470750022,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.16362462018 19.20623432232 124.07292374499 19.20687350682 124.07342568394 19.24330196033 124.16302990975 19.24270467027 ',
  'v2': -60.2144053,
  'v3': -469.3051793,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 350,
  'external_parallel_slot_duration': 340,
  'photon_collecting_duration': 311.366},
 {'program': 0,
  'observation': 2,
  'visit': 1,
  'exposure': 0,
  'pointing_sequence_number': 0,
  'exposure_spec_order_number': 0,
  'target_id': 1,
  'target_order_number': 0,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'BASE',
  'dither_point_index': 0,
  'ideal_x_position': 200.0002771,
  'ideal_y_position': 100.0001776,
  'max_data_rate': 1.1786179401585328,
  'mosaic_tile_order_number': 0,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -287.906599,
  'oss_ideal_y_position': 100.6538851,
  'pointing_type': 'BASE',
  'v2': -202.0875712,
  'v3': -393.1555199,
  'dark_parallel_slot_duration': 0,
  'external_parallel_slot_duration': 0},
 {'program': 0,
  'observation': 2,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 1,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 200.0002771,
  'ideal_y_position': 100.0001776,
  'implicit_exposure': 'N',
  'max_data_rate': 1.1786179401585328,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -287.906599,
  'oss_ideal_y_position': 100.6538851,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.15975885546,
  'dec_center_rotation': 19.2035461615,
  'readout_pattern': 'MEDIUM8',
  'region_shape': 'POLYGON ICRS 124.20534311225 19.18506274725 124.1146540848 19.18572247675 124.11516521424 19.2221508155 124.20475774161 19.22153322885 ',
  'v2': -202.0875712,
  'v3': -393.1555199,
  'dark_parallel_slot_duration': 2801,
  'exposure_duration': 692,
  'external_parallel_slot_duration': 651,
  'photon_collecting_duration': 622.733},
 {'program': 0,
  'observation': 2,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 2,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 200.1511769,
  'ideal_y_position': 100.1358778,
  'implicit_exposure': 'N',
  'max_data_rate': 1.1786179401585328,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -288.0575311,
  'oss_ideal_y_position': 100.7895496,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.15980328022,
  'dec_center_rotation': 19.20350850733,
  'readout_pattern': 'MEDIUM8',
  'region_shape': 'POLYGON ICRS 124.20538752173 19.1850250822 124.11469851524 19.18568483357 124.11520965441 19.2221131722 124.20480216107 19.22149556394 ',
  'v2': -202.2386475,
  'v3': -393.0200163,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 661,
  'external_parallel_slot_duration': 651,
  'photon_collecting_duration': 622.733},
 {'program': 0,
  'observation': 2,
  'visit': 1,
  'exposure': 3,
  'pointing_sequence_number': 3,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 3,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 200.0756766,
  'ideal_y_position': 100.2113776,
  'implicit_exposure': 'N',
  'max_data_rate': 1.1786179401585328,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -287.9820488,
  'oss_ideal_y_position': 100.8650674,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.15978109367,
  'dec_center_rotation': 19.20348751502,
  'readout_pattern': 'MEDIUM8',
  'region_shape': 'POLYGON ICRS 124.20536533184 19.18500409528 124.11467633685 19.18566383573 124.11518747104 19.22209217442 124.20477996634 19.22147457695 ',
  'v2': -202.1632456,
  'v3': -392.9444183,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 661,
  'external_parallel_slot_duration': 651,
  'photon_collecting_duration': 622.733},
 {'program': 0,
  'observation': 2,
  'visit': 1,
  'exposure': 4,
  'pointing_sequence_number': 4,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 4,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 200.2264771,
  'ideal_y_position': 100.045378,
  'implicit_exposure': 'N',
  'max_data_rate': 1.1786179401585328,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -288.1328098,
  'oss_ideal_y_position': 100.6990319,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.15982540371,
  'dec_center_rotation': 19.20353366624,
  'readout_pattern': 'MEDIUM8',
  'region_shape': 'POLYGON ICRS 124.2054096497 19.18505023574 124.11472062941 19.18570999801 124.11523177357 19.22213833658 124.20482429387 19.22152071755 ',
  'v2': -202.3138299,
  'v3': -393.110614,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 661,
  'external_parallel_slot_duration': 651,
  'photon_collecting_duration': 622.733},
 {'program': 0,
  'observation': 2,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 5,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 200.0002771,
  'ideal_y_position': 100.0001776,
  'implicit_exposure': 'N',
  'max_data_rate': 2.3005486156451145,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -287.906599,
  'oss_ideal_y_position': 100.6538851,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.15975885546,
  'dec_center_rotation': 19.2035461615,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.20534311225 19.18506274725 124.1146540848 19.18572247675 124.11516521424 19.2221508155 124.20475774161 19.22153322885 ',
  'v2': -202.0875712,
  'v3': -393.1555199,
  'dark_parallel_slot_duration': 1557,
  'exposure_duration': 381,
  'external_parallel_slot_duration': 340,
  'photon_collecting_duration': 311.366},
 {'program': 0,
  'observation': 2,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 6,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 200.1511769,
  'ideal_y_position': 100.1358778,
  'implicit_exposure': 'N',
  'max_data_rate': 2.3005486156451145,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -288.0575311,
  'oss_ideal_y_position': 100.7895496,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.15980328022,
  'dec_center_rotation': 19.20350850733,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.20538752173 19.1850250822 124.11469851524 19.18568483357 124.11520965441 19.2221131722 124.20480216107 19.22149556394 ',
  'v2': -202.2386475,
  'v3': -393.0200163,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 350,
  'external_parallel_slot_duration': 340,
  'photon_collecting_duration': 311.366},
 {'program': 0,
  'observation': 2,
  'visit': 1,
  'exposure': 3,
  'pointing_sequence_number': 7,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 3,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 200.0756766,
  'ideal_y_position': 100.2113776,
  'implicit_exposure': 'N',
  'max_data_rate': 2.3005486156451145,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -287.9820488,
  'oss_ideal_y_position': 100.8650674,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.15978109367,
  'dec_center_rotation': 19.20348751502,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.20536533184 19.18500409528 124.11467633685 19.18566383573 124.11518747104 19.22209217442 124.20477996634 19.22147457695 ',
  'v2': -202.1632456,
  'v3': -392.9444183,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 350,
  'external_parallel_slot_duration': 340,
  'photon_collecting_duration': 311.366},
 {'program': 0,
  'observation': 2,
  'visit': 1,
  'exposure': 4,
  'pointing_sequence_number': 8,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 4,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 200.2264771,
  'ideal_y_position': 100.045378,
  'implicit_exposure': 'N',
  'max_data_rate': 2.3005486156451145,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -288.1328098,
  'oss_ideal_y_position': 100.6990319,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.15982540371,
  'dec_center_rotation': 19.20353366624,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.2054096497 19.18505023574 124.11472062941 19.18570999801 124.11523177357 19.22213833658 124.20482429387 19.22152071755 ',
  'v2': -202.3138299,
  'v3': -393.110614,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 350,
  'external_parallel_slot_duration': 340,
  'photon_collecting_duration': 311.366},
 {'program': 0,
  'observation': 2,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 9,
  'exposure_spec_order_number': 3,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 200.0002771,
  'ideal_y_position': 100.0001776,
  'implicit_exposure': 'N',
  'max_data_rate': 5.285419882257957,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -287.906599,
  'oss_ideal_y_position': 100.6538851,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.15975885546,
  'dec_center_rotation': 19.2035461615,
  'readout_pattern': 'BRIGHT2',
  'region_shape': 'POLYGON ICRS 124.20534311225 19.18506274725 124.1146540848 19.18572247675 124.11516521424 19.2221508155 124.20475774161 19.22153322885 ',
  'v2': -202.0875712,
  'v3': -393.1555199,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 198,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 128.841},
 {'program': 0,
  'observation': 2,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 10,
  'exposure_spec_order_number': 3,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 200.1511769,
  'ideal_y_position': 100.1358778,
  'implicit_exposure': 'N',
  'max_data_rate': 5.285419882257957,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -288.0575311,
  'oss_ideal_y_position': 100.7895496,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.15980328022,
  'dec_center_rotation': 19.20350850733,
  'readout_pattern': 'BRIGHT2',
  'region_shape': 'POLYGON ICRS 124.20538752173 19.1850250822 124.11469851524 19.18568483357 124.11520965441 19.2221131722 124.20480216107 19.22149556394 ',
  'v2': -202.2386475,
  'v3': -393.0200163,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 167,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 128.841},
 {'program': 0,
  'observation': 2,
  'visit': 1,
  'exposure': 3,
  'pointing_sequence_number': 11,
  'exposure_spec_order_number': 3,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 3,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 200.0756766,
  'ideal_y_position': 100.2113776,
  'implicit_exposure': 'N',
  'max_data_rate': 5.285419882257957,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -287.9820488,
  'oss_ideal_y_position': 100.8650674,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.15978109367,
  'dec_center_rotation': 19.20348751502,
  'readout_pattern': 'BRIGHT2',
  'region_shape': 'POLYGON ICRS 124.20536533184 19.18500409528 124.11467633685 19.18566383573 124.11518747104 19.22209217442 124.20477996634 19.22147457695 ',
  'v2': -202.1632456,
  'v3': -392.9444183,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 167,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 128.841},
 {'program': 0,
  'observation': 2,
  'visit': 1,
  'exposure': 4,
  'pointing_sequence_number': 12,
  'exposure_spec_order_number': 3,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 4,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 200.2264771,
  'ideal_y_position': 100.045378,
  'implicit_exposure': 'N',
  'max_data_rate': 5.285419882257957,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -288.1328098,
  'oss_ideal_y_position': 100.6990319,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.15982540371,
  'dec_center_rotation': 19.20353366624,
  'readout_pattern': 'BRIGHT2',
  'region_shape': 'POLYGON ICRS 124.2054096497 19.18505023574 124.11472062941 19.18570999801 124.11523177357 19.22213833658 124.20482429387 19.22152071755 ',
  'v2': -202.3138299,
  'v3': -393.110614,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 167,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 128.841},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 0,
  'pointing_sequence_number': 0,
  'exposure_spec_order_number': 0,
  'target_id': 1,
  'target_order_number': 0,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'BASE',
  'dither_point_index': 0,
  'ideal_x_position': 197.2611818,
  'ideal_y_position': 45.8663225,
  'max_data_rate': 1.382979238591763,
  'mosaic_tile_order_number': 0,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -285.0948155,
  'oss_ideal_y_position': 46.7773559,
  'pointing_type': 'BASE',
  'v2': -199.2184838,
  'v3': -447.0289674,
  'dark_parallel_slot_duration': 0,
  'external_parallel_slot_duration': 0},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 1,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 197.2611818,
  'ideal_y_position': 45.8663225,
  'implicit_exposure': 'N',
  'max_data_rate': 1.382979238591763,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -285.0948155,
  'oss_ideal_y_position': 46.7773559,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.15892021066,
  'dec_center_rotation': 19.21851126958,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.11144231371 19.20108130369 124.11210604234 19.23684409789 124.20626447203 19.23620877765 124.20780842479 19.20050774249 ',
  'v2': -199.2184838,
  'v3': -447.0289674,
  'dark_parallel_slot_duration': 3202,
  'exposure_duration': 520,
  'external_parallel_slot_duration': 479,
  'photon_collecting_duration': 450.944},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 2,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 197.8593812,
  'ideal_y_position': 46.4645234,
  'implicit_exposure': 'N',
  'max_data_rate': 1.382979238591763,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -285.6923781,
  'oss_ideal_y_position': 47.3761935,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.15909612481,
  'dec_center_rotation': 19.21834504688,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.11161825785 19.20091512687 124.11228202412 19.23667792043 124.20644035783 19.23604251027 124.20798427081 19.20034147364 ',
  'v2': -199.8166832,
  'v3': -446.4307665,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 489,
  'external_parallel_slot_duration': 479,
  'photon_collecting_duration': 450.944},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 3,
  'pointing_sequence_number': 3,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 3,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 204.7612099,
  'ideal_y_position': 38.3663423,
  'implicit_exposure': 'N',
  'max_data_rate': 1.382979238591763,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -292.6028134,
  'oss_ideal_y_position': 39.2853516,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16112726574,
  'dec_center_rotation': 19.22059388365,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.11364853104 19.20316449745 124.1143127485 19.23892728369 124.20847236364 19.23829083536 124.21001585614 19.2025897817 ',
  'v2': -206.7185119,
  'v3': -454.5289476,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 489,
  'external_parallel_slot_duration': 479,
  'photon_collecting_duration': 450.944},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 4,
  'pointing_sequence_number': 4,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 4,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 205.3594093,
  'ideal_y_position': 38.9645433,
  'implicit_exposure': 'N',
  'max_data_rate': 1.382979238591763,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -293.200376,
  'oss_ideal_y_position': 39.8841893,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16130317987,
  'dec_center_rotation': 19.22042765881,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.11382447518 19.20299831851 124.11448873028 19.23876110412 124.20864824944 19.23812456587 124.21019170215 19.20242351074 ',
  'v2': -207.3167113,
  'v3': -453.9307466,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 489,
  'external_parallel_slot_duration': 479,
  'photon_collecting_duration': 450.944},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 5,
  'pointing_sequence_number': 5,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 5,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 212.2612387,
  'ideal_y_position': 30.8663632,
  'implicit_exposure': 'N',
  'max_data_rate': 1.382979238591763,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -300.1108115,
  'oss_ideal_y_position': 31.7933471,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16333437707,
  'dec_center_rotation': 19.22267647067,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.11585480433 19.20524766478 124.11651951065 19.24101044306 124.21068031124 19.2403728666 124.21222334344 19.20467179445 ',
  'v2': -214.2185407,
  'v3': -462.0289267,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 489,
  'external_parallel_slot_duration': 479,
  'photon_collecting_duration': 450.944},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 6,
  'pointing_sequence_number': 6,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 6,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 212.8594381,
  'ideal_y_position': 31.4645643,
  'implicit_exposure': 'N',
  'max_data_rate': 1.382979238591763,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -300.7083742,
  'oss_ideal_y_position': 32.3921848,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16351029118,
  'dec_center_rotation': 19.22251024369,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.11603074847 19.20508148374 124.11669549242 19.24084426138 124.21085619703 19.24020659501 124.21239918944 19.20450552138 ',
  'v2': -214.8167401,
  'v3': -461.4307256,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 489,
  'external_parallel_slot_duration': 479,
  'photon_collecting_duration': 450.944},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 7,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'DIRECT_IMAGE',
  'data_volume_mib': 240.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 212.8594381,
  'ideal_y_position': 31.4645643,
  'implicit_exposure': 'N',
  'max_data_rate': 3.686381703715363,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 2,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -300.7083742,
  'oss_ideal_y_position': 32.3921848,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16351029118,
  'dec_center_rotation': 19.22251024369,
  'readout_pattern': 'SHALLOW2',
  'region_shape': 'POLYGON ICRS 124.11603074847 19.20508148374 124.11669549242 19.24084426138 124.21085619703 19.24020659501 124.21239918944 19.20450552138 ',
  'v2': -214.8167401,
  'v3': -461.4307256,
  'dark_parallel_slot_duration': 104,
  'exposure_duration': 145,
  'external_parallel_slot_duration': 104,
  'photon_collecting_duration': 75.157},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 8,
  'exposure_spec_order_number': 3,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 197.2611818,
  'ideal_y_position': 45.8663225,
  'implicit_exposure': 'N',
  'max_data_rate': 1.2158389236621594,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -285.0948155,
  'oss_ideal_y_position': 46.7773559,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.15892021066,
  'dec_center_rotation': 19.21851126958,
  'readout_pattern': 'MEDIUM8',
  'region_shape': 'POLYGON ICRS 124.11144231371 19.20108130369 124.11210604234 19.23684409789 124.20626447203 19.23620877765 124.20780842479 19.20050774249 ',
  'v2': -199.2184838,
  'v3': -447.0289674,
  'dark_parallel_slot_duration': 3592,
  'exposure_duration': 585,
  'external_parallel_slot_duration': 544,
  'photon_collecting_duration': 515.365},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 9,
  'exposure_spec_order_number': 3,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 197.8593812,
  'ideal_y_position': 46.4645234,
  'implicit_exposure': 'N',
  'max_data_rate': 1.2158389236621594,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -285.6923781,
  'oss_ideal_y_position': 47.3761935,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.15909612481,
  'dec_center_rotation': 19.21834504688,
  'readout_pattern': 'MEDIUM8',
  'region_shape': 'POLYGON ICRS 124.11161825785 19.20091512687 124.11228202412 19.23667792043 124.20644035783 19.23604251027 124.20798427081 19.20034147364 ',
  'v2': -199.8166832,
  'v3': -446.4307665,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 554,
  'external_parallel_slot_duration': 544,
  'photon_collecting_duration': 515.365},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 3,
  'pointing_sequence_number': 10,
  'exposure_spec_order_number': 3,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 3,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 204.7612099,
  'ideal_y_position': 38.3663423,
  'implicit_exposure': 'N',
  'max_data_rate': 1.2158389236621594,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -292.6028134,
  'oss_ideal_y_position': 39.2853516,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16112726574,
  'dec_center_rotation': 19.22059388365,
  'readout_pattern': 'MEDIUM8',
  'region_shape': 'POLYGON ICRS 124.11364853104 19.20316449745 124.1143127485 19.23892728369 124.20847236364 19.23829083536 124.21001585614 19.2025897817 ',
  'v2': -206.7185119,
  'v3': -454.5289476,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 554,
  'external_parallel_slot_duration': 544,
  'photon_collecting_duration': 515.365},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 4,
  'pointing_sequence_number': 11,
  'exposure_spec_order_number': 3,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 4,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 205.3594093,
  'ideal_y_position': 38.9645433,
  'implicit_exposure': 'N',
  'max_data_rate': 1.2158389236621594,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -293.200376,
  'oss_ideal_y_position': 39.8841893,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16130317987,
  'dec_center_rotation': 19.22042765881,
  'readout_pattern': 'MEDIUM8',
  'region_shape': 'POLYGON ICRS 124.11382447518 19.20299831851 124.11448873028 19.23876110412 124.20864824944 19.23812456587 124.21019170215 19.20242351074 ',
  'v2': -207.3167113,
  'v3': -453.9307466,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 554,
  'external_parallel_slot_duration': 544,
  'photon_collecting_duration': 515.365},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 5,
  'pointing_sequence_number': 12,
  'exposure_spec_order_number': 3,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 5,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 212.2612387,
  'ideal_y_position': 30.8663632,
  'implicit_exposure': 'N',
  'max_data_rate': 1.2158389236621594,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -300.1108115,
  'oss_ideal_y_position': 31.7933471,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16333437707,
  'dec_center_rotation': 19.22267647067,
  'readout_pattern': 'MEDIUM8',
  'region_shape': 'POLYGON ICRS 124.11585480433 19.20524766478 124.11651951065 19.24101044306 124.21068031124 19.2403728666 124.21222334344 19.20467179445 ',
  'v2': -214.2185407,
  'v3': -462.0289267,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 554,
  'external_parallel_slot_duration': 544,
  'photon_collecting_duration': 515.365},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 6,
  'pointing_sequence_number': 13,
  'exposure_spec_order_number': 3,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 6,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 212.8594381,
  'ideal_y_position': 31.4645643,
  'implicit_exposure': 'N',
  'max_data_rate': 1.2158389236621594,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -300.7083742,
  'oss_ideal_y_position': 32.3921848,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16351029118,
  'dec_center_rotation': 19.22251024369,
  'readout_pattern': 'MEDIUM8',
  'region_shape': 'POLYGON ICRS 124.11603074847 19.20508148374 124.11669549242 19.24084426138 124.21085619703 19.24020659501 124.21239918944 19.20450552138 ',
  'v2': -214.8167401,
  'v3': -461.4307256,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 554,
  'external_parallel_slot_duration': 544,
  'photon_collecting_duration': 515.365},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 14,
  'exposure_spec_order_number': 4,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'DIRECT_IMAGE',
  'data_volume_mib': 240.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 212.8594381,
  'ideal_y_position': 31.4645643,
  'implicit_exposure': 'N',
  'max_data_rate': 3.686381703715363,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 2,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -300.7083742,
  'oss_ideal_y_position': 32.3921848,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16351029118,
  'dec_center_rotation': 19.22251024369,
  'readout_pattern': 'SHALLOW2',
  'region_shape': 'POLYGON ICRS 124.11603074847 19.20508148374 124.11669549242 19.24084426138 124.21085619703 19.24020659501 124.21239918944 19.20450552138 ',
  'v2': -214.8167401,
  'v3': -461.4307256,
  'dark_parallel_slot_duration': 104,
  'exposure_duration': 145,
  'external_parallel_slot_duration': 104,
  'photon_collecting_duration': 75.157},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 15,
  'exposure_spec_order_number': 5,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'OUT_OF_FIELD',
  'data_volume_mib': 240.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 189.0111758,
  'ideal_y_position': 43.126307,
  'implicit_exposure': 'N',
  'max_data_rate': 3.686381703715363,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 2,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -276.8477327,
  'oss_ideal_y_position': 44.0285613,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.15649355477,
  'dec_center_rotation': 19.21927313778,
  'readout_pattern': 'SHALLOW2',
  'region_shape': 'POLYGON ICRS 124.10901569024 19.20184253782 124.10967889354 19.23760534075 124.2038377694 19.23697126085 124.20538225672 19.20127024603 ',
  'v2': -190.9684778,
  'v3': -449.7689829,
  'dark_parallel_slot_duration': 279,
  'exposure_duration': 145,
  'external_parallel_slot_duration': 104,
  'photon_collecting_duration': 75.157},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 16,
  'exposure_spec_order_number': 5,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'OUT_OF_FIELD',
  'data_volume_mib': 240.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 213.0112095,
  'ideal_y_position': 43.126358,
  'implicit_exposure': 'N',
  'max_data_rate': 3.686381703715363,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 2,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -300.8477434,
  'oss_ideal_y_position': 44.0541461,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16355370385,
  'dec_center_rotation': 19.2192708432,
  'readout_pattern': 'SHALLOW2',
  'region_shape': 'POLYGON ICRS 124.1160751007 19.20184209119 124.1167398412 19.23760486867 124.21089868841 19.23696718011 124.21244164116 19.20126610613 ',
  'v2': -214.9685115,
  'v3': -449.7689319,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 114,
  'external_parallel_slot_duration': 104,
  'photon_collecting_duration': 75.157},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 17,
  'exposure_spec_order_number': 6,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 197.2611818,
  'ideal_y_position': 45.8663225,
  'implicit_exposure': 'N',
  'max_data_rate': 1.382979238591763,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -285.0948155,
  'oss_ideal_y_position': 46.7773559,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.15892021066,
  'dec_center_rotation': 19.21851126958,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.11397305931 19.19723783578 124.11454042496 19.24622307254 124.20342368485 19.24542138212 124.2039311115 19.1972843406 ',
  'v2': -199.2184838,
  'v3': -447.0289674,
  'dark_parallel_slot_duration': 3202,
  'exposure_duration': 520,
  'external_parallel_slot_duration': 479,
  'photon_collecting_duration': 450.944},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 18,
  'exposure_spec_order_number': 6,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 197.8593812,
  'ideal_y_position': 46.4645234,
  'implicit_exposure': 'N',
  'max_data_rate': 1.382979238591763,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -285.6923781,
  'oss_ideal_y_position': 47.3761935,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.15909612481,
  'dec_center_rotation': 19.21834504688,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.11414899677 19.19707165654 124.11471641432 19.24605689276 124.2035995834 19.24525511746 124.20410695799 19.19711807545 ',
  'v2': -199.8166832,
  'v3': -446.4307665,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 489,
  'external_parallel_slot_duration': 479,
  'photon_collecting_duration': 450.944},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 3,
  'pointing_sequence_number': 19,
  'exposure_spec_order_number': 6,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 3,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 204.7612099,
  'ideal_y_position': 38.3663423,
  'implicit_exposure': 'N',
  'max_data_rate': 1.382979238591763,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -292.6028134,
  'oss_ideal_y_position': 39.2853516,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16112726574,
  'dec_center_rotation': 19.22059388365,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.11617925712 19.19932099923 124.11674728803 19.24830622919 124.20563166431 19.24750347387 124.20613845039 19.19936642627 ',
  'v2': -206.7185119,
  'v3': -454.5289476,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 489,
  'external_parallel_slot_duration': 479,
  'photon_collecting_duration': 450.944},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 4,
  'pointing_sequence_number': 20,
  'exposure_spec_order_number': 6,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 4,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 205.3594093,
  'ideal_y_position': 38.9645433,
  'implicit_exposure': 'N',
  'max_data_rate': 1.382979238591763,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -293.200376,
  'oss_ideal_y_position': 39.8841893,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16130317987,
  'dec_center_rotation': 19.22042765881,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.11635519458 19.19915481787 124.11692327739 19.24814004729 124.20580756285 19.2473372071 124.20631429687 19.19920015902 ',
  'v2': -207.3167113,
  'v3': -453.9307466,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 489,
  'external_parallel_slot_duration': 479,
  'photon_collecting_duration': 450.944},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 5,
  'pointing_sequence_number': 21,
  'exposure_spec_order_number': 6,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 5,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 212.2612387,
  'ideal_y_position': 30.8663632,
  'implicit_exposure': 'N',
  'max_data_rate': 1.382979238591763,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -300.1108115,
  'oss_ideal_y_position': 31.7933471,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16333437707,
  'dec_center_rotation': 19.22267647067,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.11838551088 19.20140413624 124.11895420708 19.2503893594 124.20783969975 19.24958553917 124.20834584523 19.20144848549 ',
  'v2': -214.2185407,
  'v3': -462.0289267,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 489,
  'external_parallel_slot_duration': 479,
  'photon_collecting_duration': 450.944},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 6,
  'pointing_sequence_number': 22,
  'exposure_spec_order_number': 6,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 6,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 212.8594381,
  'ideal_y_position': 31.4645643,
  'implicit_exposure': 'N',
  'max_data_rate': 1.382979238591763,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -300.7083742,
  'oss_ideal_y_position': 32.3921848,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16351029118,
  'dec_center_rotation': 19.22251024369,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.11856144834 19.20123795278 124.11913019645 19.25022317539 124.20801559828 19.24941927028 124.20852169171 19.20128221613 ',
  'v2': -214.8167401,
  'v3': -461.4307256,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 489,
  'external_parallel_slot_duration': 479,
  'photon_collecting_duration': 450.944},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 23,
  'exposure_spec_order_number': 7,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'DIRECT_IMAGE',
  'data_volume_mib': 240.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 212.8594381,
  'ideal_y_position': 31.4645643,
  'implicit_exposure': 'N',
  'max_data_rate': 3.686381703715363,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 2,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -300.7083742,
  'oss_ideal_y_position': 32.3921848,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16351029118,
  'dec_center_rotation': 19.22251024369,
  'readout_pattern': 'SHALLOW2',
  'region_shape': 'POLYGON ICRS 124.11856144834 19.20123795278 124.11913019645 19.25022317539 124.20801559828 19.24941927028 124.20852169171 19.20128221613 ',
  'v2': -214.8167401,
  'v3': -461.4307256,
  'dark_parallel_slot_duration': 104,
  'exposure_duration': 145,
  'external_parallel_slot_duration': 104,
  'photon_collecting_duration': 75.157},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 24,
  'exposure_spec_order_number': 8,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 197.2611818,
  'ideal_y_position': 45.8663225,
  'implicit_exposure': 'N',
  'max_data_rate': 1.2158389236621594,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -285.0948155,
  'oss_ideal_y_position': 46.7773559,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.15892021066,
  'dec_center_rotation': 19.21851126958,
  'readout_pattern': 'MEDIUM8',
  'region_shape': 'POLYGON ICRS 124.11397305931 19.19723783578 124.11454042496 19.24622307254 124.20342368485 19.24542138212 124.2039311115 19.1972843406 ',
  'v2': -199.2184838,
  'v3': -447.0289674,
  'dark_parallel_slot_duration': 3592,
  'exposure_duration': 585,
  'external_parallel_slot_duration': 544,
  'photon_collecting_duration': 515.365},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 25,
  'exposure_spec_order_number': 8,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 197.8593812,
  'ideal_y_position': 46.4645234,
  'implicit_exposure': 'N',
  'max_data_rate': 1.2158389236621594,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -285.6923781,
  'oss_ideal_y_position': 47.3761935,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.15909612481,
  'dec_center_rotation': 19.21834504688,
  'readout_pattern': 'MEDIUM8',
  'region_shape': 'POLYGON ICRS 124.11414899677 19.19707165654 124.11471641432 19.24605689276 124.2035995834 19.24525511746 124.20410695799 19.19711807545 ',
  'v2': -199.8166832,
  'v3': -446.4307665,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 554,
  'external_parallel_slot_duration': 544,
  'photon_collecting_duration': 515.365},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 3,
  'pointing_sequence_number': 26,
  'exposure_spec_order_number': 8,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 3,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 204.7612099,
  'ideal_y_position': 38.3663423,
  'implicit_exposure': 'N',
  'max_data_rate': 1.2158389236621594,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -292.6028134,
  'oss_ideal_y_position': 39.2853516,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16112726574,
  'dec_center_rotation': 19.22059388365,
  'readout_pattern': 'MEDIUM8',
  'region_shape': 'POLYGON ICRS 124.11617925712 19.19932099923 124.11674728803 19.24830622919 124.20563166431 19.24750347387 124.20613845039 19.19936642627 ',
  'v2': -206.7185119,
  'v3': -454.5289476,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 554,
  'external_parallel_slot_duration': 544,
  'photon_collecting_duration': 515.365},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 4,
  'pointing_sequence_number': 27,
  'exposure_spec_order_number': 8,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 4,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 205.3594093,
  'ideal_y_position': 38.9645433,
  'implicit_exposure': 'N',
  'max_data_rate': 1.2158389236621594,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -293.200376,
  'oss_ideal_y_position': 39.8841893,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16130317987,
  'dec_center_rotation': 19.22042765881,
  'readout_pattern': 'MEDIUM8',
  'region_shape': 'POLYGON ICRS 124.11635519458 19.19915481787 124.11692327739 19.24814004729 124.20580756285 19.2473372071 124.20631429687 19.19920015902 ',
  'v2': -207.3167113,
  'v3': -453.9307466,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 554,
  'external_parallel_slot_duration': 544,
  'photon_collecting_duration': 515.365},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 5,
  'pointing_sequence_number': 28,
  'exposure_spec_order_number': 8,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 5,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 212.2612387,
  'ideal_y_position': 30.8663632,
  'implicit_exposure': 'N',
  'max_data_rate': 1.2158389236621594,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -300.1108115,
  'oss_ideal_y_position': 31.7933471,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16333437707,
  'dec_center_rotation': 19.22267647067,
  'readout_pattern': 'MEDIUM8',
  'region_shape': 'POLYGON ICRS 124.11838551088 19.20140413624 124.11895420708 19.2503893594 124.20783969975 19.24958553917 124.20834584523 19.20144848549 ',
  'v2': -214.2185407,
  'v3': -462.0289267,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 554,
  'external_parallel_slot_duration': 544,
  'photon_collecting_duration': 515.365},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 6,
  'pointing_sequence_number': 29,
  'exposure_spec_order_number': 8,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 6,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 212.8594381,
  'ideal_y_position': 31.4645643,
  'implicit_exposure': 'N',
  'max_data_rate': 1.2158389236621594,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -300.7083742,
  'oss_ideal_y_position': 32.3921848,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16351029118,
  'dec_center_rotation': 19.22251024369,
  'readout_pattern': 'MEDIUM8',
  'region_shape': 'POLYGON ICRS 124.11856144834 19.20123795278 124.11913019645 19.25022317539 124.20801559828 19.24941927028 124.20852169171 19.20128221613 ',
  'v2': -214.8167401,
  'v3': -461.4307256,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 554,
  'external_parallel_slot_duration': 544,
  'photon_collecting_duration': 515.365},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 30,
  'exposure_spec_order_number': 9,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'DIRECT_IMAGE',
  'data_volume_mib': 240.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 212.8594381,
  'ideal_y_position': 31.4645643,
  'implicit_exposure': 'N',
  'max_data_rate': 3.686381703715363,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 2,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -300.7083742,
  'oss_ideal_y_position': 32.3921848,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16351029118,
  'dec_center_rotation': 19.22251024369,
  'readout_pattern': 'SHALLOW2',
  'region_shape': 'POLYGON ICRS 124.11856144834 19.20123795278 124.11913019645 19.25022317539 124.20801559828 19.24941927028 124.20852169171 19.20128221613 ',
  'v2': -214.8167401,
  'v3': -461.4307256,
  'dark_parallel_slot_duration': 104,
  'exposure_duration': 145,
  'external_parallel_slot_duration': 104,
  'photon_collecting_duration': 75.157},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 31,
  'exposure_spec_order_number': 10,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'OUT_OF_FIELD',
  'data_volume_mib': 240.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 203.3411707,
  'ideal_y_position': 54.1163308,
  'implicit_exposure': 'N',
  'max_data_rate': 3.686381703715363,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 2,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -291.1660241,
  'oss_ideal_y_position': 55.033837,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16070793375,
  'dec_center_rotation': 19.21621902622,
  'readout_pattern': 'SHALLOW2',
  'region_shape': 'POLYGON ICRS 124.11576118573 19.19494603344 124.11632907681 19.24393126468 124.20521108739 19.24312871169 124.20571798321 19.19499166525 ',
  'v2': -205.2984727,
  'v3': -438.7789591,
  'dark_parallel_slot_duration': 494,
  'exposure_duration': 145,
  'external_parallel_slot_duration': 104,
  'photon_collecting_duration': 75.157},
 {'program': 0,
  'observation': 3,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 32,
  'exposure_spec_order_number': 10,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'OUT_OF_FIELD',
  'data_volume_mib': 240.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 203.3412814,
  'ideal_y_position': 7.1163549,
  'implicit_exposure': 'N',
  'max_data_rate': 3.686381703715363,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 2,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -291.2161234,
  'oss_ideal_y_position': 8.0338396,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.160712719,
  'dec_center_rotation': 19.22927456796,
  'readout_pattern': 'SHALLOW2',
  'region_shape': 'POLYGON ICRS 124.11576236754 19.20800158894 124.11633030412 19.25698682019 124.20521938094 19.2561842649 124.20572631462 19.20804721843 ',
  'v2': -205.2985834,
  'v3': -485.778935,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 114,
  'external_parallel_slot_duration': 104,
  'photon_collecting_duration': 75.157},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 0,
  'pointing_sequence_number': 0,
  'exposure_spec_order_number': 0,
  'target_id': 1,
  'target_order_number': 0,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'BASE',
  'dither_point_index': 0,
  'ideal_x_position': 195.2393499,
  'ideal_y_position': 161.6339964,
  'max_data_rate': 1.382979238591763,
  'mosaic_tile_order_number': 0,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -282.9498456,
  'oss_ideal_y_position': 162.5429548,
  'pointing_type': 'BASE',
  'v2': -197.1966519,
  'v3': -331.2612935,
  'dark_parallel_slot_duration': 0,
  'external_parallel_slot_duration': 0},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 1,
  'pointing_sequence_number': 1,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 195.2393499,
  'ideal_y_position': 161.6339964,
  'implicit_exposure': 'N',
  'max_data_rate': 1.382979238591763,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -282.9498456,
  'oss_ideal_y_position': 162.5429548,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.15831422025,
  'dec_center_rotation': 19.18635378609,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.11084573987 19.16892362511 124.11150920869 19.20468642146 124.20564920819 19.20405141095 124.20719299245 19.16835038095 ',
  'v2': -197.1966519,
  'v3': -331.2612935,
  'dark_parallel_slot_duration': 3202,
  'exposure_duration': 520,
  'external_parallel_slot_duration': 479,
  'photon_collecting_duration': 450.944},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 2,
  'pointing_sequence_number': 2,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 195.8375486,
  'ideal_y_position': 162.2321967,
  'implicit_exposure': 'N',
  'max_data_rate': 1.382979238591763,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -283.5474083,
  'oss_ideal_y_position': 163.1417926,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.1584901005,
  'dec_center_rotation': 19.18618756425,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.11102165018 19.16875744885 124.11168515662 19.20452024456 124.20582506019 19.20388514416 124.20736880468 19.16818411269 ',
  'v2': -197.7948506,
  'v3': -330.6630932,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 489,
  'external_parallel_slot_duration': 479,
  'photon_collecting_duration': 450.944},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 3,
  'pointing_sequence_number': 3,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 3,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 202.7393679,
  'ideal_y_position': 154.134016,
  'implicit_exposure': 'N',
  'max_data_rate': 1.382979238591763,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -290.4578435,
  'oss_ideal_y_position': 155.0509523,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16052083209,
  'dec_center_rotation': 19.18843640868,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.11305151783 19.17100682602 124.11371547529 19.20676961441 124.20785665979 19.20613347604 124.20939998396 19.17043242754 ',
  'v2': -204.6966699,
  'v3': -338.7612739,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 489,
  'external_parallel_slot_duration': 479,
  'photon_collecting_duration': 450.944},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 4,
  'pointing_sequence_number': 4,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 4,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 203.3375666,
  'ideal_y_position': 154.7322164,
  'implicit_exposure': 'N',
  'max_data_rate': 1.382979238591763,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -291.0554061,
  'oss_ideal_y_position': 155.6497901,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16069671232,
  'dec_center_rotation': 19.18827018469,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.11322742814 19.17084064765 124.11389142322 19.20660343541 124.20803251178 19.20596720714 124.20957579618 19.17026615717 ',
  'v2': -205.2948686,
  'v3': -338.1630735,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 489,
  'external_parallel_slot_duration': 479,
  'photon_collecting_duration': 450.944},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 5,
  'pointing_sequence_number': 5,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 5,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 210.2393867,
  'ideal_y_position': 146.6340362,
  'implicit_exposure': 'N',
  'max_data_rate': 1.382979238591763,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -297.9658416,
  'oss_ideal_y_position': 147.5589496,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16272750005,
  'dec_center_rotation': 19.19051900439,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.11525735173 19.1730900005 124.11592179785 19.20885278094 124.21006416734 19.20821551467 124.21160703141 19.17251444767 ',
  'v2': -212.1966887,
  'v3': -346.2612537,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 489,
  'external_parallel_slot_duration': 479,
  'photon_collecting_duration': 450.944},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 6,
  'pointing_sequence_number': 6,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 6,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 210.8375853,
  'ideal_y_position': 147.2322366,
  'implicit_exposure': 'N',
  'max_data_rate': 1.382979238591763,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -298.5634042,
  'oss_ideal_y_position': 148.1577874,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16290338026,
  'dec_center_rotation': 19.19035277827,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.11543326204 19.17292382003 124.11609774578 19.20868659983 124.21024001933 19.20804924366 124.21178284362 19.1723481752 ',
  'v2': -212.7948873,
  'v3': -345.6630533,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 489,
  'external_parallel_slot_duration': 479,
  'photon_collecting_duration': 450.944},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 1,
  'pointing_sequence_number': 7,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'DIRECT_IMAGE',
  'data_volume_mib': 240.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 210.8375853,
  'ideal_y_position': 147.2322366,
  'implicit_exposure': 'N',
  'max_data_rate': 3.686381703715363,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 2,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -298.5634042,
  'oss_ideal_y_position': 148.1577874,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16290338026,
  'dec_center_rotation': 19.19035277827,
  'readout_pattern': 'SHALLOW2',
  'region_shape': 'POLYGON ICRS 124.11543326204 19.17292382003 124.11609774578 19.20868659983 124.21024001933 19.20804924366 124.21178284362 19.1723481752 ',
  'v2': -212.7948873,
  'v3': -345.6630533,
  'dark_parallel_slot_duration': 104,
  'exposure_duration': 145,
  'external_parallel_slot_duration': 104,
  'photon_collecting_duration': 75.157},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 1,
  'pointing_sequence_number': 8,
  'exposure_spec_order_number': 3,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 195.2393499,
  'ideal_y_position': 161.6339964,
  'implicit_exposure': 'N',
  'max_data_rate': 1.2158389236621594,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -282.9498456,
  'oss_ideal_y_position': 162.5429548,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.15831422025,
  'dec_center_rotation': 19.18635378609,
  'readout_pattern': 'MEDIUM8',
  'region_shape': 'POLYGON ICRS 124.11084573987 19.16892362511 124.11150920869 19.20468642146 124.20564920819 19.20405141095 124.20719299245 19.16835038095 ',
  'v2': -197.1966519,
  'v3': -331.2612935,
  'dark_parallel_slot_duration': 3592,
  'exposure_duration': 585,
  'external_parallel_slot_duration': 544,
  'photon_collecting_duration': 515.365},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 2,
  'pointing_sequence_number': 9,
  'exposure_spec_order_number': 3,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 195.8375486,
  'ideal_y_position': 162.2321967,
  'implicit_exposure': 'N',
  'max_data_rate': 1.2158389236621594,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -283.5474083,
  'oss_ideal_y_position': 163.1417926,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.1584901005,
  'dec_center_rotation': 19.18618756425,
  'readout_pattern': 'MEDIUM8',
  'region_shape': 'POLYGON ICRS 124.11102165018 19.16875744885 124.11168515662 19.20452024456 124.20582506019 19.20388514416 124.20736880468 19.16818411269 ',
  'v2': -197.7948506,
  'v3': -330.6630932,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 554,
  'external_parallel_slot_duration': 544,
  'photon_collecting_duration': 515.365},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 3,
  'pointing_sequence_number': 10,
  'exposure_spec_order_number': 3,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 3,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 202.7393679,
  'ideal_y_position': 154.134016,
  'implicit_exposure': 'N',
  'max_data_rate': 1.2158389236621594,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -290.4578435,
  'oss_ideal_y_position': 155.0509523,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16052083209,
  'dec_center_rotation': 19.18843640868,
  'readout_pattern': 'MEDIUM8',
  'region_shape': 'POLYGON ICRS 124.11305151783 19.17100682602 124.11371547529 19.20676961441 124.20785665979 19.20613347604 124.20939998396 19.17043242754 ',
  'v2': -204.6966699,
  'v3': -338.7612739,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 554,
  'external_parallel_slot_duration': 544,
  'photon_collecting_duration': 515.365},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 4,
  'pointing_sequence_number': 11,
  'exposure_spec_order_number': 3,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 4,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 203.3375666,
  'ideal_y_position': 154.7322164,
  'implicit_exposure': 'N',
  'max_data_rate': 1.2158389236621594,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -291.0554061,
  'oss_ideal_y_position': 155.6497901,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16069671232,
  'dec_center_rotation': 19.18827018469,
  'readout_pattern': 'MEDIUM8',
  'region_shape': 'POLYGON ICRS 124.11322742814 19.17084064765 124.11389142322 19.20660343541 124.20803251178 19.20596720714 124.20957579618 19.17026615717 ',
  'v2': -205.2948686,
  'v3': -338.1630735,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 554,
  'external_parallel_slot_duration': 544,
  'photon_collecting_duration': 515.365},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 5,
  'pointing_sequence_number': 12,
  'exposure_spec_order_number': 3,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 5,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 210.2393867,
  'ideal_y_position': 146.6340362,
  'implicit_exposure': 'N',
  'max_data_rate': 1.2158389236621594,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -297.9658416,
  'oss_ideal_y_position': 147.5589496,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16272750005,
  'dec_center_rotation': 19.19051900439,
  'readout_pattern': 'MEDIUM8',
  'region_shape': 'POLYGON ICRS 124.11525735173 19.1730900005 124.11592179785 19.20885278094 124.21006416734 19.20821551467 124.21160703141 19.17251444767 ',
  'v2': -212.1966887,
  'v3': -346.2612537,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 554,
  'external_parallel_slot_duration': 544,
  'photon_collecting_duration': 515.365},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 6,
  'pointing_sequence_number': 13,
  'exposure_spec_order_number': 3,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 6,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 210.8375853,
  'ideal_y_position': 147.2322366,
  'implicit_exposure': 'N',
  'max_data_rate': 1.2158389236621594,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -298.5634042,
  'oss_ideal_y_position': 148.1577874,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16290338026,
  'dec_center_rotation': 19.19035277827,
  'readout_pattern': 'MEDIUM8',
  'region_shape': 'POLYGON ICRS 124.11543326204 19.17292382003 124.11609774578 19.20868659983 124.21024001933 19.20804924366 124.21178284362 19.1723481752 ',
  'v2': -212.7948873,
  'v3': -345.6630533,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 554,
  'external_parallel_slot_duration': 544,
  'photon_collecting_duration': 515.365},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 1,
  'pointing_sequence_number': 14,
  'exposure_spec_order_number': 4,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'DIRECT_IMAGE',
  'data_volume_mib': 240.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 210.8375853,
  'ideal_y_position': 147.2322366,
  'implicit_exposure': 'N',
  'max_data_rate': 3.686381703715363,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 2,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -298.5634042,
  'oss_ideal_y_position': 148.1577874,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16290338026,
  'dec_center_rotation': 19.19035277827,
  'readout_pattern': 'SHALLOW2',
  'region_shape': 'POLYGON ICRS 124.11543326204 19.17292382003 124.11609774578 19.20868659983 124.21024001933 19.20804924366 124.21178284362 19.1723481752 ',
  'v2': -212.7948873,
  'v3': -345.6630533,
  'dark_parallel_slot_duration': 104,
  'exposure_duration': 145,
  'external_parallel_slot_duration': 104,
  'photon_collecting_duration': 75.157},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 1,
  'pointing_sequence_number': 15,
  'exposure_spec_order_number': 5,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'OUT_OF_FIELD',
  'data_volume_mib': 240.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 186.9893548,
  'ideal_y_position': 158.8939869,
  'implicit_exposure': 'N',
  'max_data_rate': 3.686381703715363,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 2,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -274.702763,
  'oss_ideal_y_position': 159.7941582,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.15588803865,
  'dec_center_rotation': 19.18711564342,
  'readout_pattern': 'SHALLOW2',
  'region_shape': 'POLYGON ICRS 124.10841958858 19.16968485138 124.10908253228 19.20544765646 124.20322297776 19.20481388606 124.20476729637 19.16911287639 ',
  'v2': -188.9466568,
  'v3': -334.001303,
  'dark_parallel_slot_duration': 279,
  'exposure_duration': 145,
  'external_parallel_slot_duration': 104,
  'photon_collecting_duration': 75.157},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 2,
  'pointing_sequence_number': 16,
  'exposure_spec_order_number': 5,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMR_WFSS',
  'apt_label': 'OUT_OF_FIELD',
  'data_volume_mib': 240.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 210.9893568,
  'ideal_y_position': 158.8940244,
  'implicit_exposure': 'N',
  'max_data_rate': 3.686381703715363,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 2,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -298.7027735,
  'oss_ideal_y_position': 159.8197489,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16294679839,
  'dec_center_rotation': 19.18711337958,
  'readout_pattern': 'SHALLOW2',
  'region_shape': 'POLYGON ICRS 124.11547761737 19.16968442762 124.11614209767 19.20544720726 124.21028251454 19.2048098289 124.21182529918 19.16910876008 ',
  'v2': -212.9466588,
  'v3': -334.0012655,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 114,
  'external_parallel_slot_duration': 104,
  'photon_collecting_duration': 75.157},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 1,
  'pointing_sequence_number': 17,
  'exposure_spec_order_number': 6,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 195.2393499,
  'ideal_y_position': 161.6339964,
  'implicit_exposure': 'N',
  'max_data_rate': 1.382979238591763,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -282.9498456,
  'oss_ideal_y_position': 162.5429548,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.15831422025,
  'dec_center_rotation': 19.18635378609,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.11337600412 19.1650801654 124.11394308064 19.214065404 124.20280894265 19.21326400595 124.20331645007 19.16512696611 ',
  'v2': -197.1966519,
  'v3': -331.2612935,
  'dark_parallel_slot_duration': 3202,
  'exposure_duration': 520,
  'external_parallel_slot_duration': 479,
  'photon_collecting_duration': 450.944},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 2,
  'pointing_sequence_number': 18,
  'exposure_spec_order_number': 6,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 195.8375486,
  'ideal_y_position': 162.2321967,
  'implicit_exposure': 'N',
  'max_data_rate': 1.382979238591763,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -283.5474083,
  'oss_ideal_y_position': 163.1417926,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.1584901005,
  'dec_center_rotation': 19.18618756425,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.11355190775 19.16491398673 124.11411903616 19.21389922478 124.20298480738 19.21309774187 124.20349226277 19.16496070155 ',
  'v2': -197.7948506,
  'v3': -330.6630932,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 489,
  'external_parallel_slot_duration': 479,
  'photon_collecting_duration': 450.944},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 3,
  'pointing_sequence_number': 19,
  'exposure_spec_order_number': 6,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 3,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 202.7393679,
  'ideal_y_position': 154.134016,
  'implicit_exposure': 'N',
  'max_data_rate': 1.382979238591763,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -290.4578435,
  'oss_ideal_y_position': 155.0509523,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16052083209,
  'dec_center_rotation': 19.18843640868,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.11558176257 19.167163336 124.11614950409 19.2161485678 124.20501648205 19.21534610507 124.20552334916 19.16720905916 ',
  'v2': -204.6966699,
  'v3': -338.7612739,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 489,
  'external_parallel_slot_duration': 479,
  'photon_collecting_duration': 450.944},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 4,
  'pointing_sequence_number': 20,
  'exposure_spec_order_number': 6,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 4,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 203.3375666,
  'ideal_y_position': 154.7322164,
  'implicit_exposure': 'N',
  'max_data_rate': 1.382979238591763,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -291.0554061,
  'oss_ideal_y_position': 155.6497901,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16069671232,
  'dec_center_rotation': 19.18827018469,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.1157576662 19.16699715522 124.1163254596 19.21598238648 124.20519234678 19.21517983888 124.20569916185 19.16704279249 ',
  'v2': -205.2948686,
  'v3': -338.1630735,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 489,
  'external_parallel_slot_duration': 479,
  'photon_collecting_duration': 450.944},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 5,
  'pointing_sequence_number': 21,
  'exposure_spec_order_number': 6,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 5,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 210.2393867,
  'ideal_y_position': 146.6340362,
  'implicit_exposure': 'N',
  'max_data_rate': 1.382979238591763,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -297.9658416,
  'oss_ideal_y_position': 147.5589496,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16272750005,
  'dec_center_rotation': 19.19051900439,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.11778757694 19.16924648018 124.11835598349 19.21823170518 124.20722407742 19.21742817773 124.20773030418 19.16929112575 ',
  'v2': -212.1966887,
  'v3': -346.2612537,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 489,
  'external_parallel_slot_duration': 479,
  'photon_collecting_duration': 450.944},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 6,
  'pointing_sequence_number': 22,
  'exposure_spec_order_number': 6,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 6,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 210.8375853,
  'ideal_y_position': 147.2322366,
  'implicit_exposure': 'N',
  'max_data_rate': 1.382979238591763,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -298.5634042,
  'oss_ideal_y_position': 148.1577874,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16290338026,
  'dec_center_rotation': 19.19035277827,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.11796348058 19.16908029729 124.11853193901 19.21806552174 124.20739994214 19.21726190944 124.20790611687 19.16912485697 ',
  'v2': -212.7948873,
  'v3': -345.6630533,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 489,
  'external_parallel_slot_duration': 479,
  'photon_collecting_duration': 450.944},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 1,
  'pointing_sequence_number': 23,
  'exposure_spec_order_number': 7,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'DIRECT_IMAGE',
  'data_volume_mib': 240.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 210.8375853,
  'ideal_y_position': 147.2322366,
  'implicit_exposure': 'N',
  'max_data_rate': 3.686381703715363,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 2,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -298.5634042,
  'oss_ideal_y_position': 148.1577874,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16290338026,
  'dec_center_rotation': 19.19035277827,
  'readout_pattern': 'SHALLOW2',
  'region_shape': 'POLYGON ICRS 124.11796348058 19.16908029729 124.11853193901 19.21806552174 124.20739994214 19.21726190944 124.20790611687 19.16912485697 ',
  'v2': -212.7948873,
  'v3': -345.6630533,
  'dark_parallel_slot_duration': 104,
  'exposure_duration': 145,
  'external_parallel_slot_duration': 104,
  'photon_collecting_duration': 75.157},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 1,
  'pointing_sequence_number': 24,
  'exposure_spec_order_number': 8,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 195.2393499,
  'ideal_y_position': 161.6339964,
  'implicit_exposure': 'N',
  'max_data_rate': 1.2158389236621594,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -282.9498456,
  'oss_ideal_y_position': 162.5429548,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.15831422025,
  'dec_center_rotation': 19.18635378609,
  'readout_pattern': 'MEDIUM8',
  'region_shape': 'POLYGON ICRS 124.11337600412 19.1650801654 124.11394308064 19.214065404 124.20280894265 19.21326400595 124.20331645007 19.16512696611 ',
  'v2': -197.1966519,
  'v3': -331.2612935,
  'dark_parallel_slot_duration': 3592,
  'exposure_duration': 585,
  'external_parallel_slot_duration': 544,
  'photon_collecting_duration': 515.365},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 2,
  'pointing_sequence_number': 25,
  'exposure_spec_order_number': 8,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 195.8375486,
  'ideal_y_position': 162.2321967,
  'implicit_exposure': 'N',
  'max_data_rate': 1.2158389236621594,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -283.5474083,
  'oss_ideal_y_position': 163.1417926,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.1584901005,
  'dec_center_rotation': 19.18618756425,
  'readout_pattern': 'MEDIUM8',
  'region_shape': 'POLYGON ICRS 124.11355190775 19.16491398673 124.11411903616 19.21389922478 124.20298480738 19.21309774187 124.20349226277 19.16496070155 ',
  'v2': -197.7948506,
  'v3': -330.6630932,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 554,
  'external_parallel_slot_duration': 544,
  'photon_collecting_duration': 515.365},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 3,
  'pointing_sequence_number': 26,
  'exposure_spec_order_number': 8,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 3,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 202.7393679,
  'ideal_y_position': 154.134016,
  'implicit_exposure': 'N',
  'max_data_rate': 1.2158389236621594,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -290.4578435,
  'oss_ideal_y_position': 155.0509523,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16052083209,
  'dec_center_rotation': 19.18843640868,
  'readout_pattern': 'MEDIUM8',
  'region_shape': 'POLYGON ICRS 124.11558176257 19.167163336 124.11614950409 19.2161485678 124.20501648205 19.21534610507 124.20552334916 19.16720905916 ',
  'v2': -204.6966699,
  'v3': -338.7612739,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 554,
  'external_parallel_slot_duration': 544,
  'photon_collecting_duration': 515.365},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 4,
  'pointing_sequence_number': 27,
  'exposure_spec_order_number': 8,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 4,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 203.3375666,
  'ideal_y_position': 154.7322164,
  'implicit_exposure': 'N',
  'max_data_rate': 1.2158389236621594,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -291.0554061,
  'oss_ideal_y_position': 155.6497901,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16069671232,
  'dec_center_rotation': 19.18827018469,
  'readout_pattern': 'MEDIUM8',
  'region_shape': 'POLYGON ICRS 124.1157576662 19.16699715522 124.1163254596 19.21598238648 124.20519234678 19.21517983888 124.20569916185 19.16704279249 ',
  'v2': -205.2948686,
  'v3': -338.1630735,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 554,
  'external_parallel_slot_duration': 544,
  'photon_collecting_duration': 515.365},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 5,
  'pointing_sequence_number': 28,
  'exposure_spec_order_number': 8,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 5,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 210.2393867,
  'ideal_y_position': 146.6340362,
  'implicit_exposure': 'N',
  'max_data_rate': 1.2158389236621594,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -297.9658416,
  'oss_ideal_y_position': 147.5589496,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16272750005,
  'dec_center_rotation': 19.19051900439,
  'readout_pattern': 'MEDIUM8',
  'region_shape': 'POLYGON ICRS 124.11778757694 19.16924648018 124.11835598349 19.21823170518 124.20722407742 19.21742817773 124.20773030418 19.16929112575 ',
  'v2': -212.1966887,
  'v3': -346.2612537,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 554,
  'external_parallel_slot_duration': 544,
  'photon_collecting_duration': 515.365},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 6,
  'pointing_sequence_number': 29,
  'exposure_spec_order_number': 8,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 480.0,
  'dither_point_index': 6,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 210.8375853,
  'ideal_y_position': 147.2322366,
  'implicit_exposure': 'N',
  'max_data_rate': 1.2158389236621594,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -298.5634042,
  'oss_ideal_y_position': 148.1577874,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16290338026,
  'dec_center_rotation': 19.19035277827,
  'readout_pattern': 'MEDIUM8',
  'region_shape': 'POLYGON ICRS 124.11796348058 19.16908029729 124.11853193901 19.21806552174 124.20739994214 19.21726190944 124.20790611687 19.16912485697 ',
  'v2': -212.7948873,
  'v3': -345.6630533,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 554,
  'external_parallel_slot_duration': 544,
  'photon_collecting_duration': 515.365},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 1,
  'pointing_sequence_number': 30,
  'exposure_spec_order_number': 9,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'DIRECT_IMAGE',
  'data_volume_mib': 240.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 210.8375853,
  'ideal_y_position': 147.2322366,
  'implicit_exposure': 'N',
  'max_data_rate': 3.686381703715363,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 2,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -298.5634042,
  'oss_ideal_y_position': 148.1577874,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16290338026,
  'dec_center_rotation': 19.19035277827,
  'readout_pattern': 'SHALLOW2',
  'region_shape': 'POLYGON ICRS 124.11796348058 19.16908029729 124.11853193901 19.21806552174 124.20739994214 19.21726190944 124.20790611687 19.16912485697 ',
  'v2': -212.7948873,
  'v3': -345.6630533,
  'dark_parallel_slot_duration': 104,
  'exposure_duration': 145,
  'external_parallel_slot_duration': 104,
  'photon_collecting_duration': 75.157},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 1,
  'pointing_sequence_number': 31,
  'exposure_spec_order_number': 10,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'OUT_OF_FIELD',
  'data_volume_mib': 240.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 201.319331,
  'ideal_y_position': 169.8839965,
  'implicit_exposure': 'N',
  'max_data_rate': 3.686381703715363,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 2,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -289.0210543,
  'oss_ideal_y_position': 170.7994373,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.1601016014,
  'dec_center_rotation': 19.18406155181,
  'readout_pattern': 'SHALLOW2',
  'region_shape': 'POLYGON ICRS 124.11516378891 19.16278836885 124.11573139067 19.21177360194 124.20459600385 19.21097134148 124.20510298065 19.16283429673 ',
  'v2': -203.276633,
  'v3': -323.0112934,
  'dark_parallel_slot_duration': 494,
  'exposure_duration': 145,
  'external_parallel_slot_duration': 104,
  'photon_collecting_duration': 75.157},
 {'program': 0,
  'observation': 3,
  'visit': 2,
  'exposure': 2,
  'pointing_sequence_number': 32,
  'exposure_spec_order_number': 10,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_GRISMC_WFSS',
  'apt_label': 'OUT_OF_FIELD',
  'data_volume_mib': 240.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 201.3194407,
  'ideal_y_position': 122.8840428,
  'implicit_exposure': 'N',
  'max_data_rate': 3.686381703715363,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 2,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -289.0711536,
  'oss_ideal_y_position': 123.79944,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16010632965,
  'dec_center_rotation': 19.19711708753,
  'readout_pattern': 'SHALLOW2',
  'region_shape': 'POLYGON ICRS 124.11516492302 19.17584392436 124.11573257022 19.22482915745 124.20460424689 19.22402689472 124.20511126157 19.17588984994 ',
  'v2': -203.2767427,
  'v3': -370.0112471,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 114,
  'external_parallel_slot_duration': 104,
  'photon_collecting_duration': 75.157},
 {'program': 0,
  'observation': 4,
  'visit': 1,
  'exposure': 0,
  'pointing_sequence_number': 0,
  'exposure_spec_order_number': 0,
  'target_id': 1,
  'target_order_number': 0,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'BASE',
  'dither_point_index': 0,
  'ideal_x_position': -57.0500978,
  'ideal_y_position': -89.1543799,
  'max_data_rate': 2.3005486156451145,
  'mosaic_tile_order_number': 0,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -30.8120286,
  'oss_ideal_y_position': -88.4399871,
  'pointing_type': 'BASE',
  'v2': 55.2087919,
  'v3': -581.9753373,
  'dark_parallel_slot_duration': 0,
  'external_parallel_slot_duration': 0},
 {'program': 0,
  'observation': 4,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 1,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -57.0500978,
  'ideal_y_position': -89.1543799,
  'implicit_exposure': 'N',
  'max_data_rate': 2.3005486156451145,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -30.8120286,
  'oss_ideal_y_position': -88.4399871,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.08407121205,
  'dec_center_rotation': 19.25600479473,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.12967848403 19.23754002438 124.03896019416 19.23816248957 124.03945469375 19.27459103494 124.12907612046 19.27401026205 ',
  'v2': 55.2087919,
  'v3': -581.9753373,
  'dark_parallel_slot_duration': 746,
  'exposure_duration': 381,
  'external_parallel_slot_duration': 340,
  'photon_collecting_duration': 311.366},
 {'program': 0,
  'observation': 4,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 2,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -56.8238968,
  'ideal_y_position': -88.9884801,
  'implicit_exposure': 'N',
  'max_data_rate': 2.3005486156451145,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -31.0382677,
  'oss_ideal_y_position': -88.2741405,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.08413783722,
  'dec_center_rotation': 19.2559587994,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.12974508883 19.23749401245 124.03902682461 19.23811651045 124.03952133885 19.27454505563 124.12914274022 19.27396425033 ',
  'v2': 54.9823752,
  'v3': -581.809732,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 350,
  'external_parallel_slot_duration': 340,
  'photon_collecting_duration': 311.366},
 {'program': 0,
  'observation': 4,
  'visit': 2,
  'exposure': 0,
  'pointing_sequence_number': 0,
  'exposure_spec_order_number': 0,
  'target_id': 1,
  'target_order_number': 0,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'BASE',
  'dither_point_index': 0,
  'ideal_x_position': 0.950126,
  'ideal_y_position': -65.6544053,
  'max_data_rate': 2.3005486156451145,
  'mosaic_tile_order_number': 0,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -88.8175689,
  'oss_ideal_y_position': -64.953665,
  'pointing_type': 'BASE',
  'v2': -2.8219706,
  'v3': -558.5508764,
  'dark_parallel_slot_duration': 0,
  'external_parallel_slot_duration': 0},
 {'program': 0,
  'observation': 4,
  'visit': 2,
  'exposure': 1,
  'pointing_sequence_number': 1,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 3,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 0.950126,
  'ideal_y_position': -65.6544053,
  'implicit_exposure': 'N',
  'max_data_rate': 2.3005486156451145,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -88.8175689,
  'oss_ideal_y_position': -64.953665,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10114607521,
  'dec_center_rotation': 19.24949877382,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.14674960146 19.2310297641 124.05603497031 19.23166063599 124.0565332383 19.26808913535 124.14615105327 19.26750005741 ',
  'v2': -2.8219706,
  'v3': -558.5508764,
  'dark_parallel_slot_duration': 746,
  'exposure_duration': 381,
  'external_parallel_slot_duration': 340,
  'photon_collecting_duration': 311.366},
 {'program': 0,
  'observation': 4,
  'visit': 2,
  'exposure': 2,
  'pointing_sequence_number': 2,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 4,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 1.1763268,
  'ideal_y_position': -65.4885053,
  'implicit_exposure': 'N',
  'max_data_rate': 2.3005486156451145,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -89.0438081,
  'oss_ideal_y_position': -64.7878183,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10121269291,
  'dec_center_rotation': 19.24945277221,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.14681619883 19.230983746 124.05610159335 19.23161465069 124.05659987598 19.26804314987 124.1462176656 19.26745403952 ',
  'v2': -3.0483872,
  'v3': -558.3852709,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 350,
  'external_parallel_slot_duration': 340,
  'photon_collecting_duration': 311.366},
 {'program': 0,
  'observation': 4,
  'visit': 3,
  'exposure': 0,
  'pointing_sequence_number': 0,
  'exposure_spec_order_number': 0,
  'target_id': 1,
  'target_order_number': 0,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'BASE',
  'dither_point_index': 0,
  'ideal_x_position': 58.9503182,
  'ideal_y_position': -42.1543849,
  'max_data_rate': 2.3005486156451145,
  'mosaic_tile_order_number': 0,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -146.8231232,
  'oss_ideal_y_position': -41.4673372,
  'pointing_type': 'BASE',
  'v2': -60.8527016,
  'v3': -535.1263696,
  'dark_parallel_slot_duration': 0,
  'external_parallel_slot_duration': 0},
 {'program': 0,
  'observation': 4,
  'visit': 3,
  'exposure': 1,
  'pointing_sequence_number': 1,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 5,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 58.9503182,
  'ideal_y_position': -42.1543849,
  'implicit_exposure': 'N',
  'max_data_rate': 2.3005486156451145,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -146.8231232,
  'oss_ideal_y_position': -41.4673372,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.11821957483,
  'dec_center_rotation': 19.24299114568,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.16381936544 19.22451792211 124.07310839447 19.22515720001 124.07361043026 19.26158565302 124.16322463204 19.26098827069 ',
  'v2': -60.8527016,
  'v3': -535.1263696,
  'dark_parallel_slot_duration': 746,
  'exposure_duration': 381,
  'external_parallel_slot_duration': 340,
  'photon_collecting_duration': 311.366},
 {'program': 0,
  'observation': 4,
  'visit': 3,
  'exposure': 2,
  'pointing_sequence_number': 2,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 6,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 59.1765189,
  'ideal_y_position': -41.9884847,
  'implicit_exposure': 'N',
  'max_data_rate': 2.3005486156451145,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -147.0493624,
  'oss_ideal_y_position': -41.3014905,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.11828618504,
  'dec_center_rotation': 19.2429451378,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.1638859554 19.22447189784 124.07317501009 19.22511120854 124.07367706052 19.26153966137 124.16329123695 19.26094224663 ',
  'v2': -61.079118,
  'v3': -534.960764,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 350,
  'external_parallel_slot_duration': 340,
  'photon_collecting_duration': 311.366},
 {'program': 0,
  'observation': 4,
  'visit': 4,
  'exposure': 0,
  'pointing_sequence_number': 0,
  'exposure_spec_order_number': 0,
  'target_id': 1,
  'target_order_number': 0,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'BASE',
  'dither_point_index': 0,
  'ideal_x_position': -57.0500978,
  'ideal_y_position': -89.1543799,
  'max_data_rate': 1.3100086503651593,
  'mosaic_tile_order_number': 0,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -30.8120286,
  'oss_ideal_y_position': -88.4399871,
  'pointing_type': 'BASE',
  'v2': 55.2087919,
  'v3': -581.9753373,
  'dark_parallel_slot_duration': 0,
  'external_parallel_slot_duration': 0},
 {'program': 0,
  'observation': 4,
  'visit': 4,
  'exposure': 1,
  'pointing_sequence_number': 1,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -57.0500978,
  'ideal_y_position': -89.1543799,
  'implicit_exposure': 'N',
  'max_data_rate': 1.3100086503651593,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -30.8120286,
  'oss_ideal_y_position': -88.4399871,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.08407121205,
  'dec_center_rotation': 19.25600479473,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.12967848403 19.23754002438 124.03896019416 19.23816248957 124.03945469375 19.27459103494 124.12907612046 19.27401026205 ',
  'v2': 55.2087919,
  'v3': -581.9753373,
  'dark_parallel_slot_duration': 1240,
  'exposure_duration': 628,
  'external_parallel_slot_duration': 587,
  'photon_collecting_duration': 558.312},
 {'program': 0,
  'observation': 4,
  'visit': 4,
  'exposure': 2,
  'pointing_sequence_number': 2,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -56.8238968,
  'ideal_y_position': -88.9884801,
  'implicit_exposure': 'N',
  'max_data_rate': 1.3100086503651593,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -31.0382677,
  'oss_ideal_y_position': -88.2741405,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.08413783722,
  'dec_center_rotation': 19.2559587994,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.12974508883 19.23749401245 124.03902682461 19.23811651045 124.03952133885 19.27454505563 124.12914274022 19.27396425033 ',
  'v2': 54.9823752,
  'v3': -581.809732,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 597,
  'external_parallel_slot_duration': 587,
  'photon_collecting_duration': 558.312},
 {'program': 0,
  'observation': 4,
  'visit': 5,
  'exposure': 0,
  'pointing_sequence_number': 0,
  'exposure_spec_order_number': 0,
  'target_id': 1,
  'target_order_number': 0,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'BASE',
  'dither_point_index': 0,
  'ideal_x_position': 0.950126,
  'ideal_y_position': -65.6544053,
  'max_data_rate': 1.3100086503651593,
  'mosaic_tile_order_number': 0,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -88.8175689,
  'oss_ideal_y_position': -64.953665,
  'pointing_type': 'BASE',
  'v2': -2.8219706,
  'v3': -558.5508764,
  'dark_parallel_slot_duration': 0,
  'external_parallel_slot_duration': 0},
 {'program': 0,
  'observation': 4,
  'visit': 5,
  'exposure': 1,
  'pointing_sequence_number': 1,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 3,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 0.950126,
  'ideal_y_position': -65.6544053,
  'implicit_exposure': 'N',
  'max_data_rate': 1.3100086503651593,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -88.8175689,
  'oss_ideal_y_position': -64.953665,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10114607521,
  'dec_center_rotation': 19.24949877382,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.14674960146 19.2310297641 124.05603497031 19.23166063599 124.0565332383 19.26808913535 124.14615105327 19.26750005741 ',
  'v2': -2.8219706,
  'v3': -558.5508764,
  'dark_parallel_slot_duration': 1240,
  'exposure_duration': 628,
  'external_parallel_slot_duration': 587,
  'photon_collecting_duration': 558.312},
 {'program': 0,
  'observation': 4,
  'visit': 5,
  'exposure': 2,
  'pointing_sequence_number': 2,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 4,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 1.1763268,
  'ideal_y_position': -65.4885053,
  'implicit_exposure': 'N',
  'max_data_rate': 1.3100086503651593,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -89.0438081,
  'oss_ideal_y_position': -64.7878183,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10121269291,
  'dec_center_rotation': 19.24945277221,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.14681619883 19.230983746 124.05610159335 19.23161465069 124.05659987598 19.26804314987 124.1462176656 19.26745403952 ',
  'v2': -3.0483872,
  'v3': -558.3852709,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 597,
  'external_parallel_slot_duration': 587,
  'photon_collecting_duration': 558.312},
 {'program': 0,
  'observation': 4,
  'visit': 6,
  'exposure': 0,
  'pointing_sequence_number': 0,
  'exposure_spec_order_number': 0,
  'target_id': 1,
  'target_order_number': 0,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'BASE',
  'dither_point_index': 0,
  'ideal_x_position': 58.9503182,
  'ideal_y_position': -42.1543849,
  'max_data_rate': 1.3100086503651593,
  'mosaic_tile_order_number': 0,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -146.8231232,
  'oss_ideal_y_position': -41.4673372,
  'pointing_type': 'BASE',
  'v2': -60.8527016,
  'v3': -535.1263696,
  'dark_parallel_slot_duration': 0,
  'external_parallel_slot_duration': 0},
 {'program': 0,
  'observation': 4,
  'visit': 6,
  'exposure': 1,
  'pointing_sequence_number': 1,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 5,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 58.9503182,
  'ideal_y_position': -42.1543849,
  'implicit_exposure': 'N',
  'max_data_rate': 1.3100086503651593,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -146.8231232,
  'oss_ideal_y_position': -41.4673372,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.11821957483,
  'dec_center_rotation': 19.24299114568,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.16381936544 19.22451792211 124.07310839447 19.22515720001 124.07361043026 19.26158565302 124.16322463204 19.26098827069 ',
  'v2': -60.8527016,
  'v3': -535.1263696,
  'dark_parallel_slot_duration': 1240,
  'exposure_duration': 628,
  'external_parallel_slot_duration': 587,
  'photon_collecting_duration': 558.312},
 {'program': 0,
  'observation': 4,
  'visit': 6,
  'exposure': 2,
  'pointing_sequence_number': 2,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 6,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 59.1765189,
  'ideal_y_position': -41.9884847,
  'implicit_exposure': 'N',
  'max_data_rate': 1.3100086503651593,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -147.0493624,
  'oss_ideal_y_position': -41.3014905,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.11828618504,
  'dec_center_rotation': 19.2429451378,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.1638859554 19.22447189784 124.07317501009 19.22511120854 124.07367706052 19.26153966137 124.16329123695 19.26094224663 ',
  'v2': -61.079118,
  'v3': -534.960764,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 597,
  'external_parallel_slot_duration': 587,
  'photon_collecting_duration': 558.312},
 {'program': 0,
  'observation': 4,
  'visit': 7,
  'exposure': 0,
  'pointing_sequence_number': 0,
  'exposure_spec_order_number': 0,
  'target_id': 1,
  'target_order_number': 0,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'BASE',
  'dither_point_index': 0,
  'ideal_x_position': -58.9502607,
  'ideal_y_position': 42.1544251,
  'max_data_rate': 2.3005486156451145,
  'mosaic_tile_order_number': 0,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -28.942728,
  'oss_ideal_y_position': 42.8692683,
  'pointing_type': 'BASE',
  'v2': 56.93804,
  'v3': -450.6641701,
  'dark_parallel_slot_duration': 0,
  'external_parallel_slot_duration': 0},
 {'program': 0,
  'observation': 4,
  'visit': 7,
  'exposure': 1,
  'pointing_sequence_number': 1,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -58.9502607,
  'ideal_y_position': 42.1544251,
  'implicit_exposure': 'N',
  'max_data_rate': 2.3005486156451145,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -28.942728,
  'oss_ideal_y_position': 42.8692683,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.08356625053,
  'dec_center_rotation': 19.21952942465,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.1291634255 19.20106477664 124.03846527699 19.20168699317 124.03895955698 19.23811553987 124.12856108134 19.23753501262 ',
  'v2': 56.93804,
  'v3': -450.6641701,
  'dark_parallel_slot_duration': 746,
  'exposure_duration': 381,
  'external_parallel_slot_duration': 340,
  'photon_collecting_duration': 311.366},
 {'program': 0,
  'observation': 4,
  'visit': 7,
  'exposure': 2,
  'pointing_sequence_number': 2,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -58.72406,
  'ideal_y_position': 42.320325,
  'implicit_exposure': 'N',
  'max_data_rate': 2.3005486156451145,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -29.1689671,
  'oss_ideal_y_position': 43.035115,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.08363286093,
  'dec_center_rotation': 19.21948342948,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.12923001566 19.20101876489 124.03853189279 19.20164101422 124.03902618742 19.23806956074 124.12862768644 19.23748900109 ',
  'v2': 56.7116236,
  'v3': -450.4985648,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 350,
  'external_parallel_slot_duration': 340,
  'photon_collecting_duration': 311.366},
 {'program': 0,
  'observation': 4,
  'visit': 8,
  'exposure': 0,
  'pointing_sequence_number': 0,
  'exposure_spec_order_number': 0,
  'target_id': 1,
  'target_order_number': 0,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'BASE',
  'dither_point_index': 0,
  'ideal_x_position': -0.9501247,
  'ideal_y_position': 65.6544053,
  'max_data_rate': 2.3005486156451145,
  'mosaic_tile_order_number': 0,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -86.948268,
  'oss_ideal_y_position': 66.3556061,
  'pointing_type': 'BASE',
  'v2': -1.0926346,
  'v3': -427.2397035,
  'dark_parallel_slot_duration': 0,
  'external_parallel_slot_duration': 0},
 {'program': 0,
  'observation': 4,
  'visit': 8,
  'exposure': 1,
  'pointing_sequence_number': 1,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 3,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -0.9501247,
  'ideal_y_position': 65.6544053,
  'implicit_exposure': 'N',
  'max_data_rate': 2.3005486156451145,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -86.948268,
  'oss_ideal_y_position': 66.3556061,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10063731499,
  'dec_center_rotation': 19.21302344803,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.14623077301 19.19455456426 124.05553628154 19.19518518563 124.05603432828 19.23161368634 124.14563224254 19.23102485587 ',
  'v2': -1.0926346,
  'v3': -427.2397035,
  'dark_parallel_slot_duration': 746,
  'exposure_duration': 381,
  'external_parallel_slot_duration': 340,
  'photon_collecting_duration': 311.366},
 {'program': 0,
  'observation': 4,
  'visit': 8,
  'exposure': 2,
  'pointing_sequence_number': 2,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 4,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -0.7239242,
  'ideal_y_position': 65.8203053,
  'implicit_exposure': 'N',
  'max_data_rate': 2.3005486156451145,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -87.1745071,
  'oss_ideal_y_position': 66.5214529,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10070391793,
  'dec_center_rotation': 19.21297744661,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.14629735574 19.19450854635 124.05560288993 19.19513920051 124.05610095129 19.23156770104 124.14569884022 19.23097883818 ',
  'v2': -1.3190508,
  'v3': -427.0740981,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 350,
  'external_parallel_slot_duration': 340,
  'photon_collecting_duration': 311.366},
 {'program': 0,
  'observation': 4,
  'visit': 9,
  'exposure': 0,
  'pointing_sequence_number': 0,
  'exposure_spec_order_number': 0,
  'target_id': 1,
  'target_order_number': 0,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'BASE',
  'dither_point_index': 0,
  'ideal_x_position': 57.0499797,
  'ideal_y_position': 89.1544176,
  'max_data_rate': 2.3005486156451145,
  'mosaic_tile_order_number': 0,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -144.9538219,
  'oss_ideal_y_position': 89.8419497,
  'pointing_type': 'BASE',
  'v2': -59.1232779,
  'v3': -403.8152048,
  'dark_parallel_slot_duration': 0,
  'external_parallel_slot_duration': 0},
 {'program': 0,
  'observation': 4,
  'visit': 9,
  'exposure': 1,
  'pointing_sequence_number': 1,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 5,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 57.0499797,
  'ideal_y_position': 89.1544176,
  'implicit_exposure': 'N',
  'max_data_rate': 2.3005486156451145,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -144.9538219,
  'oss_ideal_y_position': 89.8419497,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.11770701905,
  'dec_center_rotation': 19.20651587118,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.16329676768 19.18804277051 124.07260593472 19.18868179605 124.07310774758 19.22511025043 124.16270205032 19.22451311741 ',
  'v2': -59.1232779,
  'v3': -403.8152048,
  'dark_parallel_slot_duration': 746,
  'exposure_duration': 381,
  'external_parallel_slot_duration': 340,
  'photon_collecting_duration': 311.366},
 {'program': 0,
  'observation': 4,
  'visit': 9,
  'exposure': 2,
  'pointing_sequence_number': 2,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 6,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 57.27618,
  'ideal_y_position': 89.3203177,
  'implicit_exposure': 'N',
  'max_data_rate': 2.3005486156451145,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -145.1800611,
  'oss_ideal_y_position': 90.0077964,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.11777361453,
  'dec_center_rotation': 19.20646986353,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.16336334299 19.18799674643 124.07267253569 19.18863580475 124.07317436318 19.22506425895 124.16276864058 19.22446709354 ',
  'v2': -59.349694,
  'v3': -403.6495993,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 350,
  'external_parallel_slot_duration': 340,
  'photon_collecting_duration': 311.366},
 {'program': 0,
  'observation': 4,
  'visit': 10,
  'exposure': 0,
  'pointing_sequence_number': 0,
  'exposure_spec_order_number': 0,
  'target_id': 1,
  'target_order_number': 0,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'BASE',
  'dither_point_index': 0,
  'ideal_x_position': -58.9502607,
  'ideal_y_position': 42.1544251,
  'max_data_rate': 1.3100086503651593,
  'mosaic_tile_order_number': 0,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -28.942728,
  'oss_ideal_y_position': 42.8692683,
  'pointing_type': 'BASE',
  'v2': 56.93804,
  'v3': -450.6641701,
  'dark_parallel_slot_duration': 0,
  'external_parallel_slot_duration': 0},
 {'program': 0,
  'observation': 4,
  'visit': 10,
  'exposure': 1,
  'pointing_sequence_number': 1,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -58.9502607,
  'ideal_y_position': 42.1544251,
  'implicit_exposure': 'N',
  'max_data_rate': 1.3100086503651593,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -28.942728,
  'oss_ideal_y_position': 42.8692683,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.08356625053,
  'dec_center_rotation': 19.21952942465,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.1291634255 19.20106477664 124.03846527699 19.20168699317 124.03895955698 19.23811553987 124.12856108134 19.23753501262 ',
  'v2': 56.93804,
  'v3': -450.6641701,
  'dark_parallel_slot_duration': 1240,
  'exposure_duration': 628,
  'external_parallel_slot_duration': 587,
  'photon_collecting_duration': 558.312},
 {'program': 0,
  'observation': 4,
  'visit': 10,
  'exposure': 2,
  'pointing_sequence_number': 2,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -58.72406,
  'ideal_y_position': 42.320325,
  'implicit_exposure': 'N',
  'max_data_rate': 1.3100086503651593,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -29.1689671,
  'oss_ideal_y_position': 43.035115,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.08363286093,
  'dec_center_rotation': 19.21948342948,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.12923001566 19.20101876489 124.03853189279 19.20164101422 124.03902618742 19.23806956074 124.12862768644 19.23748900109 ',
  'v2': 56.7116236,
  'v3': -450.4985648,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 597,
  'external_parallel_slot_duration': 587,
  'photon_collecting_duration': 558.312},
 {'program': 0,
  'observation': 4,
  'visit': 11,
  'exposure': 0,
  'pointing_sequence_number': 0,
  'exposure_spec_order_number': 0,
  'target_id': 1,
  'target_order_number': 0,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'BASE',
  'dither_point_index': 0,
  'ideal_x_position': -0.9501247,
  'ideal_y_position': 65.6544053,
  'max_data_rate': 1.3100086503651593,
  'mosaic_tile_order_number': 0,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -86.948268,
  'oss_ideal_y_position': 66.3556061,
  'pointing_type': 'BASE',
  'v2': -1.0926346,
  'v3': -427.2397035,
  'dark_parallel_slot_duration': 0,
  'external_parallel_slot_duration': 0},
 {'program': 0,
  'observation': 4,
  'visit': 11,
  'exposure': 1,
  'pointing_sequence_number': 1,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 3,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -0.9501247,
  'ideal_y_position': 65.6544053,
  'implicit_exposure': 'N',
  'max_data_rate': 1.3100086503651593,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -86.948268,
  'oss_ideal_y_position': 66.3556061,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10063731499,
  'dec_center_rotation': 19.21302344803,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.14623077301 19.19455456426 124.05553628154 19.19518518563 124.05603432828 19.23161368634 124.14563224254 19.23102485587 ',
  'v2': -1.0926346,
  'v3': -427.2397035,
  'dark_parallel_slot_duration': 1240,
  'exposure_duration': 628,
  'external_parallel_slot_duration': 587,
  'photon_collecting_duration': 558.312},
 {'program': 0,
  'observation': 4,
  'visit': 11,
  'exposure': 2,
  'pointing_sequence_number': 2,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 4,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -0.7239242,
  'ideal_y_position': 65.8203053,
  'implicit_exposure': 'N',
  'max_data_rate': 1.3100086503651593,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -87.1745071,
  'oss_ideal_y_position': 66.5214529,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10070391793,
  'dec_center_rotation': 19.21297744661,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.14629735574 19.19450854635 124.05560288993 19.19513920051 124.05610095129 19.23156770104 124.14569884022 19.23097883818 ',
  'v2': -1.3190508,
  'v3': -427.0740981,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 597,
  'external_parallel_slot_duration': 587,
  'photon_collecting_duration': 558.312},
 {'program': 0,
  'observation': 4,
  'visit': 12,
  'exposure': 0,
  'pointing_sequence_number': 0,
  'exposure_spec_order_number': 0,
  'target_id': 1,
  'target_order_number': 0,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'BASE',
  'dither_point_index': 0,
  'ideal_x_position': 57.0499797,
  'ideal_y_position': 89.1544176,
  'max_data_rate': 1.3100086503651593,
  'mosaic_tile_order_number': 0,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -144.9538219,
  'oss_ideal_y_position': 89.8419497,
  'pointing_type': 'BASE',
  'v2': -59.1232779,
  'v3': -403.8152048,
  'dark_parallel_slot_duration': 0,
  'external_parallel_slot_duration': 0},
 {'program': 0,
  'observation': 4,
  'visit': 12,
  'exposure': 1,
  'pointing_sequence_number': 1,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 5,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 57.0499797,
  'ideal_y_position': 89.1544176,
  'implicit_exposure': 'N',
  'max_data_rate': 1.3100086503651593,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -144.9538219,
  'oss_ideal_y_position': 89.8419497,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.11770701905,
  'dec_center_rotation': 19.20651587118,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.16329676768 19.18804277051 124.07260593472 19.18868179605 124.07310774758 19.22511025043 124.16270205032 19.22451311741 ',
  'v2': -59.1232779,
  'v3': -403.8152048,
  'dark_parallel_slot_duration': 1240,
  'exposure_duration': 628,
  'external_parallel_slot_duration': 587,
  'photon_collecting_duration': 558.312},
 {'program': 0,
  'observation': 4,
  'visit': 12,
  'exposure': 2,
  'pointing_sequence_number': 2,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCALL_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 560.0,
  'dither_point_index': 6,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 57.27618,
  'ideal_y_position': 89.3203177,
  'implicit_exposure': 'N',
  'max_data_rate': 1.3100086503651593,
  'mosaic_tile_order_number': 2,
  'number_of_detector_outputs': 4,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 10,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -145.1800611,
  'oss_ideal_y_position': 90.0077964,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.11777361453,
  'dec_center_rotation': 19.20646986353,
  'readout_pattern': 'MEDIUM2',
  'region_shape': 'POLYGON ICRS 124.16336334299 19.18799674643 124.07267253569 19.18863580475 124.07317436318 19.22506425895 124.16276864058 19.22446709354 ',
  'v2': -59.349694,
  'v3': -403.6495993,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 597,
  'external_parallel_slot_duration': 587,
  'photon_collecting_duration': 558.312},
 {'program': 0,
  'observation': 5,
  'visit': 1,
  'exposure': 0,
  'pointing_sequence_number': 0,
  'exposure_spec_order_number': 0,
  'target_id': 1,
  'target_order_number': 0,
  'AperName': 'NRCB5_SUB400P',
  'apt_label': 'BASE',
  'dither_point_index': 0,
  'ideal_x_position': 0,
  'ideal_y_position': 0,
  'max_data_rate': 0.11477814119416785,
  'mosaic_tile_order_number': 0,
  'oss_AperName': 'NRCB5_FULL_OSS',
  'oss_ideal_x_position': -59.2854178,
  'oss_ideal_y_position': 59.188357,
  'pointing_type': 'BASE',
  'v2': -148.665172,
  'v3': -432.14853,
  'dark_parallel_slot_duration': 0,
  'external_parallel_slot_duration': 0},
 {'program': 0,
  'observation': 5,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 1,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCB5_SUB400P',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 4.2724609375,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 0,
  'ideal_y_position': 0,
  'implicit_exposure': 'N',
  'max_data_rate': 0.11477814119416785,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 1,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 2,
  'oss_AperName': 'NRCB5_FULL_OSS',
  'oss_ideal_x_position': -59.2854178,
  'oss_ideal_y_position': 59.188357,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10089166666,
  'dec_center_rotation': 19.23126111111,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.10686288307 19.22575385945 124.09951258287 19.22581943398 124.09956153953 19.23276864796 124.10688677012 19.23270467108 ',
  'v2': -148.665172,
  'v3': -432.14853,
  'dark_parallel_slot_duration': 465,
  'exposure_duration': 110,
  'external_parallel_slot_duration': 64,
  'photon_collecting_duration': 48.031},
 {'program': 0,
  'observation': 5,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 2,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCB5_SUB400P',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 4.2724609375,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 0.1509003,
  'ideal_y_position': 0.1356999,
  'implicit_exposure': 'N',
  'max_data_rate': 0.11477814119416785,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 1,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 2,
  'oss_AperName': 'NRCB5_FULL_OSS',
  'oss_ideal_x_position': -59.4356527,
  'oss_ideal_y_position': 59.324793,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10093584922,
  'dec_center_rotation': 19.23122319584,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.10690706276 19.22571594275 124.09955676428 19.22578151904 124.0996057228 19.23273073301 124.10693095168 19.23266675438 ',
  'v2': -148.8153536,
  'v3': -432.012035,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 78,
  'external_parallel_slot_duration': 64,
  'photon_collecting_duration': 48.031},
 {'program': 0,
  'observation': 5,
  'visit': 1,
  'exposure': 3,
  'pointing_sequence_number': 3,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCB5_SUB400P',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 4.2724609375,
  'dither_point_index': 3,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 0.0754001,
  'ideal_y_position': 0.2111999,
  'implicit_exposure': 'N',
  'max_data_rate': 0.11477814119416785,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 1,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 2,
  'oss_AperName': 'NRCB5_FULL_OSS',
  'oss_ideal_x_position': -59.3597845,
  'oss_ideal_y_position': 59.399923,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10091352053,
  'dec_center_rotation': 19.23120233466,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.10688473407 19.2256950823 124.09953443651 19.22576065769 124.09958339408 19.23270987167 124.10690862203 19.23264589393 ',
  'v2': -148.7394558,
  'v3': -431.9369347,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 78,
  'external_parallel_slot_duration': 64,
  'photon_collecting_duration': 48.031},
 {'program': 0,
  'observation': 5,
  'visit': 1,
  'exposure': 4,
  'pointing_sequence_number': 4,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCB5_SUB400P',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 4.2724609375,
  'dither_point_index': 4,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 0.2262004,
  'ideal_y_position': 0.0451999,
  'implicit_exposure': 'N',
  'max_data_rate': 0.11477814119416785,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 1,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 2,
  'oss_AperName': 'NRCB5_FULL_OSS',
  'oss_ideal_x_position': -59.5113942,
  'oss_ideal_y_position': 59.2346621,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10095814237,
  'dec_center_rotation': 19.23124822392,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.10692935608 19.22574097011 124.09957905649 19.22580654729 124.09962801595 19.23275576125 124.10695324594 19.23269178174 ',
  'v2': -148.8911306,
  'v3': -432.1021361,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 78,
  'external_parallel_slot_duration': 64,
  'photon_collecting_duration': 48.031},
 {'program': 0,
  'observation': 5,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 5,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCB5_SUB400P',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 4.2724609375,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 0,
  'ideal_y_position': 0,
  'implicit_exposure': 'N',
  'max_data_rate': 0.11477814119416785,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 1,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 2,
  'oss_AperName': 'NRCB5_FULL_OSS',
  'oss_ideal_x_position': -59.2854178,
  'oss_ideal_y_position': 59.188357,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10089166666,
  'dec_center_rotation': 19.23126111111,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.10686288307 19.22575385945 124.09951258287 19.22581943398 124.09956153953 19.23276864796 124.10688677012 19.23270467108 ',
  'v2': -148.665172,
  'v3': -432.14853,
  'dark_parallel_slot_duration': 465,
  'exposure_duration': 110,
  'external_parallel_slot_duration': 64,
  'photon_collecting_duration': 48.031},
 {'program': 0,
  'observation': 5,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 6,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCB5_SUB400P',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 4.2724609375,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 0.1509003,
  'ideal_y_position': 0.1356999,
  'implicit_exposure': 'N',
  'max_data_rate': 0.11477814119416785,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 1,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 2,
  'oss_AperName': 'NRCB5_FULL_OSS',
  'oss_ideal_x_position': -59.4356527,
  'oss_ideal_y_position': 59.324793,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10093584922,
  'dec_center_rotation': 19.23122319584,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.10690706276 19.22571594275 124.09955676428 19.22578151904 124.0996057228 19.23273073301 124.10693095168 19.23266675438 ',
  'v2': -148.8153536,
  'v3': -432.012035,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 78,
  'external_parallel_slot_duration': 64,
  'photon_collecting_duration': 48.031},
 {'program': 0,
  'observation': 5,
  'visit': 1,
  'exposure': 3,
  'pointing_sequence_number': 7,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCB5_SUB400P',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 4.2724609375,
  'dither_point_index': 3,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 0.0754001,
  'ideal_y_position': 0.2111999,
  'implicit_exposure': 'N',
  'max_data_rate': 0.11477814119416785,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 1,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 2,
  'oss_AperName': 'NRCB5_FULL_OSS',
  'oss_ideal_x_position': -59.3597845,
  'oss_ideal_y_position': 59.399923,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10091352053,
  'dec_center_rotation': 19.23120233466,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.10688473407 19.2256950823 124.09953443651 19.22576065769 124.09958339408 19.23270987167 124.10690862203 19.23264589393 ',
  'v2': -148.7394558,
  'v3': -431.9369347,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 78,
  'external_parallel_slot_duration': 64,
  'photon_collecting_duration': 48.031},
 {'program': 0,
  'observation': 5,
  'visit': 1,
  'exposure': 4,
  'pointing_sequence_number': 8,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCB5_SUB400P',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 4.2724609375,
  'dither_point_index': 4,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 0.2262004,
  'ideal_y_position': 0.0451999,
  'implicit_exposure': 'N',
  'max_data_rate': 0.11477814119416785,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 1,
  'number_of_groups': 6,
  'number_of_integrations': 1,
  'number_of_scas': 2,
  'oss_AperName': 'NRCB5_FULL_OSS',
  'oss_ideal_x_position': -59.5113942,
  'oss_ideal_y_position': 59.2346621,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10095814237,
  'dec_center_rotation': 19.23124822392,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.10692935608 19.22574097011 124.09957905649 19.22580654729 124.09962801595 19.23275576125 124.10695324594 19.23269178174 ',
  'v2': -148.8911306,
  'v3': -432.1021361,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 78,
  'external_parallel_slot_duration': 64,
  'photon_collecting_duration': 48.031},
 {'program': 0,
  'observation': 6,
  'visit': 1,
  'exposure': 0,
  'pointing_sequence_number': 0,
  'exposure_spec_order_number': 0,
  'target_id': 1,
  'target_order_number': 0,
  'AperName': 'NRCBS_FULL',
  'apt_label': 'BASE',
  'dither_point_index': 0,
  'ideal_x_position': 0,
  'ideal_y_position': 0,
  'max_data_rate': 1.2939588534662132,
  'mosaic_tile_order_number': 0,
  'oss_AperName': 'NRCB5_FULL_OSS',
  'oss_ideal_x_position': 5.7710488,
  'oss_ideal_y_position': -4.6148485,
  'pointing_type': 'BASE',
  'v2': -83.633565,
  'v3': -495.977235,
  'dark_parallel_slot_duration': 0,
  'external_parallel_slot_duration': 0},
 {'program': 0,
  'observation': 6,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 1,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCBS_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 240.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 0,
  'ideal_y_position': 0,
  'implicit_exposure': 'N',
  'max_data_rate': 1.2939588534662132,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 5,
  'oss_AperName': 'NRCB5_FULL_OSS',
  'oss_ideal_x_position': 5.7710488,
  'oss_ideal_y_position': -4.6148485,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10089166666,
  'dec_center_rotation': 19.23126111111,
  'readout_pattern': 'SHALLOW2',
  'region_shape': 'POLYGON ICRS 124.11905058593 19.21404629206 124.07981159235 19.21428332042 124.08031509693 19.25071175785 124.11861767769 19.2507808955 ',
  'v2': -83.633565,
  'v3': -495.977235,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 296,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 236.209},
 {'program': 0,
  'observation': 6,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 1,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'MIRIM_ILLUM',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 20.15625,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -378.7269271,
  'ideal_y_position': -90.5644708,
  'implicit_exposure': 'N',
  'max_data_rate': 0.09245759299319546,
  'mosaic_tile_order_number': 1,
  'number_of_groups': 8,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'MIRIM_FULL_OSS',
  'oss_ideal_x_position': 378.7263896,
  'oss_ideal_y_position': -90.5653303,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 123.99209233051,
  'dec_center_rotation': 19.26516396055,
  'readout_pattern': 'SLOWR1',
  'region_shape': 'POLYGON ICRS 124.00153234714 19.24871537049 123.9798252541 19.25040339056 123.98278617801 19.28161316588 124.00426469648 19.28002643403 ',
  'v2': -83.633565,
  'v3': -495.977235,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 246,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 191.119},
 {'program': 0,
  'observation': 6,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 2,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCBS_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 240.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 0.6129017,
  'ideal_y_position': -0.2429999,
  'implicit_exposure': 'N',
  'max_data_rate': 1.2939588534662132,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 5,
  'oss_AperName': 'NRCB5_FULL_OSS',
  'oss_ideal_x_position': 5.1580208,
  'oss_ideal_y_position': -4.8575256,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10107204431,
  'dec_center_rotation': 19.23132845461,
  'readout_pattern': 'SHALLOW2',
  'region_shape': 'POLYGON ICRS 124.11923095212 19.21411361778 124.07999194271 19.21435068456 124.0804954875 19.25077912151 124.11879808405 19.25084822165 ',
  'v2': -84.2466897,
  'v3': -496.2196719,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 265,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 236.209},
 {'program': 0,
  'observation': 6,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 2,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'MIRIM_ILLUM',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 20.15625,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -378.1364206,
  'ideal_y_position': -90.8577278,
  'implicit_exposure': 'N',
  'max_data_rate': 0.09245759299319546,
  'mosaic_tile_order_number': 1,
  'number_of_groups': 8,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'MIRIM_FULL_OSS',
  'oss_ideal_x_position': 378.1358819,
  'oss_ideal_y_position': -90.8585853,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 123.99227270092,
  'dec_center_rotation': 19.26523141119,
  'readout_pattern': 'SLOWR1',
  'region_shape': 'POLYGON ICRS 124.00171270403 19.24878281066 123.98000560392 19.25047085198 123.98296656333 19.2816806244 124.00444508888 19.28009387153 ',
  'v2': -84.2466897,
  'v3': -496.2196719,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 231,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 191.119},
 {'program': 0,
  'observation': 6,
  'visit': 1,
  'exposure': 3,
  'pointing_sequence_number': 3,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCBS_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 240.0,
  'dither_point_index': 3,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -0.6129017,
  'ideal_y_position': 0.243,
  'implicit_exposure': 'N',
  'max_data_rate': 1.2939588534662132,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 5,
  'oss_AperName': 'NRCB5_FULL_OSS',
  'oss_ideal_x_position': 6.3840767,
  'oss_ideal_y_position': -4.3721714,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10071128916,
  'dec_center_rotation': 19.23119376742,
  'readout_pattern': 'SHALLOW2',
  'region_shape': 'POLYGON ICRS 124.11887021989 19.21397896615 124.07963124214 19.2142159561 124.0801347065 19.25064439403 124.11843727148 19.25071356917 ',
  'v2': -83.0204402,
  'v3': -495.734798,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 265,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 236.209},
 {'program': 0,
  'observation': 6,
  'visit': 1,
  'exposure': 3,
  'pointing_sequence_number': 3,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'MIRIM_ILLUM',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 20.15625,
  'dither_point_index': 3,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -379.3174336,
  'ideal_y_position': -90.2712138,
  'implicit_exposure': 'N',
  'max_data_rate': 0.09245759299319546,
  'mosaic_tile_order_number': 1,
  'number_of_groups': 8,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'MIRIM_FULL_OSS',
  'oss_ideal_x_position': 379.3168974,
  'oss_ideal_y_position': -90.2720754,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 123.99191196024,
  'dec_center_rotation': 19.26509650973,
  'readout_pattern': 'SLOWR1',
  'region_shape': 'POLYGON ICRS 124.0013519904 19.24864793014 123.97964490442 19.25033592896 123.98260579283 19.28154570718 124.00408430422 19.27995899636 ',
  'v2': -83.0204402,
  'v3': -495.734798,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 231,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 191.119},
 {'program': 0,
  'observation': 6,
  'visit': 1,
  'exposure': 4,
  'pointing_sequence_number': 4,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCBS_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 240.0,
  'dither_point_index': 4,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 8.1900228,
  'ideal_y_position': 8.1900003,
  'implicit_exposure': 'N',
  'max_data_rate': 1.2939588534662132,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 5,
  'oss_AperName': 'NRCB5_FULL_OSS',
  'oss_ideal_x_position': -2.4146356,
  'oss_ideal_y_position': 3.5794647,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10329887425,
  'dec_center_rotation': 19.22898400651,
  'readout_pattern': 'SHALLOW2',
  'region_shape': 'POLYGON ICRS 124.12145728973 19.21176895042 124.08221884358 19.21200649149 124.08272287515 19.24843492234 124.12102492583 19.24850355951 ',
  'v2': -91.8160617,
  'v3': -487.7797154,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 265,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 236.209},
 {'program': 0,
  'observation': 6,
  'visit': 1,
  'exposure': 4,
  'pointing_sequence_number': 4,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'MIRIM_ILLUM',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 20.15625,
  'dither_point_index': 4,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -369.882548,
  'ideal_y_position': -83.0858654,
  'implicit_exposure': 'N',
  'max_data_rate': 0.09245759299319546,
  'mosaic_tile_order_number': 1,
  'number_of_groups': 8,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'MIRIM_FULL_OSS',
  'oss_ideal_x_position': 369.8820287,
  'oss_ideal_y_position': -83.086673,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 123.99450154918,
  'dec_center_rotation': 19.2628882913,
  'readout_pattern': 'SLOWR1',
  'region_shape': 'POLYGON ICRS 124.00394118819 19.2464395507 123.9822344207 19.24812785458 123.98519576151 19.27933759118 124.00667395901 19.27775057852 ',
  'v2': -91.8160617,
  'v3': -487.7797154,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 231,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 191.119},
 {'program': 0,
  'observation': 6,
  'visit': 1,
  'exposure': 5,
  'pointing_sequence_number': 5,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCBS_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 240.0,
  'dither_point_index': 5,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 8.8029246,
  'ideal_y_position': 7.9470004,
  'implicit_exposure': 'N',
  'max_data_rate': 1.2939588534662132,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 5,
  'oss_AperName': 'NRCB5_FULL_OSS',
  'oss_ideal_x_position': -3.0276635,
  'oss_ideal_y_position': 3.3367876,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10347925038,
  'dec_center_rotation': 19.22905134763,
  'readout_pattern': 'SHALLOW2',
  'region_shape': 'POLYGON ICRS 124.1216376544 19.21183627379 124.08239919242 19.21207385328 124.08290326421 19.24850228364 124.12120533067 19.2485708833 ',
  'v2': -92.4291864,
  'v3': -488.0221523,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 265,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 236.209},
 {'program': 0,
  'observation': 6,
  'visit': 1,
  'exposure': 5,
  'pointing_sequence_number': 5,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'MIRIM_ILLUM',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 20.15625,
  'dither_point_index': 5,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -369.2920416,
  'ideal_y_position': -83.3791224,
  'implicit_exposure': 'N',
  'max_data_rate': 0.09245759299319546,
  'mosaic_tile_order_number': 1,
  'number_of_groups': 8,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'MIRIM_FULL_OSS',
  'oss_ideal_x_position': 369.2915211,
  'oss_ideal_y_position': -83.379928,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 123.99468191808,
  'dec_center_rotation': 19.26295573955,
  'readout_pattern': 'SLOWR1',
  'region_shape': 'POLYGON ICRS 124.00412154354 19.24650698852 123.98241476899 19.24819531365 123.9853761453 19.27940504735 124.00685434987 19.27781801366 ',
  'v2': -92.4291864,
  'v3': -488.0221523,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 231,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 191.119},
 {'program': 0,
  'observation': 6,
  'visit': 1,
  'exposure': 6,
  'pointing_sequence_number': 6,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCBS_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 240.0,
  'dither_point_index': 6,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 7.5771211,
  'ideal_y_position': 8.4330003,
  'implicit_exposure': 'N',
  'max_data_rate': 1.2939588534662132,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 5,
  'oss_AperName': 'NRCB5_FULL_OSS',
  'oss_ideal_x_position': -1.8016076,
  'oss_ideal_y_position': 3.8221418,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10311849828,
  'dec_center_rotation': 19.22891666522,
  'readout_pattern': 'SHALLOW2',
  'region_shape': 'POLYGON ICRS 124.1212769252 19.21170162687 124.08203849488 19.21193912953 124.08254248624 19.24836756087 124.12084452114 19.24843623554 ',
  'v2': -91.2029371,
  'v3': -487.5372785,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 265,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 236.209},
 {'program': 0,
  'observation': 6,
  'visit': 1,
  'exposure': 6,
  'pointing_sequence_number': 6,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'MIRIM_ILLUM',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 20.15625,
  'dither_point_index': 6,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -370.4730544,
  'ideal_y_position': -82.7926084,
  'implicit_exposure': 'N',
  'max_data_rate': 0.09245759299319546,
  'mosaic_tile_order_number': 1,
  'number_of_groups': 8,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'MIRIM_FULL_OSS',
  'oss_ideal_x_position': 370.4725364,
  'oss_ideal_y_position': -82.7934181,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 123.99432118043,
  'dec_center_rotation': 19.26282084288,
  'readout_pattern': 'SLOWR1',
  'region_shape': 'POLYGON ICRS 124.00376083299 19.2463721127 123.98205407256 19.24806039533 123.98501537788 19.27927013483 124.00649356829 19.27768314319 ',
  'v2': -91.2029371,
  'v3': -487.5372785,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 231,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 191.119},
 {'program': 0,
  'observation': 7,
  'visit': 1,
  'exposure': 0,
  'pointing_sequence_number': 0,
  'exposure_spec_order_number': 0,
  'target_id': 1,
  'target_order_number': 0,
  'AperName': 'NRCA5_GRISMR_WFSS',
  'apt_label': 'BASE',
  'dither_point_index': 0,
  'ideal_x_position': 0,
  'ideal_y_position': 0,
  'max_data_rate': 1.1918821451889163,
  'mosaic_tile_order_number': 0,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': 0,
  'oss_ideal_y_position': 0,
  'pointing_type': 'BASE',
  'v2': 85.92656,
  'v3': -493.5025369,
  'dark_parallel_slot_duration': 0,
  'external_parallel_slot_duration': 0},
 {'program': 0,
  'observation': 7,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 1,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCA5_GRISMR_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 240.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 0,
  'ideal_y_position': 0,
  'implicit_exposure': 'N',
  'max_data_rate': 1.1918821451889163,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 5,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': 0,
  'oss_ideal_y_position': 0,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10089166666,
  'dec_center_rotation': 19.23126111111,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.07918332938 19.21321599866 124.07952304975 19.24923001087 124.12237558026 19.24914694191 124.1239378578 19.21344658614 ',
  'v2': 85.92656,
  'v3': -493.5025369,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 317,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 257.682},
 {'program': 0,
  'observation': 7,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 1,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NIS_CEN',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 32.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -375.0461043,
  'ideal_y_position': 208.1963301,
  'implicit_exposure': 'N',
  'max_data_rate': 0.21738558244239187,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 4,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': 375.0456379,
  'oss_ideal_y_position': 208.1955679,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 123.98999930713,
  'dec_center_rotation': 19.17441847866,
  'readout_pattern': 'NIS',
  'region_shape': 'POLYGON ICRS 124.0094876958 19.15564524659 123.97016195103 19.15582626697 123.970524845 19.1932086681 124.00984991351 19.19305390468 ',
  'v2': 85.9265599,
  'v3': -493.5025369,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 207,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 171.788},
 {'program': 0,
  'observation': 7,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 2,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCA5_GRISMR_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 240.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 0.5982017,
  'ideal_y_position': 0.5982,
  'implicit_exposure': 'N',
  'max_data_rate': 1.1918821451889163,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 5,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -0.5975614,
  'oss_ideal_y_position': 0.5988379,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10106765381,
  'dec_center_rotation': 19.23109494435,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.07935931916 19.21304985264 124.07969907777 19.24906386453 124.12255156483 19.24898075463 124.12411380254 19.21328039737 ',
  'v2': 85.3283582,
  'v3': -492.9043369,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 286,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 257.682},
 {'program': 0,
  'observation': 7,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 2,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NIS_CEN',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 32.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -374.4420715,
  'ideal_y_position': 208.7886416,
  'implicit_exposure': 'N',
  'max_data_rate': 0.21738558244239187,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 4,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': 374.4416081,
  'oss_ideal_y_position': 208.7878836,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 123.99017534477,
  'dec_center_rotation': 19.17425241888,
  'readout_pattern': 'NIS',
  'region_shape': 'POLYGON ICRS 124.00966369396 19.15547916601 123.97033798912 19.15566022398 123.97070092278 19.19304262477 124.01002595137 19.19288782376 ',
  'v2': 85.3283582,
  'v3': -492.9043369,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 207,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 171.788},
 {'program': 0,
  'observation': 7,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 3,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCA5_GRISMR_WFSS',
  'apt_label': 'DIRECT_IMAGE',
  'data_volume_mib': 240.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 0.5982017,
  'ideal_y_position': 0.5982,
  'implicit_exposure': 'N',
  'max_data_rate': 2.685913966338446,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 5,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -0.5975614,
  'oss_ideal_y_position': 0.5988379,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10106765381,
  'dec_center_rotation': 19.23109494435,
  'readout_pattern': 'BRIGHT2',
  'region_shape': 'POLYGON ICRS 124.07935931916 19.21304985264 124.07969907777 19.24906386453 124.12255156483 19.24898075463 124.12411380254 19.21328039737 ',
  'v2': 85.3283582,
  'v3': -492.9043369,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 167,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 107.368},
 {'program': 0,
  'observation': 7,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 3,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NIS_CEN',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 32.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -374.4420715,
  'ideal_y_position': 208.7886416,
  'implicit_exposure': 'N',
  'max_data_rate': 0.6521567473271757,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 4,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': 374.4416081,
  'oss_ideal_y_position': 208.7878836,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 123.99017534477,
  'dec_center_rotation': 19.17425241888,
  'readout_pattern': 'NISRAPID',
  'region_shape': 'POLYGON ICRS 124.00966369396 19.15547916601 123.97033798912 19.15566022398 123.97070092278 19.19304262477 124.01002595137 19.19288782376 ',
  'v2': 85.3283582,
  'v3': -492.9043369,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 78,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 42.947},
 {'program': 0,
  'observation': 7,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 4,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 3,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCA5_GRISMR_WFSS',
  'apt_label': 'OUT_OF_FIELD',
  'data_volume_mib': 240.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -12.0000341,
  'ideal_y_position': 1.5100008,
  'implicit_exposure': 'N',
  'max_data_rate': 2.685913966338446,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 5,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': 12.0016042,
  'oss_ideal_y_position': 1.4971955,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.09736133827,
  'dec_center_rotation': 19.23084163237,
  'readout_pattern': 'BRIGHT2',
  'region_shape': 'POLYGON ICRS 124.07565344423 19.2127961044 124.07599238963 19.24881012312 124.11884481246 19.24872787532 124.12040785339 19.2130275495 ',
  'v2': 97.9265941,
  'v3': -491.9925361,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 167,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 107.368},
 {'program': 0,
  'observation': 7,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 4,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 3,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NIS_CEN',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 32.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -387.030771,
  'ideal_y_position': 209.8238085,
  'implicit_exposure': 'N',
  'max_data_rate': 0.6521567473271757,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 4,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': 387.0303277,
  'oss_ideal_y_position': 209.8229974,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 123.98647049153,
  'dec_center_rotation': 19.17399686121,
  'readout_pattern': 'NISRAPID',
  'region_shape': 'POLYGON ICRS 124.00595920909 19.15522403026 123.96663356134 19.15540429712 123.96699565148 19.1927867052 124.00632062239 19.19263269529 ',
  'v2': 97.9265941,
  'v3': -491.9925361,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 78,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 42.947},
 {'program': 0,
  'observation': 7,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 5,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 3,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCA5_GRISMR_WFSS',
  'apt_label': 'OUT_OF_FIELD',
  'data_volume_mib': 240.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 12.0000341,
  'ideal_y_position': 1.5100008,
  'implicit_exposure': 'N',
  'max_data_rate': 2.685913966338446,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 5,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -11.998382,
  'oss_ideal_y_position': 1.5228027,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10442199505,
  'dec_center_rotation': 19.23084163237,
  'readout_pattern': 'BRIGHT2',
  'region_shape': 'POLYGON ICRS 124.08271332543 19.21279693638 124.08305381904 19.24881094208 124.1259062383 19.24872705195 124.12746774449 19.21302666625 ',
  'v2': 73.9265258,
  'v3': -491.9925361,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 136,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 107.368},
 {'program': 0,
  'observation': 7,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 5,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 3,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NIS_CEN',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 32.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -363.0318543,
  'ideal_y_position': 209.5887085,
  'implicit_exposure': 'N',
  'max_data_rate': 0.6521567473271757,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 4,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': 363.031386,
  'oss_ideal_y_position': 209.5880018,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 123.9935286874,
  'dec_center_rotation': 19.17400114024,
  'readout_pattern': 'NISRAPID',
  'region_shape': 'POLYGON ICRS 124.01301664299 19.15522750428 123.973691002 19.15540927831 123.97405469809 19.19279167248 124.01337966335 19.19263615543 ',
  'v2': 73.9265258,
  'v3': -491.9925361,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 78,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 42.947},
 {'program': 0,
  'observation': 7,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 6,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 4,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCA5_GRISMC_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 240.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 0,
  'ideal_y_position': 0,
  'implicit_exposure': 'N',
  'max_data_rate': 1.1918821451889163,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 5,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': 0,
  'oss_ideal_y_position': 0,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10089166666,
  'dec_center_rotation': 19.23126111111,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.08173059163 19.21000861454 124.08232822321 19.25848184268 124.11952986338 19.2583582518 124.12006454759 19.21009611331 ',
  'v2': 85.92656,
  'v3': -493.5025369,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 317,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 257.682},
 {'program': 0,
  'observation': 7,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 6,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 4,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NIS_CEN',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 32.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -375.0461043,
  'ideal_y_position': 208.1963301,
  'implicit_exposure': 'N',
  'max_data_rate': 0.21738558244239187,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 4,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': 375.0456379,
  'oss_ideal_y_position': 208.1955679,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 123.98999930713,
  'dec_center_rotation': 19.17441847866,
  'readout_pattern': 'NIS',
  'region_shape': 'POLYGON ICRS 124.0094876958 19.15564524659 123.97016195103 19.15582626697 123.970524845 19.1932086681 124.00984991351 19.19305390468 ',
  'v2': 85.9265599,
  'v3': -493.5025369,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 207,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 171.788},
 {'program': 0,
  'observation': 7,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 7,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 4,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCA5_GRISMC_WFSS',
  'apt_label': 'GRISM',
  'data_volume_mib': 240.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 0.5982017,
  'ideal_y_position': 0.5982,
  'implicit_exposure': 'N',
  'max_data_rate': 1.1918821451889163,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 5,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -0.5975614,
  'oss_ideal_y_position': 0.5988379,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10106765381,
  'dec_center_rotation': 19.23109494435,
  'readout_pattern': 'SHALLOW4',
  'region_shape': 'POLYGON ICRS 124.08190657539 19.2098424661 124.08250425831 19.25831569366 124.1197058607 19.25819206725 124.12024049267 19.20992992825 ',
  'v2': 85.3283582,
  'v3': -492.9043369,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 286,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 257.682},
 {'program': 0,
  'observation': 7,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 7,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 4,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NIS_CEN',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 32.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -374.4420715,
  'ideal_y_position': 208.7886416,
  'implicit_exposure': 'N',
  'max_data_rate': 0.21738558244239187,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 4,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': 374.4416081,
  'oss_ideal_y_position': 208.7878836,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 123.99017534477,
  'dec_center_rotation': 19.17425241888,
  'readout_pattern': 'NIS',
  'region_shape': 'POLYGON ICRS 124.00966369396 19.15547916601 123.97033798912 19.15566022398 123.97070092278 19.19304262477 124.01002595137 19.19288782376 ',
  'v2': 85.3283582,
  'v3': -492.9043369,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 207,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 171.788},
 {'program': 0,
  'observation': 7,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 8,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 5,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCA5_GRISMC_WFSS',
  'apt_label': 'DIRECT_IMAGE',
  'data_volume_mib': 240.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 0.5982017,
  'ideal_y_position': 0.5982,
  'implicit_exposure': 'N',
  'max_data_rate': 2.685913966338446,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 5,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -0.5975614,
  'oss_ideal_y_position': 0.5988379,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10106765381,
  'dec_center_rotation': 19.23109494435,
  'readout_pattern': 'BRIGHT2',
  'region_shape': 'POLYGON ICRS 124.08190657539 19.2098424661 124.08250425831 19.25831569366 124.1197058607 19.25819206725 124.12024049267 19.20992992825 ',
  'v2': 85.3283582,
  'v3': -492.9043369,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 167,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 107.368},
 {'program': 0,
  'observation': 7,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 8,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 5,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NIS_CEN',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 32.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -374.4420715,
  'ideal_y_position': 208.7886416,
  'implicit_exposure': 'N',
  'max_data_rate': 0.6521567473271757,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 4,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': 374.4416081,
  'oss_ideal_y_position': 208.7878836,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 123.99017534477,
  'dec_center_rotation': 19.17425241888,
  'readout_pattern': 'NISRAPID',
  'region_shape': 'POLYGON ICRS 124.00966369396 19.15547916601 123.97033798912 19.15566022398 123.97070092278 19.19304262477 124.01002595137 19.19288782376 ',
  'v2': 85.3283582,
  'v3': -492.9043369,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 78,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 42.947},
 {'program': 0,
  'observation': 7,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 9,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 6,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCA5_GRISMC_WFSS',
  'apt_label': 'OUT_OF_FIELD',
  'data_volume_mib': 240.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 2.7700075,
  'ideal_y_position': 12,
  'implicit_exposure': 'N',
  'max_data_rate': 2.685913966338446,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 5,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -2.7571948,
  'oss_ideal_y_position': 12.0029486,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10170656958,
  'dec_center_rotation': 19.22792777595,
  'readout_pattern': 'BRIGHT2',
  'region_shape': 'POLYGON ICRS 124.08254577804 19.20667536418 124.08314363811 19.25514858967 124.12034452254 19.25502483424 124.12087895656 19.20676269339 ',
  'v2': 83.1565524,
  'v3': -481.5025369,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 167,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 107.368},
 {'program': 0,
  'observation': 7,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 9,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 6,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NIS_CEN',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 32.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -372.1586801,
  'ideal_y_position': 220.16862,
  'implicit_exposure': 'N',
  'max_data_rate': 0.6521567473271757,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 4,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': 372.1582843,
  'oss_ideal_y_position': 220.1679028,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 123.99081616924,
  'dec_center_rotation': 19.17108564354,
  'readout_pattern': 'NISRAPID',
  'region_shape': 'POLYGON ICRS 124.01030405923 19.15231230389 123.97097911298 19.15249349869 123.97134218553 19.18987589822 124.01066645547 19.18972096038 ',
  'v2': 83.1565524,
  'v3': -481.5025369,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 78,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 42.947},
 {'program': 0,
  'observation': 7,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 10,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 6,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCA5_GRISMC_WFSS',
  'apt_label': 'OUT_OF_FIELD',
  'data_volume_mib': 240.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 2.770009,
  'ideal_y_position': -34.9999996,
  'implicit_exposure': 'N',
  'max_data_rate': 2.685913966338446,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 5,
  'oss_AperName': 'NRCA5_FULL_OSS',
  'oss_ideal_x_position': -2.8073421,
  'oss_ideal_y_position': -34.9970245,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10170663481,
  'dec_center_rotation': 19.24098333141,
  'readout_pattern': 'BRIGHT2',
  'region_shape': 'POLYGON ICRS 124.08254431984 19.21973091966 124.08314222701 19.26820414516 124.12034606919 19.26808038971 124.12088054523 19.21981824886 ',
  'v2': 83.1565509,
  'v3': -528.5025366,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 136,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 107.368},
 {'program': 0,
  'observation': 7,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 10,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 6,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NIS_CEN',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 32.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -372.6190813,
  'ideal_y_position': 173.1708754,
  'implicit_exposure': 'N',
  'max_data_rate': 0.6521567473271757,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 4,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': 372.6183981,
  'oss_ideal_y_position': 173.1700366,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 123.99080744583,
  'dec_center_rotation': 19.1841411749,
  'readout_pattern': 'NISRAPID',
  'region_shape': 'POLYGON ICRS 124.01029694664 19.1653678906 123.97096887571 19.16554908355 123.97133197479 19.2029314831 124.01065937008 19.2027765471 ',
  'v2': 83.1565509,
  'v3': -528.5025366,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 78,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 42.947},
 {'program': 0,
  'observation': 8,
  'visit': 1,
  'exposure': 0,
  'pointing_sequence_number': 0,
  'exposure_spec_order_number': 0,
  'target_id': 1,
  'target_order_number': 0,
  'AperName': 'NIS_CEN',
  'apt_label': 'BASE',
  'dither_point_index': 0,
  'ideal_x_position': -2e-07,
  'ideal_y_position': 4.0192,
  'max_data_rate': 0.23538558244239186,
  'mosaic_tile_order_number': 0,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': 0,
  'oss_ideal_y_position': 4.0191999,
  'pointing_type': 'BASE',
  'v2': -291.1016284,
  'v3': -693.9959928,
  'dark_parallel_slot_duration': 0,
  'external_parallel_slot_duration': 0},
 {'program': 0,
  'observation': 8,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 1,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NIS_CEN',
  'apt_label': 'DIRECT_IMAGE',
  'data_volume_mib': 32.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -2e-07,
  'ideal_y_position': 4.0192,
  'implicit_exposure': 'N',
  'max_data_rate': 0.23538558244239186,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 4,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': 0,
  'oss_ideal_y_position': 4.0191999,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10088008391,
  'dec_center_rotation': 19.23014472023,
  'readout_pattern': 'NIS',
  'region_shape': 'POLYGON ICRS 124.12036284817 19.21135931873 124.08102389235 19.21156401594 124.08141214486 19.24894619101 124.12075044485 19.24876775113 ',
  'v2': -291.1016284,
  'v3': -693.9959928,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 207,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 171.788},
 {'program': 0,
  'observation': 8,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 1,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCBS_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 160.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 207.2860932,
  'ideal_y_position': -198.2092363,
  'implicit_exposure': 'N',
  'max_data_rate': 1.504977109216559,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 3,
  'number_of_integrations': 1,
  'number_of_scas': 5,
  'oss_AperName': 'NRCB5_FULL_OSS',
  'oss_ideal_x_position': -201.6184205,
  'oss_ideal_y_position': -202.715271,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16194798694,
  'dec_center_rotation': 19.28625611005,
  'readout_pattern': 'SHALLOW2',
  'region_shape': 'POLYGON ICRS 124.18010643712 19.26903548564 124.14085439209 19.26928551818 124.14137161057 19.30571378653 124.17968704591 19.3057702303 ',
  'v2': -291.1016284,
  'v3': -693.9959928,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 188,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 128.841},
 {'program': 0,
  'observation': 8,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 2,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NIS_CEN',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 40.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -2e-07,
  'ideal_y_position': 4.0192,
  'implicit_exposure': 'N',
  'max_data_rate': 0.24032616386153713,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': 0,
  'oss_ideal_y_position': 4.0191999,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10088008391,
  'dec_center_rotation': 19.23014472023,
  'readout_pattern': 'NIS',
  'region_shape': 'POLYGON ICRS 124.12036284817 19.21135931873 124.08102389235 19.21156401594 124.08141214486 19.24894619101 124.12075044485 19.24876775113 ',
  'v2': -291.1016284,
  'v3': -693.9959928,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 250,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 214.735},
 {'program': 0,
  'observation': 8,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 2,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCBS_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 160.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 207.2860932,
  'ideal_y_position': -198.2092363,
  'implicit_exposure': 'N',
  'max_data_rate': 1.504977109216559,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 3,
  'number_of_integrations': 1,
  'number_of_scas': 5,
  'oss_AperName': 'NRCB5_FULL_OSS',
  'oss_ideal_x_position': -201.6184205,
  'oss_ideal_y_position': -202.715271,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16194798694,
  'dec_center_rotation': 19.28625611005,
  'readout_pattern': 'SHALLOW2',
  'region_shape': 'POLYGON ICRS 124.18010643712 19.26903548564 124.14085439209 19.26928551818 124.14137161057 19.30571378653 124.17968704591 19.3057702303 ',
  'v2': -291.1016284,
  'v3': -693.9959928,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 188,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 128.841},
 {'program': 0,
  'observation': 8,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 3,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NIS_CEN',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 40.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 0.7533039,
  'ideal_y_position': 5.2963999,
  'implicit_exposure': 'N',
  'max_data_rate': 0.24032616386153713,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': -0.7533,
  'oss_ideal_y_position': 5.2964,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10109800754,
  'dec_center_rotation': 19.22978790958,
  'readout_pattern': 'NIS',
  'region_shape': 'POLYGON ICRS 124.12058070457 19.21100248505 124.08124183447 19.21120722879 124.08163013574 19.2485894034 124.12096835004 19.24841091699 ',
  'v2': -291.8423853,
  'v3': -692.7114749,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 250,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 214.735},
 {'program': 0,
  'observation': 8,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 3,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCBS_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 160.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 208.0280295,
  'ideal_y_position': -196.9253994,
  'implicit_exposure': 'N',
  'max_data_rate': 1.504977109216559,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 3,
  'number_of_integrations': 1,
  'number_of_scas': 5,
  'oss_AperName': 'NRCB5_FULL_OSS',
  'oss_ideal_x_position': -202.3596804,
  'oss_ideal_y_position': -201.431044,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16216585267,
  'dec_center_rotation': 19.28589922667,
  'readout_pattern': 'SHALLOW2',
  'region_shape': 'POLYGON ICRS 124.18032424143 19.26867858151 124.14107228204 19.26892866045 124.14158954775 19.30535692818 124.17990489987 19.30541332666 ',
  'v2': -291.8423853,
  'v3': -692.7114749,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 157,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 128.841},
 {'program': 0,
  'observation': 8,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 4,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 3,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NIS_CEN',
  'apt_label': 'DIRECT_IMAGE',
  'data_volume_mib': 32.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 0.7533039,
  'ideal_y_position': 5.2963999,
  'implicit_exposure': 'N',
  'max_data_rate': 0.23538558244239186,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 4,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': -0.7533,
  'oss_ideal_y_position': 5.2964,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10109800754,
  'dec_center_rotation': 19.22978790958,
  'readout_pattern': 'NIS',
  'region_shape': 'POLYGON ICRS 124.12058070457 19.21100248505 124.08124183447 19.21120722879 124.08163013574 19.2485894034 124.12096835004 19.24841091699 ',
  'v2': -291.8423853,
  'v3': -692.7114749,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 207,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 171.788},
 {'program': 0,
  'observation': 8,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 4,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 3,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCBS_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 160.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 208.0280295,
  'ideal_y_position': -196.9253994,
  'implicit_exposure': 'N',
  'max_data_rate': 1.504977109216559,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 3,
  'number_of_integrations': 1,
  'number_of_scas': 5,
  'oss_AperName': 'NRCB5_FULL_OSS',
  'oss_ideal_x_position': -202.3596804,
  'oss_ideal_y_position': -201.431044,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16216585267,
  'dec_center_rotation': 19.28589922667,
  'readout_pattern': 'SHALLOW2',
  'region_shape': 'POLYGON ICRS 124.18032424143 19.26867858151 124.14107228204 19.26892866045 124.14158954775 19.30535692818 124.17990489987 19.30541332666 ',
  'v2': -291.8423853,
  'v3': -692.7114749,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 188,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 128.841},
 {'program': 0,
  'observation': 8,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 5,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 3,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NIS_CEN',
  'apt_label': 'DIRECT_IMAGE',
  'data_volume_mib': 32.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 4.021723,
  'ideal_y_position': -0.0185,
  'implicit_exposure': 'N',
  'max_data_rate': 0.23538558244239186,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 4,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': -4.0216999,
  'oss_ideal_y_position': -0.0185,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10207482635,
  'dec_center_rotation': 19.2312553026,
  'readout_pattern': 'NIS',
  'region_shape': 'POLYGON ICRS 124.1215575857 19.21246977483 124.08221836539 19.21267472715 124.08260689242 19.2500568997 124.12194545715 19.24987820471 ',
  'v2': -295.1627112,
  'v3': -697.9941031,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 207,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 171.788},
 {'program': 0,
  'observation': 8,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 5,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 3,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCBS_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 160.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 211.3435019,
  'ideal_y_position': -202.2110751,
  'implicit_exposure': 'N',
  'max_data_rate': 1.504977109216559,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 3,
  'number_of_integrations': 1,
  'number_of_scas': 5,
  'oss_AperName': 'NRCB5_FULL_OSS',
  'oss_ideal_x_position': -205.67791,
  'oss_ideal_y_position': -206.7149915,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16314355579,
  'dec_center_rotation': 19.28736629192,
  'readout_pattern': 'SHALLOW2',
  'region_shape': 'POLYGON ICRS 124.18130199721 19.27014555963 124.14204968861 19.27039584681 124.14256717582 19.3068241118 124.18088287069 19.30688030701 ',
  'v2': -295.1627112,
  'v3': -697.9941031,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 157,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 128.841},
 {'program': 0,
  'observation': 8,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 6,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 4,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NIS_CEN',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 40.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 4.021723,
  'ideal_y_position': -0.0185,
  'implicit_exposure': 'N',
  'max_data_rate': 0.24032616386153713,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': -4.0216999,
  'oss_ideal_y_position': -0.0185,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10207482635,
  'dec_center_rotation': 19.2312553026,
  'readout_pattern': 'NIS',
  'region_shape': 'POLYGON ICRS 124.1215575857 19.21246977483 124.08221836539 19.21267472715 124.08260689242 19.2500568997 124.12194545715 19.24987820471 ',
  'v2': -295.1627112,
  'v3': -697.9941031,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 250,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 214.735},
 {'program': 0,
  'observation': 8,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 6,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 4,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCBS_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 160.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 211.3435019,
  'ideal_y_position': -202.2110751,
  'implicit_exposure': 'N',
  'max_data_rate': 1.504977109216559,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 3,
  'number_of_integrations': 1,
  'number_of_scas': 5,
  'oss_AperName': 'NRCB5_FULL_OSS',
  'oss_ideal_x_position': -205.67791,
  'oss_ideal_y_position': -206.7149915,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16314355579,
  'dec_center_rotation': 19.28736629192,
  'readout_pattern': 'SHALLOW2',
  'region_shape': 'POLYGON ICRS 124.18130199721 19.27014555963 124.14204968861 19.27039584681 124.14256717582 19.3068241118 124.18088287069 19.30688030701 ',
  'v2': -295.1627112,
  'v3': -697.9941031,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 188,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 128.841},
 {'program': 0,
  'observation': 8,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 7,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 4,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NIS_CEN',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 40.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 4.7750271,
  'ideal_y_position': 1.2586999,
  'implicit_exposure': 'N',
  'max_data_rate': 0.24032616386153713,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': -4.775,
  'oss_ideal_y_position': 1.2586999,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10229274884,
  'dec_center_rotation': 19.23089849052,
  'readout_pattern': 'NIS',
  'region_shape': 'POLYGON ICRS 124.12177544097 19.21211293973 124.08243630639 19.21231793859 124.08282488218 19.24970011068 124.1221633612 19.24952136915 ',
  'v2': -295.903468,
  'v3': -696.7095852,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 250,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 214.735},
 {'program': 0,
  'observation': 8,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 7,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 4,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCBS_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 160.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 212.0854383,
  'ideal_y_position': -200.9272381,
  'implicit_exposure': 'N',
  'max_data_rate': 1.504977109216559,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 3,
  'number_of_integrations': 1,
  'number_of_scas': 5,
  'oss_AperName': 'NRCB5_FULL_OSS',
  'oss_ideal_x_position': -206.4191699,
  'oss_ideal_y_position': -205.4307645,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16336142037,
  'dec_center_rotation': 19.2870094071,
  'readout_pattern': 'SHALLOW2',
  'region_shape': 'POLYGON ICRS 124.1815198004 19.26978865407 124.14226757745 19.27003898765 124.14278511188 19.30646725202 124.18110072353 19.30652340194 ',
  'v2': -295.903468,
  'v3': -696.7095852,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 157,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 128.841},
 {'program': 0,
  'observation': 8,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 8,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 5,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NIS_CEN',
  'apt_label': 'DIRECT_IMAGE',
  'data_volume_mib': 32.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 4.7750271,
  'ideal_y_position': 1.2586999,
  'implicit_exposure': 'N',
  'max_data_rate': 0.23538558244239186,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 4,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': -4.775,
  'oss_ideal_y_position': 1.2586999,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10229274884,
  'dec_center_rotation': 19.23089849052,
  'readout_pattern': 'NIS',
  'region_shape': 'POLYGON ICRS 124.12177544097 19.21211293973 124.08243630639 19.21231793859 124.08282488218 19.24970011068 124.1221633612 19.24952136915 ',
  'v2': -295.903468,
  'v3': -696.7095852,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 207,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 171.788},
 {'program': 0,
  'observation': 8,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 8,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 5,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NRCBS_FULL',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 160.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 212.0854383,
  'ideal_y_position': -200.9272381,
  'implicit_exposure': 'N',
  'max_data_rate': 1.504977109216559,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 3,
  'number_of_integrations': 1,
  'number_of_scas': 5,
  'oss_AperName': 'NRCB5_FULL_OSS',
  'oss_ideal_x_position': -206.4191699,
  'oss_ideal_y_position': -205.4307645,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.16336142037,
  'dec_center_rotation': 19.2870094071,
  'readout_pattern': 'SHALLOW2',
  'region_shape': 'POLYGON ICRS 124.1815198004 19.26978865407 124.14226757745 19.27003898765 124.14278511188 19.30646725202 124.18110072353 19.30652340194 ',
  'v2': -295.903468,
  'v3': -696.7095852,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 188,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 128.841},
 {'program': 0,
  'observation': 9,
  'visit': 1,
  'exposure': 0,
  'pointing_sequence_number': 0,
  'exposure_spec_order_number': 0,
  'target_id': 1,
  'target_order_number': 0,
  'AperName': 'NIS_SOSSTA',
  'apt_label': 'BASE',
  'dither_point_index': 0,
  'ideal_x_position': 0,
  'ideal_y_position': 0,
  'max_data_rate': 0.13109285714285715,
  'mosaic_tile_order_number': 0,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': -60.7578354,
  'oss_ideal_y_position': 11.2471661,
  'pointing_type': 'BASE',
  'v2': -351.786079,
  'v3': -686.173172,
  'dark_parallel_slot_duration': 0,
  'external_parallel_slot_duration': 0},
 {'program': 0,
  'observation': 9,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 1,
  'exposure_spec_order_number': 0,
  'target_id': 1,
  'target_order_number': 0,
  'AperName': 'NIS_SOSSTA',
  'apt_label': 'TARGET_ACQ_IMAGE',
  'data_volume_mib': 0.0390625,
  'dither_point_index': 0,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 0,
  'ideal_y_position': 0,
  'implicit_exposure': 'N',
  'max_data_rate': 0.13109285714285715,
  'mosaic_tile_order_number': 0,
  'number_of_detector_outputs': 1,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': -60.7578354,
  'oss_ideal_y_position': 11.2471661,
  'pointing_type': 'TARGET_ACQUISITION',
  'ra_center_rotation': 124.10089166666,
  'dec_center_rotation': 19.23126111111,
  'readout_pattern': 'NISRAPID',
  'region_shape': 'POLYGON ICRS 124.10150942209 19.23066347876 124.10028080117 19.23067112069 124.10029298666 19.23184034186 124.10152158777 19.23183278346 ',
  'v2': -351.786079,
  'v3': -686.173172,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 20,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 0.227},
 {'program': 0,
  'observation': 9,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 1,
  'exposure_spec_order_number': 0,
  'target_id': 1,
  'target_order_number': 0,
  'AperName': 'NIS_SOSSTA',
  'apt_label': 'TARGET_ACQ_IMAGE',
  'data_volume_mib': 0.0390625,
  'dither_point_index': 0,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -0.1308007,
  'ideal_y_position': -0.2615999,
  'implicit_exposure': 'Y',
  'max_data_rate': 0.13109285714285715,
  'mosaic_tile_order_number': 0,
  'number_of_detector_outputs': 1,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': -60.6270351,
  'oss_ideal_y_position': 10.9855662,
  'pointing_type': 'TARGET_ACQUISITION',
  'ra_center_rotation': 124.10085394171,
  'dec_center_rotation': 19.2313341302,
  'readout_pattern': 'NISRAPID',
  'region_shape': 'POLYGON ICRS 124.10147169755 19.23073649798 124.10024307608 19.23074413966 124.10025526131 19.23191336083 124.10148386297 19.23190580267 ',
  'v2': -351.6578471,
  'v3': -686.4360407,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 20,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 0.227},
 {'program': 0,
  'observation': 9,
  'visit': 1,
  'exposure': 3,
  'pointing_sequence_number': 1,
  'exposure_spec_order_number': 0,
  'target_id': 1,
  'target_order_number': 0,
  'AperName': 'NIS_SOSSTA',
  'apt_label': 'TARGET_ACQ_IMAGE',
  'data_volume_mib': 0.0390625,
  'dither_point_index': 0,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -0.1962011,
  'ideal_y_position': 0.329,
  'implicit_exposure': 'Y',
  'max_data_rate': 0.13109285714285715,
  'mosaic_tile_order_number': 0,
  'number_of_detector_outputs': 1,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': -60.5616357,
  'oss_ideal_y_position': 11.5761663,
  'pointing_type': 'TARGET_ACQUISITION',
  'ra_center_rotation': 124.10083300031,
  'dec_center_rotation': 19.23117026046,
  'readout_pattern': 'NISRAPID',
  'region_shape': 'POLYGON ICRS 124.10145075561 19.23057262832 124.10022213536 19.23058026985 124.10023432043 19.23174949103 124.10146292087 19.23174193301 ',
  'v2': -351.5866644,
  'v3': -685.8461097,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 20,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 0.227},
 {'program': 0,
  'observation': 9,
  'visit': 1,
  'exposure': 4,
  'pointing_sequence_number': 1,
  'exposure_spec_order_number': 0,
  'target_id': 1,
  'target_order_number': 0,
  'AperName': 'NIS_SOSSTA',
  'apt_label': 'TARGET_ACQ_IMAGE',
  'data_volume_mib': 0.0390625,
  'dither_point_index': 0,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 0,
  'ideal_y_position': 0,
  'implicit_exposure': 'Y',
  'max_data_rate': 0.13109285714285715,
  'mosaic_tile_order_number': 0,
  'number_of_detector_outputs': 1,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': -60.7578354,
  'oss_ideal_y_position': 11.2471661,
  'pointing_type': 'TARGET_ACQUISITION',
  'ra_center_rotation': 124.10089166666,
  'dec_center_rotation': 19.23126111111,
  'readout_pattern': 'NISRAPID',
  'region_shape': 'POLYGON ICRS 124.10150942209 19.23066347876 124.10028080117 19.23067112069 124.10029298666 19.23184034186 124.10152158777 19.23183278346 ',
  'v2': -351.786079,
  'v3': -686.173172,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 20,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 0.227},
 {'program': 0,
  'observation': 9,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 2,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NIS_SUBSTRIP256',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 100.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 0,
  'ideal_y_position': 0,
  'implicit_exposure': 'N',
  'max_data_rate': 0.21881474672140425,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 1,
  'number_of_groups': 10,
  'number_of_integrations': 10,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': -60.7578354,
  'oss_ideal_y_position': 11.2471661,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10089166666,
  'dec_center_rotation': 19.23126111111,
  'readout_pattern': 'NISRAPID',
  'region_shape': 'POLYGON ICRS 124.13887819628 19.22636805043 124.09856863934 19.22657177481 124.09865941448 19.23528443659 124.13897223981 19.23509015412 ',
  'v2': -351.786079,
  'v3': -686.173172,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 626,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 549.4},
 {'program': 0,
  'observation': 10,
  'visit': 1,
  'exposure': 0,
  'pointing_sequence_number': 0,
  'exposure_spec_order_number': 0,
  'target_id': 1,
  'target_order_number': 0,
  'AperName': 'NIS_CEN',
  'apt_label': 'BASE',
  'dither_point_index': 0,
  'ideal_x_position': 9.94e-05,
  'ideal_y_position': 9.9489999,
  'max_data_rate': 0.23538558244239186,
  'mosaic_tile_order_number': 0,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': -9.99e-05,
  'oss_ideal_y_position': 9.9489999,
  'pointing_type': 'BASE',
  'v2': -291.043641,
  'v3': -688.0664763,
  'dark_parallel_slot_duration': 0,
  'external_parallel_slot_duration': 0},
 {'program': 0,
  'observation': 10,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 1,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NIS_CEN',
  'apt_label': 'DIRECT_IMAGE',
  'data_volume_mib': 32.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 9.94e-05,
  'ideal_y_position': 9.9489999,
  'implicit_exposure': 'N',
  'max_data_rate': 0.23538558244239186,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 4,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': -9.99e-05,
  'oss_ideal_y_position': 9.9489999,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.1008630248,
  'dec_center_rotation': 19.22849763232,
  'readout_pattern': 'NIS',
  'region_shape': 'POLYGON ICRS 124.12034559565 19.20971223264 124.08100703426 19.20991692621 124.08139527904 19.24729910131 124.12073318452 19.24712066508 ',
  'v2': -291.043641,
  'v3': -688.0664763,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 207,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 171.788},
 {'program': 0,
  'observation': 10,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 1,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 1,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'MIRIM_ILLUM',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 12.59765625,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -188.2470843,
  'ideal_y_position': -299.4535461,
  'implicit_exposure': 'N',
  'max_data_rate': 0.8528303066931338,
  'mosaic_tile_order_number': 1,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'MIRIM_FULL_OSS',
  'oss_ideal_x_position': 188.2464439,
  'oss_ideal_y_position': -299.4540582,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.05310822772,
  'dec_center_rotation': 19.31854817161,
  'readout_pattern': 'FASTR1',
  'region_shape': 'POLYGON ICRS 124.0625453583 19.30209619594 124.04083183526 19.30379140365 124.04380532199 19.33500019666 124.06529023476 19.33340635276 ',
  'v2': -291.043641,
  'v3': -688.0664763,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 58,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 13.875},
 {'program': 0,
  'observation': 10,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 2,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NIS_CEN',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 80.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 9.94e-05,
  'ideal_y_position': 9.9489999,
  'implicit_exposure': 'N',
  'max_data_rate': 0.2509131240454199,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 10,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': -9.99e-05,
  'oss_ideal_y_position': 9.9489999,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.1008630248,
  'dec_center_rotation': 19.22849763232,
  'readout_pattern': 'NIS',
  'region_shape': 'POLYGON ICRS 124.12034559565 19.20971223264 124.08100703426 19.20991692621 124.08139527904 19.24729910131 124.12073318452 19.24712066508 ',
  'v2': -291.043641,
  'v3': -688.0664763,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 465,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 429.471},
 {'program': 0,
  'observation': 10,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 2,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'MIRIM_ILLUM',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 12.59765625,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -188.2470843,
  'ideal_y_position': -299.4535461,
  'implicit_exposure': 'N',
  'max_data_rate': 0.8528303066931338,
  'mosaic_tile_order_number': 1,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'MIRIM_FULL_OSS',
  'oss_ideal_x_position': 188.2464439,
  'oss_ideal_y_position': -299.4540582,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.05310822772,
  'dec_center_rotation': 19.31854817161,
  'readout_pattern': 'FASTR1',
  'region_shape': 'POLYGON ICRS 124.0625453583 19.30209619594 124.04083183526 19.30379140365 124.04380532199 19.33500019666 124.06529023476 19.33340635276 ',
  'v2': -291.043641,
  'v3': -688.0664763,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 58,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 13.875},
 {'program': 0,
  'observation': 10,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 3,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NIS_CEN',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 80.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 0.2403008,
  'ideal_y_position': 9.2721999,
  'implicit_exposure': 'N',
  'max_data_rate': 0.2509131240454199,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 10,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': -0.2402999,
  'oss_ideal_y_position': 9.2721999,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10093563627,
  'dec_center_rotation': 19.2286849697,
  'readout_pattern': 'NIS',
  'region_shape': 'POLYGON ICRS 124.12041822105 19.20989956234 124.08107961488 19.21010427141 124.08146787662 19.24748644636 124.12080582689 19.24730799462 ',
  'v2': -291.2904606,
  'v3': -688.7408909,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 465,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 429.471},
 {'program': 0,
  'observation': 10,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 3,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'MIRIM_ILLUM',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 12.59765625,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -188.0579925,
  'ideal_y_position': -300.1463659,
  'implicit_exposure': 'N',
  'max_data_rate': 0.8528303066931338,
  'mosaic_tile_order_number': 1,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'MIRIM_FULL_OSS',
  'oss_ideal_x_position': 188.0573521,
  'oss_ideal_y_position': -300.1468791,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.05318082466,
  'dec_center_rotation': 19.31873552793,
  'readout_pattern': 'FASTR1',
  'region_shape': 'POLYGON ICRS 124.06261795902 19.30228354874 124.04090441195 19.30397876499 124.04387791587 19.33518755683 124.06536285246 19.33359370447 ',
  'v2': -291.2904606,
  'v3': -688.7408909,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 43,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 13.875},
 {'program': 0,
  'observation': 10,
  'visit': 1,
  'exposure': 3,
  'pointing_sequence_number': 4,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NIS_CEN',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 80.0,
  'dither_point_index': 3,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -0.2401019,
  'ideal_y_position': 10.6258,
  'implicit_exposure': 'N',
  'max_data_rate': 0.2509131240454199,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 10,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': 0.2401,
  'oss_ideal_y_position': 10.6257999,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.1007904135,
  'dec_center_rotation': 19.22831029491,
  'readout_pattern': 'NIS',
  'region_shape': 'POLYGON ICRS 124.12027297042 19.20952490291 124.08093445381 19.20972958097 124.08132268162 19.24711175623 124.1206605423 19.2469333355 ',
  'v2': -290.7968213,
  'v3': -687.3920618,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 465,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 429.471},
 {'program': 0,
  'observation': 10,
  'visit': 1,
  'exposure': 3,
  'pointing_sequence_number': 4,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 2,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'MIRIM_ILLUM',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 12.59765625,
  'dither_point_index': 3,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -188.4361762,
  'ideal_y_position': -298.7607264,
  'implicit_exposure': 'N',
  'max_data_rate': 0.8528303066931338,
  'mosaic_tile_order_number': 1,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'MIRIM_FULL_OSS',
  'oss_ideal_x_position': 188.4355357,
  'oss_ideal_y_position': -298.7612373,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.05303563094,
  'dec_center_rotation': 19.31836081527,
  'readout_pattern': 'FASTR1',
  'region_shape': 'POLYGON ICRS 124.06247275775 19.30190884313 124.04075925874 19.30360404228 124.04373272827 19.33481283646 124.06521761723 19.33321900102 ',
  'v2': -290.7968213,
  'v3': -687.3920618,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 43,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 13.875},
 {'program': 0,
  'observation': 10,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 5,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 3,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NIS_CEN',
  'apt_label': 'DIRECT_IMAGE',
  'data_volume_mib': 32.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -0.2401019,
  'ideal_y_position': 10.6258,
  'implicit_exposure': 'N',
  'max_data_rate': 0.23538558244239186,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 4,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': 0.2401,
  'oss_ideal_y_position': 10.6257999,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.1007904135,
  'dec_center_rotation': 19.22831029491,
  'readout_pattern': 'NIS',
  'region_shape': 'POLYGON ICRS 124.12027297042 19.20952490291 124.08093445381 19.20972958097 124.08132268162 19.24711175623 124.1206605423 19.2469333355 ',
  'v2': -290.7968213,
  'v3': -687.3920618,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 207,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 171.788},
 {'program': 0,
  'observation': 10,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 5,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 3,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'MIRIM_ILLUM',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 12.59765625,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -188.4361762,
  'ideal_y_position': -298.7607264,
  'implicit_exposure': 'N',
  'max_data_rate': 0.8528303066931338,
  'mosaic_tile_order_number': 1,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'MIRIM_FULL_OSS',
  'oss_ideal_x_position': 188.4355357,
  'oss_ideal_y_position': -298.7612373,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.05303563094,
  'dec_center_rotation': 19.31836081527,
  'readout_pattern': 'FASTR1',
  'region_shape': 'POLYGON ICRS 124.06247275775 19.30190884313 124.04075925874 19.30360404228 124.04373272827 19.33481283646 124.06521761723 19.33321900102 ',
  'v2': -290.7968213,
  'v3': -687.3920618,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 58,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 13.875},
 {'program': 0,
  'observation': 10,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 6,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 3,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NIS_CEN',
  'apt_label': 'DIRECT_IMAGE',
  'data_volume_mib': 32.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 9.9075567,
  'ideal_y_position': -0.0463997,
  'implicit_exposure': 'N',
  'max_data_rate': 0.23538558244239186,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 4,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': -9.9075,
  'oss_ideal_y_position': -0.0463999,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10380639515,
  'dec_center_rotation': 19.231247017,
  'readout_pattern': 'NIS',
  'region_shape': 'POLYGON ICRS 124.12328895548 19.21246130648 124.08394973932 19.21266662856 124.08433866044 19.25004879746 124.1236772213 19.24986973273 ',
  'v2': -301.0485358,
  'v3': -697.964345,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 207,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 171.788},
 {'program': 0,
  'observation': 10,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 6,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 3,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'MIRIM_ILLUM',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 12.59765625,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -179.1121324,
  'ideal_y_position': -310.1595434,
  'implicit_exposure': 'N',
  'max_data_rate': 0.8528303066931338,
  'mosaic_tile_order_number': 1,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'MIRIM_FULL_OSS',
  'oss_ideal_x_position': 179.111517,
  'oss_ideal_y_position': -310.1600543,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.05605242491,
  'dec_center_rotation': 19.3212983257,
  'readout_pattern': 'FASTR1',
  'region_shape': 'POLYGON ICRS 124.06548941592 19.30484619324 124.04377555954 19.30654174776 124.0467496558 19.33775049327 124.06823489996 19.3361563062 ',
  'v2': -301.0485358,
  'v3': -697.964345,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 43,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 13.875},
 {'program': 0,
  'observation': 10,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 7,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 4,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NIS_CEN',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 80.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 9.9075567,
  'ideal_y_position': -0.0463997,
  'implicit_exposure': 'N',
  'max_data_rate': 0.2509131240454199,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 10,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': -9.9075,
  'oss_ideal_y_position': -0.0463999,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10380639515,
  'dec_center_rotation': 19.231247017,
  'readout_pattern': 'NIS',
  'region_shape': 'POLYGON ICRS 124.12328895548 19.21246130648 124.08394973932 19.21266662856 124.08433866044 19.25004879746 124.1236772213 19.24986973273 ',
  'v2': -301.0485358,
  'v3': -697.964345,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 465,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 429.471},
 {'program': 0,
  'observation': 10,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 7,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 4,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'MIRIM_ILLUM',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 12.59765625,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -179.1121324,
  'ideal_y_position': -310.1595434,
  'implicit_exposure': 'N',
  'max_data_rate': 0.8528303066931338,
  'mosaic_tile_order_number': 1,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'MIRIM_FULL_OSS',
  'oss_ideal_x_position': 179.111517,
  'oss_ideal_y_position': -310.1600543,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.05605242491,
  'dec_center_rotation': 19.3212983257,
  'readout_pattern': 'FASTR1',
  'region_shape': 'POLYGON ICRS 124.06548941592 19.30484619324 124.04377555954 19.30654174776 124.0467496558 19.33775049327 124.06823489996 19.3361563062 ',
  'v2': -301.0485358,
  'v3': -697.964345,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 58,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 13.875},
 {'program': 0,
  'observation': 10,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 8,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 4,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NIS_CEN',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 80.0,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 10.1477582,
  'ideal_y_position': -0.7231997,
  'implicit_exposure': 'N',
  'max_data_rate': 0.2509131240454199,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 10,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': -10.1476999,
  'oss_ideal_y_position': -0.7232,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10387901124,
  'dec_center_rotation': 19.2314343532,
  'readout_pattern': 'NIS',
  'region_shape': 'POLYGON ICRS 124.12336158544 19.21264863502 124.08402232451 19.2128539726 124.0844112626 19.25023614135 124.12374986825 19.25005706111 ',
  'v2': -301.2953556,
  'v3': -698.6387595,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 465,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 429.471},
 {'program': 0,
  'observation': 10,
  'visit': 1,
  'exposure': 2,
  'pointing_sequence_number': 8,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 4,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'MIRIM_ILLUM',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 12.59765625,
  'dither_point_index': 2,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -178.9230404,
  'ideal_y_position': -310.8523632,
  'implicit_exposure': 'N',
  'max_data_rate': 0.8528303066931338,
  'mosaic_tile_order_number': 1,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'MIRIM_FULL_OSS',
  'oss_ideal_x_position': 178.9224251,
  'oss_ideal_y_position': -310.8528753,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.05612502648,
  'dec_center_rotation': 19.32148568084,
  'readout_pattern': 'FASTR1',
  'region_shape': 'POLYGON ICRS 124.06556202123 19.30503354489 124.04384814081 19.30672910796 124.04682225427 19.3379378523 124.06830752225 19.33634365677 ',
  'v2': -301.2953556,
  'v3': -698.6387595,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 43,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 13.875},
 {'program': 0,
  'observation': 10,
  'visit': 1,
  'exposure': 3,
  'pointing_sequence_number': 9,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 4,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NIS_CEN',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 80.0,
  'dither_point_index': 3,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 9.6673551,
  'ideal_y_position': 0.6304002,
  'implicit_exposure': 'N',
  'max_data_rate': 0.2509131240454199,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 10,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': -9.6672999,
  'oss_ideal_y_position': 0.6303999,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10373377924,
  'dec_center_rotation': 19.23105968078,
  'readout_pattern': 'NIS',
  'region_shape': 'POLYGON ICRS 124.12321632568 19.21227397792 124.08387715429 19.21247928449 124.08426605845 19.24986145354 124.12360457451 19.24968240431 ',
  'v2': -300.801716,
  'v3': -697.2899305,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 465,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 429.471},
 {'program': 0,
  'observation': 10,
  'visit': 1,
  'exposure': 3,
  'pointing_sequence_number': 9,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 4,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'MIRIM_ILLUM',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 12.59765625,
  'dither_point_index': 3,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -179.3012244,
  'ideal_y_position': -309.4667237,
  'implicit_exposure': 'N',
  'max_data_rate': 0.8528303066931338,
  'mosaic_tile_order_number': 1,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'MIRIM_FULL_OSS',
  'oss_ideal_x_position': 179.3006088,
  'oss_ideal_y_position': -309.4672334,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.0559798235,
  'dec_center_rotation': 19.32111097053,
  'readout_pattern': 'FASTR1',
  'region_shape': 'POLYGON ICRS 124.06541681078 19.30465884156 124.04370297843 19.30635438753 124.0466770575 19.33756313422 124.06816227784 19.3359689556 ',
  'v2': -300.801716,
  'v3': -697.2899305,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 43,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 13.875},
 {'program': 0,
  'observation': 10,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 10,
  'visit_file_sequence': 1,
  'exposure_spec_order_number': 5,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'NIS_CEN',
  'apt_label': 'DIRECT_IMAGE',
  'data_volume_mib': 32.0,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': 9.6673551,
  'ideal_y_position': 0.6304002,
  'implicit_exposure': 'N',
  'max_data_rate': 0.23538558244239186,
  'mosaic_tile_order_number': 1,
  'number_of_detector_outputs': 4,
  'number_of_groups': 4,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'NIS_CEN_OSS',
  'oss_ideal_x_position': -9.6672999,
  'oss_ideal_y_position': 0.6303999,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.10373377924,
  'dec_center_rotation': 19.23105968078,
  'readout_pattern': 'NIS',
  'region_shape': 'POLYGON ICRS 124.12321632568 19.21227397792 124.08387715429 19.21247928449 124.08426605845 19.24986145354 124.12360457451 19.24968240431 ',
  'v2': -300.801716,
  'v3': -697.2899305,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 207,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 171.788},
 {'program': 0,
  'observation': 10,
  'visit': 1,
  'exposure': 1,
  'pointing_sequence_number': 10,
  'visit_file_sequence': 2,
  'exposure_spec_order_number': 5,
  'target_id': 1,
  'target_order_number': 1,
  'AperName': 'MIRIM_ILLUM',
  'apt_label': 'SCIENCE',
  'data_volume_mib': 12.59765625,
  'dither_point_index': 1,
  'fixed_orient_used': 0.0,
  'ideal_x_position': -179.3012244,
  'ideal_y_position': -309.4667237,
  'implicit_exposure': 'N',
  'max_data_rate': 0.8528303066931338,
  'mosaic_tile_order_number': 1,
  'number_of_groups': 5,
  'number_of_integrations': 1,
  'number_of_scas': 1,
  'oss_AperName': 'MIRIM_FULL_OSS',
  'oss_ideal_x_position': 179.3006088,
  'oss_ideal_y_position': -309.4672334,
  'pointing_type': 'SCIENCE',
  'ra_center_rotation': 124.0559798235,
  'dec_center_rotation': 19.32111097053,
  'readout_pattern': 'FASTR1',
  'region_shape': 'POLYGON ICRS 124.06541681078 19.30465884156 124.04370297843 19.30635438753 124.0466770575 19.33756313422 124.06816227784 19.3359689556 ',
  'v2': -300.801716,
  'v3': -697.2899305,
  'dark_parallel_slot_duration': 0,
  'exposure_duration': 58,
  'external_parallel_slot_duration': 0,
  'photon_collecting_duration': 13.875}]

Here we are showing the same exposure level data but using a class method of aptJsonFile called build_dataframe to display the dictionaries as a Pandas DataFrame. Each row of the data frame represents a single exposure.

exposures_df = parsed_json.build_dataframe(tablename)
exposures_df  # this is a dataframe
program observation visit exposure pointing_sequence_number exposure_spec_order_number target_id target_order_number AperName apt_label ... number_of_groups number_of_integrations number_of_scas ra_center_rotation dec_center_rotation readout_pattern region_shape exposure_duration photon_collecting_duration visit_file_sequence
0 0 1 1 0 0 0 1 0 NRCALL_FULL BASE ... NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
1 0 1 1 1 1 1 1 1 NRCALL_FULL SCIENCE ... 6.0 1.0 10.0 124.083819 19.237767 SHALLOW4 POLYGON ICRS 124.12942092617 19.21930240069 12... 381.0 311.366 NaN
2 0 1 1 2 2 1 1 1 NRCALL_FULL SCIENCE ... 6.0 1.0 10.0 124.083885 19.237721 SHALLOW4 POLYGON ICRS 124.12948752365 19.21925638885 12... 350.0 311.366 NaN
3 0 1 2 0 0 0 1 0 NRCALL_FULL BASE ... NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
4 0 1 2 1 1 1 1 1 NRCALL_FULL SCIENCE ... 6.0 1.0 10.0 124.100892 19.231261 SHALLOW4 POLYGON ICRS 124.14649015843 19.21279216436 12... 381.0 311.366 NaN
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
206 0 10 1 2 8 4 1 1 MIRIM_ILLUM SCIENCE ... 5.0 1.0 1.0 124.056125 19.321486 FASTR1 POLYGON ICRS 124.06556202123 19.30503354489 12... 43.0 13.875 2.0
207 0 10 1 3 9 4 1 1 NIS_CEN SCIENCE ... 10.0 1.0 1.0 124.103734 19.23106 NIS POLYGON ICRS 124.12321632568 19.21227397792 12... 465.0 429.471 1.0
208 0 10 1 3 9 4 1 1 MIRIM_ILLUM SCIENCE ... 5.0 1.0 1.0 124.05598 19.321111 FASTR1 POLYGON ICRS 124.06541681078 19.30465884156 12... 43.0 13.875 2.0
209 0 10 1 1 10 5 1 1 NIS_CEN DIRECT_IMAGE ... 4.0 1.0 1.0 124.103734 19.23106 NIS POLYGON ICRS 124.12321632568 19.21227397792 12... 207.0 171.788 1.0
210 0 10 1 1 10 5 1 1 MIRIM_ILLUM SCIENCE ... 5.0 1.0 1.0 124.05598 19.321111 FASTR1 POLYGON ICRS 124.06541681078 19.30465884156 12... 58.0 13.875 2.0

211 rows × 37 columns

To display the entire dataframe:

import pandas as pd

pd.set_option('display.max_rows', len(exposures_df))
exposures_df

Generating APT Program Object#

The cells above highlight the data that the JWST Rogue Path Tool uses to detect claws, the cells below show how we use the data from an APT file to detect claws in NIRCam imaging data.

To learn more about our API, we build our documentation using ReadtheDocs.

First, we start by importing our APT program of choice (apt_json_filename) and then we will sweep every angle of attitude (0.0 –> 359.0) degrees in intervals of 1.0 degree steps (angular_step).

In order to save time and memory in this example notebook, we use the usr_defined_obs keyword below to specify that we want to run the Rogue Path Tool only on Observations 1 and 5 in the APT file. usr_defined_options accepts a list of Observation numbers on which to run. Alternately, if you wish to run the tool on all Observations in the APT file, you can omit the usr_defined_options keyword.

program = aptProgram(apt_json_filename, angular_step=1.0, usr_defined_obs=[1, 5])

Run the Rogue Path Tool.

program.run()
Sweeping angles 0.0 --> 359.0 for Observation: 1 and Exposure: 1
  0%|          | 0/360 [00:00<?, ?it/s]
  2%|▏         | 6/360 [00:00<00:06, 54.95it/s]
  4%|▎         | 13/360 [00:00<00:05, 59.95it/s]
  6%|▌         | 20/360 [00:00<00:05, 61.55it/s]
  8%|▊         | 27/360 [00:00<00:05, 62.33it/s]
  9%|▉         | 34/360 [00:00<00:05, 62.77it/s]
 11%|█▏        | 41/360 [00:00<00:05, 62.92it/s]
 13%|█▎        | 48/360 [00:00<00:04, 63.07it/s]
 15%|█▌        | 55/360 [00:00<00:04, 63.09it/s]
 17%|█▋        | 62/360 [00:00<00:04, 63.24it/s]
 19%|█▉        | 69/360 [00:01<00:04, 63.24it/s]
 21%|██        | 76/360 [00:01<00:04, 63.42it/s]
 23%|██▎       | 83/360 [00:01<00:04, 63.47it/s]
 25%|██▌       | 90/360 [00:01<00:04, 63.60it/s]
 27%|██▋       | 97/360 [00:01<00:04, 63.60it/s]
 29%|██▉       | 104/360 [00:01<00:04, 63.62it/s]
 31%|███       | 111/360 [00:01<00:03, 63.26it/s]
 33%|███▎      | 118/360 [00:01<00:03, 62.95it/s]
 35%|███▍      | 125/360 [00:01<00:03, 63.12it/s]
 37%|███▋      | 132/360 [00:02<00:03, 62.54it/s]
 39%|███▊      | 139/360 [00:02<00:03, 57.57it/s]
 41%|████      | 146/360 [00:02<00:03, 58.52it/s]
 42%|████▎     | 153/360 [00:02<00:03, 59.83it/s]
 44%|████▍     | 160/360 [00:02<00:03, 52.28it/s]
 46%|████▋     | 167/360 [00:02<00:03, 55.30it/s]
 48%|████▊     | 174/360 [00:02<00:03, 57.54it/s]
 50%|█████     | 181/360 [00:02<00:03, 59.19it/s]
 52%|█████▏    | 188/360 [00:03<00:02, 60.46it/s]
 54%|█████▍    | 195/360 [00:03<00:02, 61.39it/s]
 56%|█████▌    | 202/360 [00:03<00:02, 62.02it/s]
 58%|█████▊    | 209/360 [00:03<00:02, 62.51it/s]
 60%|██████    | 216/360 [00:03<00:02, 62.77it/s]
 62%|██████▏   | 223/360 [00:03<00:02, 62.81it/s]
 64%|██████▍   | 230/360 [00:03<00:02, 62.13it/s]
 66%|██████▌   | 237/360 [00:03<00:01, 61.66it/s]
 68%|██████▊   | 244/360 [00:03<00:01, 62.25it/s]
 70%|██████▉   | 251/360 [00:04<00:01, 62.60it/s]
 72%|███████▏  | 258/360 [00:04<00:01, 62.90it/s]
 74%|███████▎  | 265/360 [00:04<00:01, 63.00it/s]
 76%|███████▌  | 272/360 [00:04<00:01, 63.22it/s]
 78%|███████▊  | 279/360 [00:04<00:01, 63.31it/s]
 79%|███████▉  | 286/360 [00:04<00:01, 63.33it/s]
 81%|████████▏ | 293/360 [00:04<00:01, 63.40it/s]
 83%|████████▎ | 300/360 [00:04<00:00, 62.82it/s]
 85%|████████▌ | 307/360 [00:04<00:00, 62.95it/s]
 87%|████████▋ | 314/360 [00:05<00:00, 63.15it/s]
 89%|████████▉ | 321/360 [00:05<00:00, 63.27it/s]
 91%|█████████ | 328/360 [00:05<00:00, 63.42it/s]
 93%|█████████▎| 335/360 [00:05<00:00, 63.52it/s]
 95%|█████████▌| 342/360 [00:05<00:00, 63.63it/s]
 97%|█████████▋| 349/360 [00:05<00:00, 63.60it/s]
 99%|█████████▉| 356/360 [00:05<00:00, 63.50it/s]
100%|██████████| 360/360 [00:05<00:00, 61.97it/s]

Sweeping angles 0.0 --> 359.0 for Observation: 1 and Exposure: 2
  0%|          | 0/360 [00:00<?, ?it/s]
  2%|▏         | 7/360 [00:00<00:05, 61.73it/s]
  4%|▍         | 14/360 [00:00<00:05, 62.41it/s]
  6%|▌         | 21/360 [00:00<00:05, 62.89it/s]
  8%|▊         | 28/360 [00:00<00:05, 63.10it/s]
 10%|▉         | 35/360 [00:00<00:05, 63.27it/s]
 12%|█▏        | 42/360 [00:00<00:05, 63.32it/s]
 14%|█▎        | 49/360 [00:00<00:04, 63.38it/s]
 16%|█▌        | 56/360 [00:00<00:04, 63.26it/s]
 18%|█▊        | 63/360 [00:00<00:04, 63.36it/s]
 19%|█▉        | 70/360 [00:01<00:04, 63.47it/s]
 21%|██▏       | 77/360 [00:01<00:04, 63.52it/s]
 23%|██▎       | 84/360 [00:01<00:04, 63.57it/s]
 25%|██▌       | 91/360 [00:01<00:04, 63.65it/s]
 27%|██▋       | 98/360 [00:01<00:04, 63.71it/s]
 29%|██▉       | 105/360 [00:01<00:04, 63.74it/s]
 31%|███       | 112/360 [00:01<00:03, 63.71it/s]
 33%|███▎      | 119/360 [00:01<00:03, 63.63it/s]
 35%|███▌      | 126/360 [00:02<00:03, 60.23it/s]
 37%|███▋      | 133/360 [00:02<00:03, 60.71it/s]
 39%|███▉      | 140/360 [00:02<00:03, 61.50it/s]
 41%|████      | 147/360 [00:02<00:03, 62.04it/s]
 43%|████▎     | 154/360 [00:02<00:03, 62.50it/s]
 45%|████▍     | 161/360 [00:02<00:03, 62.90it/s]
 47%|████▋     | 168/360 [00:02<00:03, 63.09it/s]
 49%|████▊     | 175/360 [00:02<00:02, 63.26it/s]
 51%|█████     | 182/360 [00:02<00:02, 63.26it/s]
 52%|█████▎    | 189/360 [00:03<00:02, 63.29it/s]
 54%|█████▍    | 196/360 [00:03<00:02, 63.32it/s]
 56%|█████▋    | 203/360 [00:03<00:02, 63.33it/s]
 58%|█████▊    | 210/360 [00:03<00:02, 63.37it/s]
 60%|██████    | 217/360 [00:03<00:02, 63.42it/s]
 62%|██████▏   | 224/360 [00:03<00:02, 63.44it/s]
 64%|██████▍   | 231/360 [00:03<00:02, 63.49it/s]
 66%|██████▌   | 238/360 [00:03<00:01, 63.52it/s]
 68%|██████▊   | 245/360 [00:03<00:01, 63.51it/s]
 70%|███████   | 252/360 [00:03<00:01, 63.14it/s]
 72%|███████▏  | 259/360 [00:04<00:01, 63.33it/s]
 74%|███████▍  | 266/360 [00:04<00:01, 63.42it/s]
 76%|███████▌  | 273/360 [00:04<00:01, 63.50it/s]
 78%|███████▊  | 280/360 [00:04<00:01, 63.48it/s]
 80%|███████▉  | 287/360 [00:04<00:01, 63.55it/s]
 82%|████████▏ | 294/360 [00:04<00:01, 63.33it/s]
 84%|████████▎ | 301/360 [00:04<00:00, 63.38it/s]
 86%|████████▌ | 308/360 [00:04<00:00, 63.39it/s]
 88%|████████▊ | 315/360 [00:04<00:00, 63.45it/s]
 89%|████████▉ | 322/360 [00:05<00:00, 63.52it/s]
 91%|█████████▏| 329/360 [00:05<00:00, 63.64it/s]
 93%|█████████▎| 336/360 [00:05<00:00, 63.60it/s]
 95%|█████████▌| 343/360 [00:05<00:00, 63.68it/s]
 97%|█████████▋| 350/360 [00:05<00:00, 63.73it/s]
 99%|█████████▉| 357/360 [00:05<00:00, 63.75it/s]
100%|██████████| 360/360 [00:05<00:00, 63.19it/s]

Sweeping angles 0.0 --> 359.0 for Observation: 1 and Exposure: 4
  0%|          | 0/360 [00:00<?, ?it/s]
  2%|▏         | 7/360 [00:00<00:05, 60.33it/s]
  4%|▍         | 14/360 [00:00<00:05, 61.54it/s]
  6%|▌         | 21/360 [00:00<00:05, 62.38it/s]
  8%|▊         | 28/360 [00:00<00:05, 62.75it/s]
 10%|▉         | 35/360 [00:00<00:05, 62.96it/s]
 12%|█▏        | 42/360 [00:00<00:05, 63.08it/s]
 14%|█▎        | 49/360 [00:00<00:04, 63.14it/s]
 16%|█▌        | 56/360 [00:00<00:04, 63.23it/s]
 18%|█▊        | 63/360 [00:01<00:04, 63.28it/s]
 19%|█▉        | 70/360 [00:01<00:04, 63.37it/s]
 21%|██▏       | 77/360 [00:01<00:04, 63.31it/s]
 23%|██▎       | 84/360 [00:01<00:04, 63.36it/s]
 25%|██▌       | 91/360 [00:01<00:04, 63.47it/s]
 27%|██▋       | 98/360 [00:01<00:04, 63.54it/s]
 29%|██▉       | 105/360 [00:01<00:04, 63.62it/s]
 31%|███       | 112/360 [00:01<00:03, 63.63it/s]
 33%|███▎      | 119/360 [00:01<00:03, 61.59it/s]
 35%|███▌      | 126/360 [00:02<00:03, 62.13it/s]
 37%|███▋      | 133/360 [00:02<00:03, 62.51it/s]
 39%|███▉      | 140/360 [00:02<00:03, 62.58it/s]
 41%|████      | 147/360 [00:02<00:03, 62.80it/s]
 43%|████▎     | 154/360 [00:02<00:03, 63.08it/s]
 45%|████▍     | 161/360 [00:02<00:03, 63.29it/s]
 47%|████▋     | 168/360 [00:02<00:03, 63.39it/s]
 49%|████▊     | 175/360 [00:02<00:02, 63.48it/s]
 51%|█████     | 182/360 [00:02<00:02, 63.59it/s]
 52%|█████▎    | 189/360 [00:02<00:02, 63.50it/s]
 54%|█████▍    | 196/360 [00:03<00:02, 63.40it/s]
 56%|█████▋    | 203/360 [00:03<00:02, 63.42it/s]
 58%|█████▊    | 210/360 [00:03<00:02, 63.39it/s]
 60%|██████    | 217/360 [00:03<00:02, 63.41it/s]
 62%|██████▏   | 224/360 [00:03<00:02, 63.41it/s]
 64%|██████▍   | 231/360 [00:03<00:02, 63.38it/s]
 66%|██████▌   | 238/360 [00:03<00:01, 63.31it/s]
 68%|██████▊   | 245/360 [00:03<00:01, 63.48it/s]
 70%|███████   | 252/360 [00:03<00:01, 63.60it/s]
 72%|███████▏  | 259/360 [00:04<00:01, 63.64it/s]
 74%|███████▍  | 266/360 [00:04<00:01, 63.64it/s]
 76%|███████▌  | 273/360 [00:04<00:01, 63.64it/s]
 78%|███████▊  | 280/360 [00:04<00:01, 63.32it/s]
 80%|███████▉  | 287/360 [00:04<00:01, 63.05it/s]
 82%|████████▏ | 294/360 [00:04<00:01, 62.95it/s]
 84%|████████▎ | 301/360 [00:04<00:00, 63.01it/s]
 86%|████████▌ | 308/360 [00:04<00:00, 63.17it/s]
 88%|████████▊ | 315/360 [00:04<00:00, 63.29it/s]
 89%|████████▉ | 322/360 [00:05<00:00, 63.38it/s]
 91%|█████████▏| 329/360 [00:05<00:00, 63.51it/s]
 93%|█████████▎| 336/360 [00:05<00:00, 63.59it/s]
 95%|█████████▌| 343/360 [00:05<00:00, 63.70it/s]
 97%|█████████▋| 350/360 [00:05<00:00, 63.73it/s]
 99%|█████████▉| 357/360 [00:05<00:00, 63.65it/s]
100%|██████████| 360/360 [00:05<00:00, 63.25it/s]

Sweeping angles 0.0 --> 359.0 for Observation: 1 and Exposure: 5
  0%|          | 0/360 [00:00<?, ?it/s]
  2%|▏         | 7/360 [00:00<00:05, 60.75it/s]
  4%|▍         | 14/360 [00:00<00:05, 62.22it/s]
  6%|▌         | 21/360 [00:00<00:05, 62.40it/s]
  8%|▊         | 28/360 [00:00<00:05, 62.64it/s]
 10%|▉         | 35/360 [00:00<00:05, 62.00it/s]
 12%|█▏        | 42/360 [00:00<00:05, 62.55it/s]
 14%|█▎        | 49/360 [00:00<00:04, 62.90it/s]
 16%|█▌        | 56/360 [00:00<00:04, 63.24it/s]
 18%|█▊        | 63/360 [00:01<00:04, 63.36it/s]
 19%|█▉        | 70/360 [00:01<00:04, 63.51it/s]
 21%|██▏       | 77/360 [00:01<00:04, 63.33it/s]
 23%|██▎       | 84/360 [00:01<00:04, 61.18it/s]
 25%|██▌       | 91/360 [00:01<00:04, 61.70it/s]
 27%|██▋       | 98/360 [00:01<00:04, 61.35it/s]
 29%|██▉       | 105/360 [00:01<00:04, 61.43it/s]
 31%|███       | 112/360 [00:01<00:04, 60.53it/s]
 33%|███▎      | 119/360 [00:01<00:03, 60.39it/s]
 35%|███▌      | 126/360 [00:02<00:03, 60.94it/s]
 37%|███▋      | 133/360 [00:02<00:03, 61.31it/s]
 39%|███▉      | 140/360 [00:02<00:03, 61.98it/s]
 41%|████      | 147/360 [00:02<00:03, 62.53it/s]
 43%|████▎     | 154/360 [00:02<00:03, 62.92it/s]
 45%|████▍     | 161/360 [00:02<00:03, 63.23it/s]
 47%|████▋     | 168/360 [00:02<00:03, 63.41it/s]
 49%|████▊     | 175/360 [00:02<00:02, 63.40it/s]
 51%|█████     | 182/360 [00:02<00:02, 63.48it/s]
 52%|█████▎    | 189/360 [00:03<00:02, 63.51it/s]
 54%|█████▍    | 196/360 [00:03<00:02, 63.57it/s]
 56%|█████▋    | 203/360 [00:03<00:02, 63.65it/s]
 58%|█████▊    | 210/360 [00:03<00:02, 63.64it/s]
 60%|██████    | 217/360 [00:03<00:02, 63.70it/s]
 62%|██████▏   | 224/360 [00:03<00:02, 63.67it/s]
 64%|██████▍   | 231/360 [00:03<00:02, 63.66it/s]
 66%|██████▌   | 238/360 [00:03<00:01, 63.65it/s]
 68%|██████▊   | 245/360 [00:03<00:01, 63.64it/s]
 70%|███████   | 252/360 [00:04<00:01, 63.66it/s]
 72%|███████▏  | 259/360 [00:04<00:01, 63.67it/s]
 74%|███████▍  | 266/360 [00:04<00:01, 63.72it/s]
 76%|███████▌  | 273/360 [00:04<00:01, 63.68it/s]
 78%|███████▊  | 280/360 [00:04<00:01, 63.64it/s]
 80%|███████▉  | 287/360 [00:04<00:01, 63.66it/s]
 82%|████████▏ | 294/360 [00:04<00:01, 62.97it/s]
 84%|████████▎ | 301/360 [00:04<00:00, 63.21it/s]
 86%|████████▌ | 308/360 [00:04<00:00, 63.36it/s]
 88%|████████▊ | 315/360 [00:05<00:00, 63.49it/s]
 89%|████████▉ | 322/360 [00:05<00:00, 63.61it/s]
 91%|█████████▏| 329/360 [00:05<00:00, 63.66it/s]
 93%|█████████▎| 336/360 [00:05<00:00, 63.74it/s]
 95%|█████████▌| 343/360 [00:05<00:00, 63.73it/s]
 97%|█████████▋| 350/360 [00:05<00:00, 63.92it/s]
 99%|█████████▉| 357/360 [00:05<00:00, 63.95it/s]
100%|██████████| 360/360 [00:05<00:00, 63.00it/s]

Sweeping angles 0.0 --> 359.0 for Observation: 1 and Exposure: 7
  0%|          | 0/360 [00:00<?, ?it/s]
  2%|▏         | 7/360 [00:00<00:05, 67.47it/s]
  4%|▍         | 14/360 [00:00<00:05, 64.88it/s]
  6%|▌         | 21/360 [00:00<00:05, 64.19it/s]
  8%|▊         | 28/360 [00:00<00:05, 63.99it/s]
 10%|▉         | 35/360 [00:00<00:05, 63.91it/s]
 12%|█▏        | 42/360 [00:00<00:04, 63.81it/s]
 14%|█▎        | 49/360 [00:00<00:04, 63.74it/s]
 16%|█▌        | 56/360 [00:00<00:04, 63.75it/s]
 18%|█▊        | 63/360 [00:00<00:04, 63.73it/s]
 19%|█▉        | 70/360 [00:01<00:04, 63.78it/s]
 21%|██▏       | 77/360 [00:01<00:04, 63.82it/s]
 23%|██▎       | 84/360 [00:01<00:04, 63.82it/s]
 25%|██▌       | 91/360 [00:01<00:04, 63.82it/s]
 27%|██▋       | 98/360 [00:01<00:04, 63.79it/s]
 29%|██▉       | 105/360 [00:01<00:04, 63.74it/s]
 31%|███       | 112/360 [00:01<00:03, 63.60it/s]
 33%|███▎      | 119/360 [00:01<00:03, 63.49it/s]
 35%|███▌      | 126/360 [00:01<00:03, 63.40it/s]
 37%|███▋      | 133/360 [00:02<00:03, 63.36it/s]
 39%|███▉      | 140/360 [00:02<00:03, 63.38it/s]
 41%|████      | 147/360 [00:02<00:03, 63.39it/s]
 43%|████▎     | 154/360 [00:02<00:03, 63.45it/s]
 45%|████▍     | 161/360 [00:02<00:03, 63.68it/s]
 47%|████▋     | 168/360 [00:02<00:03, 63.70it/s]
 49%|████▊     | 175/360 [00:02<00:02, 63.71it/s]
 51%|█████     | 182/360 [00:02<00:02, 63.72it/s]
 52%|█████▎    | 189/360 [00:02<00:02, 63.70it/s]
 54%|█████▍    | 196/360 [00:03<00:02, 63.62it/s]
 56%|█████▋    | 203/360 [00:03<00:02, 63.57it/s]
 58%|█████▊    | 210/360 [00:03<00:02, 63.63it/s]
 60%|██████    | 217/360 [00:03<00:02, 63.67it/s]
 62%|██████▏   | 224/360 [00:03<00:02, 63.74it/s]
 64%|██████▍   | 231/360 [00:03<00:02, 63.79it/s]
 66%|██████▌   | 238/360 [00:03<00:01, 63.80it/s]
 68%|██████▊   | 245/360 [00:03<00:01, 63.88it/s]
 70%|███████   | 252/360 [00:03<00:01, 63.93it/s]
 72%|███████▏  | 259/360 [00:04<00:01, 64.03it/s]
 74%|███████▍  | 266/360 [00:04<00:01, 64.05it/s]
 76%|███████▌  | 273/360 [00:04<00:01, 64.06it/s]
 78%|███████▊  | 280/360 [00:04<00:01, 64.01it/s]
 80%|███████▉  | 287/360 [00:04<00:01, 63.94it/s]
 82%|████████▏ | 294/360 [00:04<00:01, 63.87it/s]
 84%|████████▎ | 301/360 [00:04<00:00, 63.79it/s]
 86%|████████▌ | 308/360 [00:04<00:00, 63.78it/s]
 88%|████████▊ | 315/360 [00:04<00:00, 63.77it/s]
 89%|████████▉ | 322/360 [00:05<00:00, 63.73it/s]
 91%|█████████▏| 329/360 [00:05<00:00, 63.71it/s]
 93%|█████████▎| 336/360 [00:05<00:00, 63.69it/s]
 95%|█████████▌| 343/360 [00:05<00:00, 63.81it/s]
 97%|█████████▋| 350/360 [00:05<00:00, 63.88it/s]
 99%|█████████▉| 357/360 [00:05<00:00, 63.89it/s]
100%|██████████| 360/360 [00:05<00:00, 63.78it/s]

Sweeping angles 0.0 --> 359.0 for Observation: 1 and Exposure: 8
  0%|          | 0/360 [00:00<?, ?it/s]
  2%|▏         | 7/360 [00:00<00:05, 61.43it/s]
  4%|▍         | 14/360 [00:00<00:05, 62.63it/s]
  6%|▌         | 21/360 [00:00<00:05, 63.13it/s]
  8%|▊         | 28/360 [00:00<00:05, 63.26it/s]
 10%|▉         | 35/360 [00:00<00:05, 63.40it/s]
 12%|█▏        | 42/360 [00:00<00:05, 63.42it/s]
 14%|█▎        | 49/360 [00:00<00:04, 63.45it/s]
 16%|█▌        | 56/360 [00:00<00:04, 63.45it/s]
 18%|█▊        | 63/360 [00:00<00:04, 63.50it/s]
 19%|█▉        | 70/360 [00:01<00:04, 63.39it/s]
 21%|██▏       | 77/360 [00:01<00:04, 63.40it/s]
 23%|██▎       | 84/360 [00:01<00:04, 63.28it/s]
 25%|██▌       | 91/360 [00:01<00:04, 63.26it/s]
 27%|██▋       | 98/360 [00:01<00:04, 63.35it/s]
 29%|██▉       | 105/360 [00:01<00:04, 62.87it/s]
 31%|███       | 112/360 [00:01<00:03, 62.99it/s]
 33%|███▎      | 119/360 [00:01<00:03, 62.28it/s]
 35%|███▌      | 126/360 [00:01<00:03, 62.66it/s]
 37%|███▋      | 133/360 [00:02<00:03, 62.85it/s]
 39%|███▉      | 140/360 [00:02<00:03, 62.98it/s]
 41%|████      | 147/360 [00:02<00:03, 63.19it/s]
 43%|████▎     | 154/360 [00:02<00:03, 62.11it/s]
 45%|████▍     | 161/360 [00:02<00:03, 62.44it/s]
 47%|████▋     | 168/360 [00:02<00:03, 62.66it/s]
 49%|████▊     | 175/360 [00:02<00:02, 62.91it/s]
 51%|█████     | 182/360 [00:02<00:02, 62.99it/s]
 52%|█████▎    | 189/360 [00:02<00:02, 63.07it/s]
 54%|█████▍    | 196/360 [00:03<00:02, 63.05it/s]
 56%|█████▋    | 203/360 [00:03<00:02, 62.75it/s]
 58%|█████▊    | 210/360 [00:03<00:02, 62.89it/s]
 60%|██████    | 217/360 [00:03<00:02, 62.90it/s]
 62%|██████▏   | 224/360 [00:03<00:02, 63.03it/s]
 64%|██████▍   | 231/360 [00:03<00:02, 63.11it/s]
 66%|██████▌   | 238/360 [00:03<00:01, 63.26it/s]
 68%|██████▊   | 245/360 [00:03<00:01, 63.37it/s]
 70%|███████   | 252/360 [00:03<00:01, 63.35it/s]
 72%|███████▏  | 259/360 [00:04<00:01, 63.36it/s]
 74%|███████▍  | 266/360 [00:04<00:01, 63.38it/s]
 76%|███████▌  | 273/360 [00:04<00:01, 63.39it/s]
 78%|███████▊  | 280/360 [00:04<00:01, 63.43it/s]
 80%|███████▉  | 287/360 [00:04<00:01, 63.46it/s]
 82%|████████▏ | 294/360 [00:04<00:01, 63.40it/s]
 84%|████████▎ | 301/360 [00:04<00:00, 63.41it/s]
 86%|████████▌ | 308/360 [00:04<00:00, 63.03it/s]
 88%|████████▊ | 315/360 [00:04<00:00, 63.03it/s]
 89%|████████▉ | 322/360 [00:05<00:00, 63.08it/s]
 91%|█████████▏| 329/360 [00:05<00:00, 63.10it/s]
 93%|█████████▎| 336/360 [00:05<00:00, 62.86it/s]
 95%|█████████▌| 343/360 [00:05<00:00, 63.05it/s]
 97%|█████████▋| 350/360 [00:05<00:00, 63.14it/s]
 99%|█████████▉| 357/360 [00:05<00:00, 63.26it/s]
100%|██████████| 360/360 [00:05<00:00, 63.09it/s]

Sweeping angles 0.0 --> 359.0 for Observation: 5 and Exposure: 125
  0%|          | 0/360 [00:00<?, ?it/s]
  2%|▏         | 8/360 [00:00<00:04, 76.19it/s]
  4%|▍         | 16/360 [00:00<00:04, 75.56it/s]
  7%|▋         | 24/360 [00:00<00:04, 75.43it/s]
  9%|▉         | 32/360 [00:00<00:04, 75.13it/s]
 11%|█         | 40/360 [00:00<00:04, 74.33it/s]
 13%|█▎        | 48/360 [00:00<00:04, 74.97it/s]
 16%|█▌        | 56/360 [00:00<00:04, 75.18it/s]
 18%|█▊        | 64/360 [00:00<00:03, 75.17it/s]
 20%|██        | 72/360 [00:00<00:03, 75.41it/s]
 22%|██▏       | 80/360 [00:01<00:03, 75.64it/s]
 24%|██▍       | 88/360 [00:01<00:03, 75.73it/s]
 27%|██▋       | 96/360 [00:01<00:03, 76.04it/s]
 29%|██▉       | 104/360 [00:01<00:03, 76.18it/s]
 31%|███       | 112/360 [00:01<00:03, 74.98it/s]
 33%|███▎      | 120/360 [00:01<00:03, 75.04it/s]
 36%|███▌      | 128/360 [00:01<00:03, 75.06it/s]
 38%|███▊      | 136/360 [00:01<00:02, 75.12it/s]
 40%|████      | 144/360 [00:01<00:02, 75.05it/s]
 42%|████▏     | 152/360 [00:02<00:02, 75.37it/s]
 44%|████▍     | 160/360 [00:02<00:02, 75.74it/s]
 47%|████▋     | 168/360 [00:02<00:02, 75.81it/s]
 49%|████▉     | 176/360 [00:02<00:02, 75.60it/s]
 51%|█████     | 184/360 [00:02<00:02, 75.50it/s]
 53%|█████▎    | 192/360 [00:02<00:02, 75.36it/s]
 56%|█████▌    | 200/360 [00:02<00:02, 75.19it/s]
 58%|█████▊    | 208/360 [00:02<00:02, 75.36it/s]
 60%|██████    | 216/360 [00:02<00:01, 75.63it/s]
 62%|██████▏   | 224/360 [00:02<00:01, 75.64it/s]
 64%|██████▍   | 232/360 [00:03<00:01, 75.61it/s]
 67%|██████▋   | 240/360 [00:03<00:01, 75.04it/s]
 69%|██████▉   | 248/360 [00:03<00:01, 75.32it/s]
 71%|███████   | 256/360 [00:03<00:01, 75.44it/s]
 73%|███████▎  | 264/360 [00:03<00:01, 75.73it/s]
 76%|███████▌  | 272/360 [00:03<00:01, 76.08it/s]
 78%|███████▊  | 280/360 [00:03<00:01, 75.96it/s]
 80%|████████  | 288/360 [00:03<00:00, 75.81it/s]
 82%|████████▏ | 296/360 [00:03<00:00, 75.69it/s]
 84%|████████▍ | 304/360 [00:04<00:00, 75.55it/s]
 87%|████████▋ | 312/360 [00:04<00:00, 75.42it/s]
 89%|████████▉ | 320/360 [00:04<00:00, 75.65it/s]
 91%|█████████ | 328/360 [00:04<00:00, 75.94it/s]
 93%|█████████▎| 336/360 [00:04<00:00, 75.87it/s]
 96%|█████████▌| 344/360 [00:04<00:00, 76.00it/s]
 98%|█████████▊| 352/360 [00:04<00:00, 76.00it/s]
100%|██████████| 360/360 [00:04<00:00, 75.99it/s]
100%|██████████| 360/360 [00:04<00:00, 75.53it/s]

Sweeping angles 0.0 --> 359.0 for Observation: 5 and Exposure: 126
  0%|          | 0/360 [00:00<?, ?it/s]
  2%|▏         | 8/360 [00:00<00:04, 73.62it/s]
  4%|▍         | 16/360 [00:00<00:04, 75.08it/s]
  7%|▋         | 24/360 [00:00<00:04, 75.83it/s]
  9%|▉         | 32/360 [00:00<00:04, 70.55it/s]
 11%|█         | 40/360 [00:00<00:04, 72.08it/s]
 13%|█▎        | 48/360 [00:00<00:04, 71.99it/s]
 16%|█▌        | 56/360 [00:00<00:04, 73.02it/s]
 18%|█▊        | 64/360 [00:00<00:04, 73.74it/s]
 20%|██        | 72/360 [00:00<00:03, 74.55it/s]
 22%|██▏       | 80/360 [00:01<00:03, 75.26it/s]
 24%|██▍       | 88/360 [00:01<00:03, 75.40it/s]
 27%|██▋       | 96/360 [00:01<00:03, 75.43it/s]
 29%|██▉       | 104/360 [00:01<00:03, 75.06it/s]
 31%|███       | 112/360 [00:01<00:03, 75.09it/s]
 33%|███▎      | 120/360 [00:01<00:03, 75.01it/s]
 36%|███▌      | 128/360 [00:01<00:03, 75.33it/s]
 38%|███▊      | 136/360 [00:01<00:02, 75.60it/s]
 40%|████      | 144/360 [00:01<00:02, 75.51it/s]
 42%|████▏     | 152/360 [00:02<00:02, 75.26it/s]
 44%|████▍     | 160/360 [00:02<00:02, 75.25it/s]
 47%|████▋     | 168/360 [00:02<00:02, 75.34it/s]
 49%|████▉     | 176/360 [00:02<00:02, 75.38it/s]
 51%|█████     | 184/360 [00:02<00:02, 74.74it/s]
 53%|█████▎    | 192/360 [00:02<00:02, 75.32it/s]
 56%|█████▌    | 200/360 [00:02<00:02, 75.49it/s]
 58%|█████▊    | 208/360 [00:02<00:02, 75.50it/s]
 60%|██████    | 216/360 [00:02<00:01, 75.55it/s]
 62%|██████▏   | 224/360 [00:02<00:01, 75.56it/s]
 64%|██████▍   | 232/360 [00:03<00:01, 75.57it/s]
 67%|██████▋   | 240/360 [00:03<00:01, 75.91it/s]
 69%|██████▉   | 248/360 [00:03<00:01, 76.33it/s]
 71%|███████   | 256/360 [00:03<00:01, 76.21it/s]
 73%|███████▎  | 264/360 [00:03<00:01, 76.10it/s]
 76%|███████▌  | 272/360 [00:03<00:01, 74.62it/s]
 78%|███████▊  | 280/360 [00:03<00:01, 74.86it/s]
 80%|████████  | 288/360 [00:03<00:00, 75.08it/s]
 82%|████████▏ | 296/360 [00:03<00:00, 75.46it/s]
 84%|████████▍ | 304/360 [00:04<00:00, 75.88it/s]
 87%|████████▋ | 312/360 [00:04<00:00, 75.92it/s]
 89%|████████▉ | 320/360 [00:04<00:00, 75.85it/s]
 91%|█████████ | 328/360 [00:04<00:00, 75.73it/s]
 93%|█████████▎| 336/360 [00:04<00:00, 75.66it/s]
 96%|█████████▌| 344/360 [00:04<00:00, 75.57it/s]
 98%|█████████▊| 352/360 [00:04<00:00, 75.78it/s]
100%|██████████| 360/360 [00:04<00:00, 76.03it/s]
100%|██████████| 360/360 [00:04<00:00, 75.16it/s]

Sweeping angles 0.0 --> 359.0 for Observation: 5 and Exposure: 127
  0%|          | 0/360 [00:00<?, ?it/s]
  2%|▏         | 8/360 [00:00<00:04, 75.98it/s]
  4%|▍         | 16/360 [00:00<00:04, 75.56it/s]
  7%|▋         | 24/360 [00:00<00:04, 75.34it/s]
  9%|▉         | 32/360 [00:00<00:04, 75.31it/s]
 11%|█         | 40/360 [00:00<00:04, 75.20it/s]
 13%|█▎        | 48/360 [00:00<00:04, 75.54it/s]
 16%|█▌        | 56/360 [00:00<00:04, 75.79it/s]
 18%|█▊        | 64/360 [00:00<00:03, 75.80it/s]
 20%|██        | 72/360 [00:00<00:03, 75.75it/s]
 22%|██▏       | 80/360 [00:01<00:03, 75.81it/s]
 24%|██▍       | 88/360 [00:01<00:03, 75.80it/s]
 27%|██▋       | 96/360 [00:01<00:03, 75.69it/s]
 29%|██▉       | 104/360 [00:01<00:03, 75.89it/s]
 31%|███       | 112/360 [00:01<00:03, 76.11it/s]
 33%|███▎      | 120/360 [00:01<00:03, 75.95it/s]
 36%|███▌      | 128/360 [00:01<00:03, 75.81it/s]
 38%|███▊      | 136/360 [00:01<00:02, 75.61it/s]
 40%|████      | 144/360 [00:01<00:02, 75.49it/s]
 42%|████▏     | 152/360 [00:02<00:02, 75.44it/s]
 44%|████▍     | 160/360 [00:02<00:02, 75.78it/s]
 47%|████▋     | 168/360 [00:02<00:02, 76.13it/s]
 49%|████▉     | 176/360 [00:02<00:02, 76.03it/s]
 51%|█████     | 184/360 [00:02<00:02, 75.87it/s]
 53%|█████▎    | 192/360 [00:02<00:02, 75.63it/s]
 56%|█████▌    | 200/360 [00:02<00:02, 75.54it/s]
 58%|█████▊    | 208/360 [00:02<00:02, 75.45it/s]
 60%|██████    | 216/360 [00:02<00:01, 75.68it/s]
 62%|██████▏   | 224/360 [00:02<00:01, 75.92it/s]
 64%|██████▍   | 232/360 [00:03<00:01, 75.92it/s]
 67%|██████▋   | 240/360 [00:03<00:01, 75.91it/s]
 69%|██████▉   | 248/360 [00:03<00:01, 75.93it/s]
 71%|███████   | 256/360 [00:03<00:01, 75.99it/s]
 73%|███████▎  | 264/360 [00:03<00:01, 75.92it/s]
 76%|███████▌  | 272/360 [00:03<00:01, 76.11it/s]
 78%|███████▊  | 280/360 [00:03<00:01, 76.30it/s]
 80%|████████  | 288/360 [00:03<00:00, 76.11it/s]
 82%|████████▏ | 296/360 [00:03<00:00, 75.92it/s]
 84%|████████▍ | 304/360 [00:04<00:00, 75.77it/s]
 87%|████████▋ | 312/360 [00:04<00:00, 75.73it/s]
 89%|████████▉ | 320/360 [00:04<00:00, 75.67it/s]
 91%|█████████ | 328/360 [00:04<00:00, 75.93it/s]
 93%|█████████▎| 336/360 [00:04<00:00, 76.31it/s]
 96%|█████████▌| 344/360 [00:04<00:00, 76.31it/s]
 98%|█████████▊| 352/360 [00:04<00:00, 76.23it/s]
100%|██████████| 360/360 [00:04<00:00, 76.04it/s]
100%|██████████| 360/360 [00:04<00:00, 75.83it/s]

Sweeping angles 0.0 --> 359.0 for Observation: 5 and Exposure: 128
  0%|          | 0/360 [00:00<?, ?it/s]
  2%|▏         | 8/360 [00:00<00:04, 75.81it/s]
  4%|▍         | 16/360 [00:00<00:04, 75.42it/s]
  7%|▋         | 24/360 [00:00<00:04, 75.45it/s]
  9%|▉         | 32/360 [00:00<00:04, 75.10it/s]
 11%|█         | 40/360 [00:00<00:04, 75.30it/s]
 13%|█▎        | 48/360 [00:00<00:04, 75.43it/s]
 16%|█▌        | 56/360 [00:00<00:04, 75.44it/s]
 18%|█▊        | 64/360 [00:00<00:03, 75.55it/s]
 20%|██        | 72/360 [00:00<00:03, 75.56it/s]
 22%|██▏       | 80/360 [00:01<00:03, 75.83it/s]
 24%|██▍       | 88/360 [00:01<00:03, 76.07it/s]
 27%|██▋       | 96/360 [00:01<00:03, 76.10it/s]
 29%|██▉       | 104/360 [00:01<00:03, 75.87it/s]
 31%|███       | 112/360 [00:01<00:03, 75.75it/s]
 33%|███▎      | 120/360 [00:01<00:03, 75.63it/s]
 36%|███▌      | 128/360 [00:01<00:03, 75.62it/s]
 38%|███▊      | 136/360 [00:01<00:02, 75.92it/s]
 40%|████      | 144/360 [00:01<00:02, 76.18it/s]
 42%|████▏     | 152/360 [00:02<00:02, 76.13it/s]
 44%|████▍     | 160/360 [00:02<00:02, 75.66it/s]
 47%|████▋     | 168/360 [00:02<00:02, 75.64it/s]
 49%|████▉     | 176/360 [00:02<00:02, 75.67it/s]
 51%|█████     | 184/360 [00:02<00:02, 75.57it/s]
 53%|█████▎    | 192/360 [00:02<00:02, 75.68it/s]
 56%|█████▌    | 200/360 [00:02<00:02, 75.28it/s]
 58%|█████▊    | 208/360 [00:02<00:02, 75.36it/s]
 60%|██████    | 216/360 [00:02<00:01, 75.35it/s]
 62%|██████▏   | 224/360 [00:02<00:01, 75.43it/s]
 64%|██████▍   | 232/360 [00:03<00:01, 75.42it/s]
 67%|██████▋   | 240/360 [00:03<00:01, 75.55it/s]
 69%|██████▉   | 248/360 [00:03<00:01, 75.94it/s]
 71%|███████   | 256/360 [00:03<00:01, 76.31it/s]
 73%|███████▎  | 264/360 [00:03<00:01, 76.31it/s]
 76%|███████▌  | 272/360 [00:03<00:01, 76.14it/s]
 78%|███████▊  | 280/360 [00:03<00:01, 76.07it/s]
 80%|████████  | 288/360 [00:03<00:00, 75.93it/s]
 82%|████████▏ | 296/360 [00:03<00:00, 75.79it/s]
 84%|████████▍ | 304/360 [00:04<00:00, 74.77it/s]
 87%|████████▋ | 312/360 [00:04<00:00, 75.32it/s]
 89%|████████▉ | 320/360 [00:04<00:00, 75.34it/s]
 91%|█████████ | 328/360 [00:04<00:00, 75.30it/s]
 93%|█████████▎| 336/360 [00:04<00:00, 75.41it/s]
 96%|█████████▌| 344/360 [00:04<00:00, 75.56it/s]
 98%|█████████▊| 352/360 [00:04<00:00, 75.54it/s]
100%|██████████| 360/360 [00:04<00:00, 75.86it/s]
100%|██████████| 360/360 [00:04<00:00, 75.66it/s]

... Averaging intensities per angle ...
... Calculating flux values ...
... Calculating backgrounds and thresholds ...

One all of the angles are swept and all meta data on potential claw are collected, we can inspect the output. The data structure is organized in the following way

program.observations.data (shows all of the meta data for the program)
program.observations.data[observation_id_number] (shows meta data a single observation)

If you are unsure about which observations from your program were used by the jwst_rogue_path_tool use the following commands

program.observations.supported_observations  # Only show the supported observations for JWST Rogue Path Tool
program.observations.supported_observations.keys()  # Observation numbers to select data on
dict_keys([1, 5])

For this example, let’s use observation 1

program.observations.data[1]
{'visit':    program  observation  visit       apt_prd_name  apt_version  data_volume  \
 0        0            1      1  PRDAPTSOC-068-002       2025.1  1255.017302   
 1        0            1      2  PRDAPTSOC-068-002       2025.1  1255.017302   
 2        0            1      3  PRDAPTSOC-068-002       2025.1  1255.017302   
 
   defer_orient_selection internal_target  max_data_rate mosaic  ...  \
 0                      N               N       2.300549      N  ...   
 1                      N               N       2.300549      N  ...   
 2                      N               N       2.300549      N  ...   
 
              visit_type charged_duration  guide_star_acquisition_duration  \
 0  PRIME_TARGETED_FIXED             1707                              151   
 1  PRIME_TARGETED_FIXED             1809                              151   
 2  PRIME_TARGETED_FIXED             1759                              151   
 
   initial_overhead_duration overhead_duration  scheduling_duration  \
 0                       169               616                 1240   
 1                       169               616                 1240   
 2                       169               616                 1240   
 
   science_duration slew_duration coordinated_parallel_data_volume  \
 0              624           231                              NaN   
 1              624           319                              NaN   
 2              624           276                              NaN   
 
   template_coord_parallel_1  
 0                       NaN  
 1                       NaN  
 2                       NaN  
 
 [3 rows x 29 columns],
 'ra': np.float64(124.10089166666668),
 'dec': np.float64(19.23126111111111),
 'exposures':    program  observation  visit  exposure  pointing_sequence_number  \
 1        0            1      1         1                         1   
 2        0            1      1         2                         2   
 4        0            1      2         1                         1   
 5        0            1      2         2                         2   
 7        0            1      3         1                         1   
 8        0            1      3         2                         2   
 
    exposure_spec_order_number  target_id  target_order_number     AperName  \
 1                           1          1                    1  NRCALL_FULL   
 2                           1          1                    1  NRCALL_FULL   
 4                           1          1                    1  NRCALL_FULL   
 5                           1          1                    1  NRCALL_FULL   
 7                           1          1                    1  NRCALL_FULL   
 8                           1          1                    1  NRCALL_FULL   
 
   apt_label  ...  number_of_groups  number_of_integrations  number_of_scas  \
 1   SCIENCE  ...               6.0                     1.0            10.0   
 2   SCIENCE  ...               6.0                     1.0            10.0   
 4   SCIENCE  ...               6.0                     1.0            10.0   
 5   SCIENCE  ...               6.0                     1.0            10.0   
 7   SCIENCE  ...               6.0                     1.0            10.0   
 8   SCIENCE  ...               6.0                     1.0            10.0   
 
    ra_center_rotation  dec_center_rotation readout_pattern  \
 1          124.083819            19.237767        SHALLOW4   
 2          124.083885            19.237721        SHALLOW4   
 4          124.100892            19.231261        SHALLOW4   
 5          124.100958            19.231215        SHALLOW4   
 7          124.117963            19.224754        SHALLOW4   
 8           124.11803            19.224708        SHALLOW4   
 
                                         region_shape  exposure_duration  \
 1  POLYGON ICRS 124.12942092617 19.21930240069 12...              381.0   
 2  POLYGON ICRS 124.12948752365 19.21925638885 12...              350.0   
 4  POLYGON ICRS 124.14649015843 19.21279216436 12...              381.0   
 5  POLYGON ICRS 124.14655674848 19.21274614636 12...              350.0   
 7  POLYGON ICRS 124.16355803755 19.20628034649 12...              381.0   
 8  POLYGON ICRS 124.16362462018 19.20623432232 12...              350.0   
 
   photon_collecting_duration  visit_file_sequence  
 1                    311.366                  NaN  
 2                    311.366                  NaN  
 4                    311.366                  NaN  
 5                    311.366                  NaN  
 7                    311.366                  NaN  
 8                    311.366                  NaN  
 
 [6 rows x 37 columns],
 'nircam_exposure_specification':    program  observation  visit  data_volume_mib dither_id filter_long  \
 0        0            1      1           1120.0       1.0      F322W2   
 1        0            1      2           1120.0       1.0      F322W2   
 2        0            1      3           1120.0       1.0      F322W2   
 
   filter_short  number_of_detector_outputs  number_of_groups  \
 0       F150W2                           4                 6   
 1       F150W2                           4                 6   
 2       F150W2                           4                 6   
 
    number_of_integrations  order_number readout_pattern subarray pupil_long  \
 0                       1             1        SHALLOW4     FULL        NaN   
 1                       1             1        SHALLOW4     FULL        NaN   
 2                       1             1        SHALLOW4     FULL        NaN   
 
   pupil_short  
 0         NaN  
 1         NaN  
 2         NaN  ,
 'nircam_templates':    program  observation  visit modules
 0        0            1      1     ALL
 1        0            1      2     ALL
 2        0            1      3     ALL,
 'valid_starts_angles': array([ 10.5,  83.5, 157.5, 213.5, 325.5]),
 'valid_ends_angles': array([ 12.5,  91.5, 161.5, 214.5, 337.5]),
 'exposure_frames': <jwst_rogue_path_tool.detect_claws.exposureFrames at 0x7f86f86b8450>,
 'averages_A': defaultdict(dict,
             {np.float64(0.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-35.4105286 , -95.82311585, 129.20275691, ...,  38.40685158,
                      -23.36286206, 119.79212231], shape=(68661,)),
               'avg_v3_A': array([ -8.4387935 , -67.34596384, -14.89884765, ...,   2.72296388,
                       -1.66204548, -64.19307764], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-35.4105286 , -95.82311585, 129.20275691, ...,  38.40685158,
                      -23.36286206, 119.79212231], shape=(68661,)),
               'avg_v3_B': array([ -8.4387935 , -67.34596384, -14.89884765, ...,   2.72296388,
                       -1.66204548, -64.19307764], shape=(68661,))},
              np.float64(1.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-35.28769434, -96.08011733, 129.03705987, ...,  38.36292267,
                      -23.33543205, 118.79717074], shape=(68661,)),
               'avg_v3_A': array([ -9.01735073, -68.34057454, -14.12302038, ...,   3.34392073,
                       -2.05837679, -63.32093213], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-35.28769434, -96.08011733, 129.03705987, ...,  38.36292267,
                      -23.33543205, 118.79717074], shape=(68661,)),
               'avg_v3_B': array([ -9.01735073, -68.34057454, -14.12302038, ...,   3.34392073,
                       -2.05837679, -63.32093213], shape=(68661,))},
              np.float64(2.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-35.15621938, -96.36242316, 128.88099103, ...,  38.31044049,
                      -23.30163842, 117.86806974], shape=(68661,)),
               'avg_v3_A': array([ -9.59409645, -69.33468682, -13.34542462, ...,   3.96421789,
                       -2.45421752, -62.44069839], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-35.15621938, -96.36242316, 128.88099103, ...,  38.31044049,
                      -23.30163842, 117.86806974], shape=(68661,)),
               'avg_v3_B': array([ -9.59409645, -69.33468682, -13.34542462, ...,   3.96421789,
                       -2.45421752, -62.44069839], shape=(68661,))},
              np.float64(3.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-35.01606237, -96.67384832, 128.73441878, ...,  38.2493849 ,
                      -23.26148148, 116.99925796], shape=(68661,)),
               'avg_v3_A': array([-10.16890413, -70.328225  , -12.56617108, ...,   4.58373761,
                       -2.84946554, -61.55313065], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-35.01606237, -96.67384832, 128.73441878, ...,  38.2493849 ,
                      -23.26148148, 116.99925796], shape=(68661,)),
               'avg_v3_B': array([-10.16890413, -70.328225  , -12.56617108, ...,   4.58373761,
                       -2.84946554, -61.55313065], shape=(68661,))},
              np.float64(4.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-34.86717978, -97.01901278, 128.59721976, ...,  38.1797324 ,
                      -23.21496166, 116.1857245 ], shape=(68661,)),
               'avg_v3_A': array([-10.74164602, -71.32109735, -11.78536807, ...,   5.20236158,
                       -3.24401864, -60.65889793], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-34.86717978, -97.01901278, 128.59721976, ...,  38.1797324 ,
                      -23.21496166, 116.1857245 ], shape=(68661,)),
               'avg_v3_B': array([-10.74164602, -71.32109735, -11.78536807, ...,   5.20236158,
                       -3.24401864, -60.65889793], shape=(68661,))},
              np.float64(5.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-34.709526  , -97.40356434, 128.46927867, ...,  38.10145618,
                      -23.16207959, 115.42295247], shape=(68661,)),
               'avg_v3_A': array([-11.31219309, -72.31319163, -11.00312163, ...,   5.81997079,
                       -3.63777452, -59.75859499], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-34.709526  , -97.40356434, 128.46927867, ...,  38.10145618,
                      -23.16207959, 115.42295247], shape=(68661,)),
               'avg_v3_B': array([-11.31219309, -72.31319163, -11.00312163, ...,   5.81997079,
                       -3.63777452, -59.75859499], shape=(68661,))},
              np.float64(6.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-34.54305341, -97.8344792 , 128.35048822, ...,  38.01452613,
                      -23.10283609, 114.70686738], shape=(68661,)),
               'avg_v3_A': array([-11.88041495, -73.30436902, -10.21953575, ...,   6.43644552,
                       -4.03063078, -58.8527518 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-34.54305341, -97.8344792 , 128.35048822, ...,  38.01452613,
                      -23.10283609, 114.70686738], shape=(68661,)),
               'avg_v3_B': array([-11.88041495, -73.30436902, -10.21953575, ...,   6.43644552,
                       -4.03063078, -58.8527518 ], shape=(68661,))},
              np.float64(7.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-34.36771249, -98.32047393, 128.24074896, ...,  37.91890887,
                      -23.03723224, 114.03379042], shape=(68661,)),
               'avg_v3_A': array([-12.44617979, -74.29445583,  -9.43471248, ...,   7.0516652 ,
                       -4.42248489, -57.94184162], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-34.36771249, -98.32047393, 128.24074896, ...,  37.91890887,
                      -23.03723224, 114.03379042], shape=(68661,)),
               'avg_v3_B': array([-12.44617979, -74.29445583,  -9.43471248, ...,   7.0516652 ,
                       -4.42248489, -57.94184162], shape=(68661,))},
              np.float64(8.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-34.18345193, -98.87257929, 128.13996922, ...,  37.81456781,
                      -22.96526934, 113.40039643], shape=(68661,)),
               'avg_v3_A': array([-13.00935432, -75.28323182,  -8.6487521 , ...,   7.66550832,
                       -4.81323424, -57.02628807], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-34.18345193, -98.87257929, 128.13996922, ...,  37.81456781,
                      -22.96526934, 113.40039643], shape=(68661,)),
               'avg_v3_B': array([-13.00935432, -75.28323182,  -8.6487521 , ...,   7.66550832,
                       -4.81323424, -57.02628807], shape=(68661,))},
              np.float64(9.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-33.99021879, -99.5049549 , 128.04806502, ...,  37.7014632 ,
                      -22.88694901, 112.80367635], shape=(68661,)),
               'avg_v3_A': array([-13.56980368, -76.27041367,  -7.86175328, ...,   8.27785238,
                       -5.20277604, -56.1064712 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-33.99021879, -99.5049549 , 128.04806502, ...,  37.7014632 ,
                      -22.88694901, 112.80367635], shape=(68661,)),
               'avg_v3_B': array([-13.56980368, -76.27041367,  -7.86175328, ...,   8.27785238,
                       -5.20277604, -56.1064712 ], shape=(68661,))},
              np.float64(10.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -33.78795856, -100.23606981,  127.96495995, ...,   37.57955215,
                       -22.8022732 ,  112.24090363], shape=(68661,)),
               'avg_v3_A': array([-14.12739141, -77.25563082,  -7.07381319, ...,   8.88857378,
                       -5.59100739, -55.18273268], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -33.78795856, -100.23606981,  127.96495995, ...,   37.57955215,
                       -22.8022732 ,  112.24090363], shape=(68661,)),
               'avg_v3_B': array([-14.12739141, -77.25563082,  -7.07381319, ...,   8.88857378,
                       -5.59100739, -55.18273268], shape=(68661,))},
              np.float64(11.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -33.57661537, -101.09045332,  127.89058511, ...,   37.44878871,
                       -22.71124423,  111.70960441], shape=(68661,)),
               'avg_v3_A': array([-14.68197937, -78.23838942,  -6.28502768, ...,   9.49754771,
                       -5.97782524, -54.25538043], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -33.57661537, -101.09045332,  127.89058511, ...,   37.44878871,
                       -22.71124423,  111.70960441], shape=(68661,)),
               'avg_v3_B': array([-14.68197937, -78.23838942,  -6.28502768, ...,   9.49754771,
                       -5.97782524, -54.25538043], shape=(68661,))},
              np.float64(12.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -33.35613211, -102.10135943,  127.82487903, ...,   37.30912392,
                       -22.61386483,  111.20753099], shape=(68661,)),
               'avg_v3_A': array([-15.23342768, -79.21801706,  -5.49549142, ...,  10.10464813,
                       -6.36312637, -53.32469246], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -33.35613211, -102.10135943,  127.82487903, ...,   37.30912392,
                       -22.61386483,  111.20753099], shape=(68661,)),
               'avg_v3_B': array([-15.23342768, -79.21801706,  -5.49549142, ...,  10.10464813,
                       -6.36312637, -53.32469246], shape=(68661,))},
              np.float64(13.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -33.12645059, -103.31494096,  127.7677876 , ...,   37.16050588,
                       -22.51013818,  110.73263831], shape=(68661,)),
               'avg_v3_A': array([-15.78159467, -80.19357527,  -4.70529799, ...,  10.70974761,
                       -6.74680743, -52.3909204 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -33.12645059, -103.31494096,  127.7677876 , ...,   37.16050588,
                       -22.51013818,  110.73263831], shape=(68661,)),
               'avg_v3_B': array([-15.78159467, -80.19357527,  -4.70529799, ...,  10.70974761,
                       -6.74680743, -52.3909204 ], shape=(68661,))},
              np.float64(14.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -32.88751173, -104.79700482,  127.71926401, ...,   37.00287984,
                       -22.40006801,  110.28306299], shape=(68661,)),
               'avg_v3_A': array([-16.32633683, -81.16371599,  -3.91454009, ...,  11.31271729,
                       -7.12876488, -51.45429241], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -32.88751173, -104.79700482,  127.71926401, ...,   37.00287984,
                       -22.40006801,  110.28306299], shape=(68661,)),
               'avg_v3_B': array([-16.32633683, -81.16371599,  -3.91454009, ...,  11.31271729,
                       -7.12876488, -51.45429241], shape=(68661,))},
              np.float64(15.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -32.63925576, -106.6443481 ,  127.6792687 , ...,   36.83618829,
                       -22.28365856,  109.85710487], shape=(68661,)),
               'avg_v3_A': array([-16.86750875, -82.1264363 ,  -3.1233096 , ...,  11.91342678,
                       -7.50889502, -50.51501582], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -32.63925576, -106.6443481 ,  127.6792687 , ...,   36.83618829,
                       -22.28365856,  109.85710487], shape=(68661,)),
               'avg_v3_B': array([-16.86750875, -82.1264363 ,  -3.1233096 , ...,  11.91342678,
                       -7.50889502, -50.51501582], shape=(68661,))},
              np.float64(16.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -32.3816224 , -109.00455389,  127.64776932, ...,   36.660371  ,
                       -22.16091474,  109.45321047], shape=(68661,)),
               'avg_v3_A': array([-17.40496308, -83.07863899,  -2.33169775, ...,  12.51174407,
                       -7.88709399, -49.57327938], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -32.3816224 , -109.00455389,  127.64776932, ...,   36.660371  ,
                       -22.16091474,  109.45321047], shape=(68661,)),
               'avg_v3_B': array([-17.40496308, -83.07863899,  -2.33169775, ...,  12.51174407,
                       -7.88709399, -49.57327938], shape=(68661,))},
              np.float64(17.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -32.11455106, -112.11203144,  127.6247407 , ...,   36.47536519,
                       -22.03184209,  109.0699584 ], shape=(68661,)),
               'avg_v3_A': array([-17.93855049, -84.01530156,  -1.53979526, ...,  13.10753549,
                       -8.26325774, -48.62925528], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -32.11455106, -112.11203144,  127.6247407 , ...,   36.47536519,
                       -22.03184209,  109.0699584 ], shape=(68661,)),
               'avg_v3_B': array([-17.93855049, -84.01530156,  -1.53979526, ...,  13.10753549,
                       -8.26325774, -48.62925528], shape=(68661,))},
              np.float64(18.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -31.83798113, -116.35617245,  127.6101648 , ...,   36.28110558,
                       -21.89644693,  108.70604636], shape=(68661,)),
               'avg_v3_A': array([-18.46811962, -84.9278074 ,  -0.74769242, ...,  13.70066554,
                       -8.63728208, -47.6831009 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -31.83798113, -116.35617245,  127.6101648 , ...,   36.28110558,
                       -21.89644693,  108.70604636], shape=(68661,)),
               'avg_v3_B': array([-18.46811962, -84.9278074 ,  -0.74769242, ...,  13.70066554,
                       -8.63728208, -47.6831009 ], shape=(68661,))},
              np.float64(19.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -31.55185216, -122.41235076,  127.60403071, ...,   36.07752457,
                       -21.75473636,  108.36027954], shape=(68661,)),
               'avg_v3_A': array([-1.89935170e+01, -8.58003802e+01,  4.45207048e-02, ...,
                       1.42909969e+01, -9.00906263e+00, -4.67349603e+01], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -31.55185216, -122.41235076,  127.60403071, ...,   36.07752457,
                       -21.75473636,  108.36027954], shape=(68661,)),
               'avg_v3_B': array([-1.89935170e+01, -8.58003802e+01,  4.45207048e-02, ...,
                       1.42909969e+01, -9.00906263e+00, -4.67349603e+01], shape=(68661,))},
              np.float64(20.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -31.25610417, -131.4763049 ,  127.60633463, ...,   35.86455231,
                       -21.60671837,  108.03156036], shape=(68661,)),
               'avg_v3_A': array([-19.51458726, -86.6021153 ,   0.83675423, ...,  14.87839035,
                       -9.37849485, -45.78496573], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -31.25610417, -131.4763049 ,  127.60633463, ...,   35.86455231,
                       -21.60671837,  108.03156036], shape=(68661,)),
               'avg_v3_B': array([-19.51458726, -86.6021153 ,   0.83675423, ...,  14.87839035,
                       -9.37849485, -45.78496573], shape=(68661,))},
              np.float64(21.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -30.95067789, -145.50350037,  127.61707988, ...,   35.6421169 ,
                       -21.45240188,  107.71887926], shape=(68661,)),
               'avg_v3_A': array([-20.03117266, -87.26987579,   1.62891827, ...,  15.46270455,
                       -9.74547406, -44.83323856], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -30.95067789, -145.50350037,  127.61707988, ...,   35.6421169 ,
                       -21.45240188,  107.71887926], shape=(68661,)),
               'avg_v3_B': array([-20.03117266, -87.26987579,   1.62891827, ...,  15.46270455,
                       -9.74547406, -44.83323856], shape=(68661,))},
              np.float64(22.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -30.63551509, -166.34347662,  127.63627687, ...,   35.41014449,
                       -21.29179684,  107.42130649], shape=(68661,)),
               'avg_v3_A': array([-20.54311347, -87.68468685,   2.42092282, ...,  16.04379617,
                      -10.1098954 , -43.87989063], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -30.63551509, -166.34347662,  127.63627687, ...,   35.41014449,
                       -21.29179684,  107.42130649], shape=(68661,)),
               'avg_v3_B': array([-20.54311347, -87.68468685,   2.42092282, ...,  16.04379617,
                      -10.1098954 , -43.87989063], shape=(68661,))},
              np.float64(23.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-30.31055883, 168.61747534, 127.66394318, ...,  35.1685595 ,
                      -21.12491427, 107.13798478], shape=(68661,)),
               'avg_v3_A': array([-21.05024782, -87.70502405,   3.21267764, ...,  16.62151967,
                      -10.47165391, -42.925025  ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-30.31055883, 168.61747534, 127.66394318, ...,  35.1685595 ,
                      -21.12491427, 107.13798478], shape=(68661,)),
               'avg_v3_B': array([-21.05024782, -87.70502405,   3.21267764, ...,  16.62151967,
                      -10.47165391, -42.925025  ], shape=(68661,))},
              np.float64(24.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-29.97575386, 147.15526169, 127.7001035 , ...,  34.91728476,
                      -20.9517664 , 106.86812282], shape=(68661,)),
               'avg_v3_A': array([-21.55241164, -87.32188277,   4.00409213, ...,  17.19572729,
                      -10.83064445, -41.96873686], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-29.97575386, 147.15526169, 127.7001035 , ...,  34.91728476,
                      -20.9517664 , 106.86812282], shape=(68661,)),
               'avg_v3_B': array([-21.55241164, -87.32188277,   4.00409213, ...,  17.19572729,
                      -10.83064445, -41.96873686], shape=(68661,))},
              np.float64(25.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-29.63104691, 132.54345677, 127.74478973, ...,  34.65624174,
                      -20.77236667, 106.61098933], shape=(68661,)),
               'avg_v3_A': array([-22.04943873, -86.67180734,   4.79507518, ...,  17.76626896,
                      -11.1867618 , -41.01111427], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-29.63104691, 132.54345677, 127.74478973, ...,  34.65624174,
                      -20.77236667, 106.61098933], shape=(68661,)),
               'avg_v3_B': array([-22.04943873, -86.67180734,   4.79507518, ...,  17.76626896,
                      -11.1867618 , -41.01111427], shape=(68661,))},
              np.float64(26.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-29.27638708, 123.10907113, 127.79804098, ...,  34.38535075,
                      -20.58672991, 106.36590781], shape=(68661,)),
               'avg_v3_A': array([-22.54116075, -85.87925116,   5.58553506, ...,  18.33299224,
                      -11.53990062, -40.05223881], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-29.27638708, 123.10907113, 127.79804098, ...,  34.38535075,
                      -20.58672991, 106.36590781], shape=(68661,)),
               'avg_v3_B': array([-22.54116075, -85.87925116,   5.58553506, ...,  18.33299224,
                      -11.53990062, -40.05223881], shape=(68661,))},
              np.float64(27.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-28.91172619, 116.83215947, 127.85990362, ...,  34.10453114,
                      -20.39487232, 106.1322518 ], shape=(68661,)),
               'avg_v3_A': array([-23.02740723, -85.01167136,   6.37537928, ...,  18.89574228,
                      -11.8899555 , -39.09218619], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-28.91172619, 116.83215947, 127.85990362, ...,  34.10453114,
                      -20.39487232, 106.1322518 ], shape=(68661,)),
               'avg_v3_B': array([-23.02740723, -85.01167136,   6.37537928, ...,  18.89574228,
                      -11.8899555 , -39.09218619], shape=(68661,))},
              np.float64(28.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-28.53701921, 112.45274977, 127.93043135, ...,  33.8137016 ,
                      -20.19681165, 105.90944062], shape=(68661,)),
               'avg_v3_A': array([-23.5080056 , -84.10208344,   7.16451444, ...,  19.45436172,
                      -12.23682095, -38.13102676], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-28.53701921, 112.45274977, 127.93043135, ...,  33.8137016 ,
                      -20.19681165, 105.90944062], shape=(68661,)),
               'avg_v3_B': array([-23.5080056 , -84.10208344,   7.16451444, ...,  19.45436172,
                      -12.23682095, -38.13102676], shape=(68661,))},
              np.float64(29.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-28.15222465, 109.25843079, 128.00968526, ...,  33.51278038,
                      -19.99256725, 105.69693554], shape=(68661,)),
               'avg_v3_A': array([-23.98278122, -83.16724348,   7.95284614, ...,  20.00869067,
                      -12.58039143, -37.16882601], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-28.15222465, 109.25843079, 128.00968526, ...,  33.51278038,
                      -19.99256725, 105.69693554], shape=(68661,)),
               'avg_v3_B': array([-23.98278122, -83.16724348,   7.95284614, ...,  20.00869067,
                      -12.58039143, -37.16882601], shape=(68661,))},
              np.float64(30.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-27.75730503, 106.83987432, 128.09773387, ...,  33.2016856 ,
                      -19.78216016, 105.49423629], shape=(68661,)),
               'avg_v3_A': array([-24.45155743, -82.21624466,   8.7402788 , ...,  20.55856664,
                      -12.92056139, -36.20564498], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-27.75730503, 106.83987432, 128.09773387, ...,  33.2016856 ,
                      -19.78216016, 105.49423629], shape=(68661,)),
               'avg_v3_B': array([-24.45155743, -82.21624466,   8.7402788 , ...,  20.55856664,
                      -12.92056139, -36.20564498], shape=(68661,))},
              np.float64(31.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-27.35222728, 104.95172163, 128.19465326, ...,  32.88033553,
                      -19.56561321, 105.30087797], shape=(68661,)),
               'avg_v3_A': array([-24.91415559, -81.25435679,   9.52671554, ...,  21.10382451,
                      -13.25722529, -35.24154065], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-27.35222728, 104.95172163, 128.19465326, ...,  32.88033553,
                      -19.56561321, 105.30087797], shape=(68661,)),
               'avg_v3_B': array([-24.91415559, -81.25435679,   9.52671554, ...,  21.10382451,
                      -13.25722529, -35.24154065], shape=(68661,))},
              np.float64(32.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-26.93696321, 103.44012449, 128.30052712, ...,  32.54864894,
                      -19.34295112, 105.11642822], shape=(68661,)),
               'avg_v3_A': array([-25.37039519, -80.28481375,  10.31205801, ...,  21.6442965 ,
                      -13.59027762, -34.27656628], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-26.93696321, 103.44012449, 128.30052712, ...,  32.54864894,
                      -19.34295112, 105.11642822], shape=(68661,)),
               'avg_v3_B': array([-25.37039519, -80.28481375,  10.31205801, ...,  21.6442965 ,
                      -13.59027762, -34.27656628], shape=(68661,))},
              np.float64(33.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-26.51149006, 102.20454179, 128.41544684, ...,  32.20654542,
                      -19.11420058, 104.94048461], shape=(68661,)),
               'avg_v3_A': array([-25.82009388, -79.30969824,  11.09620631, ...,  22.1798121 ,
                      -13.91961292, -33.31077176], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-26.51149006, 102.20454179, 128.41544684, ...,  32.20654542,
                      -19.11420058, 104.94048461], shape=(68661,)),
               'avg_v3_B': array([-25.82009388, -79.30969824,  11.09620631, ...,  22.1798121 ,
                      -13.91961292, -33.31077176], shape=(68661,))},
              np.float64(34.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-26.07579091, 101.17683663, 128.53951162, ...,  31.85394577,
                      -18.8793904 , 104.77267242], shape=(68661,)),
               'avg_v3_A': array([-26.26306755, -78.33040717,  11.87905875, ...,  22.7101981 ,
                      -14.24512584, -32.34420384], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-26.07579091, 101.17683663, 128.53951162, ...,  31.85394577,
                      -18.8793904 , 104.77267242], shape=(68661,)),
               'avg_v3_B': array([-26.26306755, -78.33040717,  11.87905875, ...,  22.7101981 ,
                      -14.24512584, -32.34420384], shape=(68661,))},
              np.float64(35.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-25.62985524, 100.30935249, 128.6728286 , ...,  31.49077237,
                      -18.63855152, 104.61264245], shape=(68661,)),
               'avg_v3_A': array([-26.69913051, -77.34791018,  12.66051179, ...,  23.23527852,
                      -14.56671118, -31.37690642], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-25.62985524, 100.30935249, 128.6728286 , ...,  31.49077237,
                      -18.63855152, 104.61264245], shape=(68661,)),
               'avg_v3_B': array([-26.69913051, -77.34791018,  12.66051179, ...,  23.23527852,
                      -14.56671118, -31.37690642], shape=(68661,))},
              np.float64(36.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-25.17367946,  99.5678333 , 128.81551293, ...,  31.11694959,
                      -18.39171719, 104.46006915], shape=(68661,)),
               'avg_v3_A': array([-27.12809552, -76.36290025,  13.44045979, ...,  23.75487465,
                      -14.88426388, -30.40892079], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-25.17367946,  99.5678333 , 128.81551293, ...,  31.11694959,
                      -18.39171719, 104.46006915], shape=(68661,)),
               'avg_v3_B': array([-27.12809552, -76.36290025,  13.44045979, ...,  23.75487465,
                      -14.88426388, -30.40892079], shape=(68661,))},
              np.float64(37.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-24.7072674 ,  98.92706279, 128.9676879 , ...,  30.73240428,
                      -18.13892305, 104.31464888], shape=(68661,)),
               'avg_v3_A': array([-27.54977396, -75.37588524,  14.21879494, ...,  24.26880501,
                      -15.19767912, -29.4402858 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-24.7072674 ,  98.92706279, 128.9676879 , ...,  30.73240428,
                      -18.13892305, 104.31464888], shape=(68661,)),
               'avg_v3_B': array([-27.54977396, -75.37588524,  14.21879494, ...,  24.26880501,
                      -15.19767912, -29.4402858 ], shape=(68661,))},
              np.float64(38.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-24.2306309 ,  98.36808911, 129.12948508, ...,  30.33706614,
                      -17.8802072 , 104.17609836], shape=(68661,)),
               'avg_v3_A': array([-27.96397599, -74.38724552,  14.99540701, ...,  24.77688538,
                      -15.50685235, -28.47103811], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-24.2306309 ,  98.36808911, 129.12948508, ...,  30.33706614,
                      -17.8802072 , 104.17609836], shape=(68661,)),
               'avg_v3_B': array([-27.96397599, -74.38724552,  14.99540701, ...,  24.77688538,
                      -15.50685235, -28.47103811], shape=(68661,))},
              np.float64(39.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-23.74379036,  97.87640572, 129.30104443, ...,  29.93086831,
                      -17.61561032, 104.04415317], shape=(68661,)),
               'avg_v3_A': array([-28.37051068, -73.39727141,  15.77018326, ...,  25.27892881,
                      -15.81167929, -27.50121233], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-23.74379036,  97.87640572, 129.30104443, ...,  29.93086831,
                      -17.61561032, 104.04415317], shape=(68661,)),
               'avg_v3_B': array([-28.37051068, -73.39727141,  15.77018326, ...,  25.27892881,
                      -15.81167929, -27.50121233], shape=(68661,))},
              np.float64(40.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-23.24677526,  97.44072763, 129.48251446, ...,  29.51374781,
                      -17.34517578, 103.91856649], shape=(68661,)),
               'avg_v3_A': array([-28.76918618, -72.40618825,  16.54300819, ...,  25.77474567,
                      -16.11205605, -26.53084118], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-23.24677526,  97.44072763, 129.48251446, ...,  29.51374781,
                      -17.34517578, 103.91856649], shape=(68661,)),
               'avg_v3_B': array([-28.76918618, -72.40618825,  16.54300819, ...,  25.77474567,
                      -16.11205605, -26.53084118], shape=(68661,))},
              np.float64(41.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-22.73962475,  97.05214873, 129.67405232, ...,  29.08564608,
                      -17.06894972, 103.79910791], shape=(68661,)),
               'avg_v3_A': array([-29.15980995, -71.41417355,  17.3137634 , ...,  26.26414368,
                      -16.40787913, -25.55995565], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-22.73962475,  97.05214873, 129.67405232, ...,  29.08564608,
                      -17.06894972, 103.79910791], shape=(68661,)),
               'avg_v3_B': array([-29.15980995, -71.41417355,  17.3137634 , ...,  26.26414368,
                      -16.40787913, -25.55995565], shape=(68661,))},
              np.float64(42.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-22.22238821,  96.70354918, 129.87582396, ...,  28.64650958,
                      -16.78698115, 103.68556229], shape=(68661,)),
               'avg_v3_A': array([-29.54218894, -70.42136901,  18.0823274 , ...,  26.74692796,
                      -16.69904552, -24.58858513], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-22.22238821,  96.70354918, 129.87582396, ...,  28.64650958,
                      -16.78698115, 103.68556229], shape=(68661,)),
               'avg_v3_B': array([-29.54218894, -70.42136901,  18.0823274 , ...,  26.74692796,
                      -16.69904552, -24.58858513], shape=(68661,))},
              np.float64(43.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-21.69512579,  96.38917082, 130.08800429, ...,  28.19629037,
                      -16.49932205, 103.57772882], shape=(68661,)),
               'avg_v3_A': array([-29.91612979, -69.42788908,  18.84857542, ...,  27.22290112,
                      -16.9854527 , -23.61675754], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-21.69512579,  96.38917082, 130.08800429, ...,  28.19629037,
                      -16.49932205, 103.57772882], shape=(68661,)),
               'avg_v3_B': array([-29.91612979, -69.42788908,  18.84857542, ...,  27.22290112,
                      -16.9854527 , -23.61675754], shape=(68661,))},
              np.float64(44.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-21.15790896,  96.1043078 , 130.31077727, ...,  27.73494665,
                      -16.20602748, 103.47542007], shape=(68661,)),
               'avg_v3_A': array([-30.28143912, -68.43382719,  19.61237918, ...,  27.69186334,
                      -17.26699876, -22.64449943], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-21.15790896,  96.1043078 , 130.31077727, ...,  27.73494665,
                      -16.20602748, 103.47542007], shape=(68661,)),
               'avg_v3_B': array([-30.28143912, -68.43382719,  19.61237918, ...,  27.69186334,
                      -17.26699876, -22.64449943], shape=(68661,))},
              np.float64(45.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-20.61082108,  95.8450775 , 130.54433608, ...,  27.26244351,
                      -15.90715562, 103.37846119], shape=(68661,)),
               'avg_v3_A': array([-30.63792377, -67.43926035,  20.37360671, ...,  28.15361243,
                      -17.54358242, -21.6718361 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-20.61082108,  95.8450775 , 130.54433608, ...,  27.26244351,
                      -15.90715562, 103.37846119], shape=(68661,)),
               'avg_v3_B': array([-30.63792377, -67.43926035,  20.37360671, ...,  28.15361243,
                      -17.54358242, -21.6718361 ], shape=(68661,))},
              np.float64(46.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-20.05395785,  95.60824867, 130.78888325, ...,  26.77875347,
                      -15.60276791, 103.28668911], shape=(68661,)),
               'avg_v3_A': array([-30.98539103, -66.44425264,  21.13212215, ...,  28.60794402,
                      -17.81510313, -20.69879168], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-20.05395785,  95.60824867, 130.78888325, ...,  26.77875347,
                      -15.60276791, 103.28668911], shape=(68661,)),
               'avg_v3_B': array([-30.98539103, -66.44425264,  21.13212215, ...,  28.60794402,
                      -17.81510313, -20.69879168], shape=(68661,))},
              np.float64(47.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-19.48742791,  95.3911108 , 131.04463078, ...,  26.2838572 ,
                      -15.2929291 , 103.19995188], shape=(68661,)),
               'avg_v3_A': array([-31.32364899, -65.44885775,  21.88778548, ...,  29.05465164,
                      -18.08146111, -19.72538926], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-19.48742791,  95.3911108 , 131.04463078, ...,  26.2838572 ,
                      -15.2929291 , 103.19995188], shape=(68661,)),
               'avg_v3_B': array([-31.32364899, -65.44885775,  21.88778548, ...,  29.05465164,
                      -18.08146111, -19.72538926], shape=(68661,))},
              np.float64(48.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-18.91135324,  95.19137354, 131.31180025, ...,  25.77774424,
                      -14.97770736, 103.11810802], shape=(68661,)),
               'avg_v3_A': array([-31.65250679, -64.45312104,  22.64045236, ...,  29.49352689,
                      -18.34255744, -18.75165089], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-18.91135324,  95.19137354, 131.31180025, ...,  25.77774424,
                      -14.97770736, 103.11810802], shape=(68661,)),
               'avg_v3_B': array([-31.65250679, -64.45312104,  22.64045236, ...,  29.49352689,
                      -18.34255744, -18.75165089], shape=(68661,))},
              np.float64(49.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-18.32586965,  95.00708864, 131.59062296, ...,  25.26041364,
                      -14.65717431, 103.04102594], shape=(68661,)),
               'avg_v3_A': array([-31.97177499, -63.45708108,  23.38997383, ...,  29.92435959,
                      -18.59829412, -17.77759776], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-18.32586965,  95.00708864, 131.59062296, ...,  25.26041364,
                      -14.65717431, 103.04102594], shape=(68661,)),
               'avg_v3_B': array([-31.97177499, -63.45708108,  23.38997383, ...,  29.92435959,
                      -18.59829412, -17.77759776], shape=(68661,))},
              np.float64(50.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-17.73112719,  94.83658851, 131.88134001, ...,  24.73187473,
                      -14.33140516, 102.96858341], shape=(68661,)),
               'avg_v3_A': array([-32.28126586, -62.46077088,  24.1361961 , ...,  30.34693801,
                      -18.84857418, -16.80325019], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-17.73112719,  94.83658851, 131.88134001, ...,  24.73187473,
                      -14.33140516, 102.96858341], shape=(68661,)),
               'avg_v3_B': array([-32.28126586, -62.46077088,  24.1361961 , ...,  30.34693801,
                      -18.84857418, -16.80325019], shape=(68661,))},
              np.float64(51.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-17.12729054,  94.67843761, 132.18420236, ...,  24.1921478 ,
                      -14.00047869, 102.90066706], shape=(68661,)),
               'avg_v3_A': array([-32.58079375, -61.46421885,  24.8789603 , ...,  30.76104904,
                      -19.09330169, -15.82862775], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-17.12729054,  94.67843761, 132.18420236, ...,  24.1921478 ,
                      -14.00047869, 102.90066706], shape=(68661,)),
               'avg_v3_B': array([-32.58079375, -61.46421885,  24.8789603 , ...,  30.76104904,
                      -19.09330169, -15.82862775], shape=(68661,))},
              np.float64(52.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-16.51453934,  94.53139356, 132.49947097, ...,  23.6412649 ,
                      -13.66447739, 102.83717195], shape=(68661,)),
               'avg_v3_A': array([-32.87017543, -60.46744956,  25.61810223, ...,  31.16647844,
                      -19.33238193, -14.85374927], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-16.51453934,  94.53139356, 132.49947097, ...,  23.6412649 ,
                      -13.66447739, 102.83717195], shape=(68661,)),
               'avg_v3_B': array([-32.87017543, -60.46744956,  25.61810223, ...,  31.16647844,
                      -19.33238193, -14.85374927], shape=(68661,))},
              np.float64(53.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-15.89306848,  94.3943758 , 132.82741678, ...,  23.0792705 ,
                      -13.32348747, 102.77800116], shape=(68661,)),
               'avg_v3_A': array([-33.14923051, -59.47048441,  26.35345206, ...,  31.5630111 ,
                      -19.56572138, -13.87863296], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-15.89306848,  94.3943758 , 132.82741678, ...,  23.0792705 ,
                      -13.32348747, 102.77800116], shape=(68661,)),
               'avg_v3_B': array([-33.14923051, -59.47048441,  26.35345206, ...,  31.5630111 ,
                      -19.56572138, -13.87863296], shape=(68661,))},
              np.float64(54.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-15.26308834,  94.26644017, 133.16832073, ...,  22.50622227,
                      -12.97759891, 102.72306545], shape=(68661,)),
               'avg_v3_A': array([-33.41778177, -58.47334209,  27.08483408, ...,  31.95043128,
                      -19.79322788, -12.9032964 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-15.26308834,  94.26644017, 133.16832073, ...,  22.50622227,
                      -12.97759891, 102.72306545], shape=(68661,)),
               'avg_v3_B': array([-33.41778177, -58.47334209,  27.08483408, ...,  31.95043128,
                      -19.79322788, -12.9032964 ], shape=(68661,))},
              np.float64(55.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-14.62482498,  94.14675812, 133.52247381, ...,  21.9221918 ,
                      -12.62690553, 102.67228287], shape=(68661,)),
               'avg_v3_A': array([-33.67565558, -57.47603899,  27.81206644, ...,  32.32852293,
                      -20.01481068, -11.92775667], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-14.62482498,  94.14675812, 133.52247381, ...,  21.9221918 ,
                      -12.62690553, 102.67228287], shape=(68661,)),
               'avg_v3_B': array([-33.67565558, -57.47603899,  27.81206644, ...,  32.32852293,
                      -20.01481068, -11.92775667], shape=(68661,))},
              np.float64(56.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-13.97852024,  94.0345996 , 133.89017693, ...,  21.32726529,
                      -12.27150498, 102.62557851], shape=(68661,)),
               'avg_v3_A': array([-33.92268228, -56.47858958,  28.53496082, ...,  32.69707002,
                      -20.23038053, -10.9520303 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-13.97852024,  94.0345996 , 133.89017693, ...,  21.32726529,
                      -12.27150498, 102.62557851], shape=(68661,)),
               'avg_v3_B': array([-33.92268228, -56.47858958,  28.53496082, ...,  32.69707002,
                      -20.23038053, -10.9520303 ], shape=(68661,))},
              np.float64(57.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-13.3244318 ,  93.9293189 , 134.27174093, ...,  20.72154429,
                      -11.91149879, 102.58288419], shape=(68661,)),
               'avg_v3_A': array([-34.15869663, -55.48100664,  29.25332215, ...,  33.05585684,
                      -20.43984978,  -9.97613341], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-13.3244318 ,  93.9293189 , 134.27174093, ...,  20.72154429,
                      -11.91149879, 102.58288419], shape=(68661,)),
               'avg_v3_B': array([-34.15869663, -55.48100664,  29.25332215, ...,  33.05585684,
                      -20.43984978,  -9.97613341], shape=(68661,))},
              np.float64(58.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-12.66283316,  93.83034287, 134.66748634, ...,  20.10514631,
                      -11.5469924 , 102.54413823], shape=(68661,)),
               'avg_v3_A': array([-34.38353816, -54.48330155,  29.96694832, ...,  33.40466838,
                      -20.64313245,  -9.00008169], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-12.66283316,  93.83034287, 134.66748634, ...,  20.10514631,
                      -11.5469924 , 102.54413823], shape=(68661,)),
               'avg_v3_B': array([-34.38353816, -54.48330155,  29.96694832, ...,  33.40466838,
                      -20.64313245,  -9.00008169], shape=(68661,))},
              np.float64(59.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-11.99401355,  93.73716106, 135.0777433 , ...,  19.47820552,
                      -11.17809513, 102.50928524], shape=(68661,)),
               'avg_v3_A': array([-34.59705162, -53.48548443,  30.67562987, ...,  33.74329071,
                      -20.84014434,  -8.02389048], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-11.99401355,  93.73716106, 135.0777433 , ...,  19.47820552,
                      -11.17809513, 102.50928524], shape=(68661,)),
               'avg_v3_B': array([-34.59705162, -53.48548443,  30.67562987, ...,  33.74329071,
                      -20.84014434,  -8.02389048], shape=(68661,))},
              np.float64(60.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-11.31827774,  93.64931739, 135.50285124, ...,  18.84087329,
                      -10.80492023, 102.4782759 ], shape=(68661,)),
               'avg_v3_A': array([-34.7990874 , -52.48756433,  31.37914968, ...,  34.0715114 ,
                      -21.03080312,  -7.04757477], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-11.31827774,  93.64931739, 135.50285124, ...,  18.84087329,
                      -10.80492023, 102.4782759 ], shape=(68661,)),
               'avg_v3_B': array([-34.7990874 , -52.48756433,  31.37914968, ...,  34.0715114 ,
                      -21.03080312,  -7.04757477], shape=(68661,))},
              np.float64(61.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-10.6359458 ,  93.5664032 , 135.94315859, ...,  18.19331883,
                      -10.42758481, 102.45106681], shape=(68661,)),
               'avg_v3_A': array([-34.9895019 , -51.48954936,  32.07728264, ...,  34.3891199 ,
                      -21.21502842,  -6.07114929], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-10.6359458 ,  93.5664032 , 135.94315859, ...,  18.19331883,
                      -10.42758481, 102.45106681], shape=(68661,)),
               'avg_v3_B': array([-34.9895019 , -51.48954936,  32.07728264, ...,  34.3891199 ,
                      -21.21502842,  -6.07114929], shape=(68661,))},
              np.float64(62.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -9.94735277,  93.48805122, 136.39902238, ...,  17.53572961,
                      -10.04620988, 102.42762031], shape=(68661,)),
               'avg_v3_A': array([-35.16815796, -50.49144685,  32.76979535, ...,  34.695908  ,
                      -21.3927419 ,  -5.0946285 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -9.94735277,  93.48805122, 136.39902238, ...,  17.53572961,
                      -10.04620988, 102.42762031], shape=(68661,)),
               'avg_v3_B': array([-35.16815796, -50.49144685,  32.76979535, ...,  34.695908  ,
                      -21.3927419 ,  -5.0946285 ], shape=(68661,))},
              np.float64(63.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -9.25284822,  93.41393053, 136.87080781, ...,  16.86831186,
                       -9.66092027, 102.40790441], shape=(68661,)),
               'avg_v3_A': array([-35.33492525, -49.49326337,  33.45644577, ...,  34.99167031,
                      -21.56386738,  -4.11802664], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -9.25284822,  93.41393053, 136.87080781, ...,  16.86831186,
                       -9.66092027, 102.40790441], shape=(68661,)),
               'avg_v3_B': array([-35.33492525, -49.49326337,  33.45644577, ...,  34.99167031,
                      -21.56386738,  -4.11802664], shape=(68661,))},
              np.float64(64.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -8.55279575,  93.34374222, 137.35888759, ...,  16.19129094,
                       -9.27184463, 102.39189259], shape=(68661,)),
               'avg_v3_A': array([-35.48968068, -48.49500489,  34.13698297, ...,  35.27620471,
                      -21.72833091,  -3.1413578 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -8.55279575,  93.34374222, 137.35888759, ...,  16.19129094,
                       -9.27184463, 102.39189259], shape=(68661,)),
               'avg_v3_B': array([-35.48968068, -48.49500489,  34.13698297, ...,  35.27620471,
                      -21.72833091,  -3.1413578 ], shape=(68661,))},
              np.float64(65.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -7.84757241,  93.27721563, 137.86364132, ...,  15.50491164,
                       -8.87911536, 102.3795638 ], shape=(68661,)),
               'avg_v3_A': array([-35.63230871, -47.49667682,  34.81114674, ...,  35.54931282,
                      -21.88606087,  -2.16463588], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -7.84757241,  93.27721563, 137.86364132, ...,  15.50491164,
                       -8.87911536, 102.3795638 ], shape=(68661,)),
               'avg_v3_B': array([-35.63230871, -47.49667682,  34.81114674, ...,  35.54931282,
                      -21.88606087,  -2.16463588], shape=(68661,))},
              np.float64(66.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -7.13756803,  93.21410512, 138.38545468, ...,  14.8094384 ,
                       -8.48286853, 102.37090233], shape=(68661,)),
               'avg_v3_A': array([-35.76270178, -46.49828406,  35.47866731, ...,  35.81080054,
                      -22.03698805,  -1.18787469], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -7.13756803,  93.21410512, 138.38545468, ...,  14.8094384 ,
                       -8.48286853, 102.37090233], shape=(68661,)),
               'avg_v3_B': array([-35.76270178, -46.49828406,  35.47866731, ...,  35.81080054,
                      -22.03698805,  -1.18787469], shape=(68661,))},
              np.float64(67.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -6.42318445,  93.1541873 , 138.92471848, ...,  14.10515547,
                       -8.08324386, 102.36589779], shape=(68661,)),
               'avg_v3_A': array([-35.88076061, -45.4998311 ,  36.13926507, ...,  36.06047854,
                      -22.18104574,  -0.21108794], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -6.42318445,  93.1541873 , 138.92471848, ...,  14.10515547,
                       -8.08324386, 102.36589779], shape=(68661,)),
               'avg_v3_B': array([-35.88076061, -45.4998311 ,  36.13926507, ...,  36.06047854,
                      -22.18104574,  -0.21108794], shape=(68661,))},
              np.float64(68.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -5.70483468,  93.09725858, 139.48182758, ...,  13.39236693,
                       -7.68038458, 102.36454504], shape=(68661,)),
               'avg_v3_A': array([-35.98639452, -44.50132203,  36.79265023, ...,  36.29816276,
                      -22.31816982,   0.76571068], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -5.70483468,  93.09725858, 139.48182758, ...,  13.39236693,
                       -7.68038458, 102.36454504], shape=(68661,)),
               'avg_v3_B': array([-35.98639452, -44.50132203,  36.79265023, ...,  36.29816276,
                      -22.31816982,   0.76571068], shape=(68661,))},
              np.float64(69.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -4.98294202,  93.04313307, 140.05717968, ...,  12.67139663,
                       -7.27443738, 102.36684424], shape=(68661,)),
               'avg_v3_A': array([-36.07952174, -43.50276058,  37.4385226 , ...,  36.52367496,
                      -22.44829887,   1.74250754], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -4.98294202,  93.04313307, 140.05717968, ...,  12.67139663,
                       -7.27443738, 102.36684424], shape=(68661,)),
               'avg_v3_B': array([-36.07952174, -43.50276058,  37.4385226 , ...,  36.52367496,
                      -22.44829887,   1.74250754], shape=(68661,))},
              np.float64(70.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -4.25793907,  92.99164075, 140.65117389, ...,  11.94258805,
                       -6.86555229, 102.37280077], shape=(68661,)),
               'avg_v3_A': array([-36.16006968, -42.5041502 ,  38.07657129, ...,  36.73684323,
                      -22.57137421,   2.71928896], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -4.25793907,  92.99164075, 140.65117389, ...,  11.94258805,
                       -6.86555229, 102.37280077], shape=(68661,)),
               'avg_v3_B': array([-36.16006968, -42.5041502 ,  38.07657129, ...,  36.73684323,
                      -22.57137421,   2.71928896], shape=(68661,))},
              np.float64(71.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -3.53026668,  92.94262581, 141.26420914, ...,  11.20630401,
                       -6.45388255, 102.38242532], shape=(68661,)),
               'avg_v3_A': array([-36.22797517, -41.50549404,  38.70647448, ...,  36.9375025 ,
                      -22.68734001,   3.69604126], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -3.53026668,  92.94262581, 141.26420914, ...,  11.20630401,
                       -6.45388255, 102.38242532], shape=(68661,)),
               'avg_v3_B': array([-36.22797517, -41.50549404,  38.70647448, ...,  36.9375025 ,
                      -22.68734001,   3.69604126], shape=(68661,))},
              np.float64(72.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -2.80037286,  92.89594524, 141.89668241, ...,  10.46292627,
                       -6.03958452, 102.39573388], shape=(68661,)),
               'avg_v3_A': array([-36.28318467, -40.50679499,  39.32789925, ...,  37.12549508,
                      -22.79614337,   4.67275063], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -2.80037286,  92.89594524, 141.89668241, ...,  10.46292627,
                       -6.03958452, 102.39573388], shape=(68661,)),
               'avg_v3_B': array([-36.28318467, -40.50679499,  39.32789925, ...,  37.12549508,
                      -22.79614337,   4.67275063], shape=(68661,))},
              np.float64(73.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -2.06871162,  92.8514676 , 142.54898668, ...,   9.71285507,
                       -5.62281751, 102.41274783], shape=(68661,)),
               'avg_v3_A': array([-36.32565445, -39.50805575,  39.94050135, ...,  37.30067115,
                      -22.89773438,   5.64940321], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -2.06871162,  92.8514676 , 142.54898668, ...,   9.71285507,
                       -5.62281751, 102.41274783], shape=(68661,)),
               'avg_v3_B': array([-36.32565445, -39.50805575,  39.94050135, ...,  37.30067115,
                      -22.89773438,   5.64940321], shape=(68661,))},
              np.float64(74.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -1.33574178,  92.80907187, 143.22150871, ...,   8.95650845,
                       -5.20374366, 102.433494  ], shape=(68661,)),
               'avg_v3_A': array([-36.35535079, -38.50927879,  40.54392513, ...,  37.46288926,
                      -22.9920662 ,   6.62598496], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -1.33574178,  92.80907187, 143.22150871, ...,   8.95650845,
                       -5.20374366, 102.433494  ], shape=(68661,)),
               'avg_v3_B': array([-36.35535079, -38.50927879,  40.54392513, ...,  37.46288926,
                      -22.9920662 ,   6.62598496], shape=(68661,))},
              np.float64(75.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -0.60192573,  92.76864651, 143.91462658, ...,   8.19432154,
                       -4.78252777, 102.45800475], shape=(68661,)),
               'avg_v3_A': array([-36.37225002, -37.51046641,  41.13780342, ...,  37.6120168 ,
                      -23.07909513,   7.60248168], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -0.60192573,  92.76864651, 143.91462658, ...,   8.19432154,
                       -4.78252777, 102.45800475], shape=(68661,)),
               'avg_v3_B': array([-36.37225002, -37.51046641,  41.13780342, ...,  37.6120168 ,
                      -23.07909513,   7.60248168], shape=(68661,))},
              np.float64(76.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 1.32271790e-01,  9.27300886e+01,  1.44628707e+02, ...,
                       7.42674572e+00, -4.35933716e+00,  1.02486318e+02], shape=(68661,)),
               'avg_v3_A': array([-36.37633865, -36.51162072,  41.72175749, ...,  37.74793049,
                      -23.15878068,   8.57887895], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 1.32271790e-01,  9.27300886e+01,  1.44628707e+02, ...,
                       7.42674572e+00, -4.35933716e+00,  1.02486318e+02], shape=(68661,)),
               'avg_v3_B': array([-36.37633865, -36.51162072,  41.72175749, ...,  37.74793049,
                      -23.15878068,   8.57887895], shape=(68661,))},
              np.float64(77.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  0.86638502,  92.69330287, 145.364102  , ...,   6.6542476 ,
                       -3.93434144, 102.51847796], shape=(68661,)),
               'avg_v3_A': array([-36.36761342, -35.51274371,  42.2953971 , ...,  37.87051678,
                      -23.23108561,   9.55516213], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  0.86638502,  92.69330287, 145.364102  , ...,   6.6542476 ,
                       -3.93434144, 102.51847796], shape=(68661,)),
               'avg_v3_B': array([-36.36761342, -35.51274371,  42.2953971 , ...,  37.87051678,
                      -23.23108561,   9.55516213], shape=(68661,))},
              np.float64(78.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  1.59994843,  92.65820141, 146.12114629, ...,   5.87730799,
                       -3.50771241, 102.55453404], shape=(68661,)),
               'avg_v3_A': array([-36.3460813 , -34.51383722,  42.85832064, ...,  37.97967228,
                      -23.29597603,  10.53131627], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  1.59994843,  92.65820141, 146.12114629, ...,   5.87730799,
                       -3.50771241, 102.55453404], shape=(68661,)),
               'avg_v3_B': array([-36.3460813 , -34.51383722,  42.85832064, ...,  37.97967228,
                      -23.29597603,  10.53131627], shape=(68661,))},
              np.float64(79.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  2.33249797,  92.62470264, 146.90015311, ...,   5.09642067,
                       -3.0796238 , 102.59454227], shape=(68661,)),
               'avg_v3_A': array([-36.31175945, -33.51490296,  43.41011522, ...,  38.07530416,
                      -23.3534214 ,  11.50732613], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  2.33249797,  92.62470264, 146.90015311, ...,   5.09642067,
                       -3.0796238 , 102.59454227], shape=(68661,)),
               'avg_v3_B': array([-36.31175945, -33.51490296,  43.41011522, ...,  38.07530416,
                      -23.3534214 ,  11.50732613], shape=(68661,))},
              np.float64(80.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  3.06357241,  92.592731  , 147.70141069, ...,   4.31209114,
                       -2.65025113, 102.63856491], shape=(68661,)),
               'avg_v3_A': array([-36.26467521, -32.51594253,  43.95035704, ...,  38.15733044,
                      -23.40339461,  12.48317609], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  3.06357241,  92.592731  , 147.70141069, ...,   4.31209114,
                       -2.65025113, 102.63856491], shape=(68661,)),
               'avg_v3_B': array([-36.26467521, -32.51594253,  43.95035704, ...,  38.15733044,
                      -23.40339461,  12.48317609], shape=(68661,))},
              np.float64(81.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  3.79271453,  92.56221634, 148.52517815, ...,   3.52483523,
                       -2.21977147, 102.68667078], shape=(68661,)),
               'avg_v3_A': array([-36.20486593, -31.51695743,  44.47861172, ...,  38.22568038,
                      -23.44587201,  13.45885015], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  3.79271453,  92.56221634, 148.52517815, ...,   3.52483523,
                       -2.21977147, 102.68667078], shape=(68661,)),
               'avg_v3_B': array([-36.20486593, -31.51695743,  44.47861172, ...,  38.22568038,
                      -23.44587201,  13.45885015], shape=(68661,))},
              np.float64(82.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  4.51947234,  92.53309356, 149.37168108, ...,   2.7351776 ,
                       -1.78836324, 102.73893549], shape=(68661,)),
               'avg_v3_A': array([-36.13237891, -30.51794906,  44.99443477, ...,  38.28029466,
                      -23.48083346,  14.43433184], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  4.51947234,  92.53309356, 149.37168108, ...,   2.7351776 ,
                       -1.78836324, 102.73893549], shape=(68661,)),
               'avg_v3_B': array([-36.13237891, -30.51794906,  44.99443477, ...,  38.28029466,
                      -23.48083346,  14.43433184], shape=(68661,))},
              np.float64(83.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  5.2434003 ,  92.50530213, 150.24110698, ...,   1.94365031,
                       -1.35620599, 102.7954418 ], shape=(68661,)),
               'avg_v3_A': array([-36.04727119, -29.51891874,  45.49737223, ...,  38.32112571,
                      -23.50826234,  15.40960423], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  5.2434003 ,  92.50530213, 150.24110698, ...,   1.94365031,
                       -1.35620599, 102.7954418 ], shape=(68661,)),
               'avg_v3_B': array([-36.04727119, -29.51891874,  45.49737223, ...,  38.32112571,
                      -23.50826234,  15.40960423], shape=(68661,))},
              np.float64(84.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  5.96406043,  92.47878578, 151.13360041, ...,   1.15079113,
                       -0.92348024, 102.85627983], shape=(68661,)),
               'avg_v3_A': array([-35.94960939, -28.51986769,  45.98696136, ...,  38.34813781,
                      -23.5281456 ,  16.38464983], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  5.96406043,  92.47878578, 151.13360041, ...,   1.15079113,
                       -0.92348024, 102.85627983], shape=(68661,)),
               'avg_v3_B': array([-35.94960939, -28.51986769,  45.98696136, ...,  38.34813781,
                      -23.5281456 ,  16.38464983], shape=(68661,))},
              np.float64(85.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  6.68102337,  92.45349216, 152.04925798, ...,   0.35714197,
                       -0.49036716, 102.92154748], shape=(68661,)),
               'avg_v3_A': array([-35.83946944, -27.52079709,  46.46273156, ...,  38.36130728,
                      -23.54047376,  17.35945057], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  6.68102337,  92.45349216, 152.04925798, ...,   0.35714197,
                       -0.49036716, 102.92154748], shape=(68661,)),
               'avg_v3_B': array([-35.83946944, -27.52079709,  46.46273156, ...,  38.36130728,
                      -23.54047376,  17.35945057], shape=(68661,))},
              np.float64(86.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 7.39386944e+00,  9.24293725e+01,  1.52988123e+02, ...,
                      -4.36752828e-01, -5.70484412e-02,  1.02991351e+02], shape=(68661,)),
               'avg_v3_A': array([-35.71693637, -26.52170802,  46.92420534, ...,  38.36062255,
                      -23.54524095,  18.33398773], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 7.39386944e+00,  9.24293725e+01,  1.52988123e+02, ...,
                      -4.36752828e-01, -5.70484412e-02,  1.02991351e+02], shape=(68661,)),
               'avg_v3_B': array([-35.71693637, -26.52170802,  46.92420534, ...,  38.36062255,
                      -23.54524095,  18.33398773], shape=(68661,))},
              np.float64(87.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  8.10218955,  92.40638153, 153.95018113, ...,  -1.23034813,
                        0.376294  , 103.06580431], shape=(68661,)),
               'avg_v3_A': array([-35.582104  , -25.52260152,  47.37089954, ...,  38.34608422,
                      -23.54244489,  19.30824189], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  8.10218955,  92.40638153, 153.95018113, ...,  -1.23034813,
                        0.376294  , 103.06580431], shape=(68661,)),
               'avg_v3_B': array([-35.582104  , -25.52260152,  47.37089954, ...,  38.34608422,
                      -23.54244489,  19.30824189], shape=(68661,))},
              np.float64(88.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  8.80558613,  92.3844769 , 154.93535313, ...,  -2.02309976,
                        0.80947819, 103.14503167], shape=(68661,)),
               'avg_v3_A': array([-35.43507466, -24.52347857,  47.80232665, ...,  38.31770507,
                      -23.53208691,  20.28219286], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  8.80558613,  92.3844769 , 154.93535313, ...,  -2.02309976,
                        0.80947819, 103.14503167], shape=(68661,)),
               'avg_v3_B': array([-35.43507466, -24.52347857,  47.80232665, ...,  38.31770507,
                      -23.53208691,  20.28219286], shape=(68661,))},
              np.float64(89.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  9.5036739 ,  92.36361927, 155.94349152, ...,  -2.81446613,
                        1.24232238, 103.22916596], shape=(68661,)),
               'avg_v3_A': array([-35.27595883, -23.5243401 ,  48.21799631, ...,  38.27550996,
                      -23.51417196,  21.25581964], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  9.5036739 ,  92.36361927, 155.94349152, ...,  -2.81446613,
                        1.24232238, 103.22916596], shape=(68661,)),
               'avg_v3_B': array([-35.27595883, -23.5243401 ,  48.21799631, ...,  38.27550996,
                      -23.51417196,  21.25581964], shape=(68661,))},
              np.float64(90.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 10.19608059,  92.34377197, 156.97437441, ...,  -3.60390997,
                        1.67464522, 103.31835034], shape=(68661,)),
               'avg_v3_A': array([-35.10487482, -22.52518696,  48.61741698, ...,  38.21953579,
                      -23.48870857,  22.22910029], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 10.19608059,  92.34377197, 156.97437441, ...,  -3.60390997,
                        1.67464522, 103.31835034], shape=(68661,)),
               'avg_v3_B': array([-35.10487482, -22.52518696,  48.61741698, ...,  38.21953579,
                      -23.48870857,  22.22910029], shape=(68661,))},
              np.float64(91.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 10.88244761,  92.32490086, 158.02770074, ...,  -4.39089989,
                        2.10626602, 103.41273862], shape=(68661,)),
               'avg_v3_A': array([-34.92194838, -21.52602001,  49.00009784, ...,  38.14983132,
                      -23.45570887,  23.20201191], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 10.88244761,  92.32490086, 158.02770074, ...,  -4.39089989,
                        2.10626602, 103.41273862], shape=(68661,)),
               'avg_v3_B': array([-34.92194838, -21.52602001,  49.00009784, ...,  38.14983132,
                      -23.45570887,  23.20201191], shape=(68661,))},
              np.float64(92.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 11.5624306 ,  92.30697415, 159.10308555, ...,  -5.17491203,
                        2.53700494, 103.51249595], shape=(68661,)),
               'avg_v3_A': array([-34.72731238, -20.52684003,  49.36555072, ...,  38.06645698,
                      -23.41518855,  24.17453053], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 11.5624306 ,  92.30697415, 159.10308555, ...,  -5.17491203,
                        2.53700494, 103.51249595], shape=(68661,)),
               'avg_v3_B': array([-34.72731238, -20.52684003,  49.36555072, ...,  38.06645698,
                      -23.41518855,  24.17453053], shape=(68661,))},
              np.float64(93.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 12.2356999 ,  92.28996223, 160.20005578, ...,  -5.95543151,
                        2.96668325, 103.61779948], shape=(68661,)),
               'avg_v3_A': array([-34.52110633, -19.52764777,  49.71329235, ...,  37.96948466,
                      -23.36716683,  25.14663102], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 12.2356999 ,  92.28996223, 160.20005578, ...,  -5.95543151,
                        2.96668325, 103.61779948], shape=(68661,)),
               'avg_v3_B': array([-34.52110633, -19.52764777,  49.71329235, ...,  37.96948466,
                      -23.36716683,  25.14663102], shape=(68661,))},
              np.float64(94.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 12.90194093,  92.27383758, 161.31804646, ...,  -6.73195394,
                        3.39512351, 103.72883921], shape=(68661,)),
               'avg_v3_A': array([-34.30347606, -18.52844396,  50.04284663, ...,  37.8589974 ,
                      -23.31166644,  26.11828702], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 12.90194093,  92.27383758, 161.31804646, ...,  -6.73195394,
                        3.39512351, 103.72883921], shape=(68661,)),
               'avg_v3_B': array([-34.30347606, -18.52844396,  50.04284663, ...,  37.8589974 ,
                      -23.31166644,  26.11828702], shape=(68661,))},
              np.float64(95.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 13.56085452,  92.25857462, 162.45639773, ...,  -7.50398676,
                        3.82214978, 103.84581882], shape=(68661,)),
               'avg_v3_A': array([-34.07457327, -17.52922928,  50.35374713, ...,  37.73508912,
                      -23.24871361,  27.08947077], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 13.56085452,  92.25857462, 162.45639773, ...,  -7.50398676,
                        3.82214978, 103.84581882], shape=(68661,)),
               'avg_v3_B': array([-34.07457327, -17.52922928,  50.35374713, ...,  37.73508912,
                      -23.24871361,  27.08947077], shape=(68661,))},
              np.float64(96.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 14.21215713,  92.2441496 , 163.61435245, ...,  -8.27105052,
                        4.24758783, 103.9689566 ], shape=(68661,)),
               'avg_v3_A': array([-33.83455515, -16.53000438,  50.64553964, ...,  37.59786421,
                      -23.17833798,  28.06015308], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 14.21215713,  92.2441496 , 163.61435245, ...,  -8.27105052,
                        4.24758783, 103.9689566 ], shape=(68661,)),
               'avg_v3_B': array([-33.83455515, -16.53000438,  50.64553964, ...,  37.59786421,
                      -23.17833798,  28.06015308], shape=(68661,))},
              np.float64(97.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 14.85558096,  92.23054049, 164.7910548 , ...,  -9.03268005,
                        4.67126536, 104.09848649], shape=(68661,)),
               'avg_v3_A': array([-33.58358394, -15.5307699 ,  50.91778485, ...,  37.44743721,
                      -23.10057257,  29.03030313], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 14.85558096,  92.23054049, 164.7910548 , ...,  -9.03268005,
                        4.67126536, 104.09848649], shape=(68661,)),
               'avg_v3_B': array([-33.58358394, -15.5307699 ,  50.91778485, ...,  37.44743721,
                      -23.10057257,  29.03030313], shape=(68661,))},
              np.float64(98.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 15.49087406,  92.21772691, 165.98554992, ...,  -9.78842556,
                        5.09301215, 104.23465924], shape=(68661,)),
               'avg_v3_A': array([-33.32182653, -14.53152645,  51.17006109, ...,  37.28393234,
                      -23.01545377,  29.99988837], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 15.49087406,  92.21772691, 165.98554992, ...,  -9.78842556,
                        5.09301215, 104.23465924], shape=(68661,)),
               'avg_v3_B': array([-33.32182653, -14.53152645,  51.17006109, ...,  37.28393234,
                      -23.01545377,  29.99988837], shape=(68661,))},
              np.float64(99.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 16.11780032,  92.20569001, 167.19678455, ..., -10.53785355,
                        5.51266027, 104.37774361], shape=(68661,)),
               'avg_v3_A': array([-33.04945406, -13.5322746 ,  51.4019671 , ...,  37.1074831 ,
                      -22.92302121,  30.96887438], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 16.11780032,  92.20569001, 167.19678455, ..., -10.53785355,
                        5.51266027, 104.37774361], shape=(68661,)),
               'avg_v3_B': array([-33.04945406, -13.5322746 ,  51.4019671 , ...,  37.1074831 ,
                      -22.92302121,  30.96887438], shape=(68661,))},
              np.float64(100.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 16.73613938,  92.19441244, 168.4236089 , ..., -11.28054771,
                        5.93004426, 104.52802774], shape=(68661,)),
               'avg_v3_A': array([-32.7666415 , -12.53301492,  51.61312479, ...,  36.91823179,
                      -22.82331776,  31.93722469], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 16.73613938,  92.19441244, 168.4236089 , ..., -11.28054771,
                        5.93004426, 104.52802774], shape=(68661,)),
               'avg_v3_B': array([-32.7666415 , -12.53301492,  51.61312479, ...,  36.91823179,
                      -22.82331776,  31.93722469], shape=(68661,))},
              np.float64(101.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 17.34568647,  92.18387823, 169.66477985, ..., -12.01610962,
                        6.34500126, 104.68582067], shape=(68661,)),
               'avg_v3_A': array([-32.47356727, -11.53374795,  51.80318201, ...,  36.71632903,
                      -22.71638946,  32.90490059], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 17.34568647,  92.18387823, 169.66477985, ..., -12.01610962,
                        6.34500126, 104.68582067], shape=(68661,)),
               'avg_v3_B': array([-32.47356727, -11.53374795,  51.80318201, ...,  36.71632903,
                      -22.71638946,  32.90490059], shape=(68661,))},
              np.float64(102.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 17.94625225,  92.17407277, 170.91896527, ..., -12.74415936,
                        6.75737122, 104.85145394], shape=(68661,)),
               'avg_v3_A': array([-32.17041283, -10.53447421,  51.97181513, ...,  36.50193328,
                      -22.60228541,  33.87186096], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 17.94625225,  92.17407277, 170.91896527, ..., -12.74415936,
                        6.75737122, 104.85145394], shape=(68661,)),
               'avg_v3_B': array([-32.17041283, -10.53447421,  51.97181513, ...,  36.50193328,
                      -22.60228541,  33.87186096], shape=(68661,))},
              np.float64(103.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 18.53766254,  92.16498274, 172.18474979, ..., -13.464336  ,
                        7.16699698, 105.02528342], shape=(68661,)),
               'avg_v3_A': array([-31.85736233,  -9.53519422,  52.11873163, ...,  36.27521028,
                      -22.48105775,  34.83806204], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 18.53766254,  92.16498274, 172.18474979, ..., -13.464336  ,
                        7.16699698, 105.02528342], shape=(68661,)),
               'avg_v3_B': array([-31.85736233,  -9.53519422,  52.11873163, ...,  36.27521028,
                      -22.48105775,  34.83806204], shape=(68661,))},
              np.float64(104.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 19.119758  ,  92.15659602, 173.46064178, ..., -14.17629801,
                        7.57372449, 105.20769133], shape=(68661,)),
               'avg_v3_A': array([-31.5346022 ,  -8.53590846,  52.24367244, ...,  36.03633261,
                      -22.35276156,  35.8034572 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 19.119758  ,  92.15659602, 173.46064178, ..., -14.17629801,
                        7.57372449, 105.20769133], shape=(68661,)),
               'avg_v3_B': array([-31.5346022 ,  -8.53590846,  52.24367244, ...,  36.03633261,
                      -22.35276156,  35.8034572 ], shape=(68661,))},
              np.float64(105.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 19.69239376,  92.14890173, 174.74508153, ..., -14.87972346,
                        7.97740286, 105.39908836], shape=(68661,)),
               'avg_v3_A': array([-31.20232084,  -7.53661743,  52.34641407, ...,  35.7854791 ,
                      -22.21745477,  36.76799667], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 19.69239376,  92.14890173, 174.74508153, ..., -14.87972346,
                        7.97740286, 105.39908836], shape=(68661,)),
               'avg_v3_B': array([-31.20232084,  -7.53661743,  52.34641407, ...,  35.7854791 ,
                      -22.21745477,  36.76799667], shape=(68661,))},
              np.float64(106.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 20.25543908,  92.14189009, 176.03645057, ..., -15.57431024,
                        8.37788453, 105.59991616], shape=(68661,)),
               'avg_v3_A': array([-30.86070825,  -6.53732157,  52.42677055, ...,  35.52283435,
                      -22.0751981 ,  37.73162726], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 20.25543908,  92.14189009, 176.03645057, ..., -15.57431024,
                        8.37788453, 105.59991616], shape=(68661,)),
               'avg_v3_B': array([-30.86070825,  -6.53732157,  52.42677055, ...,  35.52283435,
                      -22.0751981 ,  37.73162726], shape=(68661,))},
              np.float64(107.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 20.80877685,  92.13555245, 177.33308201, ..., -16.25977607,
                        8.77502535, 105.81064998], shape=(68661,)),
               'avg_v3_A': array([-30.50995569,  -5.53802137,  52.484595  , ...,  35.24858819,
                      -21.92605498,  38.69429203], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 20.80877685,  92.13555245, 177.33308201, ..., -16.25977607,
                        8.77502535, 105.81064998], shape=(68661,)),
               'avg_v3_B': array([-30.50995569,  -5.53802137,  52.484595  , ...,  35.24858819,
                      -21.92605498,  38.69429203], shape=(68661,))},
              np.float64(108.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 21.35230318,  92.12988127, 178.63327171, ..., -16.93585845,
                        9.16868468, 106.03180164], shape=(68661,)),
               'avg_v3_A': array([-30.1502554 ,  -4.53871726,  52.51978097, ...,  34.96293518,
                      -21.77009145,  39.65592993], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 21.35230318,  92.12988127, 178.63327171, ..., -16.93585845,
                        9.16868468, 106.03180164], shape=(68661,)),
               'avg_v3_B': array([-30.1502554 ,  -4.53871726,  52.51978097, ...,  34.96293518,
                      -21.77009145,  39.65592993], shape=(68661,))},
              np.float64(109.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 21.88592689,  92.12487002, 179.93529008, ..., -17.60231452,
                        9.55872549, 106.26392283], shape=(68661,)),
               'avg_v3_A': array([-29.78180029,  -3.53940968,  52.53226335, ...,  34.66607406,
                      -21.60737606,  40.61647544], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 21.88592689,  92.12487002, 179.93529008, ..., -17.60231452,
                        9.55872549, 106.26392283], shape=(68661,)),
               'avg_v3_B': array([-29.78180029,  -3.53940968,  52.53226335, ...,  34.66607406,
                      -21.60737606,  40.61647544], shape=(68661,))},
              np.float64(110.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  22.40956898,   92.12051324, -178.7626056 , ...,  -18.25892084,
                         9.94501442,  106.50760869], shape=(68661,)),
               'avg_v3_A': array([-29.40478362,  -2.54009907,  52.522019  , ...,  34.35820731,
                      -21.43797983,  41.5758581 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  22.40956898,   92.12051324, -178.7626056 , ...,  -18.25892084,
                         9.94501442,  106.50760869], shape=(68661,)),
               'avg_v3_B': array([-29.40478362,  -2.54009907,  52.522019  , ...,  34.35820731,
                      -21.43797983,  41.5758581 ], shape=(68661,))},
              np.float64(111.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  22.92316214,   92.11680645, -177.46215869, ...,  -18.90547304,
                        10.32742183,  106.76350191], shape=(68661,)),
               'avg_v3_A': array([-29.01939881,  -1.54078586,  52.48906691, ...,  34.03954063,
                      -21.26197611,  42.534002  ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  22.92316214,   92.11680645, -177.46215869, ...,  -18.90547304,
                        10.32742183,  106.76350191], shape=(68661,)),
               'avg_v3_B': array([-29.01939881,  -1.54078586,  52.48906691, ...,  34.03954063,
                      -21.26197611,  42.534002  ], shape=(68661,))},
              np.float64(112.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  23.42665018,   92.1137462 , -176.1651006 , ...,  -19.54178548,
                        10.7058219 ,  107.0322972 ], shape=(68661,)),
               'avg_v3_A': array([-28.62583911,  -0.54147046,  52.43346807, ...,  33.71028248,
                      -21.07944051,  43.49082531], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  23.42665018,   92.1137462 , -176.1651006 , ...,  -19.54178548,
                        10.7058219 ,  107.0322972 ], shape=(68661,)),
               'avg_v3_B': array([-28.62583911,  -0.54147046,  52.43346807, ...,  33.71028248,
                      -21.07944051,  43.49082531], shape=(68661,))},
              np.float64(113.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  23.9199875 ,   92.11133001, -174.87313854, ...,  -20.16769073,
                        11.08009262,  107.31474625], shape=(68661,)),
               'avg_v3_A': array([-28.22429742,   0.4578467 ,  52.35532491, ...,  33.37064359,
                      -20.89045081,  44.44623958], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  23.9199875 ,   92.11133001, -174.87313854, ...,  -20.16769073,
                        11.08009262,  107.31474625], shape=(68661,)),
               'avg_v3_B': array([-28.22429742,   0.4578467 ,  52.35532491, ...,  33.37064359,
                      -20.89045081,  44.44623958], shape=(68661,))},
              np.float64(114.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  24.4031385 ,   92.10955639, -173.58794356, ...,  -20.78303916,
                        11.45011585,  107.61166339], shape=(68661,)),
               'avg_v3_A': array([-27.81496607,   1.45716521,  52.25478037, ...,  33.02083658,
                      -20.69508685,  45.40014913], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  24.4031385 ,   92.10955639, -173.58794356, ...,  -20.78303916,
                        11.45011585,  107.61166339], shape=(68661,)),
               'avg_v3_B': array([-27.81496607,   1.45716521,  52.25478037, ...,  33.02083658,
                      -20.69508685,  45.40014913], shape=(68661,))},
              np.float64(115.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  24.87607705,   92.10842482, -172.31113937, ...,  -21.38769826,
                        11.81577734,  107.92393174], shape=(68661,)),
               'avg_v3_A': array([-27.39803657,   2.45648464,  52.13201664, ...,  32.66107551,
                      -20.49343048,  46.35245023], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  24.87607705,   92.10842482, -172.31113937, ...,  -21.38769826,
                        11.81577734,  107.92393174], shape=(68661,)),
               'avg_v3_B': array([-27.39803657,   2.45648464,  52.13201664, ...,  32.66107551,
                      -20.49343048,  46.35245023], shape=(68661,))},
              np.float64(116.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  25.33878592,   92.10793576, -171.04429191, ...,  -21.98155212,
                        12.17696675,  108.2525102 ], shape=(68661,)),
               'avg_v3_A': array([-26.97369949,   3.45580461,  51.98725359, ...,  32.29157545,
                      -20.2855654 ,  47.30303025], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  25.33878592,   92.10793576, -171.04429191, ...,  -21.98155212,
                        12.17696675,  108.2525102 ], shape=(68661,)),
               'avg_v3_B': array([-26.97369949,   3.45580461,  51.98725359, ...,  32.29157545,
                      -20.2855654 ,  47.30303025], shape=(68661,))},
              np.float64(117.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  25.79125622,   92.10809065, -169.7888999 , ...,  -22.56450076,
                        12.53357762,  108.59844125], shape=(68661,)),
               'avg_v3_A': array([-26.54214425,   4.45512467,  51.82074689, ...,  31.91255217,
                      -20.07157715,  48.25176671], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  25.79125622,   92.10809065, -169.7888999 , ...,  -22.56450076,
                        12.53357762,  108.59844125], shape=(68661,)),
               'avg_v3_B': array([-26.54214425,   4.45512467,  51.82074689, ...,  31.91255217,
                      -20.07157715,  48.25176671], shape=(68661,))},
              np.float64(118.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  26.23348688,   92.10889192, -168.54638654, ...,  -23.13645944,
                        12.88550741,  108.96285964], shape=(68661,)),
               'avg_v3_A': array([-26.10355898,   5.45444443,  51.63278586, ...,  31.52422173,
                      -19.85155294,  49.19852614], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  26.23348688,   92.10889192, -168.54638654, ...,  -23.13645944,
                        12.88550741,  108.96285964], shape=(68661,)),
               'avg_v3_B': array([-26.10355898,   5.45444443,  51.63278586, ...,  31.52422173,
                      -19.85155294,  49.19852614], shape=(68661,))},
              np.float64(119.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  26.66548405,   92.110343  , -167.31809244, ...,  -23.69735798,
                        13.23265745,  109.34700227], shape=(68661,)),
               'avg_v3_A': array([-25.65813038,   6.45376347,  51.42369116, ...,  31.12680015,
                      -19.62558163,  50.14316285], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  26.66548405,   92.110343  , -167.31809244, ...,  -23.69735798,
                        13.23265745,  109.34700227], shape=(68661,)),
               'avg_v3_B': array([-25.65813038,   6.45376347,  51.42369116, ...,  31.12680015,
                      -19.62558163,  50.14316285], shape=(68661,))},
              np.float64(120.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  27.08726063,   92.11244833, -166.10526971, ...,  -24.24714006,
                        13.57493294,  109.75221913], shape=(68661,)),
               'avg_v3_A': array([-25.20604358,   7.45308137,  51.19381227, ...,  30.72050312,
                      -19.39375357,  51.08551753], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  27.08726063,   92.11244833, -166.10526971, ...,  -24.24714006,
                        13.57493294,  109.75221913], shape=(68661,)),
               'avg_v3_B': array([-25.20604358,   7.45308137,  51.19381227, ...,  30.72050312,
                      -19.39375357,  51.08551753], shape=(68661,))},
              np.float64(121.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  27.4988357 ,   92.11521338, -164.90907748, ...,  -24.78576244,
                        13.91224289,  110.17998575], shape=(68661,)),
               'avg_v3_A': array([-24.74748205,   8.45239769,  50.94352483, ...,  30.30554567,
                      -19.15616058,  52.02541561], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  27.4988357 ,   92.11521338, -164.90907748, ...,  -24.78576244,
                        13.91224289,  110.17998575], shape=(68661,)),
               'avg_v3_B': array([-24.74748205,   8.45239769,  50.94352483, ...,  30.30554567,
                      -19.15616058,  52.02541561], shape=(68661,))},
              np.float64(122.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  27.90023407,   92.11864469, -163.73057863, ...,  -25.3131943 ,
                        14.24450012,  110.63191712], shape=(68661,)),
               'avg_v3_A': array([-24.2826275 ,   9.45171203,  50.67322795, ...,  29.88214196,
                      -18.91289581,  52.96266545], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  27.90023407,   92.11864469, -163.73057863, ...,  -25.3131943 ,
                        14.24450012,  110.63191712], shape=(68661,)),
               'avg_v3_B': array([-24.2826275 ,   9.45171203,  50.67322795, ...,  29.88214196,
                      -18.91289581,  52.96266545], shape=(68661,))},
              np.float64(123.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  28.29148572,   92.12274986, -162.57073777, ...,  -25.82941644,
                        14.57162117,  111.10978348], shape=(68661,)),
               'avg_v3_A': array([-23.81165977,  10.45102392,  50.38334141, ...,  29.45050496,
                      -18.6640537 ,  53.89705625], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  28.29148572,   92.12274986, -162.57073777, ...,  -25.82941644,
                        14.57162117,  111.10978348], shape=(68661,)),
               'avg_v3_B': array([-23.81165977,  10.45102392,  50.38334141, ...,  29.45050496,
                      -18.6640537 ,  53.89705625], shape=(68661,))},
              np.float64(124.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  28.67262539,   92.12753762, -161.43042046, ...,  -26.3344206 ,
                        14.8935263 ,  111.61552805], shape=(68661,)),
               'avg_v3_A': array([-23.33475679,  11.45033295,  50.0743029 , ...,  29.01084625,
                      -18.40972985,  54.82835565], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  28.67262539,   92.12753762, -161.43042046, ...,  -26.3344206 ,
                        14.8935263 ,  111.61552805], shape=(68661,)),
               'avg_v3_B': array([-23.33475679,  11.45033295,  50.0743029 , ...,  29.01084625,
                      -18.40972985,  54.82835565], shape=(68661,))},
              np.float64(125.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  29.04369205,   92.13301784, -160.3103935 , ...,  -26.82820867,
                        15.21013938,  112.15128712], shape=(68661,)),
               'avg_v3_A': array([-22.85209448,  12.44963865,  49.74656529, ...,  28.56337585,
                      -18.15002097,  55.75630697], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  29.04369205,   92.13301784, -160.3103935 , ...,  -26.82820867,
                        15.21013938,  112.15128712], shape=(68661,)),
               'avg_v3_B': array([-22.85209448,  12.44963865,  49.74656529, ...,  28.56337585,
                      -18.15002097,  55.75630697], shape=(68661,))},
              np.float64(126.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  29.40472853,   92.13920158, -159.21132629, ...,  -27.31079205,
                        15.52138785,  112.71941268], shape=(68661,)),
               'avg_v3_A': array([-22.36384676,  13.44894056,  49.40059393, ...,  28.10830197,
                      -17.88502482,  56.6806261 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  29.40472853,   92.13920158, -159.21132629, ...,  -27.31079205,
                        15.52138785,  112.71941268], shape=(68661,)),
               'avg_v3_B': array([-22.36384676,  13.44894056,  49.40059393, ...,  28.10830197,
                      -17.88502482,  56.6806261 ], shape=(68661,))},
              np.float64(127.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  29.75578104,   92.14610115, -158.13379297, ...,  -27.7821909 ,
                        15.82720266,  113.32249808], shape=(68661,)),
               'avg_v3_A': array([-21.87018542,  14.4482382 ,  49.03686405, ...,  27.64583089,
                      -17.61484007,  57.60099783], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  29.75578104,   92.14610115, -158.13379297, ...,  -27.7821909 ,
                        15.82720266,  113.32249808], shape=(68661,)),
               'avg_v3_B': array([-21.87018542,  14.4482382 ,  49.03686405, ...,  27.64583089,
                      -17.61484007,  57.60099783], shape=(68661,))},
              np.float64(128.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  30.09689879,   92.15373014, -157.07827553, ...,  -28.24243344,
                        16.12751816,  113.96340688], shape=(68661,)),
               'avg_v3_A': array([-21.37128018,  15.4475311 ,  48.65585835, ...,  27.17616677,
                      -17.33956628,  58.51707169], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  30.09689879,   92.15373014, -157.07827553, ...,  -28.24243344,
                        16.12751816,  113.96340688], shape=(68661,)),
               'avg_v3_B': array([-21.37128018,  15.4475311 ,  48.65585835, ...,  27.17616677,
                      -17.33956628,  58.51707169], shape=(68661,))},
              np.float64(129.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  30.42813357,   92.16210347, -156.04516741, ...,  -28.69155532,
                        16.42227208,  114.64530554], shape=(68661,)),
               'avg_v3_A': array([-20.8672986 ,  16.44681875,  48.2580646 , ...,  26.69951156,
                      -17.05930382,  59.42845709], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  30.42813357,   92.16210347, -156.04516741, ...,  -28.69155532,
                        16.42227208,  114.64530554], shape=(68661,)),
               'avg_v3_B': array([-20.8672986 ,  16.44681875,  48.2580646 , ...,  26.69951156,
                      -17.05930382,  59.42845709], shape=(68661,))},
              np.float64(130.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  30.74953943,   92.1712375 , -155.03477773, ...,  -29.12959896,
                        16.71140537,  115.37170018], shape=(68661,)),
               'avg_v3_A': array([-20.35840611,  17.44610063,  47.84397346, ...,  26.21606484,
                      -16.77415377,  60.33471773], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  30.74953943,   92.1712375 , -155.03477773, ...,  -29.12959896,
                        16.71140537,  115.37170018], shape=(68661,)),
               'avg_v3_B': array([-20.35840611,  17.44610063,  47.84397346, ...,  26.21606484,
                      -16.77415377,  60.33471773], shape=(68661,))},
              np.float64(131.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  31.06117226,   92.18115004, -154.04733598, ...,  -29.55661288,
                        16.99486219,  116.14647794], shape=(68661,)),
               'avg_v3_A': array([-19.84476598,  18.44537621,  47.41407648, ...,  25.72602378,
                      -16.4842179 ,  61.23536512], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  31.06117226,   92.18115004, -154.04733598, ...,  -29.55661288,
                        16.99486219,  116.14647794], shape=(68661,)),
               'avg_v3_B': array([-19.84476598,  18.44537621,  47.41407648, ...,  25.72602378,
                      -16.4842179 ,  61.23536512], shape=(68661,))},
              np.float64(132.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  31.36308949,   92.1918605 , -153.08299691, ...,  -29.97265115,
                        17.27258976,  116.9739533 ], shape=(68661,)),
               'avg_v3_A': array([-19.32653933,  19.44464495,  46.96886421, ...,  25.22958298,
                      -16.18959856,  62.12985098], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  31.36308949,   92.1918605 , -153.08299691, ...,  -29.97265115,
                        17.27258976,  116.9739533 ], shape=(68661,)),
               'avg_v3_B': array([-19.32653933,  19.44464495,  46.96886421, ...,  25.22958298,
                      -16.18959856,  62.12985098], shape=(68661,))},
              np.float64(133.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  31.65534979,   92.20338989, -152.14184572, ...,  -30.37777278,
                        17.5445383 ,  117.8589198 ], shape=(68661,)),
               'avg_v3_A': array([-18.80388514,  20.44390626,  46.50882451, ...,  24.72693447,
                      -15.89039864,  63.01755852], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  31.65534979,   92.20338989, -152.14184572, ...,  -30.37777278,
                        17.5445383 ,  117.8589198 ], shape=(68661,)),
               'avg_v3_B': array([-18.80388514,  20.44390626,  46.50882451, ...,  24.72693447,
                      -15.89039864,  63.01755852], shape=(68661,))},
              np.float64(134.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  31.93801269,   92.215761  , -151.22390339, ...,  -30.77204115,
                        17.81066092,  118.80670723], shape=(68661,)),
               'avg_v3_A': array([-18.27696026,  21.44315954,  46.03444104, ...,  24.21826763,
                      -15.58672153,  63.8977922 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  31.93801269,   92.215761  , -151.22390339, ...,  -30.77204115,
                        17.81066092,  118.80670723], shape=(68661,)),
               'avg_v3_B': array([-18.27696026,  21.44315954,  46.03444104, ...,  24.21826763,
                      -15.58672153,  63.8977922 ], shape=(68661,))},
              np.float64(135.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  32.21113839,   92.22899846, -150.32913194, ...,  -31.15552351,
                        18.07091356,  119.82324451], shape=(68661,)),
               'avg_v3_A': array([-17.74591944,  22.44240419,  45.54619189, ...,  23.70376913,
                      -15.27867102,  64.76976588], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  32.21113839,   92.22899846, -150.32913194, ...,  -31.15552351,
                        18.07091356,  119.82324451], shape=(68661,)),
               'avg_v3_B': array([-17.74591944,  22.44240419,  45.54619189, ...,  23.70376913,
                      -15.27867102,  64.76976588], shape=(68661,))},
              np.float64(136.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  32.47478743,   92.24312885, -149.45743975, ...,  -31.52829044,
                        18.32525484,  120.91512763], shape=(68661,)),
               'avg_v3_A': array([-17.21091534,  23.44163955,  45.0445484 , ...,  23.18362291,
                      -14.96635129,  65.63258894], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  32.47478743,   92.24312885, -149.45743975, ...,  -31.52829044,
                        18.32525484,  120.91512763], shape=(68661,)),
               'avg_v3_B': array([-17.21091534,  23.44163955,  45.0445484 , ...,  23.18362291,
                      -14.96635129,  65.63258894], shape=(68661,))},
              np.float64(137.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  32.72902043,   92.25818087, -148.60868676, ...,  -31.89041537,
                        18.57364599,  122.08969192], shape=(68661,)),
               'avg_v3_A': array([-16.67209859,  24.44086493,  44.52997412, ...,  22.65801018,
                      -14.64986682,  66.4852503 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  32.72902043,   92.25818087, -148.60868676, ...,  -31.89041537,
                        18.57364599,  122.08969192], shape=(68661,)),
               'avg_v3_B': array([-16.67209859,  24.44086493,  44.52997412, ...,  22.65801018,
                      -14.64986682,  66.4852503 ], shape=(68661,))},
              np.float64(138.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  32.97389789,   92.27418543, -147.78268948, ...,  -32.24197414,
                        18.81605074,  123.35508662], shape=(68661,)),
               'avg_v3_A': array([-16.1296178 ,  25.44007964,  44.00292391, ...,  22.12710939,
                      -14.32932237,  67.32659978], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  32.97389789,   92.27418543, -147.78268948, ...,  -32.24197414,
                        18.81605074,  123.35508662], shape=(68661,)),
               'avg_v3_B': array([-16.1296178 ,  25.44007964,  44.00292391, ...,  22.12710939,
                      -14.32932237,  67.32659978], shape=(68661,))},
              np.float64(139.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  33.20947993,   92.29117585, -146.97922586, ...,  -32.58304454,
                        19.05243524,  124.7203486 ], shape=(68661,)),
               'avg_v3_A': array([-15.58361961,  26.43928292,  43.46384322, ...,  21.59109625,
                      -14.00482294,  68.15532665], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  33.20947993,   92.29117585, -146.97922586, ...,  -32.58304454,
                        19.05243524,  124.7203486 ], shape=(68661,)),
               'avg_v3_B': array([-15.58361961,  26.43928292,  43.46384322, ...,  21.59109625,
                      -14.00482294,  68.15532665], shape=(68661,))},
              np.float64(140.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  33.43582611,   92.30918801, -146.19803989, ...,  -32.9137059 ,
                        19.28276794,  126.19546995], shape=(68661,)),
               'avg_v3_A': array([-15.03424873,  27.43847398,  42.91316745, ...,  21.05014369,
                      -13.6764737 ,  68.96993504], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  33.43582611,   92.30918801, -146.19803989, ...,  -32.9137059 ,
                        19.28276794,  126.19546995], shape=(68661,)),
               'avg_v3_B': array([-15.03424873,  27.43847398,  42.91316745, ...,  21.05014369,
                      -13.6764737 ,  68.96993504], shape=(68661,))},
              np.float64(141.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  33.6529952 ,   92.32826053, -145.43884602, ...,  -33.23403875,
                        19.5070195 ,  127.79145153], shape=(68661,)),
               'avg_v3_A': array([-14.48164802,  28.437652  ,  42.35132147, ...,  20.50442195,
                      -13.34437996,  69.76871592], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  33.6529952 ,   92.32826053, -145.43884602, ...,  -33.23403875,
                        19.5070195 ,  127.79145153], shape=(68661,)),
               'avg_v3_B': array([-14.48164802,  28.437652  ,  42.35132147, ...,  20.50442195,
                      -13.34437996,  69.76871592], shape=(68661,))},
              np.float64(142.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  33.86104501,   92.34843502, -144.70133324, ...,  -33.54412436,
                        19.72516268,  129.52033034], shape=(68661,)),
               'avg_v3_A': array([-13.92595847,  29.43681611,  41.77871923, ...,  19.95409855,
                      -13.00864716,  70.54971577], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  33.86104501,   92.34843502, -144.70133324, ...,  -33.54412436,
                        19.72516268,  129.52033034], shape=(68661,)),
               'avg_v3_B': array([-13.92595847,  29.43681611,  41.77871923, ...,  19.95409855,
                      -13.00864716,  70.54971577], shape=(68661,))},
              np.float64(143.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  34.06003223,   92.36975624, -143.98516896, ...,  -33.84404451,
                        19.93717226,  131.39516359], shape=(68661,)),
               'avg_v3_A': array([-13.36731934,  30.43596537,  41.19576349, ...,  19.39933835,
                      -12.66938079,  71.31070198], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  34.06003223,   92.36975624, -143.98516896, ...,  -33.84404451,
                        19.93717226,  131.39516359], shape=(68661,)),
               'avg_v3_B': array([-13.36731934,  30.43596537,  41.19576349, ...,  19.39933835,
                      -12.66938079,  71.31070198], shape=(68661,))},
              np.float64(144.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  34.25001226,   92.39227245, -143.29000255, ...,  -34.13388106,
                        20.14302491,  133.42994533], shape=(68661,)),
               'avg_v3_A': array([-12.80586816,  31.43509882,  40.60284561, ...,  18.84030357,
                      -12.32668639,  72.04912585], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  34.25001226,   92.39227245, -143.29000255, ...,  -34.13388106,
                        20.14302491,  133.42994533], shape=(68661,)),
               'avg_v3_B': array([-12.80586816,  31.43509882,  40.60284561, ...,  18.84030357,
                      -12.32668639,  72.04912585], shape=(68661,))},
              np.float64(145.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  34.43103903,   92.41603561, -142.61546865, ...,  -34.41371575,
                        20.34269915,  135.63942296], shape=(68661,)),
               'avg_v3_A': array([-12.24174079,  32.4342154 ,  40.00034544, ...,  18.27715386,
                      -11.98066952,  72.76208447], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  34.43103903,   92.41603561, -142.61546865, ...,  -34.41371575,
                        20.34269915,  135.63942296], shape=(68661,)),
               'avg_v3_B': array([-12.24174079,  32.4342154 ,  40.00034544, ...,  18.27715386,
                      -11.98066952,  72.76208447], shape=(68661,))},
              np.float64(146.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  34.60316494,   92.44110174, -141.96119019, ...,  -34.68362982,
                        20.53617518,  138.03877176], shape=(68661,)),
               'avg_v3_A': array([-11.67507152,  33.43331402,  39.3886313 , ...,  17.71004632,
                      -11.63143572,  73.44628418], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  34.60316494,   92.44110174, -141.96119019, ...,  -34.68362982,
                        20.53617518,  138.03877176], shape=(68661,)),
               'avg_v3_B': array([-11.67507152,  33.43331402,  39.3886313 , ...,  17.71004632,
                      -11.63143572,  73.44628418], shape=(68661,))},
              np.float64(147.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  34.76644065,   92.46753123, -141.32678113, ...,  -34.94370384,
                        20.72343488,  140.64307634], shape=(68661,)),
               'avg_v3_A': array([-11.1059931 ,  34.43239349,  38.76805998, ...,  17.13913557,
                      -11.27909048,  74.09800953], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  34.76644065,   92.46753123, -141.32678113, ...,  -34.94370384,
                        20.72343488,  140.64307634], shape=(68661,)),
               'avg_v3_B': array([-11.1059931 ,  34.43239349,  38.76805998, ...,  17.13913557,
                      -11.27909048,  74.09800953], shape=(68661,))},
              np.float64(148.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  34.920915  ,   92.49538929, -140.711849  , ...,  -35.1940174 ,
                        20.90446161,  143.4665628 ], shape=(68661,)),
               'avg_v3_A': array([-10.53463681,  35.43145256,  38.13897684, ...,  16.56457381,
                      -10.92373925,  74.71310379], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  34.920915  ,   92.49538929, -140.711849  , ...,  -35.1940174 ,
                        20.90446161,  143.4665628 ], shape=(68661,)),
               'avg_v3_B': array([-10.53463681,  35.43145256,  38.13897684, ...,  16.56457381,
                      -10.92373925,  74.71310379], shape=(68661,))},
              np.float64(149.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.0666349 ,   92.52474633, -140.11599714, ...,  -35.4346489 ,
                        21.07924023,  146.52152879], shape=(68661,)),
               'avg_v3_A': array([ -9.96113255,  36.43048989,  37.50171591, ...,  15.98651087,
                      -10.56548739,  75.28696946], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.0666349 ,   92.52474633, -140.11599714, ...,  -35.4346489 ,
                        21.07924023,  146.52152879], shape=(68661,)),
               'avg_v3_B': array([ -9.96113255,  36.43048989,  37.50171591, ...,  15.98651087,
                      -10.56548739,  75.28696946], shape=(68661,))},
              np.float64(150.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.20364523,   92.55567843, -139.53882672, ...,  -35.66567536,
                        21.24775691,  149.81693965], shape=(68661,)),
               'avg_v3_A': array([ -9.38560887,  37.42950405,  36.85660008, ...,  15.40509429,
                      -10.20444015,  75.81459962], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.20364523,   92.55567843, -139.53882672, ...,  -35.66567536,
                        21.24775691,  149.81693965], shape=(68661,)),
               'avg_v3_B': array([ -9.38560887,  37.42950405,  36.85660008, ...,  15.40509429,
                      -10.20444015,  75.81459962], shape=(68661,))},
              np.float64(151.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.33198872,   92.58826795, -138.97993857, ...,  -35.8871722 ,
                        21.40999914,  153.35670657], shape=(68661,)),
               'avg_v3_A': array([-8.80819308, 38.42849347, 36.20394133, ..., 14.82046939,
                      -9.84070268, 76.29065267], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.33198872,   92.58826795, -138.97993857, ...,  -35.8871722 ,
                        21.40999914,  153.35670657], shape=(68661,)),
               'avg_v3_B': array([-8.80819308, 38.42849347, 36.20394133, ..., 14.82046939,
                      -9.84070268, 76.29065267], shape=(68661,))},
              np.float64(152.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.45170591,   92.62260404, -138.4389348 , ...,  -36.09921309,
                        21.56595558,  157.13774565], shape=(68661,)),
               'avg_v3_A': array([-8.22901128, 39.42745652, 35.54404088, ..., 14.23277933,
                      -9.47438001, 76.70958312], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.45170591,   92.62260404, -138.4389348 , ...,  -36.09921309,
                        21.56595558,  157.13774565], shape=(68661,)),
               'avg_v3_B': array([-8.22901128, 39.42745652, 35.54404088, ..., 14.23277933,
                      -9.47438001, 76.70958312], shape=(68661,))},
              np.float64(153.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.56283505,   92.65878339, -137.91542019, ...,  -36.30186973,
                        21.71561601,  161.14803485], shape=(68661,)),
               'avg_v3_A': array([-7.64818846, 40.42639141, 34.87718953, ..., 13.64216517,
                      -9.10557701, 77.06583757], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.56283505,   92.65878339, -137.91542019, ...,  -36.30186973,
                        21.71561601,  161.14803485], shape=(68661,)),
               'avg_v3_B': array([-7.64818846, 40.42639141, 34.87718953, ..., 13.64216517,
                      -9.10557701, 77.06583757], shape=(68661,))},
              np.float64(154.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.66541201,   92.69691094, -137.40900349, ...,  -36.49521174,
                        21.85897125,  165.36501715], shape=(68661,)),
               'avg_v3_A': array([-7.06584858, 41.42529622, 34.20366789, ..., 13.04876599,
                      -8.73439841, 77.35411642], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.66541201,   92.69691094, -137.40900349, ...,  -36.49521174,
                        21.85897125,  165.36501715], shape=(68661,)),
               'avg_v3_B': array([-7.06584858, 41.42529622, 34.20366789, ..., 13.04876599,
                      -8.73439841, 77.35411642], shape=(68661,))},
              np.float64(155.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.75947025,   92.73710078, -136.91929847, ...,  -36.67930652,
                        21.99601307,  169.75479795], shape=(68661,)),
               'avg_v3_A': array([-6.4821146 , 42.42416886, 33.52374668, ..., 12.45271892,
                      -8.36094879, 77.56968824], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.75947025,   92.73710078, -136.91929847, ...,  -36.67930652,
                        21.99601307,  169.75479795], shape=(68661,)),
               'avg_v3_B': array([-6.4821146 , 42.42416886, 33.52374668, ..., 12.45271892,
                      -8.36094879, 77.56968824], shape=(68661,))},
              np.float64(156.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.84504075,   92.77947706, -136.4459249 , ...,  -36.85421909,
                        22.12673416,  174.2725799 ], shape=(68661,)),
               'avg_v3_A': array([-5.89710859, 43.42300709, 32.83768702, ..., 11.85415926,
                      -7.98533257, 77.70872601], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.84504075,   92.77947706, -136.4459249 , ...,  -36.85421909,
                        22.12673416,  174.2725799 ], shape=(68661,)),
               'avg_v3_B': array([-5.89710859, 43.42300709, 32.83768702, ..., 11.85415926,
                      -7.98533257, 77.70872601], shape=(68661,))},
              np.float64(157.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.92215195,   92.82417514, -135.98850935, ...,  -37.02001199,
                        22.25112799,  178.86461204], shape=(68661,)),
               'avg_v3_A': array([-5.31095182, 44.42180846, 32.14574078, ..., 11.25322053,
                      -7.607654  , 77.76861897], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.92215195,   92.82417514, -135.98850935, ...,  -37.02001199,
                        22.25112799,  178.86461204], shape=(68661,)),
               'avg_v3_B': array([-5.31095182, 44.42180846, 32.14574078, ..., 11.25322053,
                      -7.607654  , 77.76861897], shape=(68661,))},
              np.float64(158.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.99082971,   92.87134278, -135.54668587, ...,  -37.17674518,
                        22.36918882, -176.5284043 ], shape=(68661,)),
               'avg_v3_A': array([-4.72376477, 45.42057033, 31.44815084, ..., 10.65003457,
                      -7.22801716, 77.74820612], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.99082971,   92.87134278, -135.54668587, ...,  -37.17674518,
                        22.36918882, -176.5284043 ], shape=(68661,)),
               'avg_v3_B': array([-4.72376477, 45.42057033, 31.44815084, ..., 10.65003457,
                      -7.22801716, 77.74820612], shape=(68661,))},
              np.float64(159.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  36.05109727,   92.92114159, -135.12009658, ...,  -37.32447592,
                        22.48091159, -171.96691697], shape=(68661,)),
               'avg_v3_A': array([-4.13566727, 46.4192898 , 30.74515143, ..., 10.04473161,
                      -6.84652595, 77.64788566], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  36.05109727,   92.92114159, -135.12009658, ...,  -37.32447592,
                        22.48091159, -171.96691697], shape=(68661,)),
               'avg_v3_B': array([-4.13566727, 46.4192898 , 30.74515143, ..., 10.04473161,
                      -6.84652595, 77.64788566], shape=(68661,))},
              np.float64(160.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  36.10297521,   92.97374862, -134.7083922 , ...,  -37.46325866,
                        22.58629188, -167.50791052], shape=(68661,)),
               'avg_v3_A': array([-3.54677854, 47.41796373, 30.03696847, ...,  9.43744037,
                      -6.46328413, 77.46957709], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  36.10297521,   92.97374862, -134.7083922 , ...,  -37.46325866,
                        22.58629188, -167.50791052], shape=(68661,)),
               'avg_v3_B': array([-3.54677854, 47.41796373, 30.03696847, ...,  9.43744037,
                      -6.46328413, 77.46957709], shape=(68661,))},
              np.float64(161.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  36.14648142,   93.02935818, -134.31123238, ...,  -37.59314503,
                        22.68532585, -163.20092984], shape=(68661,)),
               'avg_v3_A': array([-2.9572173 , 48.41658866, 29.32381984, ...,  8.82828812,
                      -6.07839526, 77.21654408], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  36.14648142,   93.02935818, -134.31123238, ...,  -37.59314503,
                        22.68532585, -163.20092984], shape=(68661,)),
               'avg_v3_B': array([-2.9572173 , 48.41658866, 29.32381984, ...,  8.82828812,
                      -6.07839526, 77.21654408], shape=(68661,))},
              np.float64(162.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  36.18163108,   93.08818401, -133.92828608, ...,  -37.71418367,
                        22.77801017, -159.08538152], shape=(68661,)),
               'avg_v3_A': array([-2.36710178, 49.4151608 , 28.60591577, ...,  8.21740081,
                      -5.69196275, 76.89311462], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  36.18163108,   93.08818401, -133.92828608, ...,  -37.71418367,
                        22.77801017, -159.08538152], shape=(68661,)),
               'avg_v3_B': array([-2.36710178, 49.4151608 , 28.60591577, ...,  8.21740081,
                      -5.69196275, 76.89311462], shape=(68661,))},
              np.float64(163.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  36.20843664,   93.15046166, -133.55923179, ...,  -37.82642026,
                        22.864342  , -155.18937062], shape=(68661,)),
               'avg_v3_A': array([-1.77654987, 50.41367601, 27.88345906, ...,  7.6049031 ,
                      -5.30408986, 76.50435021], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  36.20843664,   93.15046166, -133.55923179, ...,  -37.82642026,
                        22.864342  , -155.18937062], shape=(68661,)),
               'avg_v3_B': array([-1.77654987, 50.41367601, 27.88345906, ...,  7.6049031 ,
                      -5.30408986, 76.50435021], shape=(68661,))},
              np.float64(164.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  36.22690779,   93.21645129, -133.20375773, ...,  -37.92989735,
                        22.94431891, -151.5299436 ], shape=(68661,)),
               'avg_v3_A': array([-1.18567916, 51.41212968, 27.15664546, ...,  6.99091849,
                      -4.91487967, 76.05571582], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  36.22690779,   93.21645129, -133.20375773, ...,  -37.92989735,
                        22.94431891, -151.5299436 ], shape=(68661,)),
               'avg_v3_B': array([-1.18567916, 51.41212968, 27.15664546, ...,  6.99091849,
                      -4.91487967, 76.05571582], shape=(68661,))},
              np.float64(165.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  36.23705145,   93.28644099, -132.86156198, ...,  -38.02465442,
                        23.01793887, -148.11435308], shape=(68661,)),
               'avg_v3_A': array([-0.59460702, 52.41051677, 26.42566394, ...,  6.37556937,
                      -4.52443514, 75.55278953], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  36.23705145,   93.28644099, -132.86156198, ...,  -38.02465442,
                        23.01793887, -148.11435308], shape=(68661,)),
               'avg_v3_B': array([-0.59460702, 52.41051677, 26.42566394, ...,  6.37556937,
                      -4.52443514, 75.55278953], shape=(68661,))},
              np.float64(166.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  36.23887177,   93.36075049, -132.53235261, ...,  -38.11072771,
                        23.08520018, -144.94188176], shape=(68661,)),
               'avg_v3_A': array([-3.45067124e-03,  5.34088317e+01,  2.56906970e+01, ...,
                       5.75897716e+00, -4.13285907e+00,  7.50010335e+01], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  36.23887177,   93.36075049, -132.53235261, ...,  -38.11072771,
                        23.08520018, -144.94188176], shape=(68661,)),
               'avg_v3_B': array([-3.45067124e-03,  5.34088317e+01,  2.56906970e+01, ...,
                       5.75897716e+00, -4.13285907e+00,  7.50010335e+01], shape=(68661,))},
              np.float64(167.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  36.23237013,   93.43973562, -132.21584765, ...,  -38.1881503 ,
                        23.14610144, -142.0058198 ], shape=(68661,)),
               'avg_v3_A': array([ 0.58767273, 54.40706813, 24.95192089, ...,  5.14126233,
                      -3.74025412, 74.40563209], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  36.23237013,   93.43973562, -132.21584765, ...,  -38.1881503 ,
                        23.14610144, -142.0058198 ], shape=(68661,)),
               'avg_v3_B': array([ 0.58767273, 54.40706813, 24.95192089, ...,  5.14126233,
                      -3.74025412, 74.40563209], shape=(68661,))},
              np.float64(168.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  36.21754512,   93.5237935 , -131.91177518, ...,  -38.25695196,
                        23.20064153, -139.29531343], shape=(68661,)),
               'avg_v3_A': array([ 1.17864601, 55.40521921, 24.20950605, ...,  4.52254455,
                      -3.34672284, 73.7713905 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  36.21754512,   93.5237935 , -131.91177518, ...,  -38.25695196,
                        23.20064153, -139.29531343], shape=(68661,)),
               'avg_v3_B': array([ 1.17864601, 55.40521921, 24.20950605, ...,  4.52254455,
                      -3.34672284, 73.7713905 ], shape=(68661,))},
              np.float64(169.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  36.19439254,   93.61336861, -131.61987329, ...,  -38.31715918,
                        23.24881957, -136.79693165], shape=(68661,)),
               'avg_v3_A': array([ 1.76935191, 56.40327715, 23.46361721, ...,  3.90294273,
                      -2.95236766, 73.10268417], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  36.19439254,   93.61336861, -131.61987329, ...,  -38.31715918,
                        23.24881957, -136.79693165], shape=(68661,)),
               'avg_v3_B': array([ 1.76935191, 56.40327715, 23.46361721, ...,  3.90294273,
                      -2.95236766, 73.10268417], shape=(68661,))},
              np.float64(170.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  36.16290546,   93.70896006, -131.33989001, ...,  -38.36879514,
                        23.29063487, -134.49589881], shape=(68661,)),
               'avg_v3_A': array([ 2.35967301, 57.40123325, 22.71441376, ...,  3.28257513,
                      -2.5572909 , 72.40344435], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  36.16290546,   93.70896006, -131.33989001, ...,  -38.36879514,
                        23.29063487, -134.49589881], shape=(68661,)),
               'avg_v3_B': array([ 2.35967301, 57.40123325, 22.71441376, ...,  3.28257513,
                      -2.5572909 , 72.40344435], shape=(68661,))},
              np.float64(171.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  36.12307415,   93.81113012, -131.07158328, ...,  -38.41187963,
                        23.32608696, -132.37700527], shape=(68661,)),
               'avg_v3_A': array([ 2.94949165, 58.39907769, 21.96204997, ...,  2.66155946,
                      -2.16159481, 71.67716899], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  36.12307415,   93.81113012, -131.07158328, ...,  -38.41187963,
                        23.32608696, -132.37700527], shape=(68661,)),
               'avg_v3_B': array([ 2.94949165, 58.39907769, 21.96204997, ...,  2.66155946,
                      -2.16159481, 71.67716899], shape=(68661,))},
              np.float64(172.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  36.07488618,   93.92051449, -130.81472084, ...,  -38.44642909,
                        23.35517549, -130.42524161], shape=(68661,)),
               'avg_v3_A': array([ 3.53868985, 59.39679941, 21.20667526, ...,  2.04001293,
                      -1.76538152, 70.92694899], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  36.07488618,   93.92051449, -130.81472084, ...,  -38.44642909,
                        23.35517549, -130.42524161], shape=(68661,)),
               'avg_v3_B': array([ 3.53868985, 59.39679941, 21.20667526, ...,  2.04001293,
                      -1.76538152, 70.92694899], shape=(68661,))},
              np.float64(173.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  36.01832638,   94.03783466, -130.56908015, ...,  -38.47245658,
                        23.3779003 , -128.6262123 ], shape=(68661,)),
               'avg_v3_A': array([ 4.12714924, 60.39438586, 20.44843443, ...,  1.41805239,
                      -1.36875312, 70.15550267], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  36.01832638,   94.03783466, -130.56908015, ...,  -38.47245658,
                        23.3779003 , -128.6262123 ], shape=(68661,)),
               'avg_v3_B': array([ 4.12714924, 60.39438586, 20.44843443, ...,  1.41805239,
                      -1.36875312, 70.15550267], shape=(68661,))},
              np.float64(174.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.95337687,   94.16391274, -130.33444828, ...,  -38.48997171,
                        23.39426132, -126.9663832 ], shape=(68661,)),
               'avg_v3_A': array([ 4.71475098, 61.39182273, 19.6874679 , ...,  0.79579435,
                      -0.97181163, 69.3652135 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.95337687,   94.16391274, -130.33444828, ...,  -38.48997171,
                        23.39426132, -126.9663832 ], shape=(68661,)),
               'avg_v3_B': array([ 4.71475098, 61.39182273, 19.6874679 , ...,  0.79579435,
                      -0.97181163, 69.3652135 ], shape=(68661,))},
              np.float64(175.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.88001714,   94.29968954, -130.11062177, ...,  -38.49898071,
                        23.40425865, -125.43320958], shape=(68661,)),
               'avg_v3_A': array([ 5.30137569, 62.38909366, 18.92391194, ...,  0.17335513,
                      -0.57465903, 68.55816787], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.88001714,   94.29968954, -130.11062177, ...,  -38.49898071,
                        23.40425865, -125.43320958], shape=(68661,)),
               'avg_v3_B': array([ 5.30137569, 62.38909366, 18.92391194, ...,  0.17335513,
                      -0.57465903, 68.55816787], shape=(68661,))},
              np.float64(176.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.79822403,   94.44624675, -129.89740653, ...,  -38.49948637,
                        23.40789244, -124.01518178], shape=(68661,)),
               'avg_v3_A': array([ 5.88690337, 63.38617985, 18.1578989 , ..., -0.44914906,
                      -0.17739727, 67.73619103], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.79822403,   94.44624675, -129.89740653, ...,  -38.49948637,
                        23.40789244, -124.01518178], shape=(68661,)),
               'avg_v3_B': array([ 5.88690337, 63.38617985, 18.1578989 , ..., -0.44914906,
                      -0.17739727, 67.73619103], shape=(68661,))},
              np.float64(177.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.70797178,   94.60483416, -129.69461768, ...,  -38.49148804,
                        23.40516299, -122.70181654], shape=(68661,)),
               'avg_v3_A': array([ 6.47121331, 64.3830596 , 17.38955739, ..., -1.07160209,
                       0.21987174, 66.90088007], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.70797178,   94.60483416, -129.69461768, ...,  -38.49148804,
                        23.40516299, -122.70181654], shape=(68661,)),
               'avg_v3_B': array([ 6.47121331, 64.3830596 , 17.38955739, ..., -1.07160209,
                       0.21987174, 66.90088007], shape=(68661,))},
              np.float64(178.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.6092321 ,   94.77690348, -129.50207945, ...,  -38.47498165,
                        23.39607069, -121.48361461], shape=(68661,)),
               'avg_v3_A': array([ 7.05418406, 65.37970766, 16.61901253, ..., -1.69388773,
                       0.61704607, 66.05363356], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.6092321 ,   94.77690348, -129.50207945, ...,  -38.47498165,
                        23.39607069, -121.48361461], shape=(68661,)),
               'avg_v3_B': array([ 7.05418406, 65.37970766, 16.61901253, ..., -1.69388773,
                       0.61704607, 66.05363356], shape=(68661,))},
              np.float64(179.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.5019742 ,   94.96415071, -129.319625  , ...,  -38.4499597 ,
                        23.38061603, -120.3519988 ], shape=(68661,)),
               'avg_v3_A': array([ 7.63569331, 66.37609459, 15.84638614, ..., -2.31588967,
                       1.0140238 , 65.19567784], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.5019742 ,   94.96415071, -129.319625  , ...,  -38.4499597 ,
                        23.38061603, -120.3519988 ], shape=(68661,)),
               'avg_v3_B': array([ 7.63569331, 66.37609459, 15.84638614, ..., -2.31588967,
                       1.0140238 , 65.19567784], shape=(68661,))},
              np.float64(180.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.38616485,   95.16856953, -129.14709632, ...,  -38.41641126,
                        23.35879961, -119.29924251], shape=(68661,)),
               'avg_v3_A': array([ 8.21561783, 67.37218574, 15.0717969 , ..., -2.93749131,
                       1.41070298, 64.32808998], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.38616485,   95.16856953, -129.14709632, ...,  -38.41641126,
                        23.35879961, -119.29924251], shape=(68661,)),
               'avg_v3_B': array([ 8.21561783, 67.37218574, 15.0717969 , ..., -2.93749131,
                       1.41070298, 64.32808998], shape=(68661,))},
              np.float64(181.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.26176842,   95.3925193 , -128.98434405, ...,  -38.37432198,
                        23.33062215, -118.31839504], shape=(68661,)),
               'avg_v3_A': array([ 8.79383341, 68.36794011, 14.29536058, ..., -3.55857579,
                       1.80698163, 63.45181771], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.26176842,   95.3925193 , -128.98434405, ...,  -38.37432198,
                        23.33062215, -118.31839504], shape=(68661,)),
               'avg_v3_B': array([ 8.79383341, 68.36794011, 14.29536058, ..., -3.55857579,
                       1.80698163, 63.45181771], shape=(68661,))},
              np.float64(182.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.12874699,   95.63881265, -128.83122741, ...,  -38.32367414,
                        23.2960845 , -117.40320793], shape=(68661,)),
               'avg_v3_A': array([ 9.37021478, 69.36330881, 13.5171902 , ..., -4.17902581,
                       2.20275774, 62.56769676], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.12874699,   95.63881265, -128.83122741, ...,  -38.32367414,
                        23.2960845 , -117.40320793], shape=(68661,)),
               'avg_v3_B': array([ 9.37021478, 69.36330881, 13.5171902 , ..., -4.17902581,
                       2.20275774, 62.56769676], shape=(68661,))},
              np.float64(183.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  34.9870604 ,   95.91082921, -128.687614  , ...,  -38.26444659,
                        23.25518764, -116.54806466], shape=(68661,)),
               'avg_v3_A': array([ 9.94463552, 70.35823306, 12.73739621, ..., -4.79872359,
                       2.59792923, 61.67646567], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  34.9870604 ,   95.91082921, -128.687614  , ...,  -38.26444659,
                        23.25518764, -116.54806466], shape=(68661,)),
               'avg_v3_B': array([ 9.94463552, 70.35823306, 12.73739621, ..., -4.79872359,
                       2.59792923, 61.67646567], shape=(68661,))},
              np.float64(184.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  34.83666632,   96.21266552, -128.55337972, ...,  -38.19661485,
                        23.20793273, -115.74791523], shape=(68661,)),
               'avg_v3_A': array([10.51696802, 71.35264158, 11.95608668, ..., -5.41755079,
                       2.99239393, 60.7787786 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  34.83666632,   96.21266552, -128.55337972, ...,  -38.19661485,
                        23.20793273, -115.74791523], shape=(68661,)),
               'avg_v3_B': array([10.51696802, 71.35264158, 11.95608668, ..., -5.41755079,
                       2.99239393, 60.7787786 ], shape=(68661,))},
              np.float64(185.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  34.67752038,   96.54933469, -128.42840861, ...,  -38.12015108,
                        23.15432109, -114.99821615], shape=(68661,)),
               'avg_v3_A': array([11.0870834 , 72.34644708, 11.17336743, ..., -6.03538838,
                       3.38604964, 59.87521639], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  34.67752038,   96.54933469, -128.42840861, ...,  -38.12015108,
                        23.15432109, -114.99821615], shape=(68661,)),
               'avg_v3_B': array([11.0870834 , 72.34644708, 11.17336743, ..., -6.03538838,
                       3.38604964, 59.87521639], shape=(68661,))},
              np.float64(186.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  34.5095762 ,   96.92703651, -128.31259276, ...,  -38.03502414,
                        23.09435424, -114.29487605], shape=(68661,)),
               'avg_v3_A': array([11.65485144, 73.3395415 , 10.38934222, ..., -6.65211658,
                       3.77879401, 58.96629593], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  34.5095762 ,   96.92703651, -128.31259276, ...,  -38.03502414,
                        23.09435424, -114.29487605], shape=(68661,)),
               'avg_v3_B': array([11.65485144, 73.3395415 , 10.38934222, ..., -6.65211658,
                       3.77879401, 58.96629593], shape=(68661,))},
              np.float64(187.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  34.33278557,   97.35352852, -128.20583221, ...,  -37.94119961,
                        23.02803395, -113.63420672], shape=(68661,)),
               'avg_v3_A': array([12.22014049, 74.33178951,  9.60411289, ..., -7.26761478,
                       4.17052463, 58.05247836], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  34.33278557,   97.35352852, -128.20583221, ...,  -37.94119961,
                        23.02803395, -113.63420672], shape=(68661,)),
               'avg_v3_B': array([12.22014049, 74.33178951,  9.60411289, ..., -7.26761478,
                       4.17052463, 58.05247836], shape=(68661,))},
              np.float64(188.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  34.14709852,   97.83864459, -128.10803477, ...,  -37.83863983,
                        22.95536224, -113.01287939], shape=(68661,)),
               'avg_v3_A': array([12.78281746, 75.32301928,  8.81777954, ..., -7.88176142,
                       4.56113897, 57.13417599], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  34.14709852,   97.83864459, -128.10803477, ...,  -37.83863983,
                        22.95536224, -113.01287939], shape=(68661,)),
               'avg_v3_B': array([12.78281746, 75.32301928,  8.81777954, ..., -7.88176142,
                       4.56113897, 57.13417599], shape=(68661,))},
              np.float64(189.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  33.95246343,   98.39503375, -128.01911601, ...,  -37.72730392,
                        22.87634142, -112.42788571], shape=(68661,)),
               'avg_v3_A': array([13.3427477 , 76.31300945,  8.03044064, ..., -8.49443392,
                       4.95053436, 56.2117584 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  33.95246343,   98.39503375, -128.01911601, ...,  -37.72730392,
                        22.87634142, -112.42788571], shape=(68661,)),
               'avg_v3_B': array([13.3427477 , 76.31300945,  8.03044064, ..., -8.49443392,
                       4.95053436, 56.2117584 ], shape=(68661,))},
              np.float64(190.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  33.74882721,   99.03923586, -127.93899912, ...,  -37.60714788,
                        22.79097414, -111.87650318], shape=(68661,)),
               'avg_v3_A': array([13.89979496, 77.30146996,  7.24219322, ..., -9.10550863,
                       5.33860802, 55.28555759], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  33.74882721,   99.03923586, -127.93899912, ...,  -37.60714788,
                        22.79097414, -111.87650318], shape=(68661,)),
               'avg_v3_B': array([13.89979496, 77.30146996,  7.24219322, ..., -9.10550863,
                       5.33860802, 55.28555759], shape=(68661,))},
              np.float64(191.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  33.53613541,   99.79328565, -127.86761482, ...,  -37.4781246 ,
                        22.69926341, -111.3562644 ], shape=(68661,)),
               'avg_v3_A': array([14.45382135, 78.28801336,  6.45313298, ..., -9.71486067,
                       5.72525702, 54.35587251], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  33.53613541,   99.79328565, -127.86761482, ...,  -37.4781246 ,
                        22.69926341, -111.3562644 ], shape=(68661,)),
               'avg_v3_B': array([14.45382135, 78.28801336,  6.45313298, ..., -9.71486067,
                       5.72525702, 54.35587251], shape=(68661,))},
              np.float64(192.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  33.31433237,  100.68717075, -127.8049013 , ...,  -37.34018394,
                        22.60121267, -110.8649299 ], shape=(68661,)),
               'avg_v3_A': array([ 15.00468725,  79.2721106 ,   5.66335444, ..., -10.32236388,
                        6.11037829,  53.42297291], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  33.31433237,  100.68717075, -127.8049013 , ...,  -37.34018394,
                        22.60121267, -110.8649299 ], shape=(68661,)),
               'avg_v3_B': array([ 15.00468725,  79.2721106 ,   5.66335444, ..., -10.32236388,
                        6.11037829,  53.42297291], shape=(68661,))},
              np.float64(193.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  33.08336142,  101.76271662, -127.75080414, ...,  -37.19327278,
                        22.49682579, -110.40046409], shape=(68661,)),
               'avg_v3_A': array([ 15.55225127,  80.25302059,   4.87295108, ..., -10.92789076,
                        6.49386862,  52.48710274], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  33.08336142,  101.76271662, -127.75080414, ...,  -37.19327278,
                        22.49682579, -110.40046409], shape=(68661,)),
               'avg_v3_B': array([ 15.55225127,  80.25302059,   4.87295108, ..., -10.92789076,
                        6.49386862,  52.48710274], shape=(68661,))},
              np.float64(194.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  32.843165  ,  103.0799459 , -127.70527624, ...,  -37.03733511,
                        22.38610719, -109.96101395], shape=(68661,)),
               'avg_v3_A': array([ 16.0963702 ,  81.22967369,   4.08201547, ..., -11.53131234,
                        6.87562464,  51.54848311], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  32.843165  ,  103.0799459 , -127.70527624, ...,  -37.03733511,
                        22.38610719, -109.96101395], shape=(68661,)),
               'avg_v3_B': array([ 16.0963702 ,  81.22967369,   4.08201547, ..., -11.53131234,
                        6.87562464,  51.54848311], shape=(68661,))},
              np.float64(195.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  32.59368491,  104.72791463, -127.66827777, ...,  -36.87231212,
                        22.26906181, -109.54489015], shape=(68661,)),
               'avg_v3_A': array([ 16.63689895,  82.20047047,   3.29063942, ..., -12.1324981 ,
                        7.25554282,  50.60731481], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  32.59368491,  104.72791463, -127.66827777, ...,  -36.87231212,
                        22.26906181, -109.54489015], shape=(68661,)),
               'avg_v3_B': array([ 16.63689895,  82.20047047,   3.29063942, ..., -12.1324981 ,
                        7.25554282,  50.60731481], shape=(68661,))},
              np.float64(196.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  32.33486247,  106.84403758, -127.63977614, ...,  -36.69814227,
                        22.14569524, -109.15055037], shape=(68661,)),
               'avg_v3_A': array([ 17.17369052,  83.16291572,   2.49891409, ..., -12.73131591,
                        7.63351947,  49.66378056], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  32.33486247,  106.84403758, -127.63977614, ...,  -36.69814227,
                        22.14569524, -109.15055037], shape=(68661,)),
               'avg_v3_B': array([ 17.17369052,  83.16291572,   2.49891409, ..., -12.73131591,
                        7.63351947,  49.66378056], shape=(68661,))},
              np.float64(197.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  32.06663874,  109.65035338, -127.61974594, ...,  -36.51476139,
                        22.01601372, -108.77658445], shape=(68661,)),
               'avg_v3_A': array([ 17.70659595,  84.11291184,   1.70693013, ..., -13.32763194,
                        8.00945075,  48.71804697], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  32.06663874,  109.65035338, -127.61974594, ...,  -36.51476139,
                        22.01601372, -108.77658445], shape=(68661,)),
               'avg_v3_B': array([ 17.70659595,  84.11291184,   1.70693013, ..., -13.32763194,
                        8.00945075,  48.71804697], shape=(68661,))},
              np.float64(198.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  31.7889548 ,  113.52533807, -127.6081689 , ...,  -36.32210281,
                        21.88002424, -108.42170131], shape=(68661,)),
               'avg_v3_A': array([ 18.23546428,  85.04329556,   0.91477781, ..., -13.92131056,
                        8.38323266,  47.77026625], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  31.7889548 ,  113.52533807, -127.6081689 , ...,  -36.32210281,
                        21.88002424, -108.42170131], shape=(68661,)),
               'avg_v3_B': array([ 18.23546428,  85.04329556,   0.91477781, ..., -13.92131056,
                        8.38323266,  47.77026625], shape=(68661,))},
              np.float64(199.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  31.5017519 ,  119.15283912, -127.60503389, ...,  -36.12009744,
                        21.7377346 , -108.08471719], shape=(68661,)),
               'avg_v3_A': array([ 18.76014252,  85.94055939,   0.12254715, ..., -14.51221426,
                        8.75476103,  46.82057772], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  31.5017519 ,  119.15283912, -127.60503389, ...,  -36.12009744,
                        21.7377346 , -108.08471719], shape=(68661,)),
               'avg_v3_B': array([ 18.76014252,  85.94055939,   0.12254715, ..., -14.51221426,
                        8.75476103,  46.82057772], shape=(68661,))},
              np.float64(200.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  31.20497181,  127.83027358, -127.61033691, ...,  -35.90867396,
                        21.58915345, -107.76454536], shape=(68661,)),
               'avg_v3_A': array([ 19.28047561,  86.77692296,  -0.66967197, ..., -15.10020359,
                        9.12393157,  45.86910912], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  31.20497181,  127.83027358, -127.61033691, ...,  -35.90867396,
                        21.58915345, -107.76454536], shape=(68661,)),
               'avg_v3_B': array([ 19.28047561,  86.77692296,  -0.66967197, ..., -15.10020359,
                        9.12393157,  45.86910912], shape=(68661,))},
              np.float64(201.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  30.89855705,  141.96212953, -127.62408105, ...,  -35.68775889,
                        21.43429039, -107.4601868 ], shape=(68661,)),
               'avg_v3_A': array([ 19.79630642,  87.49073232,  -1.46178966, ..., -15.68513707,
                        9.49063979,  44.9159778 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  30.89855705,  141.96212953, -127.62408105, ...,  -35.68775889,
                        21.43429039, -107.4601868 ], shape=(68661,)),
               'avg_v3_B': array([ 19.79630642,  87.49073232,  -1.46178966, ..., -15.68513707,
                        9.49063979,  44.9159778 ], shape=(68661,))},
              np.float64(202.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  30.58245118,  164.53693863, -127.64627652, ...,  -35.4572768 ,
                        21.27315603, -107.17072202], shape=(68661,)),
               'avg_v3_A': array([ 20.30747571,  87.94971643,  -2.25371588, ..., -16.26687109,
                        9.85478112,  43.96129175], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  30.58245118,  164.53693863, -127.64627652, ...,  -35.4572768 ,
                        21.27315603, -107.17072202], shape=(68661,)),
               'avg_v3_B': array([ 20.30747571,  87.94971643,  -2.25371588, ..., -16.26687109,
                        9.85478112,  43.96129175], shape=(68661,))},
              np.float64(203.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  30.25659914, -167.09164646, -127.67694065, ...,  -35.21715045,
                        21.10576206, -106.89530364], shape=(68661,)),
               'avg_v3_A': array([ 20.81382214,  87.97269968,  -3.04536036, ..., -16.84525988,
                       10.21625083,  43.00515053], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  30.25659914, -167.09164646, -127.67694065, ...,  -35.21715045,
                        21.10576206, -106.89530364], shape=(68661,)),
               'avg_v3_B': array([ 20.81382214,  87.97269968,  -3.04536036, ..., -16.84525988,
                       10.21625083,  43.00515053], shape=(68661,))},
              np.float64(204.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  29.92094752, -143.6876627 , -127.71609791, ...,  -34.96730098,
                        20.93212135, -106.63314989], shape=(68661,)),
               'avg_v3_A': array([ 21.31518222,  87.54739815,  -3.83663244, ..., -17.4201554 ,
                       10.57494406,  42.04764603], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  29.92094752, -143.6876627 , -127.71609791, ...,  -34.96730098,
                        20.93212135, -106.63314989], shape=(68661,)),
               'avg_v3_B': array([ 21.31518222,  87.54739815,  -3.83663244, ..., -17.4201554 ,
                       10.57494406,  42.04764603], shape=(68661,))},
              np.float64(205.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  29.57544495, -128.87660927, -127.76377996, ...,  -34.70764811,
                        20.75224802, -106.38353864], shape=(68661,)),
               'avg_v3_A': array([ 21.81139039,  86.85046289,  -4.62744095, ..., -17.9914073 ,
                       10.93075587,  41.08886329], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  29.57544495, -128.87660927, -127.76377996, ...,  -34.70764811,
                        20.75224802, -106.38353864], shape=(68661,)),
               'avg_v3_B': array([ 21.81139039,  86.85046289,  -4.62744095, ..., -17.9914073 ,
                       10.93075587,  41.08886329], shape=(68661,))},
              np.float64(206.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  29.22004244, -119.81082356, -127.82002562, ...,  -34.43811033,
                        20.5661575 , -106.14580222], shape=(68661,)),
               'avg_v3_A': array([ 22.30227894,  86.02219437,  -5.41769406, ..., -18.55886281,
                       11.28358121,  40.12888103], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  29.22004244, -119.81082356, -127.82002562, ...,  -34.43811033,
                        20.5661575 , -106.14580222], shape=(68661,)),
               'avg_v3_B': array([ 22.30227894,  86.02219437,  -5.41769406, ..., -18.55886281,
                       11.28358121,  40.12888103], shape=(68661,))},
              np.float64(207.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  28.85469376, -113.96558872, -127.88488101, ...,  -34.15860515,
                        20.37386664, -105.91932259], shape=(68661,)),
               'avg_v3_A': array([ 22.7876781 ,  85.12913564,  -6.20729917, ..., -19.12236673,
                       11.63331497,  39.16777235], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  28.85469376, -113.96558872, -127.88488101, ...,  -34.15860515,
                        20.37386664, -105.91932259], shape=(68661,)),
               'avg_v3_B': array([ 22.7876781 ,  85.12913564,  -6.20729917, ..., -19.12236673,
                       11.63331497,  39.16777235], shape=(68661,))},
              np.float64(208.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  28.47935582, -109.96185929, -127.95839949, ...,  -33.86904934,
                        20.17539382, -105.70352716], shape=(68661,)),
               'avg_v3_A': array([ 23.26741603,  84.2011441 ,  -6.99616279, ..., -19.68176132,
                       11.97985196,  38.20560514], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  28.47935582, -109.96185929, -127.95839949, ...,  -33.86904934,
                        20.17539382, -105.70352716], shape=(68661,)),
               'avg_v3_B': array([ 23.26741603,  84.2011441 ,  -6.99616279, ..., -19.68176132,
                       11.97985196,  38.20560514], shape=(68661,))},
              np.float64(209.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  28.09398909, -107.07468582, -128.04064182, ...,  -33.56935918,
                        19.97075898, -105.49788492], shape=(68661,)),
               'avg_v3_A': array([ 23.74131886,  83.25261775,  -7.78419037, ..., -20.2368863 ,
                       12.32308699,  37.24244259], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  28.09398909, -107.07468582, -128.04064182, ...,  -33.56935918,
                        19.97075898, -105.49788492], shape=(68661,)),
               'avg_v3_B': array([ 23.74131886,  83.25261775,  -7.78419037, ..., -20.2368863 ,
                       12.32308699,  37.24244259], shape=(68661,))},
              np.float64(210.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  27.69855803, -104.90499982, -128.13167616, ...,  -33.25945079,
                        19.75998376, -105.30190301], shape=(68661,)),
               'avg_v3_A': array([ 24.20921073,  82.29113299,  -8.57128618, ..., -20.78757873,
                       12.66291483,  36.27834363], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  27.69855803, -104.90499982, -128.13167616, ...,  -33.25945079,
                        19.75998376, -105.30190301], shape=(68661,)),
               'avg_v3_B': array([ 24.20921073,  82.29113299,  -8.57128618, ..., -20.78757873,
                       12.66291483,  36.27834363], shape=(68661,))},
              np.float64(211.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  27.29303154, -103.21992976, -128.23157818, ...,  -32.93924037,
                        19.54309159, -105.11512358], shape=(68661,)),
               'avg_v3_A': array([ 24.67091389,  81.32099557,  -9.35735317, ..., -21.33367303,
                       12.99923029,  35.31336323], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  27.29303154, -103.21992976, -128.23157818, ...,  -32.93924037,
                        19.54309159, -105.11512358], shape=(68661,)),
               'avg_v3_B': array([ 24.67091389,  81.32099557,  -9.35735317, ..., -21.33367303,
                       12.99923029,  35.31336323], shape=(68661,))},
              np.float64(212.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  26.87738339, -101.876033  , -128.34043112, ...,  -32.60864456,
                        19.32010774, -104.93712103], shape=(68661,)),
               'avg_v3_A': array([ 25.12624868,  80.34481345, -10.14229284, ..., -21.8750009 ,
                       13.3319282 ,  34.34755283], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  26.87738339, -101.876033  , -128.34043112, ...,  -32.60864456,
                        19.32010774, -104.93712103], shape=(68661,)),
               'avg_v3_B': array([ 25.12624868,  80.34481345, -10.14229284, ..., -21.8750009 ,
                       13.3319282 ,  34.34755283], shape=(68661,))},
              np.float64(213.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  26.45159275, -100.78071944, -128.45832587, ...,  -32.26758079,
                        19.09105948, -104.76749941], shape=(68661,)),
               'avg_v3_A': array([ 25.57503371,  79.36425102, -10.92600508, ..., -22.4113913 ,
                       13.6609035 ,  33.38096056], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  26.45159275, -100.78071944, -128.45832587, ...,  -32.26758079,
                        19.09105948, -104.76749941], shape=(68661,)),
               'avg_v3_B': array([ 25.57503371,  79.36425102, -10.92600508, ..., -22.4113913 ,
                       13.6609035 ,  33.38096056], shape=(68661,))},
              np.float64(214.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  26.0156446 ,  -99.87179689, -128.58536112, ...,  -31.91596764,
                        18.85597613, -104.60589014], shape=(68661,)),
               'avg_v3_A': array([ 26.01708587,  78.38041727, -11.708388  , ..., -22.94267043,
                       13.9860512 ,  32.41363157], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  26.0156446 ,  -99.87179689, -128.58536112, ...,  -31.91596764,
                        18.85597613, -104.60589014], shape=(68661,)),
               'avg_v3_B': array([ 26.01708587,  78.38041727, -11.708388  , ..., -22.94267043,
                       13.9860512 ,  32.41363157], shape=(68661,))},
              np.float64(215.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  25.56953033,  -99.10605384, -128.72164338, ...,  -31.55372523,
                        18.61488918, -104.45194994], shape=(68661,)),
               'avg_v3_A': array([ 26.45222048,  77.39407823, -12.48933784, ..., -23.4686617 ,
                       14.30726649,  31.44560824], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  25.56953033,  -99.10605384, -128.72164338, ...,  -31.55372523,
                        18.61488918, -104.45194994], shape=(68661,)),
               'avg_v3_B': array([ 26.45222048,  77.39407823, -12.48933784, ..., -23.4686617 ,
                       14.30726649,  31.44560824], shape=(68661,))},
              np.float64(216.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  25.11324818,  -98.45258598, -128.86728714, ...,  -31.18077563,
                        18.36783236, -104.30535891], shape=(68661,)),
               'avg_v3_A': array([ 26.88025138,  76.40577932, -13.26874873, ..., -23.98918572,
                       14.62444471,  30.47693045], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  25.11324818,  -98.45258598, -128.86728714, ...,  -31.18077563,
                        18.36783236, -104.30535891], shape=(68661,)),
               'avg_v3_B': array([ 26.88025138,  76.40577932, -13.26874873, ..., -23.98918572,
                       14.62444471,  30.47693045], shape=(68661,))},
              np.float64(217.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  24.64680378,  -97.88873394, -129.022415  , ...,  -30.79704334,
                        18.1148418 , -104.16581883], shape=(68661,)),
               'avg_v3_A': array([ 27.30099109,  75.41591908, -14.04651262, ..., -24.5040603 ,
                       14.93748147,  29.50763574], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  24.64680378,  -97.88873394, -129.022415  , ...,  -30.79704334,
                        18.1148418 , -104.16581883], shape=(68661,)),
               'avg_v3_B': array([ 27.30099109,  75.41591908, -14.04651262, ..., -24.5040603 ,
                       14.93748147,  29.50763574], shape=(68661,))},
              np.float64(218.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  24.17021073,  -97.39752091, -129.18715772, ...,  -30.40245571,
                        17.85595606, -104.03305155], shape=(68661,)),
               'avg_v3_A': array([ 27.71425091,  74.4247953 , -14.82251904, ..., -25.01310047,
                       15.24627261,  28.53775953], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  24.17021073,  -97.39752091, -129.18715772, ...,  -30.40245571,
                        17.85595606, -104.03305155], shape=(68661,)),
               'avg_v3_B': array([ 27.71425091,  74.4247953 , -14.82251904, ..., -25.01310047,
                       15.24627261,  28.53775953], shape=(68661,))},
              np.float64(219.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  23.68349109,  -96.96598505, -129.3616544 , ...,  -29.99694345,
                        17.59121625, -103.90679764], shape=(68661,)),
               'avg_v3_A': array([ 28.11984112,  73.43263488, -15.59665496, ..., -25.51611848,
                       15.5507143 ,  27.56733526], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  23.68349109,  -96.96598505, -129.3616544 , ...,  -29.99694345,
                        17.59121625, -103.90679764], shape=(68661,)),
               'avg_v3_B': array([ 28.11984112,  73.43263488, -15.59665496, ..., -25.51611848,
                       15.5507143 ,  27.56733526], shape=(68661,))},
              np.float64(220.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  23.18667593,  -96.58406405, -129.54605258, ...,  -29.58044115,
                        17.32066615, -103.78681504], shape=(68661,)),
               'avg_v3_A': array([ 28.51757116,  72.43961363, -16.36880462, ..., -26.01292384,
                       15.85070309,  26.59639458], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  23.18667593,  -96.58406405, -129.54605258, ...,  -29.58044115,
                        17.32066615, -103.78681504], shape=(68661,)),
               'avg_v3_B': array([ 28.51757116,  72.43961363, -16.36880462, ..., -26.01292384,
                       15.85070309,  26.59639458], shape=(68661,))},
              np.float64(221.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  22.67980593,  -96.2438304 , -129.74050837, ...,  -29.15288782,
                        17.04435229, -103.67287786], shape=(68661,)),
               'avg_v3_A': array([ 28.90724976,  71.44586988, -17.13884935, ..., -26.50332337,
                       16.14613593,  25.62496749], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  22.67980593,  -96.2438304 , -129.74050837, ...,  -29.15288782,
                        17.04435229, -103.67287786], shape=(68661,)),
               'avg_v3_B': array([ 28.90724976,  71.44586988, -17.13884935, ..., -26.50332337,
                       16.14613593,  25.62496749], shape=(68661,))},
              np.float64(222.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  22.16293187,  -95.93895584, -129.94518659, ...,  -28.71422747,
                        16.76232404, -103.56477538], shape=(68661,)),
               'avg_v3_A': array([ 29.28868521,  70.45151395, -17.90666737, ..., -26.98712123,
                       16.43691025,  24.65308241], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  22.16293187,  -95.93895584, -129.94518659, ...,  -28.71422747,
                        16.76232404, -103.56477538], shape=(68661,)),
               'avg_v3_B': array([ 29.28868521,  70.45151395, -17.90666737, ..., -26.98712123,
                       16.43691025,  24.65308241], shape=(68661,))},
              np.float64(223.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  21.63611519,  -95.66432873, -130.16026088, ...,  -28.26440966,
                        16.47463371, -103.46231097], shape=(68661,)),
               'avg_v3_A': array([ 29.66168557,  69.45663484, -18.67213359, ..., -27.46411902,
                       16.72292403,  23.68076638], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  21.63611519,  -95.66432873, -130.16026088, ...,  -28.26440966,
                        16.47463371, -103.46231097], shape=(68661,)),
               'avg_v3_B': array([ 29.66168557,  69.45663484, -18.67213359, ..., -27.46411902,
                       16.72292403,  23.68076638], shape=(68661,))},
              np.float64(224.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  21.09942854,  -95.41577596, -130.38591385, ...,  -27.80339019,
                        16.18133663, -103.36530126], shape=(68661,)),
               'avg_v3_A': array([ 30.02605886,  68.46130518, -19.43511946, ..., -27.93411583,
                       17.0040758 ,  22.70804514], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  21.09942854,  -95.41577596, -130.38591385, ...,  -27.80339019,
                        16.18133663, -103.36530126], shape=(68661,)),
               'avg_v3_B': array([ 30.02605886,  68.46130518, -19.43511946, ..., -27.93411583,
                       17.0040758 ,  22.70804514], shape=(68661,))},
              np.float64(225.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  20.55295629,  -95.18985766, -130.62233721, ...,  -27.33113167,
                        15.88249127, -103.27357528], shape=(68661,)),
               'avg_v3_A': array([ 30.38161337,  67.46558478, -20.1954927 , ..., -28.39690837,
                       17.28026479,  21.73494321], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  20.55295629,  -95.18985766, -130.62233721, ...,  -27.33113167,
                        15.88249127, -103.27357528], shape=(68661,)),
               'avg_v3_B': array([ 30.38161337,  67.46558478, -20.1954927 , ..., -28.39690837,
                       17.28026479,  21.73494321], shape=(68661,))},
              np.float64(226.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  19.99679505,  -94.98371335, -130.86973185, ...,  -26.84760422,
                        15.57815928, -103.18697374], shape=(68661,)),
               'avg_v3_A': array([ 30.72815792,  66.46952337, -20.95311714, ..., -28.85229109,
                       17.55139092,  20.76148401], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  19.99679505,  -94.98371335, -130.86973185, ...,  -26.84760422,
                        15.57815928, -103.18697374], shape=(68661,)),
               'avg_v3_B': array([ 30.72815792,  66.46952337, -20.95311714, ..., -28.85229109,
                       17.55139092,  20.76148401], shape=(68661,))},
              np.float64(227.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  19.43105415,  -94.7949452 , -131.12830802, ...,  -26.35278615,
                        15.26840562, -103.10534829], shape=(68661,)),
               'avg_v3_A': array([ 31.06550211,  65.47316264, -21.70785247, ..., -29.30005626,
                       17.81735492,  19.78768994], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  19.43105415,  -94.7949452 , -131.12830802, ...,  -26.35278615,
                        15.26840562, -103.10534829], shape=(68661,)),
               'avg_v3_B': array([ 31.06550211,  65.47316264, -21.70785247, ..., -29.30005626,
                       17.81735492,  19.78768994], shape=(68661,))},
              np.float64(228.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  18.85585613,  -94.62152839, -131.3982854 , ...,  -25.84666465,
                        14.9532986 , -103.02856097], shape=(68661,)),
               'avg_v3_A': array([ 31.39345665,  64.47653774, -22.45955402, ..., -29.73999417,
                       18.07805836,  18.81358244], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  18.85585613,  -94.62152839, -131.3982854 , ...,  -25.84666465,
                        14.9532986 , -103.02856097], shape=(68661,)),
               'avg_v3_B': array([ 31.39345665,  64.47653774, -22.45955402, ..., -29.73999417,
                       18.07805836,  18.81358244], shape=(68661,))},
              np.float64(229.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  18.27133713,  -94.46174147, -131.67989321, ...,  -25.32923652,
                        14.63290998, -102.95648356], shape=(68661,)),
               'avg_v3_A': array([ 31.71183369,  63.47967861, -23.20807257, ..., -30.17189332,
                       18.33340377,  17.83918211], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  18.27133713,  -94.46174147, -131.67989321, ...,  -25.32923652,
                        14.63290998, -102.95648356], shape=(68661,)),
               'avg_v3_B': array([ 31.71183369,  63.47967861, -23.20807257, ..., -30.17189332,
                       18.33340377,  17.83918211], shape=(68661,))},
              np.float64(230.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  17.67764736,  -94.31411175, -131.97337031, ...,  -24.8005089 ,
                        14.30731501, -102.8889971 ], shape=(68661,)),
               'avg_v3_A': array([ 32.02044709,  62.48261081, -23.95325402, ..., -30.59554053,
                       18.58329466,  16.86450873], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  17.67764736,  -94.31411175, -131.97337031, ...,  -24.8005089 ,
                        14.30731501, -102.8889971 ], shape=(68661,)),
               'avg_v3_B': array([ 32.02044709,  62.48261081, -23.95325402, ..., -30.59554053,
                       18.58329466,  16.86450873], shape=(68661,))},
              np.float64(231.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  17.07495142,  -94.17737206, -132.27896525, ...,  -24.26049998,
                        13.97659253, -102.82599142], shape=(68661,)),
               'avg_v3_A': array([ 32.31911285,  61.48535637, -24.69493923, ..., -31.01072122,
                       18.82763564,  15.88958137], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  17.07495142,  -94.17737206, -132.27896525, ...,  -24.26049998,
                        13.97659253, -102.82599142], shape=(68661,)),
               'avg_v3_B': array([ 32.31911285,  61.48535637, -24.69493923, ..., -31.01072122,
                       18.82763564,  15.88958137], shape=(68661,))},
              np.float64(232.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  16.46342866,  -94.0504262 , -132.59693635, ...,  -23.70923981,
                        13.64082502, -102.76736466], shape=(68661,)),
               'avg_v3_A': array([ 32.60764939,  60.48793434, -25.43296373, ..., -31.41721963,
                       19.06633248,  14.91441839], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  16.46342866,  -94.0504262 , -132.59693635, ...,  -23.70923981,
                        13.64082502, -102.76736466], shape=(68661,)),
               'avg_v3_B': array([ 32.60764939,  60.48793434, -25.43296373, ..., -31.41721963,
                       19.06633248,  14.91441839], shape=(68661,))},
              np.float64(233.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  15.84327343,  -93.93232114, -132.92755171, ...,  -23.14677101,
                        13.30009862, -102.7130229 ], shape=(68661,)),
               'avg_v3_A': array([ 32.88587794,  59.4903613 , -26.16715745, ..., -31.81481903,
                       19.29929222,  13.93903758], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  15.84327343,  -93.93232114, -132.92755171, ...,  -23.14677101,
                        13.30009862, -102.7130229 ], shape=(68661,)),
               'avg_v3_B': array([ 32.88587794,  59.4903613 , -26.16715745, ..., -31.81481903,
                       19.29929222,  13.93903758], shape=(68661,))},
              np.float64(234.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  15.21469533,  -93.82222446, -133.27108924, ...,  -22.57314951,
                        12.95450323, -102.66287982], shape=(68661,)),
               'avg_v3_A': array([ 33.15362296,  58.49265171, -26.89734445, ..., -32.20330205,
                       19.5264232 ,  12.96345612], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  15.21469533,  -93.82222446, -133.27108924, ...,  -22.57314951,
                        12.95450323, -102.66287982], shape=(68661,)),
               'avg_v3_B': array([ 33.15362296,  58.49265171, -26.89734445, ..., -32.20330205,
                       19.5264232 ,  12.96345612], shape=(68661,))},
              np.float64(235.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  14.57791937,  -93.71940592, -133.62783661, ...,  -21.98844532,
                        12.60413251, -102.61685632], shape=(68661,)),
               'avg_v3_A': array([ 33.41071246,  57.49481828, -27.62334267, ..., -32.58245094,
                       19.74763519,  11.98769072], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  14.57791937,  -93.71940592, -133.62783661, ...,  -21.98844532,
                        12.60413251, -102.61685632], shape=(68661,)),
               'avg_v3_B': array([ 33.41071246,  57.49481828, -27.62334267, ..., -32.58245094,
                       19.74763519,  11.98769072], shape=(68661,))},
              np.float64(236.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  13.93318609,  -93.62322233, -133.99809122, ...,  -21.39274328,
                        12.24908391, -102.57488026], shape=(68661,)),
               'avg_v3_A': array([ 33.65697844,  56.49687223, -28.34496362, ..., -32.95204791,
                       19.96283947,  11.01175759], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  13.93318609,  -93.62322233, -133.99809122, ...,  -21.39274328,
                        12.24908391, -102.57488026], shape=(68661,)),
               'avg_v3_B': array([ 33.65697844,  56.49687223, -28.34496362, ..., -32.95204791,
                       19.96283947,  11.01175759], shape=(68661,))},
              np.float64(237.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  13.28075158,  -93.53310498, -134.38216006, ...,  -20.78614369,
                        11.88945872, -102.5368862 ], shape=(68661,)),
               'avg_v3_A': array([ 33.89225727,  55.49882346, -29.0620121 , ..., -33.31187544,
                       20.17194891,  10.03567254], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  13.28075158,  -93.53310498, -134.38216006, ...,  -20.78614369,
                        11.88945872, -102.5368862 ], shape=(68661,)),
               'avg_v3_B': array([ 33.89225727,  55.49882346, -29.0620121 , ..., -33.31187544,
                       20.17194891,  10.03567254], shape=(68661,))},
              np.float64(238.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  12.62088749,  -93.44854924, -134.78035962, ...,  -20.16876311,
                        11.52536209, -102.50281513], shape=(68661,)),
               'avg_v3_A': array([ 34.11639011,  54.50068077, -29.77428589, ..., -33.66171671,
                       20.37487804,   9.05945099], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  12.62088749,  -93.44854924, -134.78035962, ...,  -20.16876311,
                        11.52536209, -102.50281513], shape=(68661,)),
               'avg_v3_B': array([ 34.11639011,  54.50068077, -29.77428589, ..., -33.66171671,
                       20.37487804,   9.05945099], shape=(68661,))},
              np.float64(239.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  11.9538809 ,  -93.36910583, -135.19301562, ...,  -19.54073492,
                        11.156903  , -102.47261426], shape=(68661,)),
               'avg_v3_A': array([ 34.32922328,  53.50245201, -30.48157549, ..., -34.00135588,
                       20.57154319,   8.08310803], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  11.9538809 ,  -93.36910583, -135.19301562, ...,  -19.54073492,
                        11.156903  , -102.47261426], shape=(68661,)),
               'avg_v3_B': array([ 34.32922328,  53.50245201, -30.48157549, ..., -34.00135588,
                       20.57154319,   8.08310803], shape=(68661,))},
              np.float64(240.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  11.28003416,  -93.29437346, -135.6204628 , ...,  -18.90221003,
                        10.78419428, -102.44623686], shape=(68661,)),
               'avg_v3_A': array([ 34.53060873,  52.50414421, -31.18366376, ..., -34.3305786 ,
                       20.76186254,   7.10665845], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  11.28003416,  -93.29437346, -135.6204628 , ...,  -18.90221003,
                        10.78419428, -102.44623686], shape=(68661,)),
               'avg_v3_B': array([ 34.53060873,  52.50414421, -31.18366376, ..., -34.3305786 ,
                       20.76186254,   7.10665845], shape=(68661,))},
              np.float64(241.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  10.59966462,  -93.22399266, -136.06304458, ...,  -18.25335736,
                        10.40735262, -102.42364206], shape=(68661,)),
               'avg_v3_A': array([ 34.72040435,  51.50576364, -31.88032565, ..., -34.64917237,
                       20.94575621,   6.13011677], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  10.59966462,  -93.22399266, -136.06304458, ...,  -18.25335736,
                        10.40735262, -102.42364206], shape=(68661,)),
               'avg_v3_B': array([ 34.72040435,  51.50576364, -31.88032565, ..., -34.64917237,
                       20.94575621,   6.13011677], shape=(68661,))},
              np.float64(242.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([   9.91310432,  -93.15764051, -136.52111264, ...,  -17.59436446,
                        10.0264985 , -102.4047947 ], shape=(68661,)),
               'avg_v3_A': array([ 34.89847446,  50.50731599, -32.57132788, ..., -34.95692701,
                       21.12314638,   5.1534973 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([   9.91310432,  -93.15764051, -136.52111264, ...,  -17.59436446,
                        10.0264985 , -102.4047947 ], shape=(68661,)),
               'avg_v3_B': array([ 34.89847446,  50.50731599, -32.57132788, ..., -34.95692701,
                       21.12314638,   5.1534973 ], shape=(68661,))},
              np.float64(243.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([   9.22069956,  -93.09502613, -136.99502644, ...,  -16.92543791,
                         9.64175622, -102.38966526], shape=(68661,)),
               'avg_v3_A': array([ 35.06469013,  49.50880636, -33.25642862, ..., -35.25363514,
                       21.29395735,   4.17681413], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([   9.22069956,  -93.09502613, -136.99502644, ...,  -16.92543791,
                         9.64175622, -102.38966526], shape=(68661,)),
               'avg_v3_B': array([ 35.06469013,  49.50880636, -33.25642862, ..., -35.25363514,
                       21.29395735,   4.17681413], shape=(68661,))},
              np.float64(244.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([   8.5228104 ,  -93.03588688, -137.48515261, ...,  -16.24680373,
                         9.2532538 , -102.37822967], shape=(68661,)),
               'avg_v3_A': array([ 35.2189296 ,  48.51023937, -33.9353772 , ..., -35.53909261,
                       21.45811565,   3.20008124], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([   8.5228104 ,  -93.03588688, -137.48515261, ...,  -16.24680373,
                         9.2532538 , -102.37822967], shape=(68661,)),
               'avg_v3_B': array([ 35.2189296 ,  48.51023937, -33.9353772 , ..., -35.53909261,
                       21.45811565,   3.20008124], shape=(68661,))},
              np.float64(245.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([   7.81981008,  -92.97998502, -137.99186429, ...,  -15.55870773,
                         8.86112299, -102.3704693 ], shape=(68661,)),
               'avg_v3_A': array([ 35.36107862,  47.51161923, -34.60791379, ..., -35.81309905,
                       21.61555014,   2.22331244], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([   7.81981008,  -92.97998502, -137.99186429, ...,  -15.55870773,
                         8.86112299, -102.3704693 ], shape=(68661,)),
               'avg_v3_B': array([ 35.36107862,  47.51161923, -34.60791379, ..., -35.81309905,
                       21.61555014,   2.22331244], shape=(68661,))},
              np.float64(246.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([   7.11208434,  -92.92710489, -138.51554028, ...,  -14.86141569,
                         8.46549916, -102.36637087], shape=(68661,)),
               'avg_v3_A': array([ 35.49103082,  46.51294975, -35.27376909, ..., -36.07545834,
                       21.76619207,   1.24652147], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([   7.11208434,  -92.92710489, -138.51554028, ...,  -14.86141569,
                         8.46549916, -102.36637087], shape=(68661,)),
               'avg_v3_B': array([ 35.49103082,  46.51294975, -35.27376909, ..., -36.07545834,
                       21.76619207,   1.24652147], shape=(68661,))},
              np.float64(247.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([   6.40003071,  -92.87705044, -139.05656411, ...,  -14.15521359,
                         8.06652125, -102.36592637], shape=(68661,)),
               'avg_v3_A': array([ 35.60868804,  45.51423441, -35.93266406, ..., -36.32597915,
                       21.90997518,   0.26972201], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([   6.40003071,  -92.87705044, -139.05656411, ...,  -14.15521359,
                         8.06652125, -102.36592637], shape=(68661,)),
               'avg_v3_B': array([ 35.60868804,  45.51423441, -35.93266406, ..., -36.32597915,
                       21.90997518,   0.26972201], shape=(68661,))},
              np.float64(248.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([   5.68405767,  -92.82964308, -139.61532296, ...,  -13.44040759,
                         7.66433169, -102.36913309], shape=(68661,)),
               'avg_v3_A': array([ 35.71396063,  44.51547639, -36.58430965, ..., -36.56447545,
                       22.0468358 ,  -0.70707228], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([   5.68405767,  -92.82964308, -139.61532296, ...,  -13.44040759,
                         7.66433169, -102.36913309], shape=(68661,)),
               'avg_v3_B': array([ 35.71396063,  44.51547639, -36.58430965, ..., -36.56447545,
                       22.0468358 ,  -0.70707228], shape=(68661,))},
              np.float64(249.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([   4.96458378,  -92.78471983, -140.19220643, ...,  -12.717324  ,
                         7.25907629, -102.37599355], shape=(68661,)),
               'avg_v3_A': array([ 35.80676775,  43.51667861, -37.22840648, ..., -36.79076704,
                       22.17671291,  -1.68384776], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([   4.96458378,  -92.78471983, -140.19220643, ...,  -12.717324  ,
                         7.25907629, -102.37599355], shape=(68661,)),
               'avg_v3_B': array([ 35.80676775,  43.51667861, -37.22840648, ..., -36.79076704,
                       22.17671291,  -1.68384776], shape=(68661,))},
              np.float64(250.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([   4.24203668,  -92.74213169, -140.78760508, ...,  -11.98630914,
                         6.85090418, -102.38651555], shape=(68661,)),
               'avg_v3_A': array([ 35.88703764,  42.51784373, -37.86464465, ..., -37.00468009,
                       22.29954825,  -2.66059073], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([   4.24203668,  -92.74213169, -140.78760508, ...,  -11.98630914,
                         6.85090418, -102.38651555], shape=(68661,)),
               'avg_v3_B': array([ 35.88703764,  42.51784373, -37.86464465, ..., -37.00468009,
                       22.29954825,  -2.66059073], shape=(68661,))},
              np.float64(251.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([   3.5168521 ,  -92.7017422 , -141.4019089 , ...,  -11.24772906,
                         6.43996764, -102.40071218], shape=(68661,)),
               'avg_v3_A': array([ 35.95470787,  41.51897422, -38.49270351, ..., -37.20604768,
                       22.41528639,  -3.63728743], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([   3.5168521 ,  -92.7017422 , -141.4019089 , ...,  -11.24772906,
                         6.43996764, -102.40071218], shape=(68661,)),
               'avg_v3_B': array([ 35.95470787,  41.51897422, -38.49270351, ..., -37.20604768,
                       22.41528639,  -3.63728743], shape=(68661,))},
              np.float64(252.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([   2.78947279,  -92.6634262 , -142.03550548, ...,  -10.50196915,
                         6.02642202, -102.41860187], shape=(68661,)),
               'avg_v3_A': array([ 36.00972552,  40.52007234, -39.11225143, ..., -37.3947103 ,
                       22.52387479,  -4.613924  ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([   2.78947279,  -92.6634262 , -142.03550548, ...,  -10.50196915,
                         6.02642202, -102.41860187], shape=(68661,)),
               'avg_v3_B': array([ 36.00972552,  40.52007234, -39.11225143, ..., -37.3947103 ,
                       22.52387479,  -4.613924  ], shape=(68661,))},
              np.float64(253.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([   2.06034737,  -92.6270687 , -142.68877801, ...,   -9.74943361,
                         5.61042558, -102.44020841], shape=(68661,)),
               'avg_v3_A': array([ 36.05204739,  39.52114019, -39.72294571, ..., -37.57051638,
                       22.62526389,  -5.59048646], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([   2.06034737,  -92.6270687 , -142.68877801, ...,   -9.74943361,
                         5.61042558, -102.44020841], shape=(68661,)),
               'avg_v3_B': array([ 36.05204739,  39.52114019, -39.72294571, ..., -37.57051638,
                       22.62526389,  -5.59048646], shape=(68661,))},
              np.float64(254.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([   1.32992916,  -92.59256394, -143.36210309, ...,   -8.99054485,
                         5.19213937, -102.46556109], shape=(68661,)),
               'avg_v3_A': array([ 36.08164011,  38.52217971, -40.32443238, ..., -37.73332281,
                       22.7194072 ,  -6.56696065], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([   1.32992916,  -92.59256394, -143.36210309, ...,   -8.99054485,
                         5.19213937, -102.46556109], shape=(68661,)),
               'avg_v3_B': array([ 36.08164011,  38.52217971, -40.32443238, ..., -37.73332281,
                       22.7194072 ,  -6.56696065], shape=(68661,))},
              np.float64(255.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([   0.59867499,  -92.55981449, -144.05584823, ...,   -8.22574275,
                         4.77172706, -102.49469479], shape=(68661,)),
               'avg_v3_A': array([ 36.09848032,  37.52319268, -40.91634619, ..., -37.88299541,
                       22.80626133,  -7.54333221], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([   0.59867499,  -92.55981449, -144.05584823, ...,   -8.22574275,
                         4.77172706, -102.49469479], shape=(68661,)),
               'avg_v3_B': array([ 36.09848032,  37.52319268, -40.91634619, ..., -37.88299541,
                       22.80626133,  -7.54333221], shape=(68661,))},
              np.float64(256.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-1.32956043e-01, -9.25287305e+01, -1.44770369e+02, ...,
                      -7.45548374e+00,  4.34935478e+00, -1.02527650e+02], shape=(68661,)),
               'avg_v3_A': array([ 36.10255468,  36.52418079, -41.49831059, ..., -38.01940939,
                       22.88578608,  -8.51958656], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-1.32956043e-01, -9.25287305e+01, -1.44770369e+02, ...,
                      -7.45548374e+00,  4.34935478e+00, -1.02527650e+02], shape=(68661,)),
               'avg_v3_B': array([ 36.10255468,  36.52418079, -41.49831059, ..., -38.01940939,
                       22.88578608,  -8.51958656], shape=(68661,))},
              np.float64(257.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  -0.86450381,  -92.49922906, -145.50600699, ...,   -6.68023984,
                         3.92519096, -102.56447323], shape=(68661,)),
               'avg_v3_A': array([ 36.09385998,  35.52514557, -42.06993774, ..., -38.14244982,
                       22.95794449,  -9.49570883], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  -0.86450381,  -92.49922906, -145.50600699, ...,   -6.68023984,
                         3.92519096, -102.56447323], shape=(68661,)),
               'avg_v3_B': array([ 36.09385998,  35.52514557, -42.06993774, ..., -38.14244982,
                       22.95794449,  -9.49570883], shape=(68661,))},
              np.float64(258.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  -1.59550841,  -92.47123347, -146.26308471, ...,   -5.90049759,
                         3.49940614, -102.60521675], shape=(68661,)),
               'avg_v3_A': array([ 36.07240309,  34.52608848, -42.63082865, ..., -38.25201206,
                       23.02270291, -10.47168387], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  -1.59550841,  -92.47123347, -146.26308471, ...,   -5.90049759,
                         3.49940614, -102.60521675], shape=(68661,)),
               'avg_v3_B': array([ 36.07240309,  34.52608848, -42.63082865, ..., -38.25201206,
                       23.02270291, -10.47168387], shape=(68661,))},
              np.float64(259.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  -2.32551143,  -92.44467282, -147.04190399, ...,   -5.11675679,
                         3.0721728 , -102.64993916], shape=(68661,)),
               'avg_v3_A': array([ 36.03820099,  33.52701086, -43.18057341, ..., -38.34800209,
                       23.08003103, -11.44749616], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  -2.32551143,  -92.44467282, -147.04190399, ...,   -5.11675679,
                         3.0721728 , -102.64993916], shape=(68661,)),
               'avg_v3_B': array([ 36.03820099,  33.52701086, -43.18057341, ..., -38.34800209,
                       23.08003103, -11.44749616], shape=(68661,))},
              np.float64(260.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  -3.05405715,  -92.41948145, -147.84274131, ...,   -4.32952918,
                         2.64366515, -102.69870539], shape=(68661,)),
               'avg_v3_A': array([ 35.99128067,  32.52791399, -43.71875142, ..., -38.43033695,
                       23.12990194, -12.4231298 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  -3.05405715,  -92.41948145, -147.84274131, ...,   -4.32952918,
                         2.64366515, -102.69870539], shape=(68661,)),
               'avg_v3_B': array([ 35.99128067,  32.52791399, -43.71875142, ..., -38.43033695,
                       23.12990194, -12.4231298 ], shape=(68661,))},
              np.float64(261.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  -3.78069383,  -92.39559852, -148.66584393, ...,   -3.53933711,
                         2.21405894, -102.75158702], shape=(68661,)),
               'avg_v3_A': array([ 35.93167907,  31.52879904, -44.24493178, ..., -38.49894497,
                       23.17229216, -13.39856846], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  -3.78069383,  -92.39559852, -148.66584393, ...,   -3.53933711,
                         2.21405894, -102.75158702], shape=(68661,)),
               'avg_v3_B': array([ 35.93167907,  31.52879904, -44.24493178, ..., -38.49894497,
                       23.17229216, -13.39856846], shape=(68661,))},
              np.float64(262.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  -4.50497483,  -92.37296762, -149.51142568, ...,   -2.74671196,
                         1.78353124, -102.8086625 ], shape=(68661,)),
               'avg_v3_A': array([ 35.85944292,  30.52966714, -44.75867385, ..., -38.55376612,
                       23.2071817 , -14.37379534], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  -4.50497483,  -92.37296762, -149.51142568, ...,   -2.74671196,
                         1.78353124, -102.8086625 ], shape=(68661,)),
               'avg_v3_B': array([ 35.85944292,  30.52966714, -44.75867385, ..., -38.55376612,
                       23.2071817 , -14.37379534], shape=(68661,))},
              np.float64(263.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  -5.22645983,  -92.35153641, -150.37966243, ...,   -1.95219264,
                         1.35226027, -102.87001744], shape=(68661,)),
               'avg_v3_A': array([ 35.77462861,  29.53051931, -45.25952777, ..., -38.59475219,
                       23.23455407, -15.34879312], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  -5.22645983,  -92.35153641, -150.37966243, ...,   -1.95219264,
                         1.35226027, -102.87001744], shape=(68661,)),
               'avg_v3_B': array([ 35.77462861,  29.53051931, -45.25952777, ..., -38.59475219,
                       23.23455407, -15.34879312], shape=(68661,))},
              np.float64(264.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  -5.94471589,  -92.33125631, -151.27068743, ...,   -1.15632393,
                         0.92042514, -102.93574493], shape=(68661,)),
               'avg_v3_A': array([ 35.67730197,  28.53135656, -45.74703527, ..., -38.62186702,
                       23.25439631, -16.32354391], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  -5.94471589,  -92.33125631, -151.27068743, ...,   -1.15632393,
                         0.92042514, -102.93574493], shape=(68661,)),
               'avg_v3_B': array([ 35.67730197,  28.53135656, -45.74703527, ..., -38.62186702,
                       23.25439631, -16.32354391], shape=(68661,))},
              np.float64(265.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  -6.65931854,  -92.31208224, -152.18458635, ...,   -0.35965485,
                         0.48820566, -103.00594593], shape=(68661,)),
               'avg_v3_A': array([ 35.56753809,  27.53217981, -46.22073049, ..., -38.63508663,
                       23.26669902, -17.29802917], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  -6.65931854,  -92.31208224, -152.18458635, ...,   -0.35965485,
                         0.48820566, -103.00594593], shape=(68661,)),
               'avg_v3_B': array([ 35.56753809,  27.53217981, -46.22073049, ..., -38.63508663,
                       23.26669902, -17.29802917], shape=(68661,))},
              np.float64(266.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-7.36985277e+00, -9.22939723e+01, -1.53121392e+02, ...,
                       4.37263092e-01,  5.57821119e-02, -1.03080730e+02], shape=(68661,)),
               'avg_v3_A': array([ 35.445421  ,  26.53298993, -46.68014105, ..., -38.6343993 ,
                       23.27145637, -18.27222972], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-7.36985277e+00, -9.22939723e+01, -1.53121392e+02, ...,
                       4.37263092e-01,  5.57821119e-02, -1.03080730e+02], shape=(68661,)),
               'avg_v3_B': array([ 35.445421  ,  26.53298993, -46.68014105, ..., -38.6343993 ,
                       23.27145637, -18.27222972], shape=(68661,))},
              np.float64(267.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  -8.07591396,  -92.27688762, -154.08108079, ...,    1.2338776 ,
                        -0.37666497, -103.16021372], shape=(68661,)),
               'avg_v3_A': array([ 35.31104349,  25.53378777, -47.12478916, ..., -38.61980564,
                       23.2686661 , -19.24612561], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  -8.07591396,  -92.27688762, -154.08108079, ...,    1.2338776 ,
                        -0.37666497, -103.16021372], shape=(68661,)),
               'avg_v3_B': array([ 35.31104349,  25.53378777, -47.12478916, ..., -38.61980564,
                       23.2686661 , -19.24612561], shape=(68661,))},
              np.float64(268.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  -8.77710875,  -92.26079204, -155.06356437, ...,    2.02963734,
                        -0.80895503, -103.24452524], shape=(68661,)),
               'avg_v3_A': array([ 35.16450672,  24.5345741 , -47.55419302, ..., -38.59131858,
                       23.25832953, -20.21969609], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  -8.77710875,  -92.26079204, -155.06356437, ...,    2.02963734,
                        -0.80895503, -103.24452524], shape=(68661,)),
               'avg_v3_B': array([ 35.16450672,  24.5345741 , -47.55419302, ..., -38.59131858,
                       23.25832953, -20.21969609], shape=(68661,))},
              np.float64(269.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  -9.47305584,  -92.24565203, -156.06868775, ...,    2.82399364,
                        -1.24090769, -103.33380071], shape=(68661,)),
               'avg_v3_A': array([ 35.00591994,  23.53534969, -47.96786827, ..., -38.54896332,
                       23.24045157, -21.19291954], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  -9.47305584,  -92.24565203, -156.06868775, ...,    2.82399364,
                        -1.24090769, -103.33380071], shape=(68661,)),
               'avg_v3_B': array([ 35.00591994,  23.53534969, -47.96786827, ..., -38.54896332,
                       23.24045157, -21.19291954], shape=(68661,))},
              np.float64(270.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -10.16338669,  -92.23143644, -157.09622268, ...,    3.61640222,
                        -1.672343  , -103.42818685], shape=(68661,)),
               'avg_v3_A': array([ 34.83540017,  22.53611524, -48.36532962, ..., -38.49277721,
                       23.21504068, -22.1657734 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -10.16338669,  -92.23143644, -157.09622268, ...,    3.61640222,
                        -1.672343  , -103.42818685], shape=(68661,)),
               'avg_v3_B': array([ 34.83540017,  22.53611524, -48.36532962, ..., -38.49277721,
                       23.21504068, -22.1657734 ], shape=(68661,))},
              np.float64(271.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -10.84774615,  -92.21811639, -158.1458632 , ...,    4.40632484,
                        -2.10308164, -103.52784115], shape=(68661,)),
               'avg_v3_A': array([ 34.65307181,  21.53687143, -48.74609276, ..., -38.42280964,
                       23.18210891, -23.13823405], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -10.84774615,  -92.21811639, -158.1458632 , ...,    4.40632484,
                        -2.10308164, -103.52784115], shape=(68661,)),
               'avg_v3_B': array([ 34.65307181,  21.53687143, -48.74609276, ..., -38.42280964,
                       23.18210891, -23.13823405], shape=(68661,))},
              np.float64(272.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -11.52579304,  -92.20566509, -159.21722117, ...,    5.19323094,
                        -2.53294515, -103.63293258], shape=(68661,)),
               'avg_v3_A': array([ 34.45906627,  20.53761893, -49.10967623, ..., -38.3391218 ,
                       23.14167182, -24.11027679], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -11.52579304,  -92.20566509, -159.21722117, ...,    5.19323094,
                        -2.53294515, -103.63293258], shape=(68661,)),
               'avg_v3_B': array([ 34.45906627,  20.53761893, -49.10967623, ..., -38.3391218 ,
                       23.14167182, -24.11027679], shape=(68661,))},
              np.float64(273.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -12.19720058,  -92.19405774, -160.30982218, ...,    5.97659918,
                        -2.96175613, -103.74364229], shape=(68661,)),
               'avg_v3_A': array([ 34.25352161,  19.53835835, -49.45560367, ..., -38.24178648,
                       23.0937485 , -25.08187569], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -12.19720058,  -92.19405774, -160.30982218, ...,    5.97659918,
                        -2.96175613, -103.74364229], shape=(68661,)),
               'avg_v3_B': array([ 34.25352161,  19.53835835, -49.45560367, ..., -38.24178648,
                       23.0937485 , -25.08187569], shape=(68661,))},
              np.float64(274.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -12.86165682,  -92.1832714 , -161.42310204, ...,    6.7559189 ,
                        -3.38933847, -103.86016438], shape=(68661,)),
               'avg_v3_A': array([ 34.03658213,  18.53909028, -49.783406  , ..., -38.13088777,
                       23.03836151, -26.05300352], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -12.86165682,  -92.1832714 , -161.42310204, ...,    6.7559189 ,
                        -3.38933847, -103.86016438], shape=(68661,)),
               'avg_v3_B': array([ 34.03658213,  18.53909028, -49.783406  , ..., -38.13088777,
                       23.03836151, -26.05300352], shape=(68661,))},
              np.float64(275.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -13.5188649 ,  -92.17328486, -162.55640386, ...,    7.53069158,
                        -3.81551753, -103.98270683], shape=(68661,)),
               'avg_v3_A': array([ 33.80839796,  17.53981532, -50.09262389, ..., -38.00652073,
                       22.97553688, -27.02363163], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -13.5188649 ,  -92.17328486, -162.55640386, ...,    7.53069158,
                        -3.81551753, -103.98270683], shape=(68661,)),
               'avg_v3_B': array([ 33.80839796,  17.53981532, -50.09262389, ..., -38.00652073,
                       22.97553688, -27.02363163], shape=(68661,))},
              np.float64(276.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -14.16854331,  -92.16407859, -163.70897591, ...,    8.30043206,
                        -4.24012037, -104.11149239], shape=(68661,)),
               'avg_v3_A': array([ 33.5691247 ,  16.54053401, -50.38281026, ..., -37.86879106,
                       22.90530402, -27.99372983], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -14.16854331,  -92.16407859, -163.70897591, ...,    8.30043206,
                        -4.24012037, -104.11149239], shape=(68661,)),
               'avg_v3_B': array([ 33.5691247 ,  16.54053401, -50.38281026, ..., -37.86879106,
                       22.90530402, -27.99372983], shape=(68661,))},
              np.float64(277.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -14.81042603,  -92.15563463, -164.87997034, ...,    9.06466981,
                        -4.66297593, -104.24675968], shape=(68661,)),
               'avg_v3_A': array([ 33.31892296,  15.54124688, -50.65353289, ..., -37.71781467,
                       22.82769574, -28.96326627], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -14.81042603,  -92.15563463, -164.87997034, ...,    9.06466981,
                        -4.66297593, -104.24675968], shape=(68661,)),
               'avg_v3_B': array([ 33.31892296,  15.54124688, -50.65353289, ..., -37.71781467,
                       22.82769574, -28.96326627], shape=(68661,))},
              np.float64(278.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -15.44426259,  -92.14793649, -166.06844287, ...,    9.82294998,
                        -5.08391521, -104.38876428], shape=(68661,)),
               'avg_v3_A': array([ 33.05795801,  14.54195445, -50.9043771 , ..., -37.55371729,
                       22.74274814, -29.93220729], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -15.44426259,  -92.14793649, -166.06844287, ...,    9.82294998,
                        -5.08391521, -104.38876428], shape=(68661,)),
               'avg_v3_B': array([ 33.05795801,  14.54195445, -50.9043771 , ..., -37.55371729,
                       22.74274814, -29.93220729], shape=(68661,))},
              np.float64(279.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -16.06981808,  -92.1409691 , -167.27335356, ...,   10.5748344 ,
                        -5.50277145, -104.53778002], shape=(68661,)),
               'avg_v3_A': array([ 32.78639934,  13.54265723, -51.13494845, ..., -37.37663402,
                       22.65050056, -30.90051727], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -16.06981808,  -92.1409691 , -167.27335356, ...,   10.5748344 ,
                        -5.50277145, -104.53778002], shape=(68661,)),
               'avg_v3_B': array([ 32.78639934,  13.54265723, -51.13494845, ..., -37.37663402,
                       22.65050056, -30.90051727], shape=(68661,))},
              np.float64(280.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -16.68687309,  -92.13471876, -168.49356872, ...,   11.31990243,
                        -5.91938034, -104.69410034], shape=(68661,)),
               'avg_v3_A': array([ 32.50442026,  12.5433557 , -51.3448754 , ..., -37.18670882,
                       22.55099558, -31.86815844], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -16.68687309,  -92.13471876, -168.49356872, ...,   11.31990243,
                        -5.91938034, -104.69410034], shape=(68661,)),
               'avg_v3_B': array([ 32.50442026,  12.5433557 , -51.3448754 , ..., -37.18670882,
                       22.55099558, -31.86815844], shape=(68661,))},
              np.float64(281.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -17.29522354,  -92.12917304, -169.727864  , ...,   12.05775168,
                        -6.33358012, -104.85803979], shape=(68661,)),
               'avg_v3_A': array([ 32.21219753,  11.54405034, -51.53381204, ..., -36.98409407,
                       22.44427889, -32.83509075], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -17.29522354,  -92.12917304, -169.727864  , ...,   12.05775168,
                        -6.33358012, -104.85803979], shape=(68661,)),
               'avg_v3_B': array([ 32.21219753,  11.54405034, -51.53381204, ..., -36.98409407,
                       22.44427889, -32.83509075], shape=(68661,))},
              np.float64(282.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -17.89468056,  -92.12432078, -170.97492877, ...,   12.78799866,
                        -6.7452118 , -105.02993571], shape=(68661,)),
               'avg_v3_A': array([ 31.90991098,  10.54474161, -51.70144057, ..., -36.76895004,
                       22.33039925, -33.80127162], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -17.89468056,  -92.12432078, -170.97492877, ...,   12.78799866,
                        -6.7452118 , -105.02993571], shape=(68661,)),
               'avg_v3_B': array([ 31.90991098,  10.54474161, -51.70144057, ..., -36.76895004,
                       22.33039925, -33.80127162], shape=(68661,))},
              np.float64(283.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -18.48507015,  -92.12015197, -172.23337168, ...,   13.51027927,
                        -7.15411925, -105.21014999], shape=(68661,)),
               'avg_v3_A': array([ 31.5977431 ,   9.54542996, -51.84747386, ..., -36.54144435,
                       22.20940843, -34.76665571], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -18.48507015,  -92.12015197, -172.23337168, ...,   13.51027927,
                        -7.15411925, -105.21014999], shape=(68661,)),
               'avg_v3_B': array([ 31.5977431 ,   9.54542996, -51.84747386, ..., -36.54144435,
                       22.20940843, -34.76665571], shape=(68661,))},
              np.float64(284.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -19.06623297,  -92.11665781, -173.50172751, ...,   14.22424915,
                        -7.56014938, -105.39907117], shape=(68661,)),
               'avg_v3_A': array([ 31.27587872,   8.54611584, -51.97165762, ..., -36.30175148,
                       22.08136112, -35.73119473], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -19.06623297,  -92.11665781, -173.50172751, ...,   14.22424915,
                        -7.56014938, -105.39907117], shape=(68661,)),
               'avg_v3_B': array([ 31.27587872,   8.54611584, -51.97165762, ..., -36.30175148,
                       22.08136112, -35.73119473], shape=(68661,))},
              np.float64(285.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -19.63802395,  -92.11383056, -174.77846509, ...,   14.92958397,
                        -7.96315222, -105.59711655], shape=(68661,)),
               'avg_v3_A': array([ 30.94450462,   7.54679968, -52.0737726 , ..., -36.05005224,
                       21.94631484, -36.69483711], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -19.63802395,  -92.11383056, -174.77846509, ...,   14.92958397,
                        -7.96315222, -105.59711655], shape=(68661,)),
               'avg_v3_B': array([ 30.94450462,   7.54679968, -52.0737726 , ..., -36.05005224,
                       21.94631484, -36.69483711], shape=(68661,))},
              np.float64(286.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -20.2003119 ,  -92.11166361, -176.06199642, ...,   15.62597955,
                        -8.3629811 , -105.80473469], shape=(68661,)),
               'avg_v3_A': array([ 30.60380922,   6.54748192, -52.15363634, ..., -35.78653319,
                       21.80432991, -37.65752774], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -20.2003119 ,  -92.11166361, -176.06199642, ...,   15.62597955,
                        -8.3629811 , -105.80473469], shape=(68661,)),
               'avg_v3_B': array([ 30.60380922,   6.54748192, -52.15363634, ..., -35.78653319,
                       21.80432991, -37.65752774], shape=(68661,))},
              np.float64(287.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -20.75297913,  -92.11015137, -177.35068662, ...,   16.31315194,
                        -8.75949268, -106.02240808], shape=(68661,)),
               'avg_v3_A': array([ 30.25398224,   5.54816297, -52.2111048 , ..., -35.51138618,
                       21.65546932, -38.61920763], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -20.75297913,  -92.11015137, -177.35068662, ...,   16.31315194,
                        -8.75949268, -106.02240808], shape=(68661,)),
               'avg_v3_B': array([ 30.25398224,   5.54816297, -52.2111048 , ..., -35.51138618,
                       21.65546932, -38.61920763], shape=(68661,))},
              np.float64(288.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -21.29592097,  -92.10928932, -178.64286479, ...,   16.99083732,
                        -9.15254712, -106.2506561 ], shape=(68661,)),
               'avg_v3_A': array([ 29.89521441,   4.54884326, -52.24607357, ..., -35.22480775,
                       21.49979865, -39.57981352], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -21.29592097,  -92.10928932, -178.64286479, ...,   16.99083732,
                        -9.15254712, -106.2506561 ], shape=(68661,)),
               'avg_v3_B': array([ 29.89521441,   4.54884326, -52.24607357, ..., -35.22480775,
                       21.49979865, -39.57981352], shape=(68661,))},
              np.float64(289.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -21.82904528,  -92.10907392, -179.93683542, ...,   17.65879186,
                        -9.5420081 , -106.49003833], shape=(68661,)),
               'avg_v3_A': array([ 29.52769712,   3.5495232 , -52.25847882, ..., -34.92699869,
                       21.33738601, -40.53927752], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -21.82904528,  -92.10907392, -179.93683542, ...,   17.65879186,
                        -9.5420081 , -106.49003833], shape=(68661,)),
               'avg_v3_B': array([ 29.52769712,   3.5495232 , -52.25847882, ..., -34.92699869,
                       21.33738601, -40.53927752], shape=(68661,))},
              np.float64(290.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -22.35227201,  -92.10950267,  178.76910971, ...,   18.31679147,
                        -9.92774293, -106.7411582 ], shape=(68661,)),
               'avg_v3_A': array([ 29.15162221,   2.55020321, -52.24829782, ..., -34.61816346,
                       21.16830193, -41.49752661], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -22.35227201,  -92.10950267,  178.76910971, ...,   18.31679147,
                        -9.92774293, -106.7411582 ], shape=(68661,)),
               'avg_v3_B': array([ 29.15162221,   2.55020321, -52.24829782, ..., -34.61816346,
                       21.16830193, -41.49752661], shape=(68661,))},
              np.float64(291.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -22.86553261,  -92.11057402,  177.47667939, ...,   18.96463147,
                       -10.3096226 , -107.004667  ], shape=(68661,)),
               'avg_v3_A': array([ 28.76718168,   1.55088371, -52.21554924, ..., -34.29850977,
                       20.99261929, -42.45448218], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -22.86553261,  -92.11057402,  177.47667939, ...,   18.96463147,
                       -10.3096226 , -107.004667  ], shape=(68661,)),
               'avg_v3_B': array([ 28.76718168,   1.55088371, -52.21554924, ..., -34.29850977,
                       20.99261929, -42.45448218], shape=(68661,))},
              np.float64(292.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -23.36876957,  -92.11228742,  176.18757093, ...,   19.60212619,
                       -10.68752185, -107.28126843], shape=(68661,)),
               'avg_v3_A': array([ 28.37456741,   0.5515651 , -52.16029285, ..., -33.96824804,
                       20.8104132 , -43.41005943], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -23.36876957,  -92.11228742,  176.18757093, ...,   19.60212619,
                       -10.68752185, -107.28126843], shape=(68661,)),
               'avg_v3_B': array([ 28.37456741,   0.5515651 , -52.16029285, ..., -33.96824804,
                       20.8104132 , -43.41005943], shape=(68661,))},
              np.float64(293.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -23.86193582,  -92.1146433 ,  174.90345818, ...,   20.22910848,
                       -11.06131919, -107.57172356], shape=(68661,)),
               'avg_v3_A': array([ 27.97397098,  -0.4477522 , -52.08262913, ..., -33.62759096,
                       20.62176096, -44.36416678], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -23.86193582,  -92.1146433 ,  174.90345818, ...,   20.22910848,
                       -11.06131919, -107.57172356], shape=(68661,)),
               'avg_v3_B': array([ 27.97397098,  -0.4477522 , -52.08262913, ..., -33.62759096,
                       20.62176096, -44.36416678], shape=(68661,))},
              np.float64(294.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -24.34499423,  -92.11764306,  173.62598004, ...,   20.84542921,
                       -11.43089695, -107.87685641], shape=(68661,)),
               'avg_v3_A': array([ 27.56558342,  -1.44706778, -51.98269825, ..., -33.27675306,
                       20.4267419 , -45.31670513], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -24.34499423,  -92.11764306,  173.62598004, ...,   20.84542921,
                       -11.43089695, -107.87685641], shape=(68661,)),
               'avg_v3_B': array([ 27.56558342,  -1.44706778, -51.98269825, ..., -33.27675306,
                       20.4267419 , -45.31670513], shape=(68661,))},
              np.float64(295.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -24.81791705,  -92.12128908,  172.3567296 , ...,   21.45095669,
                       -11.79614128, -108.1975602 ], shape=(68661,)),
               'avg_v3_A': array([ 27.14959501,  -2.44638122, -51.86067895, ..., -32.91595028,
                       20.22543735, -46.26756708], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -24.81791705,  -92.12128908,  172.3567296 , ...,   21.45095669,
                       -11.79614128, -108.1975602 ], shape=(68661,)),
               'avg_v3_B': array([ 27.14959501,  -2.44638122, -51.86067895, ..., -32.91595028,
                       20.22543735, -46.26756708], shape=(68661,))},
              np.float64(296.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -25.28068534,  -92.12558473,  171.09724404, ...,   22.045576  ,
                       -12.1569422 , -108.53480422], shape=(68661,)),
               'avg_v3_A': array([ 26.72619512,  -3.44569209, -51.71678695, ..., -32.54539954,
                       20.01793051, -47.21663607], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -25.28068534,  -92.12558473,  171.09724404, ...,   22.045576  ,
                       -12.1569422 , -108.53480422], shape=(68661,)),
               'avg_v3_B': array([ 26.72619512,  -3.44569209, -51.71678695, ..., -32.54539954,
                       20.01793051, -47.21663607], shape=(68661,))},
              np.float64(297.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -25.73328845,  -92.13053439,  169.84899545, ...,   22.62918839,
                       -12.51319356, -108.88964165], shape=(68661,)),
               'avg_v3_A': array([ 26.29557203,  -4.44499997, -51.55127315, ..., -32.1653184 ,
                       19.80430638, -48.16378533], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -25.73328845,  -92.13053439,  169.84899545, ...,   22.62918839,
                       -12.51319356, -108.88964165], shape=(68661,)),
               'avg_v3_B': array([ 26.29557203,  -4.44499997, -51.55127315, ..., -32.1653184 ,
                       19.80430638, -48.16378533], shape=(68661,))},
              np.float64(298.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -26.17572348,  -92.13614342,  168.61338279, ...,   23.20171052,
                       -12.86479308, -109.26321822], shape=(68661,)),
               'avg_v3_A': array([ 25.85791275,  -5.44430442, -51.36442157, ..., -31.77592466,
                       19.58465168, -49.10887681], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -26.17572348,  -92.13614342,  168.61338279, ...,   23.20171052,
                       -12.86479308, -109.26321822], shape=(68661,)),
               'avg_v3_B': array([ 25.85791275,  -5.44430442, -51.36442157, ..., -31.77592466,
                       19.58465168, -49.10887681], shape=(68661,))},
              np.float64(299.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -26.60799474,  -92.14241825,  167.3917249 , ...,   23.76307382,
                       -13.2116423 , -109.65678196], shape=(68661,)),
               'avg_v3_A': array([ 25.41340292,  -6.44360502, -51.15654708, ..., -31.37743604,
                       19.35905472, -50.05175984], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -26.60799474,  -92.14241825,  167.3917249 , ...,   23.76307382,
                       -13.2116423 , -109.65678196], shape=(68661,)),
               'avg_v3_B': array([ 25.41340292,  -6.44360502, -51.15654708, ..., -31.37743604,
                       19.35905472, -50.05175984], shape=(68661,))},
              np.float64(300.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -27.03011321,  -92.14936633,  166.18525484, ...,   24.31322368,
                       -13.55364657, -110.07169411], shape=(68661,)),
               'avg_v3_A': array([ 24.96222668,  -7.44290129, -50.92799294, ..., -30.97006987,
                       19.12760534, -50.99226974], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -27.03011321,  -92.14936633,  166.18525484, ...,   24.31322368,
                       -13.55364657, -110.07169411], shape=(68661,)),
               'avg_v3_B': array([ 24.96222668,  -7.44290129, -50.92799294, ..., -30.97006987,
                       19.12760534, -50.99226974], shape=(68661,))},
              np.float64(301.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -27.44209607,  -92.15699622,  164.9951154 , ...,   24.85211877,
                       -13.89071502, -110.50944141], shape=(68661,)),
               'avg_v3_A': array([ 24.50456651,  -8.4421928 , -50.67912828, ..., -30.55404278,
                       18.89039483, -51.93022614], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -27.44209607,  -92.15699622,  164.9951154 , ...,   24.85211877,
                       -13.89071502, -110.50944141], shape=(68661,)),
               'avg_v3_B': array([ 24.50456651,  -8.4421928 , -50.67912828, ..., -30.55404278,
                       18.89039483, -51.93022614], shape=(68661,))},
              np.float64(302.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -27.84396617,  -92.16531755,  163.82235586, ...,   25.37973026,
                       -14.22276053, -110.97164987], shape=(68661,)),
               'avg_v3_A': array([ 24.04060319,  -9.44147907, -50.4103454 , ..., -30.12957044,
                       18.64751583, -52.86543111], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -27.84396617,  -92.16531755,  163.82235586, ...,   25.37973026,
                       -14.22276053, -110.97164987], shape=(68661,)),
               'avg_v3_B': array([ 24.04060319,  -9.44147907, -50.4103454 , ..., -30.12957044,
                       18.64751583, -52.86543111], shape=(68661,))},
              np.float64(303.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -28.23575154,  -92.17434114,  162.66792996, ...,   25.89604106,
                       -14.54969967, -111.46010036], shape=(68661,)),
               'avg_v3_A': array([ 23.5705157 , -10.44075963, -50.12205711, ..., -29.6968673 ,
                       18.39906225, -53.79766705], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -28.23575154,  -92.17434114,  162.66792996, ...,   25.89604106,
                       -14.54969967, -111.46010036], shape=(68661,)),
               'avg_v3_B': array([ 23.5705157 , -10.44075963, -50.12205711, ..., -29.6968673 ,
                       18.39906225, -53.79766705], shape=(68661,))},
              np.float64(304.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -28.61748495,  -92.18407896,  161.53269507, ...,   26.4010451 ,
                       -14.87145267, -111.97674605], shape=(68661,)),
               'avg_v3_A': array([ 23.09448111, -11.44003397, -49.81469403, ..., -29.25614637,
                       18.14512919, -54.72669424], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -28.61748495,  -92.18407896,  161.53269507, ...,   26.4010451 ,
                       -14.87145267, -111.97674605], shape=(68661,)),
               'avg_v3_B': array([ 23.09448111, -11.44003397, -49.81469403, ..., -29.25614637,
                       18.14512919, -54.72669424], shape=(68661,))},
              np.float64(305.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -28.98920344,  -92.19454422,  160.41741233, ...,   26.89474656,
                       -15.18794334, -112.52373212], shape=(68661,)),
               'avg_v3_A': array([ 22.61267457, -12.4393016 , -49.48870189, ..., -28.807619  ,
                       17.88581283, -55.65224805], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -28.98920344,  -92.19454422,  160.41741233, ...,   26.89474656,
                       -15.18794334, -112.52373212], shape=(68661,)),
               'avg_v3_B': array([ 22.61267457, -12.4393016 , -49.48870189, ..., -28.807619  ,
                       17.88581283, -55.65224805], shape=(68661,))},
              np.float64(306.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -29.35094786,  -92.20575143,  159.3227479 , ...,   27.37715915,
                       -15.49909901, -113.10341798], shape=(68661,)),
               'avg_v3_A': array([ 22.12526922, -13.43856198, -49.14453892, ..., -28.3514947 ,
                       17.62121042, -56.57403574], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -29.35094786,  -92.20575143,  159.3227479 , ...,   27.37715915,
                       -15.49909901, -113.10341798], shape=(68661,)),
               'avg_v3_B': array([ 22.12526922, -13.43856198, -49.14453892, ..., -28.3514947 ,
                       17.62121042, -56.57403574], shape=(68661,))},
              np.float64(307.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -29.70276249,  -92.21771641,  158.249275  , ...,   27.84830542,
                       -15.80485048, -113.71840229], shape=(68661,)),
               'avg_v3_A': array([ 21.63243615, -14.43781459, -48.78267334, ..., -27.88798099,
                       17.35142014, -57.49173279], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -29.70276249,  -92.21771641,  158.249275  , ...,   27.84830542,
                       -15.80485048, -113.71840229], shape=(68661,)),
               'avg_v3_B': array([ 21.63243615, -14.43781459, -48.78267334, ..., -27.88798099,
                       17.35142014, -57.49173279], shape=(68661,))},
              np.float64(308.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -30.04469461,  -92.23045638,  157.1974767 , ...,   28.30821601,
                       -16.10513194, -114.3715511 ], shape=(68661,)),
               'avg_v3_A': array([ 21.13434439, -15.43705885, -48.40358092, ..., -27.4172832 ,
                       17.07654105, -58.40497863], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -30.04469461,  -92.23045638,  157.1974767 , ...,   28.30821601,
                       -16.10513194, -114.3715511 ], shape=(68661,)),
               'avg_v3_B': array([ 21.13434439, -15.43705885, -48.40358092, ..., -27.4172832 ,
                       17.07654105, -58.40497863], shape=(68661,))},
              np.float64(309.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -30.3767941 ,  -92.24399005,  156.1677495 , ...,   28.756929  ,
                       -16.39988086, -115.06602952], shape=(68661,)),
               'avg_v3_A': array([ 20.63116088, -16.4362942 , -48.0077427 , ..., -26.93960441,
                       16.79667302, -59.31337181], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -30.3767941 ,  -92.24399005,  156.1677495 , ...,   28.756929  ,
                       -16.39988086, -115.06602952], shape=(68661,)),
               'avg_v3_B': array([ 20.63116088, -16.4362942 , -48.0077427 , ..., -26.93960441,
                       16.79667302, -59.31337181], shape=(68661,))},
              np.float64(310.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -30.69911313,  -92.25833766,  155.16040724, ...,   29.19448926,
                       -16.68903798, -115.80533733], shape=(68661,)),
               'avg_v3_A': array([ 20.12305042, -17.43552002, -47.59564282, ..., -26.45514526,
                       16.51191665, -60.21646431], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -30.69911313,  -92.25833766,  155.16040724, ...,   29.19448926,
                       -16.68903798, -115.80533733], shape=(68661,)),
               'avg_v3_B': array([ 20.12305042, -17.43552002, -47.59564282, ..., -26.45514526,
                       16.51191665, -60.21646431], shape=(68661,))},
              np.float64(311.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -31.01170572,  -92.27352106,  154.17568562, ...,   29.62094779,
                       -16.97254713, -116.59334871], shape=(68661,)),
               'avg_v3_A': array([ 19.61017573, -18.43473569, -47.16776652, ..., -25.96410392,
                       16.22237323, -61.11375502], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -31.01170572,  -92.27352106,  154.17568562, ...,   29.62094779,
                       -16.97254713, -116.59334871], shape=(68661,)),
               'avg_v3_B': array([ 19.61017573, -18.43473569, -47.16776652, ..., -25.96410392,
                       16.22237323, -61.11375502], shape=(68661,))},
              np.float64(312.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -31.31462749,  -92.28956385,  153.21374693, ...,   30.03636111,
                       -17.25035524, -117.43435664], shape=(68661,)),
               'avg_v3_A': array([ 19.09269738, -19.43394055, -46.72459836, ..., -25.46667595,
                       15.92814465, -62.00468217], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -31.31462749,  -92.28956385,  153.21374693, ...,   30.03636111,
                       -17.25035524, -117.43435664], shape=(68661,)),
               'avg_v3_B': array([ 19.09269738, -19.43394055, -46.72459836, ..., -25.46667595,
                       15.92814465, -62.00468217], shape=(68661,))},
              np.float64(313.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -31.60793527,  -92.30649143,  152.27468501, ...,   30.44079066,
                       -17.52241218, -118.33312208], shape=(68661,)),
               'avg_v3_A': array([ 18.57077386, -20.43313392, -46.26662045, ..., -24.96305429,
                       15.62933334, -62.88861456], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -31.60793527,  -92.30649143,  152.27468501, ...,   30.44079066,
                       -17.52241218, -118.33312208], shape=(68661,)),
               'avg_v3_B': array([ 18.57077386, -20.43313392, -46.26662045, ..., -24.96305429,
                       15.62933334, -62.88861456], shape=(68661,))},
              np.float64(314.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -31.89168686,  -92.32433114,  151.35853037, ...,   30.83430226,
                       -17.78867068, -119.29492808], shape=(68661,)),
               'avg_v3_A': array([ 18.04456154, -21.43231508, -45.79431103, ..., -24.45342914,
                       15.32604223, -63.76484136], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -31.89168686,  -92.32433114,  151.35853037, ...,   30.83430226,
                       -17.78867068, -119.29492808], shape=(68661,)),
               'avg_v3_B': array([ 18.04456154, -21.43231508, -45.79431103, ..., -24.45342914,
                       15.32604223, -63.76484136], shape=(68661,))},
              np.float64(315.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -32.16594071,  -92.34311237,  150.46525535, ...,   31.21696556,
                       -18.04908627, -120.32563862], shape=(68661,)),
               'avg_v3_A': array([ 17.51421472, -22.43148329, -45.30814308, ..., -23.93798799,
                       15.01837467, -64.63256036], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -32.16594071,  -92.34311237,  150.46525535, ...,   31.21696556,
                       -18.04908627, -120.32563862], shape=(68661,)),
               'avg_v3_B': array([ 17.51421472, -22.43148329, -45.30814308, ..., -23.93798799,
                       15.01837467, -64.63256036], shape=(68661,))},
              np.float64(316.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -32.43075564,  -92.36286672,  149.5947792 , ...,   31.58885351,
                       -18.30361713, -121.43176168], shape=(68661,)),
               'avg_v3_A': array([ 16.97988567, -23.43063775, -44.80858315, ..., -23.41691553,
                       14.70643439, -65.49086422], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -32.43075564,  -92.36286672,  149.5947792 , ...,   31.58885351,
                       -18.30361713, -121.43176168], shape=(68661,)),
               'avg_v3_B': array([ 16.97988567, -23.43063775, -44.80858315, ..., -23.41691553,
                       14.70643439, -65.49086422], shape=(68661,))},
              np.float64(317.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -32.68619063,  -92.38362809,  148.74697316, ...,   31.95004188,
                       -18.55222406, -122.62051524], shape=(68661,)),
               'avg_v3_A': array([ 16.4417246 , -24.42977764, -44.29609029, ..., -22.89039368,
                       14.39032548, -66.33872471], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -32.68619063,  -92.38362809,  148.74697316, ...,   31.95004188,
                       -18.55222406, -122.62051524], shape=(68661,)),
               'avg_v3_B': array([ 16.4417246 , -24.42977764, -44.29609029, ..., -22.89039368,
                       14.39032548, -66.33872471], shape=(68661,))},
              np.float64(318.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -32.93230454,  -92.40543292,  147.92166535, ...,   32.30060879,
                       -18.7948703 , -123.89989428], shape=(68661,)),
               'avg_v3_A': array([ 15.89987978, -25.42890208, -43.77111522, ..., -22.35860154,
                       14.07015227, -67.17497446], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -32.93230454,  -92.40543292,  147.92166535, ...,   32.30060879,
                       -18.7948703 , -123.89989428], shape=(68661,)),
               'avg_v3_B': array([ 15.89987978, -25.42890208, -43.77111522, ..., -22.35860154,
                       14.07015227, -67.17497446], shape=(68661,))},
              np.float64(319.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -33.1691559 ,  -92.42832031,  147.11864547, ...,   32.64063431,
                       -19.03152151, -125.2787351 ], shape=(68661,)),
               'avg_v3_A': array([ 15.3544975 , -26.42801016, -43.23409953, ..., -21.82171543,
                       13.74601935, -67.99828603], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -33.1691559 ,  -92.42832031,  147.11864547, ...,   32.64063431,
                       -19.03152151, -125.2787351 ], shape=(68661,)),
               'avg_v3_B': array([ 15.3544975 , -26.42801016, -43.23409953, ..., -21.82171543,
                       13.74601935, -67.99828603], shape=(68661,))},
              np.float64(320.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -33.39680271,  -92.45233222,  146.33766934, ...,   32.97019999,
                       -19.26214563, -126.76677158], shape=(68661,)),
               'avg_v3_A': array([ 14.80572217, -27.42710091, -42.68547511, ..., -21.27990888,
                       13.4180315 , -68.80714804], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -33.39680271,  -92.45233222,  146.33766934, ...,   32.97019999,
                       -19.26214563, -126.76677158], shape=(68661,)),
               'avg_v3_B': array([ 14.80572217, -27.42710091, -42.68547511, ..., -21.27990888,
                       13.4180315 , -68.80714804], shape=(68661,))},
              np.float64(321.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -33.61530221,  -92.47751375,  145.5784632 , ...,   33.28938848,
                       -19.48671276, -128.37467531], shape=(68661,)),
               'avg_v3_A': array([ 14.25369633, -28.42617329, -42.12566356, ..., -20.73335266,
                       13.08629366, -69.59983831], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -33.61530221,  -92.47751375,  145.5784632 , ...,   33.28938848,
                       -19.48671276, -128.37467531], shape=(68661,)),
               'avg_v3_B': array([ 14.25369633, -28.42617329, -42.12566356, ..., -20.73335266,
                       13.08629366, -69.59983831], shape=(68661,))},
              np.float64(322.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -33.82471074,  -92.50391328,  144.8407277 , ...,   33.59828322,
                       -19.70519514, -130.1140674 ], shape=(68661,)),
               'avg_v3_A': array([ 13.69856072, -29.42522621, -41.55507589, ..., -20.18221479,
                       12.75091088, -70.37439391], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -33.82471074,  -92.50391328,  144.8407277 , ...,   33.59828322,
                       -19.70519514, -130.1140674 ], shape=(68661,)),
               'avg_v3_B': array([ 13.69856072, -29.42522621, -41.55507589, ..., -20.18221479,
                       12.75091088, -70.37439391], shape=(68661,))},
              np.float64(323.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -34.02508354,  -92.53158282,  144.12414173, ...,   33.896968  ,
                       -19.91756696, -131.99748533], shape=(68661,)),
               'avg_v3_A': array([ 13.14045434, -30.42425853, -40.97411217, ..., -19.6266606 ,
                       12.4119883 , -71.1285786 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -34.02508354,  -92.53158282,  144.12414173, ...,   33.896968  ,
                       -19.91756696, -131.99748533], shape=(68661,)),
               'avg_v3_B': array([ 13.14045434, -30.42425853, -40.97411217, ..., -19.6266606 ,
                       12.4119883 , -71.1285786 ], shape=(68661,))},
              np.float64(324.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -34.21647458,  -92.56057826,  143.42836587, ...,   34.18552673,
                       -20.12380432, -134.03828154], shape=(68661,)),
               'avg_v3_A': array([ 12.57951447, -31.42326902, -40.38316133, ..., -19.06685275,
                       12.06963112, -71.8598483 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -34.21647458,  -92.56057826,  143.42836587, ...,   34.18552673,
                       -20.12380432, -134.03828154], shape=(68661,)),
               'avg_v3_B': array([ 12.57951447, -31.42326902, -40.38316133, ..., -19.06685275,
                       12.06963112, -71.8598483 ], shape=(68661,))},
              np.float64(325.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -34.39893645,  -92.59095971,  142.7530457 , ...,   34.46404308,
                       -20.32388515, -136.25042315], shape=(68661,)),
               'avg_v3_A': array([ 12.01587678, -32.42225636, -39.78260105, ..., -18.50295128,
                       11.72394455, -72.56531642], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -34.39893645,  -92.59095971,  142.7530457 , ...,   34.46404308,
                       -20.32388515, -136.25042315], shape=(68661,)),
               'avg_v3_B': array([ 12.01587678, -32.42225636, -39.78260105, ..., -18.50295128,
                       11.72394455, -72.56531642], shape=(68661,))},
              np.float64(326.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -34.57252016,  -92.62279184,  142.09781472, ...,   34.73260022,
                       -20.51778904, -138.6481542 ], shape=(68661,)),
               'avg_v3_A': array([ 11.44967534, -33.42121916, -39.17279769, ..., -17.93511367,
                       11.3750338 , -73.24172129], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -34.57252016,  -92.62279184,  142.09781472, ...,   34.73260022,
                       -20.51778904, -138.6481542 ], shape=(68661,)),
               'avg_v3_B': array([ 11.44967534, -33.42121916, -39.17279769, ..., -17.93511367,
                       11.3750338 , -73.24172129], shape=(68661,))},
              np.float64(327.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -34.73727507,  -92.65614429,  141.46229712, ...,   34.99128055,
                       -20.70549724, -141.24547477], shape=(68661,)),
               'avg_v3_A': array([ 10.88104273, -34.42015594, -38.55410632, ..., -17.36349488,
                       11.02300406, -73.88539999], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -34.73727507,  -92.65614429,  141.46229712, ...,   34.99128055,
                       -20.70549724, -141.24547477], shape=(68661,)),
               'avg_v3_B': array([ 10.88104273, -34.42015594, -38.55410632, ..., -17.36349488,
                       11.02300406, -73.88539999], shape=(68661,))},
              np.float64(328.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -34.89324875,  -92.69109211,  140.84611025, ...,   35.24016547,
                       -20.8869925 , -144.05538843], shape=(68661,)),
               'avg_v3_A': array([ 10.31011005, -35.4190651 , -37.92687076, ..., -16.78824743,
                       10.66796046, -74.4922743 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -34.89324875,  -92.69109211,  140.84611025, ...,   35.24016547,
                       -20.8869925 , -144.05538843], shape=(68661,)),
               'avg_v3_B': array([ 10.31011005, -35.4190651 , -37.92687076, ..., -16.78824743,
                       10.66796046, -74.4922743 ], shape=(68661,))},
              np.float64(329.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -35.04048685,  -92.72771624,  140.24886687, ...,   35.47933513,
                       -21.06225903, -147.08887539], shape=(68661,)),
               'avg_v3_A': array([  9.73700704, -36.41794495, -37.29142371, ..., -16.20952144,
                       10.31000806, -75.0578567 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -35.04048685,  -92.72771624,  140.24886687, ...,   35.47933513,
                       -21.06225903, -147.08887539], shape=(68661,)),
               'avg_v3_B': array([  9.73700704, -36.41794495, -37.29142371, ..., -16.20952144,
                       10.31000806, -75.0578567 ], shape=(68661,))},
              np.float64(330.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -35.17903302,  -92.76610408,  139.67017715, ...,   35.70886824,
                       -21.23128236, -150.35357095], shape=(68661,)),
               'avg_v3_A': array([  9.16186212, -37.41679365, -36.64808691, ..., -15.62746473,
                        9.94925185, -75.57728635], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -35.17903302,  -92.76610408,  139.67017715, ...,   35.70886824,
                       -21.23128236, -150.35357095], shape=(68661,)),
               'avg_v3_B': array([  9.16186212, -37.41679365, -36.64808691, ..., -15.62746473,
                        9.94925185, -75.57728635], shape=(68661,))},
              np.float64(331.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -35.30892881,  -92.80635009,  139.10965049, ...,   35.92884187,
                       -21.39404933, -153.85217486], shape=(68661,)),
               'avg_v3_A': array([  8.58480245, -38.41560925, -35.9971713 , ..., -15.04222286,
                        9.5857967 , -76.04540642], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -35.30892881,  -92.80635009,  139.10965049, ...,   35.92884187,
                       -21.39404933, -153.85217486], shape=(68661,)),
               'avg_v3_B': array([  8.58480245, -38.41560925, -35.9971713 , ..., -15.04222286,
                        9.5857967 , -76.04540642], shape=(68661,))},
              np.float64(332.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -35.43021359,  -92.84855647,  138.56689715, ...,   36.13933126,
                       -21.55054793, -157.58069324], shape=(68661,)),
               'avg_v3_A': array([  8.00595403, -39.41438963, -35.33897727, ..., -14.45393921,
                        9.21974737, -76.45689344], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -35.43021359,  -92.84855647,  138.56689715, ...,   36.13933126,
                       -21.55054793, -157.58069324], shape=(68661,)),
               'avg_v3_B': array([  8.00595403, -39.41438963, -35.33897727, ..., -14.45393921,
                        9.21974737, -76.45689344], shape=(68661,))},
              np.float64(333.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -35.54292446,  -92.89283391,  138.04152965, ...,   36.34040969,
                       -21.70076729, -161.52671783], shape=(68661,)),
               'avg_v3_A': array([  7.42544173, -40.4131325 , -34.6737949 , ..., -13.86275506,
                        8.85120849, -76.8064458 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -35.54292446,  -92.89283391,  138.04152965, ...,   36.34040969,
                       -21.70076729, -161.52671783], shape=(68661,)),
               'avg_v3_B': array([  7.42544173, -40.4131325 , -34.6737949 , ..., -13.86275506,
                        8.85120849, -76.8064458 ], shape=(68661,))},
              np.float64(334.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -35.64709617,  -92.93930251,  137.53316405, ...,   36.53214826,
                       -21.84469754, -165.66805741], shape=(68661,)),
               'avg_v3_A': array([  6.84338941, -41.41183543, -34.0019042 , ..., -13.26880966,
                        8.48028456, -77.08903069], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -35.64709617,  -92.93930251,  137.53316405, ...,   36.53214826,
                       -21.84469754, -165.66805741], shape=(68661,)),
               'avg_v3_B': array([  6.84338941, -41.41183543, -34.0019042 , ..., -13.26880966,
                        8.48028456, -77.08903069], shape=(68661,))},
              np.float64(335.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -35.74276108,  -92.98809268,  137.04142102, ...,   36.71461582,
                       -21.9823298 , -169.9721121 ], shape=(68661,)),
               'avg_v3_A': array([  6.25991995, -42.41049573, -33.32357541, ..., -12.67224035,
                        8.10707992, -77.30017591], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -35.74276108,  -92.98809268,  137.04142102, ...,   36.71461582,
                       -21.9823298 , -169.9721121 ], shape=(68661,)),
               'avg_v3_B': array([  6.25991995, -42.41049573, -33.32357541, ..., -12.67224035,
                        8.10707992, -77.30017591], shape=(68661,))},
              np.float64(336.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -35.82994909,  -93.0393463 ,  136.56592685, ...,   36.88787881,
                       -22.11365604, -174.39636517], shape=(68661,)),
               'avg_v3_A': array([  5.67515534, -43.40911053, -32.63906928, ..., -12.07318255,
                        7.73169877, -77.43627827], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -35.82994909,  -93.0393463 ,  136.56592685, ...,   36.88787881,
                       -22.11365604, -174.39636517], shape=(68661,)),
               'avg_v3_B': array([  5.67515534, -43.40911053, -32.63906928, ..., -12.07318255,
                        7.73169877, -77.43627827], shape=(68661,))},
              np.float64(337.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -35.90868759,  -93.09321791,  136.10631422, ...,   37.05200114,
                       -22.23866909, -178.8902128 ], shape=(68661,)),
               'avg_v3_A': array([  5.08921676, -44.40767671, -31.94863737, ..., -11.47176995,
                        7.35424517, -77.49488677], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -35.90868759,  -93.09321791,  136.10631422, ...,   37.05200114,
                       -22.23866909, -178.8902128 ], shape=(68661,)),
               'avg_v3_B': array([  5.08921676, -44.40767671, -31.94863737, ..., -11.47176995,
                        7.35424517, -77.49488677], shape=(68661,))},
              np.float64(338.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-35.97900138, -93.14987615, 135.66222294, ...,  37.20704408,
                      -22.3573625 , 176.60193676], shape=(68661,)),
               'avg_v3_A': array([  4.50222465, -45.40619085, -31.25252236, ..., -10.8681345 ,
                        6.97482299, -77.47491327], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-35.97900138, -93.14987615, 135.66222294, ...,  37.20704408,
                      -22.3573625 , 176.60193676], shape=(68661,)),
               'avg_v3_B': array([  4.50222465, -45.40619085, -31.25252236, ..., -10.8681345 ,
                        6.97482299, -77.47491327], shape=(68661,))},
              np.float64(339.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-36.04091267, -93.20950534, 135.23330053, ...,  37.35306618,
                      -22.46973053, 172.13670642], shape=(68661,)),
               'avg_v3_A': array([  3.91429878, -46.40464923, -30.55095838, ..., -10.26240656,
                        6.59353596, -77.37673086], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-36.04091267, -93.20950534, 135.23330053, ...,  37.35306618,
                      -22.46973053, 172.13670642], shape=(68661,)),
               'avg_v3_B': array([  3.91429878, -46.40464923, -30.55095838, ..., -10.26240656,
                        6.59353596, -77.37673086], shape=(68661,))},
              np.float64(340.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-36.09444104, -93.27230732, 134.81920276, ...,  37.49012316,
                      -22.57576806, 167.76760946], shape=(68661,)),
               'avg_v3_A': array([  3.32555832, -47.40304782, -29.84417125, ...,  -9.65471495,
                        6.21048765, -77.20213976], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-36.09444104, -93.27230732, 134.81920276, ...,  37.49012316,
                      -22.57576806, 167.76760946], shape=(68661,)),
               'avg_v3_B': array([  3.32555832, -47.40304782, -29.84417125, ...,  -9.65471495,
                        6.21048765, -77.20213976], shape=(68661,))},
              np.float64(341.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-36.13960338, -93.33850353, 134.41959401, ...,  37.61826784,
                      -22.67547056, 163.54145675], shape=(68661,)),
               'avg_v3_A': array([  2.73612194, -48.40138216, -29.13237889, ...,  -9.04518705,
                        5.82578147, -76.954208  ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-36.13960338, -93.33850353, 134.41959401, ...,  37.61826784,
                      -22.67547056, 163.54145675], shape=(68661,)),
               'avg_v3_B': array([  2.73612194, -48.40138216, -29.13237889, ...,  -9.04518705,
                        5.82578147, -76.954208  ], shape=(68661,))},
              np.float64(342.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-36.17641386, -93.40833741, 134.03414765, ...,  37.73755008,
                      -22.76883401, 159.49587209], shape=(68661,)),
               'avg_v3_A': array([  2.14610786, -49.39964738, -28.41579154, ...,  -8.43394887,
                        5.43952068, -76.63701806], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-36.17641386, -93.40833741, 134.03414765, ...,  37.73755008,
                      -22.76883401, 159.49587209], shape=(68661,)),
               'avg_v3_B': array([  2.14610786, -49.39964738, -28.41579154, ...,  -8.43394887,
                        5.43952068, -76.63701806], shape=(68661,))},
              np.float64(343.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-36.20488396, -93.48207714, 133.66254628, ...,  37.84801667,
                      -22.85585486, 155.65815398], shape=(68661,)),
               'avg_v3_A': array([  1.55563392, -50.39783814, -27.69461212, ...,  -7.82112517,
                        5.05180839, -76.25536515], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-36.20488396, -93.48207714, 133.66254628, ...,  37.84801667,
                      -22.85585486, 155.65815398], shape=(68661,)),
               'avg_v3_B': array([  1.55563392, -50.39783814, -27.69461212, ...,  -7.82112517,
                        5.05180839, -76.25536515], shape=(68661,))},
              np.float64(344.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-36.22502238, -93.56001884, 133.30448196, ...,  37.94971132,
                      -22.93652999, 152.04539192], shape=(68661,)),
               'avg_v3_A': array([  0.9648177 , -51.39594851, -26.96903651, ...,  -7.2068395 ,
                        4.66274755, -75.81445271], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-36.22502238, -93.56001884, 133.30448196, ...,  37.94971132,
                      -22.93652999, 152.04539192], shape=(68661,)),
               'avg_v3_B': array([  0.9648177 , -51.39594851, -26.96903651, ...,  -7.2068395 ,
                        4.66274755, -75.81445271], shape=(68661,))},
              np.float64(345.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-36.23683507, -93.64249026, 132.95965634, ...,  38.04267458,
                      -23.01085667, 148.66552004], shape=(68661,)),
               'avg_v3_A': array([  0.37377655, -52.39397198, -26.23925384, ...,  -6.59121434,
                        4.27244099, -75.31962079], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-36.23683507, -93.64249026, 132.95965634, ...,  38.04267458,
                      -23.01085667, 148.66552004], shape=(68661,)),
               'avg_v3_B': array([  0.37377655, -52.39397198, -26.23925384, ...,  -6.59121434,
                        4.27244099, -75.31962079], shape=(68661,))},
              np.float64(346.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-36.24032522, -93.72985503, 132.6277808 , ...,  38.1269438 ,
                      -23.0788325 , 145.51890996], shape=(68661,)),
               'avg_v3_A': array([ -0.21737232, -53.3919013 , -25.5054468 , ...,  -5.97437112,
                        3.8809914 , -74.776128  ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-36.24032522, -93.72985503, 132.6277808 , ...,  38.1269438 ,
                      -23.0788325 , 145.51890996], shape=(68661,)),
               'avg_v3_B': array([ -0.21737232, -53.3919013 , -25.5054468 , ...,  -5.97437112,
                        3.8809914 , -74.776128  ], shape=(68661,))},
              np.float64(347.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-36.23549323, -93.82251773, 132.30857645, ...,  38.20255306,
                      -23.14045539, 142.60014318], shape=(68661,)),
               'avg_v3_A': array([ -0.80851174, -54.38972845, -24.76779192, ...,  -5.3564304 ,
                        3.48850135, -74.18899355], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-36.23549323, -93.82251773, 132.30857645, ...,  38.20255306,
                      -23.14045539, 142.60014318], shape=(68661,)),
               'avg_v3_B': array([ -0.80851174, -54.38972845, -24.76779192, ...,  -5.3564304 ,
                        3.48850135, -74.18899355], shape=(68661,))},
              np.float64(348.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-36.22233672, -93.92092968, 132.00177424, ...,  38.26953321,
                      -23.19572351, 139.89970274], shape=(68661,)),
               'avg_v3_A': array([ -1.39952454, -55.38744446, -24.02645983, ...,  -4.73751186,
                        3.09507329, -73.56289552], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-36.22233672, -93.92092968, 132.00177424, ...,  38.26953321,
                      -23.19572351, 139.89970274], shape=(68661,)),
               'avg_v3_B': array([ -1.39952454, -55.38744446, -24.02645983, ...,  -4.73751186,
                        3.09507329, -73.56289552], shape=(68661,))},
              np.float64(349.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-36.20085054, -94.02559591, 131.70711487, ...,  38.32791172,
                      -23.24463528, 137.40543444], shape=(68661,)),
               'avg_v3_A': array([ -1.99029346, -56.3850393 , -23.28161554, ...,  -4.11773446,
                        2.70080956, -72.90211599], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-36.20085054, -94.02559591, 131.70711487, ...,  38.32791172,
                      -23.24463528, 137.40543444], shape=(68661,)),
               'avg_v3_B': array([ -1.99029346, -56.3850393 , -23.28161554, ...,  -4.11773446,
                        2.70080956, -72.90211599], shape=(68661,))},
              np.float64(350.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-36.17102676, -94.13708331, 131.42434885, ...,  38.37771278,
                      -23.28718931, 135.10371842], shape=(68661,)),
               'avg_v3_A': array([ -2.58070105, -57.38250175, -22.53341871, ...,  -3.49721649,
                        2.30581243, -72.21052158], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-36.17102676, -94.13708331, 131.42434885, ...,  38.37771278,
                      -23.28718931, 135.10371842], shape=(68661,)),
               'avg_v3_B': array([ -2.58070105, -57.38250175, -22.53341871, ...,  -3.49721649,
                        2.30581243, -72.21052158], shape=(68661,))},
              np.float64(351.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-36.13285468, -94.2560303 , 131.15323635, ...,  38.41895717,
                      -23.32338442, 132.98035231], shape=(68661,)),
               'avg_v3_A': array([ -3.17062963, -58.37981915, -21.78202392, ...,  -2.87607568,
                        1.91018405, -71.49156879], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-36.13285468, -94.2560303 , 131.15323635, ...,  38.41895717,
                      -23.32338442, 132.98035231], shape=(68661,)),
               'avg_v3_B': array([ -3.17062963, -58.37981915, -21.78202392, ...,  -2.87607568,
                        1.91018405, -71.49156879], shape=(68661,))},
              np.float64(352.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-36.08632089, -94.38315848, 130.89354721, ...,  38.45166229,
                      -23.35321958, 131.02118019], shape=(68661,)),
               'avg_v3_A': array([ -3.7599612 , -59.37697721, -21.02758087, ...,  -2.25442927,
                        1.51402652, -70.74832505], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-36.08632089, -94.38315848, 130.89354721, ...,  38.45166229,
                      -23.35321958, 131.02118019], shape=(68661,)),
               'avg_v3_B': array([ -3.7599612 , -59.37697721, -21.02758087, ...,  -2.25442927,
                        1.51402652, -70.74832505], shape=(68661,))},
              np.float64(353.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-36.0314092 , -94.51928648, 130.64506082, ...,  38.47584216,
                      -23.37669391, 129.21251444], shape=(68661,)),
               'avg_v3_A': array([ -4.34857735, -60.37395973, -20.27023465, ...,  -1.6323941 ,
                        1.11744189, -69.98349877], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-36.0314092 , -94.51928648, 130.64506082, ...,  38.47584216,
                      -23.37669391, 129.21251444], shape=(68661,)),
               'avg_v3_B': array([ -4.34857735, -60.37395973, -20.27023465, ...,  -1.6323941 ,
                        1.11744189, -69.98349877], shape=(68661,))},
              np.float64(354.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-35.96810075, -94.6653468 , 130.407566  , ...,  38.49150735,
                      -23.39380666, 127.54139839], shape=(68661,)),
               'avg_v3_A': array([ -4.93635919, -61.37074824, -19.510126  , ...,  -1.01008673,
                        0.72053214, -69.19947334], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-35.96810075, -94.6653468 , 130.407566  , ...,  38.49150735,
                      -23.39380666, 127.54139839], shape=(68661,)),
               'avg_v3_B': array([ -4.93635919, -61.37074824, -19.510126  , ...,  -1.01008673,
                        0.72053214, -69.19947334], shape=(68661,))},
              np.float64(355.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-35.896374  , -94.82240621, 130.18086095, ...,  38.49866504,
                      -23.40455719, 125.99575208], shape=(68661,)),
               'avg_v3_A': array([ -5.52318729, -62.36732163, -18.74739149, ...,  -0.38762347,
                        0.32339922, -68.39834202], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-35.896374  , -94.82240621, 130.18086095, ...,  38.49866504,
                      -23.40455719, 125.99575208], shape=(68661,)),
               'avg_v3_B': array([ -5.52318729, -62.36732163, -18.74739149, ...,  -0.38762347,
                        0.32339922, -68.39834202], shape=(68661,))},
              np.float64(356.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-35.81620474, -94.99169069, 129.96475305, ...,  38.49731896,
                      -23.40894498, 124.56443565], shape=(68661,)),
               'avg_v3_A': array([ -6.1089416 , -63.36365564, -17.98216377, ...,   0.23487948,
                       -0.07385494, -67.58194158], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-35.81620474, -94.99169069, 129.96475305, ...,  38.49731896,
                      -23.40894498, 124.56443565], shape=(68661,)),
               'avg_v3_B': array([ -6.1089416 , -63.36365564, -17.98216377, ...,   0.23487948,
                       -0.07385494, -67.58194158], shape=(68661,))},
              np.float64(357.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-35.72756619, -95.17461614, 129.75905881, ...,  38.48746942,
                      -23.40696963, 123.23725723], shape=(68661,)),
               'avg_v3_A': array([ -6.69350134, -64.35972226, -17.21457174, ...,   0.85730596,
                       -0.47112842, -66.75188359], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-35.72756619, -95.17461614, 129.75905881, ...,  38.48746942,
                      -23.40696963, 123.23725723], shape=(68661,)),
               'avg_v3_B': array([ -6.69350134, -64.35972226, -17.21457174, ...,   0.85730596,
                       -0.47112842, -66.75188359], shape=(68661,))},
              np.float64(358.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-35.63042898, -95.37282649, 129.56360371, ...,  38.46911328,
                      -23.39863081, 122.00494493], shape=(68661,)),
               'avg_v3_A': array([ -7.27674499, -65.35548894, -16.44474084, ...,   1.47953979,
                       -0.8683193 , -65.90958287], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-35.63042898, -95.37282649, 129.56360371, ...,  38.46911328,
                      -23.39863081, 122.00494493], shape=(68661,)),
               'avg_v3_B': array([ -7.27674499, -65.35548894, -16.44474084, ...,   1.47953979,
                       -0.8683193 , -65.90958287], shape=(68661,))},
              np.float64(359.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-35.52476123, -95.58824132, 129.37822206, ...,  38.44224399,
                      -23.38392832, 120.85909734], shape=(68661,)),
               'avg_v3_A': array([ -7.85855015, -66.35091769, -15.67279315, ...,   2.10146461,
                       -1.26532564, -65.05628279], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-35.52476123, -95.58824132, 129.37822206, ...,  38.44224399,
                      -23.38392832, 120.85909734], shape=(68661,)),
               'avg_v3_B': array([ -7.85855015, -66.35091769, -15.67279315, ...,   2.10146461,
                       -1.26532564, -65.05628279], shape=(68661,))}}),
 'averages_B': defaultdict(dict,
             {np.float64(0.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-35.4105286 , -95.82311585, 129.20275691, ...,  38.40685158,
                      -23.36286206, 119.79212231], shape=(68661,)),
               'avg_v3_A': array([ -8.4387935 , -67.34596384, -14.89884765, ...,   2.72296388,
                       -1.66204548, -64.19307764], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-35.4105286 , -95.82311585, 129.20275691, ...,  38.40685158,
                      -23.36286206, 119.79212231], shape=(68661,)),
               'avg_v3_B': array([ -8.4387935 , -67.34596384, -14.89884765, ...,   2.72296388,
                       -1.66204548, -64.19307764], shape=(68661,))},
              np.float64(1.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-35.28769434, -96.08011733, 129.03705987, ...,  38.36292267,
                      -23.33543205, 118.79717074], shape=(68661,)),
               'avg_v3_A': array([ -9.01735073, -68.34057454, -14.12302038, ...,   3.34392073,
                       -2.05837679, -63.32093213], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-35.28769434, -96.08011733, 129.03705987, ...,  38.36292267,
                      -23.33543205, 118.79717074], shape=(68661,)),
               'avg_v3_B': array([ -9.01735073, -68.34057454, -14.12302038, ...,   3.34392073,
                       -2.05837679, -63.32093213], shape=(68661,))},
              np.float64(2.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-35.15621938, -96.36242316, 128.88099103, ...,  38.31044049,
                      -23.30163842, 117.86806974], shape=(68661,)),
               'avg_v3_A': array([ -9.59409645, -69.33468682, -13.34542462, ...,   3.96421789,
                       -2.45421752, -62.44069839], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-35.15621938, -96.36242316, 128.88099103, ...,  38.31044049,
                      -23.30163842, 117.86806974], shape=(68661,)),
               'avg_v3_B': array([ -9.59409645, -69.33468682, -13.34542462, ...,   3.96421789,
                       -2.45421752, -62.44069839], shape=(68661,))},
              np.float64(3.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-35.01606237, -96.67384832, 128.73441878, ...,  38.2493849 ,
                      -23.26148148, 116.99925796], shape=(68661,)),
               'avg_v3_A': array([-10.16890413, -70.328225  , -12.56617108, ...,   4.58373761,
                       -2.84946554, -61.55313065], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-35.01606237, -96.67384832, 128.73441878, ...,  38.2493849 ,
                      -23.26148148, 116.99925796], shape=(68661,)),
               'avg_v3_B': array([-10.16890413, -70.328225  , -12.56617108, ...,   4.58373761,
                       -2.84946554, -61.55313065], shape=(68661,))},
              np.float64(4.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-34.86717978, -97.01901278, 128.59721976, ...,  38.1797324 ,
                      -23.21496166, 116.1857245 ], shape=(68661,)),
               'avg_v3_A': array([-10.74164602, -71.32109735, -11.78536807, ...,   5.20236158,
                       -3.24401864, -60.65889793], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-34.86717978, -97.01901278, 128.59721976, ...,  38.1797324 ,
                      -23.21496166, 116.1857245 ], shape=(68661,)),
               'avg_v3_B': array([-10.74164602, -71.32109735, -11.78536807, ...,   5.20236158,
                       -3.24401864, -60.65889793], shape=(68661,))},
              np.float64(5.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-34.709526  , -97.40356434, 128.46927867, ...,  38.10145618,
                      -23.16207959, 115.42295247], shape=(68661,)),
               'avg_v3_A': array([-11.31219309, -72.31319163, -11.00312163, ...,   5.81997079,
                       -3.63777452, -59.75859499], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-34.709526  , -97.40356434, 128.46927867, ...,  38.10145618,
                      -23.16207959, 115.42295247], shape=(68661,)),
               'avg_v3_B': array([-11.31219309, -72.31319163, -11.00312163, ...,   5.81997079,
                       -3.63777452, -59.75859499], shape=(68661,))},
              np.float64(6.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-34.54305341, -97.8344792 , 128.35048822, ...,  38.01452613,
                      -23.10283609, 114.70686738], shape=(68661,)),
               'avg_v3_A': array([-11.88041495, -73.30436902, -10.21953575, ...,   6.43644552,
                       -4.03063078, -58.8527518 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-34.54305341, -97.8344792 , 128.35048822, ...,  38.01452613,
                      -23.10283609, 114.70686738], shape=(68661,)),
               'avg_v3_B': array([-11.88041495, -73.30436902, -10.21953575, ...,   6.43644552,
                       -4.03063078, -58.8527518 ], shape=(68661,))},
              np.float64(7.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-34.36771249, -98.32047393, 128.24074896, ...,  37.91890887,
                      -23.03723224, 114.03379042], shape=(68661,)),
               'avg_v3_A': array([-12.44617979, -74.29445583,  -9.43471248, ...,   7.0516652 ,
                       -4.42248489, -57.94184162], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-34.36771249, -98.32047393, 128.24074896, ...,  37.91890887,
                      -23.03723224, 114.03379042], shape=(68661,)),
               'avg_v3_B': array([-12.44617979, -74.29445583,  -9.43471248, ...,   7.0516652 ,
                       -4.42248489, -57.94184162], shape=(68661,))},
              np.float64(8.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-34.18345193, -98.87257929, 128.13996922, ...,  37.81456781,
                      -22.96526934, 113.40039643], shape=(68661,)),
               'avg_v3_A': array([-13.00935432, -75.28323182,  -8.6487521 , ...,   7.66550832,
                       -4.81323424, -57.02628807], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-34.18345193, -98.87257929, 128.13996922, ...,  37.81456781,
                      -22.96526934, 113.40039643], shape=(68661,)),
               'avg_v3_B': array([-13.00935432, -75.28323182,  -8.6487521 , ...,   7.66550832,
                       -4.81323424, -57.02628807], shape=(68661,))},
              np.float64(9.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-33.99021879, -99.5049549 , 128.04806502, ...,  37.7014632 ,
                      -22.88694901, 112.80367635], shape=(68661,)),
               'avg_v3_A': array([-13.56980368, -76.27041367,  -7.86175328, ...,   8.27785238,
                       -5.20277604, -56.1064712 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-33.99021879, -99.5049549 , 128.04806502, ...,  37.7014632 ,
                      -22.88694901, 112.80367635], shape=(68661,)),
               'avg_v3_B': array([-13.56980368, -76.27041367,  -7.86175328, ...,   8.27785238,
                       -5.20277604, -56.1064712 ], shape=(68661,))},
              np.float64(10.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -33.78795856, -100.23606981,  127.96495995, ...,   37.57955215,
                       -22.8022732 ,  112.24090363], shape=(68661,)),
               'avg_v3_A': array([-14.12739141, -77.25563082,  -7.07381319, ...,   8.88857378,
                       -5.59100739, -55.18273268], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -33.78795856, -100.23606981,  127.96495995, ...,   37.57955215,
                       -22.8022732 ,  112.24090363], shape=(68661,)),
               'avg_v3_B': array([-14.12739141, -77.25563082,  -7.07381319, ...,   8.88857378,
                       -5.59100739, -55.18273268], shape=(68661,))},
              np.float64(11.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -33.57661537, -101.09045332,  127.89058511, ...,   37.44878871,
                       -22.71124423,  111.70960441], shape=(68661,)),
               'avg_v3_A': array([-14.68197937, -78.23838942,  -6.28502768, ...,   9.49754771,
                       -5.97782524, -54.25538043], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -33.57661537, -101.09045332,  127.89058511, ...,   37.44878871,
                       -22.71124423,  111.70960441], shape=(68661,)),
               'avg_v3_B': array([-14.68197937, -78.23838942,  -6.28502768, ...,   9.49754771,
                       -5.97782524, -54.25538043], shape=(68661,))},
              np.float64(12.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -33.35613211, -102.10135943,  127.82487903, ...,   37.30912392,
                       -22.61386483,  111.20753099], shape=(68661,)),
               'avg_v3_A': array([-15.23342768, -79.21801706,  -5.49549142, ...,  10.10464813,
                       -6.36312637, -53.32469246], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -33.35613211, -102.10135943,  127.82487903, ...,   37.30912392,
                       -22.61386483,  111.20753099], shape=(68661,)),
               'avg_v3_B': array([-15.23342768, -79.21801706,  -5.49549142, ...,  10.10464813,
                       -6.36312637, -53.32469246], shape=(68661,))},
              np.float64(13.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -33.12645059, -103.31494096,  127.7677876 , ...,   37.16050588,
                       -22.51013818,  110.73263831], shape=(68661,)),
               'avg_v3_A': array([-15.78159467, -80.19357527,  -4.70529799, ...,  10.70974761,
                       -6.74680743, -52.3909204 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -33.12645059, -103.31494096,  127.7677876 , ...,   37.16050588,
                       -22.51013818,  110.73263831], shape=(68661,)),
               'avg_v3_B': array([-15.78159467, -80.19357527,  -4.70529799, ...,  10.70974761,
                       -6.74680743, -52.3909204 ], shape=(68661,))},
              np.float64(14.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -32.88751173, -104.79700482,  127.71926401, ...,   37.00287984,
                       -22.40006801,  110.28306299], shape=(68661,)),
               'avg_v3_A': array([-16.32633683, -81.16371599,  -3.91454009, ...,  11.31271729,
                       -7.12876488, -51.45429241], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -32.88751173, -104.79700482,  127.71926401, ...,   37.00287984,
                       -22.40006801,  110.28306299], shape=(68661,)),
               'avg_v3_B': array([-16.32633683, -81.16371599,  -3.91454009, ...,  11.31271729,
                       -7.12876488, -51.45429241], shape=(68661,))},
              np.float64(15.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -32.63925576, -106.6443481 ,  127.6792687 , ...,   36.83618829,
                       -22.28365856,  109.85710487], shape=(68661,)),
               'avg_v3_A': array([-16.86750875, -82.1264363 ,  -3.1233096 , ...,  11.91342678,
                       -7.50889502, -50.51501582], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -32.63925576, -106.6443481 ,  127.6792687 , ...,   36.83618829,
                       -22.28365856,  109.85710487], shape=(68661,)),
               'avg_v3_B': array([-16.86750875, -82.1264363 ,  -3.1233096 , ...,  11.91342678,
                       -7.50889502, -50.51501582], shape=(68661,))},
              np.float64(16.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -32.3816224 , -109.00455389,  127.64776932, ...,   36.660371  ,
                       -22.16091474,  109.45321047], shape=(68661,)),
               'avg_v3_A': array([-17.40496308, -83.07863899,  -2.33169775, ...,  12.51174407,
                       -7.88709399, -49.57327938], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -32.3816224 , -109.00455389,  127.64776932, ...,   36.660371  ,
                       -22.16091474,  109.45321047], shape=(68661,)),
               'avg_v3_B': array([-17.40496308, -83.07863899,  -2.33169775, ...,  12.51174407,
                       -7.88709399, -49.57327938], shape=(68661,))},
              np.float64(17.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -32.11455106, -112.11203144,  127.6247407 , ...,   36.47536519,
                       -22.03184209,  109.0699584 ], shape=(68661,)),
               'avg_v3_A': array([-17.93855049, -84.01530156,  -1.53979526, ...,  13.10753549,
                       -8.26325774, -48.62925528], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -32.11455106, -112.11203144,  127.6247407 , ...,   36.47536519,
                       -22.03184209,  109.0699584 ], shape=(68661,)),
               'avg_v3_B': array([-17.93855049, -84.01530156,  -1.53979526, ...,  13.10753549,
                       -8.26325774, -48.62925528], shape=(68661,))},
              np.float64(18.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -31.83798113, -116.35617245,  127.6101648 , ...,   36.28110558,
                       -21.89644693,  108.70604636], shape=(68661,)),
               'avg_v3_A': array([-18.46811962, -84.9278074 ,  -0.74769242, ...,  13.70066554,
                       -8.63728208, -47.6831009 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -31.83798113, -116.35617245,  127.6101648 , ...,   36.28110558,
                       -21.89644693,  108.70604636], shape=(68661,)),
               'avg_v3_B': array([-18.46811962, -84.9278074 ,  -0.74769242, ...,  13.70066554,
                       -8.63728208, -47.6831009 ], shape=(68661,))},
              np.float64(19.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -31.55185216, -122.41235076,  127.60403071, ...,   36.07752457,
                       -21.75473636,  108.36027954], shape=(68661,)),
               'avg_v3_A': array([-1.89935170e+01, -8.58003802e+01,  4.45207048e-02, ...,
                       1.42909969e+01, -9.00906263e+00, -4.67349603e+01], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -31.55185216, -122.41235076,  127.60403071, ...,   36.07752457,
                       -21.75473636,  108.36027954], shape=(68661,)),
               'avg_v3_B': array([-1.89935170e+01, -8.58003802e+01,  4.45207048e-02, ...,
                       1.42909969e+01, -9.00906263e+00, -4.67349603e+01], shape=(68661,))},
              np.float64(20.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -31.25610417, -131.4763049 ,  127.60633463, ...,   35.86455231,
                       -21.60671837,  108.03156036], shape=(68661,)),
               'avg_v3_A': array([-19.51458726, -86.6021153 ,   0.83675423, ...,  14.87839035,
                       -9.37849485, -45.78496573], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -31.25610417, -131.4763049 ,  127.60633463, ...,   35.86455231,
                       -21.60671837,  108.03156036], shape=(68661,)),
               'avg_v3_B': array([-19.51458726, -86.6021153 ,   0.83675423, ...,  14.87839035,
                       -9.37849485, -45.78496573], shape=(68661,))},
              np.float64(21.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -30.95067789, -145.50350037,  127.61707988, ...,   35.6421169 ,
                       -21.45240188,  107.71887926], shape=(68661,)),
               'avg_v3_A': array([-20.03117266, -87.26987579,   1.62891827, ...,  15.46270455,
                       -9.74547406, -44.83323856], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -30.95067789, -145.50350037,  127.61707988, ...,   35.6421169 ,
                       -21.45240188,  107.71887926], shape=(68661,)),
               'avg_v3_B': array([-20.03117266, -87.26987579,   1.62891827, ...,  15.46270455,
                       -9.74547406, -44.83323856], shape=(68661,))},
              np.float64(22.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -30.63551509, -166.34347662,  127.63627687, ...,   35.41014449,
                       -21.29179684,  107.42130649], shape=(68661,)),
               'avg_v3_A': array([-20.54311347, -87.68468685,   2.42092282, ...,  16.04379617,
                      -10.1098954 , -43.87989063], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -30.63551509, -166.34347662,  127.63627687, ...,   35.41014449,
                       -21.29179684,  107.42130649], shape=(68661,)),
               'avg_v3_B': array([-20.54311347, -87.68468685,   2.42092282, ...,  16.04379617,
                      -10.1098954 , -43.87989063], shape=(68661,))},
              np.float64(23.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-30.31055883, 168.61747534, 127.66394318, ...,  35.1685595 ,
                      -21.12491427, 107.13798478], shape=(68661,)),
               'avg_v3_A': array([-21.05024782, -87.70502405,   3.21267764, ...,  16.62151967,
                      -10.47165391, -42.925025  ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-30.31055883, 168.61747534, 127.66394318, ...,  35.1685595 ,
                      -21.12491427, 107.13798478], shape=(68661,)),
               'avg_v3_B': array([-21.05024782, -87.70502405,   3.21267764, ...,  16.62151967,
                      -10.47165391, -42.925025  ], shape=(68661,))},
              np.float64(24.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-29.97575386, 147.15526169, 127.7001035 , ...,  34.91728476,
                      -20.9517664 , 106.86812282], shape=(68661,)),
               'avg_v3_A': array([-21.55241164, -87.32188277,   4.00409213, ...,  17.19572729,
                      -10.83064445, -41.96873686], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-29.97575386, 147.15526169, 127.7001035 , ...,  34.91728476,
                      -20.9517664 , 106.86812282], shape=(68661,)),
               'avg_v3_B': array([-21.55241164, -87.32188277,   4.00409213, ...,  17.19572729,
                      -10.83064445, -41.96873686], shape=(68661,))},
              np.float64(25.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-29.63104691, 132.54345677, 127.74478973, ...,  34.65624174,
                      -20.77236667, 106.61098933], shape=(68661,)),
               'avg_v3_A': array([-22.04943873, -86.67180734,   4.79507518, ...,  17.76626896,
                      -11.1867618 , -41.01111427], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-29.63104691, 132.54345677, 127.74478973, ...,  34.65624174,
                      -20.77236667, 106.61098933], shape=(68661,)),
               'avg_v3_B': array([-22.04943873, -86.67180734,   4.79507518, ...,  17.76626896,
                      -11.1867618 , -41.01111427], shape=(68661,))},
              np.float64(26.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-29.27638708, 123.10907113, 127.79804098, ...,  34.38535075,
                      -20.58672991, 106.36590781], shape=(68661,)),
               'avg_v3_A': array([-22.54116075, -85.87925116,   5.58553506, ...,  18.33299224,
                      -11.53990062, -40.05223881], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-29.27638708, 123.10907113, 127.79804098, ...,  34.38535075,
                      -20.58672991, 106.36590781], shape=(68661,)),
               'avg_v3_B': array([-22.54116075, -85.87925116,   5.58553506, ...,  18.33299224,
                      -11.53990062, -40.05223881], shape=(68661,))},
              np.float64(27.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-28.91172619, 116.83215947, 127.85990362, ...,  34.10453114,
                      -20.39487232, 106.1322518 ], shape=(68661,)),
               'avg_v3_A': array([-23.02740723, -85.01167136,   6.37537928, ...,  18.89574228,
                      -11.8899555 , -39.09218619], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-28.91172619, 116.83215947, 127.85990362, ...,  34.10453114,
                      -20.39487232, 106.1322518 ], shape=(68661,)),
               'avg_v3_B': array([-23.02740723, -85.01167136,   6.37537928, ...,  18.89574228,
                      -11.8899555 , -39.09218619], shape=(68661,))},
              np.float64(28.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-28.53701921, 112.45274977, 127.93043135, ...,  33.8137016 ,
                      -20.19681165, 105.90944062], shape=(68661,)),
               'avg_v3_A': array([-23.5080056 , -84.10208344,   7.16451444, ...,  19.45436172,
                      -12.23682095, -38.13102676], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-28.53701921, 112.45274977, 127.93043135, ...,  33.8137016 ,
                      -20.19681165, 105.90944062], shape=(68661,)),
               'avg_v3_B': array([-23.5080056 , -84.10208344,   7.16451444, ...,  19.45436172,
                      -12.23682095, -38.13102676], shape=(68661,))},
              np.float64(29.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-28.15222465, 109.25843079, 128.00968526, ...,  33.51278038,
                      -19.99256725, 105.69693554], shape=(68661,)),
               'avg_v3_A': array([-23.98278122, -83.16724348,   7.95284614, ...,  20.00869067,
                      -12.58039143, -37.16882601], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-28.15222465, 109.25843079, 128.00968526, ...,  33.51278038,
                      -19.99256725, 105.69693554], shape=(68661,)),
               'avg_v3_B': array([-23.98278122, -83.16724348,   7.95284614, ...,  20.00869067,
                      -12.58039143, -37.16882601], shape=(68661,))},
              np.float64(30.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-27.75730503, 106.83987432, 128.09773387, ...,  33.2016856 ,
                      -19.78216016, 105.49423629], shape=(68661,)),
               'avg_v3_A': array([-24.45155743, -82.21624466,   8.7402788 , ...,  20.55856664,
                      -12.92056139, -36.20564498], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-27.75730503, 106.83987432, 128.09773387, ...,  33.2016856 ,
                      -19.78216016, 105.49423629], shape=(68661,)),
               'avg_v3_B': array([-24.45155743, -82.21624466,   8.7402788 , ...,  20.55856664,
                      -12.92056139, -36.20564498], shape=(68661,))},
              np.float64(31.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-27.35222728, 104.95172163, 128.19465326, ...,  32.88033553,
                      -19.56561321, 105.30087797], shape=(68661,)),
               'avg_v3_A': array([-24.91415559, -81.25435679,   9.52671554, ...,  21.10382451,
                      -13.25722529, -35.24154065], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-27.35222728, 104.95172163, 128.19465326, ...,  32.88033553,
                      -19.56561321, 105.30087797], shape=(68661,)),
               'avg_v3_B': array([-24.91415559, -81.25435679,   9.52671554, ...,  21.10382451,
                      -13.25722529, -35.24154065], shape=(68661,))},
              np.float64(32.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-26.93696321, 103.44012449, 128.30052712, ...,  32.54864894,
                      -19.34295112, 105.11642822], shape=(68661,)),
               'avg_v3_A': array([-25.37039519, -80.28481375,  10.31205801, ...,  21.6442965 ,
                      -13.59027762, -34.27656628], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-26.93696321, 103.44012449, 128.30052712, ...,  32.54864894,
                      -19.34295112, 105.11642822], shape=(68661,)),
               'avg_v3_B': array([-25.37039519, -80.28481375,  10.31205801, ...,  21.6442965 ,
                      -13.59027762, -34.27656628], shape=(68661,))},
              np.float64(33.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-26.51149006, 102.20454179, 128.41544684, ...,  32.20654542,
                      -19.11420058, 104.94048461], shape=(68661,)),
               'avg_v3_A': array([-25.82009388, -79.30969824,  11.09620631, ...,  22.1798121 ,
                      -13.91961292, -33.31077176], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-26.51149006, 102.20454179, 128.41544684, ...,  32.20654542,
                      -19.11420058, 104.94048461], shape=(68661,)),
               'avg_v3_B': array([-25.82009388, -79.30969824,  11.09620631, ...,  22.1798121 ,
                      -13.91961292, -33.31077176], shape=(68661,))},
              np.float64(34.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-26.07579091, 101.17683663, 128.53951162, ...,  31.85394577,
                      -18.8793904 , 104.77267242], shape=(68661,)),
               'avg_v3_A': array([-26.26306755, -78.33040717,  11.87905875, ...,  22.7101981 ,
                      -14.24512584, -32.34420384], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-26.07579091, 101.17683663, 128.53951162, ...,  31.85394577,
                      -18.8793904 , 104.77267242], shape=(68661,)),
               'avg_v3_B': array([-26.26306755, -78.33040717,  11.87905875, ...,  22.7101981 ,
                      -14.24512584, -32.34420384], shape=(68661,))},
              np.float64(35.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-25.62985524, 100.30935249, 128.6728286 , ...,  31.49077237,
                      -18.63855152, 104.61264245], shape=(68661,)),
               'avg_v3_A': array([-26.69913051, -77.34791018,  12.66051179, ...,  23.23527852,
                      -14.56671118, -31.37690642], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-25.62985524, 100.30935249, 128.6728286 , ...,  31.49077237,
                      -18.63855152, 104.61264245], shape=(68661,)),
               'avg_v3_B': array([-26.69913051, -77.34791018,  12.66051179, ...,  23.23527852,
                      -14.56671118, -31.37690642], shape=(68661,))},
              np.float64(36.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-25.17367946,  99.5678333 , 128.81551293, ...,  31.11694959,
                      -18.39171719, 104.46006915], shape=(68661,)),
               'avg_v3_A': array([-27.12809552, -76.36290025,  13.44045979, ...,  23.75487465,
                      -14.88426388, -30.40892079], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-25.17367946,  99.5678333 , 128.81551293, ...,  31.11694959,
                      -18.39171719, 104.46006915], shape=(68661,)),
               'avg_v3_B': array([-27.12809552, -76.36290025,  13.44045979, ...,  23.75487465,
                      -14.88426388, -30.40892079], shape=(68661,))},
              np.float64(37.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-24.7072674 ,  98.92706279, 128.9676879 , ...,  30.73240428,
                      -18.13892305, 104.31464888], shape=(68661,)),
               'avg_v3_A': array([-27.54977396, -75.37588524,  14.21879494, ...,  24.26880501,
                      -15.19767912, -29.4402858 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-24.7072674 ,  98.92706279, 128.9676879 , ...,  30.73240428,
                      -18.13892305, 104.31464888], shape=(68661,)),
               'avg_v3_B': array([-27.54977396, -75.37588524,  14.21879494, ...,  24.26880501,
                      -15.19767912, -29.4402858 ], shape=(68661,))},
              np.float64(38.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-24.2306309 ,  98.36808911, 129.12948508, ...,  30.33706614,
                      -17.8802072 , 104.17609836], shape=(68661,)),
               'avg_v3_A': array([-27.96397599, -74.38724552,  14.99540701, ...,  24.77688538,
                      -15.50685235, -28.47103811], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-24.2306309 ,  98.36808911, 129.12948508, ...,  30.33706614,
                      -17.8802072 , 104.17609836], shape=(68661,)),
               'avg_v3_B': array([-27.96397599, -74.38724552,  14.99540701, ...,  24.77688538,
                      -15.50685235, -28.47103811], shape=(68661,))},
              np.float64(39.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-23.74379036,  97.87640572, 129.30104443, ...,  29.93086831,
                      -17.61561032, 104.04415317], shape=(68661,)),
               'avg_v3_A': array([-28.37051068, -73.39727141,  15.77018326, ...,  25.27892881,
                      -15.81167929, -27.50121233], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-23.74379036,  97.87640572, 129.30104443, ...,  29.93086831,
                      -17.61561032, 104.04415317], shape=(68661,)),
               'avg_v3_B': array([-28.37051068, -73.39727141,  15.77018326, ...,  25.27892881,
                      -15.81167929, -27.50121233], shape=(68661,))},
              np.float64(40.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-23.24677526,  97.44072763, 129.48251446, ...,  29.51374781,
                      -17.34517578, 103.91856649], shape=(68661,)),
               'avg_v3_A': array([-28.76918618, -72.40618825,  16.54300819, ...,  25.77474567,
                      -16.11205605, -26.53084118], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-23.24677526,  97.44072763, 129.48251446, ...,  29.51374781,
                      -17.34517578, 103.91856649], shape=(68661,)),
               'avg_v3_B': array([-28.76918618, -72.40618825,  16.54300819, ...,  25.77474567,
                      -16.11205605, -26.53084118], shape=(68661,))},
              np.float64(41.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-22.73962475,  97.05214873, 129.67405232, ...,  29.08564608,
                      -17.06894972, 103.79910791], shape=(68661,)),
               'avg_v3_A': array([-29.15980995, -71.41417355,  17.3137634 , ...,  26.26414368,
                      -16.40787913, -25.55995565], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-22.73962475,  97.05214873, 129.67405232, ...,  29.08564608,
                      -17.06894972, 103.79910791], shape=(68661,)),
               'avg_v3_B': array([-29.15980995, -71.41417355,  17.3137634 , ...,  26.26414368,
                      -16.40787913, -25.55995565], shape=(68661,))},
              np.float64(42.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-22.22238821,  96.70354918, 129.87582396, ...,  28.64650958,
                      -16.78698115, 103.68556229], shape=(68661,)),
               'avg_v3_A': array([-29.54218894, -70.42136901,  18.0823274 , ...,  26.74692796,
                      -16.69904552, -24.58858513], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-22.22238821,  96.70354918, 129.87582396, ...,  28.64650958,
                      -16.78698115, 103.68556229], shape=(68661,)),
               'avg_v3_B': array([-29.54218894, -70.42136901,  18.0823274 , ...,  26.74692796,
                      -16.69904552, -24.58858513], shape=(68661,))},
              np.float64(43.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-21.69512579,  96.38917082, 130.08800429, ...,  28.19629037,
                      -16.49932205, 103.57772882], shape=(68661,)),
               'avg_v3_A': array([-29.91612979, -69.42788908,  18.84857542, ...,  27.22290112,
                      -16.9854527 , -23.61675754], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-21.69512579,  96.38917082, 130.08800429, ...,  28.19629037,
                      -16.49932205, 103.57772882], shape=(68661,)),
               'avg_v3_B': array([-29.91612979, -69.42788908,  18.84857542, ...,  27.22290112,
                      -16.9854527 , -23.61675754], shape=(68661,))},
              np.float64(44.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-21.15790896,  96.1043078 , 130.31077727, ...,  27.73494665,
                      -16.20602748, 103.47542007], shape=(68661,)),
               'avg_v3_A': array([-30.28143912, -68.43382719,  19.61237918, ...,  27.69186334,
                      -17.26699876, -22.64449943], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-21.15790896,  96.1043078 , 130.31077727, ...,  27.73494665,
                      -16.20602748, 103.47542007], shape=(68661,)),
               'avg_v3_B': array([-30.28143912, -68.43382719,  19.61237918, ...,  27.69186334,
                      -17.26699876, -22.64449943], shape=(68661,))},
              np.float64(45.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-20.61082108,  95.8450775 , 130.54433608, ...,  27.26244351,
                      -15.90715562, 103.37846119], shape=(68661,)),
               'avg_v3_A': array([-30.63792377, -67.43926035,  20.37360671, ...,  28.15361243,
                      -17.54358242, -21.6718361 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-20.61082108,  95.8450775 , 130.54433608, ...,  27.26244351,
                      -15.90715562, 103.37846119], shape=(68661,)),
               'avg_v3_B': array([-30.63792377, -67.43926035,  20.37360671, ...,  28.15361243,
                      -17.54358242, -21.6718361 ], shape=(68661,))},
              np.float64(46.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-20.05395785,  95.60824867, 130.78888325, ...,  26.77875347,
                      -15.60276791, 103.28668911], shape=(68661,)),
               'avg_v3_A': array([-30.98539103, -66.44425264,  21.13212215, ...,  28.60794402,
                      -17.81510313, -20.69879168], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-20.05395785,  95.60824867, 130.78888325, ...,  26.77875347,
                      -15.60276791, 103.28668911], shape=(68661,)),
               'avg_v3_B': array([-30.98539103, -66.44425264,  21.13212215, ...,  28.60794402,
                      -17.81510313, -20.69879168], shape=(68661,))},
              np.float64(47.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-19.48742791,  95.3911108 , 131.04463078, ...,  26.2838572 ,
                      -15.2929291 , 103.19995188], shape=(68661,)),
               'avg_v3_A': array([-31.32364899, -65.44885775,  21.88778548, ...,  29.05465164,
                      -18.08146111, -19.72538926], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-19.48742791,  95.3911108 , 131.04463078, ...,  26.2838572 ,
                      -15.2929291 , 103.19995188], shape=(68661,)),
               'avg_v3_B': array([-31.32364899, -65.44885775,  21.88778548, ...,  29.05465164,
                      -18.08146111, -19.72538926], shape=(68661,))},
              np.float64(48.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-18.91135324,  95.19137354, 131.31180025, ...,  25.77774424,
                      -14.97770736, 103.11810802], shape=(68661,)),
               'avg_v3_A': array([-31.65250679, -64.45312104,  22.64045236, ...,  29.49352689,
                      -18.34255744, -18.75165089], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-18.91135324,  95.19137354, 131.31180025, ...,  25.77774424,
                      -14.97770736, 103.11810802], shape=(68661,)),
               'avg_v3_B': array([-31.65250679, -64.45312104,  22.64045236, ...,  29.49352689,
                      -18.34255744, -18.75165089], shape=(68661,))},
              np.float64(49.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-18.32586965,  95.00708864, 131.59062296, ...,  25.26041364,
                      -14.65717431, 103.04102594], shape=(68661,)),
               'avg_v3_A': array([-31.97177499, -63.45708108,  23.38997383, ...,  29.92435959,
                      -18.59829412, -17.77759776], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-18.32586965,  95.00708864, 131.59062296, ...,  25.26041364,
                      -14.65717431, 103.04102594], shape=(68661,)),
               'avg_v3_B': array([-31.97177499, -63.45708108,  23.38997383, ...,  29.92435959,
                      -18.59829412, -17.77759776], shape=(68661,))},
              np.float64(50.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-17.73112719,  94.83658851, 131.88134001, ...,  24.73187473,
                      -14.33140516, 102.96858341], shape=(68661,)),
               'avg_v3_A': array([-32.28126586, -62.46077088,  24.1361961 , ...,  30.34693801,
                      -18.84857418, -16.80325019], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-17.73112719,  94.83658851, 131.88134001, ...,  24.73187473,
                      -14.33140516, 102.96858341], shape=(68661,)),
               'avg_v3_B': array([-32.28126586, -62.46077088,  24.1361961 , ...,  30.34693801,
                      -18.84857418, -16.80325019], shape=(68661,))},
              np.float64(51.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-17.12729054,  94.67843761, 132.18420236, ...,  24.1921478 ,
                      -14.00047869, 102.90066706], shape=(68661,)),
               'avg_v3_A': array([-32.58079375, -61.46421885,  24.8789603 , ...,  30.76104904,
                      -19.09330169, -15.82862775], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-17.12729054,  94.67843761, 132.18420236, ...,  24.1921478 ,
                      -14.00047869, 102.90066706], shape=(68661,)),
               'avg_v3_B': array([-32.58079375, -61.46421885,  24.8789603 , ...,  30.76104904,
                      -19.09330169, -15.82862775], shape=(68661,))},
              np.float64(52.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-16.51453934,  94.53139356, 132.49947097, ...,  23.6412649 ,
                      -13.66447739, 102.83717195], shape=(68661,)),
               'avg_v3_A': array([-32.87017543, -60.46744956,  25.61810223, ...,  31.16647844,
                      -19.33238193, -14.85374927], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-16.51453934,  94.53139356, 132.49947097, ...,  23.6412649 ,
                      -13.66447739, 102.83717195], shape=(68661,)),
               'avg_v3_B': array([-32.87017543, -60.46744956,  25.61810223, ...,  31.16647844,
                      -19.33238193, -14.85374927], shape=(68661,))},
              np.float64(53.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-15.89306848,  94.3943758 , 132.82741678, ...,  23.0792705 ,
                      -13.32348747, 102.77800116], shape=(68661,)),
               'avg_v3_A': array([-33.14923051, -59.47048441,  26.35345206, ...,  31.5630111 ,
                      -19.56572138, -13.87863296], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-15.89306848,  94.3943758 , 132.82741678, ...,  23.0792705 ,
                      -13.32348747, 102.77800116], shape=(68661,)),
               'avg_v3_B': array([-33.14923051, -59.47048441,  26.35345206, ...,  31.5630111 ,
                      -19.56572138, -13.87863296], shape=(68661,))},
              np.float64(54.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-15.26308834,  94.26644017, 133.16832073, ...,  22.50622227,
                      -12.97759891, 102.72306545], shape=(68661,)),
               'avg_v3_A': array([-33.41778177, -58.47334209,  27.08483408, ...,  31.95043128,
                      -19.79322788, -12.9032964 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-15.26308834,  94.26644017, 133.16832073, ...,  22.50622227,
                      -12.97759891, 102.72306545], shape=(68661,)),
               'avg_v3_B': array([-33.41778177, -58.47334209,  27.08483408, ...,  31.95043128,
                      -19.79322788, -12.9032964 ], shape=(68661,))},
              np.float64(55.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-14.62482498,  94.14675812, 133.52247381, ...,  21.9221918 ,
                      -12.62690553, 102.67228287], shape=(68661,)),
               'avg_v3_A': array([-33.67565558, -57.47603899,  27.81206644, ...,  32.32852293,
                      -20.01481068, -11.92775667], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-14.62482498,  94.14675812, 133.52247381, ...,  21.9221918 ,
                      -12.62690553, 102.67228287], shape=(68661,)),
               'avg_v3_B': array([-33.67565558, -57.47603899,  27.81206644, ...,  32.32852293,
                      -20.01481068, -11.92775667], shape=(68661,))},
              np.float64(56.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-13.97852024,  94.0345996 , 133.89017693, ...,  21.32726529,
                      -12.27150498, 102.62557851], shape=(68661,)),
               'avg_v3_A': array([-33.92268228, -56.47858958,  28.53496082, ...,  32.69707002,
                      -20.23038053, -10.9520303 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-13.97852024,  94.0345996 , 133.89017693, ...,  21.32726529,
                      -12.27150498, 102.62557851], shape=(68661,)),
               'avg_v3_B': array([-33.92268228, -56.47858958,  28.53496082, ...,  32.69707002,
                      -20.23038053, -10.9520303 ], shape=(68661,))},
              np.float64(57.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-13.3244318 ,  93.9293189 , 134.27174093, ...,  20.72154429,
                      -11.91149879, 102.58288419], shape=(68661,)),
               'avg_v3_A': array([-34.15869663, -55.48100664,  29.25332215, ...,  33.05585684,
                      -20.43984978,  -9.97613341], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-13.3244318 ,  93.9293189 , 134.27174093, ...,  20.72154429,
                      -11.91149879, 102.58288419], shape=(68661,)),
               'avg_v3_B': array([-34.15869663, -55.48100664,  29.25332215, ...,  33.05585684,
                      -20.43984978,  -9.97613341], shape=(68661,))},
              np.float64(58.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-12.66283316,  93.83034287, 134.66748634, ...,  20.10514631,
                      -11.5469924 , 102.54413823], shape=(68661,)),
               'avg_v3_A': array([-34.38353816, -54.48330155,  29.96694832, ...,  33.40466838,
                      -20.64313245,  -9.00008169], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-12.66283316,  93.83034287, 134.66748634, ...,  20.10514631,
                      -11.5469924 , 102.54413823], shape=(68661,)),
               'avg_v3_B': array([-34.38353816, -54.48330155,  29.96694832, ...,  33.40466838,
                      -20.64313245,  -9.00008169], shape=(68661,))},
              np.float64(59.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-11.99401355,  93.73716106, 135.0777433 , ...,  19.47820552,
                      -11.17809513, 102.50928524], shape=(68661,)),
               'avg_v3_A': array([-34.59705162, -53.48548443,  30.67562987, ...,  33.74329071,
                      -20.84014434,  -8.02389048], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-11.99401355,  93.73716106, 135.0777433 , ...,  19.47820552,
                      -11.17809513, 102.50928524], shape=(68661,)),
               'avg_v3_B': array([-34.59705162, -53.48548443,  30.67562987, ...,  33.74329071,
                      -20.84014434,  -8.02389048], shape=(68661,))},
              np.float64(60.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-11.31827774,  93.64931739, 135.50285124, ...,  18.84087329,
                      -10.80492023, 102.4782759 ], shape=(68661,)),
               'avg_v3_A': array([-34.7990874 , -52.48756433,  31.37914968, ...,  34.0715114 ,
                      -21.03080312,  -7.04757477], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-11.31827774,  93.64931739, 135.50285124, ...,  18.84087329,
                      -10.80492023, 102.4782759 ], shape=(68661,)),
               'avg_v3_B': array([-34.7990874 , -52.48756433,  31.37914968, ...,  34.0715114 ,
                      -21.03080312,  -7.04757477], shape=(68661,))},
              np.float64(61.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-10.6359458 ,  93.5664032 , 135.94315859, ...,  18.19331883,
                      -10.42758481, 102.45106681], shape=(68661,)),
               'avg_v3_A': array([-34.9895019 , -51.48954936,  32.07728264, ...,  34.3891199 ,
                      -21.21502842,  -6.07114929], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-10.6359458 ,  93.5664032 , 135.94315859, ...,  18.19331883,
                      -10.42758481, 102.45106681], shape=(68661,)),
               'avg_v3_B': array([-34.9895019 , -51.48954936,  32.07728264, ...,  34.3891199 ,
                      -21.21502842,  -6.07114929], shape=(68661,))},
              np.float64(62.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -9.94735277,  93.48805122, 136.39902238, ...,  17.53572961,
                      -10.04620988, 102.42762031], shape=(68661,)),
               'avg_v3_A': array([-35.16815796, -50.49144685,  32.76979535, ...,  34.695908  ,
                      -21.3927419 ,  -5.0946285 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -9.94735277,  93.48805122, 136.39902238, ...,  17.53572961,
                      -10.04620988, 102.42762031], shape=(68661,)),
               'avg_v3_B': array([-35.16815796, -50.49144685,  32.76979535, ...,  34.695908  ,
                      -21.3927419 ,  -5.0946285 ], shape=(68661,))},
              np.float64(63.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -9.25284822,  93.41393053, 136.87080781, ...,  16.86831186,
                       -9.66092027, 102.40790441], shape=(68661,)),
               'avg_v3_A': array([-35.33492525, -49.49326337,  33.45644577, ...,  34.99167031,
                      -21.56386738,  -4.11802664], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -9.25284822,  93.41393053, 136.87080781, ...,  16.86831186,
                       -9.66092027, 102.40790441], shape=(68661,)),
               'avg_v3_B': array([-35.33492525, -49.49326337,  33.45644577, ...,  34.99167031,
                      -21.56386738,  -4.11802664], shape=(68661,))},
              np.float64(64.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -8.55279575,  93.34374222, 137.35888759, ...,  16.19129094,
                       -9.27184463, 102.39189259], shape=(68661,)),
               'avg_v3_A': array([-35.48968068, -48.49500489,  34.13698297, ...,  35.27620471,
                      -21.72833091,  -3.1413578 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -8.55279575,  93.34374222, 137.35888759, ...,  16.19129094,
                       -9.27184463, 102.39189259], shape=(68661,)),
               'avg_v3_B': array([-35.48968068, -48.49500489,  34.13698297, ...,  35.27620471,
                      -21.72833091,  -3.1413578 ], shape=(68661,))},
              np.float64(65.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -7.84757241,  93.27721563, 137.86364132, ...,  15.50491164,
                       -8.87911536, 102.3795638 ], shape=(68661,)),
               'avg_v3_A': array([-35.63230871, -47.49667682,  34.81114674, ...,  35.54931282,
                      -21.88606087,  -2.16463588], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -7.84757241,  93.27721563, 137.86364132, ...,  15.50491164,
                       -8.87911536, 102.3795638 ], shape=(68661,)),
               'avg_v3_B': array([-35.63230871, -47.49667682,  34.81114674, ...,  35.54931282,
                      -21.88606087,  -2.16463588], shape=(68661,))},
              np.float64(66.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -7.13756803,  93.21410512, 138.38545468, ...,  14.8094384 ,
                       -8.48286853, 102.37090233], shape=(68661,)),
               'avg_v3_A': array([-35.76270178, -46.49828406,  35.47866731, ...,  35.81080054,
                      -22.03698805,  -1.18787469], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -7.13756803,  93.21410512, 138.38545468, ...,  14.8094384 ,
                       -8.48286853, 102.37090233], shape=(68661,)),
               'avg_v3_B': array([-35.76270178, -46.49828406,  35.47866731, ...,  35.81080054,
                      -22.03698805,  -1.18787469], shape=(68661,))},
              np.float64(67.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -6.42318445,  93.1541873 , 138.92471848, ...,  14.10515547,
                       -8.08324386, 102.36589779], shape=(68661,)),
               'avg_v3_A': array([-35.88076061, -45.4998311 ,  36.13926507, ...,  36.06047854,
                      -22.18104574,  -0.21108794], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -6.42318445,  93.1541873 , 138.92471848, ...,  14.10515547,
                       -8.08324386, 102.36589779], shape=(68661,)),
               'avg_v3_B': array([-35.88076061, -45.4998311 ,  36.13926507, ...,  36.06047854,
                      -22.18104574,  -0.21108794], shape=(68661,))},
              np.float64(68.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -5.70483468,  93.09725858, 139.48182758, ...,  13.39236693,
                       -7.68038458, 102.36454504], shape=(68661,)),
               'avg_v3_A': array([-35.98639452, -44.50132203,  36.79265023, ...,  36.29816276,
                      -22.31816982,   0.76571068], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -5.70483468,  93.09725858, 139.48182758, ...,  13.39236693,
                       -7.68038458, 102.36454504], shape=(68661,)),
               'avg_v3_B': array([-35.98639452, -44.50132203,  36.79265023, ...,  36.29816276,
                      -22.31816982,   0.76571068], shape=(68661,))},
              np.float64(69.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -4.98294202,  93.04313307, 140.05717968, ...,  12.67139663,
                       -7.27443738, 102.36684424], shape=(68661,)),
               'avg_v3_A': array([-36.07952174, -43.50276058,  37.4385226 , ...,  36.52367496,
                      -22.44829887,   1.74250754], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -4.98294202,  93.04313307, 140.05717968, ...,  12.67139663,
                       -7.27443738, 102.36684424], shape=(68661,)),
               'avg_v3_B': array([-36.07952174, -43.50276058,  37.4385226 , ...,  36.52367496,
                      -22.44829887,   1.74250754], shape=(68661,))},
              np.float64(70.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -4.25793907,  92.99164075, 140.65117389, ...,  11.94258805,
                       -6.86555229, 102.37280077], shape=(68661,)),
               'avg_v3_A': array([-36.16006968, -42.5041502 ,  38.07657129, ...,  36.73684323,
                      -22.57137421,   2.71928896], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -4.25793907,  92.99164075, 140.65117389, ...,  11.94258805,
                       -6.86555229, 102.37280077], shape=(68661,)),
               'avg_v3_B': array([-36.16006968, -42.5041502 ,  38.07657129, ...,  36.73684323,
                      -22.57137421,   2.71928896], shape=(68661,))},
              np.float64(71.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -3.53026668,  92.94262581, 141.26420914, ...,  11.20630401,
                       -6.45388255, 102.38242532], shape=(68661,)),
               'avg_v3_A': array([-36.22797517, -41.50549404,  38.70647448, ...,  36.9375025 ,
                      -22.68734001,   3.69604126], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -3.53026668,  92.94262581, 141.26420914, ...,  11.20630401,
                       -6.45388255, 102.38242532], shape=(68661,)),
               'avg_v3_B': array([-36.22797517, -41.50549404,  38.70647448, ...,  36.9375025 ,
                      -22.68734001,   3.69604126], shape=(68661,))},
              np.float64(72.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -2.80037286,  92.89594524, 141.89668241, ...,  10.46292627,
                       -6.03958452, 102.39573388], shape=(68661,)),
               'avg_v3_A': array([-36.28318467, -40.50679499,  39.32789925, ...,  37.12549508,
                      -22.79614337,   4.67275063], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -2.80037286,  92.89594524, 141.89668241, ...,  10.46292627,
                       -6.03958452, 102.39573388], shape=(68661,)),
               'avg_v3_B': array([-36.28318467, -40.50679499,  39.32789925, ...,  37.12549508,
                      -22.79614337,   4.67275063], shape=(68661,))},
              np.float64(73.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -2.06871162,  92.8514676 , 142.54898668, ...,   9.71285507,
                       -5.62281751, 102.41274783], shape=(68661,)),
               'avg_v3_A': array([-36.32565445, -39.50805575,  39.94050135, ...,  37.30067115,
                      -22.89773438,   5.64940321], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -2.06871162,  92.8514676 , 142.54898668, ...,   9.71285507,
                       -5.62281751, 102.41274783], shape=(68661,)),
               'avg_v3_B': array([-36.32565445, -39.50805575,  39.94050135, ...,  37.30067115,
                      -22.89773438,   5.64940321], shape=(68661,))},
              np.float64(74.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -1.33574178,  92.80907187, 143.22150871, ...,   8.95650845,
                       -5.20374366, 102.433494  ], shape=(68661,)),
               'avg_v3_A': array([-36.35535079, -38.50927879,  40.54392513, ...,  37.46288926,
                      -22.9920662 ,   6.62598496], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -1.33574178,  92.80907187, 143.22150871, ...,   8.95650845,
                       -5.20374366, 102.433494  ], shape=(68661,)),
               'avg_v3_B': array([-36.35535079, -38.50927879,  40.54392513, ...,  37.46288926,
                      -22.9920662 ,   6.62598496], shape=(68661,))},
              np.float64(75.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -0.60192573,  92.76864651, 143.91462658, ...,   8.19432154,
                       -4.78252777, 102.45800475], shape=(68661,)),
               'avg_v3_A': array([-36.37225002, -37.51046641,  41.13780342, ...,  37.6120168 ,
                      -23.07909513,   7.60248168], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -0.60192573,  92.76864651, 143.91462658, ...,   8.19432154,
                       -4.78252777, 102.45800475], shape=(68661,)),
               'avg_v3_B': array([-36.37225002, -37.51046641,  41.13780342, ...,  37.6120168 ,
                      -23.07909513,   7.60248168], shape=(68661,))},
              np.float64(76.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 1.32271790e-01,  9.27300886e+01,  1.44628707e+02, ...,
                       7.42674572e+00, -4.35933716e+00,  1.02486318e+02], shape=(68661,)),
               'avg_v3_A': array([-36.37633865, -36.51162072,  41.72175749, ...,  37.74793049,
                      -23.15878068,   8.57887895], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 1.32271790e-01,  9.27300886e+01,  1.44628707e+02, ...,
                       7.42674572e+00, -4.35933716e+00,  1.02486318e+02], shape=(68661,)),
               'avg_v3_B': array([-36.37633865, -36.51162072,  41.72175749, ...,  37.74793049,
                      -23.15878068,   8.57887895], shape=(68661,))},
              np.float64(77.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  0.86638502,  92.69330287, 145.364102  , ...,   6.6542476 ,
                       -3.93434144, 102.51847796], shape=(68661,)),
               'avg_v3_A': array([-36.36761342, -35.51274371,  42.2953971 , ...,  37.87051678,
                      -23.23108561,   9.55516213], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  0.86638502,  92.69330287, 145.364102  , ...,   6.6542476 ,
                       -3.93434144, 102.51847796], shape=(68661,)),
               'avg_v3_B': array([-36.36761342, -35.51274371,  42.2953971 , ...,  37.87051678,
                      -23.23108561,   9.55516213], shape=(68661,))},
              np.float64(78.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  1.59994843,  92.65820141, 146.12114629, ...,   5.87730799,
                       -3.50771241, 102.55453404], shape=(68661,)),
               'avg_v3_A': array([-36.3460813 , -34.51383722,  42.85832064, ...,  37.97967228,
                      -23.29597603,  10.53131627], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  1.59994843,  92.65820141, 146.12114629, ...,   5.87730799,
                       -3.50771241, 102.55453404], shape=(68661,)),
               'avg_v3_B': array([-36.3460813 , -34.51383722,  42.85832064, ...,  37.97967228,
                      -23.29597603,  10.53131627], shape=(68661,))},
              np.float64(79.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  2.33249797,  92.62470264, 146.90015311, ...,   5.09642067,
                       -3.0796238 , 102.59454227], shape=(68661,)),
               'avg_v3_A': array([-36.31175945, -33.51490296,  43.41011522, ...,  38.07530416,
                      -23.3534214 ,  11.50732613], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  2.33249797,  92.62470264, 146.90015311, ...,   5.09642067,
                       -3.0796238 , 102.59454227], shape=(68661,)),
               'avg_v3_B': array([-36.31175945, -33.51490296,  43.41011522, ...,  38.07530416,
                      -23.3534214 ,  11.50732613], shape=(68661,))},
              np.float64(80.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  3.06357241,  92.592731  , 147.70141069, ...,   4.31209114,
                       -2.65025113, 102.63856491], shape=(68661,)),
               'avg_v3_A': array([-36.26467521, -32.51594253,  43.95035704, ...,  38.15733044,
                      -23.40339461,  12.48317609], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  3.06357241,  92.592731  , 147.70141069, ...,   4.31209114,
                       -2.65025113, 102.63856491], shape=(68661,)),
               'avg_v3_B': array([-36.26467521, -32.51594253,  43.95035704, ...,  38.15733044,
                      -23.40339461,  12.48317609], shape=(68661,))},
              np.float64(81.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  3.79271453,  92.56221634, 148.52517815, ...,   3.52483523,
                       -2.21977147, 102.68667078], shape=(68661,)),
               'avg_v3_A': array([-36.20486593, -31.51695743,  44.47861172, ...,  38.22568038,
                      -23.44587201,  13.45885015], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  3.79271453,  92.56221634, 148.52517815, ...,   3.52483523,
                       -2.21977147, 102.68667078], shape=(68661,)),
               'avg_v3_B': array([-36.20486593, -31.51695743,  44.47861172, ...,  38.22568038,
                      -23.44587201,  13.45885015], shape=(68661,))},
              np.float64(82.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  4.51947234,  92.53309356, 149.37168108, ...,   2.7351776 ,
                       -1.78836324, 102.73893549], shape=(68661,)),
               'avg_v3_A': array([-36.13237891, -30.51794906,  44.99443477, ...,  38.28029466,
                      -23.48083346,  14.43433184], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  4.51947234,  92.53309356, 149.37168108, ...,   2.7351776 ,
                       -1.78836324, 102.73893549], shape=(68661,)),
               'avg_v3_B': array([-36.13237891, -30.51794906,  44.99443477, ...,  38.28029466,
                      -23.48083346,  14.43433184], shape=(68661,))},
              np.float64(83.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  5.2434003 ,  92.50530213, 150.24110698, ...,   1.94365031,
                       -1.35620599, 102.7954418 ], shape=(68661,)),
               'avg_v3_A': array([-36.04727119, -29.51891874,  45.49737223, ...,  38.32112571,
                      -23.50826234,  15.40960423], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  5.2434003 ,  92.50530213, 150.24110698, ...,   1.94365031,
                       -1.35620599, 102.7954418 ], shape=(68661,)),
               'avg_v3_B': array([-36.04727119, -29.51891874,  45.49737223, ...,  38.32112571,
                      -23.50826234,  15.40960423], shape=(68661,))},
              np.float64(84.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  5.96406043,  92.47878578, 151.13360041, ...,   1.15079113,
                       -0.92348024, 102.85627983], shape=(68661,)),
               'avg_v3_A': array([-35.94960939, -28.51986769,  45.98696136, ...,  38.34813781,
                      -23.5281456 ,  16.38464983], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  5.96406043,  92.47878578, 151.13360041, ...,   1.15079113,
                       -0.92348024, 102.85627983], shape=(68661,)),
               'avg_v3_B': array([-35.94960939, -28.51986769,  45.98696136, ...,  38.34813781,
                      -23.5281456 ,  16.38464983], shape=(68661,))},
              np.float64(85.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  6.68102337,  92.45349216, 152.04925798, ...,   0.35714197,
                       -0.49036716, 102.92154748], shape=(68661,)),
               'avg_v3_A': array([-35.83946944, -27.52079709,  46.46273156, ...,  38.36130728,
                      -23.54047376,  17.35945057], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  6.68102337,  92.45349216, 152.04925798, ...,   0.35714197,
                       -0.49036716, 102.92154748], shape=(68661,)),
               'avg_v3_B': array([-35.83946944, -27.52079709,  46.46273156, ...,  38.36130728,
                      -23.54047376,  17.35945057], shape=(68661,))},
              np.float64(86.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 7.39386944e+00,  9.24293725e+01,  1.52988123e+02, ...,
                      -4.36752828e-01, -5.70484412e-02,  1.02991351e+02], shape=(68661,)),
               'avg_v3_A': array([-35.71693637, -26.52170802,  46.92420534, ...,  38.36062255,
                      -23.54524095,  18.33398773], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 7.39386944e+00,  9.24293725e+01,  1.52988123e+02, ...,
                      -4.36752828e-01, -5.70484412e-02,  1.02991351e+02], shape=(68661,)),
               'avg_v3_B': array([-35.71693637, -26.52170802,  46.92420534, ...,  38.36062255,
                      -23.54524095,  18.33398773], shape=(68661,))},
              np.float64(87.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  8.10218955,  92.40638153, 153.95018113, ...,  -1.23034813,
                        0.376294  , 103.06580431], shape=(68661,)),
               'avg_v3_A': array([-35.582104  , -25.52260152,  47.37089954, ...,  38.34608422,
                      -23.54244489,  19.30824189], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  8.10218955,  92.40638153, 153.95018113, ...,  -1.23034813,
                        0.376294  , 103.06580431], shape=(68661,)),
               'avg_v3_B': array([-35.582104  , -25.52260152,  47.37089954, ...,  38.34608422,
                      -23.54244489,  19.30824189], shape=(68661,))},
              np.float64(88.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  8.80558613,  92.3844769 , 154.93535313, ...,  -2.02309976,
                        0.80947819, 103.14503167], shape=(68661,)),
               'avg_v3_A': array([-35.43507466, -24.52347857,  47.80232665, ...,  38.31770507,
                      -23.53208691,  20.28219286], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  8.80558613,  92.3844769 , 154.93535313, ...,  -2.02309976,
                        0.80947819, 103.14503167], shape=(68661,)),
               'avg_v3_B': array([-35.43507466, -24.52347857,  47.80232665, ...,  38.31770507,
                      -23.53208691,  20.28219286], shape=(68661,))},
              np.float64(89.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  9.5036739 ,  92.36361927, 155.94349152, ...,  -2.81446613,
                        1.24232238, 103.22916596], shape=(68661,)),
               'avg_v3_A': array([-35.27595883, -23.5243401 ,  48.21799631, ...,  38.27550996,
                      -23.51417196,  21.25581964], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  9.5036739 ,  92.36361927, 155.94349152, ...,  -2.81446613,
                        1.24232238, 103.22916596], shape=(68661,)),
               'avg_v3_B': array([-35.27595883, -23.5243401 ,  48.21799631, ...,  38.27550996,
                      -23.51417196,  21.25581964], shape=(68661,))},
              np.float64(90.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 10.19608059,  92.34377197, 156.97437441, ...,  -3.60390997,
                        1.67464522, 103.31835034], shape=(68661,)),
               'avg_v3_A': array([-35.10487482, -22.52518696,  48.61741698, ...,  38.21953579,
                      -23.48870857,  22.22910029], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 10.19608059,  92.34377197, 156.97437441, ...,  -3.60390997,
                        1.67464522, 103.31835034], shape=(68661,)),
               'avg_v3_B': array([-35.10487482, -22.52518696,  48.61741698, ...,  38.21953579,
                      -23.48870857,  22.22910029], shape=(68661,))},
              np.float64(91.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 10.88244761,  92.32490086, 158.02770074, ...,  -4.39089989,
                        2.10626602, 103.41273862], shape=(68661,)),
               'avg_v3_A': array([-34.92194838, -21.52602001,  49.00009784, ...,  38.14983132,
                      -23.45570887,  23.20201191], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 10.88244761,  92.32490086, 158.02770074, ...,  -4.39089989,
                        2.10626602, 103.41273862], shape=(68661,)),
               'avg_v3_B': array([-34.92194838, -21.52602001,  49.00009784, ...,  38.14983132,
                      -23.45570887,  23.20201191], shape=(68661,))},
              np.float64(92.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 11.5624306 ,  92.30697415, 159.10308555, ...,  -5.17491203,
                        2.53700494, 103.51249595], shape=(68661,)),
               'avg_v3_A': array([-34.72731238, -20.52684003,  49.36555072, ...,  38.06645698,
                      -23.41518855,  24.17453053], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 11.5624306 ,  92.30697415, 159.10308555, ...,  -5.17491203,
                        2.53700494, 103.51249595], shape=(68661,)),
               'avg_v3_B': array([-34.72731238, -20.52684003,  49.36555072, ...,  38.06645698,
                      -23.41518855,  24.17453053], shape=(68661,))},
              np.float64(93.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 12.2356999 ,  92.28996223, 160.20005578, ...,  -5.95543151,
                        2.96668325, 103.61779948], shape=(68661,)),
               'avg_v3_A': array([-34.52110633, -19.52764777,  49.71329235, ...,  37.96948466,
                      -23.36716683,  25.14663102], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 12.2356999 ,  92.28996223, 160.20005578, ...,  -5.95543151,
                        2.96668325, 103.61779948], shape=(68661,)),
               'avg_v3_B': array([-34.52110633, -19.52764777,  49.71329235, ...,  37.96948466,
                      -23.36716683,  25.14663102], shape=(68661,))},
              np.float64(94.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 12.90194093,  92.27383758, 161.31804646, ...,  -6.73195394,
                        3.39512351, 103.72883921], shape=(68661,)),
               'avg_v3_A': array([-34.30347606, -18.52844396,  50.04284663, ...,  37.8589974 ,
                      -23.31166644,  26.11828702], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 12.90194093,  92.27383758, 161.31804646, ...,  -6.73195394,
                        3.39512351, 103.72883921], shape=(68661,)),
               'avg_v3_B': array([-34.30347606, -18.52844396,  50.04284663, ...,  37.8589974 ,
                      -23.31166644,  26.11828702], shape=(68661,))},
              np.float64(95.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 13.56085452,  92.25857462, 162.45639773, ...,  -7.50398676,
                        3.82214978, 103.84581882], shape=(68661,)),
               'avg_v3_A': array([-34.07457327, -17.52922928,  50.35374713, ...,  37.73508912,
                      -23.24871361,  27.08947077], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 13.56085452,  92.25857462, 162.45639773, ...,  -7.50398676,
                        3.82214978, 103.84581882], shape=(68661,)),
               'avg_v3_B': array([-34.07457327, -17.52922928,  50.35374713, ...,  37.73508912,
                      -23.24871361,  27.08947077], shape=(68661,))},
              np.float64(96.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 14.21215713,  92.2441496 , 163.61435245, ...,  -8.27105052,
                        4.24758783, 103.9689566 ], shape=(68661,)),
               'avg_v3_A': array([-33.83455515, -16.53000438,  50.64553964, ...,  37.59786421,
                      -23.17833798,  28.06015308], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 14.21215713,  92.2441496 , 163.61435245, ...,  -8.27105052,
                        4.24758783, 103.9689566 ], shape=(68661,)),
               'avg_v3_B': array([-33.83455515, -16.53000438,  50.64553964, ...,  37.59786421,
                      -23.17833798,  28.06015308], shape=(68661,))},
              np.float64(97.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 14.85558096,  92.23054049, 164.7910548 , ...,  -9.03268005,
                        4.67126536, 104.09848649], shape=(68661,)),
               'avg_v3_A': array([-33.58358394, -15.5307699 ,  50.91778485, ...,  37.44743721,
                      -23.10057257,  29.03030313], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 14.85558096,  92.23054049, 164.7910548 , ...,  -9.03268005,
                        4.67126536, 104.09848649], shape=(68661,)),
               'avg_v3_B': array([-33.58358394, -15.5307699 ,  50.91778485, ...,  37.44743721,
                      -23.10057257,  29.03030313], shape=(68661,))},
              np.float64(98.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 15.49087406,  92.21772691, 165.98554992, ...,  -9.78842556,
                        5.09301215, 104.23465924], shape=(68661,)),
               'avg_v3_A': array([-33.32182653, -14.53152645,  51.17006109, ...,  37.28393234,
                      -23.01545377,  29.99988837], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 15.49087406,  92.21772691, 165.98554992, ...,  -9.78842556,
                        5.09301215, 104.23465924], shape=(68661,)),
               'avg_v3_B': array([-33.32182653, -14.53152645,  51.17006109, ...,  37.28393234,
                      -23.01545377,  29.99988837], shape=(68661,))},
              np.float64(99.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 16.11780032,  92.20569001, 167.19678455, ..., -10.53785355,
                        5.51266027, 104.37774361], shape=(68661,)),
               'avg_v3_A': array([-33.04945406, -13.5322746 ,  51.4019671 , ...,  37.1074831 ,
                      -22.92302121,  30.96887438], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 16.11780032,  92.20569001, 167.19678455, ..., -10.53785355,
                        5.51266027, 104.37774361], shape=(68661,)),
               'avg_v3_B': array([-33.04945406, -13.5322746 ,  51.4019671 , ...,  37.1074831 ,
                      -22.92302121,  30.96887438], shape=(68661,))},
              np.float64(100.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 16.73613938,  92.19441244, 168.4236089 , ..., -11.28054771,
                        5.93004426, 104.52802774], shape=(68661,)),
               'avg_v3_A': array([-32.7666415 , -12.53301492,  51.61312479, ...,  36.91823179,
                      -22.82331776,  31.93722469], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 16.73613938,  92.19441244, 168.4236089 , ..., -11.28054771,
                        5.93004426, 104.52802774], shape=(68661,)),
               'avg_v3_B': array([-32.7666415 , -12.53301492,  51.61312479, ...,  36.91823179,
                      -22.82331776,  31.93722469], shape=(68661,))},
              np.float64(101.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 17.34568647,  92.18387823, 169.66477985, ..., -12.01610962,
                        6.34500126, 104.68582067], shape=(68661,)),
               'avg_v3_A': array([-32.47356727, -11.53374795,  51.80318201, ...,  36.71632903,
                      -22.71638946,  32.90490059], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 17.34568647,  92.18387823, 169.66477985, ..., -12.01610962,
                        6.34500126, 104.68582067], shape=(68661,)),
               'avg_v3_B': array([-32.47356727, -11.53374795,  51.80318201, ...,  36.71632903,
                      -22.71638946,  32.90490059], shape=(68661,))},
              np.float64(102.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 17.94625225,  92.17407277, 170.91896527, ..., -12.74415936,
                        6.75737122, 104.85145394], shape=(68661,)),
               'avg_v3_A': array([-32.17041283, -10.53447421,  51.97181513, ...,  36.50193328,
                      -22.60228541,  33.87186096], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 17.94625225,  92.17407277, 170.91896527, ..., -12.74415936,
                        6.75737122, 104.85145394], shape=(68661,)),
               'avg_v3_B': array([-32.17041283, -10.53447421,  51.97181513, ...,  36.50193328,
                      -22.60228541,  33.87186096], shape=(68661,))},
              np.float64(103.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 18.53766254,  92.16498274, 172.18474979, ..., -13.464336  ,
                        7.16699698, 105.02528342], shape=(68661,)),
               'avg_v3_A': array([-31.85736233,  -9.53519422,  52.11873163, ...,  36.27521028,
                      -22.48105775,  34.83806204], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 18.53766254,  92.16498274, 172.18474979, ..., -13.464336  ,
                        7.16699698, 105.02528342], shape=(68661,)),
               'avg_v3_B': array([-31.85736233,  -9.53519422,  52.11873163, ...,  36.27521028,
                      -22.48105775,  34.83806204], shape=(68661,))},
              np.float64(104.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 19.119758  ,  92.15659602, 173.46064178, ..., -14.17629801,
                        7.57372449, 105.20769133], shape=(68661,)),
               'avg_v3_A': array([-31.5346022 ,  -8.53590846,  52.24367244, ...,  36.03633261,
                      -22.35276156,  35.8034572 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 19.119758  ,  92.15659602, 173.46064178, ..., -14.17629801,
                        7.57372449, 105.20769133], shape=(68661,)),
               'avg_v3_B': array([-31.5346022 ,  -8.53590846,  52.24367244, ...,  36.03633261,
                      -22.35276156,  35.8034572 ], shape=(68661,))},
              np.float64(105.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 19.69239376,  92.14890173, 174.74508153, ..., -14.87972346,
                        7.97740286, 105.39908836], shape=(68661,)),
               'avg_v3_A': array([-31.20232084,  -7.53661743,  52.34641407, ...,  35.7854791 ,
                      -22.21745477,  36.76799667], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 19.69239376,  92.14890173, 174.74508153, ..., -14.87972346,
                        7.97740286, 105.39908836], shape=(68661,)),
               'avg_v3_B': array([-31.20232084,  -7.53661743,  52.34641407, ...,  35.7854791 ,
                      -22.21745477,  36.76799667], shape=(68661,))},
              np.float64(106.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 20.25543908,  92.14189009, 176.03645057, ..., -15.57431024,
                        8.37788453, 105.59991616], shape=(68661,)),
               'avg_v3_A': array([-30.86070825,  -6.53732157,  52.42677055, ...,  35.52283435,
                      -22.0751981 ,  37.73162726], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 20.25543908,  92.14189009, 176.03645057, ..., -15.57431024,
                        8.37788453, 105.59991616], shape=(68661,)),
               'avg_v3_B': array([-30.86070825,  -6.53732157,  52.42677055, ...,  35.52283435,
                      -22.0751981 ,  37.73162726], shape=(68661,))},
              np.float64(107.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 20.80877685,  92.13555245, 177.33308201, ..., -16.25977607,
                        8.77502535, 105.81064998], shape=(68661,)),
               'avg_v3_A': array([-30.50995569,  -5.53802137,  52.484595  , ...,  35.24858819,
                      -21.92605498,  38.69429203], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 20.80877685,  92.13555245, 177.33308201, ..., -16.25977607,
                        8.77502535, 105.81064998], shape=(68661,)),
               'avg_v3_B': array([-30.50995569,  -5.53802137,  52.484595  , ...,  35.24858819,
                      -21.92605498,  38.69429203], shape=(68661,))},
              np.float64(108.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 21.35230318,  92.12988127, 178.63327171, ..., -16.93585845,
                        9.16868468, 106.03180164], shape=(68661,)),
               'avg_v3_A': array([-30.1502554 ,  -4.53871726,  52.51978097, ...,  34.96293518,
                      -21.77009145,  39.65592993], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 21.35230318,  92.12988127, 178.63327171, ..., -16.93585845,
                        9.16868468, 106.03180164], shape=(68661,)),
               'avg_v3_B': array([-30.1502554 ,  -4.53871726,  52.51978097, ...,  34.96293518,
                      -21.77009145,  39.65592993], shape=(68661,))},
              np.float64(109.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ 21.88592689,  92.12487002, 179.93529008, ..., -17.60231452,
                        9.55872549, 106.26392283], shape=(68661,)),
               'avg_v3_A': array([-29.78180029,  -3.53940968,  52.53226335, ...,  34.66607406,
                      -21.60737606,  40.61647544], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ 21.88592689,  92.12487002, 179.93529008, ..., -17.60231452,
                        9.55872549, 106.26392283], shape=(68661,)),
               'avg_v3_B': array([-29.78180029,  -3.53940968,  52.53226335, ...,  34.66607406,
                      -21.60737606,  40.61647544], shape=(68661,))},
              np.float64(110.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  22.40956898,   92.12051324, -178.7626056 , ...,  -18.25892084,
                         9.94501442,  106.50760869], shape=(68661,)),
               'avg_v3_A': array([-29.40478362,  -2.54009907,  52.522019  , ...,  34.35820731,
                      -21.43797983,  41.5758581 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  22.40956898,   92.12051324, -178.7626056 , ...,  -18.25892084,
                         9.94501442,  106.50760869], shape=(68661,)),
               'avg_v3_B': array([-29.40478362,  -2.54009907,  52.522019  , ...,  34.35820731,
                      -21.43797983,  41.5758581 ], shape=(68661,))},
              np.float64(111.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  22.92316214,   92.11680645, -177.46215869, ...,  -18.90547304,
                        10.32742183,  106.76350191], shape=(68661,)),
               'avg_v3_A': array([-29.01939881,  -1.54078586,  52.48906691, ...,  34.03954063,
                      -21.26197611,  42.534002  ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  22.92316214,   92.11680645, -177.46215869, ...,  -18.90547304,
                        10.32742183,  106.76350191], shape=(68661,)),
               'avg_v3_B': array([-29.01939881,  -1.54078586,  52.48906691, ...,  34.03954063,
                      -21.26197611,  42.534002  ], shape=(68661,))},
              np.float64(112.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  23.42665018,   92.1137462 , -176.1651006 , ...,  -19.54178548,
                        10.7058219 ,  107.0322972 ], shape=(68661,)),
               'avg_v3_A': array([-28.62583911,  -0.54147046,  52.43346807, ...,  33.71028248,
                      -21.07944051,  43.49082531], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  23.42665018,   92.1137462 , -176.1651006 , ...,  -19.54178548,
                        10.7058219 ,  107.0322972 ], shape=(68661,)),
               'avg_v3_B': array([-28.62583911,  -0.54147046,  52.43346807, ...,  33.71028248,
                      -21.07944051,  43.49082531], shape=(68661,))},
              np.float64(113.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  23.9199875 ,   92.11133001, -174.87313854, ...,  -20.16769073,
                        11.08009262,  107.31474625], shape=(68661,)),
               'avg_v3_A': array([-28.22429742,   0.4578467 ,  52.35532491, ...,  33.37064359,
                      -20.89045081,  44.44623958], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  23.9199875 ,   92.11133001, -174.87313854, ...,  -20.16769073,
                        11.08009262,  107.31474625], shape=(68661,)),
               'avg_v3_B': array([-28.22429742,   0.4578467 ,  52.35532491, ...,  33.37064359,
                      -20.89045081,  44.44623958], shape=(68661,))},
              np.float64(114.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  24.4031385 ,   92.10955639, -173.58794356, ...,  -20.78303916,
                        11.45011585,  107.61166339], shape=(68661,)),
               'avg_v3_A': array([-27.81496607,   1.45716521,  52.25478037, ...,  33.02083658,
                      -20.69508685,  45.40014913], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  24.4031385 ,   92.10955639, -173.58794356, ...,  -20.78303916,
                        11.45011585,  107.61166339], shape=(68661,)),
               'avg_v3_B': array([-27.81496607,   1.45716521,  52.25478037, ...,  33.02083658,
                      -20.69508685,  45.40014913], shape=(68661,))},
              np.float64(115.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  24.87607705,   92.10842482, -172.31113937, ...,  -21.38769826,
                        11.81577734,  107.92393174], shape=(68661,)),
               'avg_v3_A': array([-27.39803657,   2.45648464,  52.13201664, ...,  32.66107551,
                      -20.49343048,  46.35245023], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  24.87607705,   92.10842482, -172.31113937, ...,  -21.38769826,
                        11.81577734,  107.92393174], shape=(68661,)),
               'avg_v3_B': array([-27.39803657,   2.45648464,  52.13201664, ...,  32.66107551,
                      -20.49343048,  46.35245023], shape=(68661,))},
              np.float64(116.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  25.33878592,   92.10793576, -171.04429191, ...,  -21.98155212,
                        12.17696675,  108.2525102 ], shape=(68661,)),
               'avg_v3_A': array([-26.97369949,   3.45580461,  51.98725359, ...,  32.29157545,
                      -20.2855654 ,  47.30303025], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  25.33878592,   92.10793576, -171.04429191, ...,  -21.98155212,
                        12.17696675,  108.2525102 ], shape=(68661,)),
               'avg_v3_B': array([-26.97369949,   3.45580461,  51.98725359, ...,  32.29157545,
                      -20.2855654 ,  47.30303025], shape=(68661,))},
              np.float64(117.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  25.79125622,   92.10809065, -169.7888999 , ...,  -22.56450076,
                        12.53357762,  108.59844125], shape=(68661,)),
               'avg_v3_A': array([-26.54214425,   4.45512467,  51.82074689, ...,  31.91255217,
                      -20.07157715,  48.25176671], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  25.79125622,   92.10809065, -169.7888999 , ...,  -22.56450076,
                        12.53357762,  108.59844125], shape=(68661,)),
               'avg_v3_B': array([-26.54214425,   4.45512467,  51.82074689, ...,  31.91255217,
                      -20.07157715,  48.25176671], shape=(68661,))},
              np.float64(118.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  26.23348688,   92.10889192, -168.54638654, ...,  -23.13645944,
                        12.88550741,  108.96285964], shape=(68661,)),
               'avg_v3_A': array([-26.10355898,   5.45444443,  51.63278586, ...,  31.52422173,
                      -19.85155294,  49.19852614], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  26.23348688,   92.10889192, -168.54638654, ...,  -23.13645944,
                        12.88550741,  108.96285964], shape=(68661,)),
               'avg_v3_B': array([-26.10355898,   5.45444443,  51.63278586, ...,  31.52422173,
                      -19.85155294,  49.19852614], shape=(68661,))},
              np.float64(119.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  26.66548405,   92.110343  , -167.31809244, ...,  -23.69735798,
                        13.23265745,  109.34700227], shape=(68661,)),
               'avg_v3_A': array([-25.65813038,   6.45376347,  51.42369116, ...,  31.12680015,
                      -19.62558163,  50.14316285], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  26.66548405,   92.110343  , -167.31809244, ...,  -23.69735798,
                        13.23265745,  109.34700227], shape=(68661,)),
               'avg_v3_B': array([-25.65813038,   6.45376347,  51.42369116, ...,  31.12680015,
                      -19.62558163,  50.14316285], shape=(68661,))},
              np.float64(120.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  27.08726063,   92.11244833, -166.10526971, ...,  -24.24714006,
                        13.57493294,  109.75221913], shape=(68661,)),
               'avg_v3_A': array([-25.20604358,   7.45308137,  51.19381227, ...,  30.72050312,
                      -19.39375357,  51.08551753], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  27.08726063,   92.11244833, -166.10526971, ...,  -24.24714006,
                        13.57493294,  109.75221913], shape=(68661,)),
               'avg_v3_B': array([-25.20604358,   7.45308137,  51.19381227, ...,  30.72050312,
                      -19.39375357,  51.08551753], shape=(68661,))},
              np.float64(121.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  27.4988357 ,   92.11521338, -164.90907748, ...,  -24.78576244,
                        13.91224289,  110.17998575], shape=(68661,)),
               'avg_v3_A': array([-24.74748205,   8.45239769,  50.94352483, ...,  30.30554567,
                      -19.15616058,  52.02541561], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  27.4988357 ,   92.11521338, -164.90907748, ...,  -24.78576244,
                        13.91224289,  110.17998575], shape=(68661,)),
               'avg_v3_B': array([-24.74748205,   8.45239769,  50.94352483, ...,  30.30554567,
                      -19.15616058,  52.02541561], shape=(68661,))},
              np.float64(122.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  27.90023407,   92.11864469, -163.73057863, ...,  -25.3131943 ,
                        14.24450012,  110.63191712], shape=(68661,)),
               'avg_v3_A': array([-24.2826275 ,   9.45171203,  50.67322795, ...,  29.88214196,
                      -18.91289581,  52.96266545], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  27.90023407,   92.11864469, -163.73057863, ...,  -25.3131943 ,
                        14.24450012,  110.63191712], shape=(68661,)),
               'avg_v3_B': array([-24.2826275 ,   9.45171203,  50.67322795, ...,  29.88214196,
                      -18.91289581,  52.96266545], shape=(68661,))},
              np.float64(123.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  28.29148572,   92.12274986, -162.57073777, ...,  -25.82941644,
                        14.57162117,  111.10978348], shape=(68661,)),
               'avg_v3_A': array([-23.81165977,  10.45102392,  50.38334141, ...,  29.45050496,
                      -18.6640537 ,  53.89705625], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  28.29148572,   92.12274986, -162.57073777, ...,  -25.82941644,
                        14.57162117,  111.10978348], shape=(68661,)),
               'avg_v3_B': array([-23.81165977,  10.45102392,  50.38334141, ...,  29.45050496,
                      -18.6640537 ,  53.89705625], shape=(68661,))},
              np.float64(124.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  28.67262539,   92.12753762, -161.43042046, ...,  -26.3344206 ,
                        14.8935263 ,  111.61552805], shape=(68661,)),
               'avg_v3_A': array([-23.33475679,  11.45033295,  50.0743029 , ...,  29.01084625,
                      -18.40972985,  54.82835565], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  28.67262539,   92.12753762, -161.43042046, ...,  -26.3344206 ,
                        14.8935263 ,  111.61552805], shape=(68661,)),
               'avg_v3_B': array([-23.33475679,  11.45033295,  50.0743029 , ...,  29.01084625,
                      -18.40972985,  54.82835565], shape=(68661,))},
              np.float64(125.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  29.04369205,   92.13301784, -160.3103935 , ...,  -26.82820867,
                        15.21013938,  112.15128712], shape=(68661,)),
               'avg_v3_A': array([-22.85209448,  12.44963865,  49.74656529, ...,  28.56337585,
                      -18.15002097,  55.75630697], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  29.04369205,   92.13301784, -160.3103935 , ...,  -26.82820867,
                        15.21013938,  112.15128712], shape=(68661,)),
               'avg_v3_B': array([-22.85209448,  12.44963865,  49.74656529, ...,  28.56337585,
                      -18.15002097,  55.75630697], shape=(68661,))},
              np.float64(126.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  29.40472853,   92.13920158, -159.21132629, ...,  -27.31079205,
                        15.52138785,  112.71941268], shape=(68661,)),
               'avg_v3_A': array([-22.36384676,  13.44894056,  49.40059393, ...,  28.10830197,
                      -17.88502482,  56.6806261 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  29.40472853,   92.13920158, -159.21132629, ...,  -27.31079205,
                        15.52138785,  112.71941268], shape=(68661,)),
               'avg_v3_B': array([-22.36384676,  13.44894056,  49.40059393, ...,  28.10830197,
                      -17.88502482,  56.6806261 ], shape=(68661,))},
              np.float64(127.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  29.75578104,   92.14610115, -158.13379297, ...,  -27.7821909 ,
                        15.82720266,  113.32249808], shape=(68661,)),
               'avg_v3_A': array([-21.87018542,  14.4482382 ,  49.03686405, ...,  27.64583089,
                      -17.61484007,  57.60099783], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  29.75578104,   92.14610115, -158.13379297, ...,  -27.7821909 ,
                        15.82720266,  113.32249808], shape=(68661,)),
               'avg_v3_B': array([-21.87018542,  14.4482382 ,  49.03686405, ...,  27.64583089,
                      -17.61484007,  57.60099783], shape=(68661,))},
              np.float64(128.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  30.09689879,   92.15373014, -157.07827553, ...,  -28.24243344,
                        16.12751816,  113.96340688], shape=(68661,)),
               'avg_v3_A': array([-21.37128018,  15.4475311 ,  48.65585835, ...,  27.17616677,
                      -17.33956628,  58.51707169], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  30.09689879,   92.15373014, -157.07827553, ...,  -28.24243344,
                        16.12751816,  113.96340688], shape=(68661,)),
               'avg_v3_B': array([-21.37128018,  15.4475311 ,  48.65585835, ...,  27.17616677,
                      -17.33956628,  58.51707169], shape=(68661,))},
              np.float64(129.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  30.42813357,   92.16210347, -156.04516741, ...,  -28.69155532,
                        16.42227208,  114.64530554], shape=(68661,)),
               'avg_v3_A': array([-20.8672986 ,  16.44681875,  48.2580646 , ...,  26.69951156,
                      -17.05930382,  59.42845709], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  30.42813357,   92.16210347, -156.04516741, ...,  -28.69155532,
                        16.42227208,  114.64530554], shape=(68661,)),
               'avg_v3_B': array([-20.8672986 ,  16.44681875,  48.2580646 , ...,  26.69951156,
                      -17.05930382,  59.42845709], shape=(68661,))},
              np.float64(130.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  30.74953943,   92.1712375 , -155.03477773, ...,  -29.12959896,
                        16.71140537,  115.37170018], shape=(68661,)),
               'avg_v3_A': array([-20.35840611,  17.44610063,  47.84397346, ...,  26.21606484,
                      -16.77415377,  60.33471773], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  30.74953943,   92.1712375 , -155.03477773, ...,  -29.12959896,
                        16.71140537,  115.37170018], shape=(68661,)),
               'avg_v3_B': array([-20.35840611,  17.44610063,  47.84397346, ...,  26.21606484,
                      -16.77415377,  60.33471773], shape=(68661,))},
              np.float64(131.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  31.06117226,   92.18115004, -154.04733598, ...,  -29.55661288,
                        16.99486219,  116.14647794], shape=(68661,)),
               'avg_v3_A': array([-19.84476598,  18.44537621,  47.41407648, ...,  25.72602378,
                      -16.4842179 ,  61.23536512], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  31.06117226,   92.18115004, -154.04733598, ...,  -29.55661288,
                        16.99486219,  116.14647794], shape=(68661,)),
               'avg_v3_B': array([-19.84476598,  18.44537621,  47.41407648, ...,  25.72602378,
                      -16.4842179 ,  61.23536512], shape=(68661,))},
              np.float64(132.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  31.36308949,   92.1918605 , -153.08299691, ...,  -29.97265115,
                        17.27258976,  116.9739533 ], shape=(68661,)),
               'avg_v3_A': array([-19.32653933,  19.44464495,  46.96886421, ...,  25.22958298,
                      -16.18959856,  62.12985098], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  31.36308949,   92.1918605 , -153.08299691, ...,  -29.97265115,
                        17.27258976,  116.9739533 ], shape=(68661,)),
               'avg_v3_B': array([-19.32653933,  19.44464495,  46.96886421, ...,  25.22958298,
                      -16.18959856,  62.12985098], shape=(68661,))},
              np.float64(133.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  31.65534979,   92.20338989, -152.14184572, ...,  -30.37777278,
                        17.5445383 ,  117.8589198 ], shape=(68661,)),
               'avg_v3_A': array([-18.80388514,  20.44390626,  46.50882451, ...,  24.72693447,
                      -15.89039864,  63.01755852], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  31.65534979,   92.20338989, -152.14184572, ...,  -30.37777278,
                        17.5445383 ,  117.8589198 ], shape=(68661,)),
               'avg_v3_B': array([-18.80388514,  20.44390626,  46.50882451, ...,  24.72693447,
                      -15.89039864,  63.01755852], shape=(68661,))},
              np.float64(134.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  31.93801269,   92.215761  , -151.22390339, ...,  -30.77204115,
                        17.81066092,  118.80670723], shape=(68661,)),
               'avg_v3_A': array([-18.27696026,  21.44315954,  46.03444104, ...,  24.21826763,
                      -15.58672153,  63.8977922 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  31.93801269,   92.215761  , -151.22390339, ...,  -30.77204115,
                        17.81066092,  118.80670723], shape=(68661,)),
               'avg_v3_B': array([-18.27696026,  21.44315954,  46.03444104, ...,  24.21826763,
                      -15.58672153,  63.8977922 ], shape=(68661,))},
              np.float64(135.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  32.21113839,   92.22899846, -150.32913194, ...,  -31.15552351,
                        18.07091356,  119.82324451], shape=(68661,)),
               'avg_v3_A': array([-17.74591944,  22.44240419,  45.54619189, ...,  23.70376913,
                      -15.27867102,  64.76976588], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  32.21113839,   92.22899846, -150.32913194, ...,  -31.15552351,
                        18.07091356,  119.82324451], shape=(68661,)),
               'avg_v3_B': array([-17.74591944,  22.44240419,  45.54619189, ...,  23.70376913,
                      -15.27867102,  64.76976588], shape=(68661,))},
              np.float64(136.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  32.47478743,   92.24312885, -149.45743975, ...,  -31.52829044,
                        18.32525484,  120.91512763], shape=(68661,)),
               'avg_v3_A': array([-17.21091534,  23.44163955,  45.0445484 , ...,  23.18362291,
                      -14.96635129,  65.63258894], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  32.47478743,   92.24312885, -149.45743975, ...,  -31.52829044,
                        18.32525484,  120.91512763], shape=(68661,)),
               'avg_v3_B': array([-17.21091534,  23.44163955,  45.0445484 , ...,  23.18362291,
                      -14.96635129,  65.63258894], shape=(68661,))},
              np.float64(137.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  32.72902043,   92.25818087, -148.60868676, ...,  -31.89041537,
                        18.57364599,  122.08969192], shape=(68661,)),
               'avg_v3_A': array([-16.67209859,  24.44086493,  44.52997412, ...,  22.65801018,
                      -14.64986682,  66.4852503 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  32.72902043,   92.25818087, -148.60868676, ...,  -31.89041537,
                        18.57364599,  122.08969192], shape=(68661,)),
               'avg_v3_B': array([-16.67209859,  24.44086493,  44.52997412, ...,  22.65801018,
                      -14.64986682,  66.4852503 ], shape=(68661,))},
              np.float64(138.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  32.97389789,   92.27418543, -147.78268948, ...,  -32.24197414,
                        18.81605074,  123.35508662], shape=(68661,)),
               'avg_v3_A': array([-16.1296178 ,  25.44007964,  44.00292391, ...,  22.12710939,
                      -14.32932237,  67.32659978], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  32.97389789,   92.27418543, -147.78268948, ...,  -32.24197414,
                        18.81605074,  123.35508662], shape=(68661,)),
               'avg_v3_B': array([-16.1296178 ,  25.44007964,  44.00292391, ...,  22.12710939,
                      -14.32932237,  67.32659978], shape=(68661,))},
              np.float64(139.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  33.20947993,   92.29117585, -146.97922586, ...,  -32.58304454,
                        19.05243524,  124.7203486 ], shape=(68661,)),
               'avg_v3_A': array([-15.58361961,  26.43928292,  43.46384322, ...,  21.59109625,
                      -14.00482294,  68.15532665], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  33.20947993,   92.29117585, -146.97922586, ...,  -32.58304454,
                        19.05243524,  124.7203486 ], shape=(68661,)),
               'avg_v3_B': array([-15.58361961,  26.43928292,  43.46384322, ...,  21.59109625,
                      -14.00482294,  68.15532665], shape=(68661,))},
              np.float64(140.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  33.43582611,   92.30918801, -146.19803989, ...,  -32.9137059 ,
                        19.28276794,  126.19546995], shape=(68661,)),
               'avg_v3_A': array([-15.03424873,  27.43847398,  42.91316745, ...,  21.05014369,
                      -13.6764737 ,  68.96993504], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  33.43582611,   92.30918801, -146.19803989, ...,  -32.9137059 ,
                        19.28276794,  126.19546995], shape=(68661,)),
               'avg_v3_B': array([-15.03424873,  27.43847398,  42.91316745, ...,  21.05014369,
                      -13.6764737 ,  68.96993504], shape=(68661,))},
              np.float64(141.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  33.6529952 ,   92.32826053, -145.43884602, ...,  -33.23403875,
                        19.5070195 ,  127.79145153], shape=(68661,)),
               'avg_v3_A': array([-14.48164802,  28.437652  ,  42.35132147, ...,  20.50442195,
                      -13.34437996,  69.76871592], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  33.6529952 ,   92.32826053, -145.43884602, ...,  -33.23403875,
                        19.5070195 ,  127.79145153], shape=(68661,)),
               'avg_v3_B': array([-14.48164802,  28.437652  ,  42.35132147, ...,  20.50442195,
                      -13.34437996,  69.76871592], shape=(68661,))},
              np.float64(142.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  33.86104501,   92.34843502, -144.70133324, ...,  -33.54412436,
                        19.72516268,  129.52033034], shape=(68661,)),
               'avg_v3_A': array([-13.92595847,  29.43681611,  41.77871923, ...,  19.95409855,
                      -13.00864716,  70.54971577], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  33.86104501,   92.34843502, -144.70133324, ...,  -33.54412436,
                        19.72516268,  129.52033034], shape=(68661,)),
               'avg_v3_B': array([-13.92595847,  29.43681611,  41.77871923, ...,  19.95409855,
                      -13.00864716,  70.54971577], shape=(68661,))},
              np.float64(143.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  34.06003223,   92.36975624, -143.98516896, ...,  -33.84404451,
                        19.93717226,  131.39516359], shape=(68661,)),
               'avg_v3_A': array([-13.36731934,  30.43596537,  41.19576349, ...,  19.39933835,
                      -12.66938079,  71.31070198], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  34.06003223,   92.36975624, -143.98516896, ...,  -33.84404451,
                        19.93717226,  131.39516359], shape=(68661,)),
               'avg_v3_B': array([-13.36731934,  30.43596537,  41.19576349, ...,  19.39933835,
                      -12.66938079,  71.31070198], shape=(68661,))},
              np.float64(144.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  34.25001226,   92.39227245, -143.29000255, ...,  -34.13388106,
                        20.14302491,  133.42994533], shape=(68661,)),
               'avg_v3_A': array([-12.80586816,  31.43509882,  40.60284561, ...,  18.84030357,
                      -12.32668639,  72.04912585], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  34.25001226,   92.39227245, -143.29000255, ...,  -34.13388106,
                        20.14302491,  133.42994533], shape=(68661,)),
               'avg_v3_B': array([-12.80586816,  31.43509882,  40.60284561, ...,  18.84030357,
                      -12.32668639,  72.04912585], shape=(68661,))},
              np.float64(145.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  34.43103903,   92.41603561, -142.61546865, ...,  -34.41371575,
                        20.34269915,  135.63942296], shape=(68661,)),
               'avg_v3_A': array([-12.24174079,  32.4342154 ,  40.00034544, ...,  18.27715386,
                      -11.98066952,  72.76208447], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  34.43103903,   92.41603561, -142.61546865, ...,  -34.41371575,
                        20.34269915,  135.63942296], shape=(68661,)),
               'avg_v3_B': array([-12.24174079,  32.4342154 ,  40.00034544, ...,  18.27715386,
                      -11.98066952,  72.76208447], shape=(68661,))},
              np.float64(146.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  34.60316494,   92.44110174, -141.96119019, ...,  -34.68362982,
                        20.53617518,  138.03877176], shape=(68661,)),
               'avg_v3_A': array([-11.67507152,  33.43331402,  39.3886313 , ...,  17.71004632,
                      -11.63143572,  73.44628418], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  34.60316494,   92.44110174, -141.96119019, ...,  -34.68362982,
                        20.53617518,  138.03877176], shape=(68661,)),
               'avg_v3_B': array([-11.67507152,  33.43331402,  39.3886313 , ...,  17.71004632,
                      -11.63143572,  73.44628418], shape=(68661,))},
              np.float64(147.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  34.76644065,   92.46753123, -141.32678113, ...,  -34.94370384,
                        20.72343488,  140.64307634], shape=(68661,)),
               'avg_v3_A': array([-11.1059931 ,  34.43239349,  38.76805998, ...,  17.13913557,
                      -11.27909048,  74.09800953], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  34.76644065,   92.46753123, -141.32678113, ...,  -34.94370384,
                        20.72343488,  140.64307634], shape=(68661,)),
               'avg_v3_B': array([-11.1059931 ,  34.43239349,  38.76805998, ...,  17.13913557,
                      -11.27909048,  74.09800953], shape=(68661,))},
              np.float64(148.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  34.920915  ,   92.49538929, -140.711849  , ...,  -35.1940174 ,
                        20.90446161,  143.4665628 ], shape=(68661,)),
               'avg_v3_A': array([-10.53463681,  35.43145256,  38.13897684, ...,  16.56457381,
                      -10.92373925,  74.71310379], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  34.920915  ,   92.49538929, -140.711849  , ...,  -35.1940174 ,
                        20.90446161,  143.4665628 ], shape=(68661,)),
               'avg_v3_B': array([-10.53463681,  35.43145256,  38.13897684, ...,  16.56457381,
                      -10.92373925,  74.71310379], shape=(68661,))},
              np.float64(149.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.0666349 ,   92.52474633, -140.11599714, ...,  -35.4346489 ,
                        21.07924023,  146.52152879], shape=(68661,)),
               'avg_v3_A': array([ -9.96113255,  36.43048989,  37.50171591, ...,  15.98651087,
                      -10.56548739,  75.28696946], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.0666349 ,   92.52474633, -140.11599714, ...,  -35.4346489 ,
                        21.07924023,  146.52152879], shape=(68661,)),
               'avg_v3_B': array([ -9.96113255,  36.43048989,  37.50171591, ...,  15.98651087,
                      -10.56548739,  75.28696946], shape=(68661,))},
              np.float64(150.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.20364523,   92.55567843, -139.53882672, ...,  -35.66567536,
                        21.24775691,  149.81693965], shape=(68661,)),
               'avg_v3_A': array([ -9.38560887,  37.42950405,  36.85660008, ...,  15.40509429,
                      -10.20444015,  75.81459962], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.20364523,   92.55567843, -139.53882672, ...,  -35.66567536,
                        21.24775691,  149.81693965], shape=(68661,)),
               'avg_v3_B': array([ -9.38560887,  37.42950405,  36.85660008, ...,  15.40509429,
                      -10.20444015,  75.81459962], shape=(68661,))},
              np.float64(151.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.33198872,   92.58826795, -138.97993857, ...,  -35.8871722 ,
                        21.40999914,  153.35670657], shape=(68661,)),
               'avg_v3_A': array([-8.80819308, 38.42849347, 36.20394133, ..., 14.82046939,
                      -9.84070268, 76.29065267], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.33198872,   92.58826795, -138.97993857, ...,  -35.8871722 ,
                        21.40999914,  153.35670657], shape=(68661,)),
               'avg_v3_B': array([-8.80819308, 38.42849347, 36.20394133, ..., 14.82046939,
                      -9.84070268, 76.29065267], shape=(68661,))},
              np.float64(152.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.45170591,   92.62260404, -138.4389348 , ...,  -36.09921309,
                        21.56595558,  157.13774565], shape=(68661,)),
               'avg_v3_A': array([-8.22901128, 39.42745652, 35.54404088, ..., 14.23277933,
                      -9.47438001, 76.70958312], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.45170591,   92.62260404, -138.4389348 , ...,  -36.09921309,
                        21.56595558,  157.13774565], shape=(68661,)),
               'avg_v3_B': array([-8.22901128, 39.42745652, 35.54404088, ..., 14.23277933,
                      -9.47438001, 76.70958312], shape=(68661,))},
              np.float64(153.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.56283505,   92.65878339, -137.91542019, ...,  -36.30186973,
                        21.71561601,  161.14803485], shape=(68661,)),
               'avg_v3_A': array([-7.64818846, 40.42639141, 34.87718953, ..., 13.64216517,
                      -9.10557701, 77.06583757], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.56283505,   92.65878339, -137.91542019, ...,  -36.30186973,
                        21.71561601,  161.14803485], shape=(68661,)),
               'avg_v3_B': array([-7.64818846, 40.42639141, 34.87718953, ..., 13.64216517,
                      -9.10557701, 77.06583757], shape=(68661,))},
              np.float64(154.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.66541201,   92.69691094, -137.40900349, ...,  -36.49521174,
                        21.85897125,  165.36501715], shape=(68661,)),
               'avg_v3_A': array([-7.06584858, 41.42529622, 34.20366789, ..., 13.04876599,
                      -8.73439841, 77.35411642], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.66541201,   92.69691094, -137.40900349, ...,  -36.49521174,
                        21.85897125,  165.36501715], shape=(68661,)),
               'avg_v3_B': array([-7.06584858, 41.42529622, 34.20366789, ..., 13.04876599,
                      -8.73439841, 77.35411642], shape=(68661,))},
              np.float64(155.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.75947025,   92.73710078, -136.91929847, ...,  -36.67930652,
                        21.99601307,  169.75479795], shape=(68661,)),
               'avg_v3_A': array([-6.4821146 , 42.42416886, 33.52374668, ..., 12.45271892,
                      -8.36094879, 77.56968824], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.75947025,   92.73710078, -136.91929847, ...,  -36.67930652,
                        21.99601307,  169.75479795], shape=(68661,)),
               'avg_v3_B': array([-6.4821146 , 42.42416886, 33.52374668, ..., 12.45271892,
                      -8.36094879, 77.56968824], shape=(68661,))},
              np.float64(156.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.84504075,   92.77947706, -136.4459249 , ...,  -36.85421909,
                        22.12673416,  174.2725799 ], shape=(68661,)),
               'avg_v3_A': array([-5.89710859, 43.42300709, 32.83768702, ..., 11.85415926,
                      -7.98533257, 77.70872601], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.84504075,   92.77947706, -136.4459249 , ...,  -36.85421909,
                        22.12673416,  174.2725799 ], shape=(68661,)),
               'avg_v3_B': array([-5.89710859, 43.42300709, 32.83768702, ..., 11.85415926,
                      -7.98533257, 77.70872601], shape=(68661,))},
              np.float64(157.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.92215195,   92.82417514, -135.98850935, ...,  -37.02001199,
                        22.25112799,  178.86461204], shape=(68661,)),
               'avg_v3_A': array([-5.31095182, 44.42180846, 32.14574078, ..., 11.25322053,
                      -7.607654  , 77.76861897], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.92215195,   92.82417514, -135.98850935, ...,  -37.02001199,
                        22.25112799,  178.86461204], shape=(68661,)),
               'avg_v3_B': array([-5.31095182, 44.42180846, 32.14574078, ..., 11.25322053,
                      -7.607654  , 77.76861897], shape=(68661,))},
              np.float64(158.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.99082971,   92.87134278, -135.54668587, ...,  -37.17674518,
                        22.36918882, -176.5284043 ], shape=(68661,)),
               'avg_v3_A': array([-4.72376477, 45.42057033, 31.44815084, ..., 10.65003457,
                      -7.22801716, 77.74820612], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.99082971,   92.87134278, -135.54668587, ...,  -37.17674518,
                        22.36918882, -176.5284043 ], shape=(68661,)),
               'avg_v3_B': array([-4.72376477, 45.42057033, 31.44815084, ..., 10.65003457,
                      -7.22801716, 77.74820612], shape=(68661,))},
              np.float64(159.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  36.05109727,   92.92114159, -135.12009658, ...,  -37.32447592,
                        22.48091159, -171.96691697], shape=(68661,)),
               'avg_v3_A': array([-4.13566727, 46.4192898 , 30.74515143, ..., 10.04473161,
                      -6.84652595, 77.64788566], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  36.05109727,   92.92114159, -135.12009658, ...,  -37.32447592,
                        22.48091159, -171.96691697], shape=(68661,)),
               'avg_v3_B': array([-4.13566727, 46.4192898 , 30.74515143, ..., 10.04473161,
                      -6.84652595, 77.64788566], shape=(68661,))},
              np.float64(160.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  36.10297521,   92.97374862, -134.7083922 , ...,  -37.46325866,
                        22.58629188, -167.50791052], shape=(68661,)),
               'avg_v3_A': array([-3.54677854, 47.41796373, 30.03696847, ...,  9.43744037,
                      -6.46328413, 77.46957709], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  36.10297521,   92.97374862, -134.7083922 , ...,  -37.46325866,
                        22.58629188, -167.50791052], shape=(68661,)),
               'avg_v3_B': array([-3.54677854, 47.41796373, 30.03696847, ...,  9.43744037,
                      -6.46328413, 77.46957709], shape=(68661,))},
              np.float64(161.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  36.14648142,   93.02935818, -134.31123238, ...,  -37.59314503,
                        22.68532585, -163.20092984], shape=(68661,)),
               'avg_v3_A': array([-2.9572173 , 48.41658866, 29.32381984, ...,  8.82828812,
                      -6.07839526, 77.21654408], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  36.14648142,   93.02935818, -134.31123238, ...,  -37.59314503,
                        22.68532585, -163.20092984], shape=(68661,)),
               'avg_v3_B': array([-2.9572173 , 48.41658866, 29.32381984, ...,  8.82828812,
                      -6.07839526, 77.21654408], shape=(68661,))},
              np.float64(162.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  36.18163108,   93.08818401, -133.92828608, ...,  -37.71418367,
                        22.77801017, -159.08538152], shape=(68661,)),
               'avg_v3_A': array([-2.36710178, 49.4151608 , 28.60591577, ...,  8.21740081,
                      -5.69196275, 76.89311462], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  36.18163108,   93.08818401, -133.92828608, ...,  -37.71418367,
                        22.77801017, -159.08538152], shape=(68661,)),
               'avg_v3_B': array([-2.36710178, 49.4151608 , 28.60591577, ...,  8.21740081,
                      -5.69196275, 76.89311462], shape=(68661,))},
              np.float64(163.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  36.20843664,   93.15046166, -133.55923179, ...,  -37.82642026,
                        22.864342  , -155.18937062], shape=(68661,)),
               'avg_v3_A': array([-1.77654987, 50.41367601, 27.88345906, ...,  7.6049031 ,
                      -5.30408986, 76.50435021], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  36.20843664,   93.15046166, -133.55923179, ...,  -37.82642026,
                        22.864342  , -155.18937062], shape=(68661,)),
               'avg_v3_B': array([-1.77654987, 50.41367601, 27.88345906, ...,  7.6049031 ,
                      -5.30408986, 76.50435021], shape=(68661,))},
              np.float64(164.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  36.22690779,   93.21645129, -133.20375773, ...,  -37.92989735,
                        22.94431891, -151.5299436 ], shape=(68661,)),
               'avg_v3_A': array([-1.18567916, 51.41212968, 27.15664546, ...,  6.99091849,
                      -4.91487967, 76.05571582], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  36.22690779,   93.21645129, -133.20375773, ...,  -37.92989735,
                        22.94431891, -151.5299436 ], shape=(68661,)),
               'avg_v3_B': array([-1.18567916, 51.41212968, 27.15664546, ...,  6.99091849,
                      -4.91487967, 76.05571582], shape=(68661,))},
              np.float64(165.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  36.23705145,   93.28644099, -132.86156198, ...,  -38.02465442,
                        23.01793887, -148.11435308], shape=(68661,)),
               'avg_v3_A': array([-0.59460702, 52.41051677, 26.42566394, ...,  6.37556937,
                      -4.52443514, 75.55278953], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  36.23705145,   93.28644099, -132.86156198, ...,  -38.02465442,
                        23.01793887, -148.11435308], shape=(68661,)),
               'avg_v3_B': array([-0.59460702, 52.41051677, 26.42566394, ...,  6.37556937,
                      -4.52443514, 75.55278953], shape=(68661,))},
              np.float64(166.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  36.23887177,   93.36075049, -132.53235261, ...,  -38.11072771,
                        23.08520018, -144.94188176], shape=(68661,)),
               'avg_v3_A': array([-3.45067124e-03,  5.34088317e+01,  2.56906970e+01, ...,
                       5.75897716e+00, -4.13285907e+00,  7.50010335e+01], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  36.23887177,   93.36075049, -132.53235261, ...,  -38.11072771,
                        23.08520018, -144.94188176], shape=(68661,)),
               'avg_v3_B': array([-3.45067124e-03,  5.34088317e+01,  2.56906970e+01, ...,
                       5.75897716e+00, -4.13285907e+00,  7.50010335e+01], shape=(68661,))},
              np.float64(167.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  36.23237013,   93.43973562, -132.21584765, ...,  -38.1881503 ,
                        23.14610144, -142.0058198 ], shape=(68661,)),
               'avg_v3_A': array([ 0.58767273, 54.40706813, 24.95192089, ...,  5.14126233,
                      -3.74025412, 74.40563209], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  36.23237013,   93.43973562, -132.21584765, ...,  -38.1881503 ,
                        23.14610144, -142.0058198 ], shape=(68661,)),
               'avg_v3_B': array([ 0.58767273, 54.40706813, 24.95192089, ...,  5.14126233,
                      -3.74025412, 74.40563209], shape=(68661,))},
              np.float64(168.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  36.21754512,   93.5237935 , -131.91177518, ...,  -38.25695196,
                        23.20064153, -139.29531343], shape=(68661,)),
               'avg_v3_A': array([ 1.17864601, 55.40521921, 24.20950605, ...,  4.52254455,
                      -3.34672284, 73.7713905 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  36.21754512,   93.5237935 , -131.91177518, ...,  -38.25695196,
                        23.20064153, -139.29531343], shape=(68661,)),
               'avg_v3_B': array([ 1.17864601, 55.40521921, 24.20950605, ...,  4.52254455,
                      -3.34672284, 73.7713905 ], shape=(68661,))},
              np.float64(169.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  36.19439254,   93.61336861, -131.61987329, ...,  -38.31715918,
                        23.24881957, -136.79693165], shape=(68661,)),
               'avg_v3_A': array([ 1.76935191, 56.40327715, 23.46361721, ...,  3.90294273,
                      -2.95236766, 73.10268417], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  36.19439254,   93.61336861, -131.61987329, ...,  -38.31715918,
                        23.24881957, -136.79693165], shape=(68661,)),
               'avg_v3_B': array([ 1.76935191, 56.40327715, 23.46361721, ...,  3.90294273,
                      -2.95236766, 73.10268417], shape=(68661,))},
              np.float64(170.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  36.16290546,   93.70896006, -131.33989001, ...,  -38.36879514,
                        23.29063487, -134.49589881], shape=(68661,)),
               'avg_v3_A': array([ 2.35967301, 57.40123325, 22.71441376, ...,  3.28257513,
                      -2.5572909 , 72.40344435], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  36.16290546,   93.70896006, -131.33989001, ...,  -38.36879514,
                        23.29063487, -134.49589881], shape=(68661,)),
               'avg_v3_B': array([ 2.35967301, 57.40123325, 22.71441376, ...,  3.28257513,
                      -2.5572909 , 72.40344435], shape=(68661,))},
              np.float64(171.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  36.12307415,   93.81113012, -131.07158328, ...,  -38.41187963,
                        23.32608696, -132.37700527], shape=(68661,)),
               'avg_v3_A': array([ 2.94949165, 58.39907769, 21.96204997, ...,  2.66155946,
                      -2.16159481, 71.67716899], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  36.12307415,   93.81113012, -131.07158328, ...,  -38.41187963,
                        23.32608696, -132.37700527], shape=(68661,)),
               'avg_v3_B': array([ 2.94949165, 58.39907769, 21.96204997, ...,  2.66155946,
                      -2.16159481, 71.67716899], shape=(68661,))},
              np.float64(172.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  36.07488618,   93.92051449, -130.81472084, ...,  -38.44642909,
                        23.35517549, -130.42524161], shape=(68661,)),
               'avg_v3_A': array([ 3.53868985, 59.39679941, 21.20667526, ...,  2.04001293,
                      -1.76538152, 70.92694899], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  36.07488618,   93.92051449, -130.81472084, ...,  -38.44642909,
                        23.35517549, -130.42524161], shape=(68661,)),
               'avg_v3_B': array([ 3.53868985, 59.39679941, 21.20667526, ...,  2.04001293,
                      -1.76538152, 70.92694899], shape=(68661,))},
              np.float64(173.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  36.01832638,   94.03783466, -130.56908015, ...,  -38.47245658,
                        23.3779003 , -128.6262123 ], shape=(68661,)),
               'avg_v3_A': array([ 4.12714924, 60.39438586, 20.44843443, ...,  1.41805239,
                      -1.36875312, 70.15550267], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  36.01832638,   94.03783466, -130.56908015, ...,  -38.47245658,
                        23.3779003 , -128.6262123 ], shape=(68661,)),
               'avg_v3_B': array([ 4.12714924, 60.39438586, 20.44843443, ...,  1.41805239,
                      -1.36875312, 70.15550267], shape=(68661,))},
              np.float64(174.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.95337687,   94.16391274, -130.33444828, ...,  -38.48997171,
                        23.39426132, -126.9663832 ], shape=(68661,)),
               'avg_v3_A': array([ 4.71475098, 61.39182273, 19.6874679 , ...,  0.79579435,
                      -0.97181163, 69.3652135 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.95337687,   94.16391274, -130.33444828, ...,  -38.48997171,
                        23.39426132, -126.9663832 ], shape=(68661,)),
               'avg_v3_B': array([ 4.71475098, 61.39182273, 19.6874679 , ...,  0.79579435,
                      -0.97181163, 69.3652135 ], shape=(68661,))},
              np.float64(175.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.88001714,   94.29968954, -130.11062177, ...,  -38.49898071,
                        23.40425865, -125.43320958], shape=(68661,)),
               'avg_v3_A': array([ 5.30137569, 62.38909366, 18.92391194, ...,  0.17335513,
                      -0.57465903, 68.55816787], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.88001714,   94.29968954, -130.11062177, ...,  -38.49898071,
                        23.40425865, -125.43320958], shape=(68661,)),
               'avg_v3_B': array([ 5.30137569, 62.38909366, 18.92391194, ...,  0.17335513,
                      -0.57465903, 68.55816787], shape=(68661,))},
              np.float64(176.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.79822403,   94.44624675, -129.89740653, ...,  -38.49948637,
                        23.40789244, -124.01518178], shape=(68661,)),
               'avg_v3_A': array([ 5.88690337, 63.38617985, 18.1578989 , ..., -0.44914906,
                      -0.17739727, 67.73619103], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.79822403,   94.44624675, -129.89740653, ...,  -38.49948637,
                        23.40789244, -124.01518178], shape=(68661,)),
               'avg_v3_B': array([ 5.88690337, 63.38617985, 18.1578989 , ..., -0.44914906,
                      -0.17739727, 67.73619103], shape=(68661,))},
              np.float64(177.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.70797178,   94.60483416, -129.69461768, ...,  -38.49148804,
                        23.40516299, -122.70181654], shape=(68661,)),
               'avg_v3_A': array([ 6.47121331, 64.3830596 , 17.38955739, ..., -1.07160209,
                       0.21987174, 66.90088007], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.70797178,   94.60483416, -129.69461768, ...,  -38.49148804,
                        23.40516299, -122.70181654], shape=(68661,)),
               'avg_v3_B': array([ 6.47121331, 64.3830596 , 17.38955739, ..., -1.07160209,
                       0.21987174, 66.90088007], shape=(68661,))},
              np.float64(178.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.6092321 ,   94.77690348, -129.50207945, ...,  -38.47498165,
                        23.39607069, -121.48361461], shape=(68661,)),
               'avg_v3_A': array([ 7.05418406, 65.37970766, 16.61901253, ..., -1.69388773,
                       0.61704607, 66.05363356], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.6092321 ,   94.77690348, -129.50207945, ...,  -38.47498165,
                        23.39607069, -121.48361461], shape=(68661,)),
               'avg_v3_B': array([ 7.05418406, 65.37970766, 16.61901253, ..., -1.69388773,
                       0.61704607, 66.05363356], shape=(68661,))},
              np.float64(179.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.5019742 ,   94.96415071, -129.319625  , ...,  -38.4499597 ,
                        23.38061603, -120.3519988 ], shape=(68661,)),
               'avg_v3_A': array([ 7.63569331, 66.37609459, 15.84638614, ..., -2.31588967,
                       1.0140238 , 65.19567784], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.5019742 ,   94.96415071, -129.319625  , ...,  -38.4499597 ,
                        23.38061603, -120.3519988 ], shape=(68661,)),
               'avg_v3_B': array([ 7.63569331, 66.37609459, 15.84638614, ..., -2.31588967,
                       1.0140238 , 65.19567784], shape=(68661,))},
              np.float64(180.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.38616485,   95.16856953, -129.14709632, ...,  -38.41641126,
                        23.35879961, -119.29924251], shape=(68661,)),
               'avg_v3_A': array([ 8.21561783, 67.37218574, 15.0717969 , ..., -2.93749131,
                       1.41070298, 64.32808998], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.38616485,   95.16856953, -129.14709632, ...,  -38.41641126,
                        23.35879961, -119.29924251], shape=(68661,)),
               'avg_v3_B': array([ 8.21561783, 67.37218574, 15.0717969 , ..., -2.93749131,
                       1.41070298, 64.32808998], shape=(68661,))},
              np.float64(181.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.26176842,   95.3925193 , -128.98434405, ...,  -38.37432198,
                        23.33062215, -118.31839504], shape=(68661,)),
               'avg_v3_A': array([ 8.79383341, 68.36794011, 14.29536058, ..., -3.55857579,
                       1.80698163, 63.45181771], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.26176842,   95.3925193 , -128.98434405, ...,  -38.37432198,
                        23.33062215, -118.31839504], shape=(68661,)),
               'avg_v3_B': array([ 8.79383341, 68.36794011, 14.29536058, ..., -3.55857579,
                       1.80698163, 63.45181771], shape=(68661,))},
              np.float64(182.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  35.12874699,   95.63881265, -128.83122741, ...,  -38.32367414,
                        23.2960845 , -117.40320793], shape=(68661,)),
               'avg_v3_A': array([ 9.37021478, 69.36330881, 13.5171902 , ..., -4.17902581,
                       2.20275774, 62.56769676], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  35.12874699,   95.63881265, -128.83122741, ...,  -38.32367414,
                        23.2960845 , -117.40320793], shape=(68661,)),
               'avg_v3_B': array([ 9.37021478, 69.36330881, 13.5171902 , ..., -4.17902581,
                       2.20275774, 62.56769676], shape=(68661,))},
              np.float64(183.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  34.9870604 ,   95.91082921, -128.687614  , ...,  -38.26444659,
                        23.25518764, -116.54806466], shape=(68661,)),
               'avg_v3_A': array([ 9.94463552, 70.35823306, 12.73739621, ..., -4.79872359,
                       2.59792923, 61.67646567], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  34.9870604 ,   95.91082921, -128.687614  , ...,  -38.26444659,
                        23.25518764, -116.54806466], shape=(68661,)),
               'avg_v3_B': array([ 9.94463552, 70.35823306, 12.73739621, ..., -4.79872359,
                       2.59792923, 61.67646567], shape=(68661,))},
              np.float64(184.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  34.83666632,   96.21266552, -128.55337972, ...,  -38.19661485,
                        23.20793273, -115.74791523], shape=(68661,)),
               'avg_v3_A': array([10.51696802, 71.35264158, 11.95608668, ..., -5.41755079,
                       2.99239393, 60.7787786 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  34.83666632,   96.21266552, -128.55337972, ...,  -38.19661485,
                        23.20793273, -115.74791523], shape=(68661,)),
               'avg_v3_B': array([10.51696802, 71.35264158, 11.95608668, ..., -5.41755079,
                       2.99239393, 60.7787786 ], shape=(68661,))},
              np.float64(185.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  34.67752038,   96.54933469, -128.42840861, ...,  -38.12015108,
                        23.15432109, -114.99821615], shape=(68661,)),
               'avg_v3_A': array([11.0870834 , 72.34644708, 11.17336743, ..., -6.03538838,
                       3.38604964, 59.87521639], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  34.67752038,   96.54933469, -128.42840861, ...,  -38.12015108,
                        23.15432109, -114.99821615], shape=(68661,)),
               'avg_v3_B': array([11.0870834 , 72.34644708, 11.17336743, ..., -6.03538838,
                       3.38604964, 59.87521639], shape=(68661,))},
              np.float64(186.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  34.5095762 ,   96.92703651, -128.31259276, ...,  -38.03502414,
                        23.09435424, -114.29487605], shape=(68661,)),
               'avg_v3_A': array([11.65485144, 73.3395415 , 10.38934222, ..., -6.65211658,
                       3.77879401, 58.96629593], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  34.5095762 ,   96.92703651, -128.31259276, ...,  -38.03502414,
                        23.09435424, -114.29487605], shape=(68661,)),
               'avg_v3_B': array([11.65485144, 73.3395415 , 10.38934222, ..., -6.65211658,
                       3.77879401, 58.96629593], shape=(68661,))},
              np.float64(187.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  34.33278557,   97.35352852, -128.20583221, ...,  -37.94119961,
                        23.02803395, -113.63420672], shape=(68661,)),
               'avg_v3_A': array([12.22014049, 74.33178951,  9.60411289, ..., -7.26761478,
                       4.17052463, 58.05247836], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  34.33278557,   97.35352852, -128.20583221, ...,  -37.94119961,
                        23.02803395, -113.63420672], shape=(68661,)),
               'avg_v3_B': array([12.22014049, 74.33178951,  9.60411289, ..., -7.26761478,
                       4.17052463, 58.05247836], shape=(68661,))},
              np.float64(188.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  34.14709852,   97.83864459, -128.10803477, ...,  -37.83863983,
                        22.95536224, -113.01287939], shape=(68661,)),
               'avg_v3_A': array([12.78281746, 75.32301928,  8.81777954, ..., -7.88176142,
                       4.56113897, 57.13417599], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  34.14709852,   97.83864459, -128.10803477, ...,  -37.83863983,
                        22.95536224, -113.01287939], shape=(68661,)),
               'avg_v3_B': array([12.78281746, 75.32301928,  8.81777954, ..., -7.88176142,
                       4.56113897, 57.13417599], shape=(68661,))},
              np.float64(189.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  33.95246343,   98.39503375, -128.01911601, ...,  -37.72730392,
                        22.87634142, -112.42788571], shape=(68661,)),
               'avg_v3_A': array([13.3427477 , 76.31300945,  8.03044064, ..., -8.49443392,
                       4.95053436, 56.2117584 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  33.95246343,   98.39503375, -128.01911601, ...,  -37.72730392,
                        22.87634142, -112.42788571], shape=(68661,)),
               'avg_v3_B': array([13.3427477 , 76.31300945,  8.03044064, ..., -8.49443392,
                       4.95053436, 56.2117584 ], shape=(68661,))},
              np.float64(190.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  33.74882721,   99.03923586, -127.93899912, ...,  -37.60714788,
                        22.79097414, -111.87650318], shape=(68661,)),
               'avg_v3_A': array([13.89979496, 77.30146996,  7.24219322, ..., -9.10550863,
                       5.33860802, 55.28555759], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  33.74882721,   99.03923586, -127.93899912, ...,  -37.60714788,
                        22.79097414, -111.87650318], shape=(68661,)),
               'avg_v3_B': array([13.89979496, 77.30146996,  7.24219322, ..., -9.10550863,
                       5.33860802, 55.28555759], shape=(68661,))},
              np.float64(191.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  33.53613541,   99.79328565, -127.86761482, ...,  -37.4781246 ,
                        22.69926341, -111.3562644 ], shape=(68661,)),
               'avg_v3_A': array([14.45382135, 78.28801336,  6.45313298, ..., -9.71486067,
                       5.72525702, 54.35587251], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  33.53613541,   99.79328565, -127.86761482, ...,  -37.4781246 ,
                        22.69926341, -111.3562644 ], shape=(68661,)),
               'avg_v3_B': array([14.45382135, 78.28801336,  6.45313298, ..., -9.71486067,
                       5.72525702, 54.35587251], shape=(68661,))},
              np.float64(192.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  33.31433237,  100.68717075, -127.8049013 , ...,  -37.34018394,
                        22.60121267, -110.8649299 ], shape=(68661,)),
               'avg_v3_A': array([ 15.00468725,  79.2721106 ,   5.66335444, ..., -10.32236388,
                        6.11037829,  53.42297291], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  33.31433237,  100.68717075, -127.8049013 , ...,  -37.34018394,
                        22.60121267, -110.8649299 ], shape=(68661,)),
               'avg_v3_B': array([ 15.00468725,  79.2721106 ,   5.66335444, ..., -10.32236388,
                        6.11037829,  53.42297291], shape=(68661,))},
              np.float64(193.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  33.08336142,  101.76271662, -127.75080414, ...,  -37.19327278,
                        22.49682579, -110.40046409], shape=(68661,)),
               'avg_v3_A': array([ 15.55225127,  80.25302059,   4.87295108, ..., -10.92789076,
                        6.49386862,  52.48710274], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  33.08336142,  101.76271662, -127.75080414, ...,  -37.19327278,
                        22.49682579, -110.40046409], shape=(68661,)),
               'avg_v3_B': array([ 15.55225127,  80.25302059,   4.87295108, ..., -10.92789076,
                        6.49386862,  52.48710274], shape=(68661,))},
              np.float64(194.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  32.843165  ,  103.0799459 , -127.70527624, ...,  -37.03733511,
                        22.38610719, -109.96101395], shape=(68661,)),
               'avg_v3_A': array([ 16.0963702 ,  81.22967369,   4.08201547, ..., -11.53131234,
                        6.87562464,  51.54848311], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  32.843165  ,  103.0799459 , -127.70527624, ...,  -37.03733511,
                        22.38610719, -109.96101395], shape=(68661,)),
               'avg_v3_B': array([ 16.0963702 ,  81.22967369,   4.08201547, ..., -11.53131234,
                        6.87562464,  51.54848311], shape=(68661,))},
              np.float64(195.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  32.59368491,  104.72791463, -127.66827777, ...,  -36.87231212,
                        22.26906181, -109.54489015], shape=(68661,)),
               'avg_v3_A': array([ 16.63689895,  82.20047047,   3.29063942, ..., -12.1324981 ,
                        7.25554282,  50.60731481], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  32.59368491,  104.72791463, -127.66827777, ...,  -36.87231212,
                        22.26906181, -109.54489015], shape=(68661,)),
               'avg_v3_B': array([ 16.63689895,  82.20047047,   3.29063942, ..., -12.1324981 ,
                        7.25554282,  50.60731481], shape=(68661,))},
              np.float64(196.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  32.33486247,  106.84403758, -127.63977614, ...,  -36.69814227,
                        22.14569524, -109.15055037], shape=(68661,)),
               'avg_v3_A': array([ 17.17369052,  83.16291572,   2.49891409, ..., -12.73131591,
                        7.63351947,  49.66378056], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  32.33486247,  106.84403758, -127.63977614, ...,  -36.69814227,
                        22.14569524, -109.15055037], shape=(68661,)),
               'avg_v3_B': array([ 17.17369052,  83.16291572,   2.49891409, ..., -12.73131591,
                        7.63351947,  49.66378056], shape=(68661,))},
              np.float64(197.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  32.06663874,  109.65035338, -127.61974594, ...,  -36.51476139,
                        22.01601372, -108.77658445], shape=(68661,)),
               'avg_v3_A': array([ 17.70659595,  84.11291184,   1.70693013, ..., -13.32763194,
                        8.00945075,  48.71804697], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  32.06663874,  109.65035338, -127.61974594, ...,  -36.51476139,
                        22.01601372, -108.77658445], shape=(68661,)),
               'avg_v3_B': array([ 17.70659595,  84.11291184,   1.70693013, ..., -13.32763194,
                        8.00945075,  48.71804697], shape=(68661,))},
              np.float64(198.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  31.7889548 ,  113.52533807, -127.6081689 , ...,  -36.32210281,
                        21.88002424, -108.42170131], shape=(68661,)),
               'avg_v3_A': array([ 18.23546428,  85.04329556,   0.91477781, ..., -13.92131056,
                        8.38323266,  47.77026625], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  31.7889548 ,  113.52533807, -127.6081689 , ...,  -36.32210281,
                        21.88002424, -108.42170131], shape=(68661,)),
               'avg_v3_B': array([ 18.23546428,  85.04329556,   0.91477781, ..., -13.92131056,
                        8.38323266,  47.77026625], shape=(68661,))},
              np.float64(199.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  31.5017519 ,  119.15283912, -127.60503389, ...,  -36.12009744,
                        21.7377346 , -108.08471719], shape=(68661,)),
               'avg_v3_A': array([ 18.76014252,  85.94055939,   0.12254715, ..., -14.51221426,
                        8.75476103,  46.82057772], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  31.5017519 ,  119.15283912, -127.60503389, ...,  -36.12009744,
                        21.7377346 , -108.08471719], shape=(68661,)),
               'avg_v3_B': array([ 18.76014252,  85.94055939,   0.12254715, ..., -14.51221426,
                        8.75476103,  46.82057772], shape=(68661,))},
              np.float64(200.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  31.20497181,  127.83027358, -127.61033691, ...,  -35.90867396,
                        21.58915345, -107.76454536], shape=(68661,)),
               'avg_v3_A': array([ 19.28047561,  86.77692296,  -0.66967197, ..., -15.10020359,
                        9.12393157,  45.86910912], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  31.20497181,  127.83027358, -127.61033691, ...,  -35.90867396,
                        21.58915345, -107.76454536], shape=(68661,)),
               'avg_v3_B': array([ 19.28047561,  86.77692296,  -0.66967197, ..., -15.10020359,
                        9.12393157,  45.86910912], shape=(68661,))},
              np.float64(201.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  30.89855705,  141.96212953, -127.62408105, ...,  -35.68775889,
                        21.43429039, -107.4601868 ], shape=(68661,)),
               'avg_v3_A': array([ 19.79630642,  87.49073232,  -1.46178966, ..., -15.68513707,
                        9.49063979,  44.9159778 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  30.89855705,  141.96212953, -127.62408105, ...,  -35.68775889,
                        21.43429039, -107.4601868 ], shape=(68661,)),
               'avg_v3_B': array([ 19.79630642,  87.49073232,  -1.46178966, ..., -15.68513707,
                        9.49063979,  44.9159778 ], shape=(68661,))},
              np.float64(202.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  30.58245118,  164.53693863, -127.64627652, ...,  -35.4572768 ,
                        21.27315603, -107.17072202], shape=(68661,)),
               'avg_v3_A': array([ 20.30747571,  87.94971643,  -2.25371588, ..., -16.26687109,
                        9.85478112,  43.96129175], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  30.58245118,  164.53693863, -127.64627652, ...,  -35.4572768 ,
                        21.27315603, -107.17072202], shape=(68661,)),
               'avg_v3_B': array([ 20.30747571,  87.94971643,  -2.25371588, ..., -16.26687109,
                        9.85478112,  43.96129175], shape=(68661,))},
              np.float64(203.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  30.25659914, -167.09164646, -127.67694065, ...,  -35.21715045,
                        21.10576206, -106.89530364], shape=(68661,)),
               'avg_v3_A': array([ 20.81382214,  87.97269968,  -3.04536036, ..., -16.84525988,
                       10.21625083,  43.00515053], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  30.25659914, -167.09164646, -127.67694065, ...,  -35.21715045,
                        21.10576206, -106.89530364], shape=(68661,)),
               'avg_v3_B': array([ 20.81382214,  87.97269968,  -3.04536036, ..., -16.84525988,
                       10.21625083,  43.00515053], shape=(68661,))},
              np.float64(204.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  29.92094752, -143.6876627 , -127.71609791, ...,  -34.96730098,
                        20.93212135, -106.63314989], shape=(68661,)),
               'avg_v3_A': array([ 21.31518222,  87.54739815,  -3.83663244, ..., -17.4201554 ,
                       10.57494406,  42.04764603], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  29.92094752, -143.6876627 , -127.71609791, ...,  -34.96730098,
                        20.93212135, -106.63314989], shape=(68661,)),
               'avg_v3_B': array([ 21.31518222,  87.54739815,  -3.83663244, ..., -17.4201554 ,
                       10.57494406,  42.04764603], shape=(68661,))},
              np.float64(205.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  29.57544495, -128.87660927, -127.76377996, ...,  -34.70764811,
                        20.75224802, -106.38353864], shape=(68661,)),
               'avg_v3_A': array([ 21.81139039,  86.85046289,  -4.62744095, ..., -17.9914073 ,
                       10.93075587,  41.08886329], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  29.57544495, -128.87660927, -127.76377996, ...,  -34.70764811,
                        20.75224802, -106.38353864], shape=(68661,)),
               'avg_v3_B': array([ 21.81139039,  86.85046289,  -4.62744095, ..., -17.9914073 ,
                       10.93075587,  41.08886329], shape=(68661,))},
              np.float64(206.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  29.22004244, -119.81082356, -127.82002562, ...,  -34.43811033,
                        20.5661575 , -106.14580222], shape=(68661,)),
               'avg_v3_A': array([ 22.30227894,  86.02219437,  -5.41769406, ..., -18.55886281,
                       11.28358121,  40.12888103], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  29.22004244, -119.81082356, -127.82002562, ...,  -34.43811033,
                        20.5661575 , -106.14580222], shape=(68661,)),
               'avg_v3_B': array([ 22.30227894,  86.02219437,  -5.41769406, ..., -18.55886281,
                       11.28358121,  40.12888103], shape=(68661,))},
              np.float64(207.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  28.85469376, -113.96558872, -127.88488101, ...,  -34.15860515,
                        20.37386664, -105.91932259], shape=(68661,)),
               'avg_v3_A': array([ 22.7876781 ,  85.12913564,  -6.20729917, ..., -19.12236673,
                       11.63331497,  39.16777235], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  28.85469376, -113.96558872, -127.88488101, ...,  -34.15860515,
                        20.37386664, -105.91932259], shape=(68661,)),
               'avg_v3_B': array([ 22.7876781 ,  85.12913564,  -6.20729917, ..., -19.12236673,
                       11.63331497,  39.16777235], shape=(68661,))},
              np.float64(208.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  28.47935582, -109.96185929, -127.95839949, ...,  -33.86904934,
                        20.17539382, -105.70352716], shape=(68661,)),
               'avg_v3_A': array([ 23.26741603,  84.2011441 ,  -6.99616279, ..., -19.68176132,
                       11.97985196,  38.20560514], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  28.47935582, -109.96185929, -127.95839949, ...,  -33.86904934,
                        20.17539382, -105.70352716], shape=(68661,)),
               'avg_v3_B': array([ 23.26741603,  84.2011441 ,  -6.99616279, ..., -19.68176132,
                       11.97985196,  38.20560514], shape=(68661,))},
              np.float64(209.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  28.09398909, -107.07468582, -128.04064182, ...,  -33.56935918,
                        19.97075898, -105.49788492], shape=(68661,)),
               'avg_v3_A': array([ 23.74131886,  83.25261775,  -7.78419037, ..., -20.2368863 ,
                       12.32308699,  37.24244259], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  28.09398909, -107.07468582, -128.04064182, ...,  -33.56935918,
                        19.97075898, -105.49788492], shape=(68661,)),
               'avg_v3_B': array([ 23.74131886,  83.25261775,  -7.78419037, ..., -20.2368863 ,
                       12.32308699,  37.24244259], shape=(68661,))},
              np.float64(210.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  27.69855803, -104.90499982, -128.13167616, ...,  -33.25945079,
                        19.75998376, -105.30190301], shape=(68661,)),
               'avg_v3_A': array([ 24.20921073,  82.29113299,  -8.57128618, ..., -20.78757873,
                       12.66291483,  36.27834363], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  27.69855803, -104.90499982, -128.13167616, ...,  -33.25945079,
                        19.75998376, -105.30190301], shape=(68661,)),
               'avg_v3_B': array([ 24.20921073,  82.29113299,  -8.57128618, ..., -20.78757873,
                       12.66291483,  36.27834363], shape=(68661,))},
              np.float64(211.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  27.29303154, -103.21992976, -128.23157818, ...,  -32.93924037,
                        19.54309159, -105.11512358], shape=(68661,)),
               'avg_v3_A': array([ 24.67091389,  81.32099557,  -9.35735317, ..., -21.33367303,
                       12.99923029,  35.31336323], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  27.29303154, -103.21992976, -128.23157818, ...,  -32.93924037,
                        19.54309159, -105.11512358], shape=(68661,)),
               'avg_v3_B': array([ 24.67091389,  81.32099557,  -9.35735317, ..., -21.33367303,
                       12.99923029,  35.31336323], shape=(68661,))},
              np.float64(212.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  26.87738339, -101.876033  , -128.34043112, ...,  -32.60864456,
                        19.32010774, -104.93712103], shape=(68661,)),
               'avg_v3_A': array([ 25.12624868,  80.34481345, -10.14229284, ..., -21.8750009 ,
                       13.3319282 ,  34.34755283], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  26.87738339, -101.876033  , -128.34043112, ...,  -32.60864456,
                        19.32010774, -104.93712103], shape=(68661,)),
               'avg_v3_B': array([ 25.12624868,  80.34481345, -10.14229284, ..., -21.8750009 ,
                       13.3319282 ,  34.34755283], shape=(68661,))},
              np.float64(213.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  26.45159275, -100.78071944, -128.45832587, ...,  -32.26758079,
                        19.09105948, -104.76749941], shape=(68661,)),
               'avg_v3_A': array([ 25.57503371,  79.36425102, -10.92600508, ..., -22.4113913 ,
                       13.6609035 ,  33.38096056], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  26.45159275, -100.78071944, -128.45832587, ...,  -32.26758079,
                        19.09105948, -104.76749941], shape=(68661,)),
               'avg_v3_B': array([ 25.57503371,  79.36425102, -10.92600508, ..., -22.4113913 ,
                       13.6609035 ,  33.38096056], shape=(68661,))},
              np.float64(214.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  26.0156446 ,  -99.87179689, -128.58536112, ...,  -31.91596764,
                        18.85597613, -104.60589014], shape=(68661,)),
               'avg_v3_A': array([ 26.01708587,  78.38041727, -11.708388  , ..., -22.94267043,
                       13.9860512 ,  32.41363157], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  26.0156446 ,  -99.87179689, -128.58536112, ...,  -31.91596764,
                        18.85597613, -104.60589014], shape=(68661,)),
               'avg_v3_B': array([ 26.01708587,  78.38041727, -11.708388  , ..., -22.94267043,
                       13.9860512 ,  32.41363157], shape=(68661,))},
              np.float64(215.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  25.56953033,  -99.10605384, -128.72164338, ...,  -31.55372523,
                        18.61488918, -104.45194994], shape=(68661,)),
               'avg_v3_A': array([ 26.45222048,  77.39407823, -12.48933784, ..., -23.4686617 ,
                       14.30726649,  31.44560824], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  25.56953033,  -99.10605384, -128.72164338, ...,  -31.55372523,
                        18.61488918, -104.45194994], shape=(68661,)),
               'avg_v3_B': array([ 26.45222048,  77.39407823, -12.48933784, ..., -23.4686617 ,
                       14.30726649,  31.44560824], shape=(68661,))},
              np.float64(216.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  25.11324818,  -98.45258598, -128.86728714, ...,  -31.18077563,
                        18.36783236, -104.30535891], shape=(68661,)),
               'avg_v3_A': array([ 26.88025138,  76.40577932, -13.26874873, ..., -23.98918572,
                       14.62444471,  30.47693045], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  25.11324818,  -98.45258598, -128.86728714, ...,  -31.18077563,
                        18.36783236, -104.30535891], shape=(68661,)),
               'avg_v3_B': array([ 26.88025138,  76.40577932, -13.26874873, ..., -23.98918572,
                       14.62444471,  30.47693045], shape=(68661,))},
              np.float64(217.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  24.64680378,  -97.88873394, -129.022415  , ...,  -30.79704334,
                        18.1148418 , -104.16581883], shape=(68661,)),
               'avg_v3_A': array([ 27.30099109,  75.41591908, -14.04651262, ..., -24.5040603 ,
                       14.93748147,  29.50763574], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  24.64680378,  -97.88873394, -129.022415  , ...,  -30.79704334,
                        18.1148418 , -104.16581883], shape=(68661,)),
               'avg_v3_B': array([ 27.30099109,  75.41591908, -14.04651262, ..., -24.5040603 ,
                       14.93748147,  29.50763574], shape=(68661,))},
              np.float64(218.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  24.17021073,  -97.39752091, -129.18715772, ...,  -30.40245571,
                        17.85595606, -104.03305155], shape=(68661,)),
               'avg_v3_A': array([ 27.71425091,  74.4247953 , -14.82251904, ..., -25.01310047,
                       15.24627261,  28.53775953], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  24.17021073,  -97.39752091, -129.18715772, ...,  -30.40245571,
                        17.85595606, -104.03305155], shape=(68661,)),
               'avg_v3_B': array([ 27.71425091,  74.4247953 , -14.82251904, ..., -25.01310047,
                       15.24627261,  28.53775953], shape=(68661,))},
              np.float64(219.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  23.68349109,  -96.96598505, -129.3616544 , ...,  -29.99694345,
                        17.59121625, -103.90679764], shape=(68661,)),
               'avg_v3_A': array([ 28.11984112,  73.43263488, -15.59665496, ..., -25.51611848,
                       15.5507143 ,  27.56733526], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  23.68349109,  -96.96598505, -129.3616544 , ...,  -29.99694345,
                        17.59121625, -103.90679764], shape=(68661,)),
               'avg_v3_B': array([ 28.11984112,  73.43263488, -15.59665496, ..., -25.51611848,
                       15.5507143 ,  27.56733526], shape=(68661,))},
              np.float64(220.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  23.18667593,  -96.58406405, -129.54605258, ...,  -29.58044115,
                        17.32066615, -103.78681504], shape=(68661,)),
               'avg_v3_A': array([ 28.51757116,  72.43961363, -16.36880462, ..., -26.01292384,
                       15.85070309,  26.59639458], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  23.18667593,  -96.58406405, -129.54605258, ...,  -29.58044115,
                        17.32066615, -103.78681504], shape=(68661,)),
               'avg_v3_B': array([ 28.51757116,  72.43961363, -16.36880462, ..., -26.01292384,
                       15.85070309,  26.59639458], shape=(68661,))},
              np.float64(221.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  22.67980593,  -96.2438304 , -129.74050837, ...,  -29.15288782,
                        17.04435229, -103.67287786], shape=(68661,)),
               'avg_v3_A': array([ 28.90724976,  71.44586988, -17.13884935, ..., -26.50332337,
                       16.14613593,  25.62496749], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  22.67980593,  -96.2438304 , -129.74050837, ...,  -29.15288782,
                        17.04435229, -103.67287786], shape=(68661,)),
               'avg_v3_B': array([ 28.90724976,  71.44586988, -17.13884935, ..., -26.50332337,
                       16.14613593,  25.62496749], shape=(68661,))},
              np.float64(222.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  22.16293187,  -95.93895584, -129.94518659, ...,  -28.71422747,
                        16.76232404, -103.56477538], shape=(68661,)),
               'avg_v3_A': array([ 29.28868521,  70.45151395, -17.90666737, ..., -26.98712123,
                       16.43691025,  24.65308241], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  22.16293187,  -95.93895584, -129.94518659, ...,  -28.71422747,
                        16.76232404, -103.56477538], shape=(68661,)),
               'avg_v3_B': array([ 29.28868521,  70.45151395, -17.90666737, ..., -26.98712123,
                       16.43691025,  24.65308241], shape=(68661,))},
              np.float64(223.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  21.63611519,  -95.66432873, -130.16026088, ...,  -28.26440966,
                        16.47463371, -103.46231097], shape=(68661,)),
               'avg_v3_A': array([ 29.66168557,  69.45663484, -18.67213359, ..., -27.46411902,
                       16.72292403,  23.68076638], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  21.63611519,  -95.66432873, -130.16026088, ...,  -28.26440966,
                        16.47463371, -103.46231097], shape=(68661,)),
               'avg_v3_B': array([ 29.66168557,  69.45663484, -18.67213359, ..., -27.46411902,
                       16.72292403,  23.68076638], shape=(68661,))},
              np.float64(224.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  21.09942854,  -95.41577596, -130.38591385, ...,  -27.80339019,
                        16.18133663, -103.36530126], shape=(68661,)),
               'avg_v3_A': array([ 30.02605886,  68.46130518, -19.43511946, ..., -27.93411583,
                       17.0040758 ,  22.70804514], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  21.09942854,  -95.41577596, -130.38591385, ...,  -27.80339019,
                        16.18133663, -103.36530126], shape=(68661,)),
               'avg_v3_B': array([ 30.02605886,  68.46130518, -19.43511946, ..., -27.93411583,
                       17.0040758 ,  22.70804514], shape=(68661,))},
              np.float64(225.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  20.55295629,  -95.18985766, -130.62233721, ...,  -27.33113167,
                        15.88249127, -103.27357528], shape=(68661,)),
               'avg_v3_A': array([ 30.38161337,  67.46558478, -20.1954927 , ..., -28.39690837,
                       17.28026479,  21.73494321], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  20.55295629,  -95.18985766, -130.62233721, ...,  -27.33113167,
                        15.88249127, -103.27357528], shape=(68661,)),
               'avg_v3_B': array([ 30.38161337,  67.46558478, -20.1954927 , ..., -28.39690837,
                       17.28026479,  21.73494321], shape=(68661,))},
              np.float64(226.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  19.99679505,  -94.98371335, -130.86973185, ...,  -26.84760422,
                        15.57815928, -103.18697374], shape=(68661,)),
               'avg_v3_A': array([ 30.72815792,  66.46952337, -20.95311714, ..., -28.85229109,
                       17.55139092,  20.76148401], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  19.99679505,  -94.98371335, -130.86973185, ...,  -26.84760422,
                        15.57815928, -103.18697374], shape=(68661,)),
               'avg_v3_B': array([ 30.72815792,  66.46952337, -20.95311714, ..., -28.85229109,
                       17.55139092,  20.76148401], shape=(68661,))},
              np.float64(227.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  19.43105415,  -94.7949452 , -131.12830802, ...,  -26.35278615,
                        15.26840562, -103.10534829], shape=(68661,)),
               'avg_v3_A': array([ 31.06550211,  65.47316264, -21.70785247, ..., -29.30005626,
                       17.81735492,  19.78768994], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  19.43105415,  -94.7949452 , -131.12830802, ...,  -26.35278615,
                        15.26840562, -103.10534829], shape=(68661,)),
               'avg_v3_B': array([ 31.06550211,  65.47316264, -21.70785247, ..., -29.30005626,
                       17.81735492,  19.78768994], shape=(68661,))},
              np.float64(228.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  18.85585613,  -94.62152839, -131.3982854 , ...,  -25.84666465,
                        14.9532986 , -103.02856097], shape=(68661,)),
               'avg_v3_A': array([ 31.39345665,  64.47653774, -22.45955402, ..., -29.73999417,
                       18.07805836,  18.81358244], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  18.85585613,  -94.62152839, -131.3982854 , ...,  -25.84666465,
                        14.9532986 , -103.02856097], shape=(68661,)),
               'avg_v3_B': array([ 31.39345665,  64.47653774, -22.45955402, ..., -29.73999417,
                       18.07805836,  18.81358244], shape=(68661,))},
              np.float64(229.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  18.27133713,  -94.46174147, -131.67989321, ...,  -25.32923652,
                        14.63290998, -102.95648356], shape=(68661,)),
               'avg_v3_A': array([ 31.71183369,  63.47967861, -23.20807257, ..., -30.17189332,
                       18.33340377,  17.83918211], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  18.27133713,  -94.46174147, -131.67989321, ...,  -25.32923652,
                        14.63290998, -102.95648356], shape=(68661,)),
               'avg_v3_B': array([ 31.71183369,  63.47967861, -23.20807257, ..., -30.17189332,
                       18.33340377,  17.83918211], shape=(68661,))},
              np.float64(230.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  17.67764736,  -94.31411175, -131.97337031, ...,  -24.8005089 ,
                        14.30731501, -102.8889971 ], shape=(68661,)),
               'avg_v3_A': array([ 32.02044709,  62.48261081, -23.95325402, ..., -30.59554053,
                       18.58329466,  16.86450873], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  17.67764736,  -94.31411175, -131.97337031, ...,  -24.8005089 ,
                        14.30731501, -102.8889971 ], shape=(68661,)),
               'avg_v3_B': array([ 32.02044709,  62.48261081, -23.95325402, ..., -30.59554053,
                       18.58329466,  16.86450873], shape=(68661,))},
              np.float64(231.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  17.07495142,  -94.17737206, -132.27896525, ...,  -24.26049998,
                        13.97659253, -102.82599142], shape=(68661,)),
               'avg_v3_A': array([ 32.31911285,  61.48535637, -24.69493923, ..., -31.01072122,
                       18.82763564,  15.88958137], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  17.07495142,  -94.17737206, -132.27896525, ...,  -24.26049998,
                        13.97659253, -102.82599142], shape=(68661,)),
               'avg_v3_B': array([ 32.31911285,  61.48535637, -24.69493923, ..., -31.01072122,
                       18.82763564,  15.88958137], shape=(68661,))},
              np.float64(232.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  16.46342866,  -94.0504262 , -132.59693635, ...,  -23.70923981,
                        13.64082502, -102.76736466], shape=(68661,)),
               'avg_v3_A': array([ 32.60764939,  60.48793434, -25.43296373, ..., -31.41721963,
                       19.06633248,  14.91441839], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  16.46342866,  -94.0504262 , -132.59693635, ...,  -23.70923981,
                        13.64082502, -102.76736466], shape=(68661,)),
               'avg_v3_B': array([ 32.60764939,  60.48793434, -25.43296373, ..., -31.41721963,
                       19.06633248,  14.91441839], shape=(68661,))},
              np.float64(233.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  15.84327343,  -93.93232114, -132.92755171, ...,  -23.14677101,
                        13.30009862, -102.7130229 ], shape=(68661,)),
               'avg_v3_A': array([ 32.88587794,  59.4903613 , -26.16715745, ..., -31.81481903,
                       19.29929222,  13.93903758], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  15.84327343,  -93.93232114, -132.92755171, ...,  -23.14677101,
                        13.30009862, -102.7130229 ], shape=(68661,)),
               'avg_v3_B': array([ 32.88587794,  59.4903613 , -26.16715745, ..., -31.81481903,
                       19.29929222,  13.93903758], shape=(68661,))},
              np.float64(234.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  15.21469533,  -93.82222446, -133.27108924, ...,  -22.57314951,
                        12.95450323, -102.66287982], shape=(68661,)),
               'avg_v3_A': array([ 33.15362296,  58.49265171, -26.89734445, ..., -32.20330205,
                       19.5264232 ,  12.96345612], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  15.21469533,  -93.82222446, -133.27108924, ...,  -22.57314951,
                        12.95450323, -102.66287982], shape=(68661,)),
               'avg_v3_B': array([ 33.15362296,  58.49265171, -26.89734445, ..., -32.20330205,
                       19.5264232 ,  12.96345612], shape=(68661,))},
              np.float64(235.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  14.57791937,  -93.71940592, -133.62783661, ...,  -21.98844532,
                        12.60413251, -102.61685632], shape=(68661,)),
               'avg_v3_A': array([ 33.41071246,  57.49481828, -27.62334267, ..., -32.58245094,
                       19.74763519,  11.98769072], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  14.57791937,  -93.71940592, -133.62783661, ...,  -21.98844532,
                        12.60413251, -102.61685632], shape=(68661,)),
               'avg_v3_B': array([ 33.41071246,  57.49481828, -27.62334267, ..., -32.58245094,
                       19.74763519,  11.98769072], shape=(68661,))},
              np.float64(236.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  13.93318609,  -93.62322233, -133.99809122, ...,  -21.39274328,
                        12.24908391, -102.57488026], shape=(68661,)),
               'avg_v3_A': array([ 33.65697844,  56.49687223, -28.34496362, ..., -32.95204791,
                       19.96283947,  11.01175759], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  13.93318609,  -93.62322233, -133.99809122, ...,  -21.39274328,
                        12.24908391, -102.57488026], shape=(68661,)),
               'avg_v3_B': array([ 33.65697844,  56.49687223, -28.34496362, ..., -32.95204791,
                       19.96283947,  11.01175759], shape=(68661,))},
              np.float64(237.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  13.28075158,  -93.53310498, -134.38216006, ...,  -20.78614369,
                        11.88945872, -102.5368862 ], shape=(68661,)),
               'avg_v3_A': array([ 33.89225727,  55.49882346, -29.0620121 , ..., -33.31187544,
                       20.17194891,  10.03567254], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  13.28075158,  -93.53310498, -134.38216006, ...,  -20.78614369,
                        11.88945872, -102.5368862 ], shape=(68661,)),
               'avg_v3_B': array([ 33.89225727,  55.49882346, -29.0620121 , ..., -33.31187544,
                       20.17194891,  10.03567254], shape=(68661,))},
              np.float64(238.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  12.62088749,  -93.44854924, -134.78035962, ...,  -20.16876311,
                        11.52536209, -102.50281513], shape=(68661,)),
               'avg_v3_A': array([ 34.11639011,  54.50068077, -29.77428589, ..., -33.66171671,
                       20.37487804,   9.05945099], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  12.62088749,  -93.44854924, -134.78035962, ...,  -20.16876311,
                        11.52536209, -102.50281513], shape=(68661,)),
               'avg_v3_B': array([ 34.11639011,  54.50068077, -29.77428589, ..., -33.66171671,
                       20.37487804,   9.05945099], shape=(68661,))},
              np.float64(239.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  11.9538809 ,  -93.36910583, -135.19301562, ...,  -19.54073492,
                        11.156903  , -102.47261426], shape=(68661,)),
               'avg_v3_A': array([ 34.32922328,  53.50245201, -30.48157549, ..., -34.00135588,
                       20.57154319,   8.08310803], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  11.9538809 ,  -93.36910583, -135.19301562, ...,  -19.54073492,
                        11.156903  , -102.47261426], shape=(68661,)),
               'avg_v3_B': array([ 34.32922328,  53.50245201, -30.48157549, ..., -34.00135588,
                       20.57154319,   8.08310803], shape=(68661,))},
              np.float64(240.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  11.28003416,  -93.29437346, -135.6204628 , ...,  -18.90221003,
                        10.78419428, -102.44623686], shape=(68661,)),
               'avg_v3_A': array([ 34.53060873,  52.50414421, -31.18366376, ..., -34.3305786 ,
                       20.76186254,   7.10665845], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  11.28003416,  -93.29437346, -135.6204628 , ...,  -18.90221003,
                        10.78419428, -102.44623686], shape=(68661,)),
               'avg_v3_B': array([ 34.53060873,  52.50414421, -31.18366376, ..., -34.3305786 ,
                       20.76186254,   7.10665845], shape=(68661,))},
              np.float64(241.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  10.59966462,  -93.22399266, -136.06304458, ...,  -18.25335736,
                        10.40735262, -102.42364206], shape=(68661,)),
               'avg_v3_A': array([ 34.72040435,  51.50576364, -31.88032565, ..., -34.64917237,
                       20.94575621,   6.13011677], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  10.59966462,  -93.22399266, -136.06304458, ...,  -18.25335736,
                        10.40735262, -102.42364206], shape=(68661,)),
               'avg_v3_B': array([ 34.72040435,  51.50576364, -31.88032565, ..., -34.64917237,
                       20.94575621,   6.13011677], shape=(68661,))},
              np.float64(242.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([   9.91310432,  -93.15764051, -136.52111264, ...,  -17.59436446,
                        10.0264985 , -102.4047947 ], shape=(68661,)),
               'avg_v3_A': array([ 34.89847446,  50.50731599, -32.57132788, ..., -34.95692701,
                       21.12314638,   5.1534973 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([   9.91310432,  -93.15764051, -136.52111264, ...,  -17.59436446,
                        10.0264985 , -102.4047947 ], shape=(68661,)),
               'avg_v3_B': array([ 34.89847446,  50.50731599, -32.57132788, ..., -34.95692701,
                       21.12314638,   5.1534973 ], shape=(68661,))},
              np.float64(243.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([   9.22069956,  -93.09502613, -136.99502644, ...,  -16.92543791,
                         9.64175622, -102.38966526], shape=(68661,)),
               'avg_v3_A': array([ 35.06469013,  49.50880636, -33.25642862, ..., -35.25363514,
                       21.29395735,   4.17681413], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([   9.22069956,  -93.09502613, -136.99502644, ...,  -16.92543791,
                         9.64175622, -102.38966526], shape=(68661,)),
               'avg_v3_B': array([ 35.06469013,  49.50880636, -33.25642862, ..., -35.25363514,
                       21.29395735,   4.17681413], shape=(68661,))},
              np.float64(244.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([   8.5228104 ,  -93.03588688, -137.48515261, ...,  -16.24680373,
                         9.2532538 , -102.37822967], shape=(68661,)),
               'avg_v3_A': array([ 35.2189296 ,  48.51023937, -33.9353772 , ..., -35.53909261,
                       21.45811565,   3.20008124], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([   8.5228104 ,  -93.03588688, -137.48515261, ...,  -16.24680373,
                         9.2532538 , -102.37822967], shape=(68661,)),
               'avg_v3_B': array([ 35.2189296 ,  48.51023937, -33.9353772 , ..., -35.53909261,
                       21.45811565,   3.20008124], shape=(68661,))},
              np.float64(245.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([   7.81981008,  -92.97998502, -137.99186429, ...,  -15.55870773,
                         8.86112299, -102.3704693 ], shape=(68661,)),
               'avg_v3_A': array([ 35.36107862,  47.51161923, -34.60791379, ..., -35.81309905,
                       21.61555014,   2.22331244], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([   7.81981008,  -92.97998502, -137.99186429, ...,  -15.55870773,
                         8.86112299, -102.3704693 ], shape=(68661,)),
               'avg_v3_B': array([ 35.36107862,  47.51161923, -34.60791379, ..., -35.81309905,
                       21.61555014,   2.22331244], shape=(68661,))},
              np.float64(246.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([   7.11208434,  -92.92710489, -138.51554028, ...,  -14.86141569,
                         8.46549916, -102.36637087], shape=(68661,)),
               'avg_v3_A': array([ 35.49103082,  46.51294975, -35.27376909, ..., -36.07545834,
                       21.76619207,   1.24652147], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([   7.11208434,  -92.92710489, -138.51554028, ...,  -14.86141569,
                         8.46549916, -102.36637087], shape=(68661,)),
               'avg_v3_B': array([ 35.49103082,  46.51294975, -35.27376909, ..., -36.07545834,
                       21.76619207,   1.24652147], shape=(68661,))},
              np.float64(247.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([   6.40003071,  -92.87705044, -139.05656411, ...,  -14.15521359,
                         8.06652125, -102.36592637], shape=(68661,)),
               'avg_v3_A': array([ 35.60868804,  45.51423441, -35.93266406, ..., -36.32597915,
                       21.90997518,   0.26972201], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([   6.40003071,  -92.87705044, -139.05656411, ...,  -14.15521359,
                         8.06652125, -102.36592637], shape=(68661,)),
               'avg_v3_B': array([ 35.60868804,  45.51423441, -35.93266406, ..., -36.32597915,
                       21.90997518,   0.26972201], shape=(68661,))},
              np.float64(248.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([   5.68405767,  -92.82964308, -139.61532296, ...,  -13.44040759,
                         7.66433169, -102.36913309], shape=(68661,)),
               'avg_v3_A': array([ 35.71396063,  44.51547639, -36.58430965, ..., -36.56447545,
                       22.0468358 ,  -0.70707228], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([   5.68405767,  -92.82964308, -139.61532296, ...,  -13.44040759,
                         7.66433169, -102.36913309], shape=(68661,)),
               'avg_v3_B': array([ 35.71396063,  44.51547639, -36.58430965, ..., -36.56447545,
                       22.0468358 ,  -0.70707228], shape=(68661,))},
              np.float64(249.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([   4.96458378,  -92.78471983, -140.19220643, ...,  -12.717324  ,
                         7.25907629, -102.37599355], shape=(68661,)),
               'avg_v3_A': array([ 35.80676775,  43.51667861, -37.22840648, ..., -36.79076704,
                       22.17671291,  -1.68384776], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([   4.96458378,  -92.78471983, -140.19220643, ...,  -12.717324  ,
                         7.25907629, -102.37599355], shape=(68661,)),
               'avg_v3_B': array([ 35.80676775,  43.51667861, -37.22840648, ..., -36.79076704,
                       22.17671291,  -1.68384776], shape=(68661,))},
              np.float64(250.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([   4.24203668,  -92.74213169, -140.78760508, ...,  -11.98630914,
                         6.85090418, -102.38651555], shape=(68661,)),
               'avg_v3_A': array([ 35.88703764,  42.51784373, -37.86464465, ..., -37.00468009,
                       22.29954825,  -2.66059073], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([   4.24203668,  -92.74213169, -140.78760508, ...,  -11.98630914,
                         6.85090418, -102.38651555], shape=(68661,)),
               'avg_v3_B': array([ 35.88703764,  42.51784373, -37.86464465, ..., -37.00468009,
                       22.29954825,  -2.66059073], shape=(68661,))},
              np.float64(251.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([   3.5168521 ,  -92.7017422 , -141.4019089 , ...,  -11.24772906,
                         6.43996764, -102.40071218], shape=(68661,)),
               'avg_v3_A': array([ 35.95470787,  41.51897422, -38.49270351, ..., -37.20604768,
                       22.41528639,  -3.63728743], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([   3.5168521 ,  -92.7017422 , -141.4019089 , ...,  -11.24772906,
                         6.43996764, -102.40071218], shape=(68661,)),
               'avg_v3_B': array([ 35.95470787,  41.51897422, -38.49270351, ..., -37.20604768,
                       22.41528639,  -3.63728743], shape=(68661,))},
              np.float64(252.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([   2.78947279,  -92.6634262 , -142.03550548, ...,  -10.50196915,
                         6.02642202, -102.41860187], shape=(68661,)),
               'avg_v3_A': array([ 36.00972552,  40.52007234, -39.11225143, ..., -37.3947103 ,
                       22.52387479,  -4.613924  ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([   2.78947279,  -92.6634262 , -142.03550548, ...,  -10.50196915,
                         6.02642202, -102.41860187], shape=(68661,)),
               'avg_v3_B': array([ 36.00972552,  40.52007234, -39.11225143, ..., -37.3947103 ,
                       22.52387479,  -4.613924  ], shape=(68661,))},
              np.float64(253.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([   2.06034737,  -92.6270687 , -142.68877801, ...,   -9.74943361,
                         5.61042558, -102.44020841], shape=(68661,)),
               'avg_v3_A': array([ 36.05204739,  39.52114019, -39.72294571, ..., -37.57051638,
                       22.62526389,  -5.59048646], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([   2.06034737,  -92.6270687 , -142.68877801, ...,   -9.74943361,
                         5.61042558, -102.44020841], shape=(68661,)),
               'avg_v3_B': array([ 36.05204739,  39.52114019, -39.72294571, ..., -37.57051638,
                       22.62526389,  -5.59048646], shape=(68661,))},
              np.float64(254.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([   1.32992916,  -92.59256394, -143.36210309, ...,   -8.99054485,
                         5.19213937, -102.46556109], shape=(68661,)),
               'avg_v3_A': array([ 36.08164011,  38.52217971, -40.32443238, ..., -37.73332281,
                       22.7194072 ,  -6.56696065], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([   1.32992916,  -92.59256394, -143.36210309, ...,   -8.99054485,
                         5.19213937, -102.46556109], shape=(68661,)),
               'avg_v3_B': array([ 36.08164011,  38.52217971, -40.32443238, ..., -37.73332281,
                       22.7194072 ,  -6.56696065], shape=(68661,))},
              np.float64(255.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([   0.59867499,  -92.55981449, -144.05584823, ...,   -8.22574275,
                         4.77172706, -102.49469479], shape=(68661,)),
               'avg_v3_A': array([ 36.09848032,  37.52319268, -40.91634619, ..., -37.88299541,
                       22.80626133,  -7.54333221], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([   0.59867499,  -92.55981449, -144.05584823, ...,   -8.22574275,
                         4.77172706, -102.49469479], shape=(68661,)),
               'avg_v3_B': array([ 36.09848032,  37.52319268, -40.91634619, ..., -37.88299541,
                       22.80626133,  -7.54333221], shape=(68661,))},
              np.float64(256.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-1.32956043e-01, -9.25287305e+01, -1.44770369e+02, ...,
                      -7.45548374e+00,  4.34935478e+00, -1.02527650e+02], shape=(68661,)),
               'avg_v3_A': array([ 36.10255468,  36.52418079, -41.49831059, ..., -38.01940939,
                       22.88578608,  -8.51958656], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-1.32956043e-01, -9.25287305e+01, -1.44770369e+02, ...,
                      -7.45548374e+00,  4.34935478e+00, -1.02527650e+02], shape=(68661,)),
               'avg_v3_B': array([ 36.10255468,  36.52418079, -41.49831059, ..., -38.01940939,
                       22.88578608,  -8.51958656], shape=(68661,))},
              np.float64(257.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  -0.86450381,  -92.49922906, -145.50600699, ...,   -6.68023984,
                         3.92519096, -102.56447323], shape=(68661,)),
               'avg_v3_A': array([ 36.09385998,  35.52514557, -42.06993774, ..., -38.14244982,
                       22.95794449,  -9.49570883], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  -0.86450381,  -92.49922906, -145.50600699, ...,   -6.68023984,
                         3.92519096, -102.56447323], shape=(68661,)),
               'avg_v3_B': array([ 36.09385998,  35.52514557, -42.06993774, ..., -38.14244982,
                       22.95794449,  -9.49570883], shape=(68661,))},
              np.float64(258.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  -1.59550841,  -92.47123347, -146.26308471, ...,   -5.90049759,
                         3.49940614, -102.60521675], shape=(68661,)),
               'avg_v3_A': array([ 36.07240309,  34.52608848, -42.63082865, ..., -38.25201206,
                       23.02270291, -10.47168387], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  -1.59550841,  -92.47123347, -146.26308471, ...,   -5.90049759,
                         3.49940614, -102.60521675], shape=(68661,)),
               'avg_v3_B': array([ 36.07240309,  34.52608848, -42.63082865, ..., -38.25201206,
                       23.02270291, -10.47168387], shape=(68661,))},
              np.float64(259.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  -2.32551143,  -92.44467282, -147.04190399, ...,   -5.11675679,
                         3.0721728 , -102.64993916], shape=(68661,)),
               'avg_v3_A': array([ 36.03820099,  33.52701086, -43.18057341, ..., -38.34800209,
                       23.08003103, -11.44749616], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  -2.32551143,  -92.44467282, -147.04190399, ...,   -5.11675679,
                         3.0721728 , -102.64993916], shape=(68661,)),
               'avg_v3_B': array([ 36.03820099,  33.52701086, -43.18057341, ..., -38.34800209,
                       23.08003103, -11.44749616], shape=(68661,))},
              np.float64(260.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  -3.05405715,  -92.41948145, -147.84274131, ...,   -4.32952918,
                         2.64366515, -102.69870539], shape=(68661,)),
               'avg_v3_A': array([ 35.99128067,  32.52791399, -43.71875142, ..., -38.43033695,
                       23.12990194, -12.4231298 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  -3.05405715,  -92.41948145, -147.84274131, ...,   -4.32952918,
                         2.64366515, -102.69870539], shape=(68661,)),
               'avg_v3_B': array([ 35.99128067,  32.52791399, -43.71875142, ..., -38.43033695,
                       23.12990194, -12.4231298 ], shape=(68661,))},
              np.float64(261.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  -3.78069383,  -92.39559852, -148.66584393, ...,   -3.53933711,
                         2.21405894, -102.75158702], shape=(68661,)),
               'avg_v3_A': array([ 35.93167907,  31.52879904, -44.24493178, ..., -38.49894497,
                       23.17229216, -13.39856846], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  -3.78069383,  -92.39559852, -148.66584393, ...,   -3.53933711,
                         2.21405894, -102.75158702], shape=(68661,)),
               'avg_v3_B': array([ 35.93167907,  31.52879904, -44.24493178, ..., -38.49894497,
                       23.17229216, -13.39856846], shape=(68661,))},
              np.float64(262.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  -4.50497483,  -92.37296762, -149.51142568, ...,   -2.74671196,
                         1.78353124, -102.8086625 ], shape=(68661,)),
               'avg_v3_A': array([ 35.85944292,  30.52966714, -44.75867385, ..., -38.55376612,
                       23.2071817 , -14.37379534], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  -4.50497483,  -92.37296762, -149.51142568, ...,   -2.74671196,
                         1.78353124, -102.8086625 ], shape=(68661,)),
               'avg_v3_B': array([ 35.85944292,  30.52966714, -44.75867385, ..., -38.55376612,
                       23.2071817 , -14.37379534], shape=(68661,))},
              np.float64(263.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  -5.22645983,  -92.35153641, -150.37966243, ...,   -1.95219264,
                         1.35226027, -102.87001744], shape=(68661,)),
               'avg_v3_A': array([ 35.77462861,  29.53051931, -45.25952777, ..., -38.59475219,
                       23.23455407, -15.34879312], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  -5.22645983,  -92.35153641, -150.37966243, ...,   -1.95219264,
                         1.35226027, -102.87001744], shape=(68661,)),
               'avg_v3_B': array([ 35.77462861,  29.53051931, -45.25952777, ..., -38.59475219,
                       23.23455407, -15.34879312], shape=(68661,))},
              np.float64(264.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  -5.94471589,  -92.33125631, -151.27068743, ...,   -1.15632393,
                         0.92042514, -102.93574493], shape=(68661,)),
               'avg_v3_A': array([ 35.67730197,  28.53135656, -45.74703527, ..., -38.62186702,
                       23.25439631, -16.32354391], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  -5.94471589,  -92.33125631, -151.27068743, ...,   -1.15632393,
                         0.92042514, -102.93574493], shape=(68661,)),
               'avg_v3_B': array([ 35.67730197,  28.53135656, -45.74703527, ..., -38.62186702,
                       23.25439631, -16.32354391], shape=(68661,))},
              np.float64(265.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  -6.65931854,  -92.31208224, -152.18458635, ...,   -0.35965485,
                         0.48820566, -103.00594593], shape=(68661,)),
               'avg_v3_A': array([ 35.56753809,  27.53217981, -46.22073049, ..., -38.63508663,
                       23.26669902, -17.29802917], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  -6.65931854,  -92.31208224, -152.18458635, ...,   -0.35965485,
                         0.48820566, -103.00594593], shape=(68661,)),
               'avg_v3_B': array([ 35.56753809,  27.53217981, -46.22073049, ..., -38.63508663,
                       23.26669902, -17.29802917], shape=(68661,))},
              np.float64(266.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-7.36985277e+00, -9.22939723e+01, -1.53121392e+02, ...,
                       4.37263092e-01,  5.57821119e-02, -1.03080730e+02], shape=(68661,)),
               'avg_v3_A': array([ 35.445421  ,  26.53298993, -46.68014105, ..., -38.6343993 ,
                       23.27145637, -18.27222972], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-7.36985277e+00, -9.22939723e+01, -1.53121392e+02, ...,
                       4.37263092e-01,  5.57821119e-02, -1.03080730e+02], shape=(68661,)),
               'avg_v3_B': array([ 35.445421  ,  26.53298993, -46.68014105, ..., -38.6343993 ,
                       23.27145637, -18.27222972], shape=(68661,))},
              np.float64(267.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  -8.07591396,  -92.27688762, -154.08108079, ...,    1.2338776 ,
                        -0.37666497, -103.16021372], shape=(68661,)),
               'avg_v3_A': array([ 35.31104349,  25.53378777, -47.12478916, ..., -38.61980564,
                       23.2686661 , -19.24612561], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  -8.07591396,  -92.27688762, -154.08108079, ...,    1.2338776 ,
                        -0.37666497, -103.16021372], shape=(68661,)),
               'avg_v3_B': array([ 35.31104349,  25.53378777, -47.12478916, ..., -38.61980564,
                       23.2686661 , -19.24612561], shape=(68661,))},
              np.float64(268.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  -8.77710875,  -92.26079204, -155.06356437, ...,    2.02963734,
                        -0.80895503, -103.24452524], shape=(68661,)),
               'avg_v3_A': array([ 35.16450672,  24.5345741 , -47.55419302, ..., -38.59131858,
                       23.25832953, -20.21969609], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  -8.77710875,  -92.26079204, -155.06356437, ...,    2.02963734,
                        -0.80895503, -103.24452524], shape=(68661,)),
               'avg_v3_B': array([ 35.16450672,  24.5345741 , -47.55419302, ..., -38.59131858,
                       23.25832953, -20.21969609], shape=(68661,))},
              np.float64(269.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([  -9.47305584,  -92.24565203, -156.06868775, ...,    2.82399364,
                        -1.24090769, -103.33380071], shape=(68661,)),
               'avg_v3_A': array([ 35.00591994,  23.53534969, -47.96786827, ..., -38.54896332,
                       23.24045157, -21.19291954], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([  -9.47305584,  -92.24565203, -156.06868775, ...,    2.82399364,
                        -1.24090769, -103.33380071], shape=(68661,)),
               'avg_v3_B': array([ 35.00591994,  23.53534969, -47.96786827, ..., -38.54896332,
                       23.24045157, -21.19291954], shape=(68661,))},
              np.float64(270.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -10.16338669,  -92.23143644, -157.09622268, ...,    3.61640222,
                        -1.672343  , -103.42818685], shape=(68661,)),
               'avg_v3_A': array([ 34.83540017,  22.53611524, -48.36532962, ..., -38.49277721,
                       23.21504068, -22.1657734 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -10.16338669,  -92.23143644, -157.09622268, ...,    3.61640222,
                        -1.672343  , -103.42818685], shape=(68661,)),
               'avg_v3_B': array([ 34.83540017,  22.53611524, -48.36532962, ..., -38.49277721,
                       23.21504068, -22.1657734 ], shape=(68661,))},
              np.float64(271.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -10.84774615,  -92.21811639, -158.1458632 , ...,    4.40632484,
                        -2.10308164, -103.52784115], shape=(68661,)),
               'avg_v3_A': array([ 34.65307181,  21.53687143, -48.74609276, ..., -38.42280964,
                       23.18210891, -23.13823405], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -10.84774615,  -92.21811639, -158.1458632 , ...,    4.40632484,
                        -2.10308164, -103.52784115], shape=(68661,)),
               'avg_v3_B': array([ 34.65307181,  21.53687143, -48.74609276, ..., -38.42280964,
                       23.18210891, -23.13823405], shape=(68661,))},
              np.float64(272.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -11.52579304,  -92.20566509, -159.21722117, ...,    5.19323094,
                        -2.53294515, -103.63293258], shape=(68661,)),
               'avg_v3_A': array([ 34.45906627,  20.53761893, -49.10967623, ..., -38.3391218 ,
                       23.14167182, -24.11027679], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -11.52579304,  -92.20566509, -159.21722117, ...,    5.19323094,
                        -2.53294515, -103.63293258], shape=(68661,)),
               'avg_v3_B': array([ 34.45906627,  20.53761893, -49.10967623, ..., -38.3391218 ,
                       23.14167182, -24.11027679], shape=(68661,))},
              np.float64(273.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -12.19720058,  -92.19405774, -160.30982218, ...,    5.97659918,
                        -2.96175613, -103.74364229], shape=(68661,)),
               'avg_v3_A': array([ 34.25352161,  19.53835835, -49.45560367, ..., -38.24178648,
                       23.0937485 , -25.08187569], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -12.19720058,  -92.19405774, -160.30982218, ...,    5.97659918,
                        -2.96175613, -103.74364229], shape=(68661,)),
               'avg_v3_B': array([ 34.25352161,  19.53835835, -49.45560367, ..., -38.24178648,
                       23.0937485 , -25.08187569], shape=(68661,))},
              np.float64(274.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -12.86165682,  -92.1832714 , -161.42310204, ...,    6.7559189 ,
                        -3.38933847, -103.86016438], shape=(68661,)),
               'avg_v3_A': array([ 34.03658213,  18.53909028, -49.783406  , ..., -38.13088777,
                       23.03836151, -26.05300352], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -12.86165682,  -92.1832714 , -161.42310204, ...,    6.7559189 ,
                        -3.38933847, -103.86016438], shape=(68661,)),
               'avg_v3_B': array([ 34.03658213,  18.53909028, -49.783406  , ..., -38.13088777,
                       23.03836151, -26.05300352], shape=(68661,))},
              np.float64(275.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -13.5188649 ,  -92.17328486, -162.55640386, ...,    7.53069158,
                        -3.81551753, -103.98270683], shape=(68661,)),
               'avg_v3_A': array([ 33.80839796,  17.53981532, -50.09262389, ..., -38.00652073,
                       22.97553688, -27.02363163], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -13.5188649 ,  -92.17328486, -162.55640386, ...,    7.53069158,
                        -3.81551753, -103.98270683], shape=(68661,)),
               'avg_v3_B': array([ 33.80839796,  17.53981532, -50.09262389, ..., -38.00652073,
                       22.97553688, -27.02363163], shape=(68661,))},
              np.float64(276.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -14.16854331,  -92.16407859, -163.70897591, ...,    8.30043206,
                        -4.24012037, -104.11149239], shape=(68661,)),
               'avg_v3_A': array([ 33.5691247 ,  16.54053401, -50.38281026, ..., -37.86879106,
                       22.90530402, -27.99372983], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -14.16854331,  -92.16407859, -163.70897591, ...,    8.30043206,
                        -4.24012037, -104.11149239], shape=(68661,)),
               'avg_v3_B': array([ 33.5691247 ,  16.54053401, -50.38281026, ..., -37.86879106,
                       22.90530402, -27.99372983], shape=(68661,))},
              np.float64(277.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -14.81042603,  -92.15563463, -164.87997034, ...,    9.06466981,
                        -4.66297593, -104.24675968], shape=(68661,)),
               'avg_v3_A': array([ 33.31892296,  15.54124688, -50.65353289, ..., -37.71781467,
                       22.82769574, -28.96326627], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -14.81042603,  -92.15563463, -164.87997034, ...,    9.06466981,
                        -4.66297593, -104.24675968], shape=(68661,)),
               'avg_v3_B': array([ 33.31892296,  15.54124688, -50.65353289, ..., -37.71781467,
                       22.82769574, -28.96326627], shape=(68661,))},
              np.float64(278.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -15.44426259,  -92.14793649, -166.06844287, ...,    9.82294998,
                        -5.08391521, -104.38876428], shape=(68661,)),
               'avg_v3_A': array([ 33.05795801,  14.54195445, -50.9043771 , ..., -37.55371729,
                       22.74274814, -29.93220729], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -15.44426259,  -92.14793649, -166.06844287, ...,    9.82294998,
                        -5.08391521, -104.38876428], shape=(68661,)),
               'avg_v3_B': array([ 33.05795801,  14.54195445, -50.9043771 , ..., -37.55371729,
                       22.74274814, -29.93220729], shape=(68661,))},
              np.float64(279.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -16.06981808,  -92.1409691 , -167.27335356, ...,   10.5748344 ,
                        -5.50277145, -104.53778002], shape=(68661,)),
               'avg_v3_A': array([ 32.78639934,  13.54265723, -51.13494845, ..., -37.37663402,
                       22.65050056, -30.90051727], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -16.06981808,  -92.1409691 , -167.27335356, ...,   10.5748344 ,
                        -5.50277145, -104.53778002], shape=(68661,)),
               'avg_v3_B': array([ 32.78639934,  13.54265723, -51.13494845, ..., -37.37663402,
                       22.65050056, -30.90051727], shape=(68661,))},
              np.float64(280.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -16.68687309,  -92.13471876, -168.49356872, ...,   11.31990243,
                        -5.91938034, -104.69410034], shape=(68661,)),
               'avg_v3_A': array([ 32.50442026,  12.5433557 , -51.3448754 , ..., -37.18670882,
                       22.55099558, -31.86815844], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -16.68687309,  -92.13471876, -168.49356872, ...,   11.31990243,
                        -5.91938034, -104.69410034], shape=(68661,)),
               'avg_v3_B': array([ 32.50442026,  12.5433557 , -51.3448754 , ..., -37.18670882,
                       22.55099558, -31.86815844], shape=(68661,))},
              np.float64(281.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -17.29522354,  -92.12917304, -169.727864  , ...,   12.05775168,
                        -6.33358012, -104.85803979], shape=(68661,)),
               'avg_v3_A': array([ 32.21219753,  11.54405034, -51.53381204, ..., -36.98409407,
                       22.44427889, -32.83509075], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -17.29522354,  -92.12917304, -169.727864  , ...,   12.05775168,
                        -6.33358012, -104.85803979], shape=(68661,)),
               'avg_v3_B': array([ 32.21219753,  11.54405034, -51.53381204, ..., -36.98409407,
                       22.44427889, -32.83509075], shape=(68661,))},
              np.float64(282.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -17.89468056,  -92.12432078, -170.97492877, ...,   12.78799866,
                        -6.7452118 , -105.02993571], shape=(68661,)),
               'avg_v3_A': array([ 31.90991098,  10.54474161, -51.70144057, ..., -36.76895004,
                       22.33039925, -33.80127162], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -17.89468056,  -92.12432078, -170.97492877, ...,   12.78799866,
                        -6.7452118 , -105.02993571], shape=(68661,)),
               'avg_v3_B': array([ 31.90991098,  10.54474161, -51.70144057, ..., -36.76895004,
                       22.33039925, -33.80127162], shape=(68661,))},
              np.float64(283.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -18.48507015,  -92.12015197, -172.23337168, ...,   13.51027927,
                        -7.15411925, -105.21014999], shape=(68661,)),
               'avg_v3_A': array([ 31.5977431 ,   9.54542996, -51.84747386, ..., -36.54144435,
                       22.20940843, -34.76665571], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -18.48507015,  -92.12015197, -172.23337168, ...,   13.51027927,
                        -7.15411925, -105.21014999], shape=(68661,)),
               'avg_v3_B': array([ 31.5977431 ,   9.54542996, -51.84747386, ..., -36.54144435,
                       22.20940843, -34.76665571], shape=(68661,))},
              np.float64(284.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -19.06623297,  -92.11665781, -173.50172751, ...,   14.22424915,
                        -7.56014938, -105.39907117], shape=(68661,)),
               'avg_v3_A': array([ 31.27587872,   8.54611584, -51.97165762, ..., -36.30175148,
                       22.08136112, -35.73119473], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -19.06623297,  -92.11665781, -173.50172751, ...,   14.22424915,
                        -7.56014938, -105.39907117], shape=(68661,)),
               'avg_v3_B': array([ 31.27587872,   8.54611584, -51.97165762, ..., -36.30175148,
                       22.08136112, -35.73119473], shape=(68661,))},
              np.float64(285.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -19.63802395,  -92.11383056, -174.77846509, ...,   14.92958397,
                        -7.96315222, -105.59711655], shape=(68661,)),
               'avg_v3_A': array([ 30.94450462,   7.54679968, -52.0737726 , ..., -36.05005224,
                       21.94631484, -36.69483711], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -19.63802395,  -92.11383056, -174.77846509, ...,   14.92958397,
                        -7.96315222, -105.59711655], shape=(68661,)),
               'avg_v3_B': array([ 30.94450462,   7.54679968, -52.0737726 , ..., -36.05005224,
                       21.94631484, -36.69483711], shape=(68661,))},
              np.float64(286.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -20.2003119 ,  -92.11166361, -176.06199642, ...,   15.62597955,
                        -8.3629811 , -105.80473469], shape=(68661,)),
               'avg_v3_A': array([ 30.60380922,   6.54748192, -52.15363634, ..., -35.78653319,
                       21.80432991, -37.65752774], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -20.2003119 ,  -92.11166361, -176.06199642, ...,   15.62597955,
                        -8.3629811 , -105.80473469], shape=(68661,)),
               'avg_v3_B': array([ 30.60380922,   6.54748192, -52.15363634, ..., -35.78653319,
                       21.80432991, -37.65752774], shape=(68661,))},
              np.float64(287.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -20.75297913,  -92.11015137, -177.35068662, ...,   16.31315194,
                        -8.75949268, -106.02240808], shape=(68661,)),
               'avg_v3_A': array([ 30.25398224,   5.54816297, -52.2111048 , ..., -35.51138618,
                       21.65546932, -38.61920763], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -20.75297913,  -92.11015137, -177.35068662, ...,   16.31315194,
                        -8.75949268, -106.02240808], shape=(68661,)),
               'avg_v3_B': array([ 30.25398224,   5.54816297, -52.2111048 , ..., -35.51138618,
                       21.65546932, -38.61920763], shape=(68661,))},
              np.float64(288.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -21.29592097,  -92.10928932, -178.64286479, ...,   16.99083732,
                        -9.15254712, -106.2506561 ], shape=(68661,)),
               'avg_v3_A': array([ 29.89521441,   4.54884326, -52.24607357, ..., -35.22480775,
                       21.49979865, -39.57981352], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -21.29592097,  -92.10928932, -178.64286479, ...,   16.99083732,
                        -9.15254712, -106.2506561 ], shape=(68661,)),
               'avg_v3_B': array([ 29.89521441,   4.54884326, -52.24607357, ..., -35.22480775,
                       21.49979865, -39.57981352], shape=(68661,))},
              np.float64(289.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -21.82904528,  -92.10907392, -179.93683542, ...,   17.65879186,
                        -9.5420081 , -106.49003833], shape=(68661,)),
               'avg_v3_A': array([ 29.52769712,   3.5495232 , -52.25847882, ..., -34.92699869,
                       21.33738601, -40.53927752], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -21.82904528,  -92.10907392, -179.93683542, ...,   17.65879186,
                        -9.5420081 , -106.49003833], shape=(68661,)),
               'avg_v3_B': array([ 29.52769712,   3.5495232 , -52.25847882, ..., -34.92699869,
                       21.33738601, -40.53927752], shape=(68661,))},
              np.float64(290.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -22.35227201,  -92.10950267,  178.76910971, ...,   18.31679147,
                        -9.92774293, -106.7411582 ], shape=(68661,)),
               'avg_v3_A': array([ 29.15162221,   2.55020321, -52.24829782, ..., -34.61816346,
                       21.16830193, -41.49752661], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -22.35227201,  -92.10950267,  178.76910971, ...,   18.31679147,
                        -9.92774293, -106.7411582 ], shape=(68661,)),
               'avg_v3_B': array([ 29.15162221,   2.55020321, -52.24829782, ..., -34.61816346,
                       21.16830193, -41.49752661], shape=(68661,))},
              np.float64(291.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -22.86553261,  -92.11057402,  177.47667939, ...,   18.96463147,
                       -10.3096226 , -107.004667  ], shape=(68661,)),
               'avg_v3_A': array([ 28.76718168,   1.55088371, -52.21554924, ..., -34.29850977,
                       20.99261929, -42.45448218], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -22.86553261,  -92.11057402,  177.47667939, ...,   18.96463147,
                       -10.3096226 , -107.004667  ], shape=(68661,)),
               'avg_v3_B': array([ 28.76718168,   1.55088371, -52.21554924, ..., -34.29850977,
                       20.99261929, -42.45448218], shape=(68661,))},
              np.float64(292.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -23.36876957,  -92.11228742,  176.18757093, ...,   19.60212619,
                       -10.68752185, -107.28126843], shape=(68661,)),
               'avg_v3_A': array([ 28.37456741,   0.5515651 , -52.16029285, ..., -33.96824804,
                       20.8104132 , -43.41005943], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -23.36876957,  -92.11228742,  176.18757093, ...,   19.60212619,
                       -10.68752185, -107.28126843], shape=(68661,)),
               'avg_v3_B': array([ 28.37456741,   0.5515651 , -52.16029285, ..., -33.96824804,
                       20.8104132 , -43.41005943], shape=(68661,))},
              np.float64(293.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -23.86193582,  -92.1146433 ,  174.90345818, ...,   20.22910848,
                       -11.06131919, -107.57172356], shape=(68661,)),
               'avg_v3_A': array([ 27.97397098,  -0.4477522 , -52.08262913, ..., -33.62759096,
                       20.62176096, -44.36416678], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -23.86193582,  -92.1146433 ,  174.90345818, ...,   20.22910848,
                       -11.06131919, -107.57172356], shape=(68661,)),
               'avg_v3_B': array([ 27.97397098,  -0.4477522 , -52.08262913, ..., -33.62759096,
                       20.62176096, -44.36416678], shape=(68661,))},
              np.float64(294.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -24.34499423,  -92.11764306,  173.62598004, ...,   20.84542921,
                       -11.43089695, -107.87685641], shape=(68661,)),
               'avg_v3_A': array([ 27.56558342,  -1.44706778, -51.98269825, ..., -33.27675306,
                       20.4267419 , -45.31670513], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -24.34499423,  -92.11764306,  173.62598004, ...,   20.84542921,
                       -11.43089695, -107.87685641], shape=(68661,)),
               'avg_v3_B': array([ 27.56558342,  -1.44706778, -51.98269825, ..., -33.27675306,
                       20.4267419 , -45.31670513], shape=(68661,))},
              np.float64(295.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -24.81791705,  -92.12128908,  172.3567296 , ...,   21.45095669,
                       -11.79614128, -108.1975602 ], shape=(68661,)),
               'avg_v3_A': array([ 27.14959501,  -2.44638122, -51.86067895, ..., -32.91595028,
                       20.22543735, -46.26756708], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -24.81791705,  -92.12128908,  172.3567296 , ...,   21.45095669,
                       -11.79614128, -108.1975602 ], shape=(68661,)),
               'avg_v3_B': array([ 27.14959501,  -2.44638122, -51.86067895, ..., -32.91595028,
                       20.22543735, -46.26756708], shape=(68661,))},
              np.float64(296.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -25.28068534,  -92.12558473,  171.09724404, ...,   22.045576  ,
                       -12.1569422 , -108.53480422], shape=(68661,)),
               'avg_v3_A': array([ 26.72619512,  -3.44569209, -51.71678695, ..., -32.54539954,
                       20.01793051, -47.21663607], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -25.28068534,  -92.12558473,  171.09724404, ...,   22.045576  ,
                       -12.1569422 , -108.53480422], shape=(68661,)),
               'avg_v3_B': array([ 26.72619512,  -3.44569209, -51.71678695, ..., -32.54539954,
                       20.01793051, -47.21663607], shape=(68661,))},
              np.float64(297.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -25.73328845,  -92.13053439,  169.84899545, ...,   22.62918839,
                       -12.51319356, -108.88964165], shape=(68661,)),
               'avg_v3_A': array([ 26.29557203,  -4.44499997, -51.55127315, ..., -32.1653184 ,
                       19.80430638, -48.16378533], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -25.73328845,  -92.13053439,  169.84899545, ...,   22.62918839,
                       -12.51319356, -108.88964165], shape=(68661,)),
               'avg_v3_B': array([ 26.29557203,  -4.44499997, -51.55127315, ..., -32.1653184 ,
                       19.80430638, -48.16378533], shape=(68661,))},
              np.float64(298.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -26.17572348,  -92.13614342,  168.61338279, ...,   23.20171052,
                       -12.86479308, -109.26321822], shape=(68661,)),
               'avg_v3_A': array([ 25.85791275,  -5.44430442, -51.36442157, ..., -31.77592466,
                       19.58465168, -49.10887681], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -26.17572348,  -92.13614342,  168.61338279, ...,   23.20171052,
                       -12.86479308, -109.26321822], shape=(68661,)),
               'avg_v3_B': array([ 25.85791275,  -5.44430442, -51.36442157, ..., -31.77592466,
                       19.58465168, -49.10887681], shape=(68661,))},
              np.float64(299.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -26.60799474,  -92.14241825,  167.3917249 , ...,   23.76307382,
                       -13.2116423 , -109.65678196], shape=(68661,)),
               'avg_v3_A': array([ 25.41340292,  -6.44360502, -51.15654708, ..., -31.37743604,
                       19.35905472, -50.05175984], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -26.60799474,  -92.14241825,  167.3917249 , ...,   23.76307382,
                       -13.2116423 , -109.65678196], shape=(68661,)),
               'avg_v3_B': array([ 25.41340292,  -6.44360502, -51.15654708, ..., -31.37743604,
                       19.35905472, -50.05175984], shape=(68661,))},
              np.float64(300.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -27.03011321,  -92.14936633,  166.18525484, ...,   24.31322368,
                       -13.55364657, -110.07169411], shape=(68661,)),
               'avg_v3_A': array([ 24.96222668,  -7.44290129, -50.92799294, ..., -30.97006987,
                       19.12760534, -50.99226974], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -27.03011321,  -92.14936633,  166.18525484, ...,   24.31322368,
                       -13.55364657, -110.07169411], shape=(68661,)),
               'avg_v3_B': array([ 24.96222668,  -7.44290129, -50.92799294, ..., -30.97006987,
                       19.12760534, -50.99226974], shape=(68661,))},
              np.float64(301.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -27.44209607,  -92.15699622,  164.9951154 , ...,   24.85211877,
                       -13.89071502, -110.50944141], shape=(68661,)),
               'avg_v3_A': array([ 24.50456651,  -8.4421928 , -50.67912828, ..., -30.55404278,
                       18.89039483, -51.93022614], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -27.44209607,  -92.15699622,  164.9951154 , ...,   24.85211877,
                       -13.89071502, -110.50944141], shape=(68661,)),
               'avg_v3_B': array([ 24.50456651,  -8.4421928 , -50.67912828, ..., -30.55404278,
                       18.89039483, -51.93022614], shape=(68661,))},
              np.float64(302.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -27.84396617,  -92.16531755,  163.82235586, ...,   25.37973026,
                       -14.22276053, -110.97164987], shape=(68661,)),
               'avg_v3_A': array([ 24.04060319,  -9.44147907, -50.4103454 , ..., -30.12957044,
                       18.64751583, -52.86543111], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -27.84396617,  -92.16531755,  163.82235586, ...,   25.37973026,
                       -14.22276053, -110.97164987], shape=(68661,)),
               'avg_v3_B': array([ 24.04060319,  -9.44147907, -50.4103454 , ..., -30.12957044,
                       18.64751583, -52.86543111], shape=(68661,))},
              np.float64(303.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -28.23575154,  -92.17434114,  162.66792996, ...,   25.89604106,
                       -14.54969967, -111.46010036], shape=(68661,)),
               'avg_v3_A': array([ 23.5705157 , -10.44075963, -50.12205711, ..., -29.6968673 ,
                       18.39906225, -53.79766705], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -28.23575154,  -92.17434114,  162.66792996, ...,   25.89604106,
                       -14.54969967, -111.46010036], shape=(68661,)),
               'avg_v3_B': array([ 23.5705157 , -10.44075963, -50.12205711, ..., -29.6968673 ,
                       18.39906225, -53.79766705], shape=(68661,))},
              np.float64(304.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -28.61748495,  -92.18407896,  161.53269507, ...,   26.4010451 ,
                       -14.87145267, -111.97674605], shape=(68661,)),
               'avg_v3_A': array([ 23.09448111, -11.44003397, -49.81469403, ..., -29.25614637,
                       18.14512919, -54.72669424], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -28.61748495,  -92.18407896,  161.53269507, ...,   26.4010451 ,
                       -14.87145267, -111.97674605], shape=(68661,)),
               'avg_v3_B': array([ 23.09448111, -11.44003397, -49.81469403, ..., -29.25614637,
                       18.14512919, -54.72669424], shape=(68661,))},
              np.float64(305.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -28.98920344,  -92.19454422,  160.41741233, ...,   26.89474656,
                       -15.18794334, -112.52373212], shape=(68661,)),
               'avg_v3_A': array([ 22.61267457, -12.4393016 , -49.48870189, ..., -28.807619  ,
                       17.88581283, -55.65224805], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -28.98920344,  -92.19454422,  160.41741233, ...,   26.89474656,
                       -15.18794334, -112.52373212], shape=(68661,)),
               'avg_v3_B': array([ 22.61267457, -12.4393016 , -49.48870189, ..., -28.807619  ,
                       17.88581283, -55.65224805], shape=(68661,))},
              np.float64(306.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -29.35094786,  -92.20575143,  159.3227479 , ...,   27.37715915,
                       -15.49909901, -113.10341798], shape=(68661,)),
               'avg_v3_A': array([ 22.12526922, -13.43856198, -49.14453892, ..., -28.3514947 ,
                       17.62121042, -56.57403574], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -29.35094786,  -92.20575143,  159.3227479 , ...,   27.37715915,
                       -15.49909901, -113.10341798], shape=(68661,)),
               'avg_v3_B': array([ 22.12526922, -13.43856198, -49.14453892, ..., -28.3514947 ,
                       17.62121042, -56.57403574], shape=(68661,))},
              np.float64(307.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -29.70276249,  -92.21771641,  158.249275  , ...,   27.84830542,
                       -15.80485048, -113.71840229], shape=(68661,)),
               'avg_v3_A': array([ 21.63243615, -14.43781459, -48.78267334, ..., -27.88798099,
                       17.35142014, -57.49173279], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -29.70276249,  -92.21771641,  158.249275  , ...,   27.84830542,
                       -15.80485048, -113.71840229], shape=(68661,)),
               'avg_v3_B': array([ 21.63243615, -14.43781459, -48.78267334, ..., -27.88798099,
                       17.35142014, -57.49173279], shape=(68661,))},
              np.float64(308.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -30.04469461,  -92.23045638,  157.1974767 , ...,   28.30821601,
                       -16.10513194, -114.3715511 ], shape=(68661,)),
               'avg_v3_A': array([ 21.13434439, -15.43705885, -48.40358092, ..., -27.4172832 ,
                       17.07654105, -58.40497863], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -30.04469461,  -92.23045638,  157.1974767 , ...,   28.30821601,
                       -16.10513194, -114.3715511 ], shape=(68661,)),
               'avg_v3_B': array([ 21.13434439, -15.43705885, -48.40358092, ..., -27.4172832 ,
                       17.07654105, -58.40497863], shape=(68661,))},
              np.float64(309.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -30.3767941 ,  -92.24399005,  156.1677495 , ...,   28.756929  ,
                       -16.39988086, -115.06602952], shape=(68661,)),
               'avg_v3_A': array([ 20.63116088, -16.4362942 , -48.0077427 , ..., -26.93960441,
                       16.79667302, -59.31337181], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -30.3767941 ,  -92.24399005,  156.1677495 , ...,   28.756929  ,
                       -16.39988086, -115.06602952], shape=(68661,)),
               'avg_v3_B': array([ 20.63116088, -16.4362942 , -48.0077427 , ..., -26.93960441,
                       16.79667302, -59.31337181], shape=(68661,))},
              np.float64(310.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -30.69911313,  -92.25833766,  155.16040724, ...,   29.19448926,
                       -16.68903798, -115.80533733], shape=(68661,)),
               'avg_v3_A': array([ 20.12305042, -17.43552002, -47.59564282, ..., -26.45514526,
                       16.51191665, -60.21646431], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -30.69911313,  -92.25833766,  155.16040724, ...,   29.19448926,
                       -16.68903798, -115.80533733], shape=(68661,)),
               'avg_v3_B': array([ 20.12305042, -17.43552002, -47.59564282, ..., -26.45514526,
                       16.51191665, -60.21646431], shape=(68661,))},
              np.float64(311.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -31.01170572,  -92.27352106,  154.17568562, ...,   29.62094779,
                       -16.97254713, -116.59334871], shape=(68661,)),
               'avg_v3_A': array([ 19.61017573, -18.43473569, -47.16776652, ..., -25.96410392,
                       16.22237323, -61.11375502], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -31.01170572,  -92.27352106,  154.17568562, ...,   29.62094779,
                       -16.97254713, -116.59334871], shape=(68661,)),
               'avg_v3_B': array([ 19.61017573, -18.43473569, -47.16776652, ..., -25.96410392,
                       16.22237323, -61.11375502], shape=(68661,))},
              np.float64(312.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -31.31462749,  -92.28956385,  153.21374693, ...,   30.03636111,
                       -17.25035524, -117.43435664], shape=(68661,)),
               'avg_v3_A': array([ 19.09269738, -19.43394055, -46.72459836, ..., -25.46667595,
                       15.92814465, -62.00468217], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -31.31462749,  -92.28956385,  153.21374693, ...,   30.03636111,
                       -17.25035524, -117.43435664], shape=(68661,)),
               'avg_v3_B': array([ 19.09269738, -19.43394055, -46.72459836, ..., -25.46667595,
                       15.92814465, -62.00468217], shape=(68661,))},
              np.float64(313.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -31.60793527,  -92.30649143,  152.27468501, ...,   30.44079066,
                       -17.52241218, -118.33312208], shape=(68661,)),
               'avg_v3_A': array([ 18.57077386, -20.43313392, -46.26662045, ..., -24.96305429,
                       15.62933334, -62.88861456], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -31.60793527,  -92.30649143,  152.27468501, ...,   30.44079066,
                       -17.52241218, -118.33312208], shape=(68661,)),
               'avg_v3_B': array([ 18.57077386, -20.43313392, -46.26662045, ..., -24.96305429,
                       15.62933334, -62.88861456], shape=(68661,))},
              np.float64(314.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -31.89168686,  -92.32433114,  151.35853037, ...,   30.83430226,
                       -17.78867068, -119.29492808], shape=(68661,)),
               'avg_v3_A': array([ 18.04456154, -21.43231508, -45.79431103, ..., -24.45342914,
                       15.32604223, -63.76484136], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -31.89168686,  -92.32433114,  151.35853037, ...,   30.83430226,
                       -17.78867068, -119.29492808], shape=(68661,)),
               'avg_v3_B': array([ 18.04456154, -21.43231508, -45.79431103, ..., -24.45342914,
                       15.32604223, -63.76484136], shape=(68661,))},
              np.float64(315.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -32.16594071,  -92.34311237,  150.46525535, ...,   31.21696556,
                       -18.04908627, -120.32563862], shape=(68661,)),
               'avg_v3_A': array([ 17.51421472, -22.43148329, -45.30814308, ..., -23.93798799,
                       15.01837467, -64.63256036], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -32.16594071,  -92.34311237,  150.46525535, ...,   31.21696556,
                       -18.04908627, -120.32563862], shape=(68661,)),
               'avg_v3_B': array([ 17.51421472, -22.43148329, -45.30814308, ..., -23.93798799,
                       15.01837467, -64.63256036], shape=(68661,))},
              np.float64(316.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -32.43075564,  -92.36286672,  149.5947792 , ...,   31.58885351,
                       -18.30361713, -121.43176168], shape=(68661,)),
               'avg_v3_A': array([ 16.97988567, -23.43063775, -44.80858315, ..., -23.41691553,
                       14.70643439, -65.49086422], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -32.43075564,  -92.36286672,  149.5947792 , ...,   31.58885351,
                       -18.30361713, -121.43176168], shape=(68661,)),
               'avg_v3_B': array([ 16.97988567, -23.43063775, -44.80858315, ..., -23.41691553,
                       14.70643439, -65.49086422], shape=(68661,))},
              np.float64(317.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -32.68619063,  -92.38362809,  148.74697316, ...,   31.95004188,
                       -18.55222406, -122.62051524], shape=(68661,)),
               'avg_v3_A': array([ 16.4417246 , -24.42977764, -44.29609029, ..., -22.89039368,
                       14.39032548, -66.33872471], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -32.68619063,  -92.38362809,  148.74697316, ...,   31.95004188,
                       -18.55222406, -122.62051524], shape=(68661,)),
               'avg_v3_B': array([ 16.4417246 , -24.42977764, -44.29609029, ..., -22.89039368,
                       14.39032548, -66.33872471], shape=(68661,))},
              np.float64(318.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -32.93230454,  -92.40543292,  147.92166535, ...,   32.30060879,
                       -18.7948703 , -123.89989428], shape=(68661,)),
               'avg_v3_A': array([ 15.89987978, -25.42890208, -43.77111522, ..., -22.35860154,
                       14.07015227, -67.17497446], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -32.93230454,  -92.40543292,  147.92166535, ...,   32.30060879,
                       -18.7948703 , -123.89989428], shape=(68661,)),
               'avg_v3_B': array([ 15.89987978, -25.42890208, -43.77111522, ..., -22.35860154,
                       14.07015227, -67.17497446], shape=(68661,))},
              np.float64(319.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -33.1691559 ,  -92.42832031,  147.11864547, ...,   32.64063431,
                       -19.03152151, -125.2787351 ], shape=(68661,)),
               'avg_v3_A': array([ 15.3544975 , -26.42801016, -43.23409953, ..., -21.82171543,
                       13.74601935, -67.99828603], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -33.1691559 ,  -92.42832031,  147.11864547, ...,   32.64063431,
                       -19.03152151, -125.2787351 ], shape=(68661,)),
               'avg_v3_B': array([ 15.3544975 , -26.42801016, -43.23409953, ..., -21.82171543,
                       13.74601935, -67.99828603], shape=(68661,))},
              np.float64(320.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -33.39680271,  -92.45233222,  146.33766934, ...,   32.97019999,
                       -19.26214563, -126.76677158], shape=(68661,)),
               'avg_v3_A': array([ 14.80572217, -27.42710091, -42.68547511, ..., -21.27990888,
                       13.4180315 , -68.80714804], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -33.39680271,  -92.45233222,  146.33766934, ...,   32.97019999,
                       -19.26214563, -126.76677158], shape=(68661,)),
               'avg_v3_B': array([ 14.80572217, -27.42710091, -42.68547511, ..., -21.27990888,
                       13.4180315 , -68.80714804], shape=(68661,))},
              np.float64(321.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -33.61530221,  -92.47751375,  145.5784632 , ...,   33.28938848,
                       -19.48671276, -128.37467531], shape=(68661,)),
               'avg_v3_A': array([ 14.25369633, -28.42617329, -42.12566356, ..., -20.73335266,
                       13.08629366, -69.59983831], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -33.61530221,  -92.47751375,  145.5784632 , ...,   33.28938848,
                       -19.48671276, -128.37467531], shape=(68661,)),
               'avg_v3_B': array([ 14.25369633, -28.42617329, -42.12566356, ..., -20.73335266,
                       13.08629366, -69.59983831], shape=(68661,))},
              np.float64(322.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -33.82471074,  -92.50391328,  144.8407277 , ...,   33.59828322,
                       -19.70519514, -130.1140674 ], shape=(68661,)),
               'avg_v3_A': array([ 13.69856072, -29.42522621, -41.55507589, ..., -20.18221479,
                       12.75091088, -70.37439391], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -33.82471074,  -92.50391328,  144.8407277 , ...,   33.59828322,
                       -19.70519514, -130.1140674 ], shape=(68661,)),
               'avg_v3_B': array([ 13.69856072, -29.42522621, -41.55507589, ..., -20.18221479,
                       12.75091088, -70.37439391], shape=(68661,))},
              np.float64(323.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -34.02508354,  -92.53158282,  144.12414173, ...,   33.896968  ,
                       -19.91756696, -131.99748533], shape=(68661,)),
               'avg_v3_A': array([ 13.14045434, -30.42425853, -40.97411217, ..., -19.6266606 ,
                       12.4119883 , -71.1285786 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -34.02508354,  -92.53158282,  144.12414173, ...,   33.896968  ,
                       -19.91756696, -131.99748533], shape=(68661,)),
               'avg_v3_B': array([ 13.14045434, -30.42425853, -40.97411217, ..., -19.6266606 ,
                       12.4119883 , -71.1285786 ], shape=(68661,))},
              np.float64(324.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -34.21647458,  -92.56057826,  143.42836587, ...,   34.18552673,
                       -20.12380432, -134.03828154], shape=(68661,)),
               'avg_v3_A': array([ 12.57951447, -31.42326902, -40.38316133, ..., -19.06685275,
                       12.06963112, -71.8598483 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -34.21647458,  -92.56057826,  143.42836587, ...,   34.18552673,
                       -20.12380432, -134.03828154], shape=(68661,)),
               'avg_v3_B': array([ 12.57951447, -31.42326902, -40.38316133, ..., -19.06685275,
                       12.06963112, -71.8598483 ], shape=(68661,))},
              np.float64(325.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -34.39893645,  -92.59095971,  142.7530457 , ...,   34.46404308,
                       -20.32388515, -136.25042315], shape=(68661,)),
               'avg_v3_A': array([ 12.01587678, -32.42225636, -39.78260105, ..., -18.50295128,
                       11.72394455, -72.56531642], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -34.39893645,  -92.59095971,  142.7530457 , ...,   34.46404308,
                       -20.32388515, -136.25042315], shape=(68661,)),
               'avg_v3_B': array([ 12.01587678, -32.42225636, -39.78260105, ..., -18.50295128,
                       11.72394455, -72.56531642], shape=(68661,))},
              np.float64(326.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -34.57252016,  -92.62279184,  142.09781472, ...,   34.73260022,
                       -20.51778904, -138.6481542 ], shape=(68661,)),
               'avg_v3_A': array([ 11.44967534, -33.42121916, -39.17279769, ..., -17.93511367,
                       11.3750338 , -73.24172129], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -34.57252016,  -92.62279184,  142.09781472, ...,   34.73260022,
                       -20.51778904, -138.6481542 ], shape=(68661,)),
               'avg_v3_B': array([ 11.44967534, -33.42121916, -39.17279769, ..., -17.93511367,
                       11.3750338 , -73.24172129], shape=(68661,))},
              np.float64(327.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -34.73727507,  -92.65614429,  141.46229712, ...,   34.99128055,
                       -20.70549724, -141.24547477], shape=(68661,)),
               'avg_v3_A': array([ 10.88104273, -34.42015594, -38.55410632, ..., -17.36349488,
                       11.02300406, -73.88539999], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -34.73727507,  -92.65614429,  141.46229712, ...,   34.99128055,
                       -20.70549724, -141.24547477], shape=(68661,)),
               'avg_v3_B': array([ 10.88104273, -34.42015594, -38.55410632, ..., -17.36349488,
                       11.02300406, -73.88539999], shape=(68661,))},
              np.float64(328.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -34.89324875,  -92.69109211,  140.84611025, ...,   35.24016547,
                       -20.8869925 , -144.05538843], shape=(68661,)),
               'avg_v3_A': array([ 10.31011005, -35.4190651 , -37.92687076, ..., -16.78824743,
                       10.66796046, -74.4922743 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -34.89324875,  -92.69109211,  140.84611025, ...,   35.24016547,
                       -20.8869925 , -144.05538843], shape=(68661,)),
               'avg_v3_B': array([ 10.31011005, -35.4190651 , -37.92687076, ..., -16.78824743,
                       10.66796046, -74.4922743 ], shape=(68661,))},
              np.float64(329.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -35.04048685,  -92.72771624,  140.24886687, ...,   35.47933513,
                       -21.06225903, -147.08887539], shape=(68661,)),
               'avg_v3_A': array([  9.73700704, -36.41794495, -37.29142371, ..., -16.20952144,
                       10.31000806, -75.0578567 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -35.04048685,  -92.72771624,  140.24886687, ...,   35.47933513,
                       -21.06225903, -147.08887539], shape=(68661,)),
               'avg_v3_B': array([  9.73700704, -36.41794495, -37.29142371, ..., -16.20952144,
                       10.31000806, -75.0578567 ], shape=(68661,))},
              np.float64(330.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -35.17903302,  -92.76610408,  139.67017715, ...,   35.70886824,
                       -21.23128236, -150.35357095], shape=(68661,)),
               'avg_v3_A': array([  9.16186212, -37.41679365, -36.64808691, ..., -15.62746473,
                        9.94925185, -75.57728635], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -35.17903302,  -92.76610408,  139.67017715, ...,   35.70886824,
                       -21.23128236, -150.35357095], shape=(68661,)),
               'avg_v3_B': array([  9.16186212, -37.41679365, -36.64808691, ..., -15.62746473,
                        9.94925185, -75.57728635], shape=(68661,))},
              np.float64(331.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -35.30892881,  -92.80635009,  139.10965049, ...,   35.92884187,
                       -21.39404933, -153.85217486], shape=(68661,)),
               'avg_v3_A': array([  8.58480245, -38.41560925, -35.9971713 , ..., -15.04222286,
                        9.5857967 , -76.04540642], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -35.30892881,  -92.80635009,  139.10965049, ...,   35.92884187,
                       -21.39404933, -153.85217486], shape=(68661,)),
               'avg_v3_B': array([  8.58480245, -38.41560925, -35.9971713 , ..., -15.04222286,
                        9.5857967 , -76.04540642], shape=(68661,))},
              np.float64(332.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -35.43021359,  -92.84855647,  138.56689715, ...,   36.13933126,
                       -21.55054793, -157.58069324], shape=(68661,)),
               'avg_v3_A': array([  8.00595403, -39.41438963, -35.33897727, ..., -14.45393921,
                        9.21974737, -76.45689344], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -35.43021359,  -92.84855647,  138.56689715, ...,   36.13933126,
                       -21.55054793, -157.58069324], shape=(68661,)),
               'avg_v3_B': array([  8.00595403, -39.41438963, -35.33897727, ..., -14.45393921,
                        9.21974737, -76.45689344], shape=(68661,))},
              np.float64(333.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -35.54292446,  -92.89283391,  138.04152965, ...,   36.34040969,
                       -21.70076729, -161.52671783], shape=(68661,)),
               'avg_v3_A': array([  7.42544173, -40.4131325 , -34.6737949 , ..., -13.86275506,
                        8.85120849, -76.8064458 ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -35.54292446,  -92.89283391,  138.04152965, ...,   36.34040969,
                       -21.70076729, -161.52671783], shape=(68661,)),
               'avg_v3_B': array([  7.42544173, -40.4131325 , -34.6737949 , ..., -13.86275506,
                        8.85120849, -76.8064458 ], shape=(68661,))},
              np.float64(334.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -35.64709617,  -92.93930251,  137.53316405, ...,   36.53214826,
                       -21.84469754, -165.66805741], shape=(68661,)),
               'avg_v3_A': array([  6.84338941, -41.41183543, -34.0019042 , ..., -13.26880966,
                        8.48028456, -77.08903069], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -35.64709617,  -92.93930251,  137.53316405, ...,   36.53214826,
                       -21.84469754, -165.66805741], shape=(68661,)),
               'avg_v3_B': array([  6.84338941, -41.41183543, -34.0019042 , ..., -13.26880966,
                        8.48028456, -77.08903069], shape=(68661,))},
              np.float64(335.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -35.74276108,  -92.98809268,  137.04142102, ...,   36.71461582,
                       -21.9823298 , -169.9721121 ], shape=(68661,)),
               'avg_v3_A': array([  6.25991995, -42.41049573, -33.32357541, ..., -12.67224035,
                        8.10707992, -77.30017591], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -35.74276108,  -92.98809268,  137.04142102, ...,   36.71461582,
                       -21.9823298 , -169.9721121 ], shape=(68661,)),
               'avg_v3_B': array([  6.25991995, -42.41049573, -33.32357541, ..., -12.67224035,
                        8.10707992, -77.30017591], shape=(68661,))},
              np.float64(336.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -35.82994909,  -93.0393463 ,  136.56592685, ...,   36.88787881,
                       -22.11365604, -174.39636517], shape=(68661,)),
               'avg_v3_A': array([  5.67515534, -43.40911053, -32.63906928, ..., -12.07318255,
                        7.73169877, -77.43627827], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -35.82994909,  -93.0393463 ,  136.56592685, ...,   36.88787881,
                       -22.11365604, -174.39636517], shape=(68661,)),
               'avg_v3_B': array([  5.67515534, -43.40911053, -32.63906928, ..., -12.07318255,
                        7.73169877, -77.43627827], shape=(68661,))},
              np.float64(337.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([ -35.90868759,  -93.09321791,  136.10631422, ...,   37.05200114,
                       -22.23866909, -178.8902128 ], shape=(68661,)),
               'avg_v3_A': array([  5.08921676, -44.40767671, -31.94863737, ..., -11.47176995,
                        7.35424517, -77.49488677], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([ -35.90868759,  -93.09321791,  136.10631422, ...,   37.05200114,
                       -22.23866909, -178.8902128 ], shape=(68661,)),
               'avg_v3_B': array([  5.08921676, -44.40767671, -31.94863737, ..., -11.47176995,
                        7.35424517, -77.49488677], shape=(68661,))},
              np.float64(338.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-35.97900138, -93.14987615, 135.66222294, ...,  37.20704408,
                      -22.3573625 , 176.60193676], shape=(68661,)),
               'avg_v3_A': array([  4.50222465, -45.40619085, -31.25252236, ..., -10.8681345 ,
                        6.97482299, -77.47491327], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-35.97900138, -93.14987615, 135.66222294, ...,  37.20704408,
                      -22.3573625 , 176.60193676], shape=(68661,)),
               'avg_v3_B': array([  4.50222465, -45.40619085, -31.25252236, ..., -10.8681345 ,
                        6.97482299, -77.47491327], shape=(68661,))},
              np.float64(339.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-36.04091267, -93.20950534, 135.23330053, ...,  37.35306618,
                      -22.46973053, 172.13670642], shape=(68661,)),
               'avg_v3_A': array([  3.91429878, -46.40464923, -30.55095838, ..., -10.26240656,
                        6.59353596, -77.37673086], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-36.04091267, -93.20950534, 135.23330053, ...,  37.35306618,
                      -22.46973053, 172.13670642], shape=(68661,)),
               'avg_v3_B': array([  3.91429878, -46.40464923, -30.55095838, ..., -10.26240656,
                        6.59353596, -77.37673086], shape=(68661,))},
              np.float64(340.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-36.09444104, -93.27230732, 134.81920276, ...,  37.49012316,
                      -22.57576806, 167.76760946], shape=(68661,)),
               'avg_v3_A': array([  3.32555832, -47.40304782, -29.84417125, ...,  -9.65471495,
                        6.21048765, -77.20213976], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-36.09444104, -93.27230732, 134.81920276, ...,  37.49012316,
                      -22.57576806, 167.76760946], shape=(68661,)),
               'avg_v3_B': array([  3.32555832, -47.40304782, -29.84417125, ...,  -9.65471495,
                        6.21048765, -77.20213976], shape=(68661,))},
              np.float64(341.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-36.13960338, -93.33850353, 134.41959401, ...,  37.61826784,
                      -22.67547056, 163.54145675], shape=(68661,)),
               'avg_v3_A': array([  2.73612194, -48.40138216, -29.13237889, ...,  -9.04518705,
                        5.82578147, -76.954208  ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-36.13960338, -93.33850353, 134.41959401, ...,  37.61826784,
                      -22.67547056, 163.54145675], shape=(68661,)),
               'avg_v3_B': array([  2.73612194, -48.40138216, -29.13237889, ...,  -9.04518705,
                        5.82578147, -76.954208  ], shape=(68661,))},
              np.float64(342.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-36.17641386, -93.40833741, 134.03414765, ...,  37.73755008,
                      -22.76883401, 159.49587209], shape=(68661,)),
               'avg_v3_A': array([  2.14610786, -49.39964738, -28.41579154, ...,  -8.43394887,
                        5.43952068, -76.63701806], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-36.17641386, -93.40833741, 134.03414765, ...,  37.73755008,
                      -22.76883401, 159.49587209], shape=(68661,)),
               'avg_v3_B': array([  2.14610786, -49.39964738, -28.41579154, ...,  -8.43394887,
                        5.43952068, -76.63701806], shape=(68661,))},
              np.float64(343.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-36.20488396, -93.48207714, 133.66254628, ...,  37.84801667,
                      -22.85585486, 155.65815398], shape=(68661,)),
               'avg_v3_A': array([  1.55563392, -50.39783814, -27.69461212, ...,  -7.82112517,
                        5.05180839, -76.25536515], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-36.20488396, -93.48207714, 133.66254628, ...,  37.84801667,
                      -22.85585486, 155.65815398], shape=(68661,)),
               'avg_v3_B': array([  1.55563392, -50.39783814, -27.69461212, ...,  -7.82112517,
                        5.05180839, -76.25536515], shape=(68661,))},
              np.float64(344.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-36.22502238, -93.56001884, 133.30448196, ...,  37.94971132,
                      -22.93652999, 152.04539192], shape=(68661,)),
               'avg_v3_A': array([  0.9648177 , -51.39594851, -26.96903651, ...,  -7.2068395 ,
                        4.66274755, -75.81445271], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-36.22502238, -93.56001884, 133.30448196, ...,  37.94971132,
                      -22.93652999, 152.04539192], shape=(68661,)),
               'avg_v3_B': array([  0.9648177 , -51.39594851, -26.96903651, ...,  -7.2068395 ,
                        4.66274755, -75.81445271], shape=(68661,))},
              np.float64(345.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-36.23683507, -93.64249026, 132.95965634, ...,  38.04267458,
                      -23.01085667, 148.66552004], shape=(68661,)),
               'avg_v3_A': array([  0.37377655, -52.39397198, -26.23925384, ...,  -6.59121434,
                        4.27244099, -75.31962079], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-36.23683507, -93.64249026, 132.95965634, ...,  38.04267458,
                      -23.01085667, 148.66552004], shape=(68661,)),
               'avg_v3_B': array([  0.37377655, -52.39397198, -26.23925384, ...,  -6.59121434,
                        4.27244099, -75.31962079], shape=(68661,))},
              np.float64(346.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-36.24032522, -93.72985503, 132.6277808 , ...,  38.1269438 ,
                      -23.0788325 , 145.51890996], shape=(68661,)),
               'avg_v3_A': array([ -0.21737232, -53.3919013 , -25.5054468 , ...,  -5.97437112,
                        3.8809914 , -74.776128  ], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-36.24032522, -93.72985503, 132.6277808 , ...,  38.1269438 ,
                      -23.0788325 , 145.51890996], shape=(68661,)),
               'avg_v3_B': array([ -0.21737232, -53.3919013 , -25.5054468 , ...,  -5.97437112,
                        3.8809914 , -74.776128  ], shape=(68661,))},
              np.float64(347.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-36.23549323, -93.82251773, 132.30857645, ...,  38.20255306,
                      -23.14045539, 142.60014318], shape=(68661,)),
               'avg_v3_A': array([ -0.80851174, -54.38972845, -24.76779192, ...,  -5.3564304 ,
                        3.48850135, -74.18899355], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-36.23549323, -93.82251773, 132.30857645, ...,  38.20255306,
                      -23.14045539, 142.60014318], shape=(68661,)),
               'avg_v3_B': array([ -0.80851174, -54.38972845, -24.76779192, ...,  -5.3564304 ,
                        3.48850135, -74.18899355], shape=(68661,))},
              np.float64(348.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-36.22233672, -93.92092968, 132.00177424, ...,  38.26953321,
                      -23.19572351, 139.89970274], shape=(68661,)),
               'avg_v3_A': array([ -1.39952454, -55.38744446, -24.02645983, ...,  -4.73751186,
                        3.09507329, -73.56289552], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-36.22233672, -93.92092968, 132.00177424, ...,  38.26953321,
                      -23.19572351, 139.89970274], shape=(68661,)),
               'avg_v3_B': array([ -1.39952454, -55.38744446, -24.02645983, ...,  -4.73751186,
                        3.09507329, -73.56289552], shape=(68661,))},
              np.float64(349.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-36.20085054, -94.02559591, 131.70711487, ...,  38.32791172,
                      -23.24463528, 137.40543444], shape=(68661,)),
               'avg_v3_A': array([ -1.99029346, -56.3850393 , -23.28161554, ...,  -4.11773446,
                        2.70080956, -72.90211599], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-36.20085054, -94.02559591, 131.70711487, ...,  38.32791172,
                      -23.24463528, 137.40543444], shape=(68661,)),
               'avg_v3_B': array([ -1.99029346, -56.3850393 , -23.28161554, ...,  -4.11773446,
                        2.70080956, -72.90211599], shape=(68661,))},
              np.float64(350.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-36.17102676, -94.13708331, 131.42434885, ...,  38.37771278,
                      -23.28718931, 135.10371842], shape=(68661,)),
               'avg_v3_A': array([ -2.58070105, -57.38250175, -22.53341871, ...,  -3.49721649,
                        2.30581243, -72.21052158], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-36.17102676, -94.13708331, 131.42434885, ...,  38.37771278,
                      -23.28718931, 135.10371842], shape=(68661,)),
               'avg_v3_B': array([ -2.58070105, -57.38250175, -22.53341871, ...,  -3.49721649,
                        2.30581243, -72.21052158], shape=(68661,))},
              np.float64(351.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-36.13285468, -94.2560303 , 131.15323635, ...,  38.41895717,
                      -23.32338442, 132.98035231], shape=(68661,)),
               'avg_v3_A': array([ -3.17062963, -58.37981915, -21.78202392, ...,  -2.87607568,
                        1.91018405, -71.49156879], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-36.13285468, -94.2560303 , 131.15323635, ...,  38.41895717,
                      -23.32338442, 132.98035231], shape=(68661,)),
               'avg_v3_B': array([ -3.17062963, -58.37981915, -21.78202392, ...,  -2.87607568,
                        1.91018405, -71.49156879], shape=(68661,))},
              np.float64(352.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-36.08632089, -94.38315848, 130.89354721, ...,  38.45166229,
                      -23.35321958, 131.02118019], shape=(68661,)),
               'avg_v3_A': array([ -3.7599612 , -59.37697721, -21.02758087, ...,  -2.25442927,
                        1.51402652, -70.74832505], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-36.08632089, -94.38315848, 130.89354721, ...,  38.45166229,
                      -23.35321958, 131.02118019], shape=(68661,)),
               'avg_v3_B': array([ -3.7599612 , -59.37697721, -21.02758087, ...,  -2.25442927,
                        1.51402652, -70.74832505], shape=(68661,))},
              np.float64(353.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-36.0314092 , -94.51928648, 130.64506082, ...,  38.47584216,
                      -23.37669391, 129.21251444], shape=(68661,)),
               'avg_v3_A': array([ -4.34857735, -60.37395973, -20.27023465, ...,  -1.6323941 ,
                        1.11744189, -69.98349877], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-36.0314092 , -94.51928648, 130.64506082, ...,  38.47584216,
                      -23.37669391, 129.21251444], shape=(68661,)),
               'avg_v3_B': array([ -4.34857735, -60.37395973, -20.27023465, ...,  -1.6323941 ,
                        1.11744189, -69.98349877], shape=(68661,))},
              np.float64(354.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-35.96810075, -94.6653468 , 130.407566  , ...,  38.49150735,
                      -23.39380666, 127.54139839], shape=(68661,)),
               'avg_v3_A': array([ -4.93635919, -61.37074824, -19.510126  , ...,  -1.01008673,
                        0.72053214, -69.19947334], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-35.96810075, -94.6653468 , 130.407566  , ...,  38.49150735,
                      -23.39380666, 127.54139839], shape=(68661,)),
               'avg_v3_B': array([ -4.93635919, -61.37074824, -19.510126  , ...,  -1.01008673,
                        0.72053214, -69.19947334], shape=(68661,))},
              np.float64(355.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-35.896374  , -94.82240621, 130.18086095, ...,  38.49866504,
                      -23.40455719, 125.99575208], shape=(68661,)),
               'avg_v3_A': array([ -5.52318729, -62.36732163, -18.74739149, ...,  -0.38762347,
                        0.32339922, -68.39834202], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-35.896374  , -94.82240621, 130.18086095, ...,  38.49866504,
                      -23.40455719, 125.99575208], shape=(68661,)),
               'avg_v3_B': array([ -5.52318729, -62.36732163, -18.74739149, ...,  -0.38762347,
                        0.32339922, -68.39834202], shape=(68661,))},
              np.float64(356.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-35.81620474, -94.99169069, 129.96475305, ...,  38.49731896,
                      -23.40894498, 124.56443565], shape=(68661,)),
               'avg_v3_A': array([ -6.1089416 , -63.36365564, -17.98216377, ...,   0.23487948,
                       -0.07385494, -67.58194158], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-35.81620474, -94.99169069, 129.96475305, ...,  38.49731896,
                      -23.40894498, 124.56443565], shape=(68661,)),
               'avg_v3_B': array([ -6.1089416 , -63.36365564, -17.98216377, ...,   0.23487948,
                       -0.07385494, -67.58194158], shape=(68661,))},
              np.float64(357.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-35.72756619, -95.17461614, 129.75905881, ...,  38.48746942,
                      -23.40696963, 123.23725723], shape=(68661,)),
               'avg_v3_A': array([ -6.69350134, -64.35972226, -17.21457174, ...,   0.85730596,
                       -0.47112842, -66.75188359], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-35.72756619, -95.17461614, 129.75905881, ...,  38.48746942,
                      -23.40696963, 123.23725723], shape=(68661,)),
               'avg_v3_B': array([ -6.69350134, -64.35972226, -17.21457174, ...,   0.85730596,
                       -0.47112842, -66.75188359], shape=(68661,))},
              np.float64(358.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-35.63042898, -95.37282649, 129.56360371, ...,  38.46911328,
                      -23.39863081, 122.00494493], shape=(68661,)),
               'avg_v3_A': array([ -7.27674499, -65.35548894, -16.44474084, ...,   1.47953979,
                       -0.8683193 , -65.90958287], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-35.63042898, -95.37282649, 129.56360371, ...,  38.46911328,
                      -23.39863081, 122.00494493], shape=(68661,)),
               'avg_v3_B': array([ -7.27674499, -65.35548894, -16.44474084, ...,   1.47953979,
                       -0.8683193 , -65.90958287], shape=(68661,))},
              np.float64(359.0): {'avg_intensity_A': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_A': array([-35.52476123, -95.58824132, 129.37822206, ...,  38.44224399,
                      -23.38392832, 120.85909734], shape=(68661,)),
               'avg_v3_A': array([ -7.85855015, -66.35091769, -15.67279315, ...,   2.10146461,
                       -1.26532564, -65.05628279], shape=(68661,)),
               'avg_intensity_B': array([0., 0., 0., ..., 0., 0., 0.], shape=(68661,)),
               'avg_v2_B': array([-35.52476123, -95.58824132, 129.37822206, ...,  38.44224399,
                      -23.38392832, 120.85909734], shape=(68661,)),
               'avg_v3_B': array([ -7.85855015, -66.35091769, -15.67279315, ...,   2.10146461,
                       -1.26532564, -65.05628279], shape=(68661,))}}),
 'filters': 0    F150W2
 Name: filters, dtype: object,
 'pupils': 0    CLEAR
 Name: pupils, dtype: object,
 'flux': defaultdict(dict,
             {'total_counts': {'total_counts_CLEAR+F150W2_A': array([4.85966315e+00, 4.50365594e+00, 3.57659474e+00, 2.41444875e+00,
                      1.53050668e+00, 8.63229506e-01, 5.29471191e-01, 6.51680612e-01,
                      1.03706933e+00, 1.05863665e+00, 6.69597541e-01, 2.56320438e-01,
                      2.48412634e-01, 6.75739260e-01, 1.58452568e+00, 3.12642868e+00,
                      4.53414336e+00, 5.44349182e+00, 5.81701874e+00, 5.73305360e+00,
                      5.41916483e+00, 4.88387112e+00, 4.31601227e+00, 3.37562741e+00,
                      3.07040788e+00, 3.41518612e+00, 3.22837334e+00, 3.31263208e+00,
                      3.40018955e+00, 3.50233741e+00, 3.90075409e+00, 4.03442841e+00,
                      4.24192099e+00, 4.75325362e+00, 4.87154777e+00, 4.68750337e+00,
                      4.24145097e+00, 3.15697911e+00, 2.13657504e+00, 1.37899881e+00,
                      1.18730573e+00, 1.57179316e+00, 1.87799485e+00, 2.54825989e+00,
                      3.02668362e+00, 2.75279660e+00, 2.46734533e+00, 2.58732949e+00,
                      2.29135115e+00, 1.56786872e+00, 7.29818834e-01, 3.23507328e-01,
                      4.92870034e-01, 1.17728995e+00, 2.28543007e+00, 3.46473079e+00,
                      4.51293608e+00, 4.94314920e+00, 4.93993297e+00, 4.50964945e+00,
                      3.99373434e+00, 3.15888307e+00, 2.12523530e+00, 1.44252923e+00,
                      1.55638770e+00, 1.77947818e+00, 1.41579834e+00, 7.85046828e-01,
                      4.54584104e-01, 9.77689665e-01, 2.51290340e+00, 4.47975969e+00,
                      6.47087081e+00, 8.21544366e+00, 8.72330292e+00, 8.52905567e+00,
                      7.42104903e+00, 6.06265323e+00, 4.63043516e+00, 3.15027566e+00,
                      1.76383410e+00, 9.08286083e-01, 5.83749805e-01, 4.32565210e-01,
                      2.44013089e-01, 1.40455278e-01, 9.76827417e-02, 6.86645701e-02,
                      7.47481095e-02, 3.12291264e-01, 1.62035763e+00, 5.78067524e+00,
                      1.10708422e+01, 1.26792906e+01, 9.37195687e+00, 5.81901690e+00,
                      6.49388336e+00, 1.43036891e+01, 3.01853839e+01, 4.57889018e+01,
                      6.10355161e+01, 7.21422230e+01, 7.26815628e+01, 6.60608994e+01,
                      5.53282946e+01, 3.95617980e+01, 2.70927410e+01, 1.54888960e+01,
                      9.19984379e+00, 6.57542508e+00, 4.81650738e+00, 3.40811381e+00,
                      2.25269658e+00, 2.24454813e+00, 3.06443769e+00, 4.34936130e+00,
                      5.34219325e+00, 5.91370850e+00, 6.39468521e+00, 6.98210411e+00,
                      7.72880566e+00, 8.38191083e+00, 8.23150886e+00, 7.79847454e+00,
                      7.13814921e+00, 6.97005687e+00, 8.42921510e+00, 1.10125056e+01,
                      1.16154945e+01, 8.43194728e+00, 4.52582131e+00, 3.89588462e+00,
                      8.99799671e+00, 1.81578425e+01, 3.06292478e+01, 4.07353683e+01,
                      4.70174910e+01, 4.74114471e+01, 4.55423230e+01, 3.77088007e+01,
                      3.04010599e+01, 2.35877615e+01, 1.54144213e+01, 1.04339603e+01,
                      7.64333788e+00, 7.17505485e+00, 7.08644717e+00, 6.51364760e+00,
                      6.19121260e+00, 5.91423641e+00, 6.57417414e+00, 7.79527795e+00,
                      7.58976371e+00, 6.40758502e+00, 5.43126101e+00, 3.71669084e+00,
                      2.03209150e+00, 9.19943855e-01, 2.49397008e-01, 6.13255074e-02,
                      2.81640074e-02, 4.14693217e-02, 1.21698735e-01, 3.71365674e-01,
                      9.62086158e-01, 1.33871740e+00, 1.27463609e+00, 1.03553014e+00,
                      9.12811807e-01, 1.36414688e+00, 2.44975587e+00, 4.56305210e+00,
                      6.56674137e+00, 7.58286501e+00, 1.00524076e+01, 1.15679481e+01,
                      1.56112940e+01, 2.20780936e+01, 2.49018530e+01, 2.10196581e+01,
                      1.49400471e+01, 1.38286755e+01, 2.44374709e+01, 4.69327968e+01,
                      6.24606818e+01, 9.95835143e+01, 1.09587021e+02, 1.40924134e+02,
                      1.30093257e+02, 1.26183863e+02, 9.06449478e+01, 5.60335439e+01,
                      2.57924307e+01, 1.12508707e+01, 5.20638841e+00, 3.59301522e+00,
                      3.50837310e+00, 3.20919036e+00, 2.97958008e+00, 2.34736892e+00,
                      1.72346115e+00, 1.24484281e+00, 1.16038586e+00, 1.45729602e+00,
                      1.90613790e+00, 2.48351030e+00, 3.02627652e+00, 3.53441332e+00,
                      3.88596973e+00, 3.91806111e+00, 3.54627397e+00, 2.73011644e+00,
                      1.83331328e+00, 1.01408619e+00, 5.55532801e-01, 5.02899940e-01,
                      6.34812091e-01, 1.04996784e+00, 1.93987676e+00, 2.82072705e+00,
                      3.65415101e+00, 3.74094079e+00, 4.15026386e+00, 4.66762377e+00,
                      5.32934610e+00, 5.91974437e+00, 5.95272251e+00, 5.29466545e+00,
                      4.92076291e+00, 4.64207516e+00, 4.54961759e+00, 4.19954102e+00,
                      4.25077337e+00, 5.45545615e+00, 8.35781675e+00, 1.00105014e+01,
                      9.74191805e+00, 9.46638587e+00, 1.01756217e+01, 1.44814982e+01,
                      2.34320152e+01, 3.31868649e+01, 4.42203781e+01, 5.72173358e+01,
                      6.09370960e+01, 6.08471012e+01, 5.45875209e+01, 4.42336190e+01,
                      3.18953734e+01, 2.08768750e+01, 1.27646590e+01, 6.46288695e+00,
                      3.62067125e+00, 2.49800796e+00, 2.19052198e+00, 2.20382792e+00,
                      2.93664932e+00, 5.01102170e+00, 8.68748047e+00, 1.10027290e+01,
                      1.29872172e+01, 1.52711661e+01, 1.71910436e+01, 1.91363462e+01,
                      2.07280352e+01, 2.09705763e+01, 2.11232373e+01, 1.95233982e+01,
                      1.82454942e+01, 1.89636802e+01, 1.89596046e+01, 2.10201149e+01,
                      2.13970426e+01, 1.95951861e+01, 1.73697906e+01, 1.82964542e+01,
                      2.10916922e+01, 2.10813431e+01, 1.36313584e+01, 6.62636470e+00,
                      4.45001782e+00, 8.16122188e+00, 1.62445600e+01, 3.02921447e+01,
                      4.22266128e+01, 5.75269531e+01, 6.54142936e+01, 7.69358988e+01,
                      7.87174695e+01, 8.10583396e+01, 7.18524658e+01, 5.44125129e+01,
                      3.19284310e+01, 1.82206376e+01, 1.33294262e+01, 1.12175729e+01,
                      9.80393969e+00, 9.26614796e+00, 9.13494138e+00, 9.21142268e+00,
                      9.83202595e+00, 1.05165636e+01, 1.19471079e+01, 1.29918526e+01,
                      1.29206541e+01, 1.21220687e+01, 1.07994059e+01, 1.04602575e+01,
                      1.06924889e+01, 1.12978545e+01, 1.25557042e+01, 1.28830588e+01,
                      1.17625043e+01, 1.03634533e+01, 9.53805519e+00, 9.57643385e+00,
                      1.02246311e+01, 1.13129913e+01, 1.17064608e+01, 1.37467118e+01,
                      1.52723772e+01, 1.71902779e+01, 1.63578175e+01, 1.17901350e+01,
                      7.57716068e+00, 3.81868179e+00, 1.49930908e+00, 7.84435177e-01,
                      7.30353861e-01, 1.13226808e+00, 1.38359020e+00, 2.11957238e+00,
                      3.67842527e+00, 5.31578319e+00, 5.40147663e+00, 3.57382500e+00,
                      1.14545221e+00, 2.52934330e-01, 2.83067071e-01, 6.00368177e-01,
                      7.18240553e-01, 5.54989591e-01, 3.11116760e-01, 3.09346875e-01,
                      6.81828323e-01, 1.36784619e+00, 2.24586186e+00, 3.03844171e+00,
                      3.68803610e+00, 4.07826592e+00, 3.97230767e+00, 3.45939104e+00,
                      2.70308728e+00, 1.95116305e+00, 1.45778484e+00, 1.52896040e+00,
                      2.06644428e+00, 2.73791523e+00, 3.75533711e+00, 4.60824409e+00]),
               'total_counts_CLEAR+F150W2_B': array([8.51171312e+00, 7.53664542e+00, 5.68516586e+00, 4.33686783e+00,
                      3.79717747e+00, 3.33421309e+00, 3.53029868e+00, 3.62174667e+00,
                      2.88543348e+00, 2.42481762e+00, 2.09592368e+00, 2.34379088e+00,
                      3.84228711e+00, 8.18623265e+00, 1.38908898e+01, 2.08810644e+01,
                      2.62890775e+01, 3.05231830e+01, 3.25081193e+01, 3.16617471e+01,
                      2.83101176e+01, 2.12118721e+01, 1.70436726e+01, 1.56842726e+01,
                      1.65160109e+01, 1.96734485e+01, 2.47208703e+01, 3.09616585e+01,
                      3.51099684e+01, 3.45912424e+01, 2.83605645e+01, 2.08123820e+01,
                      1.50108825e+01, 1.11632727e+01, 9.01787505e+00, 7.41441815e+00,
                      8.56343931e+00, 1.30503061e+01, 1.70699408e+01, 1.80826506e+01,
                      1.78467787e+01, 1.44168337e+01, 1.11835037e+01, 7.95860938e+00,
                      6.47894812e+00, 3.81341133e+00, 2.84814985e+00, 1.80206015e+00,
                      7.94445708e-01, 3.27714348e-01, 6.04408665e-01, 1.73343119e+00,
                      4.40663505e+00, 1.02692199e+01, 1.84755266e+01, 2.61581175e+01,
                      3.29572275e+01, 3.61124482e+01, 3.50995717e+01, 3.08409284e+01,
                      2.94806439e+01, 2.20496436e+01, 2.03164290e+01, 1.75029945e+01,
                      1.74379629e+01, 1.50654051e+01, 1.50551910e+01, 1.36004439e+01,
                      1.27855420e+01, 9.84668263e+00, 5.74727303e+00, 3.73505521e+00,
                      6.23279658e+00, 1.26358957e+01, 2.07927119e+01, 2.93048101e+01,
                      3.08446708e+01, 2.48248866e+01, 2.51708199e+01, 2.59813411e+01,
                      6.59394498e+01, 1.54470362e+02, 2.88336691e+02, 4.36418295e+02,
                      5.66863201e+02, 6.55563646e+02, 6.88299136e+02, 6.59715266e+02,
                      5.66032780e+02, 4.51837673e+02, 3.71590197e+02, 3.05375340e+02,
                      2.33570899e+02, 1.86032144e+02, 1.89361874e+02, 2.01929683e+02,
                      2.02059175e+02, 1.54258383e+02, 1.07166021e+02, 1.23150070e+02,
                      1.46959564e+02, 1.37852552e+02, 1.04415365e+02, 6.57803414e+01,
                      4.31009398e+01, 3.84200569e+01, 3.82453256e+01, 3.81440331e+01,
                      3.34819110e+01, 2.73896984e+01, 2.18812103e+01, 1.61474859e+01,
                      1.13922720e+01, 8.22749213e+00, 1.19370596e+01, 3.54892104e+01,
                      8.82303225e+01, 1.67088262e+02, 2.43787364e+02, 3.07433032e+02,
                      3.53720652e+02, 3.70862091e+02, 3.57500049e+02, 3.01815358e+02,
                      2.31518075e+02, 1.58571719e+02, 1.07134527e+02, 5.65031302e+01,
                      2.48886881e+01, 3.06456941e+01, 6.40637035e+01, 9.37514333e+01,
                      9.57569243e+01, 8.02583484e+01, 7.28130674e+01, 7.82486071e+01,
                      8.31636758e+01, 7.92706074e+01, 6.47428160e+01, 4.76749168e+01,
                      3.24870472e+01, 1.99778672e+01, 9.23076429e+00, 6.29569435e+00,
                      1.10069796e+01, 1.81124668e+01, 1.88852598e+01, 1.11595048e+01,
                      4.14863571e+00, 1.59672477e+00, 2.27926909e+00, 4.45843788e+00,
                      8.91918388e+00, 1.73616945e+01, 2.97461224e+01, 4.70841415e+01,
                      6.46136070e+01, 8.34794355e+01, 9.89552888e+01, 1.09383209e+02,
                      1.14655760e+02, 1.11629077e+02, 9.18379475e+01, 8.42145635e+01,
                      9.08982708e+01, 1.50937939e+02, 3.04917049e+02, 5.81706238e+02,
                      9.17468452e+02, 1.24261297e+03, 1.65905227e+03, 1.96258053e+03,
                      2.09904001e+03, 1.93772960e+03, 1.62111698e+03, 1.10022569e+03,
                      7.57382088e+02, 4.80615738e+02, 2.54301179e+02, 2.82824039e+02,
                      4.79071072e+02, 5.83501375e+02, 4.71266229e+02, 2.57548220e+02,
                      9.57281983e+01, 2.94331266e+01, 2.22661037e+01, 2.72294098e+01,
                      3.76949519e+01, 4.99215251e+01, 6.20862949e+01, 6.77057832e+01,
                      6.75780923e+01, 6.53101937e+01, 5.12630862e+01, 4.11422465e+01,
                      3.15601991e+01, 2.35242633e+01, 2.09102705e+01, 2.07697250e+01,
                      2.30450271e+01, 2.51595507e+01, 2.43158124e+01, 2.15202064e+01,
                      2.12122841e+01, 2.42812632e+01, 2.96390205e+01, 3.78299490e+01,
                      4.87685922e+01, 6.17473126e+01, 6.44686727e+01, 5.86867708e+01,
                      4.29024364e+01, 3.45184704e+01, 2.68896162e+01, 2.29829746e+01,
                      2.55801018e+01, 3.36671599e+01, 4.14671344e+01, 4.55035979e+01,
                      5.38547511e+01, 7.18753248e+01, 1.13628630e+02, 1.92518039e+02,
                      3.25431828e+02, 4.60226513e+02, 6.04603555e+02, 7.55037296e+02,
                      8.76986840e+02, 9.65220990e+02, 9.56148261e+02, 8.72395949e+02,
                      7.16739546e+02, 5.57115996e+02, 3.63681361e+02, 2.28509879e+02,
                      1.90915452e+02, 2.36146593e+02, 3.00635396e+02, 3.18660872e+02,
                      2.76177300e+02, 2.04720749e+02, 1.31888011e+02, 9.10417971e+01,
                      6.84776631e+01, 6.63340117e+01, 6.47881425e+01, 6.40793638e+01,
                      5.86283242e+01, 5.28735082e+01, 4.54622986e+01, 4.34559907e+01,
                      4.54973666e+01, 5.93106982e+01, 8.48150996e+01, 1.14036683e+02,
                      1.49595382e+02, 1.74028638e+02, 1.89077159e+02, 1.93064447e+02,
                      1.72731332e+02, 1.32073423e+02, 9.61432507e+01, 6.37346741e+01,
                      5.04187159e+01, 5.60924942e+01, 8.31480853e+01, 1.14530035e+02,
                      1.22858983e+02, 1.15779019e+02, 9.75756115e+01, 9.70083937e+01,
                      9.89704818e+01, 9.90798993e+01, 1.01049383e+02, 9.73109327e+01,
                      8.63231541e+01, 6.87297330e+01, 5.16591624e+01, 4.07067116e+01,
                      2.98079721e+01, 2.21581903e+01, 2.04532826e+01, 2.64783321e+01,
                      3.28184774e+01, 3.15342697e+01, 2.65517497e+01, 2.13467477e+01,
                      1.87878535e+01, 1.71955137e+01, 1.52548654e+01, 1.29143364e+01,
                      1.20396133e+01, 1.51660470e+01, 1.87714416e+01, 2.03211817e+01,
                      2.04751885e+01, 1.92108875e+01, 2.18121683e+01, 3.69723672e+01,
                      6.59961933e+01, 1.10857397e+02, 1.81644047e+02, 2.66526078e+02,
                      3.23503226e+02, 3.76079315e+02, 3.80207287e+02, 3.23941207e+02,
                      2.28495393e+02, 1.59497493e+02, 9.69081591e+01, 6.12686372e+01,
                      7.60973668e+01, 1.09236676e+02, 1.28243186e+02, 1.04452085e+02,
                      5.31426883e+01, 2.21374249e+01, 7.35264740e+00, 2.73440911e+00,
                      1.41786384e+00, 7.24047140e-01, 3.65192364e-01, 3.32364022e-01,
                      5.04652258e-01, 6.64370607e-01, 8.70440040e-01, 2.07360213e+00,
                      4.98087994e+00, 9.00511675e+00, 1.27716560e+01, 1.55733396e+01,
                      1.66395323e+01, 1.70323253e+01, 1.61420883e+01, 1.36578205e+01,
                      1.09549164e+01, 1.07179283e+01, 1.36182406e+01, 2.12349155e+01,
                      3.42393931e+01, 5.17705585e+01, 6.97214972e+01, 8.72234736e+01,
                      9.89648695e+01, 9.69057073e+01, 8.30091809e+01, 6.46847521e+01,
                      4.90034354e+01, 3.26085407e+01, 2.16158647e+01, 2.04620405e+01,
                      2.57655162e+01, 2.81441767e+01, 2.35655713e+01, 1.55377926e+01,
                      1.18687180e+01, 1.12369774e+01, 1.07848956e+01, 9.83029194e+00])},
              'dn_pix_ks': {'dn_pix_ks_CLEAR+F150W2_A': array([8.67086600e-01, 8.03565925e-01, 6.38154801e-01, 4.30798616e-01,
                      2.73081033e-01, 1.54021938e-01, 9.44710283e-02, 1.16276274e-01,
                      1.85039351e-01, 1.88887506e-01, 1.19473107e-01, 4.57340375e-02,
                      4.43230857e-02, 1.20568945e-01, 2.82719387e-01, 5.57833810e-01,
                      8.09005651e-01, 9.71256374e-01, 1.03790301e+00, 1.02292151e+00,
                      9.66915824e-01, 8.71405912e-01, 7.70085557e-01, 6.02297156e-01,
                      5.47838286e-01, 6.09355428e-01, 5.76023312e-01, 5.91057198e-01,
                      6.06679661e-01, 6.24905418e-01, 6.95993014e-01, 7.19843887e-01,
                      7.56865802e-01, 8.48100453e-01, 8.69207116e-01, 8.36368949e-01,
                      7.56781938e-01, 5.63284778e-01, 3.81218930e-01, 2.46048204e-01,
                      2.11845319e-01, 2.80447583e-01, 3.35081696e-01, 4.54673902e-01,
                      5.40036773e-01, 4.91168415e-01, 4.40236701e-01, 4.61644905e-01,
                      4.08834896e-01, 2.79747364e-01, 1.30218106e-01, 5.77218751e-02,
                      8.79404577e-02, 2.10058251e-01, 4.07778426e-01, 6.18195447e-01,
                      8.05221736e-01, 8.81982619e-01, 8.81408761e-01, 8.04635319e-01,
                      7.12583038e-01, 5.63624493e-01, 3.79195633e-01, 2.57383635e-01,
                      2.77698860e-01, 3.17503834e-01, 2.52614169e-01, 1.40072174e-01,
                      8.11092811e-02, 1.74444520e-01, 4.48365411e-01, 7.99302231e-01,
                      1.15456672e+00, 1.46584257e+00, 1.55645748e+00, 1.52179887e+00,
                      1.32410251e+00, 1.08173040e+00, 8.26186539e-01, 5.62088713e-01,
                      3.14712536e-01, 1.62061169e-01, 1.04155703e-01, 7.71805545e-02,
                      4.35380957e-02, 2.50607677e-02, 1.74290673e-02, 1.22514929e-02,
                      1.33369499e-02, 5.57206461e-02, 2.89112711e-01, 1.03141841e+00,
                      1.97531775e+00, 2.26230557e+00, 1.67219372e+00, 1.03825953e+00,
                      1.15867275e+00, 2.55213927e+00, 5.38583458e+00, 8.16989613e+00,
                      1.08902771e+01, 1.28719940e+01, 1.29682258e+01, 1.17869323e+01,
                      9.87196465e+00, 7.05882360e+00, 4.83402901e+00, 2.76361011e+00,
                      1.64148440e+00, 1.17322185e+00, 8.59386521e-01, 6.08093550e-01,
                      4.01937944e-01, 4.00484054e-01, 5.46773053e-01, 7.76035866e-01,
                      9.53182152e-01, 1.05515490e+00, 1.14097329e+00, 1.24578365e+00,
                      1.37901406e+00, 1.49554451e+00, 1.46870900e+00, 1.39144475e+00,
                      1.27362604e+00, 1.24363412e+00, 1.50398479e+00, 1.96490903e+00,
                      2.07249748e+00, 1.50447228e+00, 8.07520787e-01, 6.95124178e-01,
                      1.60546979e+00, 3.23981754e+00, 5.46503112e+00, 7.26821817e+00,
                      8.38910746e+00, 8.45939917e+00, 8.12590025e+00, 6.72820209e+00,
                      5.42431663e+00, 4.20865218e+00, 2.75032194e+00, 1.86168194e+00,
                      1.36376445e+00, 1.28021094e+00, 1.26440109e+00, 1.16219918e+00,
                      1.10466864e+00, 1.05524909e+00, 1.17299865e+00, 1.39087440e+00,
                      1.35420547e+00, 1.14327494e+00, 9.69074089e-01, 6.63151483e-01,
                      3.62576428e-01, 1.64141210e-01, 4.44987228e-02, 1.09420188e-02,
                      5.02516999e-03, 7.39917398e-03, 2.17141268e-02, 6.62610122e-02,
                      1.71660461e-01, 2.38860983e-01, 2.27427259e-01, 1.84764721e-01,
                      1.62868672e-01, 2.43398244e-01, 4.37098298e-01, 8.14163699e-01,
                      1.17167245e+00, 1.35297456e+00, 1.79360331e+00, 2.06401399e+00,
                      2.78544899e+00, 3.93928931e+00, 4.44311927e+00, 3.75043770e+00,
                      2.66568159e+00, 2.46738484e+00, 4.36026180e+00, 8.37399588e+00,
                      1.11445626e+01, 1.77682132e+01, 1.95530914e+01, 2.51444235e+01,
                      2.32119216e+01, 2.25143869e+01, 1.61733472e+01, 9.99779893e+00,
                      4.60202083e+00, 2.00743938e+00, 9.28951139e-01, 6.41084630e-01,
                      6.25982338e-01, 5.72600583e-01, 5.31632313e-01, 4.18829881e-01,
                      3.07508981e-01, 2.22111386e-01, 2.07042134e-01, 2.60018403e-01,
                      3.40103126e-01, 4.43120940e-01, 5.39964136e-01, 6.30628570e-01,
                      6.93355111e-01, 6.99081023e-01, 6.32744809e-01, 4.87121700e-01,
                      3.27109376e-01, 1.80938580e-01, 9.91210774e-02, 8.97300461e-02,
                      1.13266504e-01, 1.87340772e-01, 3.46122991e-01, 5.03288922e-01,
                      6.51992797e-01, 6.67478285e-01, 7.40511855e-01, 8.32821925e-01,
                      9.50889896e-01, 1.05623185e+00, 1.06211599e+00, 9.44701993e-01,
                      8.77988339e-01, 8.28263409e-01, 8.11766643e-01, 7.49304145e-01,
                      7.58445290e-01, 9.73391112e-01, 1.49124552e+00, 1.78612619e+00,
                      1.73820414e+00, 1.68904224e+00, 1.81558782e+00, 2.58386489e+00,
                      4.18086310e+00, 5.92137458e+00, 7.89003190e+00, 1.02090173e+01,
                      1.08727164e+01, 1.08566591e+01, 9.73979192e+00, 7.89239441e+00,
                      5.69093989e+00, 3.72496159e+00, 2.27753744e+00, 1.15314220e+00,
                      6.46019163e-01, 4.45707689e-01, 3.90844426e-01, 3.93218541e-01,
                      5.23972382e-01, 8.94092786e-01, 1.55006585e+00, 1.96316464e+00,
                      2.31724744e+00, 2.72476158e+00, 3.06731620e+00, 3.41440731e+00,
                      3.69840481e+00, 3.74168026e+00, 3.76891884e+00, 3.48346715e+00,
                      3.25545681e+00, 3.38359934e+00, 3.38287214e+00, 3.75051920e+00,
                      3.81777261e+00, 3.49627593e+00, 3.09920918e+00, 3.26454937e+00,
                      3.76329040e+00, 3.76144385e+00, 2.43217849e+00, 1.18231076e+00,
                      7.93995531e-01, 1.45616803e+00, 2.89843963e+00, 5.40488341e+00,
                      7.53429383e+00, 1.02642608e+01, 1.16715615e+01, 1.37273068e+01,
                      1.40451840e+01, 1.44628543e+01, 1.28202940e+01, 9.70856607e+00,
                      5.69683820e+00, 3.25102177e+00, 2.37830616e+00, 2.00149821e+00,
                      1.74927036e+00, 1.65331474e+00, 1.62990417e+00, 1.64355037e+00,
                      1.75428166e+00, 1.87642047e+00, 2.13166569e+00, 2.31807451e+00,
                      2.30537090e+00, 2.16288311e+00, 1.92688667e+00, 1.86637402e+00,
                      1.90780997e+00, 2.01582249e+00, 2.24025463e+00, 2.29866294e+00,
                      2.09872774e+00, 1.84910173e+00, 1.70182986e+00, 1.70867758e+00,
                      1.82433233e+00, 2.01852328e+00, 2.08872816e+00, 2.45276044e+00,
                      2.72497769e+00, 3.06717958e+00, 2.91864763e+00, 2.10365775e+00,
                      1.35195677e+00, 6.81349242e-01, 2.67514594e-01, 1.39963041e-01,
                      1.30313568e-01, 2.02025211e-01, 2.46867424e-01, 3.78185225e-01,
                      6.56323939e-01, 9.48469930e-01, 9.63759803e-01, 6.37660610e-01,
                      2.04377594e-01, 4.51298704e-02, 5.05063122e-02, 1.07120840e-01,
                      1.28152248e-01, 9.90241551e-02, 5.55110849e-02, 5.51952928e-02,
                      1.21655387e-01, 2.44058295e-01, 4.00718458e-01, 5.42134714e-01,
                      6.58038754e-01, 7.27665605e-01, 7.08759979e-01, 6.17242701e-01,
                      4.82299016e-01, 3.48136750e-01, 2.60105621e-01, 2.72805138e-01,
                      3.68705832e-01, 4.88513202e-01, 6.70046952e-01, 8.22227091e-01]),
               'dn_pix_ks_CLEAR+F150W2_B': array([1.51870452e+00, 1.34472782e+00, 1.01437713e+00, 7.73806716e-01,
                      6.77512329e-01, 5.94907795e-01, 6.29894416e-01, 6.46211044e-01,
                      5.14834183e-01, 4.32648684e-01, 3.73965701e-01, 4.18191467e-01,
                      6.85561028e-01, 1.46063059e+00, 2.47848545e+00, 3.72570907e+00,
                      4.69063516e+00, 5.44610648e+00, 5.80026923e+00, 5.64925506e+00,
                      5.05123973e+00, 3.78473353e+00, 3.04102150e+00, 2.79847021e+00,
                      2.94687332e+00, 3.51023992e+00, 4.41082739e+00, 5.52434158e+00,
                      6.26450479e+00, 6.17195098e+00, 5.06024074e+00, 3.71345440e+00,
                      2.67832042e+00, 1.99180969e+00, 1.60901659e+00, 1.32291939e+00,
                      1.52793378e+00, 2.32850409e+00, 3.04570842e+00, 3.22640141e+00,
                      3.18431591e+00, 2.57232712e+00, 1.99541941e+00, 1.42001685e+00,
                      1.15600792e+00, 6.80408859e-01, 5.08181842e-01, 3.21533027e-01,
                      1.41749172e-01, 5.84725136e-02, 1.07841765e-01, 3.09287889e-01,
                      7.86254949e-01, 1.83228810e+00, 3.29650040e+00, 4.66726859e+00,
                      5.88040146e+00, 6.44337250e+00, 6.26264976e+00, 5.50280027e+00,
                      5.26009118e+00, 3.93421311e+00, 3.62496386e+00, 3.12297612e+00,
                      3.11137284e+00, 2.68804864e+00, 2.68622617e+00, 2.42666256e+00,
                      2.28126350e+00, 1.75689678e+00, 1.02545861e+00, 6.66428149e-01,
                      1.11208827e+00, 2.25456281e+00, 3.70994477e+00, 5.22871799e+00,
                      5.50346801e+00, 4.42938653e+00, 4.49110977e+00, 4.63572721e+00,
                      1.17652626e+01, 2.75614125e+01, 5.14465455e+01, 7.78680422e+01,
                      1.01142707e+02, 1.16969106e+02, 1.22809944e+02, 1.17709860e+02,
                      1.00994539e+02, 8.06192486e+01, 6.63010727e+01, 5.44866705e+01,
                      4.16749454e+01, 3.31928313e+01, 3.37869392e+01, 3.60293536e+01,
                      3.60524582e+01, 2.75235901e+01, 1.91211238e+01, 2.19730818e+01,
                      2.62212965e+01, 2.45963757e+01, 1.86303373e+01, 1.17368737e+01,
                      7.69029584e+00, 6.85510815e+00, 6.82393167e+00, 6.80585853e+00,
                      5.97401825e+00, 4.88701371e+00, 3.90416036e+00, 2.88111916e+00,
                      2.03266895e+00, 1.46799232e+00, 2.12987281e+00, 6.33217114e+00,
                      1.57425171e+01, 2.98127645e+01, 4.34978206e+01, 5.48538148e+01,
                      6.31126948e+01, 6.61711604e+01, 6.37870347e+01, 5.38514799e+01,
                      4.13086697e+01, 2.82931981e+01, 1.91155045e+01, 1.00815850e+01,
                      4.44077034e+00, 5.46796555e+00, 1.14305821e+01, 1.67276227e+01,
                      1.70854529e+01, 1.43201157e+01, 1.29916896e+01, 1.39615271e+01,
                      1.48384994e+01, 1.41438777e+01, 1.15517530e+01, 8.50640883e+00,
                      5.79650944e+00, 3.56455590e+00, 1.64700140e+00, 1.12331082e+00,
                      1.96392306e+00, 3.23172136e+00, 3.36960715e+00, 1.99113740e+00,
                      7.40221353e-01, 2.84896012e-01, 4.06679151e-01, 7.95497882e-01,
                      1.59140759e+00, 3.09776464e+00, 5.30745925e+00, 8.40099958e+00,
                      1.15286988e+01, 1.48948389e+01, 1.76561219e+01, 1.95167261e+01,
                      2.04574823e+01, 1.99174456e+01, 1.63862085e+01, 1.50260043e+01,
                      1.62185465e+01, 2.69311391e+01, 5.44048999e+01, 1.03791079e+02,
                      1.63699535e+02, 2.21713527e+02, 2.96016812e+02, 3.50173916e+02,
                      3.74521734e+02, 3.45739882e+02, 2.89248198e+02, 1.96308041e+02,
                      1.35136086e+02, 8.57539819e+01, 4.53737507e+01, 5.04629491e+01,
                      8.54783745e+01, 1.04111377e+02, 8.40857934e+01, 4.59531049e+01,
                      1.70803275e+01, 5.25161290e+00, 3.97283507e+00, 4.85841417e+00,
                      6.72573111e+00, 8.90726047e+00, 1.10777625e+01, 1.20804211e+01,
                      1.20576378e+01, 1.16529875e+01, 9.14662884e+00, 7.34081551e+00,
                      5.63113633e+00, 4.19732250e+00, 3.73092019e+00, 3.70584333e+00,
                      4.11181466e+00, 4.48909906e+00, 4.33855484e+00, 3.83974816e+00,
                      3.78480704e+00, 4.33239039e+00, 5.28834957e+00, 6.74981801e+00,
                      8.70154812e+00, 1.10172795e+01, 1.15028389e+01, 1.04712016e+01,
                      7.65487782e+00, 6.15896663e+00, 4.79778642e+00, 4.10074293e+00,
                      4.56413599e+00, 6.00707133e+00, 7.39878371e+00, 8.11899070e+00,
                      9.60904728e+00, 1.28243726e+01, 2.02742164e+01, 3.43500788e+01,
                      5.80652544e+01, 8.21160295e+01, 1.07876539e+02, 1.34717716e+02,
                      1.56476594e+02, 1.72219794e+02, 1.70600990e+02, 1.55657463e+02,
                      1.27884431e+02, 9.94035594e+01, 6.48899367e+01, 4.07719316e+01,
                      3.40641367e+01, 4.21345142e+01, 5.36409449e+01, 5.68571448e+01,
                      4.92770030e+01, 3.65273503e+01, 2.35321510e+01, 1.62441552e+01,
                      1.22181440e+01, 1.18356624e+01, 1.15598403e+01, 1.14333763e+01,
                      1.04607732e+01, 9.43396877e+00, 8.11162187e+00, 7.75364590e+00,
                      8.11787889e+00, 1.05825260e+01, 1.51331551e+01, 2.03470233e+01,
                      2.66915931e+01, 3.10511028e+01, 3.37361389e+01, 3.44475717e+01,
                      3.08196307e+01, 2.35652332e+01, 1.71543833e+01, 1.13718750e+01,
                      8.99597186e+00, 1.00083172e+01, 1.48357177e+01, 2.04350498e+01,
                      2.19211444e+01, 2.06579001e+01, 1.74099526e+01, 1.73087466e+01,
                      1.76588327e+01, 1.76783555e+01, 1.80297611e+01, 1.73627272e+01,
                      1.54022301e+01, 1.22631196e+01, 9.21729882e+00, 7.26310508e+00,
                      5.31849479e+00, 3.95358058e+00, 3.64938201e+00, 4.72440295e+00,
                      5.85564496e+00, 5.62650988e+00, 4.73750250e+00, 3.80879874e+00,
                      3.35222742e+00, 3.06811379e+00, 2.72185314e+00, 2.30424367e+00,
                      2.14817098e+00, 2.70600569e+00, 3.34929910e+00, 3.62581186e+00,
                      3.65329057e+00, 3.42770736e+00, 3.89184153e+00, 6.59680376e+00,
                      1.17753871e+01, 1.97797584e+01, 3.24098841e+01, 4.75549813e+01,
                      5.77211431e+01, 6.71020448e+01, 6.78385792e+01, 5.77992899e+01,
                      4.07693471e+01, 2.84583797e+01, 1.72908623e+01, 1.09318717e+01,
                      1.35776915e+01, 1.94905810e+01, 2.28818221e+01, 1.86368891e+01,
                      9.48199731e+00, 3.94987551e+00, 1.31189793e+00, 4.87887622e-01,
                      2.52982707e-01, 1.29188290e-01, 6.51595379e-02, 5.93021329e-02,
                      9.00427040e-02, 1.18540490e-01, 1.55308479e-01, 3.69982972e-01,
                      8.88714735e-01, 1.60674018e+00, 2.27878588e+00, 2.77867697e+00,
                      2.96891267e+00, 3.03899686e+00, 2.88015610e+00, 2.43690001e+00,
                      1.95463366e+00, 1.91234901e+00, 2.42983794e+00, 3.78884505e+00,
                      6.10917219e+00, 9.23717471e+00, 1.24400754e+01, 1.55628699e+01,
                      1.76578313e+01, 1.72904248e+01, 1.48109336e+01, 1.15413929e+01,
                      8.74345009e+00, 5.81818693e+00, 3.85681600e+00, 3.65094464e+00,
                      4.59721860e+00, 5.02163169e+00, 4.20469289e+00, 2.77233448e+00,
                      2.11767895e+00, 2.00496048e+00, 1.92429767e+00, 1.75397227e+00])}}),
 'flux_boolean': defaultdict(dict,
             {'F150W2_A': {'min_18.030454683190104_0.1': array([ True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True, False, False, False,
                      False,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True]),
               'mean_44.16813805032401_0.2': array([ True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True])},
              'flux_boolean_min_A': array([ True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True, False, False, False,
                     False,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True]),
              'F150W2_B': {'min_18.030454683190104_0.1': array([ True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                      False, False, False, False, False, False, False, False, False,
                      False, False, False, False, False, False, False, False, False,
                      False, False, False, False,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                      False, False, False, False, False, False, False, False, False,
                      False,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True, False, False, False,
                       True,  True,  True, False, False, False, False, False, False,
                      False, False, False, False, False, False, False, False, False,
                      False, False, False, False,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True, False, False, False,
                      False, False, False, False, False, False, False, False, False,
                      False, False, False, False, False, False, False, False, False,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True, False, False, False, False, False, False,
                      False,  True,  True,  True,  True,  True, False, False, False,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True, False, False, False, False, False,
                      False, False, False, False,  True,  True,  True, False, False,
                      False,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True]),
               'mean_44.16813805032401_0.2': array([ True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True, False, False, False, False, False, False, False, False,
                      False, False,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True, False, False, False, False, False,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True, False, False, False, False, False,
                      False, False, False, False, False, False, False, False, False,
                      False, False, False, False,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True, False,
                      False, False, False, False, False, False, False, False, False,
                      False,  True,  True,  True, False, False, False,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True, False, False, False,
                      False, False,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True,
                       True,  True,  True,  True,  True,  True,  True,  True,  True])},
              'flux_boolean_min_B': array([ True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                     False, False, False, False, False, False, False, False, False,
                     False, False, False, False, False, False, False, False, False,
                     False, False, False, False,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                     False, False, False, False, False, False, False, False, False,
                     False,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True, False, False, False,
                      True,  True,  True, False, False, False, False, False, False,
                     False, False, False, False, False, False, False, False, False,
                     False, False, False, False,  True,  True, False, False, False,
                     False,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True, False, False, False,
                     False, False, False, False, False, False, False, False, False,
                     False, False, False, False, False, False, False, False, False,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True, False, False, False, False, False, False,
                     False,  True,  True,  True,  True,  True, False, False, False,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True, False, False, False, False, False,
                     False, False, False, False,  True,  True,  True, False, False,
                     False,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True]),
              'flux_boolean_mean_A': array([ True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True]),
              'flux_boolean_mean_B': array([ True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True, False, False, False, False, False, False, False, False,
                     False, False,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True, False, False, False, False, False,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True, False, False, False, False, False,
                     False, False, False, False, False, False, False, False, False,
                     False, False, False, False,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True, False,
                     False, False, False, False, False, False, False, False, False,
                     False,  True,  True,  True, False, False, False,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True, False, False, False,
                     False, False,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True,
                      True,  True,  True,  True,  True,  True,  True,  True,  True])})}

Each dictionary key contains specific information about the observation:

  • visit : pandas data frame containing informations about the visits in the observation

  • ra : Right ascension value of target

  • dec : Declination value of target

  • nircam_exposure_specification: Pandas dataframe of specifics instrument configurations for NRC exposures

  • nircam_templates : Pandas dataframe containing information on which visit uses which NRC detector module

  • valid_starts_angles : Numpy array containing the starting angles of sweeps with no claws

  • valid_ends_angles : Numpy array containing the ending angles of sweeps with no claws

  • exposure_frames : See docs for explanation

  • averages_A : Statistical averages for NRC module A (displayed in V3PA vs Flux plots) (if there is no A module data, this key won’t appear)

  • averages_B : Statistical averages for NRC module B (displayed in V3PA vs Flux plots) (if there is no B module data, this key won’t appear)

  • filters : Pandas Series containing filters used in observation

  • pupils Pandas Series containing pupils used in observation

  • flux Dictionary containing flux values at each position angle. The key names depend on filter and pupil combination and are in units of counts and dn_pix_ks

  • flux_boolean : dictionary containing boolean arrays. These arrays denote where flux values surpass or the statistical limits set.

Plotting Rogue Path Tool Results#

Exposure Level Valid Angle Plots#

The following cells show how to generate figures at the exposure level for which position angles contain claws. The target is centered in the figures with a red x, the pink circles are “bright” targets from the 2MASS Survey that have a k band magnitude less than 5. The plotted stars are selected by an annulus which can be parsed to the plotting function as keyword arguments inner_radius and outer_radius. By default they are set to inner_radius=8.0 and outer_radius=12.0 in arcseconds. The green “pie slices” or “wedges” are the angles where these targets fall in the susceptibility region which is represented by the light blue polygons overlayed on the targets. Where you don’t see wedges or the susceptibility region plotted

supported_observations = program.observations.supported_observations.keys()
for obs_number in supported_observations:
    program.plot_exposures(program.observations.data[obs_number])
../../../_images/88eb196cf1c4f0f3334915e9d07b18c4b2955888f0f7cfa35fc41dcec2a6395a.png ../../../_images/d94bfdaaf6e93fce0494dc7d9e79c6e1893133fa73dc8ef935f3e40ad16129c8.png

Observation Level Valid Angle Plots#

The following plotting method will show valid angle ranges across all exposures in a single observation. If angles ranges are valid in one exposure but not in others, it will not be shown at this level. Here we plot all of the supported observations in our program.

supported_observations = program.observations.supported_observations.keys()
for obs_number in supported_observations:
    program.plot_observation(program.observations.data[obs_number])
../../../_images/d09eaafc553b7b710e6f5fd2d9023846e0146bf861c316525da218c33c1179d2.png ../../../_images/0e34449fd89fba79fbde6ae5c36edb8188d16987bec03f65e612ca3524c30946.png

Plotting a Single Angle of Attitude in V2 & V3 Space#

The figure below shows what the tool is searching for when sweeping angles. Here for a single angle we show the V2 & V3 space of the targets in our source catalog as well as the susceptibility region. The intensity of targets that fall in this region are dependent on the location where of the target in the susceptibility region and the brightness of the target.

from jwst_rogue_path_tool.plotting import plot_fixed_angle_regions

angles = np.arange(100, 106)
observation = program.observations.data[1]

for angle in angles:
    plot_fixed_angle_regions(observation, angle)
<Figure size 1000x1000 with 0 Axes>
../../../_images/72fa4df3ca73eb329282c8ac319ade1afddcb2b6fb3a8d19f5dd2002d0e9a0dc.png
<Figure size 1000x1000 with 0 Axes>
../../../_images/ac212f3c8598fb821deee58b68a115f9e9c8b9799fab10da9a6391a0ebda2952.png
<Figure size 1000x1000 with 0 Axes>
../../../_images/d42527bbcb53de878a387ec75d413c90221bc32127f1ee1f359f1a5a4cf878b1.png
<Figure size 1000x1000 with 0 Axes>
../../../_images/318d93757758bb9a91b4df375efb4eb7e0b3d2702311afd2aa7e33647c74eea2.png
<Figure size 1000x1000 with 0 Axes>
../../../_images/9816e4bb9706465431c45f74a17a5f9d458b8c0f1ed3f1b075787bd318eb774a.png
<Figure size 1000x1000 with 0 Axes>
../../../_images/715f3ea82604069302ba94a0ea822e343bf3ac7a13aa0dc64615cdd09725944a.png

Flux as a Function of Attitude#

Below we show the calculated flux as a function of attitude angle. This figure also ties in the JWST Backgrounds Tool to calculate the background of the target JWST is observing described in the APT file. By default, we set the parameters for the backgrounds tool to calculate 10% of the minimum background value. You can set the function and percentage via a dictionary and pass it to the AptProgram class.

jbt_params = [{"threshold":0.1, function:np.min}, {"threshold":0.2, "function":np.mean}, ..... {"threshold":value, "function":stats_function}]

AptProgram(apt_JSON_filename, angular_step=1.0, bkg_params=jbt_params)
from jwst_rogue_path_tool.plotting import create_v3pa_vs_flux_plot

for obs_number in supported_observations:
    create_v3pa_vs_flux_plot(program.observations.data[obs_number])
../../../_images/a47bfdfc6fa463421d6055a3f24a1c49e700573bc69be48f4fe9b4dd25dbc4b3.png ../../../_images/cd007cdac76a54ed2686a997db92db202275231b4dd50aed884f09dd70099920.png

Reporting & Applying PA Constraints in APT#

In this section, we demonstrate how to plot the predicted claw flux across all position angles for a single observation, identify the angles free from claws, and modify the observation in APT to ensure it is taken only within those good position angle ranges.

# The observation number of interest
obs_number = 5

# Make plot of claws flux vs position angle
create_v3pa_vs_flux_plot(program.observations.data[obs_number])

# Make file containing good position angles
program.make_background_report(program.observations.data[obs_number], output_directory=pathlib.Path.cwd())
../../../_images/cd007cdac76a54ed2686a997db92db202275231b4dd50aed884f09dd70099920.png
WROTE FILE TO: /home/runner/work/jdat_notebooks/jdat_notebooks/notebooks/NIRCam/NIRCam_claw_detection/0/valid_angle_reports/program_0_observation_5_background_module_B.txt

The plot above illustrates the predicted claw flux at each position angle for every filter. The horizontal orange and green lines indicate signal levels at 10% (based on minimum background throughout the year) and 20% (based on mean background throughout the year) of the predicted background levels, respectively. These thresholds help identify position angles free from claw contamination. Typically, the 20% threshold is sufficient, but for certain targets—such as faint, high-redshift objects—observers may prefer the more conservative 10% threshold. The PA ranges that are free from claws based on each threshold are saved to a text file, e.g. for this example observation program_0_observation_5_background_module_B.txt:

**** Ranges Not Impacted by Background Thresholds ****
**** Module B ****
**** Ranges Under 0.1 of min  ****
PA Start -- PA End: 0 -- 80
PA Start -- PA End: 103 -- 115
PA Start -- PA End: 126 -- 157
PA Start -- PA End: 162 -- 163
PA Start -- PA End: 184 -- 221
PA Start -- PA End: 243 -- 253
PA Start -- PA End: 263 -- 265
PA Start -- PA End: 270 -- 300
PA Start -- PA End: 310 -- 312
PA Start -- PA End: 315 -- 359
**** Ranges Under 0.2 of mean  ****
PA Start -- PA End: 0 -- 81
PA Start -- PA End: 92 -- 117
PA Start -- PA End: 124 -- 165
PA Start -- PA End: 178 -- 178
PA Start -- PA End: 183 -- 223
PA Start -- PA End: 235 -- 237
PA Start -- PA End: 240 -- 302
PA Start -- PA End: 308 -- 359

The PA ranges in this file are determined conservatively by considering all filters together. If the predicted claw flux in any filter exceeds the threshold, the corresponding position angle is excluded from these ranges.


Once the PA ranges free from claws are determined, users can add them to their APT files as a PA Special Requirement to ensure their observations are only taken within those PA ranges. To do this, select the observation in APT, then go to Special Requirement→Add→Position Angle→PA Range and input each good PA range in the V3PA Range boxes. Each PA range should be entered as a separate Special Requirement. For example, using the 20% threshold, the first Special Requirement for the example observation above would be:

Aperture PA Range 359.92542306 to 80.92542306 Degrees (V3 0.0 to 81.0)

Currently, the tool does not take into account target visibility, so some of the PA ranges shown may not need to be considered. For example, if a strong claw is predicted at a PA that is never available in the roll analysis, users don’t have to include Special Requirements to avoid that PA as it will never be used anyway. To check which PA ranges are actually available for a given visit, users can go to Visit Planner→Reports→Visitx.x→Total Roll Analysis For Visit.