[1]:
import time
from pathlib import Path

import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
from scipy import stats

from sklearn.model_selection import KFold
from sklearn.pipeline import make_pipeline
from sklearn.impute import SimpleImputer
from sklearn.preprocessing import StandardScaler
from sklearn.ensemble import RandomForestRegressor

import torch
print(f"PyTorch version: {torch.__version__}")
print(f"CUDA available:  {torch.cuda.is_available()}")

import fdfi
print(fdfi.__version__)

from fdfi.explainers import FlowExplainer, Crossfitting
PyTorch version: 2.2.2
CUDA available:  False
0.0.5

Load Data and Feature Groups

[2]:
DATA_DIR = Path("data")

DATASETS = {
    "sens50": {
        "file": DATA_DIR / "sens50_processed_dataset.csv",
        "target": "sens50",
    },
    "sens80": {
        "file": DATA_DIR / "sens80_processed_dataset.csv",
        "target": "sens80",
    },
    "ic50": {
        "file": DATA_DIR / "ic50.censored_processed_dataset.csv",
        "target": "ic50.censored",
    },
}

outcome = "sens50"

cfg = DATASETS[outcome]
filename = str(cfg["file"])

data = pd.read_csv(cfg["file"])
y = data[cfg["target"]].astype(int)
X = data.drop(columns=[cfg["target"]])

df_groups = pd.read_csv(DATA_DIR / "feature_group.csv", index_col=0).set_index("feature")
df_groups = pd.get_dummies(df_groups["group"]).groupby(df_groups.index).max().reindex(X.columns)

print(f"Dataset shape: {X.shape}")
print(f"Target variable: {outcome}")
print(f"Number of groups: {len(df_groups.columns)}")
print(f"Data loaded from: {filename}")

Dataset shape: (611, 832)
Target variable: sens50
Number of groups: 14
Data loaded from: data/sens50_processed_dataset.csv
[3]:
print("Data preparation...")

preprocess = make_pipeline(
    SimpleImputer(strategy="most_frequent"),
    StandardScaler(),
)

X_values = preprocess.fit_transform(X)
y_values = y.values.astype(float)

# Standardize y to N(0,1) — matches the EOT notebook setup
y_scaler = StandardScaler()
y_values = y_scaler.fit_transform(y_values.reshape(-1, 1)).ravel()

print("Data preparation finished")
print(f"Feature matrix shape: {X_values.shape}")
print(f"y statistics: mean={y_values.mean():.3f}, std={y_values.std():.3f}")
print(f"Missing values - X: {np.isnan(X_values).sum()}, y: {np.isnan(y_values).sum()}")

Data preparation...
Data preparation finished
Feature matrix shape: (611, 832)
y statistics: mean=-0.000, std=1.000
Missing values - X: 0, y: 0
Data preparation finished
Feature matrix shape: (611, 832)
y statistics: mean=-0.000, std=1.000
Missing values - X: 0, y: 0
[4]:
# Fit RandomForestRegressor on FULL data (matching DFI paper: refit_mu=False).
rf = RandomForestRegressor(
    n_estimators=500,
    max_depth=None,
    min_samples_leaf=5,
    random_state=0,
    n_jobs=-1,
)
rf.fit(X_values, y_values)

# Wrap as a callable so Crossfitting does NOT try to clone-and-refit it per fold.
model_fn = lambda X_: rf.predict(X_)
print(f"RandomForestRegressor fitted on full data")
print(f"Train R²: {rf.score(X_values, y_values):.3f}")

RandomForestRegressor fitted on full data
Train R²: 0.705

Fit Flow Model on All Data

The flow is trained once on the full dataset before cross-fitting, analogous to how EOTExplainer computes its whitening map on all n observations. Cross-fitting is used only for UEIF variance estimation — not for flow training.

Why this matters for binary high-d data (d=832, n≈600):

  • Training on all n samples gives the flow maximum statistical power to learn the correlation structure (d²/2 ≈ 345K pairwise correlations, n=600 samples).

  • Training per fold (n/2 ≈ 300) halves the effective sample size and produces a weaker disentanglement map, increasing H_avg toward identity.

  • Architecture: hidden_dim=256, num_blocks=3 gives ~1.3M parameters — sufficient to represent the pairwise correlation structure (compare default 119K parameters with hidden_dim=64, num_blocks=1).

Z-space DFI is the primary output for this dataset. X-space attribution via the flow Jacobian H = dX/dZ can be unreliable for binary data because H_avg ≈ I even for a well-trained flow (samples in opposite binary modes produce Jacobians with opposing off-diagonal signs that cancel in the average).

[5]:
# Train the flow ONCE on all data — analogous to EOT fitting whitening on all n.
# Cross-fitting will share this pre-trained flow across folds (fit_flow=False per fold).
print("Training flow model on full dataset...")
flow_start = time.time()

fdfi_estimator = FlowExplainer(
    model_fn,
    X_values,
    hidden_dim=256,    # larger than default (64); needed for d=832
    num_blocks=3,      # larger than default (1)
    num_steps=2000,
    fit_flow=True,
    random_state=0,
    verbose="final",
    compute_diagnostics=False,  # skip diagnostics here; run separately below
)

flow_results = fdfi_estimator(X_values, y=y_values)

flow_train_time = time.time() - flow_start
print(f"Flow training completed in {flow_train_time:.1f}s")
print(f"Z_full shape: {fdfi_estimator.Z_full.shape}")

Training flow model on full dataset...
[FDFI][INFO] Training flow model...
Training complete: 2000 steps, final loss=1.4006
Flow training completed in 6023.9s
Z_full shape: (611, 832)

Individual Feature Inference With conf_int()

[6]:
# Z-space is the primary target for FlowExplainer on binary high-d data.
# var_floor_c=1e-3: FlowExplainer CPI UEIFs are nearly constant across samples
# (nsamples=100 stabilises y_tilde_mean), so raw SEs are structurally small
# (group-level range 1e-4 to 3e-3). The floor 1e-3/sqrt(n) ≈ 4e-5 is ~3x
# below the smallest observed group SE, adding <5% to any z-score, while
# guarding against numerical zeros at the individual-feature level.
feature_names = X.columns.tolist()

ci_Z = fdfi_estimator.conf_int(
    alpha=0.05,
    target="Z",
    var_floor_c=1e-3,
    var_floor_method="fixed",
    margin=0.0,
    margin_method="auto",
    margin_quantile=0.95,
    alternative="two-sided",
    verbose=False,
)

ci_X = fdfi_estimator.conf_int(
    alpha=0.05,
    target="X",
    var_floor_c=1e-3,
    var_floor_method="fixed",
    margin=0.0,
    margin_method="auto",
    margin_quantile=0.95,
    alternative="two-sided",
    verbose=False,
)

results = pd.DataFrame({
    "feature":          feature_names,
    "dfiz":             ci_Z["score"],
    "dfiz_se":          ci_Z["se"],
    "dfiz_zscore":      ci_Z["zscore"],
    "dfiz_p_value":     ci_Z["pvalue"],
    "dfiz_ci_lower":    ci_Z["ci_lower"],
    "dfiz_ci_upper":    ci_Z["ci_upper"],
    "dfiz_reject_null": ci_Z["reject_null"],
    "dfiz_ranking":     ci_Z["ranking"],
    "dfi":              ci_X["score"],
    "dfi_se":           ci_X["se"],
    "dfi_zscore":       ci_X["zscore"],
    "dfi_p_value":      ci_X["pvalue"],
    "dfi_ci_lower":     ci_X["ci_lower"],
    "dfi_ci_upper":     ci_X["ci_upper"],
    "dfi_reject_null":  ci_X["reject_null"],
    "dfi_ranking":      ci_X["ranking"],
})

OUT_DIR = Path("results") / "flowmatching_case_study"
OUT_DIR.mkdir(parents=True, exist_ok=True)
results.to_csv(OUT_DIR / f"{outcome}_flow_dfi_results.csv", index=False)
print(f"Results saved to {OUT_DIR / f'{outcome}_flow_dfi_results.csv'}")

Results saved to results/flowmatching_case_study/sens50_flow_dfi_results.csv

Feature-Level Summary

[7]:

