diff --git a/src/main/java/gov/usgs/earthquake/nshmp/gmm/Gmm.java b/src/main/java/gov/usgs/earthquake/nshmp/gmm/Gmm.java
index a2692e9df45beeb5695c6cdca331422708fe5820..6e8f9c305d0abf32f004e1ca9720bc17ebe0c2df 100644
--- a/src/main/java/gov/usgs/earthquake/nshmp/gmm/Gmm.java
+++ b/src/main/java/gov/usgs/earthquake/nshmp/gmm/Gmm.java
@@ -53,6 +53,24 @@ public enum Gmm {
    * argument.
    */
 
+  MA_05_BASE(
+      MotazedianAtkinson_2005.class,
+      MotazedianAtkinson_2005.NAME,
+      MotazedianAtkinson_2005.COEFFS_MPRS,
+      MotazedianAtkinson_2005.CONSTRAINTS),
+
+  MA_05(
+      MotazedianAtkinson_2005.Usgs.class,
+      MotazedianAtkinson_2005.NAME,
+      MotazedianAtkinson_2005.COEFFS_MPRS,
+      MotazedianAtkinson_2005.CONSTRAINTS),
+
+  MA_05_INTERP(
+      MotazedianAtkinson_2005.Interp.class,
+      MotazedianAtkinson_2005.NAME,
+      MotazedianAtkinson_2005.COEFFS_INTERP,
+      MotazedianAtkinson_2005.CONSTRAINTS),
+
   /*
    * Active continent NGA-West1 WUS 2008.
    *
diff --git a/src/main/java/gov/usgs/earthquake/nshmp/gmm/MotazedianAtkinson_2005.java b/src/main/java/gov/usgs/earthquake/nshmp/gmm/MotazedianAtkinson_2005.java
new file mode 100644
index 0000000000000000000000000000000000000000..20fcd429bfb4be5ca273e6e98be8506c528a6723
--- /dev/null
+++ b/src/main/java/gov/usgs/earthquake/nshmp/gmm/MotazedianAtkinson_2005.java
@@ -0,0 +1,355 @@
+package gov.usgs.earthquake.nshmp.gmm;
+
+import static gov.usgs.earthquake.nshmp.gmm.Gmm.BA_08_BASE;
+import static gov.usgs.earthquake.nshmp.gmm.GmmInput.Field.MW;
+import static gov.usgs.earthquake.nshmp.gmm.GmmInput.Field.RRUP;
+import static gov.usgs.earthquake.nshmp.gmm.GmmInput.Field.VS30;
+import static gov.usgs.earthquake.nshmp.gmm.GmmUtils.BASE_10_TO_E;
+import static gov.usgs.earthquake.nshmp.gmm.GmmUtils.LN_G_CM_TO_M;
+import static gov.usgs.earthquake.nshmp.gmm.Imt.PGA;
+import static gov.usgs.earthquake.nshmp.gmm.Imt.SA0P01;
+import static gov.usgs.earthquake.nshmp.gmm.Imt.SA0P02;
+import static gov.usgs.earthquake.nshmp.gmm.Imt.SA0P03;
+import static gov.usgs.earthquake.nshmp.gmm.Imt.SA0P05;
+import static gov.usgs.earthquake.nshmp.gmm.Imt.SA0P06;
+import static gov.usgs.earthquake.nshmp.gmm.Imt.SA0P075;
+import static gov.usgs.earthquake.nshmp.gmm.Imt.SA0P08;
+import static gov.usgs.earthquake.nshmp.gmm.Imt.SA0P12;
+import static gov.usgs.earthquake.nshmp.gmm.Imt.SA0P15;
+import static gov.usgs.earthquake.nshmp.gmm.Imt.SA0P16;
+import static gov.usgs.earthquake.nshmp.gmm.Imt.SA0P6;
+import static gov.usgs.earthquake.nshmp.gmm.Imt.SA0P75;
+import static gov.usgs.earthquake.nshmp.gmm.Imt.SA0P8;
+import static java.lang.Math.log10;
+import static java.lang.Math.sqrt;
+
+import java.util.Map;
+import java.util.Optional;
+
+import com.google.common.collect.ImmutableMap;
+import com.google.common.collect.Maps;
+import com.google.common.collect.Range;
+
+import gov.usgs.earthquake.nshmp.gmm.GmmInput.Constraints;
+import gov.usgs.earthquake.nshmp.tree.LogicTree;
+
+// spotless:off
+// import static gov.usgs.earthquake.nshmp.gmm.Imt.SA0P1;
+// import static gov.usgs.earthquake.nshmp.gmm.Imt.SA0P2;
+// import static gov.usgs.earthquake.nshmp.gmm.Imt.SA0P5;
+// import static gov.usgs.earthquake.nshmp.gmm.Imt.SA1P0;
+// spotless:on
+
+/**
+ * Implementation of the ground motion relations for Puerto Rico by Motazedian
+ * and Atkinson (2005) in order to evaluate the model for use in the 2025 Puerto
+ * Rico and U.S. Virgin Islands NSHM.
+ *
+ * <p><b>Note:</b> Direct instantiation of {@code GroundMotionModel}s is
+ * prohibited. Use {@link Gmm#instance(Imt)} to retrieve an instance for a
+ * desired {@link Imt}.
+ *
+ * <p><b>Implementation notes:</b><ul>
+ *
+ * <li>Published coefficients are defined in frequency-space. Frequencies are
+ * converted to the closest existing spectral period in IMT.</li>
+ *
+ * <li>Support for spectral period 0.01s is provided using the same coefficients
+ * as PGA.</li>
+ *
+ * <li>Support for spectral periods 0.02s, 0.03s, 0.075s, 0.15s, 0.25s, and 1.5s
+ * is provided via interpolation of ground motion and sigma of adjacent periods
+ * for which there are coefficients.</li>
+ *
+ * <li>Uses site-scaling model of BA08.</li>
+ *
+ * <p><b>Reference:</b> Motazedian, D. and Atkinson, G., 2005, Ground-motion
+ * relations for Puerto Rico, in Mann, P., ed., Active tectonics and seismic
+ * hazards of Puerto Rico, the Virgin Islands, and offshore areas: Geological
+ * Society of America Special Paper 385, p. 61-80,
+ * https://doi.org/10.1130/SPE385.
+ *
+ * <p><b>doi: </b> <a href="https://doi.org/10.1130/SPE385">10.1130/SPE385</a>
+ *
+ * <p><b>Component:</b> Geometric mean of two horizontal components
+ *
+ * @author U.S. Geological Survey
+ * @see Gmm#MA_05
+ */
+public class MotazedianAtkinson_2005 implements GroundMotionModel {
+
+  static final String NAME = "Motazedian & Atkinson (2005) BETA";
+
+  static final Constraints CONSTRAINTS = Constraints.builder()
+      .set(MW, Range.closed(4.0, 9.5))
+      .set(RRUP, Range.closed(0.0, 1000.0))
+      .set(VS30, Range.singleton(760.0))
+      .build();
+
+  /*
+   * Coefficients for MPRS IMT, consistent with BA08. Published PGA coefficients
+   * are duplicated for 0.01 sec.
+   */
+  static final CoefficientContainer COEFFS_MPRS =
+      new CoefficientContainer("MotazedianAtkinson05_mprs.csv");
+  /*
+   * Coefficients for use with InterpolatedGmm. Published coefficients are given
+   * for frequency (Hz). These are converted to the closest available IMT
+   * period. Published PGA coefficients are duplicated for 0.01 sec.
+   */
+  static final CoefficientContainer COEFFS_INTERP =
+      new CoefficientContainer("MotazedianAtkinson05_interp.csv");
+
+  /*
+   * Interpolated IMTs added for MPRS Imts for which there are not published
+   * coefficients.
+   */
+  private static final Map<Imt, Range<Imt>> INTERPOLATED_IMTS =
+      Maps.immutableEnumMap(
+          ImmutableMap.<Imt, Range<Imt>> builder()
+              .put(SA0P02, Range.closed(SA0P01, SA0P06))
+              .put(SA0P03, Range.closed(SA0P01, SA0P06))
+              .put(SA0P05, Range.closed(SA0P01, SA0P06))
+              .put(SA0P075, Range.closed(SA0P06, SA0P08))
+              .put(SA0P15, Range.closed(SA0P12, SA0P16))
+              .put(SA0P75, Range.closed(SA0P6, SA0P8))
+              .build());
+  // /* interpolate from MPRS IMTs instead of non-MPRS native IMTs */
+  // private static final Map<Imt, Range<Imt>> INTERPOLATED_IMTS =
+  // Maps.immutableEnumMap(
+  // ImmutableMap.<Imt, Range<Imt>> builder()
+  // .put(SA0P02, Range.closed(SA0P01, SA0P1))
+  // .put(SA0P03, Range.closed(SA0P01, SA0P1))
+  // .put(SA0P05, Range.closed(SA0P01, SA0P1))
+  // .put(SA0P075, Range.closed(SA0P01, SA0P1))
+  // .put(SA0P15, Range.closed(SA0P1, SA0P2))
+  // .put(SA0P75, Range.closed(SA0P5, SA1P0))
+  // .build());
+
+  // distance centering coefficients
+  private static final double C5 = -7.333;
+  private static final double C6 = 2.333;
+  // hinge function coefficients
+  private static final double C7 = -1.8;
+  private static final double C8 = 0.1;
+  private static final double DIST_HINGE_LOWER = 75.0;
+  private static final double DIST_HINGE_UPPER = 100.0;
+
+  // convert log10 sigma to ln
+  private static final double SIGMA = 0.28 * BASE_10_TO_E;
+
+  private static final class Coefficients {
+
+    final Imt imt;
+    final double c1, c2, c3, c4;
+
+    Coefficients(Imt imt, CoefficientContainer cc) {
+      this.imt = imt;
+      Map<String, Double> coeffs = cc.get(imt);
+      c1 = coeffs.get("c1");
+      c2 = coeffs.get("c2");
+      c3 = coeffs.get("c3");
+      c4 = coeffs.get("c4");
+    }
+  }
+
+  private final Coefficients coeffs;
+  // private final Coefficients coeffsPGA;
+  //
+  // /* Boore and Atkinson (2008) site scaling model */
+  // private final BooreAtkinson_2008 siteAmp;
+
+  // private final boolean interpolated;
+  // private final GroundMotionModel interpolatedGmm;
+
+  MotazedianAtkinson_2005(Imt imt) {
+    this(imt, COEFFS_MPRS);
+    // coeffs = new Coefficients(imt, COEFFS_MPRS);
+
+    // for (Imt i : COEFFS_MPRS.imts()) {
+    // System.out.println(i);
+    // }
+    // System.out.println();
+    // for (Imt i : COEFFS_INTERP.imts()) {
+    // System.out.println(i);
+    // }
+    // System.out.println();
+    // coeffsPGA = new Coefficients(PGA, COEFFS);
+    // siteAmp = (BooreAtkinson_2008) BA_08_BASE.instance(imt);
+
+    // interpolated = INTERPOLATED_IMTS.containsKey(imt);
+    // interpolatedGmm = interpolated
+    // ? new InterpolatedGmm(Gmm.MA_05_INTERP, imt, INTERPOLATED_IMTS.get(imt))
+    // : null;
+  }
+
+  MotazedianAtkinson_2005(Imt imt, CoefficientContainer cc) {
+    coeffs = new Coefficients(imt, cc);
+  }
+
+  @Override
+  public Imt imt() {
+    return coeffs.imt;
+  }
+
+  @Override
+  public LogicTree<GroundMotion> calc(GmmInput in) {
+    // if (interpolated) {
+    // return interpolatedGmm.calc(in);
+    // }
+
+    return calc(coeffs, in);
+  }
+
+  private LogicTree<GroundMotion> calc(
+      Coefficients c,
+      GmmInput in) {
+    double μ = calcMean(c, in.rRup, in.Mw);
+
+    double σ = SIGMA;
+    return GroundMotions.createTree(μ, σ);
+  }
+
+  private final double calcMean(
+      Coefficients c,
+      double rRup,
+      double Mw) {
+    /* pass rRup and Mw instead of `in` */
+    /* Eq. 6, log10(PSA) in cm/s/s */
+
+    double r = getR(rRup, Mw);
+
+    double hingeFunction = getHingeFunction(r, Mw);
+
+    double μ = c.c1 + c.c2 * (Mw - 6) + c.c3 * (Mw - 6) * (Mw - 6) + hingeFunction + c.c4 * r;
+    // convert from base 10 to base 2 and from cm/s/s to g
+    return μ * BASE_10_TO_E - LN_G_CM_TO_M;
+  }
+
+  private static final double getR(double rRup, double Mw) {
+    // Equation and coefficients defined in Table 2 caption
+    double delta = C5 + C6 * Mw;
+    return sqrt(rRup * rRup + delta * delta);
+  }
+
+  private static final double getHingeFunction(double dist, double Mw) {
+    // Equation and coefficients defined in Table 2 caption
+    double mFac = C7 + C8 * Mw;
+    if (dist <= DIST_HINGE_LOWER) {
+      // R <= 75 km
+      return mFac * log10(dist);
+    } else if (dist <= DIST_HINGE_UPPER) {
+      // 75 km < R <= 100 km
+      return mFac * log10(DIST_HINGE_LOWER);
+    } else {
+      // R >= 100 km
+      return mFac * log10(DIST_HINGE_LOWER) - 0.5 * log10(dist / DIST_HINGE_UPPER);
+    }
+  }
+
+  /*
+   * Usgs implementation requires site scaling using BA08 model.
+   *
+   * MA05 is frequency based so it's coefficients don't align cleanly with MPRS
+   * IMTs, which requires the use of InterpolatedGmm. We want to interpolate
+   * MA05 to MPRS using periods converted from frequencies rather than the
+   * nearest available MPRS IMTs. Since BA08 coefficients do not include the
+   * MA05 periods we want to use for interpolating MA05, we run into GMM
+   * initialization errors due to unsupported IMTs.
+   *
+   * If IMT requires MA05 interpolation, do this using the native MA05
+   * coefficients (between periods not supported by BA08), and then compute the
+   * BA08 site factor at one of the MPRS IMTs supported by BA08.
+   */
+  static class Usgs extends MotazedianAtkinson_2005 {
+    Usgs(Imt imt) {
+      super(imt);
+      // coeffs = new Coefficients(imt, COEFFS_MPRS);
+      coeffsPGA = new Coefficients(PGA, COEFFS_MPRS);
+
+      /*
+       * ...if imt is in BA_08_BASE.imts(), get it, otherwise do OptionalEmpty
+       */
+      if (BooreAtkinson_2008.COEFFS.imts().contains(imt)) {
+        siteAmp = Optional.of((BooreAtkinson_2008) BA_08_BASE.instance(imt));
+      } else {
+        // we shouldn't get here since COEFFS_MPRS only contains MPRS, which are
+        // all supported by BA08
+        siteAmp = Optional.empty();
+      }
+
+      interpolated = INTERPOLATED_IMTS.containsKey(imt);
+      // interpolatedGmm = interpolated
+      // ? new InterpolatedGmm(Gmm.MA_05_INTERP, imt,
+      // INTERPOLATED_IMTS.get(imt))
+      // : null;
+
+    }
+
+    // private final Coefficients coeffs;
+    private final Coefficients coeffsPGA;
+
+    /* Boore and Atkinson (2008) site scaling model */
+    // private final BooreAtkinson_2008 siteAmp;
+    private final Optional<BooreAtkinson_2008> siteAmp;
+
+    private final boolean interpolated;
+    // private final GroundMotionModel interpolatedGmm;
+
+    @Override
+    public LogicTree<GroundMotion> calc(GmmInput in) {
+
+      // System.out.printf("Imt: %s GMM mprs\n", super.coeffs.imt);
+      double μRef;
+      if (interpolated) {
+        // μRef = interpolatedGmm.calc(in).get(0).value().mean();
+        // μRef =
+        // Gmm.MA_05_BASE.instance(super.coeffs.imt).calc(in).get(0).value().mean();
+        μRef = Gmm.MA_05_INTERP.instance(super.coeffs.imt).calc(in).get(0).value().mean();
+      } else {
+        μRef = super.calcMean(super.coeffs, in.rRup, in.Mw);
+      }
+
+      double μPga = super.calcMean(coeffsPGA, in.rRup, in.Mw);
+      double site;
+      if (siteAmp.isPresent()) {
+        site = siteAmp.get().siteAmp(μPga, in.vs30);
+      } else {
+        site = 0;
+      }
+      double μAm = μRef + site;
+
+      double σ = SIGMA;
+      return GroundMotions.createTree(μAm, σ);
+
+    }
+  }
+
+  static class Interp extends MotazedianAtkinson_2005 {
+    static final String NAME = MotazedianAtkinson_2005.NAME + " : INTERPOLATED";
+
+    Interp(Imt imt) {
+      /* initialize coeffs with interpolation coefficient file */
+      super(imt, COEFFS_INTERP);
+
+      interpolated = INTERPOLATED_IMTS.containsKey(imt);
+      interpolatedGmm = interpolated
+          ? new InterpolatedGmm(Gmm.MA_05_INTERP, imt, INTERPOLATED_IMTS.get(imt))
+          : null;
+    }
+
+    private final boolean interpolated;
+    private final GroundMotionModel interpolatedGmm;
+
+    @Override
+    public LogicTree<GroundMotion> calc(GmmInput in) {
+      // assert interpolated;
+      // System.out.printf("Imt: %s, GMM interpolated\n", super.coeffs.imt);
+      if (interpolated) {
+        return interpolatedGmm.calc(in);
+      }
+      return super.calc(super.coeffs, in);
+    }
+  }
+
+}
diff --git a/src/main/resources/gmm/coeffs/MotazedianAtkinson05_interp.csv b/src/main/resources/gmm/coeffs/MotazedianAtkinson05_interp.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f16c6510bb1901f1904cc81ef42b4dcb42890f23
--- /dev/null
+++ b/src/main/resources/gmm/coeffs/MotazedianAtkinson05_interp.csv
@@ -0,0 +1,39 @@
+T,         f,    c1,       c2,        c3,        c4
+10,     0.10,  1.62,  0.91212,  -0.10486,  -0.00092
+7.5,    0.13,  1.80,  0.90635,  -0.11886,  -0.00081
+6,      0.16,  1.98,  0.89009,  -0.13157,  -0.00064
+5,      0.20,  2.16,  0.87177,  -0.14444,  -0.00052
+4,      0.25,  2.36,  0.84583,  -0.15306,  -0.00048
+3,      0.32,  2.55,  0.81112,  -0.16625,  -0.00044
+2.5,    0.40,  2.74,  0.78035,  -0.17792,  -0.00050
+2,      0.50,  2.89,  0.73416,  -0.17060,  -0.00056
+1.5,    0.63,  3.04,  0.67664,  -0.15973,  -0.00061
+1.25,   0.79,  3.20,  0.63441,  -0.15706,  -0.00080
+1,      1.00,  3.35,  0.56986,  -0.14377,  -0.00086
+0.8,    1.26,  3.47,  0.49700,  -0.11945,  -0.00105
+0.75,      0,     0,        0,         0,         0
+0.6,    1.59,  3.58,  0.47303,  -0.11486,  -0.00118
+0.5,    2.00,  3.68,  0.44246,  -0.10831,  -0.00126
+0.4,    2.51,  3.74,  0.40472,  -0.08864,  -0.00139
+0.3,    3.16,  3.83,  0.38087,  -0.09045,  -0.00159
+0.25,   3.98,  3.88,  0.35932,  -0.07932,  -0.00185
+0.2,    5.01,  3.94,  0.33077,  -0.06816,  -0.00204
+0.16,   6.31,  3.97,  0.33046,  -0.07344,  -0.00219
+0.15,      0,     0,        0,         0,         0
+0.12,   7.94,  3.98,  0.32515,  -0.07216,  -0.00234
+0.1,   10.00,  3.96,  0.32088,  -0.06542,  -0.00244
+0.08,  12.59,  3.94,  0.32165,  -0.06523,  -0.00253
+0.075,     0,     0,        0,         0,         0
+0.06,  15.85,  3.88,  0.33249,  -0.06818,  -0.00251
+0.05,      0,     0,        0,         0,         0
+0.03,      0,     0,        0,         0,         0
+0.02,      0,     0,        0,         0,         0
+0.01,   0.01,  3.60,  0.35181,  -0.06926,  -0.00201
+PGA,    0.00,  3.60,  0.35181,  -0.06926,  -0.00201
+PGV,   -1.00,  2.35,  0.54828,  -0.06350,  -0.00107
+#0.8,       0,     0,        0,         0,         0x
+#0.6,       0,     0,        0,         0,         0x
+#0.16,      0,     0,        0,         0,         0x
+#0.12,      0,     0,        0,         0,         0x
+#0.08,      0,     0,        0,         0,         0x
+#0.06,      0,     0,        0,         0,         0x
diff --git a/src/main/resources/gmm/coeffs/MotazedianAtkinson05_mprs.csv b/src/main/resources/gmm/coeffs/MotazedianAtkinson05_mprs.csv
new file mode 100644
index 0000000000000000000000000000000000000000..1969c8b6d40a14332bfd501c5ba1b5c8fe4a9eda
--- /dev/null
+++ b/src/main/resources/gmm/coeffs/MotazedianAtkinson05_mprs.csv
@@ -0,0 +1,39 @@
+T,         f,    c1,       c2,        c3,        c4
+10,     0.10,  1.62,  0.91212,  -0.10486,  -0.00092
+7.5,    0.13,  1.80,  0.90635,  -0.11886,  -0.00081
+#6,      0.16,  1.98,  0.89009,  -0.13157,  -0.00064
+5,      0.20,  2.16,  0.87177,  -0.14444,  -0.00052
+4,      0.25,  2.36,  0.84583,  -0.15306,  -0.00048
+3,      0.32,  2.55,  0.81112,  -0.16625,  -0.00044
+#2.5,    0.40,  2.74,  0.78035,  -0.17792,  -0.00050
+2,      0.50,  2.89,  0.73416,  -0.17060,  -0.00056
+1.5,    0.63,  3.04,  0.67664,  -0.15973,  -0.00061
+#1.25,   0.79,  3.20,  0.63441,  -0.15706,  -0.00080
+1,      1.00,  3.35,  0.56986,  -0.14377,  -0.00086
+#0.8,    1.26,  3.47,  0.49700,  -0.11945,  -0.00105
+#0.8,       0,     0,        0,         0,         0x
+0.75,      0,     0,        0,         0,         0
+#0.6,    1.59,  3.58,  0.47303,  -0.11486,  -0.00118
+#0.6,       0,     0,        0,         0,         0x
+0.5,    2.00,  3.68,  0.44246,  -0.10831,  -0.00126
+0.4,    2.51,  3.74,  0.40472,  -0.08864,  -0.00139
+0.3,    3.16,  3.83,  0.38087,  -0.09045,  -0.00159
+0.25,   3.98,  3.88,  0.35932,  -0.07932,  -0.00185
+0.2,    5.01,  3.94,  0.33077,  -0.06816,  -0.00204
+#0.16,   6.31,  3.97,  0.33046,  -0.07344,  -0.00219
+#0.16,      0,     0,        0,         0,         0x
+0.15,      0,     0,        0,         0,         0
+#0.12,   7.94,  3.98,  0.32515,  -0.07216,  -0.00234
+#0.12,      0,     0,        0,         0,         0x
+0.1,   10.00,  3.96,  0.32088,  -0.06542,  -0.00244
+#0.08,  12.59,  3.94,  0.32165,  -0.06523,  -0.00253
+#0.08,      0,     0,        0,         0,         0x
+0.075,     0,     0,        0,         0,         0
+#0.06,  15.85,  3.88,  0.33249,  -0.06818,  -0.00251
+#0.06,      0,     0,        0,         0,         0x
+0.05,      0,     0,        0,         0,         0
+0.03,      0,     0,        0,         0,         0
+0.02,      0,     0,        0,         0,         0
+0.01,   0.01,  3.60,  0.35181,  -0.06926,  -0.00201
+PGA,    0.00,  3.60,  0.35181,  -0.06926,  -0.00201
+PGV,   -1.00,  2.35,  0.54828,  -0.06350,  -0.00107
diff --git a/src/test/java/gov/usgs/earthquake/nshmp/gmm/MotazedianAtkinson_2005_tests.java b/src/test/java/gov/usgs/earthquake/nshmp/gmm/MotazedianAtkinson_2005_tests.java
new file mode 100644
index 0000000000000000000000000000000000000000..ed06601f4523e0654160f06332677c4b61d55086
--- /dev/null
+++ b/src/test/java/gov/usgs/earthquake/nshmp/gmm/MotazedianAtkinson_2005_tests.java
@@ -0,0 +1,49 @@
+package gov.usgs.earthquake.nshmp.gmm;
+
+import static gov.usgs.earthquake.nshmp.gmm.Gmm.MA_05;
+
+import java.io.IOException;
+import java.util.EnumSet;
+import java.util.Set;
+import java.util.stream.Stream;
+
+import org.junit.jupiter.api.extension.ExtensionContext;
+import org.junit.jupiter.params.ParameterizedTest;
+import org.junit.jupiter.params.provider.Arguments;
+import org.junit.jupiter.params.provider.ArgumentsProvider;
+import org.junit.jupiter.params.provider.ArgumentsSource;
+
+public class MotazedianAtkinson_2005_tests implements ArgumentsProvider {
+
+  private static String GMM_INPUTS = "/gmm/motazedian-atkinson-2005-inputs.csv";
+  private static String GMM_RESULTS = "/gmm/motazedian-atkinson-2005-results.csv";
+
+  @ParameterizedTest(name = "({index}) {0} {2} {1}")
+  @ArgumentsSource(MotazedianAtkinson_2005_tests.class)
+  void test(int index, Gmm gmm, Imt imt, double exMedian, double exSigma, String inputs) {
+    GmmTest.test(index, gmm, imt, exMedian, exSigma, inputs);
+  }
+
+  @Override
+  public Stream<? extends Arguments> provideArguments(ExtensionContext context) throws Exception {
+    return GmmTest.loadResults(GMM_RESULTS, GMM_INPUTS);
+  }
+
+  /* Result generation sets */
+  private static Set<Gmm> gmms = EnumSet.of(
+      MA_05);
+
+  // private static Set<Imt> imts = Imt.mprsImts();
+  private static Set<Imt> imts = MotazedianAtkinson_2005.COEFFS_MPRS.imts();
+  // private static Set<Imt> imts =
+  // MotazedianAtkinson_2005.COEFFS_INTERP.imts();
+  // private static Set<Imt> imts = EnumSet.of(SA0P02);
+
+  public static void main(String[] args) throws IOException {
+    // for (Imt imt : imts) {
+    // System.out.println(imt);
+    // }
+    GmmTest.generateResults(gmms, imts, GMM_INPUTS, GMM_RESULTS);
+    System.out.println("Done");
+  }
+}
diff --git a/src/test/resources/gmm/motazedian-atkinson-2005-inputs.csv b/src/test/resources/gmm/motazedian-atkinson-2005-inputs.csv
new file mode 100644
index 0000000000000000000000000000000000000000..08631badd122126c492ba484dc84e95159ef88fd
--- /dev/null
+++ b/src/test/resources/gmm/motazedian-atkinson-2005-inputs.csv
@@ -0,0 +1,305 @@
+#Mw,rjB,rRup,rX,dip,width,zTor,zHyp,rake,vs30,z1p0,z2p5,zSed
+5.0,0,2,0,90,5,1,1,1,760,NaN,NaN,NaN
+5.0,0,3,0,90,5,1,1,1,760,NaN,NaN,NaN
+5.0,0,4,0,90,5,1,1,1,760,NaN,NaN,NaN
+5.0,0,5,0,90,5,1,1,1,760,NaN,NaN,NaN
+5.0,0,6,0,90,5,1,1,1,760,NaN,NaN,NaN
+5.0,0,8,0,90,5,1,1,1,760,NaN,NaN,NaN
+5.0,0,10,0,90,5,1,1,1,760,NaN,NaN,NaN
+5.0,0,15,0,90,5,1,1,1,760,NaN,NaN,NaN
+5.0,0,20,0,90,5,1,1,1,760,NaN,NaN,NaN
+5.0,0,30,0,90,5,1,1,1,760,NaN,NaN,NaN
+5.0,0,40,0,90,5,1,1,1,760,NaN,NaN,NaN
+5.0,0,50,0,90,5,1,1,1,760,NaN,NaN,NaN
+5.0,0,60,0,90,5,1,1,1,760,NaN,NaN,NaN
+5.0,0,80,0,90,5,1,1,1,760,NaN,NaN,NaN
+5.0,0,100,0,90,5,1,1,1,760,NaN,NaN,NaN
+5.0,0,150,0,90,5,1,1,1,760,NaN,NaN,NaN
+5.0,0,200,0,90,5,1,1,1,760,NaN,NaN,NaN
+5.0,0,300,0,90,5,1,1,1,760,NaN,NaN,NaN
+5.0,0,500,0,90,5,1,1,1,760,NaN,NaN,NaN
+6.0,0,2,0,90,5,1,1,1,760,NaN,NaN,NaN
+6.0,0,3,0,90,5,1,1,1,760,NaN,NaN,NaN
+6.0,0,4,0,90,5,1,1,1,760,NaN,NaN,NaN
+6.0,0,5,0,90,5,1,1,1,760,NaN,NaN,NaN
+6.0,0,6,0,90,5,1,1,1,760,NaN,NaN,NaN
+6.0,0,8,0,90,5,1,1,1,760,NaN,NaN,NaN
+6.0,0,10,0,90,5,1,1,1,760,NaN,NaN,NaN
+6.0,0,15,0,90,5,1,1,1,760,NaN,NaN,NaN
+6.0,0,20,0,90,5,1,1,1,760,NaN,NaN,NaN
+6.0,0,30,0,90,5,1,1,1,760,NaN,NaN,NaN
+6.0,0,40,0,90,5,1,1,1,760,NaN,NaN,NaN
+6.0,0,50,0,90,5,1,1,1,760,NaN,NaN,NaN
+6.0,0,60,0,90,5,1,1,1,760,NaN,NaN,NaN
+6.0,0,80,0,90,5,1,1,1,760,NaN,NaN,NaN
+6.0,0,100,0,90,5,1,1,1,760,NaN,NaN,NaN
+6.0,0,150,0,90,5,1,1,1,760,NaN,NaN,NaN
+6.0,0,200,0,90,5,1,1,1,760,NaN,NaN,NaN
+6.0,0,300,0,90,5,1,1,1,760,NaN,NaN,NaN
+6.0,0,500,0,90,5,1,1,1,760,NaN,NaN,NaN
+7.0,0,2,0,90,5,1,1,1,760,NaN,NaN,NaN
+7.0,0,3,0,90,5,1,1,1,760,NaN,NaN,NaN
+7.0,0,4,0,90,5,1,1,1,760,NaN,NaN,NaN
+7.0,0,5,0,90,5,1,1,1,760,NaN,NaN,NaN
+7.0,0,6,0,90,5,1,1,1,760,NaN,NaN,NaN
+7.0,0,8,0,90,5,1,1,1,760,NaN,NaN,NaN
+7.0,0,10,0,90,5,1,1,1,760,NaN,NaN,NaN
+7.0,0,15,0,90,5,1,1,1,760,NaN,NaN,NaN
+7.0,0,20,0,90,5,1,1,1,760,NaN,NaN,NaN
+7.0,0,30,0,90,5,1,1,1,760,NaN,NaN,NaN
+7.0,0,40,0,90,5,1,1,1,760,NaN,NaN,NaN
+7.0,0,50,0,90,5,1,1,1,760,NaN,NaN,NaN
+7.0,0,60,0,90,5,1,1,1,760,NaN,NaN,NaN
+7.0,0,80,0,90,5,1,1,1,760,NaN,NaN,NaN
+7.0,0,100,0,90,5,1,1,1,760,NaN,NaN,NaN
+7.0,0,150,0,90,5,1,1,1,760,NaN,NaN,NaN
+7.0,0,200,0,90,5,1,1,1,760,NaN,NaN,NaN
+7.0,0,300,0,90,5,1,1,1,760,NaN,NaN,NaN
+7.0,0,500,0,90,5,1,1,1,760,NaN,NaN,NaN
+5.0,0,100,0,90,5,1,1,1,365,NaN,NaN,NaN
+5.0,0,100,0,90,5,1,1,1,1500,NaN,NaN,NaN
+6.0,0,100,0,90,5,1,1,1,365,NaN,NaN,NaN
+6.0,0,100,0,90,5,1,1,1,1500,NaN,NaN,NaN
+7.0,0,100,0,90,5,1,1,1,365,NaN,NaN,NaN
+7.0,0,100,0,90,5,1,1,1,1500,NaN,NaN,NaN
+#
+#4.0,0,5,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.0,0,5,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.0,0,5,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.0,0,5,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.0,0,6,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.0,0,6,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.0,0,6,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.0,0,6,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.0,0,8,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.0,0,8,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.0,0,8,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.0,0,8,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.0,0,10,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.0,0,10,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.0,0,10,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.0,0,10,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.0,0,15,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.0,0,15,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.0,0,15,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.0,0,15,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.0,0,20,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.0,0,20,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.0,0,20,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.0,0,20,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.0,0,30,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.0,0,30,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.0,0,30,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.0,0,30,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.0,0,40,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.0,0,40,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.0,0,40,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.0,0,40,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.0,0,50,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.0,0,50,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.0,0,50,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.0,0,50,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.0,0,60,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.0,0,60,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.0,0,60,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.0,0,60,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.0,0,80,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.0,0,80,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.0,0,80,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.0,0,80,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.0,0,100,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.0,0,100,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.0,0,100,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.0,0,100,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.7,0,5,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.7,0,5,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.7,0,5,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.7,0,5,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.7,0,6,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.7,0,6,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.7,0,6,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.7,0,6,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.7,0,8,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.7,0,8,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.7,0,8,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.7,0,8,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.7,0,10,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.7,0,10,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.7,0,10,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.7,0,10,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.7,0,15,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.7,0,15,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.7,0,15,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.7,0,15,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.7,0,20,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.7,0,20,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.7,0,20,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.7,0,20,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.7,0,30,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.7,0,30,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.7,0,30,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.7,0,30,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.7,0,40,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.7,0,40,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.7,0,40,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.7,0,40,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.7,0,50,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.7,0,50,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.7,0,50,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.7,0,50,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.7,0,60,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.7,0,60,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.7,0,60,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.7,0,60,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.7,0,80,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.7,0,80,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.7,0,80,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.7,0,80,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.7,0,100,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.7,0,100,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.7,0,100,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.7,0,100,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.8,0,5,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.8,0,5,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.8,0,5,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.8,0,5,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.8,0,6,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.8,0,6,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.8,0,6,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.8,0,6,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.8,0,8,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.8,0,8,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.8,0,8,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.8,0,8,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.8,0,10,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.8,0,10,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.8,0,10,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.8,0,10,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.8,0,15,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.8,0,15,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.8,0,15,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.8,0,15,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.8,0,20,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.8,0,20,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.8,0,20,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.8,0,20,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.8,0,30,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.8,0,30,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.8,0,30,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.8,0,30,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.8,0,40,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.8,0,40,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.8,0,40,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.8,0,40,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.8,0,50,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.8,0,50,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.8,0,50,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.8,0,50,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.8,0,60,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.8,0,60,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.8,0,60,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.8,0,60,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.8,0,80,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.8,0,80,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.8,0,80,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.8,0,80,0,90,5,1,1,1,760,NaN,NaN,NaN
+#4.8,0,100,0,90,5,1,1,1,150,NaN,NaN,NaN
+#4.8,0,100,0,90,5,1,1,1,250,NaN,NaN,NaN
+#4.8,0,100,0,90,5,1,1,1,450,NaN,NaN,NaN
+#4.8,0,100,0,90,5,1,1,1,760,NaN,NaN,NaN
+#5.0,0,10,0,90,5,1,1,1,150,NaN,NaN,NaN
+#5.0,0,10,0,90,5,1,1,1,250,NaN,NaN,NaN
+#5.0,0,10,0,90,5,1,1,1,450,NaN,NaN,NaN
+#5.0,0,10,0,90,5,1,1,1,760,NaN,NaN,NaN
+#5.0,0,15,0,90,5,1,1,1,150,NaN,NaN,NaN
+#5.0,0,15,0,90,5,1,1,1,250,NaN,NaN,NaN
+#5.0,0,15,0,90,5,1,1,1,450,NaN,NaN,NaN
+#5.0,0,15,0,90,5,1,1,1,760,NaN,NaN,NaN
+#5.0,0,20,0,90,5,1,1,1,150,NaN,NaN,NaN
+#5.0,0,20,0,90,5,1,1,1,250,NaN,NaN,NaN
+#5.0,0,20,0,90,5,1,1,1,450,NaN,NaN,NaN
+#5.0,0,20,0,90,5,1,1,1,760,NaN,NaN,NaN
+#5.0,0,30,0,90,5,1,1,1,150,NaN,NaN,NaN
+#5.0,0,30,0,90,5,1,1,1,250,NaN,NaN,NaN
+#5.0,0,30,0,90,5,1,1,1,450,NaN,NaN,NaN
+#5.0,0,30,0,90,5,1,1,1,760,NaN,NaN,NaN
+#5.0,0,40,0,90,5,1,1,1,150,NaN,NaN,NaN
+#5.0,0,40,0,90,5,1,1,1,250,NaN,NaN,NaN
+#5.0,0,40,0,90,5,1,1,1,450,NaN,NaN,NaN
+#5.0,0,40,0,90,5,1,1,1,760,NaN,NaN,NaN
+#5.0,0,50,0,90,5,1,1,1,150,NaN,NaN,NaN
+#5.0,0,50,0,90,5,1,1,1,250,NaN,NaN,NaN
+#5.0,0,50,0,90,5,1,1,1,450,NaN,NaN,NaN
+#5.0,0,50,0,90,5,1,1,1,760,NaN,NaN,NaN
+#5.0,0,60,0,90,5,1,1,1,150,NaN,NaN,NaN
+#5.0,0,60,0,90,5,1,1,1,250,NaN,NaN,NaN
+#5.0,0,60,0,90,5,1,1,1,450,NaN,NaN,NaN
+#5.0,0,60,0,90,5,1,1,1,760,NaN,NaN,NaN
+#5.0,0,80,0,90,5,1,1,1,150,NaN,NaN,NaN
+#5.0,0,80,0,90,5,1,1,1,250,NaN,NaN,NaN
+#5.0,0,80,0,90,5,1,1,1,450,NaN,NaN,NaN
+#5.0,0,80,0,90,5,1,1,1,760,NaN,NaN,NaN
+#5.0,0,100,0,90,5,1,1,1,150,NaN,NaN,NaN
+#5.0,0,100,0,90,5,1,1,1,250,NaN,NaN,NaN
+#5.0,0,100,0,90,5,1,1,1,450,NaN,NaN,NaN
+#5.0,0,100,0,90,5,1,1,1,760,NaN,NaN,NaN
+#5.0,0,200,0,90,5,1,1,1,150,NaN,NaN,NaN
+#5.0,0,200,0,90,5,1,1,1,250,NaN,NaN,NaN
+#5.0,0,200,0,90,5,1,1,1,450,NaN,NaN,NaN
+#5.0,0,200,0,90,5,1,1,1,760,NaN,NaN,NaN
+#5.0,0,300,0,90,5,1,1,1,150,NaN,NaN,NaN
+#5.0,0,300,0,90,5,1,1,1,250,NaN,NaN,NaN
+#5.0,0,300,0,90,5,1,1,1,450,NaN,NaN,NaN
+#5.0,0,300,0,90,5,1,1,1,760,NaN,NaN,NaN
+#5.0,0,500,0,90,5,1,1,1,150,NaN,NaN,NaN
+#5.0,0,500,0,90,5,1,1,1,250,NaN,NaN,NaN
+#5.0,0,500,0,90,5,1,1,1,450,NaN,NaN,NaN
+#5.0,0,500,0,90,5,1,1,1,760,NaN,NaN,NaN
+#6.0,0,10,0,90,5,1,1,1,150,NaN,NaN,NaN
+#6.0,0,10,0,90,5,1,1,1,250,NaN,NaN,NaN
+#6.0,0,10,0,90,5,1,1,1,450,NaN,NaN,NaN
+#6.0,0,10,0,90,5,1,1,1,760,NaN,NaN,NaN
+#6.0,0,15,0,90,5,1,1,1,150,NaN,NaN,NaN
+#6.0,0,15,0,90,5,1,1,1,250,NaN,NaN,NaN
+#6.0,0,15,0,90,5,1,1,1,450,NaN,NaN,NaN
+#6.0,0,15,0,90,5,1,1,1,760,NaN,NaN,NaN
+#6.0,0,20,0,90,5,1,1,1,150,NaN,NaN,NaN
+#6.0,0,20,0,90,5,1,1,1,250,NaN,NaN,NaN
+#6.0,0,20,0,90,5,1,1,1,450,NaN,NaN,NaN
+#6.0,0,20,0,90,5,1,1,1,760,NaN,NaN,NaN
+#6.0,0,30,0,90,5,1,1,1,150,NaN,NaN,NaN
+#6.0,0,30,0,90,5,1,1,1,250,NaN,NaN,NaN
+#6.0,0,30,0,90,5,1,1,1,450,NaN,NaN,NaN
+#6.0,0,30,0,90,5,1,1,1,760,NaN,NaN,NaN
+#6.0,0,40,0,90,5,1,1,1,150,NaN,NaN,NaN
+#6.0,0,40,0,90,5,1,1,1,250,NaN,NaN,NaN
+#6.0,0,40,0,90,5,1,1,1,450,NaN,NaN,NaN
+#6.0,0,40,0,90,5,1,1,1,760,NaN,NaN,NaN
+#6.0,0,50,0,90,5,1,1,1,150,NaN,NaN,NaN
+#6.0,0,50,0,90,5,1,1,1,250,NaN,NaN,NaN
+#6.0,0,50,0,90,5,1,1,1,450,NaN,NaN,NaN
+#6.0,0,50,0,90,5,1,1,1,760,NaN,NaN,NaN
+#6.0,0,60,0,90,5,1,1,1,150,NaN,NaN,NaN
+#6.0,0,60,0,90,5,1,1,1,250,NaN,NaN,NaN
+#6.0,0,60,0,90,5,1,1,1,450,NaN,NaN,NaN
+#6.0,0,60,0,90,5,1,1,1,760,NaN,NaN,NaN
+#6.0,0,80,0,90,5,1,1,1,150,NaN,NaN,NaN
+#6.0,0,80,0,90,5,1,1,1,250,NaN,NaN,NaN
+#6.0,0,80,0,90,5,1,1,1,450,NaN,NaN,NaN
+#6.0,0,80,0,90,5,1,1,1,760,NaN,NaN,NaN
+#6.0,0,100,0,90,5,1,1,1,150,NaN,NaN,NaN
+#6.0,0,100,0,90,5,1,1,1,250,NaN,NaN,NaN
+#6.0,0,100,0,90,5,1,1,1,450,NaN,NaN,NaN
+#6.0,0,100,0,90,5,1,1,1,760,NaN,NaN,NaN
+#6.0,0,200,0,90,5,1,1,1,150,NaN,NaN,NaN
+#6.0,0,200,0,90,5,1,1,1,250,NaN,NaN,NaN
+#6.0,0,200,0,90,5,1,1,1,450,NaN,NaN,NaN
+#6.0,0,200,0,90,5,1,1,1,760,NaN,NaN,NaN
+#6.0,0,300,0,90,5,1,1,1,150,NaN,NaN,NaN
+#6.0,0,300,0,90,5,1,1,1,250,NaN,NaN,NaN
+#6.0,0,300,0,90,5,1,1,1,450,NaN,NaN,NaN
+#6.0,0,300,0,90,5,1,1,1,760,NaN,NaN,NaN
+#6.0,0,500,0,90,5,1,1,1,150,NaN,NaN,NaN
+#6.0,0,500,0,90,5,1,1,1,250,NaN,NaN,NaN
+#6.0,0,500,0,90,5,1,1,1,450,NaN,NaN,NaN
+#6.0,0,500,0,90,5,1,1,1,760,NaN,NaN,NaN
diff --git a/src/test/resources/gmm/motazedian-atkinson-2005-results.csv b/src/test/resources/gmm/motazedian-atkinson-2005-results.csv
new file mode 100644
index 0000000000000000000000000000000000000000..7f5d2efc42ceda788d72568af9241beda885449f
--- /dev/null
+++ b/src/test/resources/gmm/motazedian-atkinson-2005-results.csv
@@ -0,0 +1,1449 @@
+0-MA_05-PGA,0.1976397357,0.6447238260
+1-MA_05-PGA,0.1733111734,0.6447238260
+2-MA_05-PGA,0.1493138153,0.6447238260
+3-MA_05-PGA,0.1281345234,0.6447238260
+4-MA_05-PGA,0.1103559516,0.6447238260
+5-MA_05-PGA,0.0837169152,0.6447238260
+6-MA_05-PGA,0.0656520882,0.6447238260
+7-MA_05-PGA,0.0402521396,0.6447238260
+8-MA_05-PGA,0.0276879091,0.6447238260
+9-MA_05-PGA,0.0158743238,0.6447238260
+10-MA_05-PGA,0.0104921408,0.6447238260
+11-MA_05-PGA,0.0075171864,0.6447238260
+12-MA_05-PGA,0.0056718620,0.6447238260
+13-MA_05-PGA,0.0038822965,0.6447238260
+14-MA_05-PGA,0.0035377913,0.6447238260
+15-MA_05-PGA,0.0022927802,0.6447238260
+16-MA_05-PGA,0.0015756657,0.6447238260
+17-MA_05-PGA,0.0008099872,0.6447238260
+18-MA_05-PGA,0.0002486528,0.6447238260
+19-MA_05-PGA,0.3834955046,0.6447238260
+20-MA_05-PGA,0.3609520799,0.6447238260
+21-MA_05-PGA,0.3345274942,0.6447238260
+22-MA_05-PGA,0.3069923030,0.6447238260
+23-MA_05-PGA,0.2802353431,0.6447238260
+24-MA_05-PGA,0.2326877983,0.6447238260
+25-MA_05-PGA,0.1944635322,0.6447238260
+26-MA_05-PGA,0.1310755112,0.6447238260
+27-MA_05-PGA,0.0949998679,0.6447238260
+28-MA_05-PGA,0.0577968253,0.6447238260
+29-MA_05-PGA,0.0395965597,0.6447238260
+30-MA_05-PGA,0.0291092798,0.6447238260
+31-MA_05-PGA,0.0224106742,0.6447238260
+32-MA_05-PGA,0.0157522762,0.6447238260
+33-MA_05-PGA,0.0143474004,0.6447238260
+34-MA_05-PGA,0.0093034312,0.6447238260
+35-MA_05-PGA,0.0063950175,0.6447238260
+36-MA_05-PGA,0.0032880424,0.6447238260
+37-MA_05-PGA,0.0010095012,0.6447238260
+38-MA_05-PGA,0.6482123936,0.6447238260
+39-MA_05-PGA,0.6273665754,0.6447238260
+40-MA_05-PGA,0.6010292334,0.6447238260
+41-MA_05-PGA,0.5712104230,0.6447238260
+42-MA_05-PGA,0.5397057810,0.6447238260
+43-MA_05-PGA,0.4769031894,0.6447238260
+44-MA_05-PGA,0.4193813571,0.6447238260
+45-MA_05-PGA,0.3083519277,0.6447238260
+46-MA_05-PGA,0.2355488110,0.6447238260
+47-MA_05-PGA,0.1523915344,0.6447238260
+48-MA_05-PGA,0.1083571763,0.6447238260
+49-MA_05-PGA,0.0817955060,0.6447238260
+50-MA_05-PGA,0.0642830470,0.6447238260
+51-MA_05-PGA,0.0464453907,0.6447238260
+52-MA_05-PGA,0.0422735744,0.6447238260
+53-MA_05-PGA,0.0274333562,0.6447238260
+54-MA_05-PGA,0.0188631994,0.6447238260
+55-MA_05-PGA,0.0097012369,0.6447238260
+56-MA_05-PGA,0.0029790216,0.6447238260
+57-MA_05-PGA,0.0048742260,0.6447238260
+58-MA_05-PGA,0.0027696969,0.6447238260
+59-MA_05-PGA,0.0197672689,0.6447238260
+60-MA_05-PGA,0.0112324181,0.6447238260
+61-MA_05-PGA,0.0582428235,0.6447238260
+62-MA_05-PGA,0.0330955049,0.6447238260
+0-MA_05-PGV,0.0072385133,0.6447238260
+1-MA_05-PGV,0.0063543300,0.6447238260
+2-MA_05-PGV,0.0054819176,0.6447238260
+3-MA_05-PGV,0.0047116696,0.6447238260
+4-MA_05-PGV,0.0040648278,0.6447238260
+5-MA_05-PGV,0.0030949594,0.6447238260
+6-MA_05-PGV,0.0024365911,0.6447238260
+7-MA_05-PGV,0.0015092292,0.6447238260
+8-MA_05-PGV,0.0010490981,0.6447238260
+9-MA_05-PGV,0.0006144375,0.6447238260
+10-MA_05-PGV,0.0004149292,0.6447238260
+11-MA_05-PGV,0.0003037536,0.6447238260
+12-MA_05-PGV,0.0002341868,0.6447238260
+13-MA_05-PGV,0.0001673743,0.6447238260
+14-MA_05-PGV,0.0001592613,0.6447238260
+15-MA_05-PGV,0.0001150035,0.6447238260
+16-MA_05-PGV,0.0000880640,0.6447238260
+17-MA_05-PGV,0.0000562079,0.6447238260
+18-MA_05-PGV,0.0000266012,0.6447238260
+19-MA_05-PGV,0.0218928030,0.6447238260
+20-MA_05-PGV,0.0206214907,0.6447238260
+21-MA_05-PGV,0.0191310409,0.6447238260
+22-MA_05-PGV,0.0175775996,0.6447238260
+23-MA_05-PGV,0.0160676618,0.6447238260
+24-MA_05-PGV,0.0133832458,0.6447238260
+25-MA_05-PGV,0.0112236650,0.6447238260
+26-MA_05-PGV,0.0076374926,0.6447238260
+27-MA_05-PGV,0.0055916431,0.6447238260
+28-MA_05-PGV,0.0034736939,0.6447238260
+29-MA_05-PGV,0.0024309490,0.6447238260
+30-MA_05-PGV,0.0018257747,0.6447238260
+31-MA_05-PGV,0.0014361567,0.6447238260
+32-MA_05-PGV,0.0010539108,0.6447238260
+33-MA_05-PGV,0.0010022632,0.6447238260
+34-MA_05-PGV,0.0007240729,0.6447238260
+35-MA_05-PGV,0.0005545569,0.6447238260
+36-MA_05-PGV,0.0003540030,0.6447238260
+37-MA_05-PGV,0.0001675516,0.6447238260
+38-MA_05-PGV,0.0592395658,0.6447238260
+39-MA_05-PGV,0.0573676707,0.6447238260
+40-MA_05-PGV,0.0550024208,0.6447238260
+41-MA_05-PGV,0.0523241730,0.6447238260
+42-MA_05-PGV,0.0494940691,0.6447238260
+43-MA_05-PGV,0.0438508404,0.6447238260
+44-MA_05-PGV,0.0386798045,0.6447238260
+45-MA_05-PGV,0.0286892361,0.6447238260
+46-MA_05-PGV,0.0221271742,0.6447238260
+47-MA_05-PGV,0.0146093861,0.6447238260
+48-MA_05-PGV,0.0106078475,0.6447238260
+49-MA_05-PGV,0.0081792680,0.6447238260
+50-MA_05-PGV,0.0065668507,0.6447238260
+51-MA_05-PGV,0.0049527544,0.6447238260
+52-MA_05-PGV,0.0047062905,0.6447238260
+53-MA_05-PGV,0.0034022201,0.6447238260
+54-MA_05-PGV,0.0026063667,0.6447238260
+55-MA_05-PGV,0.0016641173,0.6447238260
+56-MA_05-PGV,0.0007877343,0.6447238260
+57-MA_05-PGV,0.0002533526,0.6447238260
+58-MA_05-PGV,0.0001059117,0.6447238260
+59-MA_05-PGV,0.0015943981,0.6447238260
+60-MA_05-PGV,0.0006665230,0.6447238260
+61-MA_05-PGV,0.0074867570,0.6447238260
+62-MA_05-PGV,0.0031297679,0.6447238260
+0-MA_05-SA0P01,0.1976397357,0.6447238260
+1-MA_05-SA0P01,0.1733111734,0.6447238260
+2-MA_05-SA0P01,0.1493138153,0.6447238260
+3-MA_05-SA0P01,0.1281345234,0.6447238260
+4-MA_05-SA0P01,0.1103559516,0.6447238260
+5-MA_05-SA0P01,0.0837169152,0.6447238260
+6-MA_05-SA0P01,0.0656520882,0.6447238260
+7-MA_05-SA0P01,0.0402521396,0.6447238260
+8-MA_05-SA0P01,0.0276879091,0.6447238260
+9-MA_05-SA0P01,0.0158743238,0.6447238260
+10-MA_05-SA0P01,0.0104921408,0.6447238260
+11-MA_05-SA0P01,0.0075171864,0.6447238260
+12-MA_05-SA0P01,0.0056718620,0.6447238260
+13-MA_05-SA0P01,0.0038822965,0.6447238260
+14-MA_05-SA0P01,0.0035377913,0.6447238260
+15-MA_05-SA0P01,0.0022927802,0.6447238260
+16-MA_05-SA0P01,0.0015756657,0.6447238260
+17-MA_05-SA0P01,0.0008099872,0.6447238260
+18-MA_05-SA0P01,0.0002486528,0.6447238260
+19-MA_05-SA0P01,0.3834955046,0.6447238260
+20-MA_05-SA0P01,0.3609520799,0.6447238260
+21-MA_05-SA0P01,0.3345274942,0.6447238260
+22-MA_05-SA0P01,0.3069923030,0.6447238260
+23-MA_05-SA0P01,0.2802353431,0.6447238260
+24-MA_05-SA0P01,0.2326877983,0.6447238260
+25-MA_05-SA0P01,0.1944635322,0.6447238260
+26-MA_05-SA0P01,0.1310755112,0.6447238260
+27-MA_05-SA0P01,0.0949998679,0.6447238260
+28-MA_05-SA0P01,0.0577968253,0.6447238260
+29-MA_05-SA0P01,0.0395965597,0.6447238260
+30-MA_05-SA0P01,0.0291092798,0.6447238260
+31-MA_05-SA0P01,0.0224106742,0.6447238260
+32-MA_05-SA0P01,0.0157522762,0.6447238260
+33-MA_05-SA0P01,0.0143474004,0.6447238260
+34-MA_05-SA0P01,0.0093034312,0.6447238260
+35-MA_05-SA0P01,0.0063950175,0.6447238260
+36-MA_05-SA0P01,0.0032880424,0.6447238260
+37-MA_05-SA0P01,0.0010095012,0.6447238260
+38-MA_05-SA0P01,0.6482123936,0.6447238260
+39-MA_05-SA0P01,0.6273665754,0.6447238260
+40-MA_05-SA0P01,0.6010292334,0.6447238260
+41-MA_05-SA0P01,0.5712104230,0.6447238260
+42-MA_05-SA0P01,0.5397057810,0.6447238260
+43-MA_05-SA0P01,0.4769031894,0.6447238260
+44-MA_05-SA0P01,0.4193813571,0.6447238260
+45-MA_05-SA0P01,0.3083519277,0.6447238260
+46-MA_05-SA0P01,0.2355488110,0.6447238260
+47-MA_05-SA0P01,0.1523915344,0.6447238260
+48-MA_05-SA0P01,0.1083571763,0.6447238260
+49-MA_05-SA0P01,0.0817955060,0.6447238260
+50-MA_05-SA0P01,0.0642830470,0.6447238260
+51-MA_05-SA0P01,0.0464453907,0.6447238260
+52-MA_05-SA0P01,0.0422735744,0.6447238260
+53-MA_05-SA0P01,0.0274333562,0.6447238260
+54-MA_05-SA0P01,0.0188631994,0.6447238260
+55-MA_05-SA0P01,0.0097012369,0.6447238260
+56-MA_05-SA0P01,0.0029790216,0.6447238260
+57-MA_05-SA0P01,0.0048742260,0.6447238260
+58-MA_05-SA0P01,0.0027696969,0.6447238260
+59-MA_05-SA0P01,0.0197672689,0.6447238260
+60-MA_05-SA0P01,0.0112324181,0.6447238260
+61-MA_05-SA0P01,0.0582428235,0.6447238260
+62-MA_05-SA0P01,0.0330955049,0.6447238260
+0-MA_05-SA0P02,0.2267133659,0.6447238260
+1-MA_05-SA0P02,0.1987831764,0.6447238260
+2-MA_05-SA0P02,0.1712341428,0.6447238260
+3-MA_05-SA0P02,0.1469212442,0.6447238260
+4-MA_05-SA0P02,0.1265131642,0.6447238260
+5-MA_05-SA0P02,0.0959364089,0.6447238260
+6-MA_05-SA0P02,0.0752036198,0.6447238260
+7-MA_05-SA0P02,0.0460582751,0.6447238260
+8-MA_05-SA0P02,0.0316463613,0.6447238260
+9-MA_05-SA0P02,0.0181027319,0.6447238260
+10-MA_05-SA0P02,0.0119377017,0.6447238260
+11-MA_05-SA0P02,0.0085332916,0.6447238260
+12-MA_05-SA0P02,0.0064237708,0.6447238260
+13-MA_05-SA0P02,0.0043768028,0.6447238260
+14-MA_05-SA0P02,0.0039701127,0.6447238260
+15-MA_05-SA0P02,0.0025435259,0.6447238260
+16-MA_05-SA0P02,0.0017279827,0.6447238260
+17-MA_05-SA0P02,0.0008680706,0.6447238260
+18-MA_05-SA0P02,0.0002544905,0.6447238260
+19-MA_05-SA0P02,0.4355764757,0.6447238260
+20-MA_05-SA0P02,0.4099384396,0.6447238260
+21-MA_05-SA0P02,0.3798870596,0.6447238260
+22-MA_05-SA0P02,0.3485734356,0.6447238260
+23-MA_05-SA0P02,0.3181457478,0.6447238260
+24-MA_05-SA0P02,0.2640780780,0.6447238260
+25-MA_05-SA0P02,0.2206156982,0.6447238260
+26-MA_05-SA0P02,0.1485525638,0.6447238260
+27-MA_05-SA0P02,0.1075511031,0.6447238260
+28-MA_05-SA0P02,0.0652876202,0.6447238260
+29-MA_05-SA0P02,0.0446274741,0.6447238260
+30-MA_05-SA0P02,0.0327331073,0.6447238260
+31-MA_05-SA0P02,0.0251430533,0.6447238260
+32-MA_05-SA0P02,0.0175920157,0.6447238260
+33-MA_05-SA0P02,0.0159496454,0.6447238260
+34-MA_05-SA0P02,0.0102241767,0.6447238260
+35-MA_05-SA0P02,0.0069475333,0.6447238260
+36-MA_05-SA0P02,0.0034908405,0.6447238260
+37-MA_05-SA0P02,0.0010235343,0.6447238260
+38-MA_05-SA0P02,0.7297054184,0.6447238260
+39-MA_05-SA0P02,0.7061953982,0.6447238260
+40-MA_05-SA0P02,0.6764923551,0.6447238260
+41-MA_05-SA0P02,0.6428634510,0.6447238260
+42-MA_05-SA0P02,0.6073339670,0.6447238260
+43-MA_05-SA0P02,0.5365104888,0.6447238260
+44-MA_05-SA0P02,0.4716457139,0.6447238260
+45-MA_05-SA0P02,0.3464571154,0.6447238260
+46-MA_05-SA0P02,0.2643868358,0.6447238260
+47-MA_05-SA0P02,0.1706792820,0.6447238260
+48-MA_05-SA0P02,0.1210904026,0.6447238260
+49-MA_05-SA0P02,0.0912013201,0.6447238260
+50-MA_05-SA0P02,0.0715124009,0.6447238260
+51-MA_05-SA0P02,0.0514332748,0.6447238260
+52-MA_05-SA0P02,0.0465994263,0.6447238260
+53-MA_05-SA0P02,0.0298953732,0.6447238260
+54-MA_05-SA0P02,0.0203210959,0.6447238260
+55-MA_05-SA0P02,0.0102132889,0.6447238260
+56-MA_05-SA0P02,0.0029951430,0.6447238260
+57-MA_05-SA0P02,0.0053469363,0.6447238260
+58-MA_05-SA0P02,0.0031507099,0.6447238260
+59-MA_05-SA0P02,0.0214809366,0.6447238260
+60-MA_05-SA0P02,0.0126577533,0.6447238260
+61-MA_05-SA0P02,0.0627599733,0.6447238260
+62-MA_05-SA0P02,0.0369816397,0.6447238260
+0-MA_05-SA0P03,0.2600638486,0.6447238260
+1-MA_05-SA0P03,0.2279988672,0.6447238260
+2-MA_05-SA0P03,0.1963725298,0.6447238260
+3-MA_05-SA0P03,0.1684624207,0.6447238260
+4-MA_05-SA0P03,0.1450359540,0.6447238260
+5-MA_05-SA0P03,0.1099394850,0.6447238260
+6-MA_05-SA0P03,0.0861447759,0.6447238260
+7-MA_05-SA0P03,0.0527019115,0.6447238260
+8-MA_05-SA0P03,0.0361707409,0.6447238260
+9-MA_05-SA0P03,0.0206439598,0.6447238260
+10-MA_05-SA0P03,0.0135824255,0.6447238260
+11-MA_05-SA0P03,0.0096867448,0.6447238260
+12-MA_05-SA0P03,0.0072753588,0.6447238260
+13-MA_05-SA0P03,0.0049342967,0.6447238260
+14-MA_05-SA0P03,0.0044552641,0.6447238260
+15-MA_05-SA0P03,0.0028216940,0.6447238260
+16-MA_05-SA0P03,0.0018950239,0.6447238260
+17-MA_05-SA0P03,0.0009303190,0.6447238260
+18-MA_05-SA0P03,0.0002604652,0.6447238260
+19-MA_05-SA0P03,0.4947303525,0.6447238260
+20-MA_05-SA0P03,0.4655729488,0.6447238260
+21-MA_05-SA0P03,0.4313970617,0.6447238260
+22-MA_05-SA0P03,0.3957866005,0.6447238260
+23-MA_05-SA0P03,0.3611846946,0.6447238260
+24-MA_05-SA0P03,0.2997030002,0.6447238260
+25-MA_05-SA0P03,0.2502849029,0.6447238260
+26-MA_05-SA0P03,0.1683599324,0.6447238260
+27-MA_05-SA0P03,0.1217605879,0.6447238260
+28-MA_05-SA0P03,0.0737492644,0.6447238260
+29-MA_05-SA0P03,0.0502975880,0.6447238260
+30-MA_05-SA0P03,0.0368080667,0.6447238260
+31-MA_05-SA0P03,0.0282085726,0.6447238260
+32-MA_05-SA0P03,0.0196466219,0.6447238260
+33-MA_05-SA0P03,0.0177308210,0.6447238260
+34-MA_05-SA0P03,0.0112360470,0.6447238260
+35-MA_05-SA0P03,0.0075477853,0.6447238260
+36-MA_05-SA0P03,0.0037061467,0.6447238260
+37-MA_05-SA0P03,0.0010377624,0.6447238260
+38-MA_05-SA0P03,0.8214437165,0.6447238260
+39-MA_05-SA0P03,0.7949290893,0.6447238260
+40-MA_05-SA0P03,0.7614303616,0.6447238260
+41-MA_05-SA0P03,0.7235046841,0.6447238260
+42-MA_05-SA0P03,0.6834363470,0.6447238260
+43-MA_05-SA0P03,0.6035680009,0.6447238260
+44-MA_05-SA0P03,0.5304233860,0.6447238260
+45-MA_05-SA0P03,0.3892712257,0.6447238260
+46-MA_05-SA0P03,0.2967554735,0.6447238260
+47-MA_05-SA0P03,0.1911616510,0.6447238260
+48-MA_05-SA0P03,0.1353199308,0.6447238260
+49-MA_05-SA0P03,0.1016887258,0.6447238260
+50-MA_05-SA0P03,0.0795547773,0.6447238260
+51-MA_05-SA0P03,0.0569568200,0.6447238260
+52-MA_05-SA0P03,0.0513679424,0.6447238260
+53-MA_05-SA0P03,0.0325783448,0.6447238260
+54-MA_05-SA0P03,0.0218916701,0.6447238260
+55-MA_05-SA0P03,0.0107523682,0.6447238260
+56-MA_05-SA0P03,0.0030113516,0.6447238260
+57-MA_05-SA0P03,0.0059325307,0.6447238260
+58-MA_05-SA0P03,0.0035598510,0.6447238260
+59-MA_05-SA0P03,0.0236099676,0.6447238260
+60-MA_05-SA0P03,0.0141673041,0.6447238260
+61-MA_05-SA0P03,0.0684004116,0.6447238260
+62-MA_05-SA0P03,0.0410440814,0.6447238260
+0-MA_05-SA0P05,0.3422044918,0.6447238260
+1-MA_05-SA0P05,0.2999430587,0.6447238260
+2-MA_05-SA0P05,0.2582625752,0.6447238260
+3-MA_05-SA0P05,0.2214827545,0.6447238260
+4-MA_05-SA0P05,0.1906143497,0.6447238260
+5-MA_05-SA0P05,0.1443757254,0.6447238260
+6-MA_05-SA0P05,0.1130340653,0.6447238260
+7-MA_05-SA0P05,0.0690023314,0.6447238260
+8-MA_05-SA0P05,0.0472524845,0.6447238260
+9-MA_05-SA0P05,0.0268466915,0.6447238260
+10-MA_05-SA0P05,0.0175829019,0.6447238260
+11-MA_05-SA0P05,0.0124824661,0.6447238260
+12-MA_05-SA0P05,0.0093321816,0.6447238260
+13-MA_05-SA0P05,0.0062713613,0.6447238260
+14-MA_05-SA0P05,0.0056106696,0.6447238260
+15-MA_05-SA0P05,0.0034726212,0.6447238260
+16-MA_05-SA0P05,0.0022791101,0.6447238260
+17-MA_05-SA0P05,0.0010685274,0.6447238260
+18-MA_05-SA0P05,0.0002728387,0.6447238260
+19-MA_05-SA0P05,0.6382294414,0.6447238260
+20-MA_05-SA0P05,0.6005178601,0.6447238260
+21-MA_05-SA0P05,0.5563172776,0.6447238260
+22-MA_05-SA0P05,0.5102637153,0.6447238260
+23-MA_05-SA0P05,0.4655172405,0.6447238260
+24-MA_05-SA0P05,0.3860189016,0.6447238260
+25-MA_05-SA0P05,0.3221299743,0.6447238260
+26-MA_05-SA0P05,0.2162499051,0.6447238260
+27-MA_05-SA0P05,0.1560595936,0.6447238260
+28-MA_05-SA0P05,0.0941047191,0.6447238260
+29-MA_05-SA0P05,0.0638905849,0.6447238260
+30-MA_05-SA0P05,0.0465430194,0.6447238260
+31-MA_05-SA0P05,0.0355064540,0.6447238260
+32-MA_05-SA0P05,0.0245037445,0.6447238260
+33-MA_05-SA0P05,0.0219121238,0.6447238260
+34-MA_05-SA0P05,0.0135701281,0.6447238260
+35-MA_05-SA0P05,0.0089083512,0.6447238260
+36-MA_05-SA0P05,0.0041774167,0.6447238260
+37-MA_05-SA0P05,0.0010668149,0.6447238260
+38-MA_05-SA0P05,1.0409701914,0.6447238260
+39-MA_05-SA0P05,1.0072456547,0.6447238260
+40-MA_05-SA0P05,0.9646389284,0.6447238260
+41-MA_05-SA0P05,0.9164031446,0.6447238260
+42-MA_05-SA0P05,0.8654442047,0.6447238260
+43-MA_05-SA0P05,0.7638748068,0.6447238260
+44-MA_05-SA0P05,0.6708666553,0.6447238260
+45-MA_05-SA0P05,0.4914257817,0.6447238260
+46-MA_05-SA0P05,0.3738665064,0.6447238260
+47-MA_05-SA0P05,0.2397953205,0.6447238260
+48-MA_05-SA0P05,0.1689918867,0.6447238260
+49-MA_05-SA0P05,0.1264201112,0.6447238260
+50-MA_05-SA0P05,0.0984546141,0.6447238260
+51-MA_05-SA0P05,0.0698471752,0.6447238260
+52-MA_05-SA0P05,0.0624187934,0.6447238260
+53-MA_05-SA0P05,0.0386882502,0.6447238260
+54-MA_05-SA0P05,0.0254063592,0.6447238260
+55-MA_05-SA0P05,0.0119173898,0.6447238260
+56-MA_05-SA0P05,0.0030440324,0.6447238260
+57-MA_05-SA0P05,0.0072550500,0.6447238260
+58-MA_05-SA0P05,0.0046066389,0.6447238260
+59-MA_05-SA0P05,0.0283341500,0.6447238260
+60-MA_05-SA0P05,0.0179909439,0.6447238260
+61-MA_05-SA0P05,0.0807125531,0.6447238260
+62-MA_05-SA0P05,0.0512489351,0.6447238260
+0-MA_05-SA0P075,0.4458199464,0.6447238260
+1-MA_05-SA0P075,0.3907107304,0.6447238260
+2-MA_05-SA0P075,0.3363612083,0.6447238260
+3-MA_05-SA0P075,0.2884042271,0.6447238260
+4-MA_05-SA0P075,0.2481572933,0.6447238260
+5-MA_05-SA0P075,0.1878756327,0.6447238260
+6-MA_05-SA0P075,0.1470207312,0.6447238260
+7-MA_05-SA0P075,0.0896377131,0.6447238260
+8-MA_05-SA0P075,0.0613047060,0.6447238260
+9-MA_05-SA0P075,0.0347398141,0.6447238260
+10-MA_05-SA0P075,0.0226926991,0.6447238260
+11-MA_05-SA0P075,0.0160676127,0.6447238260
+12-MA_05-SA0P075,0.0119808525,0.6447238260
+13-MA_05-SA0P075,0.0080088626,0.6447238260
+14-MA_05-SA0P075,0.0071273225,0.6447238260
+15-MA_05-SA0P075,0.0043533413,0.6447238260
+16-MA_05-SA0P075,0.0028195669,0.6447238260
+17-MA_05-SA0P075,0.0012873734,0.6447238260
+18-MA_05-SA0P075,0.0003117642,0.6447238260
+19-MA_05-SA0P075,0.8038529212,0.6447238260
+20-MA_05-SA0P075,0.7562848271,0.6447238260
+21-MA_05-SA0P075,0.7005330561,0.6447238260
+22-MA_05-SA0P075,0.6424458187,0.6447238260
+23-MA_05-SA0P075,0.5860092452,0.6447238260
+24-MA_05-SA0P075,0.4857481125,0.6447238260
+25-MA_05-SA0P075,0.4051810414,0.6447238260
+26-MA_05-SA0P075,0.2716866543,0.6447238260
+27-MA_05-SA0P075,0.1958240911,0.6447238260
+28-MA_05-SA0P075,0.1177815554,0.6447238260
+29-MA_05-SA0P075,0.0797578511,0.6447238260
+30-MA_05-SA0P075,0.0579500338,0.6447238260
+31-MA_05-SA0P075,0.0440925139,0.6447238260
+32-MA_05-SA0P075,0.0302691749,0.6447238260
+33-MA_05-SA0P075,0.0269252013,0.6447238260
+34-MA_05-SA0P075,0.0164557215,0.6447238260
+35-MA_05-SA0P075,0.0106606715,0.6447238260
+36-MA_05-SA0P075,0.0048685461,0.6447238260
+37-MA_05-SA0P075,0.0011791905,0.6447238260
+38-MA_05-SA0P075,1.2817778735,0.6447238260
+39-MA_05-SA0P075,1.2401640417,0.6447238260
+40-MA_05-SA0P075,1.1875909395,0.6447238260
+41-MA_05-SA0P075,1.1280731811,0.6447238260
+42-MA_05-SA0P075,1.0651967931,0.6447238260
+43-MA_05-SA0P075,0.9398792798,0.6447238260
+44-MA_05-SA0P075,0.8251325002,0.6447238260
+45-MA_05-SA0P075,0.6037829946,0.6447238260
+46-MA_05-SA0P075,0.4588059139,0.6447238260
+47-MA_05-SA0P075,0.2935441056,0.6447238260
+48-MA_05-SA0P075,0.2063409403,0.6447238260
+49-MA_05-SA0P075,0.1539601413,0.6447238260
+50-MA_05-SA0P075,0.1195896006,0.6447238260
+51-MA_05-SA0P075,0.0843966750,0.6447238260
+52-MA_05-SA0P075,0.0750245516,0.6447238260
+53-MA_05-SA0P075,0.0458915345,0.6447238260
+54-MA_05-SA0P075,0.0297408700,0.6447238260
+55-MA_05-SA0P075,0.0135862666,0.6447238260
+56-MA_05-SA0P075,0.0032913530,0.6447238260
+57-MA_05-SA0P075,0.0088194374,0.6447238260
+58-MA_05-SA0P075,0.0060955450,0.6447238260
+59-MA_05-SA0P075,0.0333175786,0.6447238260
+60-MA_05-SA0P075,0.0230274101,0.6447238260
+61-MA_05-SA0P075,0.0928363123,0.6447238260
+62-MA_05-SA0P075,0.0641637215,0.6447238260
+0-MA_05-SA0P1,0.4881941421,0.6447238260
+1-MA_05-SA0P1,0.4278886187,0.6447238260
+2-MA_05-SA0P1,0.3684126963,0.6447238260
+3-MA_05-SA0P1,0.3159304222,0.6447238260
+4-MA_05-SA0P1,0.2718839553,0.6447238260
+5-MA_05-SA0P1,0.2059070666,0.6447238260
+6-MA_05-SA0P1,0.1611878890,0.6447238260
+7-MA_05-SA0P1,0.0983660822,0.6447238260
+8-MA_05-SA0P1,0.0673380809,0.6447238260
+9-MA_05-SA0P1,0.0382323892,0.6447238260
+10-MA_05-SA0P1,0.0250226635,0.6447238260
+11-MA_05-SA0P1,0.0177518972,0.6447238260
+12-MA_05-SA0P1,0.0132625947,0.6447238260
+13-MA_05-SA0P1,0.0089003750,0.6447238260
+14-MA_05-SA0P1,0.0079517347,0.6447238260
+15-MA_05-SA0P1,0.0049046219,0.6447238260
+16-MA_05-SA0P1,0.0032078489,0.6447238260
+17-MA_05-SA0P1,0.0014936014,0.6447238260
+18-MA_05-SA0P1,0.0003761450,0.6447238260
+19-MA_05-SA0P1,0.8725053045,0.6447238260
+20-MA_05-SA0P1,0.8209310020,0.6447238260
+21-MA_05-SA0P1,0.7604827246,0.6447238260
+22-MA_05-SA0P1,0.6975008270,0.6447238260
+23-MA_05-SA0P1,0.6363070492,0.6447238260
+24-MA_05-SA0P1,0.5275895595,0.6447238260
+25-MA_05-SA0P1,0.4402208526,0.6447238260
+26-MA_05-SA0P1,0.2954360601,0.6447238260
+27-MA_05-SA0P1,0.2131365992,0.6447238260
+28-MA_05-SA0P1,0.1284367948,0.6447238260
+29-MA_05-SA0P1,0.0871405546,0.6447238260
+30-MA_05-SA0P1,0.0634368028,0.6447238260
+31-MA_05-SA0P1,0.0483611066,0.6447238260
+32-MA_05-SA0P1,0.0333291425,0.6447238260
+33-MA_05-SA0P1,0.0297630763,0.6447238260
+34-MA_05-SA0P1,0.0183687460,0.6447238260
+35-MA_05-SA0P1,0.0120169430,0.6447238260
+36-MA_05-SA0P1,0.0055963591,0.6447238260
+37-MA_05-SA0P1,0.0014095735,0.6447238260
+38-MA_05-SA0P1,1.3824956253,0.6447238260
+39-MA_05-SA0P1,1.3376819115,0.6447238260
+40-MA_05-SA0P1,1.2810656111,0.6447238260
+41-MA_05-SA0P1,1.2169696692,0.6447238260
+42-MA_05-SA0P1,1.1492555888,0.6447238260
+43-MA_05-SA0P1,1.0142919622,0.6447238260
+44-MA_05-SA0P1,0.8907065330,0.6447238260
+45-MA_05-SA0P1,0.6522816819,0.6447238260
+46-MA_05-SA0P1,0.4960901830,0.6447238260
+47-MA_05-SA0P1,0.3179824078,0.6447238260
+48-MA_05-SA0P1,0.2239431939,0.6447238260
+49-MA_05-SA0P1,0.1674148863,0.6447238260
+50-MA_05-SA0P1,0.1302920586,0.6447238260
+51-MA_05-SA0P1,0.0923072290,0.6447238260
+52-MA_05-SA0P1,0.0823768629,0.6447238260
+53-MA_05-SA0P1,0.0508830340,0.6447238260
+54-MA_05-SA0P1,0.0332995500,0.6447238260
+55-MA_05-SA0P1,0.0155124037,0.6447238260
+56-MA_05-SA0P1,0.0039079486,0.6447238260
+57-MA_05-SA0P1,0.0100657844,0.6447238260
+58-MA_05-SA0P1,0.0067087632,0.6447238260
+59-MA_05-SA0P1,0.0376758934,0.6447238260
+60-MA_05-SA0P1,0.0251106758,0.6447238260
+61-MA_05-SA0P1,0.1042775914,0.6447238260
+62-MA_05-SA0P1,0.0695001645,0.6447238260
+0-MA_05-SA0P15,0.4854605971,0.6447238260
+1-MA_05-SA0P15,0.4255964290,0.6447238260
+2-MA_05-SA0P15,0.3665515413,0.6447238260
+3-MA_05-SA0P15,0.3144450510,0.6447238260
+4-MA_05-SA0P15,0.2707096072,0.6447238260
+5-MA_05-SA0P15,0.2051880152,0.6447238260
+6-MA_05-SA0P15,0.1607665644,0.6447238260
+7-MA_05-SA0P15,0.0983355701,0.6447238260
+8-MA_05-SA0P15,0.0674771588,0.6447238260
+9-MA_05-SA0P15,0.0384963947,0.6447238260
+10-MA_05-SA0P15,0.0253180783,0.6447238260
+11-MA_05-SA0P15,0.0180491635,0.6447238260
+12-MA_05-SA0P15,0.0135506206,0.6447238260
+13-MA_05-SA0P15,0.0091829181,0.6447238260
+14-MA_05-SA0P15,0.0082847481,0.6447238260
+15-MA_05-SA0P15,0.0052365026,0.6447238260
+16-MA_05-SA0P15,0.0035097111,0.6447238260
+17-MA_05-SA0P15,0.0017160852,0.6447238260
+18-MA_05-SA0P15,0.0004766031,0.6447238260
+19-MA_05-SA0P15,0.9010456206,0.6447238260
+20-MA_05-SA0P15,0.8479296664,0.6447238260
+21-MA_05-SA0P15,0.7856717763,0.6447238260
+22-MA_05-SA0P15,0.7208008281,0.6447238260
+23-MA_05-SA0P15,0.6577674848,0.6447238260
+24-MA_05-SA0P15,0.5457690077,0.6447238260
+25-MA_05-SA0P15,0.4557475538,0.6447238260
+26-MA_05-SA0P15,0.3065148333,0.6447238260
+27-MA_05-SA0P15,0.2216347291,0.6447238260
+28-MA_05-SA0P15,0.1341899196,0.6447238260
+29-MA_05-SA0P15,0.0914823913,0.6447238260
+30-MA_05-SA0P15,0.0669206681,0.6447238260
+31-MA_05-SA0P15,0.0512654357,0.6447238260
+32-MA_05-SA0P15,0.0356765653,0.6447238260
+33-MA_05-SA0P15,0.0321717706,0.6447238260
+34-MA_05-SA0P15,0.0203463241,0.6447238260
+35-MA_05-SA0P15,0.0136401012,0.6447238260
+36-MA_05-SA0P15,0.0066706984,0.6447238260
+37-MA_05-SA0P15,0.0018528795,0.6447238260
+38-MA_05-SA0P15,1.4311165498,0.6447238260
+39-MA_05-SA0P15,1.3849079339,0.6447238260
+40-MA_05-SA0P15,1.3265278341,0.6447238260
+41-MA_05-SA0P15,1.2604328233,0.6447238260
+42-MA_05-SA0P15,1.1906039245,0.6447238260
+43-MA_05-SA0P15,1.0514146043,0.6447238260
+44-MA_05-SA0P15,0.9239442106,0.6447238260
+45-MA_05-SA0P15,0.6779609749,0.6447238260
+46-MA_05-SA0P15,0.5167416260,0.6447238260
+47-MA_05-SA0P15,0.3327447154,0.6447238260
+48-MA_05-SA0P15,0.2354522119,0.6447238260
+49-MA_05-SA0P15,0.1768651431,0.6447238260
+50-MA_05-SA0P15,0.1383130068,0.6447238260
+51-MA_05-SA0P15,0.0989453539,0.6447238260
+52-MA_05-SA0P15,0.0891648329,0.6447238260
+53-MA_05-SA0P15,0.0564362043,0.6447238260
+54-MA_05-SA0P15,0.0378472087,0.6447238260
+55-MA_05-SA0P15,0.0185144266,0.6447238260
+56-MA_05-SA0P15,0.0051436161,0.6447238260
+57-MA_05-SA0P15,0.0109388789,0.6447238260
+58-MA_05-SA0P15,0.0068485962,0.6447238260
+59-MA_05-SA0P15,0.0424784309,0.6447238260
+60-MA_05-SA0P15,0.0265948299,0.6447238260
+61-MA_05-SA0P15,0.1177299887,0.6447238260
+62-MA_05-SA0P15,0.0737082081,0.6447238260
+0-MA_05-SA0P2,0.4548530619,0.6447238260
+1-MA_05-SA0P2,0.3988489762,0.6447238260
+2-MA_05-SA0P2,0.3436078714,0.6447238260
+3-MA_05-SA0P2,0.2948544521,0.6447238260
+4-MA_05-SA0P2,0.2539298449,0.6447238260
+5-MA_05-SA0P2,0.1926106467,0.6447238260
+6-MA_05-SA0P2,0.1510294373,0.6447238260
+7-MA_05-SA0P2,0.0925679359,0.6447238260
+8-MA_05-SA0P2,0.0636526145,0.6447238260
+9-MA_05-SA0P2,0.0364691718,0.6447238260
+10-MA_05-SA0P2,0.0240877976,0.6447238260
+11-MA_05-SA0P2,0.0172460523,0.6447238260
+12-MA_05-SA0P2,0.0130035212,0.6447238260
+13-MA_05-SA0P2,0.0088884327,0.6447238260
+14-MA_05-SA0P2,0.0080885262,0.6447238260
+15-MA_05-SA0P2,0.0052239685,0.6447238260
+16-MA_05-SA0P2,0.0035776896,0.6447238260
+17-MA_05-SA0P2,0.0018264897,0.6447238260
+18-MA_05-SA0P2,0.0005530098,0.6447238260
+19-MA_05-SA0P2,0.8385935528,0.6447238260
+20-MA_05-SA0P2,0.7892785081,0.6447238260
+21-MA_05-SA0P2,0.7314735425,0.6447238260
+22-MA_05-SA0P2,0.6712395335,0.6447238260
+23-MA_05-SA0P2,0.6127084532,0.6447238260
+24-MA_05-SA0P2,0.5086994082,0.6447238260
+25-MA_05-SA0P2,0.4250868228,0.6447238260
+26-MA_05-SA0P2,0.2864370138,0.6447238260
+27-MA_05-SA0P2,0.2075346235,0.6447238260
+28-MA_05-SA0P2,0.1261775354,0.6447238260
+29-MA_05-SA0P2,0.0863855117,0.6447238260
+30-MA_05-SA0P2,0.0634626485,0.6447238260
+31-MA_05-SA0P2,0.0488251797,0.6447238260
+32-MA_05-SA0P2,0.0342716492,0.6447238260
+33-MA_05-SA0P2,0.0311721361,0.6447238260
+34-MA_05-SA0P2,0.0201436751,0.6447238260
+35-MA_05-SA0P2,0.0137987075,0.6447238260
+36-MA_05-SA0P2,0.0070458791,0.6447238260
+37-MA_05-SA0P2,0.0021335631,0.6447238260
+38-MA_05-SA0P2,1.3536325921,0.6447238260
+39-MA_05-SA0P2,1.3100770198,0.6447238260
+40-MA_05-SA0P2,1.2550475644,0.6447238260
+41-MA_05-SA0P2,1.1927441827,0.6447238260
+42-MA_05-SA0P2,1.1269187901,0.6447238260
+43-MA_05-SA0P2,0.9957011847,0.6447238260
+44-MA_05-SA0P2,0.8755189533,0.6447238260
+45-MA_05-SA0P2,0.6435494346,0.6447238260
+46-MA_05-SA0P2,0.4914541306,0.6447238260
+47-MA_05-SA0P2,0.3177468336,0.6447238260
+48-MA_05-SA0P2,0.2257811560,0.6447238260
+49-MA_05-SA0P2,0.1703198821,0.6447238260
+50-MA_05-SA0P2,0.1337631001,0.6447238260
+51-MA_05-SA0P2,0.0965133717,0.6447238260
+52-MA_05-SA0P2,0.0877236817,0.6447238260
+53-MA_05-SA0P2,0.0567323605,0.6447238260
+54-MA_05-SA0P2,0.0388749002,0.6447238260
+55-MA_05-SA0P2,0.0198556022,0.6447238260
+56-MA_05-SA0P2,0.0060135541,0.6447238260
+57-MA_05-SA0P2,0.0109614737,0.6447238260
+58-MA_05-SA0P2,0.0065513880,0.6447238260
+59-MA_05-SA0P2,0.0422441052,0.6447238260
+60-MA_05-SA0P2,0.0252482038,0.6447238260
+61-MA_05-SA0P2,0.1188820821,0.6447238260
+62-MA_05-SA0P2,0.0710527308,0.6447238260
+0-MA_05-SA0P25,0.3622994610,0.6447238260
+1-MA_05-SA0P25,0.3177603179,0.6447238260
+2-MA_05-SA0P25,0.2738251909,0.6447238260
+3-MA_05-SA0P25,0.2350469687,0.6447238260
+4-MA_05-SA0P25,0.2024929127,0.6447238260
+5-MA_05-SA0P25,0.1537088355,0.6447238260
+6-MA_05-SA0P25,0.1206208051,0.6447238260
+7-MA_05-SA0P25,0.0740827428,0.6447238260
+8-MA_05-SA0P25,0.0510498376,0.6447238260
+9-MA_05-SA0P25,0.0293748069,0.6447238260
+10-MA_05-SA0P25,0.0194863964,0.6447238260
+11-MA_05-SA0P25,0.0140124891,0.6447238260
+12-MA_05-SA0P25,0.0106115945,0.6447238260
+13-MA_05-SA0P25,0.0073170742,0.6447238260
+14-MA_05-SA0P25,0.0067170289,0.6447238260
+15-MA_05-SA0P25,0.0044340689,0.6447238260
+16-MA_05-SA0P25,0.0031038561,0.6447238260
+17-MA_05-SA0P25,0.0016554389,0.6447238260
+18-MA_05-SA0P25,0.0005470492,0.6447238260
+19-MA_05-SA0P25,0.7326113703,0.6447238260
+20-MA_05-SA0P25,0.6896345274,0.6447238260
+21-MA_05-SA0P25,0.6392570484,0.6447238260
+22-MA_05-SA0P25,0.5867601446,0.6447238260
+23-MA_05-SA0P25,0.5357445508,0.6447238260
+24-MA_05-SA0P25,0.4450815853,0.6447238260
+25-MA_05-SA0P25,0.3721868140,0.6447238260
+26-MA_05-SA0P25,0.2512741507,0.6447238260
+27-MA_05-SA0P25,0.1824298971,0.6447238260
+28-MA_05-SA0P25,0.1113835400,0.6447238260
+29-MA_05-SA0P25,0.0765853481,0.6447238260
+30-MA_05-SA0P25,0.0565069964,0.6447238260
+31-MA_05-SA0P25,0.0436630400,0.6447238260
+32-MA_05-SA0P25,0.0309163108,0.6447238260
+33-MA_05-SA0P25,0.0283666936,0.6447238260
+34-MA_05-SA0P25,0.0187355665,0.6447238260
+35-MA_05-SA0P25,0.0131177547,0.6447238260
+36-MA_05-SA0P25,0.0069976022,0.6447238260
+37-MA_05-SA0P25,0.0023126714,0.6447238260
+38-MA_05-SA0P25,1.2320891838,0.6447238260
+39-MA_05-SA0P25,1.1925839671,0.6447238260
+40-MA_05-SA0P25,1.1426707776,0.6447238260
+41-MA_05-SA0P25,1.0861583485,0.6447238260
+42-MA_05-SA0P25,1.0264492185,0.6447238260
+43-MA_05-SA0P25,0.9074164390,0.6447238260
+44-MA_05-SA0P25,0.7983833780,0.6447238260
+45-MA_05-SA0P25,0.5878890352,0.6447238260
+46-MA_05-SA0P25,0.4498211370,0.6447238260
+47-MA_05-SA0P25,0.2920263881,0.6447238260
+48-MA_05-SA0P25,0.2083855540,0.6447238260
+49-MA_05-SA0P25,0.1578730334,0.6447238260
+50-MA_05-SA0P25,0.1245242130,0.6447238260
+51-MA_05-SA0P25,0.0906302818,0.6447238260
+52-MA_05-SA0P25,0.0830966683,0.6447238260
+53-MA_05-SA0P25,0.0549252554,0.6447238260
+54-MA_05-SA0P25,0.0384678333,0.6447238260
+55-MA_05-SA0P25,0.0205257340,0.6447238260
+56-MA_05-SA0P25,0.0067847930,0.6447238260
+57-MA_05-SA0P25,0.0095368981,0.6447238260
+58-MA_05-SA0P25,0.0051525110,0.6447238260
+59-MA_05-SA0P25,0.0402752871,0.6447238260
+60-MA_05-SA0P25,0.0217595760,0.6447238260
+61-MA_05-SA0P25,0.1179813981,0.6447238260
+62-MA_05-SA0P25,0.0637419465,0.6447238260
+0-MA_05-SA0P3,0.3003504251,0.6447238260
+1-MA_05-SA0P3,0.2635055074,0.6447238260
+2-MA_05-SA0P3,0.2271571620,0.6447238260
+3-MA_05-SA0P3,0.1950718990,0.6447238260
+4-MA_05-SA0P3,0.1681333773,0.6447238260
+5-MA_05-SA0P3,0.1277568534,0.6447238260
+6-MA_05-SA0P3,0.1003634775,0.6447238260
+7-MA_05-SA0P3,0.0618153648,0.6447238260
+8-MA_05-SA0P3,0.0427203642,0.6447238260
+9-MA_05-SA0P3,0.0247272558,0.6447238260
+10-MA_05-SA0P3,0.0165010791,0.6447238260
+11-MA_05-SA0P3,0.0119366920,0.6447238260
+12-MA_05-SA0P3,0.0090937132,0.6447238260
+13-MA_05-SA0P3,0.0063458226,0.6447238260
+14-MA_05-SA0P3,0.0058955130,0.6447238260
+15-MA_05-SA0P3,0.0040099476,0.6447238260
+16-MA_05-SA0P3,0.0028922363,0.6447238260
+17-MA_05-SA0P3,0.0016377262,0.6447238260
+18-MA_05-SA0P3,0.0006100301,0.6447238260
+19-MA_05-SA0P3,0.6556663460,0.6447238260
+20-MA_05-SA0P3,0.6173327967,0.6447238260
+21-MA_05-SA0P3,0.5723959475,0.6447238260
+22-MA_05-SA0P3,0.5255655945,0.6447238260
+23-MA_05-SA0P3,0.4800532363,0.6447238260
+24-MA_05-SA0P3,0.3991598972,0.6447238260
+25-MA_05-SA0P3,0.3341069836,0.6447238260
+26-MA_05-SA0P3,0.2261598338,0.6447238260
+27-MA_05-SA0P3,0.1646558470,0.6447238260
+28-MA_05-SA0P3,0.1011139774,0.6447238260
+29-MA_05-SA0P3,0.0699341136,0.6447238260
+30-MA_05-SA0P3,0.0519059582,0.6447238260
+31-MA_05-SA0P3,0.0403468768,0.6447238260
+32-MA_05-SA0P3,0.0289107745,0.6447238260
+33-MA_05-SA0P3,0.0268451851,0.6447238260
+34-MA_05-SA0P3,0.0182686018,0.6447238260
+35-MA_05-SA0P3,0.0131791794,0.6447238260
+36-MA_05-SA0P3,0.0074639462,0.6447238260
+37-MA_05-SA0P3,0.0027805166,0.6447238260
+38-MA_05-SA0P3,1.1309898802,0.6447238260
+39-MA_05-SA0P3,1.0949014975,0.6447238260
+40-MA_05-SA0P3,1.0493040493,0.6447238260
+41-MA_05-SA0P3,0.9976760665,0.6447238260
+42-MA_05-SA0P3,0.9431252358,0.6447238260
+43-MA_05-SA0P3,0.8343669035,0.6447238260
+44-MA_05-SA0P3,0.7347322128,0.6447238260
+45-MA_05-SA0P3,0.5423295082,0.6447238260
+46-MA_05-SA0P3,0.4160656773,0.6447238260
+47-MA_05-SA0P3,0.2716347866,0.6447238260
+48-MA_05-SA0P3,0.1949608882,0.6447238260
+49-MA_05-SA0P3,0.1485719361,0.6447238260
+50-MA_05-SA0P3,0.1178822054,0.6447238260
+51-MA_05-SA0P3,0.0868209400,0.6447238260
+52-MA_05-SA0P3,0.0805579957,0.6447238260
+53-MA_05-SA0P3,0.0548608069,0.6447238260
+54-MA_05-SA0P3,0.0395886166,0.6447238260
+55-MA_05-SA0P3,0.0224261009,0.6447238260
+56-MA_05-SA0P3,0.0083556002,0.6447238260
+57-MA_05-SA0P3,0.0086134415,0.6447238260
+58-MA_05-SA0P3,0.0043711874,0.6447238260
+59-MA_05-SA0P3,0.0392212572,0.6447238260
+60-MA_05-SA0P3,0.0199041772,0.6447238260
+61-MA_05-SA0P3,0.1176965575,0.6447238260
+62-MA_05-SA0P3,0.0597291699,0.6447238260
+0-MA_05-SA0P4,0.2325640224,0.6447238260
+1-MA_05-SA0P4,0.2040814681,0.6447238260
+2-MA_05-SA0P4,0.1759809638,0.6447238260
+3-MA_05-SA0P4,0.1511742535,0.6447238260
+4-MA_05-SA0P4,0.1303448933,0.6447238260
+5-MA_05-SA0P4,0.0991205551,0.6447238260
+6-MA_05-SA0P4,0.0779319062,0.6447238260
+7-MA_05-SA0P4,0.0481037617,0.6447238260
+8-MA_05-SA0P4,0.0333186735,0.6447238260
+9-MA_05-SA0P4,0.0193730568,0.6447238260
+10-MA_05-SA0P4,0.0129873075,0.6447238260
+11-MA_05-SA0P4,0.0094380321,0.6447238260
+12-MA_05-SA0P4,0.0072232474,0.6447238260
+13-MA_05-SA0P4,0.0050871128,0.6447238260
+14-MA_05-SA0P4,0.0047698021,0.6447238260
+15-MA_05-SA0P4,0.0033197945,0.6447238260
+16-MA_05-SA0P4,0.0024502091,0.6447238260
+17-MA_05-SA0P4,0.0014528057,0.6447238260
+18-MA_05-SA0P4,0.0005933556,0.6447238260
+19-MA_05-SA0P4,0.5346562086,0.6447238260
+20-MA_05-SA0P4,0.5034787674,0.6447238260
+21-MA_05-SA0P4,0.4669293624,0.6447238260
+22-MA_05-SA0P4,0.4288380642,0.6447238260
+23-MA_05-SA0P4,0.3918167253,0.6447238260
+24-MA_05-SA0P4,0.3260088741,0.6447238260
+25-MA_05-SA0P4,0.2730794814,0.6447238260
+26-MA_05-SA0P4,0.1852244413,0.6447238260
+27-MA_05-SA0P4,0.1351429585,0.6447238260
+28-MA_05-SA0P4,0.0833599576,0.6447238260
+29-MA_05-SA0P4,0.0579161080,0.6447238260
+30-MA_05-SA0P4,0.0431822896,0.6447238260
+31-MA_05-SA0P4,0.0337197024,0.6447238260
+32-MA_05-SA0P4,0.0243845731,0.6447238260
+33-MA_05-SA0P4,0.0228512928,0.6447238260
+34-MA_05-SA0P4,0.0159123715,0.6447238260
+35-MA_05-SA0P4,0.0117465566,0.6447238260
+36-MA_05-SA0P4,0.0069659974,0.6447238260
+37-MA_05-SA0P4,0.0028453413,0.6447238260
+38-MA_05-SA0P4,0.9794048209,0.6447238260
+39-MA_05-SA0P4,0.9482700560,0.6447238260
+40-MA_05-SA0P4,0.9089306633,0.6447238260
+41-MA_05-SA0P4,0.8643872063,0.6447238260
+42-MA_05-SA0P4,0.8173204467,0.6447238260
+43-MA_05-SA0P4,0.7234775992,0.6447238260
+44-MA_05-SA0P4,0.6374990446,0.6447238260
+45-MA_05-SA0P4,0.4714347595,0.6447238260
+46-MA_05-SA0P4,0.3624165895,0.6447238260
+47-MA_05-SA0P4,0.2376344800,0.6447238260
+48-MA_05-SA0P4,0.1713197402,0.6447238260
+49-MA_05-SA0P4,0.1311467161,0.6447238260
+50-MA_05-SA0P4,0.1045303590,0.6447238260
+51-MA_05-SA0P4,0.0776936224,0.6447238260
+52-MA_05-SA0P4,0.0727527566,0.6447238260
+53-MA_05-SA0P4,0.0506962830,0.6447238260
+54-MA_05-SA0P4,0.0374343923,0.6447238260
+55-MA_05-SA0P4,0.0222044875,0.6447238260
+56-MA_05-SA0P4,0.0090709724,0.6447238260
+57-MA_05-SA0P4,0.0071658052,0.6447238260
+58-MA_05-SA0P4,0.0033951700,0.6447238260
+59-MA_05-SA0P4,0.0343301275,0.6447238260
+60-MA_05-SA0P4,0.0162656695,0.6447238260
+61-MA_05-SA0P4,0.1092984729,0.6447238260
+62-MA_05-SA0P4,0.0517857917,0.6447238260
+0-MA_05-SA0P5,0.1777267551,0.6447238260
+1-MA_05-SA0P5,0.1559834736,0.6447238260
+2-MA_05-SA0P5,0.1345309502,0.6447238260
+3-MA_05-SA0P5,0.1155920222,0.6447238260
+4-MA_05-SA0P5,0.0996887328,0.6447238260
+5-MA_05-SA0P5,0.0758466516,0.6447238260
+6-MA_05-SA0P5,0.0596653288,0.6447238260
+7-MA_05-SA0P5,0.0368806640,0.6447238260
+8-MA_05-SA0P5,0.0255822061,0.6447238260
+9-MA_05-SA0P5,0.0149186183,0.6447238260
+10-MA_05-SA0P5,0.0100308915,0.6447238260
+11-MA_05-SA0P5,0.0073113202,0.6447238260
+12-MA_05-SA0P5,0.0056123247,0.6447238260
+13-MA_05-SA0P5,0.0039762768,0.6447238260
+14-MA_05-SA0P5,0.0037506155,0.6447238260
+15-MA_05-SA0P5,0.0026497770,0.6447238260
+16-MA_05-SA0P5,0.0019851771,0.6447238260
+17-MA_05-SA0P5,0.0012128347,0.6447238260
+18-MA_05-SA0P5,0.0005259052,0.6447238260
+19-MA_05-SA0P5,0.4666370667,0.6447238260
+20-MA_05-SA0P5,0.4394721282,0.6447238260
+21-MA_05-SA0P5,0.4076258313,0.6447238260
+22-MA_05-SA0P5,0.3744350428,0.6447238260
+23-MA_05-SA0P5,0.3421754053,0.6447238260
+24-MA_05-SA0P5,0.2848282489,0.6447238260
+25-MA_05-SA0P5,0.2386994151,0.6447238260
+26-MA_05-SA0P5,0.1621183312,0.6447238260
+27-MA_05-SA0P5,0.1184497080,0.6447238260
+28-MA_05-SA0P5,0.0732744511,0.6447238260
+29-MA_05-SA0P5,0.0510588538,0.6447238260
+30-MA_05-SA0P5,0.0381823945,0.6447238260
+31-MA_05-SA0P5,0.0299041670,0.6447238260
+32-MA_05-SA0P5,0.0217546043,0.6447238260
+33-MA_05-SA0P5,0.0205087702,0.6447238260
+34-MA_05-SA0P5,0.0144961992,0.6447238260
+35-MA_05-SA0P5,0.0108623804,0.6447238260
+36-MA_05-SA0P5,0.0066373226,0.6447238260
+37-MA_05-SA0P5,0.0028783271,0.6447238260
+38-MA_05-SA0P5,0.8917241415,0.6447238260
+39-MA_05-SA0P5,0.8634457944,0.6447238260
+40-MA_05-SA0P5,0.8277150823,0.6447238260
+41-MA_05-SA0P5,0.7872570073,0.6447238260
+42-MA_05-SA0P5,0.7445061890,0.6447238260
+43-MA_05-SA0P5,0.6592654278,0.6447238260
+44-MA_05-SA0P5,0.5811635065,0.6447238260
+45-MA_05-SA0P5,0.4302942453,0.6447238260
+46-MA_05-SA0P5,0.3312295580,0.6447238260
+47-MA_05-SA0P5,0.2177966024,0.6447238260
+48-MA_05-SA0P5,0.1574734528,0.6447238260
+49-MA_05-SA0P5,0.1209015406,0.6447238260
+50-MA_05-SA0P5,0.0966495119,0.6447238260
+51-MA_05-SA0P5,0.0722638252,0.6447238260
+52-MA_05-SA0P5,0.0680725428,0.6447238260
+53-MA_05-SA0P5,0.0481483237,0.6447238260
+54-MA_05-SA0P5,0.0360883551,0.6447238260
+55-MA_05-SA0P5,0.0220560782,0.6447238260
+56-MA_05-SA0P5,0.0095660880,0.6447238260
+57-MA_05-SA0P5,0.0059664713,0.6447238260
+58-MA_05-SA0P5,0.0024942268,0.6447238260
+59-MA_05-SA0P5,0.0326253081,0.6447238260
+60-MA_05-SA0P5,0.0136387013,0.6447238260
+61-MA_05-SA0P5,0.1082896566,0.6447238260
+62-MA_05-SA0P5,0.0452694662,0.6447238260
+0-MA_05-SA0P75,0.1022256156,0.6447238260
+1-MA_05-SA0P75,0.0897374863,0.6447238260
+2-MA_05-SA0P75,0.0774156565,0.6447238260
+3-MA_05-SA0P75,0.0665368338,0.6447238260
+4-MA_05-SA0P75,0.0574010253,0.6447238260
+5-MA_05-SA0P75,0.0437029986,0.6447238260
+6-MA_05-SA0P75,0.0344045935,0.6447238260
+7-MA_05-SA0P75,0.0213073795,0.6447238260
+8-MA_05-SA0P75,0.0148091562,0.6447238260
+9-MA_05-SA0P75,0.0086709930,0.6447238260
+10-MA_05-SA0P75,0.0058538427,0.6447238260
+11-MA_05-SA0P75,0.0042841439,0.6447238260
+12-MA_05-SA0P75,0.0033020262,0.6447238260
+13-MA_05-SA0P75,0.0023586169,0.6447238260
+14-MA_05-SA0P75,0.0022429996,0.6447238260
+15-MA_05-SA0P75,0.0016173553,0.6447238260
+16-MA_05-SA0P75,0.0012367092,0.6447238260
+17-MA_05-SA0P75,0.0007870769,0.6447238260
+18-MA_05-SA0P75,0.0003703572,0.6447238260
+19-MA_05-SA0P75,0.3074074485,0.6447238260
+20-MA_05-SA0P75,0.2895534164,0.6447238260
+21-MA_05-SA0P75,0.2686219119,0.6447238260
+22-MA_05-SA0P75,0.2468058315,0.6447238260
+23-MA_05-SA0P75,0.2256007726,0.6447238260
+24-MA_05-SA0P75,0.1879019539,0.6447238260
+25-MA_05-SA0P75,0.1575739694,0.6447238260
+26-MA_05-SA0P75,0.1072125498,0.6447238260
+27-MA_05-SA0P75,0.0784830603,0.6447238260
+28-MA_05-SA0P75,0.0487424558,0.6447238260
+29-MA_05-SA0P75,0.0341011440,0.6447238260
+30-MA_05-SA0P75,0.0256045214,0.6447238260
+31-MA_05-SA0P75,0.0201347952,0.6447238260
+32-MA_05-SA0P75,0.0147672757,0.6447238260
+33-MA_05-SA0P75,0.0140355359,0.6447238260
+34-MA_05-SA0P75,0.0101252422,0.6447238260
+35-MA_05-SA0P75,0.0077436322,0.6447238260
+36-MA_05-SA0P75,0.0049289688,0.6447238260
+37-MA_05-SA0P75,0.0023195195,0.6447238260
+38-MA_05-SA0P75,0.6425717776,0.6447238260
+39-MA_05-SA0P75,0.6222625360,0.6447238260
+40-MA_05-SA0P75,0.5966006424,0.6447238260
+41-MA_05-SA0P75,0.5675429052,0.6447238260
+42-MA_05-SA0P75,0.5368376580,0.6447238260
+43-MA_05-SA0P75,0.4756115793,0.6447238260
+44-MA_05-SA0P75,0.4195088394,0.6447238260
+45-MA_05-SA0P75,0.3111181425,0.6447238260
+46-MA_05-SA0P75,0.2399257264,0.6447238260
+47-MA_05-SA0P75,0.1583672815,0.6447238260
+48-MA_05-SA0P75,0.1149581516,0.6447238260
+49-MA_05-SA0P75,0.0886144204,0.6447238260
+50-MA_05-SA0P75,0.0711252423,0.6447238260
+51-MA_05-SA0P75,0.0536124290,0.6447238260
+52-MA_05-SA0P75,0.0509153442,0.6447238260
+53-MA_05-SA0P75,0.0367543742,0.6447238260
+54-MA_05-SA0P75,0.0281162889,0.6447238260
+55-MA_05-SA0P75,0.0179001734,0.6447238260
+56-MA_05-SA0P75,0.0084246863,0.6447238260
+57-MA_05-SA0P75,0.0037205616,0.6447238260
+58-MA_05-SA0P75,0.0014030967,0.6447238260
+59-MA_05-SA0P75,0.0232813576,0.6447238260
+60-MA_05-SA0P75,0.0087798563,0.6447238260
+61-MA_05-SA0P75,0.0844555096,0.6447238260
+62-MA_05-SA0P75,0.0318498282,0.6447238260
+0-MA_05-SA1P0,0.0573853943,0.6447238260
+1-MA_05-SA1P0,0.0503879087,0.6447238260
+2-MA_05-SA1P0,0.0434831227,0.6447238260
+3-MA_05-SA1P0,0.0373864392,0.6447238260
+4-MA_05-SA1P0,0.0322660828,0.6447238260
+5-MA_05-SA1P0,0.0245875610,0.6447238260
+6-MA_05-SA1P0,0.0193740865,0.6447238260
+7-MA_05-SA1P0,0.0120277374,0.6447238260
+8-MA_05-SA1P0,0.0083803760,0.6447238260
+9-MA_05-SA1P0,0.0049316593,0.6447238260
+10-MA_05-SA1P0,0.0033463633,0.6447238260
+11-MA_05-SA1P0,0.0024615617,0.6447238260
+12-MA_05-SA1P0,0.0019069762,0.6447238260
+13-MA_05-SA1P0,0.0013761428,0.6447238260
+14-MA_05-SA1P0,0.0013221480,0.6447238260
+15-MA_05-SA1P0,0.0009780799,0.6447238260
+16-MA_05-SA1P0,0.0007672873,0.6447238260
+17-MA_05-SA1P0,0.0005139894,0.6447238260
+18-MA_05-SA1P0,0.0002679508,0.6447238260
+19-MA_05-SA1P0,0.2196659164,0.6447238260
+20-MA_05-SA1P0,0.2069450092,0.6447238260
+21-MA_05-SA1P0,0.1920308335,0.6447238260
+22-MA_05-SA1P0,0.1764856046,0.6447238260
+23-MA_05-SA1P0,0.1613748784,0.6447238260
+24-MA_05-SA1P0,0.1345079952,0.6447238260
+25-MA_05-SA1P0,0.1128907574,0.6447238260
+26-MA_05-SA1P0,0.0769835190,0.6447238260
+27-MA_05-SA1P0,0.0564893430,0.6447238260
+28-MA_05-SA1P0,0.0352569837,0.6447238260
+29-MA_05-SA1P0,0.0247908634,0.6447238260
+30-MA_05-SA1P0,0.0187085473,0.6447238260
+31-MA_05-SA1P0,0.0147869747,0.6447238260
+32-MA_05-SA1P0,0.0109562530,0.6447238260
+33-MA_05-SA1P0,0.0105203058,0.6447238260
+34-MA_05-SA1P0,0.0077859812,0.6447238260
+35-MA_05-SA1P0,0.0061089901,0.6447238260
+36-MA_05-SA1P0,0.0040928190,0.6447238260
+37-MA_05-SA1P0,0.0021338207,0.6447238260
+38-MA_05-SA1P0,0.5198254776,0.6447238260
+39-MA_05-SA1P0,0.5034647313,0.6447238260
+40-MA_05-SA1P0,0.4827915729,0.6447238260
+41-MA_05-SA1P0,0.4593821201,0.6447238260
+42-MA_05-SA1P0,0.4346446199,0.6447238260
+43-MA_05-SA1P0,0.3853153776,0.6447238260
+44-MA_05-SA1P0,0.3401098814,0.6447238260
+45-MA_05-SA1P0,0.2527564626,0.6447238260
+46-MA_05-SA1P0,0.1953626068,0.6447238260
+47-MA_05-SA1P0,0.1295744095,0.6447238260
+48-MA_05-SA1P0,0.0945251063,0.6447238260
+49-MA_05-SA1P0,0.0732306874,0.6447238260
+50-MA_05-SA1P0,0.0590755869,0.6447238260
+51-MA_05-SA1P0,0.0449844817,0.6447238260
+52-MA_05-SA1P0,0.0431592188,0.6447238260
+53-MA_05-SA1P0,0.0319616379,0.6447238260
+54-MA_05-SA1P0,0.0250834928,0.6447238260
+55-MA_05-SA1P0,0.0168082406,0.6447238260
+56-MA_05-SA1P0,0.0087640885,0.6447238260
+57-MA_05-SA1P0,0.0022092485,0.6447238260
+58-MA_05-SA1P0,0.0008214586,0.6447238260
+59-MA_05-SA1P0,0.0175789477,0.6447238260
+60-MA_05-SA1P0,0.0065363304,0.6447238260
+61-MA_05-SA1P0,0.0721170718,0.6447238260
+62-MA_05-SA1P0,0.0268150869,0.6447238260
+0-MA_05-SA1P5,0.0212448769,0.6447238260
+1-MA_05-SA1P5,0.0186596578,0.6447238260
+2-MA_05-SA1P5,0.0161084887,0.6447238260
+3-MA_05-SA1P5,0.0138556851,0.6447238260
+4-MA_05-SA1P5,0.0119634475,0.6447238260
+5-MA_05-SA1P5,0.0091253567,0.6447238260
+6-MA_05-SA1P5,0.0071978987,0.6447238260
+7-MA_05-SA1P5,0.0044807137,0.6447238260
+8-MA_05-SA1P5,0.0031306856,0.6447238260
+9-MA_05-SA1P5,0.0018528099,0.6447238260
+10-MA_05-SA1P5,0.0012644206,0.6447238260
+11-MA_05-SA1P5,0.0009354435,0.6447238260
+12-MA_05-SA1P5,0.0007288603,0.6447238260
+13-MA_05-SA1P5,0.0005320504,0.6447238260
+14-MA_05-SA1P5,0.0005170869,0.6447238260
+15-MA_05-SA1P5,0.0003936860,0.6447238260
+16-MA_05-SA1P5,0.0003178555,0.6447238260
+17-MA_05-SA1P5,0.0002255392,0.6447238260
+18-MA_05-SA1P5,0.0001319227,0.6447238260
+19-MA_05-SA1P5,0.1080195413,0.6447238260
+20-MA_05-SA1P5,0.1017846342,0.6447238260
+21-MA_05-SA1P5,0.0944744256,0.6447238260
+22-MA_05-SA1P5,0.0868544925,0.6447238260
+23-MA_05-SA1P5,0.0794470707,0.6447238260
+24-MA_05-SA1P5,0.0662752309,0.6447238260
+25-MA_05-SA1P5,0.0556753277,0.6447238260
+26-MA_05-SA1P5,0.0380628480,0.6447238260
+27-MA_05-SA1P5,0.0280050824,0.6447238260
+28-MA_05-SA1P5,0.0175763227,0.6447238260
+29-MA_05-SA1P5,0.0124288092,0.6447238260
+30-MA_05-SA1P5,0.0094330174,0.6447238260
+31-MA_05-SA1P5,0.0074984516,0.6447238260
+32-MA_05-SA1P5,0.0056199356,0.6447238260
+33-MA_05-SA1P5,0.0054586322,0.6447238260
+34-MA_05-SA1P5,0.0041576732,0.6447238260
+35-MA_05-SA1P5,0.0033573543,0.6447238260
+36-MA_05-SA1P5,0.0023825446,0.6447238260
+37-MA_05-SA1P5,0.0013936991,0.6447238260
+38-MA_05-SA1P5,0.3154873566,0.6447238260
+39-MA_05-SA1P5,0.3056048812,0.6447238260
+40-MA_05-SA1P5,0.2931172911,0.6447238260
+41-MA_05-SA1P5,0.2789764594,0.6447238260
+42-MA_05-SA1P5,0.2640329060,0.6447238260
+43-MA_05-SA1P5,0.2342320755,0.6447238260
+44-MA_05-SA1P5,0.2069199293,0.6447238260
+45-MA_05-SA1P5,0.1541328559,0.6447238260
+46-MA_05-SA1P5,0.1194384516,0.6447238260
+47-MA_05-SA1P5,0.0796469821,0.6447238260
+48-MA_05-SA1P5,0.0584274678,0.6447238260
+49-MA_05-SA1P5,0.0455212216,0.6447238260
+50-MA_05-SA1P5,0.0369314009,0.6447238260
+51-MA_05-SA1P5,0.0284451894,0.6447238260
+52-MA_05-SA1P5,0.0276054338,0.6447238260
+53-MA_05-SA1P5,0.0210385806,0.6447238260
+54-MA_05-SA1P5,0.0169925512,0.6447238260
+55-MA_05-SA1P5,0.0120607963,0.6447238260
+56-MA_05-SA1P5,0.0070558119,0.6447238260
+57-MA_05-SA1P5,0.0008767957,0.6447238260
+58-MA_05-SA1P5,0.0003169302,0.6447238260
+59-MA_05-SA1P5,0.0092559021,0.6447238260
+60-MA_05-SA1P5,0.0033456762,0.6447238260
+61-MA_05-SA1P5,0.0468090148,0.6447238260
+62-MA_05-SA1P5,0.0169197778,0.6447238260
+0-MA_05-SA2P0,0.0128559090,0.6447238260
+1-MA_05-SA2P0,0.0112921631,0.6447238260
+2-MA_05-SA2P0,0.0097489897,0.6447238260
+3-MA_05-SA2P0,0.0083862689,0.6447238260
+4-MA_05-SA2P0,0.0072416306,0.6447238260
+5-MA_05-SA2P0,0.0055247767,0.6447238260
+6-MA_05-SA2P0,0.0043587367,0.6447238260
+7-MA_05-SA2P0,0.0027148000,0.6447238260
+8-MA_05-SA2P0,0.0018978970,0.6447238260
+9-MA_05-SA2P0,0.0011244921,0.6447238260
+10-MA_05-SA2P0,0.0007682689,0.6447238260
+11-MA_05-SA2P0,0.0005690323,0.6447238260
+12-MA_05-SA2P0,0.0004438765,0.6447238260
+13-MA_05-SA2P0,0.0003247646,0.6447238260
+14-MA_05-SA2P0,0.0003163575,0.6447238260
+15-MA_05-SA2P0,0.0002422496,0.6447238260
+16-MA_05-SA2P0,0.0001967171,0.6447238260
+17-MA_05-SA2P0,0.0001411996,0.6447238260
+18-MA_05-SA2P0,0.0000845144,0.6447238260
+19-MA_05-SA2P0,0.0765332681,0.6447238260
+20-MA_05-SA2P0,0.0721186640,0.6447238260
+21-MA_05-SA2P0,0.0669426529,0.6447238260
+22-MA_05-SA2P0,0.0615472832,0.6447238260
+23-MA_05-SA2P0,0.0563023187,0.6447238260
+24-MA_05-SA2P0,0.0469755506,0.6447238260
+25-MA_05-SA2P0,0.0394696850,0.6447238260
+26-MA_05-SA2P0,0.0269974027,0.6447238260
+27-MA_05-SA2P0,0.0198742579,0.6447238260
+28-MA_05-SA2P0,0.0124871863,0.6447238260
+29-MA_05-SA2P0,0.0088400983,0.6447238260
+30-MA_05-SA2P0,0.0067169598,0.6447238260
+31-MA_05-SA2P0,0.0053455211,0.6447238260
+32-MA_05-SA2P0,0.0040155515,0.6447238260
+33-MA_05-SA2P0,0.0039092633,0.6447238260
+34-MA_05-SA2P0,0.0029947305,0.6447238260
+35-MA_05-SA2P0,0.0024322193,0.6447238260
+36-MA_05-SA2P0,0.0017460020,0.6447238260
+37-MA_05-SA2P0,0.0010451322,0.6447238260
+38-MA_05-SA2P0,0.2489389417,0.6447238260
+39-MA_05-SA2P0,0.2411484826,0.6447238260
+40-MA_05-SA2P0,0.2313043445,0.6447238260
+41-MA_05-SA2P0,0.2201568751,0.6447238260
+42-MA_05-SA2P0,0.2083765317,0.6447238260
+43-MA_05-SA2P0,0.1848835926,0.6447238260
+44-MA_05-SA2P0,0.1633521804,0.6447238260
+45-MA_05-SA2P0,0.1217362212,0.6447238260
+46-MA_05-SA2P0,0.0943823332,0.6447238260
+47-MA_05-SA2P0,0.0630064981,0.6447238260
+48-MA_05-SA2P0,0.0462718691,0.6447238260
+49-MA_05-SA2P0,0.0360914281,0.6447238260
+50-MA_05-SA2P0,0.0293142866,0.6447238260
+51-MA_05-SA2P0,0.0226299738,0.6447238260
+52-MA_05-SA2P0,0.0220122672,0.6447238260
+53-MA_05-SA2P0,0.0168725187,0.6447238260
+54-MA_05-SA2P0,0.0137062517,0.6447238260
+55-MA_05-SA2P0,0.0098408526,0.6447238260
+56-MA_05-SA2P0,0.0058911630,0.6447238260
+57-MA_05-SA2P0,0.0005403788,0.6447238260
+58-MA_05-SA2P0,0.0001925864,0.6447238260
+59-MA_05-SA2P0,0.0066775178,0.6447238260
+60-MA_05-SA2P0,0.0023798097,0.6447238260
+61-MA_05-SA2P0,0.0375997457,0.6447238260
+62-MA_05-SA2P0,0.0134002247,0.6447238260
+0-MA_05-SA3P0,0.0049781199,0.6447238260
+1-MA_05-SA3P0,0.0043732013,0.6447238260
+2-MA_05-SA3P0,0.0037762189,0.6447238260
+3-MA_05-SA3P0,0.0032490220,0.6447238260
+4-MA_05-SA3P0,0.0028061729,0.6447238260
+5-MA_05-SA3P0,0.0021418864,0.6447238260
+6-MA_05-SA3P0,0.0016906682,0.6447238260
+7-MA_05-SA3P0,0.0010543903,0.6447238260
+8-MA_05-SA3P0,0.0007381052,0.6447238260
+9-MA_05-SA3P0,0.0004385143,0.6447238260
+10-MA_05-SA3P0,0.0003004217,0.6447238260
+11-MA_05-SA3P0,0.0002231256,0.6447238260
+12-MA_05-SA3P0,0.0001745303,0.6447238260
+13-MA_05-SA3P0,0.0001284023,0.6447238260
+14-MA_05-SA3P0,0.0001257707,0.6447238260
+15-MA_05-SA3P0,0.0000976474,0.6447238260
+16-MA_05-SA3P0,0.0000803966,0.6447238260
+17-MA_05-SA3P0,0.0000593236,0.6447238260
+18-MA_05-SA3P0,0.0000375252,0.6447238260
+19-MA_05-SA3P0,0.0350497796,0.6447238260
+20-MA_05-SA3P0,0.0330312310,0.6447238260
+21-MA_05-SA3P0,0.0306644867,0.6447238260
+22-MA_05-SA3P0,0.0281973780,0.6447238260
+23-MA_05-SA3P0,0.0257989733,0.6447238260
+24-MA_05-SA3P0,0.0215338355,0.6447238260
+25-MA_05-SA3P0,0.0181011335,0.6447238260
+26-MA_05-SA3P0,0.0123962885,0.6447238260
+27-MA_05-SA3P0,0.0091373588,0.6447238260
+28-MA_05-SA3P0,0.0057564186,0.6447238260
+29-MA_05-SA3P0,0.0040862344,0.6447238260
+30-MA_05-SA3P0,0.0031133347,0.6447238260
+31-MA_05-SA3P0,0.0024844733,0.6447238260
+32-MA_05-SA3P0,0.0018766292,0.6447238260
+33-MA_05-SA3P0,0.0018370524,0.6447238260
+34-MA_05-SA3P0,0.0014268408,0.6447238260
+35-MA_05-SA3P0,0.0011749410,0.6447238260
+36-MA_05-SA3P0,0.0008670689,0.6447238260
+37-MA_05-SA3P0,0.0005484999,0.6447238260
+38-MA_05-SA3P0,0.1375653159,0.6447238260
+39-MA_05-SA3P0,0.1332701007,0.6447238260
+40-MA_05-SA3P0,0.1278425526,0.6447238260
+41-MA_05-SA3P0,0.1216963403,0.6447238260
+42-MA_05-SA3P0,0.1152010942,0.6447238260
+43-MA_05-SA3P0,0.1022476143,0.6447238260
+44-MA_05-SA3P0,0.0903751872,0.6447238260
+45-MA_05-SA3P0,0.0674262235,0.6447238260
+46-MA_05-SA3P0,0.0523398431,0.6447238260
+47-MA_05-SA3P0,0.0350311007,0.6447238260
+48-MA_05-SA3P0,0.0257956805,0.6447238260
+49-MA_05-SA3P0,0.0201748563,0.6447238260
+50-MA_05-SA3P0,0.0164312212,0.6447238260
+51-MA_05-SA3P0,0.0127542400,0.6447238260
+52-MA_05-SA3P0,0.0124745031,0.6447238260
+53-MA_05-SA3P0,0.0096944299,0.6447238260
+54-MA_05-SA3P0,0.0079845966,0.6447238260
+55-MA_05-SA3P0,0.0058933050,0.6447238260
+56-MA_05-SA3P0,0.0037283850,0.6447238260
+57-MA_05-SA3P0,0.0002164137,0.6447238260
+58-MA_05-SA3P0,0.0000760456,0.6447238260
+59-MA_05-SA3P0,0.0031610174,0.6447238260
+60-MA_05-SA3P0,0.0011107494,0.6447238260
+61-MA_05-SA3P0,0.0214648865,0.6447238260
+62-MA_05-SA3P0,0.0075425428,0.6447238260
+0-MA_05-SA4P0,0.0030574158,0.6447238260
+1-MA_05-SA4P0,0.0026857692,0.6447238260
+2-MA_05-SA4P0,0.0023190030,0.6447238260
+3-MA_05-SA4P0,0.0019951155,0.6447238260
+4-MA_05-SA4P0,0.0017230521,0.6447238260
+5-MA_05-SA4P0,0.0013149600,0.6447238260
+6-MA_05-SA4P0,0.0010377732,0.6447238260
+7-MA_05-SA4P0,0.0006469294,0.6447238260
+8-MA_05-SA4P0,0.0004526679,0.6447238260
+9-MA_05-SA4P0,0.0002686899,0.6447238260
+10-MA_05-SA4P0,0.0001839086,0.6447238260
+11-MA_05-SA4P0,0.0001364652,0.6447238260
+12-MA_05-SA4P0,0.0001066460,0.6447238260
+13-MA_05-SA4P0,0.0000783156,0.6447238260
+14-MA_05-SA4P0,0.0000765695,0.6447238260
+15-MA_05-SA4P0,0.0000591750,0.6447238260
+16-MA_05-SA4P0,0.0000484971,0.6447238260
+17-MA_05-SA4P0,0.0000354573,0.6447238260
+18-MA_05-SA4P0,0.0000220192,0.6447238260
+19-MA_05-SA4P0,0.0226155393,0.6447238260
+20-MA_05-SA4P0,0.0213124019,0.6447238260
+21-MA_05-SA4P0,0.0197844860,0.6447238260
+22-MA_05-SA4P0,0.0181917905,0.6447238260
+23-MA_05-SA4P0,0.0166434635,0.6447238260
+24-MA_05-SA4P0,0.0138900845,0.6447238260
+25-MA_05-SA4P0,0.0116741446,0.6447238260
+26-MA_05-SA4P0,0.0079916253,0.6447238260
+27-MA_05-SA4P0,0.0058881305,0.6447238260
+28-MA_05-SA4P0,0.0037061510,0.6447238260
+29-MA_05-SA4P0,0.0026284590,0.6447238260
+30-MA_05-SA4P0,0.0020008205,0.6447238260
+31-MA_05-SA4P0,0.0015952163,0.6447238260
+32-MA_05-SA4P0,0.0012027279,0.6447238260
+33-MA_05-SA4P0,0.0011752024,0.6447238260
+34-MA_05-SA4P0,0.0009085934,0.6447238260
+35-MA_05-SA4P0,0.0007447519,0.6447238260
+36-MA_05-SA4P0,0.0005445662,0.6447238260
+37-MA_05-SA4P0,0.0003382009,0.6447238260
+38-MA_05-SA4P0,0.0990923770,0.6447238260
+39-MA_05-SA4P0,0.0959960423,0.6447238260
+40-MA_05-SA4P0,0.0920834437,0.6447238260
+41-MA_05-SA4P0,0.0876527937,0.6447238260
+42-MA_05-SA4P0,0.0829705568,0.6447238260
+43-MA_05-SA4P0,0.0736328448,0.6447238260
+44-MA_05-SA4P0,0.0650745418,0.6447238260
+45-MA_05-SA4P0,0.0485321088,0.6447238260
+46-MA_05-SA4P0,0.0376578205,0.6447238260
+47-MA_05-SA4P0,0.0251826233,0.6447238260
+48-MA_05-SA4P0,0.0185270813,0.6447238260
+49-MA_05-SA4P0,0.0144769916,0.6447238260
+50-MA_05-SA4P0,0.0117799380,0.6447238260
+51-MA_05-SA4P0,0.0091271336,0.6447238260
+52-MA_05-SA4P0,0.0089106030,0.6447238260
+53-MA_05-SA4P0,0.0068930510,0.6447238260
+54-MA_05-SA4P0,0.0056512548,0.6447238260
+55-MA_05-SA4P0,0.0041328869,0.6447238260
+56-MA_05-SA4P0,0.0025669506,0.6447238260
+57-MA_05-SA4P0,0.0001327230,0.6447238260
+58-MA_05-SA4P0,0.0000459830,0.6447238260
+59-MA_05-SA4P0,0.0020370572,0.6447238260
+60-MA_05-SA4P0,0.0007057557,0.6447238260
+61-MA_05-SA4P0,0.0154453460,0.6447238260
+62-MA_05-SA4P0,0.0053511712,0.6447238260
+0-MA_05-SA5P0,0.0018528644,0.6447238260
+1-MA_05-SA5P0,0.0016275634,0.6447238260
+2-MA_05-SA5P0,0.0014052237,0.6447238260
+3-MA_05-SA5P0,0.0012088806,0.6447238260
+4-MA_05-SA5P0,0.0010439565,0.6447238260
+5-MA_05-SA5P0,0.0007965786,0.6447238260
+6-MA_05-SA5P0,0.0006285597,0.6447238260
+7-MA_05-SA5P0,0.0003916628,0.6447238260
+8-MA_05-SA5P0,0.0002739310,0.6447238260
+9-MA_05-SA5P0,0.0001624497,0.6447238260
+10-MA_05-SA5P0,0.0001110894,0.6447238260
+11-MA_05-SA5P0,0.0000823558,0.6447238260
+12-MA_05-SA5P0,0.0000643011,0.6447238260
+13-MA_05-SA5P0,0.0000471328,0.6447238260
+14-MA_05-SA5P0,0.0000459973,0.6447238260
+15-MA_05-SA5P0,0.0000353847,0.6447238260
+16-MA_05-SA5P0,0.0000288665,0.6447238260
+17-MA_05-SA5P0,0.0000209115,0.6447238260
+18-MA_05-SA5P0,0.0000127492,0.6447238260
+19-MA_05-SA5P0,0.0142602981,0.6447238260
+20-MA_05-SA5P0,0.0134381670,0.6447238260
+21-MA_05-SA5P0,0.0124742328,0.6447238260
+22-MA_05-SA5P0,0.0114694388,0.6447238260
+23-MA_05-SA5P0,0.0104926454,0.6447238260
+24-MA_05-SA5P0,0.0087556498,0.6447238260
+25-MA_05-SA5P0,0.0073577388,0.6447238260
+26-MA_05-SA5P0,0.0050347574,0.6447238260
+27-MA_05-SA5P0,0.0037079526,0.6447238260
+28-MA_05-SA5P0,0.0023318137,0.6447238260
+29-MA_05-SA5P0,0.0016522629,0.6447238260
+30-MA_05-SA5P0,0.0012565809,0.6447238260
+31-MA_05-SA5P0,0.0010009325,0.6447238260
+32-MA_05-SA5P0,0.0007532797,0.6447238260
+33-MA_05-SA5P0,0.0007346894,0.6447238260
+34-MA_05-SA5P0,0.0005654102,0.6447238260
+35-MA_05-SA5P0,0.0004613252,0.6447238260
+36-MA_05-SA5P0,0.0003342318,0.6447238260
+37-MA_05-SA5P0,0.0002037854,0.6447238260
+38-MA_05-SA5P0,0.0676443523,0.6447238260
+39-MA_05-SA5P0,0.0655290589,0.6447238260
+40-MA_05-SA5P0,0.0628561347,0.6447238260
+41-MA_05-SA5P0,0.0598293118,0.6447238260
+42-MA_05-SA5P0,0.0566306315,0.6447238260
+43-MA_05-SA5P0,0.0502516094,0.6447238260
+44-MA_05-SA5P0,0.0444051179,0.6447238260
+45-MA_05-SA5P0,0.0331046873,0.6447238260
+46-MA_05-SA5P0,0.0256766254,0.6447238260
+47-MA_05-SA5P0,0.0171556886,0.6447238260
+48-MA_05-SA5P0,0.0126103466,0.6447238260
+49-MA_05-SA5P0,0.0098447841,0.6447238260
+50-MA_05-SA5P0,0.0080034303,0.6447238260
+51-MA_05-SA5P0,0.0061897660,0.6447238260
+52-MA_05-SA5P0,0.0060318556,0.6447238260
+53-MA_05-SA5P0,0.0046447325,0.6447238260
+54-MA_05-SA5P0,0.0037905026,0.6447238260
+55-MA_05-SA5P0,0.0027466804,0.6447238260
+56-MA_05-SA5P0,0.0016748437,0.6447238260
+57-MA_05-SA5P0,0.0000797301,0.6447238260
+58-MA_05-SA5P0,0.0000276232,0.6447238260
+59-MA_05-SA5P0,0.0012734865,0.6447238260
+60-MA_05-SA5P0,0.0004412102,0.6447238260
+61-MA_05-SA5P0,0.0104554200,0.6447238260
+62-MA_05-SA5P0,0.0036223690,0.6447238260
+0-MA_05-SA7P5,0.0007896960,0.6447238260
+1-MA_05-SA7P5,0.0006934415,0.6447238260
+2-MA_05-SA7P5,0.0005984606,0.6447238260
+3-MA_05-SA7P5,0.0005145942,0.6447238260
+4-MA_05-SA7P5,0.0004441567,0.6447238260
+5-MA_05-SA7P5,0.0003385247,0.6447238260
+6-MA_05-SA7P5,0.0002668002,0.6447238260
+7-MA_05-SA7P5,0.0001657237,0.6447238260
+8-MA_05-SA7P5,0.0001155332,0.6447238260
+9-MA_05-SA7P5,0.0000680657,0.6447238260
+10-MA_05-SA7P5,0.0000462386,0.6447238260
+11-MA_05-SA7P5,0.0000340518,0.6447238260
+12-MA_05-SA7P5,0.0000264103,0.6447238260
+13-MA_05-SA7P5,0.0000191025,0.6447238260
+14-MA_05-SA7P5,0.0000183952,0.6447238260
+15-MA_05-SA7P5,0.0000136867,0.6447238260
+16-MA_05-SA7P5,0.0000107989,0.6447238260
+17-MA_05-SA7P5,0.0000073177,0.6447238260
+18-MA_05-SA7P5,0.0000039037,0.6447238260
+19-MA_05-SA7P5,0.0061959886,0.6447238260
+20-MA_05-SA7P5,0.0058374129,0.6447238260
+21-MA_05-SA7P5,0.0054170099,0.6447238260
+22-MA_05-SA7P5,0.0049788138,0.6447238260
+23-MA_05-SA7P5,0.0045528603,0.6447238260
+24-MA_05-SA7P5,0.0037954977,0.6447238260
+25-MA_05-SA7P5,0.0031860990,0.6447238260
+26-MA_05-SA7P5,0.0021737944,0.6447238260
+27-MA_05-SA7P5,0.0015959548,0.6447238260
+28-MA_05-SA7P5,0.0009971988,0.6447238260
+29-MA_05-SA7P5,0.0007019711,0.6447238260
+30-MA_05-SA7P5,0.0005303495,0.6447238260
+31-MA_05-SA7P5,0.0004196602,0.6447238260
+32-MA_05-SA7P5,0.0003116563,0.6447238260
+33-MA_05-SA7P5,0.0002999435,0.6447238260
+34-MA_05-SA7P5,0.0002232651,0.6447238260
+35-MA_05-SA7P5,0.0001761875,0.6447238260
+36-MA_05-SA7P5,0.0001194060,0.6447238260
+37-MA_05-SA7P5,0.0000637030,0.6447238260
+38-MA_05-SA7P5,0.0337068711,0.6447238260
+39-MA_05-SA7P5,0.0326470015,0.6447238260
+40-MA_05-SA7P5,0.0313077626,0.6447238260
+41-MA_05-SA7P5,0.0297912538,0.6447238260
+42-MA_05-SA7P5,0.0281887007,0.6447238260
+43-MA_05-SA7P5,0.0249929976,0.6447238260
+44-MA_05-SA7P5,0.0220643869,0.6447238260
+45-MA_05-SA7P5,0.0164050236,0.6447238260
+46-MA_05-SA7P5,0.0126863879,0.6447238260
+47-MA_05-SA7P5,0.0084233579,0.6447238260
+48-MA_05-SA7P5,0.0061517284,0.6447238260
+49-MA_05-SA7P5,0.0047712621,0.6447238260
+50-MA_05-SA7P5,0.0038533778,0.6447238260
+51-MA_05-SA7P5,0.0029409520,0.6447238260
+52-MA_05-SA7P5,0.0028280936,0.6447238260
+53-MA_05-SA7P5,0.0021064081,0.6447238260
+54-MA_05-SA7P5,0.0016626396,0.6447238260
+55-MA_05-SA7P5,0.0011270132,0.6447238260
+56-MA_05-SA7P5,0.0006013271,0.6447238260
+57-MA_05-SA7P5,0.0000305577,0.6447238260
+58-MA_05-SA7P5,0.0000114914,0.6447238260
+59-MA_05-SA7P5,0.0004982597,0.6447238260
+60-MA_05-SA7P5,0.0001873731,0.6447238260
+61-MA_05-SA7P5,0.0046979687,0.6447238260
+62-MA_05-SA7P5,0.0017666952,0.6447238260
+0-MA_05-SA10P0,0.0005310863,0.6447238260
+1-MA_05-SA10P0,0.0004662944,0.6447238260
+2-MA_05-SA10P0,0.0004023620,0.6447238260
+3-MA_05-SA10P0,0.0003459132,0.6447238260
+4-MA_05-SA10P0,0.0002985054,0.6447238260
+5-MA_05-SA10P0,0.0002274153,0.6447238260
+6-MA_05-SA10P0,0.0001791502,0.6447238260
+7-MA_05-SA10P0,0.0001111468,0.6447238260
+8-MA_05-SA10P0,0.0000773901,0.6447238260
+9-MA_05-SA10P0,0.0000454804,0.6447238260
+10-MA_05-SA10P0,0.0000308183,0.6447238260
+11-MA_05-SA10P0,0.0000226386,0.6447238260
+12-MA_05-SA10P0,0.0000175140,0.6447238260
+13-MA_05-SA10P0,0.0000126039,0.6447238260
+14-MA_05-SA10P0,0.0000120760,0.6447238260
+15-MA_05-SA10P0,0.0000088720,0.6447238260
+16-MA_05-SA10P0,0.0000069120,0.6447238260
+17-MA_05-SA10P0,0.0000045667,0.6447238260
+18-MA_05-SA10P0,0.0000023158,0.6447238260
+19-MA_05-SA10P0,0.0040864403,0.6447238260
+20-MA_05-SA10P0,0.0038496072,0.6447238260
+21-MA_05-SA10P0,0.0035719435,0.6447238260
+22-MA_05-SA10P0,0.0032825350,0.6447238260
+23-MA_05-SA10P0,0.0030012202,0.6447238260
+24-MA_05-SA10P0,0.0025010556,0.6447238260
+25-MA_05-SA10P0,0.0020986370,0.6447238260
+26-MA_05-SA10P0,0.0014302532,0.6447238260
+27-MA_05-SA10P0,0.0010488217,0.6447238260
+28-MA_05-SA10P0,0.0006537343,0.6447238260
+29-MA_05-SA10P0,0.0004590485,0.6447238260
+30-MA_05-SA10P0,0.0003459502,0.6447238260
+31-MA_05-SA10P0,0.0002730594,0.6447238260
+32-MA_05-SA10P0,0.0002017648,0.6447238260
+33-MA_05-SA10P0,0.0001932035,0.6447238260
+34-MA_05-SA10P0,0.0001420053,0.6447238260
+35-MA_05-SA10P0,0.0001106529,0.6447238260
+36-MA_05-SA10P0,0.0000731170,0.6447238260
+37-MA_05-SA10P0,0.0000370813,0.6447238260
+38-MA_05-SA10P0,0.0232527598,0.6447238260
+39-MA_05-SA10P0,0.0225200814,0.6447238260
+40-MA_05-SA10P0,0.0215942865,0.6447238260
+41-MA_05-SA10P0,0.0205459608,0.6447238260
+42-MA_05-SA10P0,0.0194381715,0.6447238260
+43-MA_05-SA10P0,0.0172291533,0.6447238260
+44-MA_05-SA10P0,0.0152048490,0.6447238260
+45-MA_05-SA10P0,0.0112933493,0.6447238260
+46-MA_05-SA10P0,0.0087235969,0.6447238260
+47-MA_05-SA10P0,0.0057784321,0.6447238260
+48-MA_05-SA10P0,0.0042097587,0.6447238260
+49-MA_05-SA10P0,0.0032569787,0.6447238260
+50-MA_05-SA10P0,0.0026238427,0.6447238260
+51-MA_05-SA10P0,0.0019925189,0.6447238260
+52-MA_05-SA10P0,0.0019064233,0.6447238260
+53-MA_05-SA10P0,0.0014021125,0.6447238260
+54-MA_05-SA10P0,0.0010928130,0.6447238260
+55-MA_05-SA10P0,0.0007222444,0.6447238260
+56-MA_05-SA10P0,0.0003663295,0.6447238260
+57-MA_05-SA10P0,0.0000194519,0.6447238260
+58-MA_05-SA10P0,0.0000077624,0.6447238260
+59-MA_05-SA10P0,0.0003112100,0.6447238260
+60-MA_05-SA10P0,0.0001241894,0.6447238260
+61-MA_05-SA10P0,0.0030708444,0.6447238260
+62-MA_05-SA10P0,0.0012254310,0.6447238260