From c929e01ba40aeb31fc5785ad3413a732a3e1afad Mon Sep 17 00:00:00 2001 From: JoschD <26184899+JoschD@users.noreply.github.com> Date: Wed, 13 Sep 2023 22:23:24 +0200 Subject: [PATCH] Plot normalized dispersion (#426) * extra plotting for normalized dispersion * updated changelog and version * added test --- CHANGELOG.md | 8 + omc3/__init__.py | 2 +- omc3/plotting/plot_optics_measurements.py | 233 ++++++-- omc3/utils/iotools.py | 11 +- .../normalised_dispersion_x.tfs | 532 ++++++++++++++++++ tests/unit/test_plot_optics_measurements.py | 31 + 6 files changed, 761 insertions(+), 56 deletions(-) create mode 100644 tests/inputs/optics_measurement/example_output/normalised_dispersion_x.tfs diff --git a/CHANGELOG.md b/CHANGELOG.md index 1caddb756..3e279bc89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # OMC3 Changelog +#### 2023-09-01 - v0.11.2 - _jdilly_ + +- Fixed: + - Plot Optics: making normalized dispersion plot a special case. + +- Added: + - Plot Optics: optional input "--labels" to manually set the legend-labels. + #### 2023-06-16 - v0.11.1 - _jdilly_ - Fixed: diff --git a/omc3/__init__.py b/omc3/__init__.py index f69b08204..c810e36f8 100644 --- a/omc3/__init__.py +++ b/omc3/__init__.py @@ -11,7 +11,7 @@ __title__ = "omc3" __description__ = "An accelerator physics tools package for the OMC team at CERN." __url__ = "https://github.com/pylhc/omc3" -__version__ = "0.11.1" +__version__ = "0.11.2" __author__ = "pylhc" __author_email__ = "pylhc@github.com" __license__ = "MIT" diff --git a/omc3/plotting/plot_optics_measurements.py b/omc3/plotting/plot_optics_measurements.py index 5ed3aaaed..089e61b04 100644 --- a/omc3/plotting/plot_optics_measurements.py +++ b/omc3/plotting/plot_optics_measurements.py @@ -10,6 +10,7 @@ figs = plot( folders=['folder1', 'folder2'], + labels=['LabelForFolder1', 'LabelForFolder2'], combine_by=['files'], # to compare folder1 and folder2 output='output_directory', delta=True, # delta from reference @@ -27,68 +28,146 @@ *--Required--* -- **folders** *(MultiClass)*: Optics Measurements folders containing the analysed data. +- **folders** *(PathOrStr)*: -- **optics_parameters** *(str)*: Optics parameters to plot, e.g. 'beta_amplitude'. - RDTs need to be specified with plane, e.g. 'f1001_x' + Optics Measurements folders containing the analysed data. + + +- **optics_parameters** *(str)*: + + Optics parameters to plot, e.g. 'beta_amplitude'. RDTs need to be + specified with plane, e.g. 'f1001_x' *--Optional--* -- **change_marker**: Changes marker for each line in the plot. +- **change_marker**: + + Changes marker for each line in the plot. + + action: ``store_true`` + + +- **combine_by**: + + Combine plots into one. Either files, planes (not separated into two + axes) or both. + + choices: ``['files', 'planes']`` + + +- **delta**: + + Plot the difference to model instead of the parameter. + + action: ``store_true`` + + +- **errorbar_alpha** *(float)*: + + Alpha value for error bars + + default: ``0.6`` + + +- **ip_positions**: + + Input to plot IP-Positions into the plots. Either 'LHCB1' or 'LHCB2' + for LHC defaults, a dictionary of labels and positions or path to TFS + file of a model. + + +- **ip_search_pattern**: + + In case your IPs have a weird name. Specify regex pattern. + + default: ``IP\\d$`` + + +- **labels** *(str)*: + + Labels for the folders. If not provided, the folder names (with + parents until each label is unique) will be used. + + +- **lines_manual** *(DictAsString)*: + + List of manual lines to plot. Need to contain arguments for axvline, + and may contain the additional keys "text" and "loc" which is one of + ['bottom', 'top', 'line bottom', 'line top'] and places the text at + the given location. + + default: ``[]`` + + +- **manual_style** *(DictAsString)*: + + Additional style rcParameters which update the set of predefined ones. + + default: ``{}`` + + +- **ncol_legend** *(int)*: + + Number of bpm legend-columns. If < 1 no legend is shown. + + default: ``3`` + + +- **output** *(PathOrStr)*: + + Folder to output the results to. + + +- **plot_styles** *(str)*: - Action: ``store_true`` -- **combine_by**: Combine plots into one. Either files, planes (not separated into two axes) or both. + Which plotting styles to use, either from plotting.styles.*.mplstyles + or default mpl. - Choices: ``['files', 'planes']`` -- **delta**: Plot the difference to model instead of the parameter. + default: ``['standard']`` - Action: ``store_true`` -- **errorbar_alpha** *(float)*: Alpha value for error bars - Default: ``0.6`` -- **ip_positions**: Input to plot IP-Positions into the plots. Either 'LHCB1' - or 'LHCB2' for LHC defaults, a dictionary of labels and positions or path to TFS file of a model. +- **share_xaxis**: -- **ip_search_pattern**: In case your IPs have a weird name. Specify regex pattern. + In case of multiple axes per figure, share x-axis. - Default: ``IP\\d$`` -- **lines_manual** *(DictAsString)*: List of manual lines to plot. - Need to contain arguments for axvline, and may contain the additional keys "text" - and "loc" which is one of ['bottom', 'top', 'line bottom', 'line top'] - and places the text at the given location. + action: ``store_true`` - Default: ``[]`` -- **manual_style** *(DictAsString)*: Additional style rcParameters which - update the set of predefined ones. - Default: ``{}`` -- **ncol_legend** *(int)*: Number of bpm legend-columns. If < 1 no legend is shown. +- **show**: - Default: ``3`` -- **output** *(MultiClass)*: Folder to output the results to. + Shows plots. -- **plot_styles** *(str)*: Which plotting styles to use, - either from plotting.styles.*.mplstyles or default mpl. + action: ``store_true`` - Default: ``['standard']`` -- **share_xaxis**: In case of multiple axes per figure, share x-axis. - Action: ``store_true`` -- **show**: Shows plots. +- **suppress_column_legend**: - Action: ``store_true`` -- **suppress_column_legend**: Does not show column name in legend - e.g. when combining by files (see also `ncol_legend`). + Does not show column name in legend e.g. when combining by files (see + also `ncol_legend`). - Action: ``store_true`` -- **x_axis**: Which parameter to use for the x axis. + action: ``store_true`` + + +- **x_axis**: + + Which parameter to use for the x axis. + + choices: ``['location', 'phase-advance']`` + + default: ``location`` + + +- **x_lim** *(OptionalFloat)*: + + Limits on the x axis (Tupel) + + +- **y_lim** *(OptionalFloat)*: + + Limits on the y axis (Tupel) - Choices: ``['location', 'phase-advance']`` - Default: ``location`` -- **x_lim** *(float, int, None)*: Limits on the x axis (Tupel) -- **y_lim** *(float, int, None)*: Limits on the y axis (Tupel) """ from pathlib import Path @@ -97,7 +176,7 @@ from generic_parser.entry_datatypes import DictAsString from omc3.definitions.constants import PLANES from omc3.definitions.optics import POSITION_COLUMN_MAPPING, FILE_COLUMN_MAPPING, ColumnsAndLabels, RDT_COLUMN_MAPPING -from omc3.optics_measurements.constants import EXT, AMPLITUDE, PHASE, REAL, IMAG +from omc3.optics_measurements.constants import EXT, AMPLITUDE, NORM_DISP_NAME, PHASE, REAL, IMAG from omc3.optics_measurements.rdt import _rdt_to_order_and_type from omc3.plotting.optics_measurements.constants import (DEFAULTS, IP_POS_DEFAULT) from omc3.plotting.plot_tfs import plot as plot_tfs, OptionalFloat @@ -127,6 +206,14 @@ def get_params() -> EntryPointParameters: type=str, nargs="+", ) + params.add_parameter( + name="labels", + help="Labels for the folders. If not provided, the folder names " + "(with parents until each label is unique) will be used.", + required=False, + nargs="+", + type=str, + ) params.add_parameter( name="delta", help="Plot the difference to model instead of the parameter.", @@ -263,7 +350,10 @@ def plot(opt): is_rdt = optics_parameter.lower().startswith("f") files, file_labels = zip(*get_unique_filenames(opt.folders)) - file_labels = ["_".join(flabels) for flabels in file_labels] + if opt.labels: + file_labels = opt.labels + else: + file_labels = ["_".join(flabels) for flabels in file_labels] if is_rdt: fig_dict.update(_plot_rdt( @@ -274,14 +364,22 @@ def plot(opt): if not optics_parameter.endswith("_"): optics_parameter += "_" - fig_dict.update(_plot_param( - optics_parameter, files, file_labels, x_axis.column, x_axis.label, - ip_positions, opt,) - ) + if optics_parameter == NORM_DISP_NAME: + fig_dict.update(_plot_norm_dispersion( + optics_parameter, files, file_labels, x_axis.column, x_axis.label, + ip_positions, opt,) + ) + else: + fig_dict.update(_plot_param( + optics_parameter, files, file_labels, x_axis.column, x_axis.label, + ip_positions, opt,) + ) return fig_dict def _check_opt(opt): + if opt.labels and not len(opt.labels) == len(opt.folders): + raise ValueError("Labels need to be of same size as folders.") return opt @@ -371,7 +469,7 @@ def _get_rdt_columns(): def _plot_param(optics_parameter, files, file_labels, x_column, x_label, ip_positions, opt): - """Main plotting function for all parameters but RDTs.""" + """Main plotting function for all parameters but RDTs and normalized dispersion.""" y_column, error_column, column_label, y_label = _get_columns_and_label(optics_parameter, opt.delta) same_fig = None @@ -416,6 +514,45 @@ def _plot_param(optics_parameter, files, file_labels, x_column, x_label, ip_posi 'share_xaxis']) ) +def _plot_norm_dispersion(optics_parameter, files, file_labels, x_column, x_label, ip_positions, opt): + """Plotting function for normalized dispersion. + Normalized dispersion is special, as we only evaluate the horizontal plane (X) in the optics measurements. + We therefore plot the delta in the second (lower) plot.""" + y_column, error_column, column_label, y_label = _get_columns_and_label(optics_parameter, delta=False) + delta_y_column, delta_error_column, delta_column_label, delta_y_label = _get_columns_and_label(optics_parameter, delta=True) + + same_fig = None + column_labels = [column_label, delta_column_label] + same_fig = 'columns' + + if opt.suppress_column_legend: + column_labels = [''] + + prefix = '' + if opt.combine_by and "files" in opt.combine_by: + prefix += f'{optics_parameter}' + + return plot_tfs( + files=[f.absolute()/f'{optics_parameter}{{0}}{EXT}' for f in files], + file_labels=list(file_labels), + y_columns=[y_column, delta_y_column], + y_labels=[[y_label, delta_y_label]], + column_labels=column_labels, + error_columns=[error_column, delta_error_column], + x_columns=[x_column, x_column], + x_labels=[x_label, x_label], + planes=[PLANES[0]], + vertical_lines=ip_positions + opt.lines_manual, + same_figure=same_fig, + same_axes=opt.combine_by, + single_legend=True, + output_prefix=f"plot_{prefix}", + **opt.get_subdict(['show', 'output', + 'plot_styles', 'manual_style', + 'change_marker', 'errorbar_alpha', + 'ncol_legend', 'x_lim', 'y_lim', + 'share_xaxis']) + ) def _get_columns_and_label(parameter, delta): cal: ColumnsAndLabels = FILE_COLUMN_MAPPING[parameter] diff --git a/omc3/utils/iotools.py b/omc3/utils/iotools.py index b5686e40f..b5adf453f 100644 --- a/omc3/utils/iotools.py +++ b/omc3/utils/iotools.py @@ -4,19 +4,15 @@ Helper functions for input/output issues. """ -import sys -from typing import Iterable, Any, Union - -import re - -import json import os +import re import shutil +import sys from pathlib import Path +from typing import Any, Union from generic_parser.entry_datatypes import get_instance_faker_meta, get_multi_class from generic_parser.entrypoint_parser import save_options_to_config -from pandas import DataFrame from tfs import TfsDataFrame from omc3.definitions import formats @@ -125,6 +121,7 @@ def __new__(cls, value): """A class that allows `float`, 'int' or `None`. Can be used in numeric-lists when individual entries can be `None`.""" OptionalFloat = get_multi_class(float, int, type(None)) +OptionalFloat.__name__ = "OptionalFloat" def strip_quotes(value: Any) -> Any: diff --git a/tests/inputs/optics_measurement/example_output/normalised_dispersion_x.tfs b/tests/inputs/optics_measurement/example_output/normalised_dispersion_x.tfs new file mode 100644 index 000000000..2a7600ea4 --- /dev/null +++ b/tests/inputs/optics_measurement/example_output/normalised_dispersion_x.tfs @@ -0,0 +1,532 @@ +@ Measure_optics:version %s "0.11.1" +@ Command %s "/afs/cern.ch/eng/sl/lintrack/omc_python_edge/bin/python /afs/cern.ch/eng/sl/lintrack/omc_repositories/omc3/omc3/hole_in_one.py --optics --files /user/slops/data/LHC_DATA/OP_DATA/Betabeat/2023-08-30/LHCB2/Measurements/Beam2@BunchTurn@2023_08_31@01_33_20_536/bunchid1045_Beam2@BunchTurn@2023_08_31@01_33_20_536.sdds /user/slops/data/LHC_DATA/OP_DATA/Betabeat/2023-08-30/LHCB2/Measurements/Beam2@BunchTurn@2023_08_31@01_34_33_775/bunchid1045_Beam2@BunchTurn@2023_08_31@01_34_33_775.sdds /user/slops/data/LHC_DATA/OP_DATA/Betabeat/2023-08-30/LHCB2/Measurements/Beam2@BunchTurn@2023_08_31@01_35_50_606/bunchid1045_Beam2@BunchTurn@2023_08_31@01_35_50_606.sdds /user/slops/data/LHC_DATA/OP_DATA/Betabeat/2023-08-30/LHCB2/Measurements/Beam2@BunchTurn@2023_08_31@01_49_00_327/bunchid1045_Beam2@BunchTurn@2023_08_31@01_49_00_327.sdds /user/slops/data/LHC_DATA/OP_DATA/Betabeat/2023-08-30/LHCB2/Measurements/Beam2@BunchTurn@2023_08_31@01_50_12_027/bunchid1045_Beam2@BunchTurn@2023_08_31@01_50_12_027.sdds /user/slops/data/LHC_DATA/OP_DATA/Betabeat/2023-08-30/LHCB2/Measurements/Beam2@BunchTurn@2023_08_31@01_59_50_523/bunchid1045_Beam2@BunchTurn@2023_08_31@01_59_50_523.sdds /user/slops/data/LHC_DATA/OP_DATA/Betabeat/2023-08-30/LHCB2/Measurements/Beam2@BunchTurn@2023_08_31@02_01_01_553/bunchid1045_Beam2@BunchTurn@2023_08_31@02_01_01_553.sdds /user/slops/data/LHC_DATA/OP_DATA/Betabeat/2023-08-30/LHCB2/Measurements/Beam2@BunchTurn@2023_08_31@01_33_20_536/bunchid2000_Beam2@BunchTurn@2023_08_31@01_33_20_536.sdds /user/slops/data/LHC_DATA/OP_DATA/Betabeat/2023-08-30/LHCB2/Measurements/Beam2@BunchTurn@2023_08_31@01_34_33_775/bunchid2000_Beam2@BunchTurn@2023_08_31@01_34_33_775.sdds /user/slops/data/LHC_DATA/OP_DATA/Betabeat/2023-08-30/LHCB2/Measurements/Beam2@BunchTurn@2023_08_31@01_35_50_606/bunchid2000_Beam2@BunchTurn@2023_08_31@01_35_50_606.sdds /user/slops/data/LHC_DATA/OP_DATA/Betabeat/2023-08-30/LHCB2/Measurements/Beam2@BunchTurn@2023_08_31@01_49_00_327/bunchid2000_Beam2@BunchTurn@2023_08_31@01_49_00_327.sdds /user/slops/data/LHC_DATA/OP_DATA/Betabeat/2023-08-30/LHCB2/Measurements/Beam2@BunchTurn@2023_08_31@01_50_12_027/bunchid2000_Beam2@BunchTurn@2023_08_31@01_50_12_027.sdds /user/slops/data/LHC_DATA/OP_DATA/Betabeat/2023-08-30/LHCB2/Measurements/Beam2@BunchTurn@2023_08_31@01_59_50_523/bunchid2000_Beam2@BunchTurn@2023_08_31@01_59_50_523.sdds /user/slops/data/LHC_DATA/OP_DATA/Betabeat/2023-08-30/LHCB2/Measurements/Beam2@BunchTurn@2023_08_31@02_01_01_553/bunchid2000_Beam2@BunchTurn@2023_08_31@02_01_01_553.sdds /user/slops/data/LHC_DATA/OP_DATA/Betabeat/2023-08-30/LHCB2/Measurements/Beam2@BunchTurn@2023_08_31@01_33_20_536/bunchid32_Beam2@BunchTurn@2023_08_31@01_33_20_536.sdds /user/slops/data/LHC_DATA/OP_DATA/Betabeat/2023-08-30/LHCB2/Measurements/Beam2@BunchTurn@2023_08_31@01_34_33_775/bunchid32_Beam2@BunchTurn@2023_08_31@01_34_33_775.sdds /user/slops/data/LHC_DATA/OP_DATA/Betabeat/2023-08-30/LHCB2/Measurements/Beam2@BunchTurn@2023_08_31@01_35_50_606/bunchid32_Beam2@BunchTurn@2023_08_31@01_35_50_606.sdds /user/slops/data/LHC_DATA/OP_DATA/Betabeat/2023-08-30/LHCB2/Measurements/Beam2@BunchTurn@2023_08_31@01_49_00_327/bunchid32_Beam2@BunchTurn@2023_08_31@01_49_00_327.sdds /user/slops/data/LHC_DATA/OP_DATA/Betabeat/2023-08-30/LHCB2/Measurements/Beam2@BunchTurn@2023_08_31@01_50_12_027/bunchid32_Beam2@BunchTurn@2023_08_31@01_50_12_027.sdds /user/slops/data/LHC_DATA/OP_DATA/Betabeat/2023-08-30/LHCB2/Measurements/Beam2@BunchTurn@2023_08_31@01_59_50_523/bunchid32_Beam2@BunchTurn@2023_08_31@01_59_50_523.sdds /user/slops/data/LHC_DATA/OP_DATA/Betabeat/2023-08-30/LHCB2/Measurements/Beam2@BunchTurn@2023_08_31@02_01_01_553/bunchid32_Beam2@BunchTurn@2023_08_31@02_01_01_553.sdds --outputdir /user/slops/data/LHC_DATA/OP_DATA/Betabeat/2023-08-30/LHCB2/Results/b2_30cm_onoffmom --calibrationdir /afs/cern.ch/eng/sl/lintrack/LHC_commissioning2017/Calibration_factors_2017/Calibration_factors_2017_beam2 --range_of_bpms 11 --nonlinear rdt --compensation equation --rdt_magnet_order 4 --accel lhc --model_dir /user/slops/data/LHC_DATA/OP_DATA/Betabeat/2023-08-30/LHCB2/Models/b2_30cm --year 2022 --beam 2" +@ CWD %s "/nfs/cs-ccr-nfsop/nfs2/vol1/u1/lhcop" +@ Date %s "31. August 2023, 04:06:44" +@ Model_directory %s "/user/slops/data/LHC_DATA/OP_DATA/Betabeat/2023-08-30/LHCB2/Models/b2_30cm" +@ Compensation %s "by equation" +@ Q1 %le 0.2799878143616681 +@ Q2 %le 0.30998595559573516 +* NAME S COUNT MUXMDL XMDL NDX ERRNDX DELTANDX ERRDELTANDX NDXMDL DX ERRDX DELTADX ERRDELTADX DXMDL DPX DPXMDL +$ %s %le %d %le %le %le %le %le %le %le %le %le %le %le %le %le %le + "BPMYB.5R8.B2" 16.238 21 0.01044481336 1.089468492e-06 -0.0105082349058 0.000289800828991 -0.00154392963577 0.000289800828991 -0.00896430527 -0.151266464516 0.00417169460031 -0.00296165151559 0.00417169460031 -0.148304813 -0.00220115591193 -0.002043713335 + "BPMR.6R8.B2" 100.346 21 0.2669717176 2.130625081e-07 -0.0156496047629 0.00232482667387 0.00307799986126 0.00232482667387 -0.0187276046242 -0.0886877838492 0.01317501168 0.0174387879508 0.01317501168 -0.1061265718 -0.00277312866186 -0.003273682538 + "BPM_A.7R8.B2" 122.586 21 0.3189118626 1.712577389e-07 -0.0112487810871 0.000439489303444 0.00336775872279 0.000439489303444 -0.0146165398099 -0.137728856508 0.00538105940034 0.0412043730915 0.00538105940034 -0.1789332296 0.00980646384988 -0.003273682538 + "BPM.8R8.B2" 164.0249894 21 0.5031999179 -1.931388282e-07 0.0632883544127 0.00113540371313 0.000716035747911 0.00113540371313 0.0625723186648 0.189737975252 0.00340393115954 0.000758620051516 0.00340393115954 0.1889793552 0.0161201547961 0.01605320582 + "BPM.9R8.B2" 203.0919788 21 0.7129330232 -8.513687966e-07 0.0880990111076 0.00041247053509 0.000656737642679 0.00041247053509 0.0874422734649 1.28204603676 0.00600240806501 -0.00335856024162 0.00600240806501 1.285404597 0.03472663293 0.03477079339 + "BPM.10R8.B2" 243.5569682 21 0.7674633864 -2.651437388e-07 0.123373079506 0.000623462819953 0.00255784663125 0.000623462819953 0.120815232875 0.860864748371 0.00435035881221 0.0041156921709 0.00435035881221 0.8567490562 -0.00992338570903 -0.009750160208 + "BPM.11R8.B2" 295.3976576 21 0.9214869403 3.340744307e-07 0.194052374401 0.000268497294051 -0.00577887676402 0.000268497294051 0.199831251165 1.88042234917 0.00260181465949 -0.0577517848319 0.00260181465949 1.938174134 0.0245288164323 0.02698467865 + "BPM.12R8.B2" 350.1241417 21 1.106953426 4.429689517e-07 0.168969149606 0.000727554283216 -0.00519929021622 0.000727554283216 0.174168439823 0.980254662411 0.00422082066425 -0.0204411915888 0.00422082066425 1.000695854 -0.0113835769281 -0.01100875406 + "BPM.13R8.B2" 403.5756258 21 1.197470576 1.158431603e-06 0.119772974642 0.000598262877008 0.0033720087285 0.000598262877008 0.116400965914 2.20617710731 0.011019796973 0.0520563213142 0.011019796973 2.154120786 0.091530093947 0.03139670516 + "BPM.14R8.B2" 457.0271099 21 1.265201607 2.494600766e-07 0.1778869432 0.000751363996969 0.00956082816086 0.000751363996969 0.16832611504 1.14020626987 0.0048160361007 0.0451567118686 0.0048160361007 1.095049558 -0.0153404925828 -0.01447698978 + "BPM.15R8.B2" 510.478594 21 1.462135973 -4.729244228e-07 0.225917955495 0.000337578769712 -0.00510852188838 0.000337578769712 0.231026477383 2.11567590619 0.00316135682069 -0.0356046538076 0.00316135682069 2.15128056 0.0289393386605 0.02968800589 + "BPM.16R8.B2" 563.9300781 21 1.617776689 -4.934015472e-07 0.168527990762 0.000724228138883 -0.00109132169144 0.000724228138883 0.169619312453 1.10352853335 0.0047422770087 0.0112607073515 0.0047422770087 1.092267826 -0.0143911070282 -0.01444701915 + "BPM.17R8.B2" 617.3815622 21 1.697470608 -1.159077178e-06 0.120568759845 0.000520901498504 0.00465329304802 0.000520901498504 0.115915466797 2.22858305488 0.00962830051763 0.0822281068785 0.00962830051763 2.146354948 0.0318550203811 0.02964408689 + "BPM.18R8.B2" 670.8330463 21 1.765200997 6.819306988e-08 0.176362349492 0.00062667271338 0.00853467735859 0.00062667271338 0.167827672133 1.14028009287 0.00405178555329 0.0484655188733 0.00405178555329 1.091814574 -0.0135491276738 -0.0143563633 + "BPM.20R8.B2" 777.7360145 21 2.117776997 -4.123992538e-06 0.170959366425 0.000762517526197 0.000845297917482 0.000762517526197 0.170114068508 1.10318671288 0.00492046280253 0.00772257988152 0.00492046280253 1.095464133 -0.0143567208014 -0.01439836026 + "BPM.21R8.B2" 831.1874986 21 2.197469378 -7.293213953e-06 0.120113134772 0.000545647596758 0.00363632688795 0.000545647596758 0.116476807884 2.22316618754 0.0100993558258 0.0664005985354 0.0100993558258 2.156765589 0.0303392303482 0.02978372318 + "BPM.22R8.B2" 884.6389827 21 2.265196156 -3.664312118e-07 0.173937196405 0.000564516657009 0.0056006704387 0.000564516657009 0.168336525966 1.14461739583 0.00371487869875 0.0494520578265 0.00371487869875 1.095165338 -0.0154198395252 -0.01450311674 + "BPM.23R8.B2" 938.0904667 21 2.462120283 -4.630494537e-07 0.22581546463 0.000250618880588 -0.0052285073191 0.000250618880588 0.23104397195 2.09876979826 0.00232929723529 -0.0526224867447 0.00232929723529 2.151392285 0.0287770112243 0.02969037114 + "BPM.24R8.B2" 991.5419508 21 2.617774262 -4.934167878e-07 0.169516155065 0.000563217417921 -0.000112460102106 0.000563217417921 0.169628615167 1.07488909523 0.00357131897271 -0.0174032687735 0.00357131897271 1.092292364 -0.0145566719565 -0.01444891063 + "BPM.25R8.B2" 1044.993435 21 2.697469677 -1.158966671e-06 0.116466209731 0.000343447561191 0.00055508410388 0.000343447561191 0.115911125627 2.15192468986 0.00634581728304 0.00561751985983 0.00634581728304 2.14630717 0.0296874768001 0.02964276417 + "BPM.26R8.B2" 1098.444919 21 2.765195635 6.827947272e-08 0.16933833763 0.000324733461962 0.0015225719455 0.000324733461962 0.167815765684 1.10567546569 0.00212031030187 0.0138878746868 0.00212031030187 1.091787591 -0.014885169412 -0.01435586361 + "BPM.27R8.B2" 1151.896403 21 2.962120783 -6.023066747e-06 0.222677174978 0.000603181743219 -0.00840655745725 0.000603181743219 0.231083732436 2.06873874803 0.00560374202889 -0.0830104519709 0.00560374202889 2.1517492 0.026322092855 0.02975594046 + "BPM.28R8.B2" 1205.347887 21 3.11777457 -4.123922984e-06 0.169216204854 0.000375755437825 -0.000898966443486 0.000375755437825 0.170115171298 1.084909639 0.0024091114486 -0.0105261280025 0.0024091114486 1.095435767 -0.0144888420138 -0.01439749811 + "BPM.29R8.B2" 1258.799371 21 3.197468447 -7.293258233e-06 0.120743399575 0.000576440765081 0.00426933501178 0.000576440765081 0.116474064563 2.24202262707 0.010703634675 0.0852750710657 0.010703634675 2.156747556 0.0305683313006 0.02978388056 + "BPM.30R8.B2" 1312.250855 21 3.265194411 -6.838972005e-07 0.17750288344 0.000541017929937 0.00917356517774 0.000541017929937 0.168329318262 1.15555860435 0.00352207193445 0.0604387863484 0.00352207193445 1.095119818 -0.0160952929757 -0.01450371972 + "BPM.31R8.B2" 1365.70234 21 3.462117764 -1.593045556e-06 0.225334184859 0.000243023247589 -0.00569445518651 0.000243023247589 0.231028640045 2.08722568181 0.00225107594731 -0.0640164731946 0.00225107594731 2.151242155 0.0274041267926 0.02968831806 + "BPM.32R8.B2" 1419.153824 21 3.617773154 -8.787076124e-07 0.167077281923 0.000368444832437 -0.00254281599215 0.000368444832437 0.169620097915 1.07872579973 0.00237884493901 -0.013509812274 0.00237884493901 1.092235612 -0.0145608453136 -0.01444694655 + "BPM.33R8.B2" 1472.605308 21 3.697468426 -1.188480875e-06 0.115170905656 0.000399371045336 -0.00073855172666 0.000399371045336 0.115909457383 2.13391264801 0.00739963726113 -0.0123708149908 0.00739963726113 2.146283463 0.0294924076432 0.02964331645 + "BPM.34R8.B2" 1526.056792 21 3.765194295 6.829100049e-08 0.170517309485 0.000523763032945 0.00270125091707 0.000523763032945 0.167816058568 1.10685466482 0.00339982819354 0.0150678858158 0.00339982819354 1.091786779 -0.0157873665942 -0.01435546963 + "BPM.33L1.B2" 1579.508276 21 3.962121719 -6.023090172e-06 0.224042661756 0.000594459890206 -0.00704635922948 0.000594459890206 0.231089020986 2.08454287713 0.00553098735818 -0.0672502658724 0.00553098735818 2.151793143 0.0269442819098 0.02975681988 + "BPM.32L1.B2" 1632.95976 21 4.117774967 -4.231543378e-06 0.169662252013 0.000776814344597 -0.000463697516116 0.000776814344597 0.170125949529 1.09617584656 0.00501894270355 0.000668147558438 0.00501894270355 1.095507699 -0.0143903620746 -0.01439696309 + "BPM.31L1.B2" 1686.411244 21 4.197468619 -7.676303762e-06 0.121998750484 0.000560029832498 0.0055137692487 0.000560029832498 0.116484981235 2.26133757898 0.0103805694776 0.104387319979 0.0103805694776 2.156950259 0.0311744478568 0.02978642612 + "BPM.30L1.B2" 1739.862728 21 4.2651908 -4.97112873e-07 0.178805172681 0.000569685914708 0.0104586815957 0.000569685914708 0.168346491085 1.149322035 0.00366182121573 0.0540396370015 0.00366182121573 1.095282398 -0.0165440168089 -0.01450455688 + "BPM.29L1.B2" 1793.314212 21 4.462104542 -4.731934902e-07 0.223230305757 0.000238989476384 -0.00783745534749 0.000238989476384 0.231067761104 2.08427405092 0.00223141549881 -0.0672916450803 0.00223141549881 2.151565696 0.0268721200316 0.0296915454 + "BPM.28L1.B2" 1846.765696 21 4.617771533 -4.934289401e-07 0.162793115666 0.000459859025759 -0.00684892923835 0.000459859025759 0.169642044905 1.06225584251 0.00300066704201 -0.0300872454858 0.00300066704201 1.092343088 -0.0145805935316 -0.0144513542 + "BPM.27L1.B2" 1900.21718 21 4.697468594 -1.158852331e-06 0.114645366609 0.000330144116527 -0.00126317470104 0.000330144116527 0.11590854131 2.13181600268 0.00613898783373 -0.014473021318 0.00613898783373 2.146289024 0.0295526006952 0.02964153837 + "BPM.26L1.B2" 1953.668665 21 4.765190307 6.836644195e-08 0.170899988207 0.000296809011853 0.00309309439283 0.000296809011853 0.167806893814 1.09850375929 0.00190781648806 0.00672475228602 0.00190781648806 1.091779007 -0.0144663461867 -0.01435557232 + "BPM.25L1.B2" 2007.120149 21 4.962105044 -6.022822524e-06 0.224154102214 0.000576138738394 -0.00693068932423 0.000576138738394 0.231084791538 2.10582726993 0.00541256508176 -0.0458837170663 0.00541256508176 2.151710987 0.0287078872567 0.02975531392 + "BPM.24L1.B2" 2060.571633 21 5.117771843 -4.123855547e-06 0.168424882702 0.000337204205351 -0.00169031965777 0.000337204205351 0.17011520236 1.09532969786 0.00219296445061 -7.04191393233e-05 0.00219296445061 1.095400117 -0.0143978070603 -0.0143974271 + "BPM.23L1.B2" 2114.023117 21 5.197467365 -7.293307001e-06 0.121948664701 0.000477714637562 0.00548055133682 0.000477714637562 0.116468113364 2.2516411968 0.00882044884125 0.0949739828028 0.00882044884125 2.156667214 0.0306172281933 0.02978299552 + "BPM.22L1.B2" 2167.474601 21 5.265185468 -3.665860634e-07 0.177960519812 0.000423709726903 0.00962916075155 0.000423709726903 0.168331359061 1.13719671385 0.00270757418314 0.0419650648507 0.00270757418314 1.095231649 -0.0151644582085 -0.01449977601 + "BPM.21L1.B2" 2220.926085 21 5.462088851 -4.633258176e-07 0.221077420642 0.000382615470525 -0.0100073706994 0.000382615470525 0.231084791341 2.06920548648 0.00358114378449 -0.0824677475178 0.00358114378449 2.151673234 0.0275301474048 0.02969437228 + "BPM.20L1.B2" 2274.377569 21 5.617769106 -4.934435356e-07 0.162069639892 0.000473551753527 -0.00758168226835 0.000473551753527 0.16965132216 1.06601788604 0.00311480077059 -0.0263495649629 0.00311480077059 1.092367451 -0.0146167841421 -0.01445321042 + "BPM.19L1.B2" 2327.829053 21 5.697467664 -1.158741844e-06 0.116734198378 0.000410026341924 0.000829999924038 0.000410026341924 0.115904198454 2.16245664421 0.00759558209773 0.0162154362061 0.00759558209773 2.146241208 0.0297645996775 0.0296402152 + "BPM.18L1.B2" 2381.280537 21 5.765184947 6.845284086e-08 0.174812205754 0.000779312921799 0.00701721762665 0.000779312921799 0.167794988128 1.1272119268 0.00502511146959 0.0354599087991 0.00502511146959 1.091752018 -0.0151443967055 -0.01435507195 + "BPM.17L1.B2" 2434.732021 21 5.962089353 -6.02257584e-06 0.230501488959 0.000453312219403 -0.000581281590825 0.000453312219403 0.23108277055 2.16099553302 0.00424988873441 0.00935444401831 0.00424988873441 2.151641089 0.0300936515046 0.02975441426 + "BPM.16L1.B2" 2488.183506 21 6.117769416 -4.123785994e-06 0.17396384571 0.000427551107258 0.00384754001963 0.000427551107258 0.17011630569 1.13212032406 0.00278241318548 0.0367485720553 0.00278241318548 1.095371752 -0.0140812519606 -0.01439656485 + "BPM.15L1.B2" 2541.63499 21 6.197466435 -7.293351279e-06 0.123659639736 0.000406593144598 0.00719426976019 0.000406593144598 0.116465369976 2.29023634414 0.00753030171384 0.133587171136 0.00753030171384 2.156649173 0.031407385999 0.02978315269 + "BPM.14L1.B2" 2595.086474 21 6.265180108 -3.666633147e-07 0.178352616802 0.000738450075769 0.0100234701466 0.000738450075769 0.168329146656 1.15574587238 0.00478524308941 0.0604779833847 0.00478524308941 1.095267889 -0.0446207246816 -0.01449869694 + "BPM.13L1.B2" 2648.537958 21 6.462073159 -4.634653644e-07 0.220225331245 0.000211249657053 -0.0108771993324 0.000211249657053 0.231102530578 2.05801778124 0.00197413961435 -0.093769564761 0.00197413961435 2.151787346 0.027998073063 0.02969582406 + "BPM.12L1.B2" 2701.989442 21 6.615547597 -4.981647568e-07 0.162358774972 0.000379506980754 -0.00956708202272 0.000379506980754 0.171925856995 1.06156891606 0.00248137382329 -0.0562050219397 0.00248137382329 1.117773938 -0.0142054180839 -0.01397470221 + "BPM.11L1.B2" 2755.440926 21 6.694195328 -1.175236538e-06 0.116891292845 0.000358938886309 -0.00350574699179 0.000358938886309 0.120397039837 2.16113700619 0.00663621807308 -0.0738678178087 0.00663621807308 2.235004824 0.0304523300291 0.03086368784 + "BPM.10L1.B2" 2808.223615 21 6.755691997 -2.976087655e-07 0.142702087674 0.000621966341368 0.00146392141674 0.000621966341368 0.141238166257 1.00348129918 0.00437366826552 0.00372474828112 0.00437366826552 0.9997565509 -0.0192275790101 -0.01916997689 + "BPM.9L1.B2" 2847.290605 21 6.879747757 1.329604894e-07 0.176443853578 0.000354128018202 0.00200425777881 0.000354128018202 0.174439595799 1.48203369334 0.00297448533393 -0.0105928426634 0.00297448533393 1.492626536 0.0206797431049 0.0210081659 + "BPM.8L1.B2" 2887.755594 21 7.106848601 3.20379417e-07 0.0909690262154 0.000756770043732 0.000185635885586 0.000756770043732 0.0907833903299 0.384442078635 0.00319816822016 0.00664819993476 0.00319816822016 0.3777938787 -0.0267879347866 -0.02698957315 + "BPM.7L1.B2" 2926.823584 21 7.215903341 9.318763448e-07 -0.00356350702609 0.000516506469512 0.0029829424307 0.000516506469512 -0.00654644945679 -0.0596633270145 0.00864779953287 0.0478679396855 0.00864779953287 -0.1075312667 -0.00525067973721 -0.005570373783 + "BPMSX.7L1.B2" 2957.502084 21 7.252379455 3.003093471e-07 -0.01652822219 0.000730161410943 0.00207678007353 0.000730161410943 -0.0186050022635 -0.114882572844 0.00507512668431 0.0139142690558 0.00507512668431 -0.1287968419 -0.000514391959469 0.0001299756544 + "BPMR.6L1.B2" 2970.007584 21 7.373374429 -3.28861025e-08 -0.0480453317935 0.00146252461849 0.000537244137722 0.00146252461849 -0.0485825759312 -0.127876178684 0.00389261666977 -8.29440837895e-05 0.00389261666977 -0.1277932346 -8.08198127375e-05 -6.781259512e-05 + "BPM.5L1.B2" 3001.907584 21 7.666238338 -8.601368596e-07 -0.0120735375773 0.000620861418539 -0.00177677222764 0.000620861418539 -0.0102967653496 -0.146640158258 0.0075407241737 -0.0201728329584 0.0075407241737 -0.1264673253 0.000618343327742 0.001038789959 + "BPMYA.4L1.B2" 3023.025584 21 7.6805702 -1.278005228e-06 -0.00788760181165 0.00043033247023 -0.00242046437229 0.00043033247023 -0.00546713743936 -0.149672005654 0.00816581838883 -0.0451422645538 0.00816581838883 -0.1045297411 0.00099398333628 0.001038789959 + "BPMWB.4L1.B2" 3044.082084 21 7.686517099 -1.977743405e-06 -0.00539502874563 0.00044330698058 -0.00219826363348 0.00044330698058 -0.00319676511216 -0.16166542261 0.0132839719194 -0.0649292084502 0.0132839719194 -0.09673621416 0.000930005600354 0.0009888335172 + "BPMSY.4L1.B2" 3136.998084 21 7.69245697 -5.249176074e-06 -0.00287671529797 0.000373134332669 -0.00262931319989 0.000373134332669 -0.000247402098078 -0.234418555961 0.030406071642 -0.214059442111 0.030406071642 -0.02035911385 -0.00015799029374 -0.0001402147642 + "BPMS.2L1.B2" 3163.723584 21 7.69370439 -2.805989447e-06 -0.00249109308009 0.000443964314033 -0.00224256784823 0.000443964314033 -0.000248525231859 -0.109845896994 0.0195768109582 -0.0988543786141 0.0195768109582 -0.01099151838 -0.000453151913758 -0.0001725594179 + "BPMS.2R1.B2" 3226.781584 21 8.190714453 4.632509933e-06 0.00272988731252 0.000399167330853 0.00248415937596 0.000399167330853 0.000245727936563 0.194640895759 0.0284606205094 0.176926096949 0.0284606205094 0.01771479881 0.00124901009331 0.001139712542 + "BPMSY.4R1.B2" 3253.627084 21 8.191558808 3.759954624e-06 0.00285790972973 0.000334965797768 0.0026112771536 0.000334965797768 0.000246632576132 0.168279084301 0.0197234143312 0.153796733941 0.0197234143312 0.01448235036 -3.2528540575e-05 -2.060328255e-05 + "BPMWB.4R1.B2" 3346.423084 21 8.196599467 3.12527667e-06 0.00451645425333 0.000331060556847 0.00247311367929 0.000331060556847 0.00204334057404 0.227690701748 0.0166899532867 0.125717472548 0.0166899532867 0.1019732292 0.00110567959481 0.001108445825 + "BPMYA.4R1.B2" 3367.479584 21 8.19800767 2.889422165e-06 0.00469279065831 0.000280865044334 0.00241459312479 0.000280865044334 0.00227819753352 0.21941011775 0.013131766775 0.11361942535 0.013131766775 0.1057906924 -0.00131117990235 -0.001269410642 + "BPMR.5R1.B2" 3394.887584 21 8.201254169 1.818309497e-06 0.00532406133155 0.000311573700537 0.00285607723866 0.000311573700537 0.00246798409289 0.158078682658 0.00925105047906 0.0848471688585 0.00925105047906 0.0732315138 -0.000644883537978 -0.0005649864159 + "BPM.6R1.B2" 3426.787584 21 8.210587625 1.067032439e-06 0.00552458998583 0.000303645263441 0.00251700225308 0.000303645263441 0.00300758773275 0.100821996105 0.0055414287117 0.0458917653648 0.0055414287117 0.05493023074 -0.000947773807299 -0.000653112251 + "BPMRA.7R1.B2" 3454.511584 21 8.241797116 3.698711998e-07 0.00631579974914 0.000924999964115 0.00158920531515 0.000924999964115 0.00472659443399 0.0489974140595 0.00717606764732 0.0121733701995 0.00717606764732 0.03682404386 -0.0061746203087 -0.000653112251 + "BPM.8R1.B2" 3495.948594 21 8.387355774 -1.54149953e-07 0.0283485403019 0.000189689177699 -0.00170806449457 0.000189689177699 0.0300566047965 0.227667863302 0.00152339871183 -0.0129923705982 0.00152339871183 0.2406602339 0.0109269755148 0.0113359361 + "BPM.9R1.B2" 3535.013605 21 8.596608779 -3.487185131e-07 0.10104942561 0.00204584709351 -0.00710872351838 0.00204584709351 0.108158149128 0.457811325725 0.00926885001531 -0.0308413330745 0.00926885001531 0.4886526588 0.0107992044835 0.01151653931 + "BPM.10R1.B2" 3575.476615 21 8.699036065 -1.0455919e-06 0.111509401483 0.000382416832927 0.000522961932915 0.000382416832927 0.11098643955 1.85297996323 0.00635471735649 -0.0209396177727 0.00635471735649 1.873919581 0.0419530839591 0.04242250543 + "BPM.11R1.B2" 3628.257326 21 8.770847148 -2.307635949e-07 0.185534738104 0.000390904750554 0.00802123154569 0.000390904750554 0.177513506558 1.18950121789 0.00250617044342 0.0401251198945 0.00250617044342 1.149376098 -0.0137782242133 -0.01323388119 + "BPM.12R1.B2" 3682.980842 21 8.966448948 4.945694097e-07 0.224884849198 0.000306035965867 -0.00625598546564 0.000306035965867 0.231140834664 2.12370198191 0.00289005324087 -0.0512942390874 0.00289005324087 2.174996221 0.0274872469957 0.02838065212 + "BPM.13R1.B2" 3736.429358 21 9.118651083 4.949648711e-07 0.16910356837 0.000684721605912 -8.23301643151e-05 0.000684721605912 0.169185898534 1.1123294735 0.00450396186636 0.0175036255043 0.00450396186636 1.094825848 -0.0147592130325 -0.01485453112 + "BPM.14R1.B2" 3789.877874 21 9.197972904 1.151966964e-06 0.122306639772 0.000384213465186 0.00585001403583 0.000384213465186 0.116456625736 2.26369712824 0.00711116681315 0.108069030239 0.00711116681315 2.155628098 0.0312256891689 0.02978113796 + "BPM.15R1.B2" 3843.32639 21 9.26603658 6.739636999e-07 0.178856804636 0.000673679134473 0.00976019509426 0.000673679134473 0.169096609541 1.14059112046 0.00429613198325 0.0452599024565 0.00429613198325 1.095331218 -0.0159628154333 -0.01447884376 + "BPM.16R1.B2" 3896.774906 21 9.464345354 -5.326582275e-06 0.219439074133 0.000361791610648 -0.0114880222817 0.000361791610648 0.230927096415 2.05747189423 0.0033921765001 -0.0957001327662 0.0033921765001 2.153172027 0.0262641563274 0.02972211165 + "BPM.17R1.B2" 3950.223421 21 9.618623492 -4.127941775e-06 0.15967955446 0.000242590730706 -0.00935330092827 0.000242590730706 0.169032855388 1.0463689677 0.00158968011479 -0.0469864842957 0.00158968011479 1.093355452 -0.0148796915876 -0.01446602341 + "BPM.18R1.B2" 4003.671937 21 9.697953609 -8.107566553e-06 0.114127538632 0.000443214994085 -0.00190356699487 0.000443214994085 0.116031105626 2.10796491926 0.00818629465264 -0.0398293367446 0.00818629465264 2.147794256 0.0283551236524 0.0296532731 + "BPM.19R1.B2" 4057.120453 21 9.766001765 -7.264146606e-07 0.173569780853 0.000776814941007 0.00505441357341 0.000776814941007 0.168515367279 1.10092111316 0.00492719392378 0.00914723115618 0.00492719392378 1.091773882 -0.0145756371792 -0.01438726852 + "BPM.20R1.B2" 4110.568969 21 9.96424946 4.971578531e-07 0.222199477321 0.000644990108363 -0.00839161137043 0.000644990108363 0.230591088691 2.08710175679 0.00605834003082 -0.0627908692082 0.00605834003082 2.149892626 0.0280808103652 0.02972275803 + "BPM.21R1.B2" 4164.017485 21 10.11859002 4.963045899e-07 0.166723699914 0.000273829728218 -0.00252293506534 0.000273829728218 0.169246634979 1.09868843483 0.00180450383276 0.00417195883221 0.00180450383276 1.094516476 -0.0143532925955 -0.01437850759 + "BPM.22R1.B2" 4217.466001 21 10.19793617 1.153647032e-06 0.122604984837 0.000462865683857 0.00615546441882 0.000462865683857 0.116449520418 2.26886858296 0.00856556859925 0.113289904956 0.00856556859925 2.155578678 0.031696503007 0.0297793052 + "BPM.23R1.B2" 4270.914517 21 10.26597387 6.750105017e-07 0.180811604264 0.000390095172517 0.0117772641442 0.000390095172517 0.16903434012 1.15834663678 0.00249909530391 0.063068267779 0.00249909530391 1.095278369 -0.0159779308391 -0.01447879477 + "BPM.24R1.B2" 4324.363033 21 10.4641867 -5.324771333e-06 0.224525638845 0.000300974600376 -0.00641087157988 0.000300974600376 0.230936510425 2.09988515517 0.00281487717245 -0.0531229758266 0.00281487717245 2.153008131 0.0285116566444 0.02971988715 + "BPM.25R1.B2" 4377.811549 21 10.61856339 -4.127683696e-06 0.163786336623 0.000684817921714 -0.0052894621615 0.000684817921714 0.169075798784 1.07270469246 0.00448515677954 -0.0205920015447 0.00448515677954 1.093296694 -0.0145701594005 -0.01446383183 + "BPM.26R1.B2" 4431.260065 21 10.69791688 -8.108750545e-06 0.115006228956 0.000390992899692 -0.00101967594755 0.000390992899692 0.116025904903 2.1211674465 0.00721144774651 -0.0266121705015 0.00721144774651 2.147779617 0.0294967185751 0.0296540249 + "BPM.27R1.B2" 4484.70858 21 10.76593908 -7.276754792e-07 0.171951751659 0.000406745142198 0.00348045782577 0.000406745142198 0.168471293833 1.09910033548 0.00259987884934 0.00726268348214 0.00259987884934 1.091837652 -0.0145062030815 -0.01438574675 + "BPM.28R1.B2" 4538.157096 21 10.96409078 4.942108844e-07 0.220931104741 0.000231065384517 -0.00970813768388 0.000231065384517 0.230639242425 2.07322412508 0.00216832451099 -0.0768671159211 0.00216832451099 2.150091241 0.0283200459091 0.0297253049 + "BPM.29R1.B2" 4591.605612 21 11.11852989 4.95791654e-07 0.167915464322 0.000611003611571 -0.00139133483935 0.000611003611571 0.169306799161 1.09902807627 0.00399909636989 0.00445956626828 0.00399909636989 1.09456851 -0.0143386362765 -0.01438154259 + "BPM.30R1.B2" 4645.054128 21 11.19789943 1.155277389e-06 0.122975988766 0.0004596203247 0.00653354954485 0.0004596203247 0.116442439221 2.27924696051 0.00851864041571 0.123717647509 0.00851864041571 2.155529313 0.0525320643688 0.02977746929 + "BPM.31R1.B2" 4698.502644 21 11.26591052 2.454671998e-07 0.182794838849 0.00054098140812 0.013812960242 0.00054098140812 0.168981878607 1.17657952861 0.00348208764625 0.0812801076146 0.00348208764625 1.095299421 -0.0175488304864 -0.01447724082 + "BPM.32R1.B2" 4751.95116 21 11.46401961 -6.855649559e-06 0.228120682061 0.000437059837731 -0.00285568051494 0.000437059837731 0.230976362576 2.13564498809 0.0040917142782 -0.0174902399121 0.0040917142782 2.153135228 0.0289929189263 0.02972186337 + "BPM.33R1.B2" 4805.399676 21 11.61850014 -4.650145476e-06 0.166427517223 0.000926968801879 -0.00271218452309 0.000926968801879 0.169139701746 1.08318357086 0.00603312116678 -0.0101630511406 0.00603312116678 1.093346622 -0.0145631736763 -0.01446544475 + "BPM.34R1.B2" 4858.848192 21 11.69787973 -8.150352147e-06 0.115521324587 0.000476979434107 -0.000502370560338 0.000476979434107 0.116023695147 2.13887280396 0.00883125555659 -0.00893249003542 0.00883125555659 2.147805294 0.0295096617696 0.02965364285 + "BPM.33L2.B2" 4912.296708 21 11.76588046 -7.287927211e-07 0.170154505399 0.000498608914793 0.00173005498598 0.000498608914793 0.168424450413 1.10608252253 0.00324118720768 0.0142541935291 0.00324118720768 1.091828329 -0.0146222820662 -0.01438640088 + "BPM.32L2.B2" 4965.745224 21 11.96394908 4.920986844e-07 0.22415144112 0.000562379988743 -0.00650493380515 0.000562379988743 0.230656374925 2.0887757701 0.00524058952379 -0.0612751159008 0.00524058952379 2.150050886 0.028607504152 0.02972474285 + "BPM.31L2.B2" 5019.19374 21 12.11847176 3.79220479e-07 0.168237088698 0.000412516913869 -0.00111784060401 0.000412516913869 0.169354929302 1.08358488494 0.00265694738365 -0.0110033040626 0.00265694738365 1.094588189 -0.0144268755674 -0.01438030424 + "BPM.30L2.B2" 5072.642255 21 12.19786211 7.428054935e-07 0.120890603944 0.000607480823868 0.00444483662104 0.000607480823868 0.116445767323 2.23497341597 0.0112308438188 0.0793258669663 0.0112308438188 2.155647549 0.0304273403476 0.02977934088 + "BPM.29L2.B2" 5126.090771 21 12.26585209 5.35646575e-07 0.175080093058 0.000621755678812 0.00614228761485 0.000621755678812 0.168937805443 1.14670446257 0.00407225058583 0.0514019335734 0.00407225058583 1.095302529 -0.0153325580507 -0.01447963734 + "BPM.28L2.B2" 5179.539287 21 12.46388487 -5.333016288e-06 0.230553708333 0.000384633524449 -0.00042855983591 0.000384633524449 0.230982268168 2.14076737086 0.00357144938086 -0.0122180791426 0.00357144938086 2.15298545 0.0294586151919 0.02971898687 + "BPM.27L2.B2" 5232.987803 21 12.61844502 -4.127661402e-06 0.16874958585 0.000586991761597 -0.000421508776196 0.000586991761597 0.169171094626 1.07574928037 0.00374197045843 -0.0175271066303 0.00374197045843 1.093276387 -0.0145483865589 -0.01446372292 + "BPM.26L2.B2" 5286.436319 21 12.69784372 -8.111633892e-06 0.115332763364 0.000345891992517 -0.000683867596241 0.000345891992517 0.116016630961 2.13879497234 0.00641441367561 -0.00894305065692 0.00641441367561 2.147738023 0.0291920288313 0.02965359945 + "BPM.25L2.B2" 5339.884835 21 12.76581864 -7.300804762e-07 0.166211914515 0.000300363021962 -0.00216561130098 0.000300363021962 0.168377525816 1.09478395492 0.00197839377553 0.00290797592143 0.00197839377553 1.091875979 -0.0144531680022 -0.01438411233 + "BPM.24L2.B2" 5393.333351 21 12.96378892 4.892460591e-07 0.223551448093 0.000584516065079 -0.00715072932355 0.000584516065079 0.230702177416 2.0832338837 0.00544699523412 -0.0670010052952 0.00544699523412 2.150234889 0.0279732631523 0.02972726266 + "BPM.23L2.B2" 5446.781867 21 13.11841147 4.952089316e-07 0.172209227908 0.000750308825227 0.00279853229629 0.000750308825227 0.169410695611 1.08774395592 0.00473925758586 -0.00685871107684 0.00473925758586 1.094602667 -0.0144199675513 -0.01438381971 + "BPM.22L2.B2" 5500.230383 21 13.19782627 1.158996471e-06 0.121477700884 0.000411732853582 0.00504489070108 0.000411732853582 0.116432810183 2.23644622978 0.00758014336269 0.0809650157764 0.00758014336269 2.155481214 0.0312691227426 0.02977597042 + "BPM.21L2.B2" 5553.678899 21 13.2657908 6.780499548e-07 0.176580966955 0.000297982202719 0.00771075466108 0.000297982202719 0.168870212294 1.15514275457 0.00194931531069 0.0599300345696 0.00194931531069 1.09521272 -0.0157134088628 -0.01447793359 + "BPM.20L2.B2" 5607.127414 21 13.46372615 -5.320369537e-06 0.225504713386 0.000471331738285 -0.00548573929648 0.000471331738285 0.230990452683 2.1007234547 0.00439076249313 -0.0520950743002 0.00439076249313 2.152818529 0.0285336340837 0.02971733229 + "BPM.19L2.B2" 5660.57593 21 13.61838481 -4.127399447e-06 0.166255843887 0.000720342520999 -0.00295827087107 0.000720342520999 0.169214114758 1.06009443587 0.00459310831173 -0.0331229461283 0.00459310831173 1.093217382 -0.0146601538097 -0.01446153076 + "BPM.18L2.B2" 5714.024446 21 13.69780698 -8.112812047e-06 0.114036797901 0.000346387260183 -0.00197467849003 0.000346387260183 0.116011476391 2.10891798969 0.00640584739176 -0.0388051363056 0.00640584739176 2.147723126 0.0276546457104 0.02965435119 + "BPM.17L2.B2" 5767.472962 21 13.76575606 -7.313415941e-07 0.167215723206 0.000273364383107 -0.00111786881934 0.000273364383107 0.168333592025 1.0910834348 0.00178370397444 -0.000856383204747 0.00178370397444 1.091939818 -0.014350092249 -0.01438258411 + "BPM.16L2.B2" 5820.921478 21 13.96363014 4.86299136e-07 0.221989036964 0.000951032038967 -0.00876082396613 0.000951032038967 0.23074986093 2.06882643045 0.0088631413755 -0.0816071515509 0.0088631413755 2.150433582 0.0263207553166 0.02972980903 + "BPM.15L2.B2" 5874.369994 21 14.11835124 4.946969655e-07 0.173012438733 0.000721634048327 0.0035414501058 0.000721634048327 0.169470988627 1.10888334504 0.0046251470892 0.0142287050355 0.0046251470892 1.09465464 -0.0142491875651 -0.01438685742 + "BPM.14L2.B2" 5927.81851 21 14.19778954 1.160611407e-06 0.123251701693 0.000404105502379 0.00682591302555 0.000404105502379 0.116425788667 2.27916239719 0.00747269248919 0.123730564185 0.00747269248919 2.155431833 0.111198450145 0.02977413553 + "BPM.13L2.B2" 5981.267026 21 14.26572826 2.493133841e-07 0.180402967574 0.000496470299106 0.0115948478546 0.000496470299106 0.168808119719 1.16905168338 0.00321723886656 0.0738922403846 0.00321723886656 1.095159443 -0.0158476091898 -0.01447790472 + "BPM.12L2.B2" 6034.715542 21 14.4697424 -4.893184343e-07 0.218702223192 0.00088562887284 -0.00814741758919 0.00088562887284 0.226849640782 2.00655882304 0.00812550692352 -0.0798023929552 0.00812550692352 2.086361216 0.026873614244 0.0284524885 + "BPM.11L2.B2" 6088.164058 21 14.61278265 -5.315993481e-07 0.163250821434 0.000640135371388 -0.00650697387498 0.000640135371388 0.169757795309 1.1409903851 0.00447402529126 -0.0329312359041 0.00447402529126 1.173921621 -0.0117103442017 -0.01158557934 + "BPM.10L2.B2" 6140.002768 21 14.68723345 -1.139815716e-06 0.114896794799 0.000403519554791 -0.00268743591846 0.000403519554791 0.117584230718 2.00097881174 0.00702747261724 -0.0440732852581 0.00702747261724 2.045052097 0.0241093770342 0.02488848141 + "BPM.9L2.B2" 6179.067779 21 14.75615353 -2.051201823e-07 0.134869448297 0.000782465269042 0.00320914243107 0.000782465269042 0.131660305866 0.648599936952 0.00376294950841 0.0114166465521 0.00376294950841 0.6371832904 -0.0359141803747 -0.03573760937 + "BPM.8L2.B2" 6219.530789 21 15.05010454 7.305977247e-07 0.0155255650902 0.000680244003168 0.00233564577295 0.000680244003168 0.0131899193173 0.155607233628 0.00681784443333 0.0246912292278 0.00681784443333 0.1309160044 -0.00388876792555 -0.004432473015 + "BPM.7L2.B2" 6258.5968 21 15.12866784 5.632506285e-07 -0.000208222037687 0.000423386334449 0.00411142921948 0.000423386334449 -0.00431965125717 -0.0015569279088 0.00316576481352 0.0305369512012 0.00316576481352 -0.03209387911 0.00140412551462 0.00148214084 + "BPM.6L2.B2" 6290.7028 21 15.17703803 1.011651832e-06 0.0029474447015 0.000410602101869 0.00437257283669 0.000410602101869 -0.00142512813518 0.0438387454677 0.00610708015086 0.0650374042477 0.00610708015086 -0.02119865878 0.000184145445003 0.0008879737404 + "BPMYB.5L2.B2" 6362.9018 21 15.32314956 3.263205033e-05 0.00994450140181 0.000233588584224 0.00295760585851 0.000233588584224 0.00698689554329 0.0678098453639 0.00159280039642 0.0199105309239 0.00159280039642 0.04789931444 0.00343639567673 0.002022474971 + "BPMYB.4L2.B2" 6383.4718 21 15.37069498 0.0001057983738 0.0100329348232 0.000465880679215 0.00126098606956 0.000465880679215 0.0087719487536 0.101819956595 0.00472802339219 0.0123914984852 0.00472802339219 0.08942845811 0.00213656797764 0.002022474971 + "BPMWB.4L2.B2" 6407.8633 21 15.4053813 0.0001340859516 0.00889238494405 0.000615257753536 0.000302947401667 0.000615257753536 0.00858943754238 0.0909668443739 0.00629393089344 0.00296278549385 0.00629393089344 0.08800405888 -0.00155232082342 -0.001555404261 + "BPMS.2L2.B2" 6496.0078 21 15.53069024 0.0002486539637 -0.00178178899675 0.000859847340817 -0.00172948871536 0.000859847340817 -5.23002813921e-05 -0.0235696693251 0.0113741399964 -0.0228823764115 0.0113741399964 -0.0006872929136 0.000205662255656 3.184126743e-05 + "BPMSW.1L2.B2" 6505.9418 21 15.54871247 0.0001894433483 -0.00148481953135 0.000680337974786 -0.0014257730647 0.000680337974786 -5.90464666574e-05 -0.0112356576022 0.00514813038019 -0.0107922341634 0.00514813038019 -0.0004434234388 3.38581612636e-06 3.870982033e-06 + "BPMSW.1R2.B2" 6549.1318 21 15.9102872 0.0001902158341 -0.00169912651942 0.000516758962664 -0.00166232011045 0.000516758962664 -3.68064089705e-05 -0.0127630046029 0.00388163973884 -0.0124859963907 0.00388163973884 -0.0002770082122 -9.13923837755e-05 3.870982033e-06 + "BPMS.2R2.B2" 6559.0658 21 15.9337236 0.0001380691249 -0.00165185886037 0.00045769870093 -0.0016376296449 0.00045769870093 -1.42292154714e-05 -0.0130511666142 0.00361623026535 -0.0129379271483 0.00361623026535 -0.0001132394659 0.000154007010139 1.690592877e-05 + "BPMWB.4R2.B2" 6647.1343 21 16.05358533 3.171850021e-06 -0.00668744315346 0.000549987491373 0.00271786204988 0.000549987491373 -0.00940530520334 -0.0606590373872 0.00498870959142 0.0250769648928 0.00498870959142 -0.08573600228 -0.00157308011677 -0.001525363309 + "BPMYB.4R2.B2" 6671.6018 21 16.10517589 -1.270171187e-05 -0.00830584476152 0.000663690102665 0.00332250529639 0.000663690102665 -0.0116283500579 -0.0751467783477 0.00600470806625 0.0303296925523 0.00600470806625 -0.1054764709 -0.00186424369679 -0.002087096982 + "BPM.5R2.B2" 6701.1358 21 16.14223197 9.544215847e-07 -0.00748926473678 0.00069512897071 0.00417029194951 0.00069512897071 -0.0116595566863 -0.0950391094192 0.00882121818759 0.0531771889808 0.00882121818759 -0.1482162984 0.00177612255584 0.002229563187 + "BPMR.6R2.B2" 6774.4318 21 16.40657463 -1.83998093e-07 0.00311482429284 0.000539038679787 0.000835529953812 0.000539038679787 0.00227929433903 0.0210309440918 0.0036395286771 0.00563914203181 0.0036395286771 0.01539180206 0.00255661126179 0.002364957272 + "BPM_A.7R2.B2" 6787.3068 21 16.43518559 -4.248985324e-07 0.00478235325049 0.000319286492459 0.000483374103544 0.000319286492459 0.00429897914695 0.0510573461352 0.0034087655403 0.00521647829523 0.0034087655403 0.04584086784 0.00429793843061 0.002364957272 + "BPM.8R2.B2" 6828.745789 21 16.56519714 -3.329743393e-07 0.0436608756363 0.000998683271478 -0.0048087376851 0.000998683271478 0.0484696133214 0.191251027263 0.00437460767327 -0.0210227844374 0.00437460767327 0.2122738117 0.00966980538857 0.009967739147 + "BPM.9R2.B2" 6867.812779 21 16.75589934 -4.444406831e-07 0.094588881912 0.000963785331944 -0.00189465589178 0.000963785331944 0.0964835378038 0.972530699094 0.00990931284635 -0.0187983839057 0.00990931284635 0.991329083 0.0260112573226 0.02644947708 + "BPM.10R2.B2" 6908.277768 21 16.86009421 2.874681977e-08 0.132026877506 0.000593330505564 -0.00223344152202 0.000593330505564 0.134260319028 0.741928998667 0.00333423857465 -0.0151534088327 0.00333423857465 0.7570824075 -0.00351282591706 -0.003543423169 + "BPM.11R2.B2" 6960.118458 21 16.99506133 8.23328598e-07 0.14424203996 0.000414180879819 -0.00525024007726 0.000414180879819 0.149492280037 1.92103254542 0.00551610993607 -0.0760357775753 0.00551610993607 1.997068323 0.0287974488737 0.0298452127 + "BPM.12R2.B2" 7014.844942 21 17.11510262 4.318103495e-07 0.181423946614 0.000779680844672 -0.00195328228104 0.000779680844672 0.183377228895 1.01423167518 0.0043587245452 -0.00773199782261 0.0043587245452 1.021963673 -0.0119496420737 -0.01195262871 + "BPM.13R2.B2" 7068.296426 21 17.25926318 5.460018271e-07 0.16961432733 0.000813396135335 0.0087086983193 0.000813396135335 0.160905629011 2.21392205259 0.0106170019353 0.116092965593 0.0106170019353 2.097829087 0.0312468344941 0.02993812067 + "BPM.14R2.B2" 7121.74791 21 17.37456484 -6.977139001e-08 0.189268474175 0.000446878806378 0.00315264581166 0.000446878806378 0.186115828364 1.08564657068 0.00256330297884 0.0151028956805 0.00256330297884 1.070543675 -0.0138228078586 -0.01380251756 + "BPM.15R2.B2" 7175.199394 21 17.51142739 -8.683493585e-07 0.156730523691 0.000584330191166 -0.00496199677445 0.000584330191166 0.161692520465 2.06153299815 0.00768590535233 -0.0597953828453 0.00768590535233 2.121328381 0.0279909393654 0.0295332232 + "BPM.16R2.B2" 7228.650878 21 17.62786289 -4.346080955e-07 0.184610205223 0.00115560162451 -0.00302845843781 0.00115560162451 0.187638663661 1.04861294699 0.00656398612177 -0.0155856420144 0.00656398612177 1.064198589 -0.0143483768886 -0.01438661785 + "BPM.17R2.B2" 7282.102362 21 17.76838255 -4.966171302e-07 0.161948728268 0.00074939131926 0.00312185342047 0.00074939131926 0.158826874848 2.11798618297 0.0098006355271 0.0451393379723 0.0098006355271 2.072846845 0.0298854566302 0.02873367986 + "BPM.18R2.B2" 7335.553846 21 17.8835047 9.4533457e-08 0.179997069216 0.000312303661259 -0.00109248836864 0.000312303661259 0.181089557585 1.03491863884 0.00179563412572 -0.00714358416334 0.00179563412572 1.042062223 -0.0138107187647 -0.01382350743 + "BPM.19R2.B2" 7389.00533 21 18.02045192 8.966427518e-07 0.152117073462 0.000577461661381 -0.00446116983764 0.000577461661381 0.1565782433 2.00223095107 0.00760080104853 -0.0502135699332 0.00760080104853 2.052444521 0.0279261855147 0.02873762052 + "BPM.20R2.B2" 7442.456814 21 18.13706646 4.292197196e-07 0.187091943229 0.000863398626714 0.0019451652222 0.000863398626714 0.185146778007 1.05931204859 0.00488855133059 0.00964694059147 0.00488855133059 1.049665108 -0.0132838779794 -0.01327151531 + "BPM.21R2.B2" 7495.908299 21 18.27748723 4.455245513e-07 0.170214393597 0.000363041483265 0.00929129336007 0.000363041483265 0.160923100237 2.22648311262 0.00474875076421 0.124402619624 0.00474875076421 2.102080493 0.0312788392403 0.02953685187 + "BPM.22R2.B2" 7549.359783 21 18.392439 -1.189898506e-07 0.186781430791 0.000285945686236 0.000659037900659 0.000285945686236 0.18612239289 1.07918393698 0.0016521342091 0.00781710597817 0.0016521342091 1.071366831 -0.01404236389 -0.0138659422 + "BPM.23R2.B2" 7602.811267 21 18.53023032 -9.202101479e-07 0.154928646399 0.000807492164084 -0.00643351596441 0.000807492164084 0.161362162363 2.00796518941 0.0104655671749 -0.0965405045909 0.0104655671749 2.104505694 0.0278531145918 0.02919928289 + "BPM.24R2.B2" 7656.262751 21 18.64550389 -4.29404289e-07 0.182150442331 0.000574344574337 -0.00419462736219 0.000574344574337 0.186345069694 1.04702910512 0.00330142204432 -0.0249892358845 0.00330142204432 1.072018341 -0.0138511857439 -0.01389701392 + "BPM.25R2.B2" 7709.714235 21 18.7830846 -4.131663929e-07 0.161116800547 0.00059125782438 4.94036163151e-05 0.00059125782438 0.161067396931 2.10224006415 0.00771468824128 -0.0020274528508 0.00771468824128 2.104267517 0.0291509462098 0.02918343073 + "BPM.26R2.B2" 7763.165719 21 18.89804294 1.341177643e-07 0.181877293047 0.000328745680049 -0.00424685316087 0.000328745680049 0.186124146208 1.0437250846 0.00188654728125 -0.0275879044036 0.00188654728125 1.071312989 -0.0138390437028 -0.01390535991 + "BPM.27R2.B2" 7816.617203 21 19.03584726 9.347643108e-07 0.156430026616 0.000415400932929 -0.00475109638962 0.000415400932929 0.161181123006 2.03980377284 0.00541671192265 -0.0623201701562 0.00541671192265 2.102123943 0.0283566838612 0.02915552542 + "BPM.28R2.B2" 7870.068687 21 19.15111436 4.246770306e-07 0.189345725048 0.000536718659983 0.00324317234509 0.000536718659983 0.186102552703 1.09074809827 0.0030918303412 0.0200654942661 0.0030918303412 1.070682604 -0.013903450976 -0.01387400878 + "BPM.29R2.B2" 7923.520171 21 19.28868324 3.802286284e-07 0.169889724213 0.000414849472827 0.00896429800944 0.000414849472827 0.160925426204 2.22191054831 0.00542562785303 0.119480860308 0.00542562785303 2.102429688 0.0305076166042 0.02917227937 + "BPM.30R2.B2" 7976.971655 21 19.40364842 -1.490806428e-07 0.187532605149 0.000741198765924 0.00138100671772 0.000741198765924 0.186151598432 1.07980814961 0.00426780434947 0.00839809860647 0.00426780434947 1.071410051 -0.015081459116 -0.01386660741 + "BPM.31R2.B2" 8030.42314 21 19.54146456 -9.481628157e-07 0.156291763936 0.000420871175686 -0.00507791380267 0.000420871175686 0.161369677739 2.04241521433 0.00549992956024 -0.0621544646701 0.00549992956024 2.104569679 0.0285051250108 0.02919972855 + "BPM.32R2.B2" 8083.874624 21 19.65672382 -4.194266508e-07 0.1845322465 0.000927722257008 -0.00179077313845 0.000927722257008 0.186323019639 1.05864810392 0.00532227524982 -0.0133697710825 0.00532227524982 1.072017875 -0.0138811774968 -0.01389830873 + "BPM.33R2.B2" 8137.326108 21 19.79428032 -3.468276368e-07 0.161204444536 0.000574035686027 0.000144713495244 0.000574035686027 0.161059731041 2.10359580975 0.00749073058902 -0.000596536253365 0.00749073058902 2.104192346 0.0291753769687 0.02918202824 + "BPM.34R2.B2" 8190.777592 21 19.90925379 1.638568991e-07 0.18189948716 0.000143955571028 -0.00423926404873 0.000143955571028 0.186138751209 1.04891926866 0.000830116536555 -0.0223493873378 0.000830116536555 1.071268656 -0.0138756930973 -0.01390467653 + "BPM.33L3.B2" 8244.229076 21 20.04708197 9.603797325e-07 0.156638446588 0.000643515494656 -0.00453887909644 0.000643515494656 0.161177325684 2.04164778287 0.00838767244904 -0.0604106091303 0.00838767244904 2.102058392 0.0283766955109 0.02915506979 + "BPM.32L3.B2" 8297.68056 21 20.16233281 4.136522297e-07 0.191712840275 0.000991475523505 0.00563260856289 0.000991475523505 0.186080231712 1.09644821497 0.00567046821888 0.0257620079671 0.00567046821888 1.070686207 -0.0139107486187 -0.01387261827 + "BPM.31L3.B2" 8351.132044 21 20.29987807 3.129889559e-07 0.167032809712 0.000148980142783 0.00610118077556 0.000148980142783 0.160931628936 2.17658949018 0.00194134681435 0.0740718011754 0.00194134681435 2.102517689 0.030135373348 0.02917386789 + "BPM.30L3.B2" 8404.583528 21 20.41486028 -1.78431028e-07 0.180366533819 0.000594390847416 -0.00581642624989 0.000594390847416 0.186182960069 1.03641402732 0.00341546183167 -0.0350428616836 0.00341546183167 1.071456889 -0.0135483597043 -0.0138675063 + "BPM.29L3.B2" 8458.035012 21 20.55269956 -9.714093191e-07 0.152297298877 0.000547428689957 -0.00907674680968 0.000547428689957 0.161374045686 1.98399355828 0.00713141337702 -0.120635339716 0.00713141337702 2.104628898 0.0276536189045 0.02920002162 + "BPM.28L3.B2" 8511.486496 21 20.66794135 -4.07367181e-07 0.182044641678 0.000632763109256 -0.00425382215719 0.000632763109256 0.186298463836 1.04660750651 0.00363786933735 -0.0254007834885 0.00363786933735 1.07200829 -0.0138340396631 -0.01389968357 + "BPM.27L3.B2" 8564.93798 21 20.80547598 -2.787674092e-07 0.162109535831 0.000234664306251 0.0010566692273 0.000234664306251 0.161052866603 2.12216140737 0.00307196940552 0.0180703923749 0.00307196940552 2.104091015 0.0295789998962 0.02918029383 + "BPM.26L3.B2" 8618.389465 21 20.92046743 1.927826896e-07 0.183490709134 0.000698854105172 -0.00266226955885 0.000698854105172 0.186152978693 1.04525540359 0.00398102461535 -0.0259638314098 0.00398102461535 1.071219235 -0.0138390381109 -0.01390355777 + "BPM.25L3.B2" 8671.840949 21 21.05831669 9.812282794e-07 0.157910030533 0.000493281968902 -0.00326165760846 0.000493281968902 0.161171688142 2.05871757991 0.00643105607542 -0.0432881850923 0.00643105607542 2.102005765 0.0285502894779 0.02915494589 + "BPM.24L3.B2" 8725.292433 21 21.17354918 4.00573442e-07 0.18897866082 0.000711962926588 0.00291916025677 0.000711962926588 0.186059500563 1.09364375218 0.00412022078613 0.0229480831765 0.00412022078613 1.070695669 -0.013908171706 -0.01387138988 + "BPM.23L3.B2" 8778.743917 21 21.31107469 2.441927782e-07 0.165776976889 0.000165256819323 0.00483596963425 0.000165256819323 0.160941007255 2.1666652182 0.00215986688391 0.0640550121995 0.00215986688391 2.102610206 0.0301871688777 0.02917543867 + "BPM.22L3.B2" 8832.195401 21 21.42607575 -2.068967771e-07 0.181814362043 0.000362371538849 -0.00439886909409 0.000362371538849 0.186213231137 1.03047614004 0.00205382688374 -0.0410261949569 0.00205382688374 1.071502335 -0.0132164175682 -0.01386851984 + "BPM.21L3.B2" 8885.646885 21 21.56393406 -9.898341654e-07 0.152012629341 0.000591386386487 -0.00936221843517 0.000591386386487 0.161374847776 1.99074836186 0.00774476097962 -0.113929957138 0.00774476097962 2.104678319 0.0273712511315 0.02920015517 + "BPM.20L3.B2" 8939.098369 21 21.68125498 -3.846661296e-07 0.182623406906 0.000734227418729 -0.00320865516407 0.000734227418729 0.18583206207 1.04173677215 0.00418824571379 -0.0119532928507 0.00418824571379 1.053690065 -0.0142325264275 -0.0142473427 + "BPM.19L3.B2" 8992.549853 21 21.82069529 -1.849930352e-07 0.157756108393 0.00016097013855 0.00115292218107 0.00016097013855 0.156603186212 2.06657745555 0.00210868068903 0.0107383655483 0.00210868068903 2.05583909 0.0287455138175 0.0285980282 + "BPM.18L3.B2" 9046.001337 21 21.93501222 2.288541465e-07 0.179367085125 0.000501782441302 -0.00164242428846 0.000501782441302 0.181009509413 1.01576346673 0.00284161540433 -0.0257322392716 0.00284161540433 1.041495706 -0.0134418527863 -0.01349190985 + "BPM.17L3.B2" 9099.452821 21 22.0730656 1.000371861e-06 0.157160003705 0.000546910433349 -0.00168629242151 0.000546910433349 0.158846296127 2.0558158613 0.00715415574625 -0.014245768703 0.00715415574625 2.07006163 0.0289158625329 0.02907838688 + "BPM.16L3.B2" 9152.904306 21 22.19045699 3.716252097e-07 0.191558346754 0.000503218672928 0.00463400895106 0.000503218672928 0.186924337802 1.09994282768 0.0028895205008 0.0397376266817 0.0028895205008 1.060205201 -0.0134634811618 -0.0134296566 + "BPM.15L3.B2" 9206.35579 21 22.32969505 1.279904088e-07 0.166317930531 0.000125260987155 0.00509529790804 0.000125260987155 0.161222632623 2.1772142453 0.00163975107641 0.0591302152973 0.00163975107641 2.11808403 0.0303145544951 0.02965309108 + "BPM.14L3.B2" 9259.807274 21 22.44395422 -2.500297024e-07 0.182640120437 0.000529667115835 -0.00361861805574 0.000529667115835 0.186258738493 1.03957133792 0.0030148181623 -0.0317616780827 0.0030148181623 1.071333016 -0.0118523084009 -0.01418851665 + "BPM.13L3.B2" 9313.258758 21 22.58221136 -1.007667061e-06 0.155584545709 0.000385730700317 -0.00576564014169 0.000385730700317 0.16135018585 2.03149687864 0.00503655880552 -0.0696331083568 0.00503655880552 2.101129987 0.0278074043548 0.02914008295 + "BPM.12L3.B2" 9366.710242 21 22.68051638 -4.489263901e-07 0.187299997867 0.000360563678347 -0.000997768156995 0.000360563678347 0.188297766024 1.25033289318 0.00240696546854 0.00753555417848 0.00240696546854 1.242797339 -0.0106503996848 -0.01059657027 + "BPM.11L3.B2" 9420.161726 21 22.7916634 -3.737569236e-07 0.202171569806 0.000556091469943 0.0034933011106 0.000556091469943 0.198678268695 2.73461930866 0.00752182155258 0.0583555186584 0.00752182155258 2.67626379 0.0377792788988 0.0369341283 + "BPM.10L3.B2" 9472.944415 21 22.8762708 9.557898639e-08 0.223451808112 0.000426781867429 0.000923569888632 0.000426781867429 0.222528238223 1.63928134651 0.00313094604254 -0.0026708274872 0.00313094604254 1.641952174 -0.0149699402115 -0.01498062236 + "BPM.9L3.B2" 9512.011405 21 22.9561507 5.584157055e-07 0.224385509265 0.000557407485782 -0.00357914330002 0.000557407485782 0.227964652565 2.56373593501 0.0063687071702 -0.0726137709918 0.0063687071702 2.636349706 0.0329295186594 0.03366374201 + "BPM.8L3.B2" 9552.476394 21 23.04679077 4.471461072e-07 0.22786378826 0.00117644077845 -0.00304272553382 0.00117644077845 0.230906513794 1.37651156382 0.0071068086248 -0.0264838661755 0.0071068086248 1.40299543 -0.0287707060173 -0.02893493095 + "BPM.7L3.B2" 9591.542384 21 23.16906137 6.859305884e-07 0.167807579993 0.000468658692708 0.00201739207021 0.000468658692708 0.165790187923 1.64755174071 0.0046013383007 0.0359678777103 0.0046013383007 1.611583863 0.0143096355713 0.01316541906 + "BPMR.6L3.B2" 9664.181384 21 23.4042616 -1.991405052e-07 -0.0858437155559 0.000980681818698 0.000959961323341 0.000980681818698 -0.0868036768793 -0.648828007428 0.00741223543536 0.011335066172 0.00741223543536 -0.6601630736 -0.0412458313637 -0.04139335713 + "BPMWJ.A5L3.B2" 9705.809884 21 23.45539696 -8.319214087e-07 -0.135434784907 0.000980120548589 0.00293144040003 0.000980120548589 -0.138366225307 -2.33169476988 0.0168741136818 0.0666081521221 0.0168741136818 -2.398302922 -0.0412940113103 -0.04139315972 + "BPMW.5L3.B2" 9734.779884 21 23.46815626 -9.836207776e-07 -0.146693648883 0.000171965910247 0.00200836658123 0.000171965910247 -0.148702015464 -2.69455420394 0.00315876978942 0.0782328950581 0.00315876978942 -2.772787099 0.0220676256889 0.02276538844 + "BPMWE.4L3.B2" 9809.907884 21 23.59761064 -4.316281532e-07 -0.189417580877 0.00239494691193 0.00219333490262 0.00239494691193 -0.19161091578 -1.05210800742 0.0133025815858 0.0103615415762 0.0133025815858 -1.062469549 0.0229050631995 0.02276538844 + "BPMW.4R3.B2" 9882.417884 21 23.81540436 -2.631409204e-07 -0.0179387016051 0.000402495917381 -0.00242466712583 0.000402495917381 -0.0155140344793 -0.284247530386 0.00637774533656 -0.0387472289859 0.00637774533656 -0.2455003014 0.00870852513902 0.008776717557 + "BPMWE.4R3.B2" 9909.962884 21 23.83061935 -1.533996167e-07 0.00124893125906 0.000145398414941 -0.00167485538458 0.000145398414941 0.00292378664364 0.0206064646849 0.00239896894323 -0.0276538050851 0.00239896894323 0.04826026977 0.011469003123 0.01128464484 + "BPMW.5R3.B2" 9985.090884 21 23.93405242 2.961402603e-07 0.117221929066 0.000647130660819 -0.00190271084105 0.000647130660819 0.119124639907 0.875921634972 0.00483557770273 -0.0201309829283 0.00483557770273 0.8960526179 0.0113538536614 0.01128464484 + "BPMWE.A5R3.B2" 10013.80888 21 24.01680619 5.560056755e-07 0.175201827325 0.0006795621457 -0.00365224871073 0.0006795621457 0.178854076035 1.43750280549 0.00557569807272 -0.0349865475069 0.00557569807272 1.472489353 0.030741183363 0.031073154 + "BPMWC.6R3.B2" 10053.62688 21 24.07275597 1.077810855e-06 0.192759957575 0.000502416476324 -0.00123819315705 0.000502416476324 0.193998150732 2.70789113605 0.00705794470987 -0.0168640869536 0.00705794470987 2.724755223 0.0310584989477 0.03107288983 + "BPM.6R3.B2" 10065.78138 21 24.08181189 1.118404413e-06 0.192883609367 0.000697875919089 -0.00104132758414 0.000697875919089 0.193924936952 2.79242150588 0.01010331428 -0.0112095871179 0.01010331428 2.803631093 -0.0285538297061 -0.02862451044 + "BPM_A.7R3.B2" 10121.60538 21 24.16873268 5.250990594e-07 0.167298629863 0.000444896866818 0.00511768992174 0.000444896866818 0.162180939941 1.25304044013 0.00333220759947 0.0473434241287 0.00333220759947 1.205697016 -0.03059398509 -0.02862451044 + "BPM.8R3.B2" 10160.67137 21 24.23899236 6.620812527e-07 0.119994714975 0.000323803503466 0.00648471653018 0.000323803503466 0.113509998445 1.60239459717 0.00432403197596 0.095581710171 0.00432403197596 1.506812887 0.0168724644586 0.01619556094 + "BPM.9R3.B2" 10199.73836 21 24.2980455 1.887622453e-07 0.111812471332 0.000114431525588 0.00625486403408 0.000114431525588 0.105557607298 0.851815597201 0.000871768212847 0.0486496684006 0.000871768212847 0.8031659288 -0.0151100496594 -0.01468405642 + "BPM.10R3.B2" 10240.20335 21 24.3719833 -1.44033075e-07 0.112193342651 0.000121293937868 0.00360746380658 0.000121293937868 0.108585878845 1.47552711652 0.00159521492242 0.0381782065217 0.00159521492242 1.43734891 0.0247567213136 0.02423255176 + "BPM.11R3.B2" 10292.98604 21 24.49795467 -3.259052704e-07 0.173292091287 0.000633231622992 -0.0052250100267 0.000633231622992 0.178517101314 0.904986485818 0.00330693718879 -0.0261052645816 0.00330693718879 0.9310917504 -0.00738743473468 -0.007246921829 + "BPM.12R3.B2" 10347.71253 21 24.6598334 -9.442369266e-07 0.160720963595 0.000496651775982 -0.00119003249632 0.000496651775982 0.161910996091 2.11222689024 0.00652709648357 -0.000831549755263 0.00652709648357 2.11305844 0.0311948301995 0.03121421516 + "BPM.13R3.B2" 10401.16401 21 24.77492976 -2.026384889e-07 0.189834051585 0.000407625623567 0.00324172353304 0.000407625623567 0.186592328052 1.08501931063 0.00232983318527 0.0116650096257 0.00232983318527 1.073354301 -0.014241721088 -0.01407324325 + "BPM.14R3.B2" 10454.61549 21 24.91219638 3.901426434e-07 0.15668534706 0.000275219324735 -0.00445474106313 0.000275219324735 0.161140088123 2.04766596258 0.00359674503123 -0.0615874864164 0.00359674503123 2.109253449 0.028447842595 0.02925654794 + "BPM.15R3.B2" 10508.06698 21 25.02895975 3.986604708e-07 0.177696909797 0.000572341067238 -0.00829023324215 0.000572341067238 0.185987143039 1.00099086236 0.0032240750788 -0.053836782644 0.0032240750788 1.054827645 -0.0142645820876 -0.01431821854 + "BPM.16R3.B2" 10561.51846 21 25.1690443 9.230614973e-07 0.158099322589 0.000492584922926 0.00103385660474 0.000492584922926 0.157065465985 2.0919154797 0.00651771309615 0.0374246116952 0.00651771309615 2.054490868 0.0289745043969 0.02855282469 + "BPM.17R3.B2" 10614.96995 21 25.28387109 1.799312164e-07 0.188667509069 0.000471039134755 0.00795473672756 0.000471039134755 0.180712772342 1.08354515829 0.00270524679286 0.0438089012877 0.00270524679286 1.039736257 -0.0135600301473 -0.01349757853 + "BPM.18R3.B2" 10668.42143 21 25.42126302 -4.427405211e-07 0.159745634001 0.000412687740099 0.0018129094334 0.000412687740099 0.157932724568 2.0750767841 0.00536076465511 0.0095194811038 0.00536076465511 2.065557303 0.0291343363533 0.02902453289 + "BPM.19R3.B2" 10721.87291 21 25.53816113 -4.089145049e-07 0.183876462401 0.000629109245601 -0.00289637955002 0.000629109245601 0.186772841951 1.0407823496 0.00356090056467 -0.0183857393999 0.00356090056467 1.059168089 -0.0133362416495 -0.01335833295 + "BPM.20R3.B2" 10775.3244 21 25.67810741 -8.978379215e-07 0.1629741543 0.000612679977707 0.00105775943309 0.000612679977707 0.161916394867 2.1475002525 0.0080732458007 0.0278033724954 0.0080732458007 2.11969688 0.0301487765112 0.02970150973 + "BPM.21R3.B2" 10828.77588 21 25.79280947 -1.566332272e-07 0.188331048536 0.000430269912938 0.00182167954928 0.000430269912938 0.186509368987 1.08716210082 0.00248378133136 0.0140059938213 0.00248378133136 1.073156107 -0.0142208327041 -0.01418698738 + "BPM.22R3.B2" 10882.22737 21 25.93034327 4.938923612e-07 0.156156441528 0.000305777406221 -0.00496705274402 0.000305777406221 0.161123494272 2.03469991348 0.00398424333887 -0.0708486565218 0.00398424333887 2.10554857 0.0277493791238 0.02919121355 + "BPM.23R3.B2" 10935.67885 21 26.0452648 4.221673548e-07 0.179785311734 0.000788275547627 -0.0063263640496 0.000788275547627 0.186111675784 1.03290464588 0.00452880976494 -0.0383387621234 0.00452880976494 1.071243408 -0.013857596261 -0.01393244064 + "BPM.24R3.B2" 10989.13033 21 26.18311723 8.786649114e-07 0.165540435551 0.000432338130667 0.00444876776848 0.000432338130667 0.161091667783 2.16482672033 0.00565382792648 0.0644137333257 0.00565382792648 2.100412987 0.0300213570626 0.02912460564 + "BPM.25R3.B2" 11042.58182 21 26.29841963 1.417304997e-07 0.195014990419 0.00056893060547 0.0090756649859 0.00056893060547 0.185939325433 1.1240865939 0.00327937490906 0.0543340109036 0.00327937490906 1.069752583 -0.0139429110035 -0.01385691554 + "BPM.26R3.B2" 11096.0333 21 26.43593895 -5.248534778e-07 0.160299420807 0.000207886181857 -0.000491221623453 0.000207886181857 0.16079064243 2.0815489311 0.00269948111763 -0.0196603978978 0.00269948111763 2.101209329 0.0286651353888 0.02916561212 + "BPM.27R3.B2" 11149.48479 21 26.5508702 -4.271626679e-07 0.180269252414 0.0009994508721 -0.0059029902575 0.0009994508721 0.186172242672 1.03583347717 0.00574287993234 -0.0356790248294 0.00574287993234 1.071512502 -0.014967282593 -0.01384013726 + "BPM.29R3.B2" 11256.38775 21 26.80402871 -1.266818036e-07 0.187497873211 0.000448848711622 0.00101840444724 0.000448848711622 0.186479468764 1.08311329878 0.00259285079011 0.010168295781 0.00259285079011 1.072945003 -0.0139313443898 -0.01391634798 + "BPM.30R3.B2" 11309.83924 21 26.94153326 5.55154689e-07 0.15513997069 0.000310312754765 -0.00596753165769 0.000310312754765 0.161107502348 2.0114599694 0.00402334537921 -0.0938903155958 0.00402334537921 2.105350285 -0.0423706377846 0.02918757098 + "BPM.31R3.B2" 11363.29072 21 27.05647583 4.316240152e-07 0.181701060255 0.000429955835439 -0.00442052520352 0.000429955835439 0.186121585458 1.03862975065 0.00245769023872 -0.0325045183491 0.00245769023872 1.071134269 -0.0138796544847 -0.01393048253 + "BPM.32R3.B2" 11416.74221 21 27.19435721 8.406140961e-07 0.165825396775 0.000351893990045 0.00474500035035 0.000351893990045 0.161080396425 2.18003589805 0.00462620048271 0.0797687800513 0.00462620048271 2.100267118 0.0301522638445 0.02912377394 + "BPM.33R3.B2" 11470.19369 21 27.30963755 1.11473767e-07 0.192748306313 0.000153681825419 0.00683618222284 0.000153681825419 0.18591212409 1.11393816884 0.000888163711865 0.0441751078386 0.000888163711865 1.069763061 -0.0139187536661 -0.01385378595 + "BPM.34R3.B2" 11523.64518 21 27.44712891 -5.847751915e-07 0.160466586654 0.00058542740944 -0.000340621573616 0.00058542740944 0.160807208227 2.0876159957 0.00761621250725 -0.0137970793043 0.00761621250725 2.101413075 0.0290212600151 0.02916925482 + "BPM.33L4.B2" 11577.09666 21 27.56208316 -4.355531499e-07 0.184071200789 0.000711381278465 -0.00214905733424 0.000711381278465 0.186220258124 1.05457057149 0.00407560638581 -0.0170488975059 0.00407560638581 1.071619469 -0.0137964411072 -0.01384224612 + "BPM.32L4.B2" 11630.54814 21 27.69997741 -8.200143139e-07 0.163365417998 0.000363504401399 0.00181163559707 0.000363504401399 0.161553782401 2.14376420761 0.00477008986711 0.0373073386096 0.00477008986711 2.106456869 0.03006042184 0.02923151623 + "BPM.31L4.B2" 11683.99963 21 27.81524544 -9.612929836e-08 0.187012546442 0.000327327654118 0.000565567136906 0.000327327654118 0.186446979305 1.07744108663 0.0018858427953 0.00451538363212 0.0018858427953 1.072925703 -0.0139308448595 -0.01391936614 + "BPM.30L4.B2" 11737.45111 21 27.95272408 6.136632162e-07 0.15523235229 0.000558620170848 -0.00586122741216 0.000558620170848 0.161093579702 2.02725453669 0.00729529159956 -0.0778777613064 0.00729529159956 2.105132298 0.00713980863638 0.02918381545 + "BPM.29L4.B2" 11790.9026 21 28.0676912 4.389390119e-07 0.181212154791 0.000705704103573 -0.00491951492339 0.000705704103573 0.186131669714 1.036964166 0.00403830453894 -0.0340588160021 0.00403830453894 1.071022982 -0.0138371589917 -0.01392817467 + "BPM.28L4.B2" 11844.35408 21 28.20559795 7.983912983e-07 0.164977061796 0.000264793038851 0.00391035952363 0.000264793038851 0.161066702272 2.15904900042 0.00346533717856 0.0589128674183 0.00346533717856 2.100136133 0.03061575243 0.02912325925 + "BPM.27L4.B2" 11897.80556 21 28.32085255 8.066383887e-08 0.191734339596 0.000383738920039 0.00584792737674 0.000383738920039 0.185886412219 1.10539205295 0.00221234210581 0.0356055209455 0.00221234210581 1.069786532 -0.0139541386877 -0.01385070903 + "BPM.26L4.B2" 11951.25705 21 28.45831928 -6.417944057e-07 0.158331543102 0.000489696261071 -0.00249788278853 0.000489696261071 0.160829425891 2.0625576303 0.00637918850542 -0.0390868976951 0.00637918850542 2.101644528 0.0195353812711 0.02917319075 + "BPM.25L4.B2" 12004.70853 21 28.57329968 -4.4178177e-07 0.182299122231 0.000746919896707 -0.00397074405979 0.000746919896707 0.18626986629 1.04714295455 0.00429037670549 -0.0245922834501 0.00429037670549 1.071735238 -0.0137978072816 -0.01384474085 + "BPM.24L4.B2" 12058.16002 21 28.71121726 -7.757824686e-07 0.163980216184 0.000452487105326 0.00242186452602 0.000452487105326 0.161558351658 2.14590501344 0.00592141156071 0.0393175234443 0.00592141156071 2.10658749 0.029861294746 0.02923194527 + "BPM.23L4.B2" 12111.6115 21 28.82645806 -6.510060528e-08 0.189005199587 0.000383116408143 0.00259194502023 0.000383116408143 0.186413254567 1.09498062948 0.00221954235475 0.0220774744781 0.00221954235475 1.072903155 -0.0139573289255 -0.01392240914 + "BPM.22L4.B2" 12165.06298 21 28.96391416 6.691224587e-07 0.158112580134 0.000538191223564 -0.00296989743438 0.000538191223564 0.161082477568 2.05453949378 0.00699334058733 -0.0503657512189 0.00699334058733 2.104905245 0.0284470634388 0.02917994646 + "BPM.21L4.B2" 12218.51447 21 29.07890913 4.440741088e-07 0.185498021737 0.000482698277631 -0.000643881198441 0.000482698277631 0.186141902935 1.05802784709 0.0027531734015 -0.0128831859084 0.0027531734015 1.070911033 -0.0139033252102 -0.01392569345 + "BPM.20L4.B2" 12271.96595 21 29.21609992 7.584916068e-07 0.166897529135 0.000282987440553 0.00535661086154 0.000282987440553 0.161540918273 2.20647784953 0.00374125082925 0.0913198875268 0.00374125082925 2.115157962 0.0306984787205 0.02941093905 + "BPM.19L4.B2" 12325.41744 21 29.33283496 4.65954871e-08 0.193492032438 0.000394153736696 0.00650866788456 0.000394153736696 0.186983364554 1.10287236887 0.00224661067337 0.0425152108664 0.00224661067337 1.060357158 -0.0143950692825 -0.01433404947 + "BPM.18L4.B2" 12378.86892 21 29.47299875 -7.122550104e-07 0.155385339602 0.00052661970513 -0.00266249898097 0.00052661970513 0.158047838583 2.01183238095 0.00681834321011 -0.0548932610509 0.00681834321011 2.066725642 0.0246921068242 0.02868588174 + "BPM.17L4.B2" 12432.32041 21 29.58784792 -4.467302128e-07 0.177167895094 0.000958691712661 -0.00389781427776 0.000958691712661 0.181065709372 1.01728898457 0.00550475873955 -0.0246216724316 0.00550475873955 1.041910657 -0.01366247012 -0.01370319151 + "BPM.16L4.B2" 12485.77189 21 29.72515977 -7.179123147e-07 0.158981227118 0.000402780482203 0.0015985862908 0.000402780482203 0.157382640827 2.09637618473 0.00531118941444 0.0374112577303 0.00531118941444 2.058964927 0.0293494628674 0.02886270623 + "BPM.15L4.B2" 12539.22337 21 29.84203803 -2.114376311e-08 0.187900507815 0.000456643412779 0.00209527610989 0.000456643412779 0.185805231705 1.06798863859 0.00259546917891 0.0144702355893 0.00259546917891 1.053518403 -0.0133470140748 -0.01333090375 + "BPM.14L4.B2" 12592.67486 21 29.98206689 7.531556216e-07 0.159460618656 0.000412198629463 -0.00159428810451 0.000412198629463 0.161054906761 2.07091118251 0.00535321359194 -0.036927914493 0.00535321359194 2.107839097 0.0228609124646 0.02957763262 + "BPM.13L4.B2" 12646.12634 21 30.0967839 4.479337729e-07 0.187985907325 0.00052757538582 0.00183018585696 0.00052757538582 0.186155721468 1.06726269016 0.00299523264027 -0.00403840684491 0.00299523264027 1.071301097 -0.0139684320484 -0.01398301172 + "BPM.12L4.B2" 12699.57783 21 30.23467618 6.712304703e-07 0.166718642669 0.000315523685691 0.00537577554983 0.000315523685691 0.161342867119 2.19041182339 0.00414546808104 0.0866266353931 0.00414546808104 2.103785188 0.0315197121443 0.02918838183 + "BPM.11L4.B2" 12753.02931 21 30.35558554 -1.60241137e-08 0.185575194508 0.000248966309052 0.000606095641886 0.000248966309052 0.184969098866 1.02825778033 0.0013795030365 0.00460643233159 0.0013795030365 1.023651348 -0.0147978534613 -0.01479781455 + "BPM.10L4.B2" 12804.87 21 30.49863352 -7.966976948e-07 0.127726063079 0.00044551219897 -0.00612192142335 0.00044551219897 0.133847984502 1.60818549881 0.00560939749224 -0.0930170581889 0.00560939749224 1.701202557 0.0204243002541 0.02134003225 + "BPM.9L4.B2" 12843.93699 21 30.59727346 -3.722882156e-07 0.116356838573 0.000812281095758 -0.00335550250927 0.000812281095758 0.119712341082 0.555689536851 0.00387924002947 -0.0168656184491 0.00387924002947 0.5725551553 -0.0275960220674 -0.02765554783 + "BPM.8L4.B2" 12884.40198 21 30.80560451 -2.059215734e-07 0.0178890811013 0.000343648097958 0.00255239903592 0.000343648097958 0.0153366820654 0.173480902106 0.00333255697725 0.0250516218063 0.00333255697725 0.1484292803 -0.0022671990347 -0.003009712206 + "BPM.7L4.B2" 12923.46797 21 30.93593129 1.966777221e-07 0.00408224598678 0.000587170446902 0.00453314038256 0.000587170446902 -0.000450894395775 0.0200359606364 0.00288187532038 0.0222441436564 0.00288187532038 -0.00220818302 0.00226948166702 0.001701529497 + "BPMYA.6L4.B2" 13020.07197 21 31.13925348 1.622873969e-06 0.00974724189839 0.000396218071282 0.0020428139011 0.000396218071282 0.00770442799729 0.20900311759 0.00849581994649 0.0432919126904 0.00849581994649 0.1657112049 0.00178798817569 0.001739549567 + "BPMYB.5L4.B2" 13057.07197 21 31.15725147 1.055506335e-06 0.00997414532044 0.000505000947912 0.00200314841294 0.000505000947912 0.0079709969075 0.144672300713 0.00732490320216 0.0291155255127 0.00732490320216 0.1155567752 -0.00519187117902 -0.001600969158 + "BPMWA.B5L4.B2" 13159.46247 21 31.24299818 6.909187538e-07 -0.000529460703359 0.000246401129571 -0.000443322738972 0.000246401129571 -8.61379643862e-05 -0.0076182836788 0.00354540703765 -0.0063875118388 0.00354540703765 -0.00123077184 4.92941376838e-06 5.539646073e-06 + "BPMWA.A5L4.B2" 13168.34747 21 31.24982439 6.62698017e-07 -0.00021152301882 0.000294770048113 -0.000130053590326 0.000294770048113 -8.14694284931e-05 -0.00308848854978 0.00430399454157 -0.00190696468578 0.00430399454157 -0.001181523864 4.37408338807e-06 5.539646073e-06 + "BPMWA.A5R4.B2" 13216.39647 21 31.2828581 5.100837023e-07 -0.0012571810165 0.00015719044858 -0.00120025741663 0.00015719044858 -5.69235998657e-05 -0.0203730792422 0.00254732884366 -0.0194578824474 0.00254732884366 -0.0009151967948 3.05720551339e-06 5.539646073e-06 + "BPMWA.B5R4.B2" 13225.28147 21 31.2882105 4.818629654e-07 -0.00106523020858 0.000177391721088 -0.00101254320975 0.000177391721088 -5.26869988225e-05 -0.0176078009012 0.00293220947105 -0.0167418520826 0.00293220947105 -0.0008659488186 -1.70016403498e-05 5.539646073e-06 + "BPMYA.5R4.B2" 13327.74797 21 31.33488569 1.48542755e-07 0.00285013504761 0.000137236161773 -0.00236810302578 0.000137236161773 0.00521823807339 0.0590262094409 0.00284215670218 -0.0483547069591 0.00284215670218 0.1073809164 -0.00179726034424 -0.001945970826 + "BPMYB.6R4.B2" 13359.31197 21 31.35761978 -4.190902274e-08 0.00158325895395 0.000613228822139 -0.00268210862498 0.000613228822139 0.00426536757893 0.0171380004987 0.00663790078898 -0.0288204831913 0.00663790078898 0.04595848369 0.0157791330801 -0.001945970826 + "BPM.7R4.B2" 13455.82797 21 31.58064519 -7.422242674e-07 -0.01004539741 0.00105599344829 -0.00386648285746 0.00105599344829 -0.00617891455256 -0.0962675742668 0.0101198512671 -0.0369332641668 0.0101198512671 -0.0593343101 -0.0014142483181 -0.001066495109 + "BPM.8R4.B2" 13493.61896 21 31.6701777 -4.948227842e-07 0.0137901172058 0.00035836097395 -0.00150105410256 0.00035836097395 0.0152911713083 0.0969610743538 0.00251970773868 -0.0106201695462 0.00251970773868 0.1075812439 0.0103537221582 0.01034505264 + "BPM.9R4.B2" 13532.68595 21 31.73832865 -7.293459204e-07 0.0558799526534 0.000286679995282 -0.00135155121894 0.000286679995282 0.0572315038723 0.814798172748 0.00418014556613 -0.017964324852 0.00418014556613 0.8327624976 0.0247091657562 0.02491962 + "BPM.10R4.B2" 13573.15094 21 31.81327553 -9.557004609e-08 0.16111882391 0.000194063256411 0.000269519066791 0.000194063256411 0.160849304843 0.864435565028 0.00104118920828 -0.00678988787162 0.00104118920828 0.8712254529 0.00418701925636 0.004068328966 + "BPM.11R4.B2" 13624.99162 21 32.06418153 7.863573077e-07 0.255780527975 0.000940457585745 0.00482752485091 0.000940457585745 0.250953003125 2.67576689921 0.00983829886492 0.0765267802136 0.00983829886492 2.599240119 0.0421479176219 0.03938357248 + "BPM.12R4.B2" 13679.71811 21 32.17700246 5.201146084e-07 0.160554511324 0.00033470756822 -0.00302142336035 0.00033470756822 0.163575934685 1.2206483831 0.00254468247943 -0.0152902048984 0.00254468247943 1.235938588 -0.0199299563179 -0.01990708184 + "BPM.13R4.B2" 13733.16959 21 32.24402976 8.885296837e-07 0.113096025021 0.000299159798719 -0.00301327339586 0.000299159798719 0.116109298417 2.13259208711 0.00564109852147 -0.0185515978861 0.00564109852147 2.151143685 0.0245659376579 0.02721811084 + "BPM.14R4.B2" 13786.62108 21 32.3119147 1.187848072e-07 0.166046366723 0.000283180986891 -0.00230384012494 0.000283180986891 0.168350206848 1.04982404953 0.00179040479038 -0.0433824784729 0.00179040479038 1.093206528 -0.012962210819 -0.01438928421 + "BPM.15R4.B2" 13840.07256 21 32.50936594 -6.117720202e-07 0.233482155901 0.000416722545857 0.00255303507899 0.000416722545857 0.230929120822 2.19674366388 0.00392078190591 0.0448453498846 0.00392078190591 2.151898314 0.0306733066539 0.02973179793 + "BPM.16R4.B2" 13893.52405 21 32.66445185 0.0004743931335 0.164283255055 0.00050832480391 -0.00528726040968 0.00050832480391 0.169570515465 1.09214007732 0.00337929687635 -0.00161552868248 0.00337929687635 1.093755606 -0.0144308059027 -0.01442288973 + "BPM.17R4.B2" 13946.97553 21 32.74400748 0.001696483736 0.11538226856 0.00028658714714 -0.000784704960947 0.00028658714714 0.116166973521 2.1393436976 0.0053137142708 -0.0117136034037 0.0053137142708 2.151057301 0.0295853291679 0.02973108583 + "BPM.18R4.B2" 14000.42701 21 32.8127649 0.0005761100332 0.171468484695 0.00028218792052 0.00226679862349 0.00028218792052 0.169201686071 1.11078761651 0.00182803766069 0.025980047512 0.00182803766069 1.084807569 -0.0152843794176 -0.0146225454 + "BPM.19R4.B2" 14053.8785 21 33.01463626 3.648863837e-05 0.250906161967 0.000536678669053 0.0240585307191 0.000536678669053 0.226847631248 2.33584583756 0.00499628476793 0.213715356561 0.00499628476793 2.122130481 0.0348514483133 0.02931454591 + "BPM.20R4.B2" 14107.32998 21 33.16557043 -0.0004790994373 0.172613626133 0.000565258438682 0.00688727485514 0.000565258438682 0.165726351278 1.13067958608 0.0037026403523 0.0463140160823 0.0037026403523 1.08436557 -0.0137950758343 -0.01401762173 + "BPM.21R4.B2" 14160.78147 21 33.2439419 -0.001695808175 0.113897135491 0.00019112535116 -0.00242128248543 0.00019112535116 0.116318417976 2.12054278043 0.0035583817083 -0.031758121574 0.0035583817083 2.152300902 0.0295834499612 0.02986927069 + "BPM.22R4.B2" 14214.23295 21 33.31190902 -0.0005801409024 0.159554621646 0.000287877905683 -0.0115243198398 0.000287877905683 0.171078941486 1.06629604959 0.00192387453542 -0.044315713413 0.00192387453542 1.110611763 -0.0124592796802 -0.0140849308 + "BPM.23R4.B2" 14267.68443 21 33.50938625 -5.069564221e-05 0.239507017215 0.000616550112231 0.00264891505755 0.000616550112231 0.236858102157 2.20950749997 0.00568781705405 0.00238268396617 0.00568781705405 2.207124816 0.0305236913159 0.03046951542 + "BPM.24R4.B2" 14321.13592 21 33.66445723 0.0004744090073 0.171741317672 0.00043608632995 -0.000515899602215 0.00043608632995 0.172257217274 1.07652014997 0.00273350482972 -0.0346477290284 0.00273350482972 1.111167879 -0.015419683314 -0.01520816016 + "BPM.25R4.B2" 14374.5874 21 33.74400422 0.001696496 0.110430139074 0.000257462511644 -0.00555127393479 0.000257462511644 0.115981413009 2.06559495761 0.00481583442969 -0.0820801403861 0.00481583442969 2.147675098 0.0286607254295 0.02936340014 + "BPM.26R4.B2" 14428.03889 21 33.81276265 0.0005761033616 0.15811111139 0.000368663777853 -0.00843292840952 0.000368663777853 0.166544039799 1.04540305028 0.00243754050243 -0.0223240467173 0.00243754050243 1.067727097 -0.0141093166409 -0.01487256175 + "BPM.27R4.B2" 14481.49037 21 34.01465669 3.645145771e-05 0.238163752265 0.000525077357708 0.0172078352241 0.000525077357708 0.220955917041 2.19064289023 0.00482968952892 0.123640337234 0.00482968952892 2.067002553 0.0336351169551 0.02857744195 + "BPM.28R4.B2" 14534.94185 21 34.16557565 -0.0004791153958 0.17028663368 0.000505609553628 0.00723442904722 0.000505609553628 0.163052204633 1.09020971337 0.00323701534658 0.0232621453742 0.00323701534658 1.066947568 -0.0130561147683 -0.01323343914 + "BPM.29R4.B2" 14588.39334 21 34.24393863 -0.00169582046 0.113160087504 0.000166724164503 -0.00333560108822 0.000166724164503 0.116495688592 2.11375759859 0.00311430008019 -0.0418776224058 0.00311430008019 2.155635221 0.0297173952401 0.03023620542 + "BPM.30R4.B2" 14641.84482 21 34.31283712 -0.0005758580639 0.163219384227 0.000464892446756 -0.0111112612862 0.000464892446756 0.174330645513 1.0745205504 0.00306052182546 -0.0423147766019 0.00306052182546 1.116835327 -0.000606727875144 -0.01405630725 + "BPM.31R4.B2" 14695.29631 21 34.51502088 -3.545128947e-05 0.241912189952 0.000297087593517 0.00414150402554 0.000297087593517 0.237770685927 2.22664227891 0.00273449550597 0.00302576391323 0.00273449550597 2.223616515 0.0307793468597 0.03067076132 + "BPM.32R4.B2" 14748.74779 21 34.6658075 0.0004796055394 0.168674773171 0.00031185193051 -0.00162709217719 0.00031185193051 0.170301865348 1.08486000012 0.00200572782171 -0.0305342048827 0.00200572782171 1.115394205 -0.0156937717574 -0.01546133656 + "BPM.33R4.B2" 14802.19927 21 34.74400555 0.001696894042 0.11053175375 0.000137911764452 -0.00515851739719 0.000137911764452 0.115690271147 2.06609296943 0.00257788841006 -0.0771931085746 0.00257788841006 2.143286078 0.0282611780922 0.02920706499 + "BPM.34R4.B2" 14855.65076 21 34.81276293 0.000576103601 0.159841166888 0.000304296984639 -0.00741800730162 0.000304296984639 0.167259174189 1.05113601344 0.00200109599776 -0.0211777055566 0.00200109599776 1.072313719 -0.0126617318804 -0.01467864835 + "BPM.33L5.B2" 14909.10224 21 35.01465613 3.645247193e-05 0.240246509506 0.000719693329661 0.0169322010422 0.000719693329661 0.223314308464 2.21662389743 0.00664021898435 0.127559170425 0.00664021898435 2.089064727 0.0342546250725 0.02891170996 + "BPM.32L5.B2" 14962.55373 21 35.16557725 -0.0004791149764 0.172542490695 0.000363694365476 0.00812753479417 0.000363694365476 0.164414955901 1.10855231118 0.00233666633527 0.0326986861776 0.00233666633527 1.075853625 -0.0132240440733 -0.01351126164 + "BPM.31L5.B2" 15016.00521 21 35.24394142 -0.001695820176 0.114016693814 0.000210693649365 -0.00276816974263 0.000210693649365 0.116784863557 2.12596480681 0.00392861140403 -0.035013781188 0.00392861140403 2.160978588 0.0296860331237 0.03018096457 + "BPM.30L5.B2" 15069.4567 21 35.31190934 -0.0005801344782 0.162735670596 0.000216982174721 -0.0102775543797 0.000216982174721 0.173013224975 1.06327096105 0.00141770298179 -0.0598611779483 0.00141770298179 1.123132139 0.0111181539998 -0.01402618147 + "BPM.29L5.B2" 15122.90818 21 35.50940602 -5.065967907e-05 0.237129241142 0.000203365221253 -0.00329445121605 0.000203365221253 0.240423692358 2.19261558099 0.00188041656358 -0.0477139100078 0.00188041656358 2.240329491 0.0289004488027 0.03087436724 + "BPM.28L5.B2" 15176.35966 21 35.66446547 0.0004744244864 0.166065510098 0.000880857274678 -0.00750402978577 0.000880857274678 0.173569539884 1.07045663029 0.00567799725217 -0.0492413127119 0.00567799725217 1.119697943 -0.0159255952651 -0.01571703923 + "BPM.27L5.B2" 15229.81115 21 35.74400571 0.001696508062 0.109939207797 0.000237744387316 -0.00556652874677 0.000237744387316 0.115505736544 2.05794507691 0.00445032214843 -0.0809639700946 0.00445032214843 2.138909047 0.0285497172689 0.02904975195 + "BPM.26L5.B2" 15283.26263 21 35.81276489 0.0005760969153 0.163474031932 0.000353363950503 -0.00112673156506 0.000353363950503 0.164600763497 1.03171499681 0.00223014556353 -0.0235220621914 0.00223014556353 1.055237059 -0.013158223151 -0.01492878856 + "BPM.25L5.B2" 15336.71412 21 36.01467658 3.641528884e-05 0.232009305873 0.000339434073861 0.014586777645 0.000339434073861 0.217422528229 2.17990741761 0.00318924645118 0.145968602605 0.00318924645118 2.033938815 0.0314165310631 0.02817457729 + "BPM.24L5.B2" 15390.1656 21 36.16558376 -0.000479130958 0.163291744771 0.000666641528453 0.00154726544182 0.000666641528453 0.161744479329 1.0844393623 0.00442724348993 0.0259878613006 0.00442724348993 1.058451501 -0.0126019770797 -0.01272679011 + "BPM.23L5.B2" 15443.61708 21 36.24394012 -0.001695832542 0.11380271078 0.00021693150165 -0.00316256332096 0.00021693150165 0.116965274101 2.11151375026 0.00402498187836 -0.0528535717395 0.00402498187836 2.164367322 0.0300856098208 0.0305486439 + "BPM.22L5.B2" 15497.06857 21 36.31190886 -0.0005801278845 0.169548225296 0.000272281948919 -0.00610935644243 0.000272281948919 0.175657581739 1.08672746427 0.00174520418246 -0.0535312167274 0.00174520418246 1.140258681 -0.0129188556302 -0.01377534757 + "BPM.21L5.B2" 15550.52005 21 36.50942633 -5.062271191e-05 0.244833005824 0.000719107966077 -0.0015144678333 0.000719107966077 0.246347473657 2.28320517061 0.00670608532068 -0.012300603388 0.00670608532068 2.295505774 0.0312876142156 0.03161138894 + "BPM.20L5.B2" 15603.97154 21 36.66447085 0.0004744403612 0.170492030197 0.000444212097978 -0.00576359786962 0.000444212097978 0.176255628066 1.13804636885 0.00296514719497 0.000935890846898 0.00296514719497 1.137110478 -0.0164965460442 -0.01650226708 + "BPM.19L5.B2" 15657.42302 21 36.74400245 0.001696520329 0.115782010814 0.000226656081849 0.000461645784451 0.000226656081849 0.115320365029 2.16625635257 0.00424068621456 0.0307264465669 0.00424068621456 2.135529906 0.028921061324 0.02868211922 + "BPM.18L5.B2" 15710.8745 21 36.81276264 0.000576090245 0.166724699318 0.000637242876585 0.00478170286273 0.000637242876585 0.161942996456 1.06857702619 0.0040842364737 0.0304188891908 0.0040842364737 1.038158137 -0.0158687436748 -0.01517883767 + "BPM.17L5.B2" 15764.32599 21 37.01469701 3.637810823e-05 0.233804344549 0.000649125346192 0.0222734555756 0.000649125346192 0.211530888974 2.17172346429 0.006029489094 0.192910746289 0.006029489094 1.978812718 0.0343402172638 0.02743748066 + "BPM.16L5.B2" 15817.77747 21 37.16558898 -0.0004791469175 0.161191990681 0.000514888332588 0.00212105393987 0.000514888332588 0.159070936741 1.07596212625 0.00343689747097 0.0349289092507 0.00343689747097 1.041033217 -0.011676126423 -0.01194264961 + "BPM.15L5.B2" 15871.22896 21 37.24393685 -0.001695844831 0.112368810233 0.000216073082412 -0.00477354243352 0.000216073082412 0.117142352667 2.09687236146 0.0040320590173 -0.070826197538 0.0040320590173 2.167698559 0.0300584282357 0.03091552568 + "BPM.14L5.B2" 15924.68044 21 37.31190653 -0.0005801498159 0.16630501029 0.000305973719335 -0.0119946456748 0.000305973719335 0.178299655965 1.09416846509 0.002013089048 -0.0631968989111 0.002013089048 1.157365364 -0.0084400020237 -0.01352372835 + "BPM.13L5.B2" 15978.13193 21 37.50944666 -5.068769091e-05 0.253768738296 0.000551350858749 0.00149746488587 0.000551350858749 0.25227127341 2.33267754941 0.00506809380338 -0.0180019785935 0.00506809380338 2.350679528 0.0319114434362 0.03234870842 + "BPM.12L5.B2" 16031.58341 21 37.66226637 -4.678290792e-07 0.179191198351 0.000255356844145 -0.00234243947928 0.000255356844145 0.18153363783 1.16836773379 0.00166498522276 -0.0143578762078 0.00166498522276 1.18272561 -0.0168207246546 -0.01676271524 + "BPM.11L5.B2" 16085.03489 21 37.74074809 -9.140252896e-07 0.116042177766 0.000392327387378 -0.0041299667584 0.000392327387378 0.120172144524 2.18168883067 0.00737607907302 -0.0487702563331 0.00737607907302 2.230459087 0.0293717368367 0.02964363895 + "BPM.10L5.B2" 16137.81758 21 37.80238254 -1.61918918e-07 0.130043632958 0.00018642529883 -0.00311907088168 0.00018642529883 0.13316270384 0.918902600237 0.00131730164675 -0.0218469456632 0.00131730164675 0.9407495459 -0.0191835891309 -0.02019192741 + "BPM.9L5.B2" 16176.88457 21 37.92702911 3.084394501e-07 0.158933968601 0.000314701097346 0.00409311543994 0.000314701097346 0.154840853161 1.3312543074 0.00263598269818 0.00868926139822 0.00263598269818 1.322565046 0.0182729920814 0.01800306129 + "BPM.8L5.B2" 16217.34956 21 38.15360548 3.057673564e-07 0.0789871322231 0.000704114125378 -0.000598933959784 0.000704114125378 0.0795860661829 0.336937202557 0.00300355560468 0.00498930865743 0.00300355560468 0.3319478939 -0.0231245962334 -0.02327453734 + "BPM.7L5.B2" 16256.41755 21 38.26247875 6.665286912e-07 -0.00403312554471 0.000172210884794 -0.000652300302281 0.000172210884794 -0.00338082524243 -0.0667987062728 0.00285224553088 -0.0113139259828 0.00285224553088 -0.05548478029 -0.00330602474816 -0.003164649346 + "BPMR.6L5.B2" 16293.31155 21 38.33108517 4.157431339e-08 -0.0173529107591 0.000373705330172 -0.000686921054998 0.000373705330172 -0.0166659897041 -0.0785329486572 0.00169125410224 -0.00353037405716 0.00169125410224 -0.0750025746 -0.000278189982252 -0.0001678200339 + "BPM.5L5.B2" 16325.21155 21 38.70473436 -6.136011509e-07 -0.00800908284029 0.000551453822378 0.000377197584603 0.000551453822378 -0.00838628042489 -0.0791486918248 0.00544966877148 0.00457307194523 0.00544966877148 -0.08372176377 -0.000255089417571 -0.0002849147193 + "BPMYA.4L5.B2" 16352.61755 21 38.72712371 0.0002904408527 -0.00343925844363 0.000240820876112 0.000446333073742 0.000240820876112 -0.00388559151738 -0.0661792566642 0.0046339485187 0.00813051751576 0.0046339485187 -0.07430977418 0.000443835387173 0.0004368263284 + "BPMWB.4L5.B2" 16373.67605 21 38.73306926 0.001270492734 -0.00193459072673 0.000181436131454 0.000513256157763 0.000181436131454 -0.0024478468845 -0.0592164487558 0.00555363118009 0.0148635509942 0.00555363118009 -0.07407999975 0.000731506330081 0.0007179615606 + "BPMSY.4L5.B2" 16466.59205 21 38.73900925 0.00686313232 0.000164588796377 0.000188049446257 0.00051055702995 0.000188049446257 -0.000345968233573 0.0135916820253 0.0155290538288 0.0420588643153 0.0155290538288 -0.02846718229 -0.000408055556587 -0.0004110862071 + "BPMS.2L5.B2" 16493.31755 21 38.740257 0.003860028868 0.000278251017177 0.000189266229134 0.000656560248449 0.000189266229134 -0.000378309231272 0.0122986198618 0.0083655162465 0.0290275813818 0.0083655162465 -0.01672896152 -0.000397668462714 -0.0004249567726 + "BPMSW.1L5.B2" 16503.28255 21 38.74106258 0.003448256798 0.000196317240748 0.000185029558198 0.000600772529957 0.000185029558198 -0.000404455289208 0.00781161079234 0.00736246540657 0.0237460147523 0.00736246540657 -0.01593440396 0.000589341496642 0.000576485961 + "BPMSY.4R5.B2" 16583.22105 21 39.23811092 -0.004832955652 0.000142969805074 0.000161245953755 -0.000116801922357 0.000161245953755 0.000259771727431 0.00846793689369 0.00955041213111 -0.00678474355631 0.00955041213111 0.01525268045 -0.000525030279538 -0.0005254870515 + "BPMWB.4R5.B2" 16676.01705 21 39.24315322 -0.00199429292 0.000929549340841 0.000170181836077 -0.000133788569986 0.000170181836077 0.00106333791083 0.0469530844841 0.00859616781585 -0.00609992696586 0.00859616781585 0.05305301145 0.000603697797468 0.0006035625133 + "BPMYA.4R5.B2" 16697.07355 21 39.24456218 -0.00145369909 0.000730204161042 0.000200186117059 -0.000292813552317 0.000200186117059 0.00102301771336 0.0342101152187 0.00937873336685 -0.0132810026213 0.00937873336685 0.04749111784 -0.0010993059119 -0.001103212549 + "BPMR.5R5.B2" 16718.19155 21 39.24676968 -0.0008462781013 0.000901756553134 0.000256734568355 0.000182641316101 0.000256734568355 0.000719115237034 0.0298442983041 0.00849681991924 0.00625824538412 0.00849681991924 0.02358605292 -0.00111198841743 -0.001103212549 + "BPM.6R5.B2" 16750.09155 21 39.25449329 -0.0001333704431 0.000404812913853 0.000236061544724 0.000739675724509 0.000236061544724 -0.000334862810657 0.00842121423384 0.00491072486194 0.0153095038408 0.00491072486194 -0.006888289607 -0.000969921641046 -0.0009149802876 + "BPMRA.7R5.B2" 16784.10555 21 39.28843762 5.079961026e-07 -0.00150555391111 0.000700778125905 0.00333843301224 0.000700778125905 -0.00484398692335 -0.011995955911 0.00558366156114 0.025681587489 0.00558366156114 -0.0376775434 -0.00473348679012 -0.0008997699266 + "BPM.8R5.B2" 16825.54256 21 39.43466207 5.770106012e-07 0.0111416632743 0.000782844253302 0.00999352580641 0.000782844253302 0.00114813746793 0.0905506080381 0.0063623375963 0.0813721695781 0.0063623375963 0.00917843846 0.00968800368831 0.007121857257 + "BPM.9R5.B2" 16864.60757 21 39.64341331 -3.469874917e-08 0.100698038328 0.00142162390429 0.00994165398118 0.00142162390429 0.0907563843472 0.445110668296 0.00628393538354 0.0340854873959 0.00628393538354 0.4110251809 0.0169539584125 0.01616856722 + "BPM.10R5.B2" 16905.07058 21 39.74559121 -8.788173077e-07 0.109593439905 0.000255816401167 -0.00291814046275 0.000255816401167 0.112511580368 1.86111893895 0.00434428145991 -0.037932442048 0.00434428145991 1.899051381 0.0438971688321 0.04474911618 + "BPM.11R5.B2" 16957.85129 21 39.81760175 -4.630617131e-07 0.178644058532 0.000754782576946 -0.0139942996096 0.000754782576946 0.192638358142 1.17681467323 0.00497211728702 -0.0676814797678 0.00497211728702 1.244496153 -0.0110597254532 -0.01197373451 + "BPM.12R5.B2" 17012.57481 21 40.01381488 -4.758505235e-07 0.255781105693 0.000588586216842 -0.00539755213003 0.000588586216842 0.261178657823 2.38424221943 0.00548645727436 -0.0756131265684 0.00548645727436 2.459855346 0.0306240645531 0.03193819904 + "BPM.13R5.B2" 17066.02333 21 40.16535687 -0.0005253791863 0.178182157922 0.000739107780518 -0.00422472301755 0.000739107780518 0.18240688094 1.14119345772 0.00473372291321 -0.0415994492761 0.00473372291321 1.182792907 -0.0230680966696 -0.01895149022 + "BPM.14R5.B2" 17119.47184 21 40.24455134 -0.001889866106 0.109563436076 0.000230829554302 -0.005763703805 0.000230829554302 0.115327139881 2.03970771516 0.00429728054962 -0.0936070498412 0.00429728054962 2.133314765 0.026501914673 0.02779801919 + "BPM.15R5.B2" 17172.92036 21 40.31167609 -0.0006513099228 0.150964303656 0.000535700722853 -0.00384382953579 0.000535700722853 0.154808133192 1.00809366199 0.00357724634467 -0.00911971701356 0.00357724634467 1.017213379 -0.015133389765 -0.01543572156 + "BPM.16R5.B2" 17226.36887 21 40.50475357 -7.261894615e-05 0.224420216929 0.000669907544785 0.0192819858869 0.000669907544785 0.205138231042 2.06658986552 0.00616889227642 0.159310261517 0.00616889227642 1.907279604 0.0322877857499 0.02647232143 + "BPM.17R5.B2" 17279.81739 21 40.66375825 0.000523409654 0.170575749049 0.000647339311596 0.010661227953 0.000647339311596 0.159914521096 1.07491736668 0.00407933878086 0.0578691026839 0.00407933878086 1.017048264 -0.0100723547616 -0.01093105328 + "BPM.18R5.B2" 17333.2659 21 40.74458201 0.001890919767 0.114551051966 0.000368081434353 -0.00256331768128 0.000368081434353 0.117114369647 2.13804355655 0.00687007343452 -0.0296524604479 0.00687007343452 2.167696017 0.0311550482408 0.03138775678 + "BPM.19R5.B2" 17386.71442 21 40.81274098 0.000645526973 0.168478457489 0.00125616416977 -0.0106575295917 0.00125616416977 0.17913598708 1.10643860653 0.00824953263638 -0.0517756054654 0.00824953263638 1.158214212 -0.0125341188513 -0.01359993935 + "BPM.20R5.B2" 17440.16294 21 41.01166079 5.211689584e-05 0.247209068507 0.000511376843655 -0.00525751710908 0.000511376843655 0.252466585616 2.28456580872 0.00472585435251 -0.0712827122806 0.00472585435251 2.355848521 0.0305622959585 0.03242219401 + "BPM.21R5.B2" 17493.61145 21 41.16530344 -0.0005302569339 0.173482890129 0.00105392095097 -0.00510843770721 0.00105392095097 0.178591327836 1.11578310198 0.00677846205492 -0.0416749000185 0.00677846205492 1.157458002 -0.0176805026899 -0.01735889521 + "BPM.22R5.B2" 17547.05997 21 41.24451021 -0.001890312207 0.110824380887 0.000190351749343 -0.00460919094899 0.000190351749343 0.115433571836 2.07004478348 0.00355550504862 -0.0653390215196 0.00355550504862 2.135383805 0.0272381548507 0.02827280068 + "BPM.23R5.B2" 17600.50848 21 41.31161641 -0.0006515382214 0.157242255966 0.000568187353411 -0.00101954814858 0.000568187353411 0.158261804114 1.04040241702 0.00375944425484 0.000274152018088 0.00375944425484 1.040128265 -0.0150570906222 -0.01505052978 + "BPM.24R5.B2" 17653.957 21 41.50463636 -7.342266253e-05 0.232734421148 0.000468292597282 0.0193340285796 0.000468292597282 0.213400392569 2.14267164917 0.00431134022531 0.158728913165 0.00431134022531 1.983942736 0.0311595014768 0.0275118042 + "BPM.25R5.B2" 17707.40552 21 41.6637051 0.0005231377623 0.171428010861 0.000544131154519 0.00756151438244 0.000544131154519 0.163866496479 1.09509794509 0.00347596000314 0.0531038240884 0.00347596000314 1.041994121 -0.011706382112 -0.01200813627 + "BPM.26R5.B2" 17760.85403 21 41.74454068 0.001890905966 0.114030640292 0.000260639888682 -0.00296481496409 0.000260639888682 0.116995455256 2.13367993762 0.00487695324694 -0.0319178573815 0.00487695324694 2.165597795 0.0307247413233 0.03091256966 + "BPM.27R5.B2" 17814.30255 21 41.81268065 0.0006457550401 0.165084526678 0.000727021273408 -0.0104764862347 0.000727021273408 0.175561012912 1.08859336967 0.00479409278247 -0.0467496153263 0.00479409278247 1.135342985 -0.013215562063 -0.01398362171 + "BPM.28R5.B2" 17867.75106 21 42.01154475 5.292083702e-05 0.247774855873 0.000218032013279 0.00349431233762 0.000218032013279 0.244280543536 2.29449442186 0.0020190637847 0.0152548058557 0.0020190637847 2.279239616 0.0320114758999 0.03138273348 + "BPM.29R5.B2" 17921.19958 21 42.16525091 -0.0005299846158 0.173645008641 0.000430392475403 -0.00112603221612 0.000430392475403 0.174771040858 1.10949474419 0.00274996784035 -0.0230015098063 0.00274996784035 1.132496254 -0.0165218130697 -0.01628319504 + "BPM.30R5.B2" 17974.6481 21 42.24446908 -0.001890297692 0.111452849055 0.000181055270776 -0.00408485109878 0.000181055270776 0.115537700154 2.0773019851 0.00337457926455 -0.0601080129 0.00337457926455 2.137409998 0.0270885394123 0.02874698998 + "BPM.31R5.B2" 18028.09661 21 42.31273737 -0.0006455861145 0.157746624702 0.000390022005051 -0.00457347151534 0.000390022005051 0.162320096218 1.04028889914 0.00257207127596 -0.00878368185529 0.00257207127596 1.049072581 -0.0146158137516 -0.01495063689 + "BPM.32R5.B2" 18081.54513 21 42.51183515 -5.224679926e-05 0.229989656702 0.000489429527344 0.0143909701046 0.000489429527344 0.215598686598 2.12461910888 0.00452129604938 0.113622388884 0.00452129604938 2.01099672 0.0326591549964 0.02786398908 + "BPM.33R5.B2" 18134.99364 21 42.66544057 0.000530355908 0.170673930959 0.00120578225368 0.00875006416221 0.00120578225368 0.161923866797 1.09437403966 0.00773156620049 0.0443370566556 0.00773156620049 1.050036983 -0.0119860760721 -0.01240274406 + "BPM.34R5.B2" 18188.44216 21 42.7445061 0.001891457825 0.114908605221 0.000392208531672 -0.00183115077666 0.000392208531672 0.116739755997 2.13610192519 0.00729098919938 -0.0261285538096 0.00729098919938 2.162230479 0.030243802374 0.03070871567 + "BPM.33L6.B2" 18241.89067 21 42.81262309 0.0006459954795 0.168407685211 0.000904380644869 -0.00791387284419 0.000904380644869 0.176321558055 1.10454266317 0.00593159988364 -0.0360318748337 0.00593159988364 1.140574538 -0.0131880089159 -0.01379193756 + "BPM.32L6.B2" 18295.33919 21 43.01140186 5.377889695e-05 0.247606204176 0.000296217634603 0.000786129875924 0.000296217634603 0.2468200743 2.29605984263 0.00274683511164 -0.00665391137044 0.00274683511164 2.302713754 0.0316112937241 0.03173228865 + "BPM.31L6.B2" 18348.78771 21 43.16519262 -0.0005296913671 0.17321238868 0.000313100334337 -0.00302645513223 0.000313100334337 0.176238843812 1.11412687984 0.00201390617167 -0.0275708721614 0.00201390617167 1.141697752 -0.016699435612 -0.01658388596 + "BPM.30L6.B2" 18402.23622 21 43.24443211 -0.001890273229 0.112526276357 0.000199198363114 -0.00326472548799 0.000199198363114 0.115791001845 2.09977996311 0.00371711163911 -0.0423693898855 0.00371711163911 2.142149353 -0.00234392374639 0.02867523351 + "BPM.29L6.B2" 18455.68474 21 43.31149873 -0.0006520068343 0.156558787591 0.000534595409413 -0.00431928071563 0.000534595409413 0.160878068307 1.04632808934 0.00357285721172 -0.0115053846581 0.00357285721172 1.057833474 -0.0146655299754 -0.01485676776 + "BPM.28L6.B2" 18509.13325 21 43.50437515 -7.508393531e-05 0.234945862795 0.000635089258562 0.0157816344047 0.000635089258562 0.21916422839 2.16363449381 0.00584858575556 0.126402176809 0.00584858575556 2.037232317 0.0309228524556 0.02820329687 + "BPM.27L6.B2" 18562.58177 21 43.66359802 0.0005225732747 0.171838512625 0.000272849011141 0.00541699692121 0.000272849011141 0.166421515704 1.08396307986 0.00172114067991 0.0262289848604 0.00172114067991 1.057734095 -0.0126426634883 -0.01278672095 + "BPM.26L6.B2" 18616.03029 21 43.7444701 0.001890868875 0.112597783966 0.000259175809325 -0.00401215835083 0.000259175809325 0.116609942317 2.09834501679 0.00482993757791 -0.0602616552093 0.00482993757791 2.158606672 0.0199633625391 0.03050630161 + "BPM.25L6.B2" 18669.4788 21 43.81256884 0.0006462236615 0.159945916936 0.00057302794551 -0.0127901445129 0.00057302794551 0.172736061449 1.06631639681 0.00382022314687 -0.0513174471881 0.00382022314687 1.117633844 -0.0129533906392 -0.01417271873 + "BPM.24L6.B2" 18722.92732 21 44.01128579 5.45827967e-05 0.243072653456 0.000403977204497 0.00444097103881 0.000403977204497 0.238631682417 2.24368779923 0.00372892101194 0.0175829102319 0.00372892101194 2.226104889 0.0311532574772 0.03069404207 + "BPM.23L6.B2" 18776.37583 21 44.16514543 -0.0005294191853 0.17665036717 0.00037302476389 0.00422215027185 0.00037302476389 0.172428216898 1.1171593778 0.00235905602581 0.000373733803923 0.00235905602581 1.116785644 -0.0155053482462 -0.01550728203 + "BPM.22L6.B2" 18829.82435 21 44.24439894 -0.001890259137 0.113452862451 0.000181891143075 -0.00245215076698 0.000181891143075 0.115905013218 2.11653888919 0.00339330070305 -0.0278067668102 0.00339330070305 2.144345656 0.0274800192206 0.02915175056 + "BPM.21L6.B2" 18883.27287 21 44.31144648 -0.0006522351184 0.157560367539 0.000455691514461 -0.00677180385448 0.000455691514461 0.164332171394 1.06778645857 0.00308822095319 -0.0130043884287 0.00308822095319 1.080790847 -0.0142026814191 -0.01447335208 + "BPM.20L6.B2" 18936.72138 21 44.50425793 -7.588758988e-05 0.238268006344 0.000305450298018 0.010839651101 0.000305450298018 0.227428355243 2.19375819436 0.00281231250695 0.0798632653611 0.00281231250695 2.113894929 0.0310748605226 0.02924202716 + "BPM.19L6.B2" 18990.1699 21 44.66354479 0.0005223010444 0.174330719939 0.000243714678386 0.00395021010978 0.000243714678386 0.170380509829 1.07954152691 0.00150920110997 -0.00315867709467 0.00150920110997 1.082700204 -0.0138844104239 -0.01386330894 + "BPM.18L6.B2" 19043.61841 21 44.74442878 0.001890853794 0.109063199487 0.000312507888873 -0.00743207674717 0.000312507888873 0.116495276234 2.03802342115 0.00583971862014 -0.118561675849 0.00583971862014 2.156585097 0.0278428429449 0.03003220029 + "BPM.17L6.B2" 19097.06693 21 44.81250862 0.000646451283 0.154574604841 0.000439099266762 -0.0145946025238 0.000439099266762 0.169169207365 1.02995747061 0.00292579476821 -0.0648319053872 0.00292579476821 1.094789376 -0.0120987149564 -0.01455744502 + "BPM.16L6.B2" 19150.51545 21 45.01116971 5.538667183e-05 0.235005769268 0.000567631621571 0.00456374164206 0.000567631621571 0.230442027625 2.15330004375 0.00520106889023 0.00380005074978 0.00520106889023 2.149499993 0.0298125841839 0.02965418917 + "BPM.15L6.B2" 19203.96396 21 45.1650928 1.16542772e-07 0.172314536479 0.000209907724371 0.00379504554558 0.000209907724371 0.168519490933 1.0974004573 0.00133681601925 0.00612611129586 0.00133681601925 1.091274346 -0.0143738794664 -0.01443204014 + "BPM.14L6.B2" 19257.41248 21 45.24433352 9.553816963e-07 0.113858050905 0.000235963970856 -0.00202197277219 0.000235963970856 0.115880023677 2.132308491 0.00441908125625 -0.0124679910022 0.00441908125625 2.144776482 0.0295412734013 0.0296330533 + "BPM.13L6.B2" 19310.86099 21 45.31247744 4.577605512e-07 0.16222948339 0.00086636615059 -0.00650397075479 0.00086636615059 0.168733454144 1.06937690585 0.00571087285795 -0.0224853981526 0.00571087285795 1.091862304 -0.0139810999682 -0.01432502229 + "BPM.12L6.B2" 19364.30951 21 45.51758553 4.523068288e-07 0.238013440986 0.000785458383439 0.0115213966484 0.000785458383439 0.226492044337 2.15918352659 0.00712543289707 0.0750374515911 0.00712543289707 2.084146075 0.0301154490567 0.02846776067 + "BPM.11L6.B2" 19417.75802 21 45.67550792 -1.474916147e-07 0.152717334257 0.000159684862789 -0.000643287345323 0.000159684862789 0.153360621602 0.985263926117 0.00103021530344 -0.00412718638258 0.00103021530344 0.9893911125 -0.0150554083952 -0.01503400683 + "BPM.10L6.B2" 19469.59674 21 45.75456543 -9.849935023e-07 0.0844684901167 0.000262920529115 -0.00443935551496 0.000262920529115 0.0889078456317 1.52157224389 0.00473611614101 -0.0651378101148 0.00473611614101 1.586710054 0.0192755305398 0.0196797063 + "BPM.9L6.B2" 19508.66175 21 45.81341822 -3.885804509e-07 0.0959871582551 0.000482073205624 -0.00517343643531 0.000482073205624 0.10116059469 0.532156634029 0.00267263308055 -0.0221059456712 0.00267263308055 0.5542625797 -0.0241305796459 -0.0248349131 + "BPM.8L6.B2" 19549.12476 21 46.0899639 -1.545611159e-07 0.0517368774012 0.000381646124543 0.00192104935638 0.000381646124543 0.0498158280449 0.438541587229 0.00323497871584 0.0122868427293 0.00323497871584 0.4262547445 0.00558984927843 0.004786272848 + "BPMYB.5L6.B2" 19646.21277 21 46.36708181 7.831854321e-07 0.00832020241752 0.000374400987953 0.000677825131218 0.000374400987953 0.00764237728631 0.0857322995055 0.00385786979974 0.00793704918553 0.00385786979974 0.07779525032 -0.00108836164956 -0.001718416803 + "BPMYA.4L6.B2" 19682.61277 21 46.39311959 1.783214902e-06 0.00317833589866 0.000397759312684 2.27276134564e-05 0.000397759312684 0.00315560828521 0.074361908934 0.00930617239036 0.00103446951401 0.00930617239036 0.07332743942 1.40707361688e-05 5.486742708e-06 + "BPMSA.4L6.B2" 19810.82827 21 46.44622034 1.12150065e-06 -0.00706181679171 0.000492930893088 -0.000937380908198 0.000492930893088 -0.00612443588351 -0.113048487753 0.00789104187691 -0.0149952897933 0.00789104187691 -0.09805319796 -0.00133712344484 -0.001365634789 + "BPMSX.A4R6.B2" 19995.52327 21 46.62252274 3.170015483e-08 -0.0303703364228 0.00019995651167 -0.00320426296656 0.00019995651167 -0.0271660734562 -0.389381107399 0.00256366234677 -0.0391030817994 0.00256366234677 -0.3502780256 -0.00136613814309 -0.001365634789 + "BPMSX.B4R6.B2" 19996.10827 21 46.62308197 2.824833811e-08 -0.0312796619037 0.000400701537793 -0.00409015215356 0.000400701537793 -0.0271895097501 -0.400247896791 0.00512729160042 -0.0491709782913 0.00512729160042 -0.3510769185 -0.00139703061278 -0.001365634789 + "BPMYB.4R6.B2" 20026.21277 21 46.6496128 -1.493845106e-07 -0.0308984894544 0.000145766744661 -0.00298708729188 0.000145766744661 -0.0279114021625 -0.428951422203 0.00202362165713 -0.0367629289032 0.00202362165713 -0.3921884933 -0.00149375309331 -0.001365634789 + "BPMYA.5R6.B2" 20062.61277 21 46.66775432 -4.5645096e-07 -0.0304455273603 0.000137564332618 -0.00248563240272 0.000137564332618 -0.0279598949575 -0.717181468263 0.00324049535683 -0.0541599726628 0.00324049535683 -0.6630214956 -0.00900601872717 -0.007932863659 + "BPM.8R6.B2" 20158.33778 21 46.84655843 -3.193431834e-07 0.0265772213181 0.000619449725946 -0.00135966273894 0.000619449725946 0.0279368840571 0.113822670386 0.00265292677263 -0.004116811914 0.00265292677263 0.1179394823 0.0169609422478 0.01705978782 + "BPM.9R6.B2" 20197.40279 21 47.02098719 -5.331554832e-07 0.105595395679 0.000448344115867 0.00668895837756 0.000448344115867 0.0989064373011 1.16291939052 0.00493760227531 0.061415062516 0.00493760227531 1.101504328 0.032909225028 0.03153038172 + "BPM.10R6.B2" 20237.8658 21 47.12508455 -6.30714082e-09 0.170270076861 0.000633421908464 0.0078123032648 0.000633421908464 0.162457773597 0.868509468143 0.0032309430698 0.0271011206433 0.0032309430698 0.8414083475 -0.0049262597284 -0.00479963618 + "BPM.11R6.B2" 20289.70451 21 47.28131078 8.465489583e-07 0.172425936644 0.000331266108103 -0.00773035692347 0.000331266108103 0.180156293567 2.33306082829 0.0044822953878 -0.0717080597089 0.0044822953878 2.404768888 0.035615063497 0.03657381576 + "BPM.12R6.B2" 20344.42803 21 47.38930177 4.674971938e-07 0.183813450749 0.000452536909141 -0.00711113147131 0.000452536909141 0.190924582221 1.14035145557 0.0028074720372 -0.0203663774267 0.0028074720372 1.160717833 -0.0173978801056 -0.01746721413 + "BPM.13R6.B2" 20397.87654 21 47.5164996 6.515210428e-07 0.168123970505 0.000235334882874 0.00550451473503 0.000235334882874 0.16261945577 2.19044619118 0.00306612076966 0.0525650191793 0.00306612076966 2.137881172 0.15591531954 0.02831033887 + "BPM.15R6.B2" 20504.77357 21 47.7688739 -7.826832516e-07 0.157260466809 0.000232348910904 -0.00476585010817 0.000232348910904 0.162026316917 2.07971963691 0.00307274041867 -0.0408174760854 0.00307274041867 2.120537113 0.0284047987532 0.02941882733 + "BPM.16R6.B2" 20558.22209 21 47.88045784 -4.539471907e-07 0.182315624588 0.000492850189276 -0.00459550867881 0.000492850189276 0.186911133267 1.07621483275 0.00290931007817 -0.0243626432497 0.00290931007817 1.100577476 -0.013569179005 -0.0136904147 + "BPM.17R6.B2" 20611.67061 21 48.01302495 -6.685118753e-07 0.172554793928 0.000321002608448 0.00405469062037 0.000321002608448 0.168500103308 2.24405504356 0.00417460162123 0.0282256805602 0.00417460162123 2.215829363 0.0311925407812 0.03082550107 + "BPM.18R6.B2" 20665.11912 21 48.12734213 -7.131864391e-10 0.197714179262 0.00022094632358 -0.000359677590846 0.00022094632358 0.198073856853 1.11873404403 0.00125018941491 -0.0190336569717 0.00125018941491 1.137767701 -0.0148719557705 -0.01491479077 + "BPM.19R6.B2" 20718.56764 21 48.26536619 7.680184915e-07 0.157084229629 0.000472351038358 -0.0137598350155 0.000472351038358 0.170844064645 2.0811216249 0.00625791629619 -0.153551554096 0.00625791629619 2.234673179 0.0281419423224 0.03053036234 + "BPM.20R6.B2" 20772.01615 21 48.37705235 4.539292854e-07 0.178678291499 0.000584571424416 -0.0109939134396 0.000584571424416 0.189672204939 1.05943005075 0.00346607597732 -0.0571890192541 0.00346607597732 1.11661907 -0.0155346932085 -0.01568772894 + "BPM.21R6.B2" 20825.46467 21 48.50955565 6.853520358e-07 0.167622723765 0.000512100538546 0.00499620166269 0.000512100538546 0.162626522102 2.17764164605 0.0066528656417 0.0378570770491 0.0066528656417 2.139784569 0.0299292094375 0.02911709424 + "BPM.22R6.B2" 20878.91318 21 48.6237657 1.066807459e-08 0.195402382707 0.000441940252123 0.00760571158111 0.000441940252123 0.187796671126 1.09865892343 0.0024848294831 0.0196963194323 0.0024848294831 1.078962604 -0.014552272818 -0.01448015523 + "BPM.23R6.B2" 20932.3617 21 48.76090321 -7.52982507e-07 0.157648886859 0.000487830587695 -0.00507360269401 0.000487830587695 0.162722489553 2.1000971498 0.00649856556056 -0.0385518621952 0.00649856556056 2.138649012 0.029222135015 0.02975769281 + "BPM.24R6.B2" 20985.81022 21 48.87568664 -4.415431069e-07 0.184175519226 0.000680400744478 -0.00385577536002 0.000680400744478 0.188031294586 1.08064220166 0.00399222307944 0.00381850765883 0.00399222307944 1.076823694 -0.014516312948 -0.01450755293 + "BPM.25R6.B2" 21039.25873 21 49.01324857 -6.676995671e-07 0.172122696606 0.000314230150549 0.0100663382849 0.000314230150549 0.162056358321 2.24074282294 0.00409073857474 0.108822480939 0.00409073857474 2.131920342 0.0316421229108 0.02966863425 + "BPM.26R6.B2" 21092.70725 21 49.12745037 -4.120766358e-10 0.196466325881 0.000280198978381 0.00938925920939 0.000280198978381 0.187077066672 1.09945126683 0.00156803014646 0.0246357928315 0.00156803014646 1.074815474 -0.0144717105588 -0.01440955422 + "BPM.27R6.B2" 21146.15576 21 49.26460344 7.684896741e-07 0.154092049198 0.000394726382793 -0.00818895955419 0.000394726382793 0.162281008752 2.05836349245 0.00527275988656 -0.0743295885548 0.00527275988656 2.132693081 0.0287515102161 0.02971821191 + "BPM.28R6.B2" 21199.60428 21 49.37939558 4.4155046e-07 0.177713080642 0.000499084099519 -0.0103468569931 0.000499084099519 0.188059937635 1.04011231096 0.00292102029992 -0.0368856600406 0.00292102029992 1.076997971 -0.0143259573509 -0.01438448696 + "BPM.29R6.B2" 21253.0528 21 49.51694238 6.498440882e-07 0.166134186484 0.000725831798494 0.00352134646261 0.000725831798494 0.162612840021 2.16302780895 0.00945015832077 0.0236330779518 0.00945015832077 2.139394731 0.0301588109927 0.02980600428 + "BPM.30R6.B2" 21306.50131 21 49.63113595 -9.845310513e-09 0.194600884403 0.000667202373817 0.00680090109049 0.000667202373817 0.187799983313 1.10230915693 0.0037793419513 0.0233540079317 0.0037793419513 1.078955149 -0.0145312018539 -0.01448288799 + "BPM.31R6.B2" 21359.94983 21 49.76830465 -7.835873605e-07 0.159547117547 0.000303973224492 -0.00318546145138 0.000303973224492 0.162732578999 2.12054780489 0.00404012158824 -0.0179266651071 0.00404012158824 2.13847447 0.0295522931403 0.02975454417 + "BPM.32R6.B2" 21413.39834 21 49.88310423 -4.413238418e-07 0.188691470546 0.000713289680449 0.000681848830359 0.000713289680449 0.188009621716 1.09616066034 0.0041436959756 0.0194306583353 0.0041436959756 1.076730002 -0.0145371878649 -0.01450578493 + "BPM.33R6.B2" 21466.84686 21 50.02063438 -6.316464173e-07 0.173950423684 0.000555530422294 0.011926585582 0.000555530422294 0.162023838102 2.26308386931 0.00722741520821 0.131288263312 0.00722741520821 2.131795606 0.0311074805869 0.02966792665 + "BPM.34R6.B2" 21520.29538 21 50.13482103 2.009617515e-08 0.192516853453 0.000625688558117 0.00543226309137 0.000625688558117 0.187084590362 1.09681447751 0.0035646970987 0.0219914985136 0.0035646970987 1.074822979 -0.0144473674002 -0.01440690897 + "BPM.33L7.B2" 21573.74389 21 50.27200649 7.982574974e-07 0.154502975196 0.000305495651348 -0.00781389470969 0.000305495651348 0.162316869906 2.06647860371 0.00408600692794 -0.0663843032856 0.00408600692794 2.132862907 0.028888009762 0.02972127139 + "BPM.32L7.B2" 21627.19241 21 50.38681298 4.40855395e-07 0.17945697069 0.000511858277082 -0.00861197330436 0.000511858277082 0.188068943994 1.04585056904 0.00298303971305 -0.031240980965 0.00298303971305 1.07709155 -0.0143287173643 -0.01438615727 + "BPM.31L7.B2" 21680.64092 21 50.52432646 6.131007441e-07 0.168360948315 0.000247069164316 0.0057609535408 0.000247069164316 0.162599994775 2.18770090277 0.00321044422254 0.0481763097674 0.00321044422254 2.139524593 0.0304100746981 0.02980680983 + "BPM.30L7.B2" 21734.08944 21 50.6385067 -3.033708332e-08 0.192912515774 0.00035311850662 0.00510579240283 0.00035311850662 0.187806723372 1.09254965852 0.00199986767202 0.0136030025191 0.00199986767202 1.078946656 -0.0189133770419 -0.01448566227 + "BPM.29L7.B2" 21787.53795 21 50.77570927 -8.125016464e-07 0.158106472573 0.000247607136167 -0.00463502261098 0.000247607136167 0.162741495184 2.10892150011 0.00330273646956 -0.0293735788909 0.00330273646956 2.138295079 0.0293691419569 0.02975132261 + "BPM.28L7.B2" 21840.98647 21 50.8905219 -4.401522631e-07 0.184334589385 0.000849075695363 -0.003649362224 0.000849075695363 0.187983951609 1.07175756834 0.00493669313847 -0.00487417065763 0.00493669313847 1.076631739 -0.014488439005 -0.01450400953 + "BPM.27L7.B2" 21894.43499 21 51.02801814 -5.94229989e-07 0.171465452761 0.000166086137183 0.00947404168554 0.000166086137183 0.161991411075 2.23656445339 0.0021663976308 0.104904205394 0.0021663976308 2.131660248 0.0320035624053 0.02966709922 + "BPM.26L7.B2" 21947.8835 21 51.14219233 4.056111828e-08 0.192849906039 0.000306810799843 0.00575490010147 0.000306810799843 0.187095005937 1.0894373815 0.00173321917164 0.0146048994993 0.00173321917164 1.074832482 -0.0144873137321 -0.01440400505 + "BPM.25L7.B2" 22001.33202 21 51.27941162 8.263027756e-07 0.152533523113 0.000373609059619 -0.00981974876085 0.000373609059619 0.162353271874 2.02377434432 0.00495694595018 -0.109278056681 0.00495694595018 2.133052401 0.0282041364461 0.02972466547 + "BPM.24L7.B2" 22054.78053 21 51.39423029 4.392081117e-07 0.178192520804 0.000448617910376 -0.00988444225325 0.000448617910376 0.188076963057 1.04068640592 0.00262003454844 -0.0365030090838 0.00262003454844 1.077189415 -0.0143158817179 -0.01438815335 + "BPM.23L7.B2" 22108.22905 21 51.53170995 5.750310479e-07 0.167869073275 0.000164260286247 0.00528151910528 0.000164260286247 0.162587554169 2.18449305643 0.00213753163555 0.0448469554326 0.00213753163555 2.139646101 0.0305119016101 0.02980738359 + "BPM.22L7.B2" 22161.67757 21 51.64587877 -5.076447252e-08 0.196053827853 0.000476113231516 0.00824012701039 0.000476113231516 0.187813700843 1.10523517439 0.0026840439497 0.0263035663902 0.0026840439497 1.078931608 -0.0145601242917 -0.01448838684 + "BPM.21L7.B2" 22215.12608 21 51.78311535 -8.39662431e-07 0.160723428397 0.00036120071672 -0.00202492110082 0.00036120071672 0.162748349498 2.13358231139 0.00479489186945 -0.00452043261351 0.00479489186945 2.138102744 0.02967917753 0.02974797238 + "BPM.20L7.B2" 22268.5746 21 51.89418712 -4.515660196e-07 0.187089789328 0.000995261459798 -0.0015712503094 0.000995261459798 0.188661039637 1.10576729877 0.00588234975263 -0.0051379482275 0.00588234975263 1.110905247 -0.0138345349047 -0.01385144567 + "BPM.19L7.B2" 22322.02311 21 52.0274254 -5.946031144e-07 0.175428654878 0.000457823171549 0.00509816471163 0.000457823171549 0.170330490166 2.27681140856 0.00594188572451 0.0454950495632 0.00594188572451 2.231316359 0.0315484738589 0.03093614839 + "BPM.18L7.B2" 22375.47163 21 52.14229848 4.084447677e-08 0.196616448472 0.000566707315652 -0.00151705767207 0.000566707315652 0.198133506144 1.12310442059 0.0032371223076 -0.0148432484065 0.0032371223076 1.137947669 -0.0151319443532 -0.01522298545 + "BPM.17L7.B2" 22428.92015 21 52.27963437 8.26619323e-07 0.158627953054 0.000377535989009 -0.0102515148557 0.000377535989009 0.16887946791 2.10284715163 0.00500479558515 -0.114599651367 0.00500479558515 2.217446803 0.0289789725956 0.0302036415 + "BPM.16L7.B2" 22482.36866 21 52.39078238 4.524599852e-07 0.182031440739 0.000413869455058 -0.00585208196513 0.000413869455058 0.187883522704 1.07362759778 0.00244101605209 -0.0326676392213 0.00244101605209 1.106295237 -0.0154588541056 -0.01553344937 + "BPM.15L7.B2" 22535.81718 21 52.52392936 6.127277398e-07 0.171220013224 0.000456088407843 0.00917636446996 0.000456088407843 0.162043648754 2.22619793319 0.00593004901575 0.102278557191 0.00593004901575 2.123919376 0.0301201599135 0.02899927276 + "BPM.14L7.B2" 22589.26569 21 52.63872042 -3.092229379e-08 0.195718577293 0.000772223146861 0.0079334147646 0.000772223146861 0.187785162529 1.11359401763 0.0043937733889 0.0350380106346 0.0043937733889 1.078556007 -0.0142204972066 -0.01416857279 + "BPM.13L7.B2" 22642.71421 21 52.7761505 -8.131833997e-07 0.159704548652 0.000316784902105 -0.00304092182921 0.000316784902105 0.162745470481 2.11502423523 0.00419529531851 -0.0207155477725 0.00419529531851 2.135739783 0.0293656106226 0.02970545024 + "BPM.12L7.B2" 22696.16273 21 52.8888167 -4.480237932e-07 0.185643634113 0.000995054775873 -0.00254870016779 0.000995054775873 0.188192334281 1.08984070962 0.00584157495206 -0.00636744538429 0.00584157495206 1.096208155 -0.014055319308 -0.01408167312 + "BPM.11L7.B2" 22749.61124 21 53.02232683 -6.26500188e-07 0.173734114694 0.000336025882584 0.00615585764309 0.000336025882584 0.167578257051 2.2733047288 0.00439688675549 0.0566406167967 0.00439688675549 2.216664112 0.0321991519772 0.03092543657 + "BPM.10L7.B2" 22802.39195 21 53.14121236 3.609793205e-08 0.159624782427 0.0010190122927 0.000624990300166 0.0010190122927 0.158999792127 0.866359867963 0.00553066599018 -0.00492087983682 0.00553066599018 0.8712807478 -0.0214679031024 -0.02147834327 + "BPM.9L7.B2" 22841.45696 21 53.27134523 6.298915833e-07 0.0918052667509 0.000331624450528 -0.00645776960465 0.000331624450528 0.0982630363556 0.966196896238 0.00349015395474 -0.0559841337622 0.00349015395474 1.02218103 0.0101405404696 0.01130525509 + "BPM.8L7.B2" 22881.91997 21 53.40524896 3.535210461e-07 0.0514074529292 0.000333756110621 -0.0019054662781 0.000333756110621 0.0533129192073 0.240206597675 0.00155950966674 -0.00796087122536 0.00155950966674 0.2481674689 -0.0161466036009 -0.01607636747 + "BPM.7L7.B2" 22920.98398 21 53.56270559 3.246441467e-07 0.000173580523634 0.000373373567865 0.00163535232708 0.000373373567865 -0.00146177180345 0.00181681754838 0.00390799403064 0.0173378397884 0.00390799403064 -0.01552102224 -0.000198989969031 -0.0004355042067 + "BPMR.6L7.B2" 22955.80198 21 53.63027827 -9.4686122e-09 0.0010312203158 0.000393041365163 0.00291944769728 0.000393041365163 -0.00188822738148 0.00743668141804 0.00283443156817 0.021208706798 0.00283443156817 -0.01377202538 -3.77704734273e-05 9.489533375e-05 + "BPMWC.6L7.B2" 22967.98048 21 53.66829721 -1.449860773e-07 0.000745667258873 0.000706309508675 0.00272893445949 0.000706309508675 -0.00198326720062 0.00551503642107 0.00522394220551 0.0202585342711 0.00522394220551 -0.01474349785 0.000121771636247 -0.0002027893107 + "BPMWE.5L7.B2" 23045.03448 21 53.76729504 -1.05518776e-06 0.0020635932303 0.000471667281519 0.00292752201591 0.000471667281519 -0.000863928785603 0.0371406331311 0.00848908651453 0.0525088586211 0.00848908651453 -0.01536822549 -0.000156061171078 -0.0002027882079 + "BPMW.5L7.B2" 23068.23948 21 53.77807916 -1.097742881e-06 0.0021591370241 0.00033758257819 0.00310669113869 0.00033758257819 -0.000947554114595 0.0384091697865 0.00600530045938 0.0550473893865 0.00600530045938 -0.0166382196 -6.99842972262e-05 0.0001498636964 + "BPMWE.4L7.B2" 23103.32448 21 53.81116322 -6.824222872e-07 0.000767166207991 0.00069638416395 0.0019426469375 0.00069638416395 -0.00117548072951 0.00755753779945 0.00686024695452 0.0189382049394 0.00686024695452 -0.01138066714 -7.50970787032e-05 0.0001498636964 + "BPMW.4L7.B2" 23131.42948 21 53.88763219 -5.207145421e-07 0.000476253601588 0.0008684923036 0.00197239557327 0.0008684923036 -0.00149614197168 0.00328214050299 0.00598528547958 0.013405993553 0.00598528547958 -0.01012385305 0.000229292596583 -5.209317435e-05 + "BPMW.4R7.B2" 23247.47648 21 54.07550929 -4.596822318e-07 -0.00351304583202 0.000257580299254 -0.00264114518211 0.000257580299254 -0.000871900649915 -0.0637963894699 0.00467761989929 -0.0476272187799 0.00467761989929 -0.01616917069 -9.74535011602e-05 -5.209317435e-05 + "BPMWE.4R7.B2" 23275.58148 21 54.08873036 -3.112235118e-07 -0.00375084202235 0.000242174508541 -0.00298641360447 0.000242174508541 -0.000764428417885 -0.0613807250389 0.00396306931393 -0.0486201408389 0.00396306931393 -0.0127605842 0.000513327388137 0.0002721352024 + "BPMW.5R7.B2" 23310.66648 21 54.13035834 1.086712062e-08 -0.00369537283294 0.000340764908046 -0.00330006910779 0.000340764908046 -0.000395303725147 -0.0295267109377 0.00272277450543 -0.0263136682247 0.00272277450543 -0.003213042713 0.000790871721831 0.0002721352024 + "BPMWE.5R7.B2" 23333.87148 21 54.22331738 2.468798935e-07 -0.00258103300151 0.000862670728974 -0.00306708806049 0.000862670728974 0.000486055058982 -0.0146210561087 0.00488686395109 -0.0173715313317 0.00488686395109 0.002750475223 -0.000188856280385 0.0002577450348 + "BPM.6R7.B2" 23413.01098 21 54.41036654 1.14389598e-06 -0.000793351962321 0.000332558423584 -0.00133093908264 0.000332558423584 0.00053758712032 -0.0121933565869 0.00511122885848 -0.0203406932999 0.00511122885848 0.008147336713 0.000163745854779 0.0002577443995 + "BPM_A.7R7.B2" 23451.04698 21 54.45248267 5.898710394e-07 0.0012512320319 0.00052232816927 6.00017206766e-05 0.00052232816927 0.00119123031123 0.0107871568367 0.00450311032526 0.000563160506722 0.00450311032526 0.01022399633 -2.86881440254e-05 2.306961395e-05 + "BPM.8R7.B2" 23490.11099 21 54.53506193 4.134307397e-07 0.0215915515879 0.000353203432339 0.00254149874819 0.000353203432339 0.0190500528397 0.209236860837 0.00342278215248 0.0232568531369 0.00342278215248 0.1859800077 0.010853284201 0.01050484502 + "BPM.9R7.B2" 23529.176 21 54.69885115 -1.447865149e-07 0.128062740477 0.000879567890788 0.00385345013157 0.000879567890788 0.124209290346 0.55182049547 0.00379004531284 0.0130337085701 0.00379004531284 0.5387867869 0.0148560483153 0.01459040183 + "BPM.10R7.B2" 23569.63902 21 54.84425117 -9.4614275e-07 0.148735360871 0.000345002819295 -0.00248897556486 0.000345002819295 0.151224336435 1.89423605139 0.00439382252019 -0.00287082260542 0.00439382252019 1.897106874 0.0406163439127 0.04070451125 + "BPM.11R7.B2" 23622.41973 21 54.95909276 -3.89477706e-07 0.190279085885 0.000461609909092 8.09812984398e-05 0.000461609909092 0.190198104587 1.11258423557 0.00269908752951 0.0105148335718 0.00269908752951 1.102069402 -0.014327148498 -0.01430385581 + "BPM.12R7.B2" 23677.14324 21 55.09573137 -2.026519691e-07 0.167701898395 0.000110948297137 0.00569987469618 0.000110948297137 0.162002023699 2.17319725031 0.00143774481132 0.0324831043135 0.00143774481132 2.140714146 0.0294758827779 0.02878737411 + "BPM.13R7.B2" 23730.59176 21 55.20956366 2.178764873e-07 0.18371398238 0.000279671034926 -0.00380401710779 0.000279671034926 0.187517999488 1.05219833956 0.00160178008642 -0.0235904834368 0.00160178008642 1.075788823 -0.0123267271137 -0.0145538241 + "BPM.14R7.B2" 23784.04027 21 55.34721288 9.938419715e-07 0.15796790074 0.00034457710199 -0.00488097656158 0.00034457710199 0.162848877301 2.09748051115 0.00457525707835 -0.0403650808508 0.00457525707835 2.137845592 0.029364497131 0.02980063949 + "BPM.15R7.B2" 23837.48879 21 55.45818868 3.976357595e-07 0.192131993191 0.000347184095533 0.00328750575763 0.000347184095533 0.188844487433 1.11061937404 0.00200689836425 -0.00298737796371 0.00200689836425 1.113606752 -0.0137890787209 -0.01379599362 + "BPM.16R7.B2" 23890.93731 21 55.59101965 2.303112388e-07 0.174185402058 0.000176211416744 0.00326520029568 0.000176211416744 0.170920201762 2.24859876777 0.00227475304978 0.00763936577421 0.00227475304978 2.240959402 0.0311539175569 0.03107013347 + "BPM.17R7.B2" 23944.38582 21 55.70597348 -2.090696453e-07 0.189402995543 0.000432364071026 -0.00959797177881 0.000432364071026 0.199000967322 1.09416921363 0.00249774009243 -0.047124630374 0.00249774009243 1.141293844 -0.0151306151836 -0.01535468166 + "BPM.18R7.B2" 23997.83434 21 55.84372711 -9.887928783e-07 0.157994119826 0.000873403629251 -0.011057179623 0.000873403629251 0.169051299449 2.09800942435 0.0115979572369 -0.119900389648 0.0115979572369 2.217909814 0.0285921062645 0.03015390433 + "BPM.19R7.B2" 24051.28285 21 55.95479356 -4.022217984e-07 0.190480996418 0.000761558063781 0.00330933584522 0.000761558063781 0.187171660573 1.09787348819 0.00438938489229 -0.00579545480512 0.00438938489229 1.103668943 -0.0155750942606 -0.01559164193 + "BPM.20R7.B2" 24104.73137 21 56.08752837 -2.52002231e-07 0.168068089023 0.000247375239317 0.00690743331113 0.000247375239317 0.161160655712 2.17864406328 0.00320669200009 0.0643455852841 0.00320669200009 2.114298478 0.0298722499781 0.02886438882 + "BPM.21R7.B2" 24158.17989 21 56.20238422 2.002459706e-07 0.185183050192 0.000592720964008 -0.0022701342428 0.000592720964008 0.187453184435 1.07090372913 0.00342767380725 -0.00425367486944 0.00342767380725 1.075157404 -0.0140270855052 -0.01403829825 + "BPM.22R7.B2" 24211.6284 21 56.34023674 9.83263845e-07 0.159311446483 0.000485774224661 -0.00352564444288 0.000485774224661 0.162837090925 2.13194040944 0.00650073627654 -0.00313025656451 0.00650073627654 2.135070666 0.0297056079035 0.02975223235 + "BPM.23R7.B2" 24265.07692 21 56.45513956 3.907922379e-07 0.196163276001 0.000440355393258 0.00824255307513 0.000440355393258 0.187920722926 1.11827187507 0.00251034271734 0.0404380880733 0.00251034271734 1.077833787 -0.014507717941 -0.01441676863 + "BPM.24R7.B2" 24318.52543 21 56.59198557 2.256158676e-07 0.17253543322 0.000270952928448 0.0102769906859 0.000270952928448 0.162258442534 2.23822476238 0.00351495077024 0.0986650303771 0.00351495077024 2.139559732 0.0311542933085 0.02979451025 + "BPM.25R7.B2" 24371.97395 21 56.70608201 -2.093779928e-07 0.184788976269 0.000435266443593 -0.00319396684092 0.000435266443593 0.18798294311 1.06892299235 0.00251782502804 -0.00940076164634 0.00251782502804 1.078323754 -0.0144817037429 -0.01449796304 + "BPM.26R7.B2" 24425.42246 21 56.84395495 -9.885068758e-07 0.155742379329 0.000274398673558 -0.00716973890011 0.000274398673558 0.162912118229 2.08294699169 0.0036698931535 -0.053141290315 0.0036698931535 2.136088282 0.028343435975 0.0297207399 + "BPM.27R7.B2" 24478.87098 21 56.95883662 -3.859292463e-07 0.189820683465 0.00062302008246 0.00226109716537 0.00062302008246 0.187559586299 1.08387676637 0.0035574468495 0.00796868337207 0.0035574468495 1.075908083 -0.0144982076465 -0.01447307135 + "BPM.28R7.B2" 24532.3195 21 57.0956611 -2.026585174e-07 0.169396047655 9.47090062014e-05 0.00773155005858 9.47090062014e-05 0.161664497597 2.20771006707 0.00123432647531 0.0760226500727 0.00123432647531 2.131687417 0.0306632552274 0.02968024287 + "BPM.29R7.B2" 24585.76801 21 57.20977884 2.183405455e-07 0.18542712888 0.000315323142587 -0.00208437880612 0.000315323142587 0.187511507686 1.0673362869 0.00181503016422 -0.00813852710115 0.00181503016422 1.075474814 -0.0143788890881 -0.01439259651 + "BPM.30R7.B2" 24639.21653 21 57.34767273 9.932121646e-07 0.159032651766 0.000685672898891 -0.00381229443469 0.000685672898891 0.162844946201 2.12207082914 0.00914935669443 -0.0131852628609 0.00914935669443 2.135256092 0.0296103368404 0.02975485262 + "BPM.31R7.B2" 24692.66504 21 57.46253273 3.808573863e-07 0.193307258453 0.000368715972686 0.00542510335239 0.000368715972686 0.1878821551 1.10975329216 0.00211675323439 0.0318527491582 0.00211675323439 1.077900543 -0.0144758904875 -0.01441925096 + "BPM.32R7.B2" 24746.11356 21 57.59933753 1.795846858e-07 0.171763119876 0.000360075718169 0.00949609337201 0.000360075718169 0.162267026504 2.24205454369 0.0047001323717 0.102476058694 0.0047001323717 2.139578485 0.0310726920941 0.02979369693 + "BPM.33R7.B2" 24799.56208 21 57.71347714 -2.271890082e-07 0.187115579833 0.000868631806431 -0.000909354780611 0.000868631806431 0.188024934614 1.07015931086 0.00496791563903 -0.00811738714204 0.00496791563903 1.078276698 -0.0144831090185 -0.0144992159 + "BPM.34R7.B2" 24853.01059 21 57.85139058 -9.973860633e-07 0.156171161727 0.000370725929593 -0.00671854954642 0.000370725929593 0.162889711273 2.08386001502 0.00494675798445 -0.0520429169756 0.00494675798445 2.135902932 -0.127181453984 0.02971807944 + "BPM.33L8.B2" 24906.45911 21 57.96622815 -3.755800161e-07 0.187753882634 0.00134848505978 0.000255797045713 0.00134848505978 0.187498085588 1.08267982699 0.00777601800156 0.0068406479944 0.00777601800156 1.075839179 -0.0144917249207 -0.01447063078 + "BPM.32L8.B2" 24959.90762 21 58.10301429 -1.564187666e-07 0.168711648883 0.000197257216986 0.00704003688709 0.000197257216986 0.161671611996 2.18723406193 0.00255730832346 0.0555729049304 0.00255730832346 2.131661157 0.0309060207064 0.02968095274 + "BPM.31L8.B2" 25013.35614 21 58.21717651 2.359117212e-07 0.185529664679 0.000331199199814 -0.00203908032573 0.000331199199814 0.187568745004 1.06087370912 0.00189382395625 -0.0146452478801 0.00189382395625 1.075518957 -0.0143413610897 -0.01439124773 + "BPM.30L8.B2" 25066.80466 21 58.35510809 1.00101667e-06 0.1593688073 0.000329567604714 -0.00347989693051 0.000329567604714 0.16284870423 2.12989506533 0.0044045282566 -0.00554476767415 0.0044045282566 2.135439833 0.0265905660801 0.02975753352 + "BPM.29L8.B2" 25120.25317 21 58.46992275 3.700992435e-07 0.193406930795 0.000359189510955 0.00556257589364 0.000359189510955 0.187844354901 1.11613125319 0.0020728452561 0.038166681187 0.0020728452561 1.077964572 -0.0145433331268 -0.01442176202 + "BPM.28L8.B2" 25173.70169 21 58.60669204 1.331616151e-07 0.171485444413 0.000299071327811 0.00920653211965 0.000299071327811 0.162278912294 2.22700717165 0.0038839097636 0.0874181176516 0.0038839097636 2.139589054 0.0320104686932 0.02979277756 + "BPM.27L8.B2" 25227.1502 21 58.72087721 -2.445111256e-07 0.186529541806 0.000305416016243 -0.00153569770582 0.000305416016243 0.188065239512 1.07188203868 0.00175505680744 -0.00634561531946 0.00175505680744 1.078227654 -0.0144750391059 -0.01450034045 + "BPM.26L8.B2" 25280.59872 21 58.85882529 -1.004112812e-06 0.157053114082 0.000287797924731 -0.00581044782734 0.000287797924731 0.162863561909 2.09514992692 0.00383933680331 -0.0405701730757 0.00383933680331 2.1357201 0.026697256569 0.02971550093 + "BPM.25L8.B2" 25334.04723 21 58.97361582 -3.644202409e-07 0.191166214989 0.000572409190635 0.00372739360933 0.000572409190635 0.18743882138 1.09930018811 0.00329163566364 0.0235201021105 0.00329163566364 1.075780086 -0.0145210664115 -0.01446804577 + "BPM.24L8.B2" 25387.49575 21 59.11036848 -1.098414042e-07 0.168752184836 0.000241115438241 0.00706723317705 0.000241115438241 0.161684951659 2.18712899336 0.00312499992956 0.0554621203632 0.00312499992956 2.131666873 0.0305617585563 0.02968209212 + "BPM.23L8.B2" 25440.94427 21 59.22457795 2.529740549e-07 0.183970862699 0.000434843795441 -0.0036563143109 0.000434843795441 0.18762717701 1.05283173319 0.00248853182567 -0.0227421018062 0.00248853182567 1.075573835 -0.0143417395861 -0.01439034081 + "BPM.22L8.B2" 25494.39278 21 59.36254212 1.006661695e-06 0.156347874506 0.000494667268839 -0.00650078266331 0.000494667268839 0.162848657169 2.08581179747 0.00659927631527 -0.0498123015295 0.00659927631527 2.135624099 0.0286983656846 0.02976003688 + "BPM.21L8.B2" 25547.8413 21 59.47730846 3.585432151e-07 0.190629888935 0.000492459620433 0.00282399260163 0.000492459620433 0.187805896333 1.08991678733 0.002815613073 0.0118940213252 0.002815613073 1.078022766 -0.0144467091289 -0.01442438634 + "BPM.20L8.B2" 25601.28981 21 59.61499334 8.000002202e-08 0.165922510943 9.76766662552e-05 0.00426806373926 9.76766662552e-05 0.161654447204 2.13600012064 0.00125743860624 0.0161925356394 0.00125743860624 2.119807585 0.0296339706295 0.02941549718 + "BPM.19L8.B2" 25654.73833 21 59.72624326 -2.638701538e-07 0.179737202329 0.000333600156323 -0.00708755002073 0.000333600156323 0.186824752349 1.04435561798 0.00193836998074 -0.0563048390177 0.00193836998074 1.100660457 -0.0134923561239 -0.01367421149 + "BPM.18L8.B2" 25708.18685 21 59.859055 -1.005154017e-06 0.156022159083 0.000471161165816 -0.0128898667213 0.000471161165816 0.168912025804 2.09064311588 0.00631339710701 -0.126313895116 0.00631339710701 2.216957011 0.0295307321468 0.03084522496 + "BPM.17L8.B2" 25761.63536 21 59.97372576 -3.643310739e-07 0.195895559406 0.000805792689843 -0.00240134268584 0.000805792689843 0.198296902092 1.12284878758 0.00461870267799 -0.0155132524169 0.00461870267799 1.13836204 -0.0148974272096 -0.01492640542 + "BPM.16L8.B2" 25815.08388 21 60.11149898 -1.020492278e-07 0.175165053848 0.000308506963029 0.00459478566091 0.000308506963029 0.170570268187 2.25493708271 0.00397147590758 0.0195074087081 0.00397147590758 2.235429674 0.0307769154731 0.03053418793 + "BPM.15L8.B2" 25868.53239 21 60.22284131 2.558775088e-07 0.188015888678 0.000451479791554 -0.00152745492769 0.000451479791554 0.189543343605 1.09246418405 0.00262331819701 -0.0240873949512 0.00262331819701 1.116551579 -0.0156424427408 -0.01570418594 + "BPM.14L8.B2" 25921.98091 21 60.35557165 1.002913262e-06 0.158241620458 0.000191548013139 -0.00461249783188 0.000191548013139 0.16285411829 2.11418548196 0.00255917518604 -0.0244936480436 0.00255917518604 2.13867913 0.0286748564654 0.0290975164 + "BPM.13L8.B2" 25975.42943 21 60.47014441 3.699422527e-07 0.191837784977 0.000797558492591 0.00401509168269 0.000797558492591 0.187822693294 1.11611876877 0.00464022248214 0.0377507357727 0.00464022248214 1.078368033 -0.0146854434721 -0.01446899117 + "BPM.12L8.B2" 26028.87794 21 60.61022233 1.087072245e-07 0.164740839436 0.000181365476769 0.00455248332456 0.000181365476769 0.160188356112 2.09204651507 0.00230316304644 0.0194439560737 0.00230316304644 2.072602559 0.029008235069 0.02851198687 + "BPM.11L8.B2" 26082.32646 21 60.72394251 -2.572581848e-07 0.176633664988 0.000199316843621 -0.00531179329741 0.000199316843621 0.181945458285 1.0462257382 0.00118058135672 -0.0205503537996 0.00118058135672 1.066776092 -0.0132505511591 -0.01335719154 + "BPM.10L8.B2" 26134.16517 21 60.84704661 -1.032826053e-06 0.146922026297 0.000423430818021 -0.00576714315396 0.000423430818021 0.152689169451 2.06083269436 0.00593934140151 -0.0226825566394 0.00593934140151 2.083515251 0.0279096639347 0.02830469767 + "BPM.9L8.B2" 26173.23018 21 60.94921014 -2.991824846e-07 0.157137957075 0.000351216562547 0.00167760101027 0.000351216562547 0.155460356065 0.677615610301 0.00151452793334 0.00773749180078 0.00151452793334 0.6698781185 -0.0361919109893 -0.03619959675 + "BPM.8L8.B2" 26213.69319 21 61.17891226 2.626168181e-07 0.0113476080236 0.00014094751172 -0.00286135142899 0.00014094751172 0.0142089594526 0.121684223337 0.00151142764707 -0.0310496308635 0.00151142764707 0.1527338542 -0.00520609062066 -0.004677869305 + "BPM.7L8.B2" 26252.7592 21 61.25012337 4.071872934e-07 -0.00700877688509 0.000208437354772 -0.0027093385858 0.000208437354772 -0.00429943829928 -0.0529833731211 0.00157569777457 -0.0203627636711 0.00157569777457 -0.03262060945 0.000954406938449 0.0008812023656 + "BPM.6L8.B2" 26285.2282 21 61.3075967 7.948929689e-07 -0.00449558292628 0.00040990951495 -0.00188308230962 0.00040990951495 -0.00261250061666 -0.0506065588604 0.0046143315196 -0.0208411422704 0.0046143315196 -0.02976541659 0.00129860040943 0.001239219579 + "BPMWI.A5L8.B2" 26347.1487 21 61.70175917 -3.348966372e-07 0.00800406447901 0.000305717292835 0.00270754903855 0.000305717292835 0.00529651544046 0.0768394629293 0.00293490296727 0.0256369693093 0.00293490296727 0.05120249362 0.00217322763927 0.001981557858 + "BPMYB.4L8.B2" 26366.4142 21 61.71948099 -7.547299787e-07 0.00734811313994 0.000133060334427 0.00236449636185 0.000133060334427 0.00498361677809 0.130109637597 0.00235603774209 0.0407310212266 0.00235603774209 0.08937861637 0.00218476546123 0.001981557858 + "BPMWB.4L8.B2" 26395.6867 21 61.73107732 -9.67349003e-07 0.00639605383609 0.000158762901405 0.00250958318033 0.000158762901405 0.00388647065575 0.133551556841 0.00331501785233 0.0530191336706 0.00331501785233 0.08053242317 -0.00152837723336 -0.0015419237 + "BPMSX.4L8.B2" 26441.0987 21 61.74672154 -1.171710548e-06 0.00295329326729 0.000233639020485 0.00248262574204 0.000233639020485 0.000470667525252 0.0666615252476 0.00527368332681 0.0561507367576 0.00527368332681 0.01051078849 -0.00153460089334 -0.0015419237 + "BPMS.2L8.B2" 26478.9502 21 61.75578483 -1.553259833e-06 0.00235303946318 0.000202165465292 0.0023267733659 0.000202165465292 2.62660972804e-05 0.0661925722115 0.00568704960939 0.0654581706242 0.00568704960939 0.0007344015873 -0.000480232431191 -5.608851951e-05 + "BPMSW.1L8.B2" 26488.8842 21 61.75993154 -8.714996375e-07 0.0024967610007 0.000283160576429 0.00247699642708 0.000283160576429 1.9764573625e-05 0.0379715604317 0.00430639894517 0.0376689824203 0.00430639894517 0.0003025780114 -2.99760233722e-05 -3.014873586e-05 + "BPMSW.1R8.B2" 26532.0742 21 62.2304547 7.104954522e-07 -0.00250204212821 0.000262057744655 -0.00243669425985 0.000262057744655 -6.53478683637e-05 -0.0422710612225 0.00442736708677 -0.0412699333335 0.00442736708677 -0.001001127889 -0.000127246815846 -3.014873586e-05 + "BPMS.2R8.B2" 26542.0082 21 62.23579792 8.274421208e-07 -0.0029925339246 0.000172282734135 -0.00293534171751 0.000172282734135 -5.71922070955e-05 -0.0447620132899 0.00257698733891 -0.0437846330553 0.00257698733891 -0.0009773802346 0.00020358420574 2.997067919e-05 + "BPMSX.4R8.B2" 26579.9797 21 62.24616361 1.521988137e-06 -0.00295796292306 0.000142565649514 -0.00258052401097 0.000142565649514 -0.00037743891209 -0.0834887807542 0.00402392882026 -0.0724924165942 0.00402392882026 -0.01099636416 -0.00144801346441 -0.001515029012 + "BPMWI.4R8.B2" 26625.1677 21 62.25891955 1.097132528e-06 -0.00650685437162 0.000278024863779 -0.002405387087 0.000278024863779 -0.00410146728462 -0.122957041231 0.00525370827232 -0.0434999709214 0.00525370827232 -0.07945707031 -0.00144320905374 -0.001515029012 + "BPMYB.4R8.B2" 26654.5442 21 62.27683026 9.049940791e-07 -0.00912812748018 0.000235524917617 -0.00182946074741 0.000235524917617 -0.00729866673277 -0.132237155167 0.00341199716418 -0.0259860159667 0.00341199716418 -0.1062511392 -0.00224594710723 -0.002043713335 diff --git a/tests/unit/test_plot_optics_measurements.py b/tests/unit/test_plot_optics_measurements.py index d138467d6..24214ffd9 100644 --- a/tests/unit/test_plot_optics_measurements.py +++ b/tests/unit/test_plot_optics_measurements.py @@ -28,6 +28,14 @@ def test_rdt_0040(tmp_path): _default_test_rdt("f0040_y", output_dir=tmp_path) +@pytest.mark.basic +def test_normalized_dispersion(tmp_path): + figs = _default_test("normalised_dispersion", output_dir=tmp_path) + assert len(figs) == 1 + for fig in figs.values(): + assert len(fig.axes) == 2 + + @pytest.mark.extended def test_orbit(tmp_path): figs = _default_test("orbit", output_dir=tmp_path) @@ -111,6 +119,29 @@ def test_two_directories_combined(tmp_path): assert len(figs) == 2 +@pytest.mark.extended +def test_two_directories_combined_labels(tmp_path): + labels = ["label1", "label2"] + figs = plot( + show=False, + x_axis="phase-advance", + ncol_legend=2, + folders=[str(INPUT), str(INPUT.parent / "example_copy")], + labels=labels, + output=str(tmp_path), + optics_parameters=["orbit", "beta_phase"], + combine_by=["files"], + ) + assert len(list(tmp_path.glob("*.pdf"))) == 2 + assert len(figs) == 2 + for fig in figs.values(): + assert len(fig.axes) == 2 + for ax in fig.axes: + axlabels = ax.get_legend_handles_labels()[1] + for label, axlabel in zip(labels, axlabels): + assert label in axlabel + + @pytest.mark.extended def test_beta_phase(tmp_path): _default_test("beta_phase", output_dir=tmp_path)