print("=== Z-space feature summary (primary for FlowExplainer on binary data) ===") _ = fdfi_estimator.summary( alpha=0.05, target="Z", var_floor_c=1e-3, var_floor_method="fixed", margin=0.0, margin_method="auto", margin_quantile=0.95, alternative="two-sided", ) print("\n=== X-space feature summary (secondary — Jacobian-based, may be noisy) ===") _ = fdfi_estimator.summary( alpha=0.05, target="X", var_floor_c=1e-3, var_floor_method="fixed", margin=0.0, margin_method="auto", margin_quantile=0.95, alternative="two-sided", )
=== Z-space feature summary (primary for FlowExplainer on binary data) ===
==============================================================================
Feature Importance Results
==============================================================================
Method: FlowExplainer
Number of units: 832
Significance level: 0.05
Alternative: two-sided
Margin method: mixture
Practical margin: 0.0019
------------------------------------------------------------------------------
        Feature   Estimate    Std Err   CI Lower   CI Upper    P-value   Sig
------------------------------------------------------------------------------
              0     0.0002     0.0002    -0.0001     0.0006     0.0000   ***
              1     0.0011     0.0010    -0.0009     0.0031     0.4037
              2     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
              3     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
              4     0.0020     0.0020    -0.0019     0.0059     0.9724
              5     0.0012     0.0012    -0.0012     0.0037     0.5796
              6     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
              7     0.0005     0.0005    -0.0004     0.0014     0.0014   ***
              8     0.0009     0.0009    -0.0009     0.0027     0.2763
              9     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             10     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             11     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             12     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
             13     0.0003     0.0003    -0.0002     0.0008     0.0000   ***
             14     0.0002     0.0001    -0.0001     0.0005     0.0000   ***
             15     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
             16     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             17     0.0010     0.0010    -0.0010     0.0030     0.3866
             18     0.0002     0.0002    -0.0002     0.0006     0.0000   ***
             19     0.0004     0.0001     0.0003     0.0006     0.0000   ***
             20     0.0003     0.0002    -0.0002     0.0007     0.0000   ***
             21     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             22     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
             23     0.0018     0.0018    -0.0018     0.0055     0.9694
             24     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             25     0.0002     0.0002    -0.0002     0.0007     0.0000   ***
             26     0.0005     0.0005    -0.0005     0.0014     0.0020   ***
             27     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             28     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
             29     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             30     0.0000     0.0001    -0.0001     0.0001     0.0000   ***
             31     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             32     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             33     0.0003     0.0002    -0.0002     0.0007     0.0000   ***
             34     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             35     0.0030     0.0030    -0.0028     0.0088     0.7235
             36     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             37     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
             38     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             39     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             40     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             41     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             42     0.0000     0.0001    -0.0001     0.0001     0.0000   ***
             43     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             44     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             45     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
             46     0.0008     0.0008    -0.0007     0.0023     0.1376
             47     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             48     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             49     0.0001     0.0001    -0.0000     0.0002     0.0000   ***
             50     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             51     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
             52     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             53     0.0000     0.0001    -0.0001     0.0002     0.0000   ***
             54     0.0017     0.0017    -0.0017     0.0051     0.9173
             55     0.0014     0.0014    -0.0014     0.0042     0.7314
             56     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             57     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
             58     0.0001     0.0001     0.0000     0.0003     0.0000   ***
             59     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             60     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             61     0.0001     0.0000    -0.0000     0.0002     0.0000   ***
             62     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             63     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
             64     0.0017     0.0017    -0.0016     0.0050     0.8949
             65     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             66     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
             67     0.0006     0.0006    -0.0006     0.0018     0.0251    **
             68     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             69     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             70     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             71     0.0017     0.0017    -0.0017     0.0051     0.9086
             72     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
             73     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             74     0.0000     0.0001    -0.0001     0.0002     0.0000   ***
             75     0.0004     0.0004    -0.0004     0.0012     0.0001   ***
             76     0.0017     0.0017    -0.0016     0.0050     0.8944
             77     0.0036     0.0016     0.0006     0.0067     0.2694
             78     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             79     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             80     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             81     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             82     0.0016     0.0016    -0.0015     0.0048     0.8454
             83     0.0003     0.0003    -0.0003     0.0010     0.0000   ***
             84     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
             85     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             86     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             87     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             88     0.0014     0.0007     0.0001     0.0027     0.4358
             89     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             90     0.0020     0.0020    -0.0019     0.0058     0.9741
             91     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             92     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             93     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             94     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             95     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             96     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             97     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             98     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             99     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            100     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            101     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            102     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            103     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            104     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            105     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            106     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            107     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            108     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            109     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            110     0.0002     0.0003    -0.0002     0.0007     0.0000   ***
            111     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            112     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            113     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            114     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            115     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            116     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            117     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            118     0.0001     0.0001    -0.0000     0.0002     0.0000   ***
            119     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            120     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            121     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            122     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            123     0.0001     0.0001    -0.0000     0.0002     0.0000   ***
            124     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            125     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            126     0.0000     0.0001    -0.0001     0.0002     0.0000   ***
            127     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            128     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            129     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            130     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            131     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            132     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            133     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            134     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            135     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            136     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            137     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            138     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            139     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            140     0.0006     0.0005    -0.0005     0.0016     0.0135    **
            141     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            142     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            143     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            144     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            145     0.0010     0.0010    -0.0009     0.0028     0.3106
            146     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            147     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            148     0.0011     0.0011    -0.0010     0.0032     0.4464
            149     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            150     0.0001     0.0001    -0.0000     0.0003     0.0000   ***
            151     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            152     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            153     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            154     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            155     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            156     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            157     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            158     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            159     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            160     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            161     0.0003     0.0001     0.0002     0.0005     0.0000   ***
            162     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            163     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            164     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            165     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            166     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            167     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            168     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            169     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            170     0.0007     0.0006    -0.0005     0.0019     0.0458    **
            171     0.0000     0.0001    -0.0001     0.0002     0.0000   ***
            172     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            173     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            174     0.0000     0.0001    -0.0001     0.0001     0.0000   ***
            175     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            176     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            177     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            178     0.0002     0.0002    -0.0002     0.0006     0.0000   ***
            179     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            180     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            181     0.0015     0.0015    -0.0014     0.0044     0.7778
            182     0.0011     0.0011    -0.0009     0.0032     0.4629
            183     0.0016     0.0016    -0.0015     0.0048     0.8677
            184     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            185     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            186     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            187     0.0014     0.0014    -0.0014     0.0042     0.7259
            188     0.0000     0.0001    -0.0001     0.0001     0.0000   ***
            189     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            190     0.0008     0.0008    -0.0007     0.0023     0.1345
            191     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            192     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            193     0.0001     0.0000    -0.0000     0.0001     0.0000   ***
            194     0.0011     0.0011    -0.0010     0.0032     0.4282
            195     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            196     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            197     0.0003     0.0003    -0.0002     0.0009     0.0000   ***
            198     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            199     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            200     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            201     0.0005     0.0005    -0.0005     0.0014     0.0020   ***
            202     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            203     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            204     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            205     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            206     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            207     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            208     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            209     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            210     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            211     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            212     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            213     0.0011     0.0011    -0.0010     0.0032     0.4525
            214     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            215     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            216     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            217     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            218     0.0002     0.0002    -0.0002     0.0007     0.0000   ***
            219     0.0010     0.0010    -0.0010     0.0030     0.3814
            220     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            221     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            222     0.0000     0.0001    -0.0001     0.0001     0.0000   ***
            223     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            224     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            225     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            226     0.0001     0.0001    -0.0000     0.0002     0.0000   ***
            227     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            228     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            229     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            230     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            231     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            232     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            233     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            234     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            235     0.0012     0.0011    -0.0011     0.0034     0.4982
            236     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            237     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            238     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            239     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            240     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            241     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            242     0.0000     0.0001    -0.0001     0.0002     0.0000   ***
            243     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            244     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            245     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            246     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            247     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            248     0.0001     0.0001    -0.0000     0.0002     0.0000   ***
            249     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            250     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            251     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            252     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            253     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            254     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            255     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            256     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            257     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            258     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            259     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            260     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            261     0.0001     0.0001     0.0000     0.0002     0.0000   ***
            262     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            263     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            264     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            265     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            266     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            267     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            268     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            269     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            270     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            271     0.0001     0.0000     0.0000     0.0002     0.0000   ***
            272     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            273     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            274     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            275     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            276     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            277     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            278     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            279     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            280     0.0016     0.0016    -0.0015     0.0047     0.8273
            281     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            282     0.0004     0.0004    -0.0003     0.0011     0.0000   ***
            283     0.0001     0.0000    -0.0000     0.0001     0.0000   ***
            284     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            285     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            286     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            287     0.0008     0.0003     0.0002     0.0013     0.0000   ***
            288     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            289     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            290     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            291     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            292     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            293     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            294     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            295     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            296     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            297     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            298     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            299     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            300     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            301     0.0002     0.0001    -0.0001     0.0004     0.0000   ***
            302     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            303     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            304     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            305     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            306     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            307     0.0002     0.0002    -0.0002     0.0005     0.0000   ***
            308     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            309     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            310     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            311     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            312     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            313     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            314     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            315     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            316     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            317     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            318     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            319     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            320     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            321     0.0000     0.0001    -0.0001     0.0002     0.0000   ***
            322     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            323     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            324     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            325     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            326     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            327     0.0020     0.0020    -0.0019     0.0059     0.9637
            328     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            329     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            330     0.0000     0.0001    -0.0001     0.0001     0.0000   ***
            331     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            332     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            333     0.0001     0.0000    -0.0000     0.0001     0.0000   ***
            334     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            335     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            336     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            337     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            338     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            339     0.0000     0.0001    -0.0001     0.0002     0.0000   ***
            340     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            341     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            342     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            343     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            344     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            345     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            346     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            347     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            348     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            349     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            350     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            351     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            352     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            353     0.0002     0.0001    -0.0000     0.0003     0.0000   ***
            354     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            355     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            356     0.0007     0.0007    -0.0007     0.0021     0.0937     *
            357     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            358     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            359     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            360     0.0003     0.0003    -0.0003     0.0010     0.0000   ***
            361     0.0007     0.0007    -0.0007     0.0022     0.1168
            362     0.0005     0.0003    -0.0002     0.0011     0.0000   ***
            363     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            364     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            365     0.0002     0.0002    -0.0002     0.0006     0.0000   ***
            366     0.0002     0.0001     0.0001     0.0003     0.0000   ***
            367     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            368     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            369     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            370     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            371     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            372     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            373     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            374     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            375     0.0001     0.0000    -0.0000     0.0002     0.0000   ***
            376     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            377     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            378     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            379     0.0003     0.0002    -0.0001     0.0007     0.0000   ***
            380     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            381     0.0000     0.0001    -0.0001     0.0001     0.0000   ***
            382     0.0017     0.0017    -0.0016     0.0049     0.8735
            383     0.0000     0.0001    -0.0001     0.0001     0.0000   ***
            384     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            385     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            386     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            387     0.0001     0.0001    -0.0000     0.0002     0.0000   ***
            388     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            389     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            390     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            391     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            392     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            393     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            394     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            395     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            396     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            397     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            398     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            399     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            400     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            401     0.0009     0.0009    -0.0008     0.0025     0.2172
            402     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            403     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            404     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            405     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            406     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            407     0.0020     0.0020    -0.0019     0.0058     0.9823
            408     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            409     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            410     0.0000     0.0001    -0.0001     0.0001     0.0000   ***
            411     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            412     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            413     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            414     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            415     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            416     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            417     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            418     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            419     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            420     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            421     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            422     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            423     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            424     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            425     0.0001     0.0001    -0.0000     0.0002     0.0000   ***
            426     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            427     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            428     0.0000     0.0001    -0.0001     0.0001     0.0000   ***
            429     0.0003     0.0003    -0.0003     0.0009     0.0000   ***
            430     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            431     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            432     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            433     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            434     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            435     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            436     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            437     0.0001     0.0001    -0.0000     0.0003     0.0000   ***
            438     0.0000     0.0001    -0.0001     0.0002     0.0000   ***
            439     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            440     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            441     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            442     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            443     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            444     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            445     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            446     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            447     0.0000     0.0001    -0.0001     0.0001     0.0000   ***
            448     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            449     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            450     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            451     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            452     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            453     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            454     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            455     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            456     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            457     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            458     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            459     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            460     0.0001     0.0001    -0.0000     0.0002     0.0000   ***
            461     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            462     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            463     0.0003     0.0002     0.0001     0.0006     0.0000   ***
            464     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            465     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            466     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            467     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            468     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            469     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            470     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            471     0.0000     0.0001    -0.0001     0.0002     0.0000   ***
            472     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            473     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            474     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            475     0.0007     0.0007    -0.0006     0.0019     0.0533     *
            476     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            477     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            478     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            479     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            480     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            481     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            482     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            483     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            484     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            485     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            486     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            487     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            488     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            489     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            490     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            491     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            492     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            493     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            494     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            495     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            496     0.0000     0.0001    -0.0001     0.0001     0.0000   ***
            497     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            498     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            499     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            500     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            501     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            502     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            503     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            504     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            505     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            506     0.0002     0.0002    -0.0001     0.0005     0.0000   ***
            507     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            508     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            509     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            510     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            511     0.0004     0.0004    -0.0003     0.0011     0.0000   ***
            512     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            513     0.0001     0.0001    -0.0000     0.0002     0.0000   ***
            514     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            515     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            516     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            517     0.0001     0.0000    -0.0000     0.0002     0.0000   ***
            518     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            519     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            520     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            521     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            522     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            523     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            524     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            525     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            526     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            527     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            528     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            529     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            530     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            531     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            532     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            533     0.0002     0.0002    -0.0002     0.0005     0.0000   ***
            534     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            535     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            536     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            537     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            538     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            539     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            540     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            541     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            542     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            543     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            544     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            545     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            546     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            547     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            548     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            549     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            550     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            551     0.0001     0.0001     0.0000     0.0003     0.0000   ***
            552     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            553     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            554     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            555     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            556     0.0000     0.0001    -0.0001     0.0002     0.0000   ***
            557     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            558     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            559     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            560     0.0002     0.0002    -0.0002     0.0006     0.0000   ***
            561     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            562     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            563     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            564     0.0002     0.0002    -0.0002     0.0006     0.0000   ***
            565     0.0001     0.0000    -0.0000     0.0002     0.0000   ***
            566     0.0021     0.0020    -0.0018     0.0059     0.9418
            567     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            568     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            569     0.0006     0.0006    -0.0005     0.0017     0.0241    **
            570     0.0016     0.0016    -0.0016     0.0049     0.8703
            571     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            572     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            573     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            574     0.0002     0.0001    -0.0001     0.0005     0.0000   ***
            575     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            576     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            577     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            578     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            579     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            580     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            581     0.0002     0.0001     0.0001     0.0003     0.0000   ***
            582     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            583     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            584     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            585     0.0002     0.0001    -0.0001     0.0004     0.0000   ***
            586     0.0002     0.0002    -0.0002     0.0006     0.0000   ***
            587     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            588     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            589     0.0000     0.0001    -0.0001     0.0002     0.0000   ***
            590     0.0001     0.0000    -0.0000     0.0002     0.0000   ***
            591     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            592     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            593     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            594     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            595     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            596     0.0015     0.0015    -0.0015     0.0045     0.7922
            597     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            598     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            599     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            600     0.0000     0.0001    -0.0001     0.0001     0.0000   ***
            601     0.0002     0.0002    -0.0002     0.0007     0.0000   ***
            602     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            603     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            604     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            605     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            606     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            607     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            608     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            609     0.0000     0.0001    -0.0001     0.0001     0.0000   ***
            610     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            611     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            612     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            613     0.0002     0.0002    -0.0002     0.0007     0.0000   ***
            614     0.0002     0.0002    -0.0001     0.0006     0.0000   ***
            615     0.0002     0.0001    -0.0000     0.0004     0.0000   ***
            616     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            617     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            618     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            619     0.0000     0.0001    -0.0001     0.0001     0.0000   ***
            620     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            621     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            622     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            623     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            624     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            625     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            626     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            627     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            628     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            629     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            630     0.0001     0.0001     0.0000     0.0002     0.0000   ***
            631     0.0000     0.0001    -0.0001     0.0002     0.0000   ***
            632     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            633     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            634     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            635     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            636     0.0002     0.0001    -0.0001     0.0004     0.0000   ***
            637     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            638     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            639     0.0002     0.0001    -0.0001     0.0004     0.0000   ***
            640     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            641     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            642     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            643     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            644     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            645     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            646     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            647     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            648     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            649     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            650     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            651     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            652     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            653     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            654     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            655     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            656     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            657     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            658     0.0003     0.0001     0.0001     0.0004     0.0000   ***
            659     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            660     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            661     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            662     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            663     0.0003     0.0003    -0.0002     0.0008     0.0000   ***
            664     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            665     0.0001     0.0001    -0.0000     0.0002     0.0000   ***
            666     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            667     0.0007     0.0007    -0.0006     0.0021     0.0786     *
            668     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            669     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            670     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            671     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            672     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            673     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            674     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            675     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            676     0.0014     0.0014    -0.0013     0.0041     0.7044
            677     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            678     0.0002     0.0001    -0.0001     0.0004     0.0000   ***
            679     0.0001     0.0001     0.0000     0.0002     0.0000   ***
            680     0.0002     0.0002    -0.0002     0.0005     0.0000   ***
            681     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            682     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            683     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            684     0.0001     0.0000    -0.0000     0.0002     0.0000   ***
            685     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            686     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            687     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            688     0.0006     0.0006    -0.0006     0.0018     0.0347    **
            689     0.0012     0.0012    -0.0012     0.0036     0.5505
            690     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            691     0.0020     0.0020    -0.0019     0.0059     0.9725
            692     0.0020     0.0020    -0.0019     0.0059     0.9705
            693     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            694     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            695     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            696     0.0001     0.0000    -0.0000     0.0002     0.0000   ***
            697     0.0013     0.0013    -0.0013     0.0039     0.6555
            698     0.0000     0.0001    -0.0001     0.0001     0.0000   ***
            699     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            700     0.0002     0.0002    -0.0002     0.0005     0.0000   ***
            701     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            702     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            703     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            704     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            705     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            706     0.0003     0.0002    -0.0000     0.0006     0.0000   ***
            707     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            708     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            709     0.0002     0.0001    -0.0000     0.0005     0.0000   ***
            710     0.0000     0.0001    -0.0001     0.0001     0.0000   ***
            711     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            712     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            713     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            714     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            715     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            716     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            717     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            718     0.0000     0.0001    -0.0001     0.0001     0.0000   ***
            719     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            720     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            721     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            722     0.0006     0.0005    -0.0004     0.0016     0.0114    **
            723     0.0006     0.0006    -0.0006     0.0018     0.0378    **
            724     0.0002     0.0002    -0.0002     0.0005     0.0000   ***
            725     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            726     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            727     0.0012     0.0012    -0.0012     0.0036     0.5765
            728     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            729     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            730     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            731     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            732     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            733     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            734     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            735     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            736     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            737     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            738     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            739     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            740     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            741     0.0006     0.0006    -0.0006     0.0019     0.0387    **
            742     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            743     0.0000     0.0001    -0.0001     0.0002     0.0000   ***
            744     0.0010     0.0010    -0.0010     0.0030     0.3621
            745     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            746     0.0016     0.0016    -0.0015     0.0048     0.8463
            747     0.0002     0.0002    -0.0002     0.0006     0.0000   ***
            748     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            749     0.0001     0.0001     0.0000     0.0003     0.0000   ***
            750     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            751     0.0013     0.0013    -0.0013     0.0039     0.6373
            752     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            753     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            754     0.0000     0.0001    -0.0001     0.0002     0.0000   ***
            755     0.0002     0.0002    -0.0002     0.0007     0.0000   ***
            756     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            757     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            758     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            759     0.0020     0.0020    -0.0019     0.0060     0.9570
            760     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            761     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            762     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            763     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            764     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            765     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            766     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            767     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            768     0.0003     0.0003    -0.0003     0.0009     0.0000   ***
            769     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            770     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            771     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            772     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            773     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            774     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            775     0.0001     0.0001    -0.0000     0.0003     0.0000   ***
            776     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            777     0.0001     0.0001    -0.0000     0.0002     0.0000   ***
            778     0.0008     0.0008    -0.0008     0.0024     0.1767
            779     0.0001     0.0000    -0.0000     0.0001     0.0000   ***
            780     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            781     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            782     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            783     0.0014     0.0014    -0.0013     0.0040     0.6900
            784     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            785     0.0002     0.0002    -0.0002     0.0006     0.0000   ***
            786     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            787     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            788     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            789     0.0000     0.0001    -0.0001     0.0002     0.0000   ***
            790     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            791     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            792     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            793     0.0002     0.0001    -0.0001     0.0004     0.0000   ***
            794     0.0003     0.0003    -0.0002     0.0008     0.0000   ***
            795     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            796     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            797     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            798     0.0002     0.0002    -0.0002     0.0005     0.0000   ***
            799     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            800     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            801     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            802     0.0002     0.0001     0.0001     0.0003     0.0000   ***
            803     0.0001     0.0001    -0.0000     0.0002     0.0000   ***
            804     0.0016     0.0016    -0.0016     0.0049     0.8676
            805     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            806     0.0029     0.0003     0.0022     0.0036     0.0038   ***
            807     0.0005     0.0001     0.0003     0.0007     0.0000   ***
            808     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            809     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            810     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            811     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            812     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            813     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            814     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            815     0.0016     0.0002     0.0011     0.0021     0.1609
            816     0.0010     0.0003     0.0004     0.0016     0.0011   ***
            817     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            818     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            819     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            820     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            821     0.0004     0.0001     0.0003     0.0006     0.0000   ***
            822     0.0005     0.0005    -0.0005     0.0015     0.0072   ***
            823     0.0002     0.0002    -0.0001     0.0005     0.0000   ***
            824     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            825     0.0002     0.0001    -0.0001     0.0005     0.0000   ***
            826     0.0004     0.0001     0.0002     0.0006     0.0000   ***
            827     0.0003     0.0001     0.0001     0.0005     0.0000   ***
            828     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            829     0.0002     0.0002    -0.0001     0.0005     0.0000   ***
            830     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            831     0.0001     0.0000     0.0000     0.0002     0.0000   ***
==============================================================================
Significant units: 778 / 832
---
Signif. codes:  0 '***' 0.01 '**' 0.05 '*' 0.1 ' ' 1
==============================================================================

=== X-space feature summary (secondary — Jacobian-based, may be noisy) ===
==============================================================================
Feature Importance Results
==============================================================================
Method: FlowExplainer
Number of units: 832
Significance level: 0.05
Alternative: two-sided
Margin method: mixture
Practical margin: 0.0019
------------------------------------------------------------------------------
        Feature   Estimate    Std Err   CI Lower   CI Upper    P-value   Sig
------------------------------------------------------------------------------
              0     0.0002     0.0002    -0.0001     0.0006     0.0000   ***
              1     0.0011     0.0010    -0.0009     0.0031     0.4307
              2     0.0001     0.0001    -0.0000     0.0002     0.0000   ***
              3     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
              4     0.0016     0.0016    -0.0016     0.0049     0.8909
              5     0.0011     0.0011    -0.0010     0.0031     0.4424
              6     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
              7     0.0004     0.0004    -0.0004     0.0012     0.0002   ***
              8     0.0008     0.0008    -0.0008     0.0025     0.2213
              9     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             10     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
             11     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             12     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
             13     0.0002     0.0002    -0.0002     0.0006     0.0000   ***
             14     0.0002     0.0001    -0.0000     0.0004     0.0000   ***
             15     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
             16     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             17     0.0010     0.0010    -0.0009     0.0029     0.3814
             18     0.0002     0.0002    -0.0002     0.0006     0.0000   ***
             19     0.0004     0.0001     0.0003     0.0006     0.0000   ***
             20     0.0003     0.0002    -0.0001     0.0006     0.0000   ***
             21     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             22     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
             23     0.0013     0.0013    -0.0012     0.0038     0.6440
             24     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             25     0.0002     0.0002    -0.0002     0.0006     0.0000   ***
             26     0.0004     0.0004    -0.0004     0.0011     0.0001   ***
             27     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             28     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
             29     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             30     0.0000     0.0001    -0.0001     0.0002     0.0000   ***
             31     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             32     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             33     0.0003     0.0002    -0.0002     0.0007     0.0000   ***
             34     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             35     0.0022     0.0022    -0.0021     0.0066     0.8732
             36     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             37     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
             38     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             39     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             40     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             41     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             42     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             43     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             44     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             45     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
             46     0.0008     0.0008    -0.0007     0.0023     0.1582
             47     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             48     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             49     0.0001     0.0001     0.0000     0.0002     0.0000   ***
             50     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             51     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
             52     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             53     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
             54     0.0013     0.0013    -0.0012     0.0038     0.6488
             55     0.0012     0.0012    -0.0011     0.0035     0.5513
             56     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             57     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
             58     0.0002     0.0001     0.0000     0.0003     0.0000   ***
             59     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             60     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             61     0.0001     0.0000    -0.0000     0.0002     0.0000   ***
             62     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             63     0.0001     0.0001    -0.0000     0.0002     0.0000   ***
             64     0.0013     0.0013    -0.0013     0.0040     0.6914
             65     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             66     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
             67     0.0005     0.0005    -0.0005     0.0015     0.0089   ***
             68     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
             69     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             70     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             71     0.0013     0.0013    -0.0013     0.0039     0.6809
             72     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
             73     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             74     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
             75     0.0003     0.0003    -0.0003     0.0009     0.0000   ***
             76     0.0012     0.0012    -0.0011     0.0035     0.5721
             77     0.0032     0.0014     0.0005     0.0059     0.3291
             78     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             79     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             80     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             81     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             82     0.0010     0.0010    -0.0009     0.0029     0.3494
             83     0.0003     0.0003    -0.0003     0.0008     0.0000   ***
             84     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
             85     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             86     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             87     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             88     0.0013     0.0006     0.0001     0.0025     0.3433
             89     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             90     0.0016     0.0016    -0.0015     0.0047     0.8584
             91     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             92     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             93     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             94     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             95     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             96     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             97     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             98     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
             99     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            100     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            101     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            102     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            103     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            104     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            105     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            106     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            107     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            108     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            109     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            110     0.0002     0.0002    -0.0002     0.0007     0.0000   ***
            111     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            112     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            113     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            114     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            115     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            116     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            117     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            118     0.0001     0.0001     0.0000     0.0002     0.0000   ***
            119     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            120     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            121     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            122     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            123     0.0001     0.0001    -0.0000     0.0002     0.0000   ***
            124     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            125     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            126     0.0000     0.0001    -0.0001     0.0002     0.0000   ***
            127     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            128     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            129     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            130     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            131     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            132     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            133     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            134     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            135     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            136     0.0001     0.0001    -0.0000     0.0002     0.0000   ***
            137     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            138     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            139     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            140     0.0004     0.0004    -0.0004     0.0012     0.0005   ***
            141     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            142     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            143     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            144     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            145     0.0008     0.0008    -0.0007     0.0022     0.1424
            146     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            147     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            148     0.0007     0.0007    -0.0007     0.0020     0.0885     *
            149     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            150     0.0001     0.0001    -0.0000     0.0003     0.0000   ***
            151     0.0001     0.0000    -0.0000     0.0001     0.0000   ***
            152     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            153     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            154     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            155     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            156     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            157     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            158     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            159     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            160     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            161     0.0003     0.0001     0.0002     0.0005     0.0000   ***
            162     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            163     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            164     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            165     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            166     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            167     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            168     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            169     0.0001     0.0000    -0.0000     0.0001     0.0000   ***
            170     0.0006     0.0005    -0.0005     0.0017     0.0215    **
            171     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            172     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            173     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            174     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            175     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            176     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            177     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            178     0.0002     0.0002    -0.0002     0.0005     0.0000   ***
            179     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            180     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            181     0.0012     0.0012    -0.0011     0.0035     0.5738
            182     0.0010     0.0009    -0.0008     0.0027     0.3046
            183     0.0014     0.0014    -0.0013     0.0041     0.7384
            184     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            185     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            186     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            187     0.0011     0.0011    -0.0010     0.0032     0.4549
            188     0.0000     0.0001    -0.0001     0.0001     0.0000   ***
            189     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            190     0.0006     0.0006    -0.0006     0.0017     0.0268    **
            191     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            192     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            193     0.0001     0.0000    -0.0000     0.0001     0.0000   ***
            194     0.0009     0.0009    -0.0008     0.0026     0.2462
            195     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            196     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            197     0.0003     0.0003    -0.0002     0.0009     0.0000   ***
            198     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            199     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            200     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            201     0.0004     0.0004    -0.0004     0.0011     0.0001   ***
            202     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            203     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            204     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            205     0.0001     0.0000    -0.0000     0.0002     0.0000   ***
            206     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            207     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            208     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            209     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            210     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            211     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            212     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            213     0.0009     0.0009    -0.0009     0.0027     0.3103
            214     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            215     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            216     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            217     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            218     0.0002     0.0002    -0.0001     0.0005     0.0000   ***
            219     0.0008     0.0008    -0.0008     0.0024     0.1927
            220     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            221     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            222     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            223     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            224     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            225     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            226     0.0001     0.0001    -0.0000     0.0002     0.0000   ***
            227     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            228     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            229     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            230     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            231     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            232     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            233     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            234     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            235     0.0010     0.0009    -0.0009     0.0028     0.3414
            236     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            237     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            238     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            239     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            240     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            241     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            242     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            243     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            244     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            245     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            246     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            247     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            248     0.0001     0.0000    -0.0000     0.0002     0.0000   ***
            249     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            250     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            251     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            252     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            253     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            254     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            255     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            256     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            257     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            258     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            259     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            260     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            261     0.0001     0.0001     0.0000     0.0002     0.0000   ***
            262     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            263     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            264     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            265     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            266     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            267     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            268     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            269     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            270     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            271     0.0001     0.0000     0.0000     0.0002     0.0000   ***
            272     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            273     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            274     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            275     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            276     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            277     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            278     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            279     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            280     0.0013     0.0012    -0.0012     0.0037     0.6202
            281     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            282     0.0003     0.0003    -0.0003     0.0009     0.0000   ***
            283     0.0001     0.0000    -0.0000     0.0002     0.0000   ***
            284     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            285     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            286     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            287     0.0008     0.0003     0.0002     0.0013     0.0001   ***
            288     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            289     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            290     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            291     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            292     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            293     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            294     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            295     0.0002     0.0001    -0.0001     0.0004     0.0000   ***
            296     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            297     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            298     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            299     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            300     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            301     0.0002     0.0001    -0.0001     0.0004     0.0000   ***
            302     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            303     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            304     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            305     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            306     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            307     0.0002     0.0002    -0.0001     0.0005     0.0000   ***
            308     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            309     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            310     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            311     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            312     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            313     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            314     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            315     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            316     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            317     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            318     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            319     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            320     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            321     0.0001     0.0001    -0.0000     0.0002     0.0000   ***
            322     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            323     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            324     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            325     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            326     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            327     0.0016     0.0016    -0.0015     0.0048     0.8768
            328     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            329     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            330     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            331     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            332     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            333     0.0001     0.0000    -0.0000     0.0002     0.0000   ***
            334     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            335     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            336     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            337     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            338     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            339     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            340     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            341     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            342     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            343     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            344     0.0000     0.0001    -0.0001     0.0001     0.0000   ***
            345     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            346     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            347     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            348     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            349     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            350     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            351     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            352     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            353     0.0002     0.0001    -0.0000     0.0003     0.0000   ***
            354     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            355     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            356     0.0007     0.0007    -0.0006     0.0020     0.0684     *
            357     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            358     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            359     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            360     0.0003     0.0003    -0.0003     0.0010     0.0000   ***
            361     0.0007     0.0007    -0.0006     0.0020     0.0780     *
            362     0.0004     0.0003    -0.0001     0.0009     0.0000   ***
            363     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            364     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            365     0.0002     0.0002    -0.0002     0.0006     0.0000   ***
            366     0.0002     0.0001     0.0001     0.0004     0.0000   ***
            367     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            368     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            369     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            370     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            371     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            372     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            373     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            374     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            375     0.0001     0.0000    -0.0000     0.0002     0.0000   ***
            376     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            377     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            378     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            379     0.0002     0.0002    -0.0001     0.0006     0.0000   ***
            380     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            381     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            382     0.0015     0.0015    -0.0014     0.0043     0.7779
            383     0.0000     0.0001    -0.0001     0.0002     0.0000   ***
            384     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            385     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            386     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            387     0.0001     0.0001    -0.0000     0.0002     0.0000   ***
            388     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            389     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            390     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            391     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            392     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            393     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            394     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            395     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            396     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            397     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            398     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            399     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            400     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            401     0.0008     0.0008    -0.0008     0.0024     0.1973
            402     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            403     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            404     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            405     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            406     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            407     0.0012     0.0012    -0.0011     0.0035     0.5754
            408     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            409     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            410     0.0000     0.0001    -0.0001     0.0001     0.0000   ***
            411     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            412     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            413     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            414     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            415     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            416     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            417     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            418     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            419     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            420     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            421     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            422     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            423     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            424     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            425     0.0001     0.0000    -0.0000     0.0002     0.0000   ***
            426     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            427     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            428     0.0000     0.0001    -0.0001     0.0002     0.0000   ***
            429     0.0002     0.0002    -0.0002     0.0007     0.0000   ***
            430     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            431     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            432     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            433     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            434     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            435     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            436     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            437     0.0001     0.0001    -0.0000     0.0003     0.0000   ***
            438     0.0000     0.0001    -0.0001     0.0002     0.0000   ***
            439     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            440     0.0001     0.0001    -0.0000     0.0002     0.0000   ***
            441     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            442     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            443     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            444     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            445     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            446     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            447     0.0000     0.0001    -0.0001     0.0002     0.0000   ***
            448     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            449     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            450     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            451     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            452     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            453     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            454     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            455     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            456     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            457     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            458     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            459     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            460     0.0001     0.0001    -0.0000     0.0002     0.0000   ***
            461     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            462     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            463     0.0003     0.0001     0.0001     0.0006     0.0000   ***
            464     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            465     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            466     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            467     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            468     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            469     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            470     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            471     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            472     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            473     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            474     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            475     0.0005     0.0005    -0.0005     0.0015     0.0097   ***
            476     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            477     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            478     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            479     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            480     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            481     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            482     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            483     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            484     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            485     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            486     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            487     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            488     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            489     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            490     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            491     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            492     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            493     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            494     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            495     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            496     0.0001     0.0001    -0.0000     0.0002     0.0000   ***
            497     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            498     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            499     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            500     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            501     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            502     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            503     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            504     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            505     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            506     0.0002     0.0001    -0.0001     0.0004     0.0000   ***
            507     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            508     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            509     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            510     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            511     0.0003     0.0003    -0.0003     0.0010     0.0000   ***
            512     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            513     0.0001     0.0001    -0.0000     0.0002     0.0000   ***
            514     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            515     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            516     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            517     0.0001     0.0000    -0.0000     0.0002     0.0000   ***
            518     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            519     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            520     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            521     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            522     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            523     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            524     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            525     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            526     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            527     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            528     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            529     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            530     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            531     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            532     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            533     0.0002     0.0002    -0.0001     0.0005     0.0000   ***
            534     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            535     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            536     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            537     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            538     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            539     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            540     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            541     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            542     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            543     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            544     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            545     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            546     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            547     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            548     0.0001     0.0000    -0.0000     0.0001     0.0000   ***
            549     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            550     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            551     0.0001     0.0001     0.0000     0.0003     0.0000   ***
            552     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            553     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            554     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            555     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            556     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            557     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            558     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            559     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            560     0.0002     0.0002    -0.0002     0.0006     0.0000   ***
            561     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            562     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            563     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            564     0.0002     0.0002    -0.0002     0.0006     0.0000   ***
            565     0.0001     0.0001    -0.0000     0.0002     0.0000   ***
            566     0.0017     0.0016    -0.0014     0.0048     0.9078
            567     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            568     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            569     0.0006     0.0005    -0.0005     0.0016     0.0165    **
            570     0.0012     0.0012    -0.0012     0.0036     0.5838
            571     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            572     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            573     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            574     0.0002     0.0001    -0.0001     0.0005     0.0000   ***
            575     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            576     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            577     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            578     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            579     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            580     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            581     0.0002     0.0001     0.0001     0.0003     0.0000   ***
            582     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            583     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            584     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            585     0.0002     0.0001    -0.0001     0.0004     0.0000   ***
            586     0.0002     0.0002    -0.0002     0.0006     0.0000   ***
            587     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            588     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            589     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            590     0.0001     0.0000    -0.0000     0.0002     0.0000   ***
            591     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            592     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            593     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            594     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            595     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            596     0.0014     0.0014    -0.0013     0.0041     0.7165
            597     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            598     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            599     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            600     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            601     0.0002     0.0002    -0.0002     0.0007     0.0000   ***
            602     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            603     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            604     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            605     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            606     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            607     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            608     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            609     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            610     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            611     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            612     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            613     0.0002     0.0002    -0.0002     0.0006     0.0000   ***
            614     0.0002     0.0002    -0.0001     0.0005     0.0000   ***
            615     0.0002     0.0001    -0.0000     0.0004     0.0000   ***
            616     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            617     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            618     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            619     0.0000     0.0001    -0.0001     0.0002     0.0000   ***
            620     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            621     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            622     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            623     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            624     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            625     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            626     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            627     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            628     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            629     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            630     0.0001     0.0001     0.0000     0.0002     0.0000   ***
            631     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            632     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            633     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            634     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            635     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            636     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            637     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            638     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            639     0.0002     0.0001    -0.0001     0.0004     0.0000   ***
            640     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            641     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            642     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            643     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            644     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            645     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            646     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            647     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            648     0.0001     0.0000    -0.0000     0.0001     0.0000   ***
            649     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            650     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            651     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            652     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            653     0.0001     0.0001    -0.0000     0.0002     0.0000   ***
            654     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            655     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            656     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            657     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            658     0.0003     0.0001     0.0001     0.0004     0.0000   ***
            659     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            660     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            661     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            662     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            663     0.0002     0.0002    -0.0002     0.0007     0.0000   ***
            664     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            665     0.0001     0.0001    -0.0000     0.0002     0.0000   ***
            666     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            667     0.0006     0.0006    -0.0005     0.0018     0.0341    **
            668     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            669     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            670     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            671     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            672     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            673     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            674     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            675     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            676     0.0013     0.0013    -0.0012     0.0039     0.6696
            677     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            678     0.0002     0.0001    -0.0000     0.0004     0.0000   ***
            679     0.0001     0.0001     0.0000     0.0002     0.0000   ***
            680     0.0002     0.0002    -0.0002     0.0006     0.0000   ***
            681     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            682     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            683     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            684     0.0001     0.0000    -0.0000     0.0002     0.0000   ***
            685     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            686     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            687     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            688     0.0005     0.0005    -0.0005     0.0015     0.0061   ***
            689     0.0010     0.0010    -0.0010     0.0030     0.3922
            690     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            691     0.0017     0.0017    -0.0016     0.0051     0.9340
            692     0.0016     0.0016    -0.0016     0.0048     0.8762
            693     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            694     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            695     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            696     0.0001     0.0000    -0.0000     0.0002     0.0000   ***
            697     0.0013     0.0013    -0.0012     0.0038     0.6590
            698     0.0000     0.0001    -0.0001     0.0001     0.0000   ***
            699     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            700     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            701     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            702     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            703     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            704     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            705     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            706     0.0003     0.0001    -0.0000     0.0005     0.0000   ***
            707     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            708     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            709     0.0002     0.0001    -0.0000     0.0005     0.0000   ***
            710     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            711     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            712     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            713     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            714     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            715     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            716     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            717     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            718     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            719     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            720     0.0001     0.0001    -0.0000     0.0002     0.0000   ***
            721     0.0000     0.0001    -0.0001     0.0001     0.0000   ***
            722     0.0006     0.0005    -0.0004     0.0016     0.0141    **
            723     0.0006     0.0006    -0.0005     0.0017     0.0267    **
            724     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            725     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            726     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            727     0.0009     0.0009    -0.0009     0.0027     0.3022
            728     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            729     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            730     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            731     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            732     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            733     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            734     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            735     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            736     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            737     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            738     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            739     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            740     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            741     0.0006     0.0006    -0.0006     0.0018     0.0342    **
            742     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            743     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            744     0.0010     0.0010    -0.0010     0.0030     0.3878
            745     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            746     0.0013     0.0013    -0.0012     0.0038     0.6361
            747     0.0002     0.0002    -0.0002     0.0006     0.0000   ***
            748     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            749     0.0001     0.0001     0.0000     0.0003     0.0000   ***
            750     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            751     0.0011     0.0011    -0.0011     0.0034     0.5266
            752     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            753     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            754     0.0000     0.0001    -0.0001     0.0002     0.0000   ***
            755     0.0002     0.0002    -0.0002     0.0005     0.0000   ***
            756     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            757     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            758     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            759     0.0014     0.0013    -0.0013     0.0040     0.7000
            760     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            761     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            762     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            763     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            764     0.0001     0.0000    -0.0000     0.0002     0.0000   ***
            765     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            766     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            767     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            768     0.0003     0.0003    -0.0002     0.0008     0.0000   ***
            769     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            770     0.0001     0.0001    -0.0000     0.0002     0.0000   ***
            771     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            772     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            773     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            774     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            775     0.0001     0.0001    -0.0000     0.0003     0.0000   ***
            776     0.0000     0.0001    -0.0001     0.0002     0.0000   ***
            777     0.0001     0.0001    -0.0000     0.0002     0.0000   ***
            778     0.0007     0.0007    -0.0006     0.0020     0.0740     *
            779     0.0001     0.0000    -0.0000     0.0002     0.0000   ***
            780     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            781     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            782     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            783     0.0013     0.0013    -0.0012     0.0039     0.6757
            784     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            785     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            786     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            787     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            788     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            789     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            790     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            791     0.0001     0.0000    -0.0000     0.0002     0.0000   ***
            792     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            793     0.0002     0.0001    -0.0001     0.0004     0.0000   ***
            794     0.0003     0.0002    -0.0002     0.0007     0.0000   ***
            795     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            796     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            797     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            798     0.0002     0.0001    -0.0001     0.0004     0.0000   ***
            799     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            800     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            801     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            802     0.0002     0.0001     0.0001     0.0003     0.0000   ***
            803     0.0001     0.0001    -0.0000     0.0002     0.0000   ***
            804     0.0014     0.0014    -0.0013     0.0040     0.7114
            805     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            806     0.0029     0.0003     0.0023     0.0036     0.0020   ***
            807     0.0005     0.0001     0.0004     0.0007     0.0000   ***
            808     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            809     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            810     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            811     0.0001     0.0000    -0.0000     0.0002     0.0000   ***
            812     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            813     0.0000     0.0000    -0.0000     0.0001     0.0000   ***
            814     0.0001     0.0001    -0.0001     0.0002     0.0000   ***
            815     0.0015     0.0002     0.0010     0.0019     0.0934     *
            816     0.0010     0.0003     0.0005     0.0016     0.0044   ***
            817     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            818     0.0001     0.0001    -0.0001     0.0003     0.0000   ***
            819     0.0001     0.0000    -0.0000     0.0002     0.0000   ***
            820     0.0001     0.0000    -0.0000     0.0001     0.0000   ***
            821     0.0004     0.0001     0.0002     0.0006     0.0000   ***
            822     0.0005     0.0005    -0.0004     0.0014     0.0025   ***
            823     0.0002     0.0001    -0.0001     0.0004     0.0000   ***
            824     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            825     0.0002     0.0001    -0.0000     0.0005     0.0000   ***
            826     0.0004     0.0001     0.0002     0.0006     0.0000   ***
            827     0.0003     0.0001     0.0001     0.0005     0.0000   ***
            828     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            829     0.0001     0.0001    -0.0001     0.0004     0.0000   ***
            830     0.0000     0.0000    -0.0001     0.0001     0.0000   ***
            831     0.0001     0.0000     0.0000     0.0002     0.0000   ***
==============================================================================
Significant units: 781 / 832
---
Signif. codes:  0 '***' 0.01 '**' 0.05 '*' 0.1 ' ' 1
==============================================================================

Group Importance

[8]:
res_df = fdfi_estimator.conf_int(
    alpha=0.05,
    target="Z",
    groups=df_groups,
    threshold_null=True,
    var_floor_c=1e-3,
    var_floor_method="fixed",
    margin=0.0,
    margin_method="fixed",
    alternative="two-sided",
    multitest_method="bonferroni",
    verbose=False,
)
res_df = pd.DataFrame({
    "group":       res_df["groups"],
    "importance":  res_df["score"],
    "se":          res_df["se"],
    "zscore":      res_df["zscore"],
    "ci_lower":    res_df["ci_lower"],
    "ci_upper":    res_df["ci_upper"],
    "p_value":     res_df["pvalue"],
    "p_value_adj": res_df.get("pvalue_adj", res_df["pvalue"]),
    "reject_null": res_df["reject_null"],
})

Group Summary Table

[9]:

print("=== Z-space group summary (primary for FlowExplainer) ===") _ = fdfi_estimator.summary( alpha=0.05, target="Z", groups=df_groups, threshold_null=True, var_floor_c=1e-3, var_floor_method="fixed", margin=0.0, margin_method="fixed", alternative="two-sided", multitest_method="bonferroni", ) print("\n=== X-space group summary (secondary — Jacobian-based) ===") _ = fdfi_estimator.summary( alpha=0.05, target="X", groups=df_groups, threshold_null=True, var_floor_c=1e-3, var_floor_method="fixed", margin=0.0, margin_method="fixed", alternative="two-sided", multitest_method="bonferroni", )
=== Z-space group summary (primary for FlowExplainer) ===
==============================================================================
Feature Importance Results
==============================================================================
Method: FlowExplainer
Number of units: 14
Significance level: 0.05
Alternative: two-sided
Multiple testing: bonferroni
Margin method: fixed
------------------------------------------------------------------------------
          Group   Estimate    Std Err   CI Lower   CI Upper  Adj P-val   Sig
------------------------------------------------------------------------------
          cd4bs     0.0434     0.0330    -0.0213     0.1081     1.0000
          covar     0.0197     0.0125    -0.0049     0.0443     1.0000
      cysteines     0.0012     0.0006    -0.0001     0.0024     0.9081
            esa     0.0288     0.0209    -0.0122     0.0697     1.0000
           geog     0.0003     0.0002    -0.0001     0.0006     1.0000
       geometry     0.0028     0.0005     0.0019     0.0038     0.0000   ***
          glyco     0.0049     0.0020     0.0010     0.0088     0.1884
           gp41     0.0101     0.0087    -0.0069     0.0270     1.0000
           pngs     0.0184     0.0078     0.0031     0.0337     0.2563
   pngs_novrc01     0.0134     0.0116    -0.0093     0.0360     1.0000
        sequons     0.0037     0.0004     0.0029     0.0045     0.0000   ***
    steric_bulk     0.0009     0.0002     0.0004     0.0013     0.0017   ***
        subtype     0.0023     0.0018    -0.0013     0.0059     1.0000
          vrc01     0.0396     0.0280    -0.0154     0.0945     1.0000
==============================================================================
Significant units: 3 / 14
---
Signif. codes:  0 '***' 0.01 '**' 0.05 '*' 0.1 ' ' 1
==============================================================================

=== X-space group summary (secondary — Jacobian-based) ===
==============================================================================
Feature Importance Results
==============================================================================
Method: FlowExplainer
Number of units: 14
Significance level: 0.05
Alternative: two-sided
Multiple testing: bonferroni
Margin method: fixed
------------------------------------------------------------------------------
          Group   Estimate    Std Err   CI Lower   CI Upper  Adj P-val   Sig
------------------------------------------------------------------------------
          cd4bs     0.0372     0.0276    -0.0168     0.0912     1.0000
          covar     0.0200     0.0124    -0.0042     0.0442     1.0000
      cysteines     0.0011     0.0006    -0.0001     0.0022     0.8767
            esa     0.0254     0.0181    -0.0101     0.0609     1.0000
           geog     0.0003     0.0002    -0.0000     0.0006     0.8746
       geometry     0.0028     0.0005     0.0018     0.0038     0.0000   ***
          glyco     0.0052     0.0022     0.0009     0.0096     0.2560
           gp41     0.0093     0.0079    -0.0062     0.0249     1.0000
           pngs     0.0193     0.0087     0.0023     0.0364     0.3686
   pngs_novrc01     0.0121     0.0101    -0.0077     0.0319     1.0000
        sequons     0.0039     0.0004     0.0031     0.0048     0.0000   ***
    steric_bulk     0.0009     0.0002     0.0004     0.0014     0.0035   ***
        subtype     0.0020     0.0016    -0.0011     0.0051     1.0000
          vrc01     0.0344     0.0238    -0.0123     0.0810     1.0000
==============================================================================
Significant units: 3 / 14
---
Signif. codes:  0 '***' 0.01 '**' 0.05 '*' 0.1 ' ' 1
==============================================================================

Group Mapping

[10]:
group_mapping = pd.DataFrame({
    "group_num": range(1, 15),
    "group": [
        "vrc01", "cd4bs", "esa", "glyco", "covar", "pngs", "gp41",
        "pngs_novrc01", "subtype", "sequons", "geometry", "cysteines",
        "steric_bulk", "geog"
    ],
    "description": [
        "VRC01 binding footprint",
        "CD4 binding sites",
        "Sites with sufficient exposed surface area",
        "Sites identified as important for glycosylation",
        "Sites with residues that covary with\nthe VRC01 binding footprint",
        "Sites associated with VRC01-specific\npotential N-linked glycosylation (PNGS) effects",
        "gp41 sites important for VRC01 binding",
        "Sites for indicating N-linked glycosylation",
        "Majority virus subtypes",
        "Region-specific counts of PNGS",
        "Viral geometry",
        "Cysteine counts",
        "Steric bulk at critical locations",
        "Geographic confounders",
    ],
})

Group Importance Plot

[11]:

DATASET_LABELS = { "sens50": "Sensitivity 50", "sens80": "Sensitivity 80", "ic50": "IC50 Censored", } dataset_label = DATASET_LABELS.get(outcome, outcome) group_df_sorted = res_df.sort_values("importance", ascending=True).reset_index(drop=True) group_df_sorted = group_df_sorted.merge(group_mapping, on="group", how="left") fig, axes = plt.subplots(1, 3, figsize=(18, 6), gridspec_kw={"width_ratios": [3, 3, 3]}) fig.suptitle( f"{dataset_label} ({outcome}) - Flow FDFI Group Importance (Z-space)", fontsize=22, y=1.04, ) group_numbers = list(group_df_sorted["group_num"]) ax1 = axes[0] ax1.barh( range(len(group_df_sorted)), group_df_sorted["importance"], xerr=group_df_sorted["se"], error_kw=dict(capsize=5), alpha=0.7, color="steelblue", ) ax1.set_yticks(range(len(group_df_sorted))) ax1.set_yticklabels(group_numbers, fontsize=12) ax1.set_xlabel("Group Importance", fontsize=16) ax1.set_title("Feature Group Importance (Flow FDFI, Z)", fontsize=18) ax1.set_ylabel("Group Number", fontsize=16) ax1.grid(axis="x", alpha=0.3) for i, (_, row) in enumerate(group_df_sorted.iterrows()): if row["reject_null"]: ax1.text( row["importance"] + row["se"] + 0.001, i, "*", va="center", fontweight="bold", color="red", ) ax2 = axes[1] colors = ["red" if reject_null else "gray" for reject_null in group_df_sorted["reject_null"]] ax2.barh(range(len(group_df_sorted)), group_df_sorted["zscore"], alpha=0.7, color=colors) ax2.set_yticks(range(len(group_df_sorted))) ax2.set_yticklabels(group_numbers, fontsize=12) ax2.set_xlabel("Z-score", fontsize=16) ax2.set_title("Feature Group Z-scores", fontsize=18) ax2.grid(axis="x", alpha=0.3) ax2.axvline(x=1.96, color="red", linestyle="--", linewidth=2, alpha=0.7, label="p=0.05") ax2.legend(fontsize=12) ax3 = axes[2] ax3.set_xlim(0, 1) ax3.set_ylim(-0.5, len(group_df_sorted) - 0.5) for i, (_, row) in enumerate(group_df_sorted.iterrows()): group_name = row["group"] display_name = row["description"] if pd.notna(row["description"]) else group_name text_color = "red" if row["reject_null"] else "gray" ax3.text( 0.02, i, f"{int(row['group_num']):2d}.", va="center", ha="left", fontsize=14, fontweight="bold", color="black", ) ax3.text( 0.09, i, display_name, va="center", ha="left", fontsize=12, color=text_color, ) ax3.set_yticks([]) ax3.set_xticks([]) ax3.set_title("Feature Group Annotations", fontsize=18) for spine in ax3.spines.values(): spine.set_visible(False) plt.tight_layout(rect=[0, 0, 1, 0.95]) plt.show()
../_images/case_studies_flow_case_study_sens50_18_0.png

Visualize and Compare Results: Flow vs EOT

[12]:
print("=== Group-level results (Flow FDFI, Z-space) ===")
print(f"{'Group':<20} {'Importance':>12} {'SE':>10} {'Z-score':>10} {'Significant':>12}")
print("-" * 70)
for _, row in res_df.sort_values("zscore", ascending=False).iterrows():
    sig = "***" if row["reject_null"] else ""
    print(f"{row['group']:<20} {row['importance']:>12.4f} {row['se']:>10.4f} {row['zscore']:>10.2f} {sig:>12}")

n_sig = res_df["reject_null"].sum()
print(f"\nSignificant groups: {n_sig}/{len(res_df)} (Bonferroni alpha=0.05)")
print(f"Z-score range: {res_df['zscore'].min():.2f} to {res_df['zscore'].max():.2f}")

=== Group-level results (Flow FDFI, Z-space) ===
Group                  Importance         SE    Z-score  Significant
----------------------------------------------------------------------
sequons                    0.0037     0.0004       9.20          ***
geometry                   0.0028     0.0005       5.78          ***
steric_bulk                0.0009     0.0002       3.84          ***
glyco                      0.0049     0.0020       2.47
pngs                       0.0184     0.0078       2.36
cysteines                  0.0012     0.0006       1.85
geog                       0.0003     0.0002       1.62
covar                      0.0197     0.0125       1.57
vrc01                      0.0396     0.0280       1.41
esa                        0.0288     0.0209       1.38
cd4bs                      0.0434     0.0330       1.31
subtype                    0.0023     0.0018       1.23
gp41                       0.0101     0.0087       1.16
pngs_novrc01               0.0134     0.0116       1.16

Significant groups: 3/14 (Bonferroni alpha=0.05)
Z-score range: 1.16 to 9.20

Note on Variance Floor (var_floor_c)

The default var_floor_c=0.1 used by EOTExplainer is calibrated for the OT/EOT linear decoder, where the UEIF variance across samples is naturally large. FlowExplainer uses a CPI-based UEIF, \(\text{UEIF}_{i,j} = (y_i - \bar{\tilde{y}}_{ij})^2\), whose value is nearly constant across samples \(i\) (the nonlinear flow decoder maps similar latent perturbations to the same binary output pattern for most samples). This makes the raw per-sample standard deviation structurally small — not due to noise, but by construction.

Using var_floor_c=1e-3 sets a floor of \(10^{-3}/\sqrt{n} \approx 4 \times 10^{-5}\), which is roughly 3× below the smallest observed group SE and adds less than 5% to any z-score. It guards against numerical zeros at the individual-feature level while leaving all group-level inferences essentially unchanged.