diff --git a/.travis.yml b/.travis.yml
index bf77561..d17b154 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,6 +4,8 @@ language: python
python:
- "2.7"
+# - "3.5"
+# - "3.6"
addons:
apt:
@@ -16,11 +18,12 @@ install:
# Make sure pip is up-to-date and has support for wheels
- pip -q install -U pip
# Install oq-engine dependencies
- - pip -q install -r oq-engine/requirements-py27-linux64.txt
- - pip -q install -e oq-engine/
- # Install HMTK extra dependencies
- - pip -q install -r requirements-py27-linux64.txt
- - pip -q install -e .
+ - if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then pip install -r oq-engine/requirements-py27-linux64.txt;
+ elif [[ $TRAVIS_PYTHON_VERSION == 3.5 ]]; then pip install -r oq-engine/requirements-py35-linux64.txt;
+ elif [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then pip install -r oq-engine/requirements-py36-linux64.txt;
+ else echo "Python not supported" && exit 1; fi
+ - pip install -e oq-engine/
+ - pip install -e .
script:
- nosetests -vx tests
diff --git a/README.md b/README.md
index c84deff..6f7d76b 100755
--- a/README.md
+++ b/README.md
@@ -1,5 +1,6 @@
gmpe-smtk
=========
+[](https://travis-ci.org/GEMScienceTools/gmpe-smtk)
Python and OpenQuake-based Toolkit for Analysis of Strong Motions and Interpretation of GMPEs
@@ -16,7 +17,7 @@ License as published by the Free Software Foundation, either version
3 of the License, or (at your option) any later version. Please take
a minute of your time to read the disclaimer below.
-Copyright (c) 2014-2017 GEM Foundation
+Copyright (c) 2014-2018 GEM Foundation
Disclaimer
@@ -50,73 +51,31 @@ The GEM Foundation, and the authors of the software, assume no
liability for use of the software.
-dependencies
+Installation
============
-The gmpe-smtk currently requires the following dependencies:
+The gmpe-smtk is built on top of the [OpenQuake-engine](https://github.com/gem/oq-engine).
+To install the toolkit, and ensure that it is aligned with the OpenQuake-engine
+we recommend to install the OpenQuake-engine according to the instructions
+given for your specific operating system. The full installation instructions for
+OpenQuake can be found here: [https://github.com/gem/oq-engine](https://github.com/gem/oq-engine).
-* OpenQuake Hazard Library ([oq-hazardlib](https://github.com/gem/oq-hazardlib))
-* Numpy (1.6.1 or later) (installed with oq-hazardlib)
-* Scipy (0.11.0 or later) (installed with oq-hazardlib)
-* Shapely (installed with oq-hazardlib)
-* Matplotlib (1.3.x or later)
-* h5py (2.2.0 or later)
-
-installation
-============
-
-* Windows
-
-Windows users should install the PythonXY software package (https://code.google.com/p/pythonxy/), which will install all of the dependencies except oq-hazardlib
-To install oq-hazardlib it is recommended to install MinGW or Github for Windows.
-
-If using Github for Windows simply open a bash shell, clone the oq-hazardlib
-repository using:
-
-```bash
-git clone https://github.com/gem/oq-hazardlib.git
-```
-
-Then type
-
-```bash
-cd oq-hazardlib
-python setup.py install
-```
-
-To install the gmpe-smtk simply download the zipped code from the repository,
-unzip it to a location of your choice then add the directory path to
-the Environment Variables found in:
-
-My Computer -> Properties -> System Properties -> Advanced -> Environment Variables
-
-In the Environment Variables you will see a list of System Variables. Select
-"Path" and then "Edit". Then simply add the directory of the gmpe-smtk to the
-list of directories.
-
-* OSX/Linux
-
-To install oq-hazardlib simply clone the oq-hazardlib repository into a folder
-of your choice.
-
+Once the OpenQuake-engine is installed, the gmpe-smtk repository is cloned by:
```bash
-git clone https://github.com/gem/oq-hazardlib.git
+git clone https://github.com/GEMScienceTools/gmpe-smtk
```
-Then run
-
+Then:
```bash
-cd oq-hazardlib
+cd gmpe-smtk
python setup.py install
```
-Matplotlib and h5py can both be installed from the native package managers,
-although it is recommended to use pip for this purpose.
+For users interested in developing new features or contributing code to the
+repository we strongly recommend to install the OpenQuake-engine according to
+the instructions for [installing OpenQuake for development](https://github.com/gem/oq-engine/blob/master/doc/installing/development.md).
-To install the gmpe-smtk, clone the code from the repository and then
-add the following line to your bash or profile script:
+The gmpe-smtk is currently written in Python 2.7 and work is now underway to
+port this to Python 3.5.
-```bash
-export PYTHONPATH=/path/to/gmpe-smtk/:$PYTHONPATH
-```
diff --git a/requirements-py27-linux64.txt b/requirements-py27-linux64.txt
deleted file mode 100644
index 865f60e..0000000
--- a/requirements-py27-linux64.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-# !! must update pip first! so wheels will be used !!
-
-# GEM Mirror
-http://ftp.openquake.org/wheelhouse/linux/py27/PyYAML-3.12-cp27-cp27mu-manylinux1_x86_64.whl
-
-# Plotting stuff
-http://ftp.openquake.org/wheelhouse/linux/py27/matplotlib-1.5.3-cp27-cp27mu-manylinux1_x86_64.whl
-http://ftp.openquake.org/wheelhouse/linux/py/pyparsing-2.1.10-py2.py3-none-any.whl
-http://ftp.openquake.org/wheelhouse/linux/py/cycler-0.10.0-py2.py3-none-any.whl
-http://ftp.openquake.org/wheelhouse/linux/py/python_dateutil-2.6.0-py2.py3-none-any.whl
diff --git a/requirements-py35-linux64.txt b/requirements-py35-linux64.txt
deleted file mode 100644
index 73c9d36..0000000
--- a/requirements-py35-linux64.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-# !! must update pip first! so wheels will be used !!
-
-# GEM Mirror
-http://ftp.openquake.org/wheelhouse/linux/py35/PyYAML-3.12-cp35-cp35m-manylinux1_x86_64.whl
-
-# Plotting stuff
-http://ftp.openquake.org/wheelhouse/linux/py35/matplotlib-1.5.3-cp35-cp35m-manylinux1_x86_64.whl
-http://ftp.openquake.org/wheelhouse/linux/py/pyparsing-2.1.10-py2.py3-none-any.whl
-http://ftp.openquake.org/wheelhouse/linux/py/cycler-0.10.0-py2.py3-none-any.whl
-http://ftp.openquake.org/wheelhouse/linux/py/python_dateutil-2.6.0-py2.py3-none-any.whl
diff --git a/smtk/hazard/conditional_simulation.py b/smtk/hazard/conditional_simulation.py
index c03e838..82665a3 100755
--- a/smtk/hazard/conditional_simulation.py
+++ b/smtk/hazard/conditional_simulation.py
@@ -141,13 +141,13 @@ def conditional_simulation(known_sites, residuals, unknown_sites, imt, nsim,
unknown_sites.depths = np.zeros_like(unknown_sites.depths)
cov_kk = correlation_model._get_correlation_matrix(known_sites, imt).I
cov_uu = correlation_model._get_correlation_matrix(unknown_sites, imt)
- d_k_uk = np.zeros([known_sites.total_sites, unknown_sites.total_sites],
+ d_k_uk = np.zeros([len(known_sites), len(unknown_sites)],
dtype=float)
- for iloc in range(0, known_sites.total_sites):
- d_k_uk[iloc, :] = geodetic_distance(known_sites.lons[iloc],
- known_sites.lats[iloc],
- unknown_sites.lons,
- unknown_sites.lats)
+ for iloc in range(len(known_sites)):
+ d_k_uk[iloc, :] = geodetic_distance(known_sites.array["lons"][iloc],
+ known_sites.array["lats"][iloc],
+ unknown_sites.array["lons"],
+ unknown_sites.array["lats"])
cov_ku = correlation_model._get_correlation_model(d_k_uk, imt)
mu = cov_ku.T * cov_kk * np.matrix(residuals).T
stddev = cov_uu - (cov_ku.T * cov_kk * cov_ku)
diff --git a/smtk/intensity_measures.py b/smtk/intensity_measures.py
index 0c6ec31..9ded12c 100755
--- a/smtk/intensity_measures.py
+++ b/smtk/intensity_measures.py
@@ -186,7 +186,7 @@ def get_response_spectrum(acceleration, time_step, periods, damping=0.05,
periods,
damping,
units)
- spectrum, time_series, accel, vel, disp = response_spec.evaluate()
+ spectrum, time_series, accel, vel, disp = response_spec()
spectrum["PGA"] = time_series["PGA"]
spectrum["PGV"] = time_series["PGV"]
spectrum["PGD"] = time_series["PGD"]
@@ -231,7 +231,7 @@ def geometric_mean_spectrum(sax, say):
Dictionary of response spectrum outputs from y-component
"""
sa_gm = {}
- for key in sax.keys():
+ for key in sax:
if key == "Period":
sa_gm[key] = sax[key]
else:
@@ -243,7 +243,7 @@ def arithmetic_mean_spectrum(sax, say):
Returns the arithmetic mean of the response spectrum
"""
sa_am = {}
- for key in sax.keys():
+ for key in sax:
if key == "Period":
sa_am[key] = sax[key]
else:
@@ -255,7 +255,7 @@ def envelope_spectrum(sax, say):
Returns the envelope of the response spectrum
"""
sa_env = {}
- for key in sax.keys():
+ for key in sax:
if key == "Period":
sa_env[key] = sax[key]
else:
diff --git a/smtk/parsers/simple_flatfile_parser_sara.py b/smtk/parsers/simple_flatfile_parser_sara.py
index 788e29b..6c9f3f2 100755
--- a/smtk/parsers/simple_flatfile_parser_sara.py
+++ b/smtk/parsers/simple_flatfile_parser_sara.py
@@ -1,736 +1,737 @@
-#!/usr/bin/env python
-# -*- coding: utf-8 -*-
-# vim: tabstop=4 shiftwidth=4 softtabstop=4
-#
-# Copyright (C) 2014-2017 GEM Foundation and G. Weatherill
-#
-# OpenQuake is free software: you can redistribute it and/or modify it
-# under the terms of the GNU Affero General Public License as published
-# by the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# OpenQuake is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU Affero General Public License for more details.
-#
-# You should have received a copy of the GNU Affero General Public License
-# along with OpenQuake. If not, see .
-
-"""
-Parser from a "Simple Flatfile + ascii format" to SMTK
-"""
-import os
-import csv
-import numpy as np
-import copy
-import h5py
-from sets import Set
-from linecache import getline
-from collections import OrderedDict
-from datetime import datetime
-# In order to define default fault dimension import scaling relationships
-from openquake.hazardlib.scalerel.strasser2010 import (StrasserInterface,
- StrasserIntraslab)
-from openquake.hazardlib.scalerel.wc1994 import WC1994
-from openquake.hazardlib.geo.mesh import Mesh, RectangularMesh
-from openquake.hazardlib.geo.point import Point
-from openquake.hazardlib.geo.line import Line
-from openquake.hazardlib.geo.surface.simple_fault import SimpleFaultSurface
-import smtk.trellis.configure as rcfg
-from smtk.sm_database import *
-from smtk.sm_utils import convert_accel_units
-from smtk.parsers.base_database_parser import (get_float, get_int,
- get_positive_float,
- get_positive_int,
- SMDatabaseReader,
- SMTimeSeriesReader,
- SMSpectraReader)
-
-HEADER_LIST = Set([
- 'Record Sequence Number', 'EQID', 'Earthquake Name', 'Country', 'Year',
- 'Month', 'Day', 'Hour', 'Minute', 'Second',
- 'Epicenter Latitude (deg; positive N)',
- 'Epicenter Longitude (deg; positive E)', 'Hypocenter Depth (km)',
- 'Magnitude', 'Magnitude type', 'Magnitude uncertainty', 'Mo (dyne.cm)',
- 'Tectonic environment (Crustal; Inslab; Interface; Stable; Geothermal; Volcanic; Oceanic_crust)',
- 'Earthquake in Extensional Regime: 1=Yes; 0=No',
- 'Nodal Plane 1 Strike (deg)',
- 'Nodal Plane 1 Dip (deg)', 'Nodal Plane 1 Rake Angle (deg)',
- 'Nodal Plane 2 Strike (deg)', 'Nodal Plane 2 Dip (deg)',
- 'Nodal Plane 2 Rake Angle (deg)', 'Fault Plane (1; 2; X)',
- 'Style-of-Faulting (S; R; N; U)', 'Fault Name',
- 'Depth to Top Of Fault Rupture Model',
- 'Fault Rupture Length (km)', 'Fault Rupture Width (km)',
- 'Along-strike Hypocenter location on the fault (fraction between 0 and 1)',
- 'Along-width Hypocenter location on the fault (fraction between 0 and 1)',
- 'Static Stress Drop (bars)', 'Type Static Stress Drop',
- 'Directivity flag (Y; N; U)', 'Station ID', 'Station Code',
- 'Station Latitude (deg positive N)', 'Station Longitude (deg positive E)',
- 'Station Elevation (m)',
- 'Site Class (Hard Rock; Rock; Stiff Soil; Soft Soil)',
- 'Preferred NEHRP Based on Vs30', 'Preferred Vs30 (m/s)',
- 'Measured(1)/Inferred(2) Class', 'Sigma of Vs30 (in natural log Units)',
- 'Depth to Basement Rock', 'Z1 (m)','Z2.5 (m)', 'Epicentral Distance (km)',
- 'Hypocentral Distance (km)', 'Joyner-Boore Distance (km)',
- 'Rupture Distance (km)', 'Source to Site Azimuth (deg)', 'FW/HW Indicator',
- 'Forearc/Backarc for subduction events', 'File Name (Horizontal 1)',
- 'File Name (Horizontal 2)','File Name (Vertical)',
- 'Digital (D)/Analog (A) Recording', 'Acceleration (A)/Velocity (V)',
- 'Unit (cm/s/s; m/s/s; g)', 'File format', 'Processing flag',
- 'Type of Filter','npass','nroll','HP-H1 (Hz)','HP-H2 (Hz)',
- 'LP-H1 (Hz)', 'LP-H2 (Hz)', 'Factor', 'Lowest Usable Freq - H1 (Hz)',
- 'Lowest Usable Freq - H2 (Hz)', 'Lowest Usable Freq - Ave. Component (Hz)',
- 'Maximum Usable Freq - Ave. Component (Hz)', 'HP-V (Hz)', 'LP-V (Hz)',
- 'Lowest Usable Freq - V (Hz)','Comments'])
-
-FILTER_TYPE = {"BW": "Butterworth",
- "OR": "Ormsby",
- "Ormsby": "Ormsby",
- "Acausal Butterworth": "Acausal Butterworth",
- "Causal Butterworth": "Causal Butterworth"}
-
-NEW_MECHANISM_TYPE = {"N": "Normal",
- "S": "Strike-Slip",
- "R": "Reverse",
- "U": "Unknown",
- "RO": "Reverse-Oblique",
- "NO": "Normal-Oblique"}
-
-class SimpleFlatfileParserV9(SMDatabaseReader):
- """
- Parser for strong motio database stored in a "Simple" flatfile format.
- Typically this format is an Excel spreadsheet, though for the current
- purposes it is assumed the spreadsheet is formatted as csv
- """
- def parse(self):
- """
- Parses the database
- """
- HEADER_LIST1 = copy.deepcopy(HEADER_LIST)
- self._header_check(HEADER_LIST1)
- # Read in csv
- reader = csv.DictReader(open(self.filename, "r"))
- metadata = []
- self.database = GroundMotionDatabase(self.id, self.name)
- self._get_site_id = self.database._get_site_id
- for row in reader:
- self.database.records.append(self._parse_record(row))
- return self.database
-
- def _header_check(self, headerslist):
- """
- Checks to see if any of the headers are missing, raises error if so.
- Also informs the user of redundent headers in the input file.
- """
- # Check which of the pre-defined headers are missing
- headers = Set((getline(self.filename, 1).rstrip("\n")).split(","))
- missing_headers = headerslist.difference(headers)
- if len(missing_headers) > 0:
- output_string = ", ".join([value for value in missing_headers])
- raise IOError("The following headers are missing from the input "
- "file: %s" % output_string)
-
- additional_headers = headers.difference(headerslist)
- if len(additional_headers) > 0:
- for header in additional_headers:
- print "Header %s not recognised - ignoring this data!" % header
- return
-
- def _parse_record(self, metadata):
- """
- Parses the record information and returns an instance of the
- :class: smtk.sm_database.GroundMotionRecord
- """
- # Waveform ID
- wfid = metadata["Record Sequence Number"]
- # Event information
- event = self._parse_event_data(metadata)
- # Site information
- site = self._parse_site_data(metadata)
- # Distance Information
- distances = self._parse_distance_data(event, site, metadata)
- # Components
- x_comp, y_comp, vertical = self._parse_processing_data(wfid, metadata)
- # Return record metadata
- lup = get_float(metadata["Lowest Usable Freq - Ave. Component (Hz)"])
- if lup:
- lup = 1. / lup
- sup = get_float(metadata["Maximum Usable Freq - Ave. Component (Hz)"])
- if sup:
- sup = 1. / sup
- return GroundMotionRecord(wfid,
- [metadata["File Name (Horizontal 1)"],
- metadata["File Name (Horizontal 2)"],
- metadata["File Name (Vertical)"]],
- event,
- distances,
- site,
- x_comp,
- y_comp,
- longest_period=lup,
- shortest_period=sup)
-
- def _parse_event_data(self, metadata):
- """
- Read in the distance related metadata and return an instance of the
- :class: smtk.sm_database.Earthquake
-
- """
- data_fields = ['Month', 'Day', 'Hour', 'Minute', 'Second']
- for f in data_fields:
- metadata[f] = metadata[f].zfill(2)
-
- # Date and Time
- year, month, day, hour, minute, second = self._validate_datetime(
- metadata)
- #year = get_int(metadata["Year"])
- #month = get_int(metadata["Month"])
- #day = get_int(metadata["Day"])
- #hour = get_int(metadata["Hour"])
- #minute = get_int(metadata["Minute"])
- #second = get_int(metadata["Second"])
- eq_datetime = datetime(year, month, day, hour, minute, second)
- # Event ID and Name
- eq_id = metadata["EQID"]
- eq_name = metadata["Earthquake Name"]
- # Focal Mechanism
- focal_mechanism = self._get_focal_mechanism(eq_id, eq_name, metadata)
-
- focal_mechanism.scalar_moment = get_float(metadata["Mo (dyne.cm)"]) *\
- 1E-7
- # Read magnitude
- pref_mag = Magnitude(get_float(metadata["Magnitude"]),
- metadata["Magnitude type"],
- sigma=get_float(metadata["Magnitude uncertainty"]))
- # Create Earthquake Class
- eqk = Earthquake(eq_id, eq_name, eq_datetime,
- get_float(metadata["Epicenter Longitude (deg; positive E)"]),
- get_float(metadata["Epicenter Latitude (deg; positive N)"]),
- get_float(metadata["Hypocenter Depth (km)"]),
- pref_mag,
- focal_mechanism,
- metadata["Country"])
-
- # hypocenter location
- f1 = get_float(metadata[
- "Along-strike Hypocenter location " +
- "on the fault (fraction between 0 and 1)"])
- f2 = get_float(metadata[
- "Along-width Hypocenter location " +
- "on the fault (fraction between 0 and 1)"])
- if f1 is None or f2 is None:
- hypo_loc = (0.5, 0.7)
- else:
- hypo_loc = (f1, f2)
-
- eqk.tectonic_region = metadata["Tectonic environment (Crustal; Inslab; Interface; Stable; Geothermal; Volcanic; Oceanic_crust)"]
- if (eqk.tectonic_region == "Stable" or
- eqk.tectonic_region == "Crustal" or
- eqk.tectonic_region == "Oceanic_crust"):
- msr=WC1994()
- elif eqk.tectonic_region == "Inslab":
- msr=StrasserIntraslab()
- elif eqk.tectonic_region == "Interface":
- msr=StrasserInterface()
-
- # Warning rake set to 0.0 in scaling relationship - applies only
- # to WC1994
- area = msr.get_median_area(pref_mag.value, 0.0)
- aspect_ratio = 1.5
- width_model = np.sqrt(area / aspect_ratio)
- length_model = aspect_ratio * width_model
- ztor_model = eqk.depth - width_model / 2.
- if ztor_model < 0:
- ztor_model = 0.0
-
- length = get_positive_float(metadata["Fault Rupture Length (km)"])
- if length is None:
- length = length_model
- width = get_positive_float(metadata["Fault Rupture Width (km)"])
- if width is None:
- width = width_model
- ztor = get_float(metadata["Depth to Top Of Fault Rupture Model"])
- if ztor is None:
- ztor=ztor_model
-
- # Rupture
- eqk.rupture = Rupture(eq_id,
- eq_name,
- pref_mag,
- length,
- width,
- ztor,
- hypo_loc=hypo_loc)
-# get_float(metadata["Fault Rupture Length (km)"]),
-# get_float(metadata["Fault Rupture Width (km)"]),
-# get_float(metadata["Depth to Top Of Fault Rupture Model"]),
-# hypo_loc=hypo_loc)
- eqk.rupture.get_area()
- return eqk
-
- @staticmethod
- def _validate_datetime(metadata):
- """
- SARA flatfile should be formatted correctly but other flatfiles
- are prone to bad datetime values - these will be overwritten
- """
- return (get_int(metadata["Year"]), get_int(metadata["Month"]),
- get_int(metadata["Day"]), get_int(metadata["Hour"]),
- get_int(metadata["Minute"]), get_int(metadata["Second"]))
-
- def _get_focal_mechanism(self, eq_id, eq_name, metadata):
- """
- Returns the focal mechanism information as an instance of the
- :class: smtk.sigma_database.FocalMechanism
- """
- nodal_planes = GCMTNodalPlanes()
- # By default nodal plane 1 is assumed to be the fault plane in smtk.
- # Depending on parameter fault_plane import correct angles in nodal
- # planes 1 and 2 (1 being the fault plane)
- if metadata['Fault Plane (1; 2; X)'] == '1':
- nodal_planes.nodal_plane_1 = {
- "strike": get_float(metadata['Nodal Plane 1 Strike (deg)']),
- "dip": get_float(metadata['Nodal Plane 1 Dip (deg)']),
- "rake": get_float(metadata['Nodal Plane 1 Rake Angle (deg)'])}
-
- nodal_planes.nodal_plane_2 = {
- "strike": get_float(metadata['Nodal Plane 2 Strike (deg)']),
- "dip": get_float(metadata['Nodal Plane 2 Dip (deg)']),
- "rake": get_float(metadata['Nodal Plane 2 Rake Angle (deg)'])}
- elif metadata['Fault Plane (1; 2; X)'] == '2':
- nodal_planes.nodal_plane_1 = {
- "strike": get_float(metadata['Nodal Plane 2 Strike (deg)']),
- "dip": get_float(metadata['Nodal Plane 2 Dip (deg)']),
- "rake": get_float(metadata['Nodal Plane 2 Rake Angle (deg)'])}
-
- nodal_planes.nodal_plane_2 = {
- "strike": get_float(metadata['Nodal Plane 1 Strike (deg)']),
- "dip": get_float(metadata['Nodal Plane 1 Dip (deg)']),
- "rake": get_float(metadata['Nodal Plane 1 Rake Angle (deg)'])}
- elif metadata['Fault Plane (1; 2; X)'] == 'X':
- # Check if values for strike or dip are given otherwise set
- # strike=0 and dip=90 and fill strike and dip for fault plane 1
- # What can we do for rake?
- strike = get_float(metadata['Nodal Plane 1 Strike (deg)'])
- if strike is None:
- strike = get_float(metadata['Nodal Plane 2 Strike (deg)'])
- if strike is None:
- strike = 0.0
- dip = get_float(metadata['Nodal Plane 1 Dip (deg)'])
- if dip is None:
- dip = get_float(metadata['Nodal Plane 2 Dip (deg)'])
- if dip is None:
- dip = 90.0
- nodal_planes.nodal_plane_1 = {"strike": strike,
- "dip": dip,
- "rake": None}
- nodal_planes.nodal_plane_2 = {"strike": None,
- "dip": None,
- "rake": None}
-
- nodal_planes = self._check_mechanism(nodal_planes)
- principal_axes = GCMTPrincipalAxes()
- mech_type =\
- NEW_MECHANISM_TYPE[metadata["Style-of-Faulting (S; R; N; U)"]]
- return FocalMechanism(eq_id, eq_name, nodal_planes, principal_axes,
- mechanism_type=mech_type)
-
- def _check_mechanism(self, nodal_planes):
- """
- Verify that the nodal planes are valid, and default nodal plane 1
- to a "null" plane if not
- """
- if nodal_planes.nodal_plane_1["strike"]:
- nodal_planes.nodal_plane_1["strike"] = \
- nodal_planes.nodal_plane_1["strike"] % 360.0
- if nodal_planes.nodal_plane_2["strike"]:
- nodal_planes.nodal_plane_2["strike"] = \
- nodal_planes.nodal_plane_2["strike"] % 360.0
-
- valid_plane_1 = nodal_planes.nodal_plane_1["strike"] >= 0.0 and\
- nodal_planes.nodal_plane_1["strike"] < 360.0 and\
- nodal_planes.nodal_plane_1["dip"] > 0.0 and\
- nodal_planes.nodal_plane_1["dip"] <= 90.0 and\
- nodal_planes.nodal_plane_1["rake"] >= -180.0 and\
- nodal_planes.nodal_plane_1["rake"] <= 180.0
- valid_plane_2 = nodal_planes.nodal_plane_2["strike"] >= 0.0 and\
- nodal_planes.nodal_plane_2["strike"] <= 360.0 and\
- nodal_planes.nodal_plane_2["dip"] > 0.0 and\
- nodal_planes.nodal_plane_2["dip"] <= 90.0 and\
- nodal_planes.nodal_plane_2["rake"] >= -180.0 and\
- nodal_planes.nodal_plane_2["rake"] <= 180.0
- if valid_plane_1:
- return nodal_planes
-
- # If nodal plane 2 is valid then swap over
- if valid_plane_2:
- np1 = copy.deepcopy(nodal_planes.nodal_plane_1)
- np2 = copy.deepcopy(nodal_planes.nodal_plane_2)
- nodal_planes.nodal_plane_1 = np2
- nodal_planes.nodal_plane_2 = np1
- else:
- nodal_planes.nodal_plane_1 = {"strike": 0.0,
- "dip": 90.0,
- "rake": 0.0}
- return nodal_planes
-
-
-
-
- def _parse_distance_data(self, event, site, metadata):
- """
- Read in the distance related metadata and return an instance of the
- :class: smtk.sm_database.RecordDistance
- """
- # Compute various distance metrics
- # Add calculation of Repi, Rhypo from event and station localizations
- # (latitudes, longitudes, depth, elevation)?
- target_site = Mesh(np.array([site.longitude]),
- np.array([site.latitude]),
- np.array([-site.altitude / 1000.0]))
- # Warning ratio fixed to 1.5
- ratio=1.5
- surface_modeled = rcfg.create_planar_surface(
- Point(event.longitude, event.latitude, event.depth),
- event.mechanism.nodal_planes.nodal_plane_1['strike'],
- event.mechanism.nodal_planes.nodal_plane_1['dip'],
- event.rupture.area,
- ratio)
- hypocenter = rcfg.get_hypocentre_on_planar_surface(
- surface_modeled,
- event.rupture.hypo_loc)
- try:
- surface_modeled._create_mesh()
- except:
- dip = surface_modeled.get_dip()
- dip_dir = (surface_modeled.get_strike() - 90.) % 360.
- ztor = surface_modeled.top_left.depth
- d_x = ztor * np.tan(np.radians(90.0 - dip))
- top_left_surface = surface_modeled.top_left.point_at(d_x,
- -ztor,
- dip_dir)
- top_left_surface.depth = 0.
- top_right_surface = surface_modeled.top_right.point_at(d_x,
- -ztor,
- dip_dir)
- top_right_surface.depth = 0.
- surface_modeled = SimpleFaultSurface.from_fault_data(
- Line([top_left_surface, top_right_surface]),
- surface_modeled.top_left.depth,
- surface_modeled.bottom_left.depth,
- surface_modeled.get_dip(),
- 1.0)
-
- # Rhypo
- Rhypo = get_float(metadata["Hypocentral Distance (km)"])
- if Rhypo is None:
- Rhypo = hypocenter.distance_to_mesh(target_site)
- # Repi
- Repi = get_float(metadata["Epicentral Distance (km)"])
- if Repi is None:
- Repi= hypocenter.distance_to_mesh(target_site, with_depths=False)
- # Rrup
- Rrup = get_float(metadata["Rupture Distance (km)"])
- if Rrup is None:
- Rrup = surface_modeled.get_min_distance(target_site)
- # Rjb
- Rjb = get_float(metadata["Joyner-Boore Distance (km)"])
- if Rjb is None:
- Rjb = surface_modeled.get_joyner_boore_distance(target_site)
- # Need to check if Rx and Ry0 are consistant with the other metrics
- # when those are coming from the flatfile?
- # Rx
- Rx = surface_modeled.get_rx_distance(target_site)
- # Ry0
- Ry0 = surface_modeled.get_ry0_distance(target_site)
-
- distance = RecordDistance(
- repi = float(Repi),
- rhypo = float(Rhypo),
- rjb = float(Rjb),
- rrup = float(Rrup),
- r_x = float(Rx),
- ry0 = float(Ry0))
- distance.azimuth = get_float(metadata["Source to Site Azimuth (deg)"])
- #distance.hanging_wall = get_float(metadata["FW/HW Indicator"])
- if metadata["FW/HW Indicator"] == "HW":
- distance.hanging_wall = True
- elif metadata["FW/HW Indicator"] == "FW":
- distance.hanging_wall = False
- else:
- pass
-
- return distance
-
- def _parse_site_data(self, metadata):
- """
- Returns the site data as an instance of the :class:
- smtk.sm_database.RecordSite
- """
- site = RecordSite(
- self._get_site_id(metadata["Station ID"]),
- metadata["Station ID"],
- metadata["Station Code"],
- get_float(metadata["Station Longitude (deg positive E)"]),
- get_float(metadata["Station Latitude (deg positive N)"]),
- get_float(metadata["Station Elevation (m)"]),
- get_float(metadata["Preferred Vs30 (m/s)"]),
- site_class=metadata['Site Class (Hard Rock; Rock; Stiff Soil; Soft Soil)'],
- network_code=None, # not provided
- )
- # network_code=metadata["Owner"])
- site.nehrp = metadata["Preferred NEHRP Based on Vs30"]
- site.vs30_measured_type = metadata["Measured(1)/Inferred(2) Class"]
- if metadata["Measured(1)/Inferred(2) Class"] == "1":
- site.vs30_measured = True
- else:
- site.vs30_measured = False
- site.vs30_uncertainty = get_float(
- metadata["Sigma of Vs30 (in natural log Units)"])
- site.z1pt0 = get_float(metadata["Z1 (m)"])
- site.z1pt5 = None
- # site.z1pt5 = get_float(metadata["Z1.5 (m)"])
- site.z2pt5 = get_float(metadata["Z2.5 (m)"])
- # Implement default values for z1pt0 and z2pt5
- if site.z1pt0 is None:
- site.z1pt0 = rcfg.vs30_to_z1pt0_as08(site.vs30)
- if site.z2pt5 is None:
- site.z2pt5 = rcfg.z1pt0_to_z2pt5(site.z1pt0)
- else:
- # Need to convert z2pt5 from m to km
- site.z2pt5 = site.z2pt5/1000.0
- if "Backarc" in metadata["Forearc/Backarc for subduction events"]:
- site.backarc = True
- site.instrument_type = metadata["Digital (D)/Analog (A) Recording"]
- return site
-
- def _parse_processing_data(self, wfid, metadata):
- """
- Parses the information for each component
- """
- if metadata["Type of Filter"]:
- filter_params1 = {
- 'Type': FILTER_TYPE[metadata["Type of Filter"]],
- 'Order': None,
- 'Passes': get_positive_int(metadata['npass']),
- 'NRoll': get_positive_int(metadata['nroll']),
- 'High-Cut': get_positive_float(metadata["LP-H1 (Hz)"]),
- 'Low-Cut': get_positive_float(metadata["HP-H1 (Hz)"])}
-
- filter_params2 = {
- 'Type': FILTER_TYPE[metadata["Type of Filter"]],
- 'Order': None,
- 'Passes': get_positive_int(metadata['npass']),
- 'NRoll': get_positive_int(metadata['nroll']),
- 'High-Cut': get_positive_float(metadata["LP-H2 (Hz)"]),
- 'Low-Cut': get_positive_float(metadata["HP-H2 (Hz)"])}
- else:
- filter_params1, filter_params2 = None, None
-
- intensity_measures = {
- # All m - convert to cm
- 'PGA': None,
- 'PGV': None,
- 'PGD': None
- }
- luf1 = get_float(metadata["Lowest Usable Freq - H1 (Hz)"])
- if luf1 and luf1 > 0.0:
- lup1 = 1. / luf1
- else:
- lup1 = None
- luf2 = get_float(metadata["Lowest Usable Freq - H2 (Hz)"])
- if luf2 and luf2 > 0.0:
- lup2 = 1. / luf2
- else:
- lup2 = None
- xcomp = Component(wfid, "1",
- ims=intensity_measures,
- longest_period=lup1,
- waveform_filter=filter_params1,
- units=metadata["Unit (cm/s/s; m/s/s; g)"])
-
- ycomp = Component(wfid, "2",
- ims=intensity_measures,
- longest_period=lup2,
- waveform_filter=filter_params2,
- units=metadata["Unit (cm/s/s; m/s/s; g)"])
-
- luf3 = get_float(metadata["Lowest Usable Freq - V (Hz)"])
- if luf3 and luf3 > 0.0:
- filter_params3 = {
- 'Type': FILTER_TYPE[metadata["Type of Filter"]],
- 'Order': None,
- 'Passes': get_int(metadata['npass']),
- 'NRoll': get_int(metadata['nroll']),
- 'High-Cut': get_float(metadata["LP-V (Hz)"]),
- 'Low-Cut': get_float(metadata["HP-V (Hz)"])}
- lup3 = 1. / luf3
- zcomp = Component(wfid, "V",
- ims=intensity_measures,
- longest_period=lup3,
- waveform_filter=filter_params3,
- units=metadata["Unit (cm/s/s; m/s/s; g)"])
- return xcomp, ycomp, zcomp
- else:
- return xcomp, ycomp, None
-
-
-
-
-class NearFaultFlatFileParser(SimpleFlatfileParserV9):
-
- def parse(self):
- """
- Parses the database
- """
- HEADER_LIST1 = copy.deepcopy(HEADER_LIST)
- HEADER_LIST1.add("Rcdpp")
- self._header_check(HEADER_LIST1)
- # Read in csv
- reader = csv.DictReader(open(self.filename, "r"))
- metadata = []
- self.database = GroundMotionDatabase(self.id, self.name)
- self._get_site_id = self.database._get_site_id
- for row in reader:
- self.database.records.append(self._parse_record(row))
- return self.database
-
- def _parse_distance_data(self, event, site, metadata):
- """
- Read in the distance related metadata and return an instance of the
- :class: smtk.sm_database.RecordDistance
- """
- # Compute various distance metrics
- # Add calculation of Repi, Rhypo from event and station localizations
- # (latitudes, longitudes, depth, elevation)?
- target_site = Mesh(np.array([site.longitude]),
- np.array([site.latitude]),
- np.array([-site.altitude / 1000.0]))
- # Warning ratio fixed to 1.5
- ratio=1.5
- surface_modeled = rcfg.create_planar_surface(
- Point(event.longitude, event.latitude, event.depth),
- event.mechanism.nodal_planes.nodal_plane_1['strike'],
- event.mechanism.nodal_planes.nodal_plane_1['dip'],
- event.rupture.area,
- ratio)
- hypocenter = rcfg.get_hypocentre_on_planar_surface(
- surface_modeled,
- event.rupture.hypo_loc)
- try:
- surface_modeled._create_mesh()
- except:
- dip = surface_modeled.get_dip()
- dip_dir = (surface_modeled.get_strike() - 90.) % 360.
- ztor = surface_modeled.top_left.depth
- d_x = ztor * np.tan(np.radians(90.0 - dip))
- top_left_surface = surface_modeled.top_left.point_at(d_x,
- -ztor,
- dip_dir)
- top_left_surface.depth = 0.
- top_right_surface = surface_modeled.top_right.point_at(d_x,
- -ztor,
- dip_dir)
- top_right_surface.depth = 0.
- surface_modeled = SimpleFaultSurface.from_fault_data(
- Line([top_left_surface, top_right_surface]),
- surface_modeled.top_left.depth,
- surface_modeled.bottom_left.depth,
- surface_modeled.get_dip(),
- 1.0)
-
- # Rhypo
- Rhypo = get_float(metadata["Hypocentral Distance (km)"])
- if Rhypo is None:
- Rhypo = hypocenter.distance_to_mesh(target_site)
- # Repi
- Repi = get_float(metadata["Epicentral Distance (km)"])
- if Repi is None:
- Repi= hypocenter.distance_to_mesh(target_site, with_depths=False)
- # Rrup
- Rrup = get_float(metadata["Rupture Distance (km)"])
- if Rrup is None:
- Rrup = surface_modeled.get_min_distance(target_site)
- # Rjb
- Rjb = get_float(metadata["Joyner-Boore Distance (km)"])
- if Rjb is None:
- Rjb = surface_modeled.get_joyner_boore_distance(target_site)
- # Rcdpp
- Rcdpp = get_float(metadata["Rcdpp"])
- if Rcdpp is None:
- Rcdpp = surface_modeled.get_cdppvalue(target_site)
- # Need to check if Rx and Ry0 are consistant with the other metrics
- # when those are coming from the flatfile?
- # Rx
- Rx = surface_modeled.get_rx_distance(target_site)
- # Ry0
- Ry0 = surface_modeled.get_ry0_distance(target_site)
-
- distance = RecordDistance(
- repi = float(Repi),
- rhypo = float(Rhypo),
- rjb = float(Rjb),
- rrup = float(Rrup),
- r_x = float(Rx),
- ry0 = float(Ry0),
- rcdpp = float(Rcdpp) )
- distance.azimuth = get_float(metadata["Source to Site Azimuth (deg)"])
- #distance.hanging_wall = get_float(metadata["FW/HW Indicator"])
- if metadata["FW/HW Indicator"] == "HW":
- distance.hanging_wall = True
- elif metadata["FW/HW Indicator"] == "FW":
- distance.hanging_wall = False
- else:
- pass
-
- return distance
-
-class SimpleAsciiTimeseriesReader(SMTimeSeriesReader):
- """
- Parses a simple ascii representation of a record in which the first line
- contains the number of values and the time-step. Whilst the rest of the
- file contains the acceleration record
- """
- def parse_records(self, record):
- """
- Parses the record set
- """
- time_series = OrderedDict([
- ("X", {"Original": {}, "SDOF": {}}),
- ("Y", {"Original": {}, "SDOF": {}}),
- ("V", {"Original": {}, "SDOF": {}})])
-
- target_names = time_series.keys()
- for iloc, ifile in enumerate(self.input_files):
- if not os.path.exists(ifile):
- if iloc < 2:
- # Expected horizontal component is missing - raise error
- raise ValueError("Horizontal record %s is expected but "
- "not found!" % ifile)
- else:
- print "Vertical record file %s not found" % ifile
- del time_series["V"]
- continue
- else:
- time_series[target_names[iloc]]["Original"] = \
- self._parse_time_history(ifile, record.xrecord.units)
- if iloc < 2:
- del time_series["V"]
-
- return time_series
-
- def _parse_time_history(self, ifile, units="cm/s/s"):
- """
- Parses the time history from the file and returns a dictionary of
- time-series properties
- """
- output = {}
- accel = np.genfromtxt(ifile, skip_header=1)
- output["Acceleration"] = convert_accel_units(accel, self.units)
- nvals, time_step = (getline(ifile, 1).rstrip("\n")).split()
- output["Time-step"] = float(time_step)
- output["Number Steps"] = int(nvals)
- output["Units"] = units
- output["PGA"] = np.max(np.fabs(output["Acceleration"]))
- return output
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+#
+# Copyright (C) 2014-2017 GEM Foundation and G. Weatherill
+#
+# OpenQuake is free software: you can redistribute it and/or modify it
+# under the terms of the GNU Affero General Public License as published
+# by the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# OpenQuake is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with OpenQuake. If not, see .
+
+"""
+Parser from a "Simple Flatfile + ascii format" to SMTK
+"""
+import os
+import csv
+import numpy as np
+import copy
+import h5py
+from sets import Set
+from linecache import getline
+from collections import OrderedDict
+from datetime import datetime
+# In order to define default fault dimension import scaling relationships
+from openquake.hazardlib.scalerel.strasser2010 import (StrasserInterface,
+ StrasserIntraslab)
+from openquake.hazardlib.scalerel.wc1994 import WC1994
+from openquake.hazardlib.geo.mesh import Mesh, RectangularMesh
+from openquake.hazardlib.geo.point import Point
+from openquake.hazardlib.geo.line import Line
+from openquake.hazardlib.geo.surface.simple_fault import SimpleFaultSurface
+import smtk.trellis.configure as rcfg
+from smtk.sm_database import *
+from smtk.sm_utils import convert_accel_units
+from smtk.parsers.base_database_parser import (get_float, get_int,
+ get_positive_float,
+ get_positive_int,
+ SMDatabaseReader,
+ SMTimeSeriesReader,
+ SMSpectraReader)
+
+HEADER_LIST = Set([
+ 'Record Sequence Number', 'EQID', 'Earthquake Name', 'Country', 'Year',
+ 'Month', 'Day', 'Hour', 'Minute', 'Second',
+ 'Epicenter Latitude (deg; positive N)',
+ 'Epicenter Longitude (deg; positive E)', 'Hypocenter Depth (km)',
+ 'Magnitude', 'Magnitude type', 'Magnitude uncertainty', 'Mo (dyne.cm)',
+ 'Tectonic environment (Crustal; Inslab; Interface; Stable; Geothermal; Volcanic; Oceanic_crust)',
+ 'Earthquake in Extensional Regime: 1=Yes; 0=No',
+ 'Nodal Plane 1 Strike (deg)',
+ 'Nodal Plane 1 Dip (deg)', 'Nodal Plane 1 Rake Angle (deg)',
+ 'Nodal Plane 2 Strike (deg)', 'Nodal Plane 2 Dip (deg)',
+ 'Nodal Plane 2 Rake Angle (deg)', 'Fault Plane (1; 2; X)',
+ 'Style-of-Faulting (S; R; N; U)', 'Fault Name',
+ 'Depth to Top Of Fault Rupture Model',
+ 'Fault Rupture Length (km)', 'Fault Rupture Width (km)',
+ 'Along-strike Hypocenter location on the fault (fraction between 0 and 1)',
+ 'Along-width Hypocenter location on the fault (fraction between 0 and 1)',
+ 'Static Stress Drop (bars)', 'Type Static Stress Drop',
+ 'Directivity flag (Y; N; U)', 'Station ID', 'Station Code',
+ 'Station Latitude (deg positive N)', 'Station Longitude (deg positive E)',
+ 'Station Elevation (m)',
+ 'Site Class (Hard Rock; Rock; Stiff Soil; Soft Soil)',
+ 'Preferred NEHRP Based on Vs30', 'Preferred Vs30 (m/s)',
+ 'Measured(1)/Inferred(2) Class', 'Sigma of Vs30 (in natural log Units)',
+ 'Depth to Basement Rock', 'Z1 (m)','Z2.5 (m)', 'Epicentral Distance (km)',
+ 'Hypocentral Distance (km)', 'Joyner-Boore Distance (km)',
+ 'Rupture Distance (km)', 'Source to Site Azimuth (deg)', 'FW/HW Indicator',
+ 'Forearc/Backarc for subduction events', 'File Name (Horizontal 1)',
+ 'File Name (Horizontal 2)','File Name (Vertical)',
+ 'Digital (D)/Analog (A) Recording', 'Acceleration (A)/Velocity (V)',
+ 'Unit (cm/s/s; m/s/s; g)', 'File format', 'Processing flag',
+ 'Type of Filter','npass','nroll','HP-H1 (Hz)','HP-H2 (Hz)',
+ 'LP-H1 (Hz)', 'LP-H2 (Hz)', 'Factor', 'Lowest Usable Freq - H1 (Hz)',
+ 'Lowest Usable Freq - H2 (Hz)', 'Lowest Usable Freq - Ave. Component (Hz)',
+ 'Maximum Usable Freq - Ave. Component (Hz)', 'HP-V (Hz)', 'LP-V (Hz)',
+ 'Lowest Usable Freq - V (Hz)','Comments'])
+
+FILTER_TYPE = {"BW": "Butterworth",
+ "OR": "Ormsby",
+ "Ormsby": "Ormsby",
+ "Acausal Butterworth": "Acausal Butterworth",
+ "Causal Butterworth": "Causal Butterworth"}
+
+NEW_MECHANISM_TYPE = {"N": "Normal",
+ "S": "Strike-Slip",
+ "R": "Reverse",
+ "U": "Unknown",
+ "RO": "Reverse-Oblique",
+ "NO": "Normal-Oblique"}
+
+class SimpleFlatfileParserV9(SMDatabaseReader):
+ """
+ Parser for strong motio database stored in a "Simple" flatfile format.
+ Typically this format is an Excel spreadsheet, though for the current
+ purposes it is assumed the spreadsheet is formatted as csv
+ """
+ def parse(self):
+ """
+ Parses the database
+ """
+ HEADER_LIST1 = copy.deepcopy(HEADER_LIST)
+ self._header_check(HEADER_LIST1)
+ # Read in csv
+ reader = csv.DictReader(open(self.filename, "r"))
+ metadata = []
+ self.database = GroundMotionDatabase(self.id, self.name)
+ self._get_site_id = self.database._get_site_id
+ for row in reader:
+ self.database.records.append(self._parse_record(row))
+ return self.database
+
+ def _header_check(self, headerslist):
+ """
+ Checks to see if any of the headers are missing, raises error if so.
+ Also informs the user of redundent headers in the input file.
+ """
+ # Check which of the pre-defined headers are missing
+ headers = Set((getline(self.filename, 1).rstrip("\n")).split(","))
+ missing_headers = headerslist.difference(headers)
+ if len(missing_headers) > 0:
+ output_string = ", ".join([value for value in missing_headers])
+ raise IOError("The following headers are missing from the input "
+ "file: %s" % output_string)
+
+ additional_headers = headers.difference(headerslist)
+ if len(additional_headers) > 0:
+ for header in additional_headers:
+ print "Header %s not recognised - ignoring this data!" % header
+ return
+
+ def _parse_record(self, metadata):
+ """
+ Parses the record information and returns an instance of the
+ :class: smtk.sm_database.GroundMotionRecord
+ """
+ # Waveform ID
+ wfid = metadata["Record Sequence Number"]
+ # Event information
+ event = self._parse_event_data(metadata)
+ # Site information
+ site = self._parse_site_data(metadata)
+ # Distance Information
+ distances, surface = self._parse_distance_data(event, site, metadata)
+ event.rupture.surface = surface
+ # Components
+ x_comp, y_comp, vertical = self._parse_processing_data(wfid, metadata)
+ # Return record metadata
+ lup = get_float(metadata["Lowest Usable Freq - Ave. Component (Hz)"])
+ if lup:
+ lup = 1. / lup
+ sup = get_float(metadata["Maximum Usable Freq - Ave. Component (Hz)"])
+ if sup:
+ sup = 1. / sup
+ return GroundMotionRecord(wfid,
+ [metadata["File Name (Horizontal 1)"],
+ metadata["File Name (Horizontal 2)"],
+ metadata["File Name (Vertical)"]],
+ event,
+ distances,
+ site,
+ x_comp,
+ y_comp,
+ longest_period=lup,
+ shortest_period=sup)
+
+ def _parse_event_data(self, metadata):
+ """
+ Read in the distance related metadata and return an instance of the
+ :class: smtk.sm_database.Earthquake
+
+ """
+ data_fields = ['Month', 'Day', 'Hour', 'Minute', 'Second']
+ for f in data_fields:
+ metadata[f] = metadata[f].zfill(2)
+
+ # Date and Time
+ year, month, day, hour, minute, second = self._validate_datetime(
+ metadata)
+ #year = get_int(metadata["Year"])
+ #month = get_int(metadata["Month"])
+ #day = get_int(metadata["Day"])
+ #hour = get_int(metadata["Hour"])
+ #minute = get_int(metadata["Minute"])
+ #second = get_int(metadata["Second"])
+ eq_datetime = datetime(year, month, day, hour, minute, second)
+ # Event ID and Name
+ eq_id = metadata["EQID"]
+ eq_name = metadata["Earthquake Name"]
+ # Focal Mechanism
+ focal_mechanism = self._get_focal_mechanism(eq_id, eq_name, metadata)
+
+ focal_mechanism.scalar_moment = get_float(metadata["Mo (dyne.cm)"]) *\
+ 1E-7
+ # Read magnitude
+ pref_mag = Magnitude(get_float(metadata["Magnitude"]),
+ metadata["Magnitude type"],
+ sigma=get_float(metadata["Magnitude uncertainty"]))
+ # Create Earthquake Class
+ eqk = Earthquake(eq_id, eq_name, eq_datetime,
+ get_float(metadata["Epicenter Longitude (deg; positive E)"]),
+ get_float(metadata["Epicenter Latitude (deg; positive N)"]),
+ get_float(metadata["Hypocenter Depth (km)"]),
+ pref_mag,
+ focal_mechanism,
+ metadata["Country"])
+
+ # hypocenter location
+ f1 = get_float(metadata[
+ "Along-strike Hypocenter location " +
+ "on the fault (fraction between 0 and 1)"])
+ f2 = get_float(metadata[
+ "Along-width Hypocenter location " +
+ "on the fault (fraction between 0 and 1)"])
+ if f1 is None or f2 is None:
+ hypo_loc = (0.5, 0.7)
+ else:
+ hypo_loc = (f1, f2)
+
+ eqk.tectonic_region = metadata["Tectonic environment (Crustal; Inslab; Interface; Stable; Geothermal; Volcanic; Oceanic_crust)"]
+ if (eqk.tectonic_region == "Stable" or
+ eqk.tectonic_region == "Crustal" or
+ eqk.tectonic_region == "Oceanic_crust"):
+ msr=WC1994()
+ elif eqk.tectonic_region == "Inslab":
+ msr=StrasserIntraslab()
+ elif eqk.tectonic_region == "Interface":
+ msr=StrasserInterface()
+
+ # Warning rake set to 0.0 in scaling relationship - applies only
+ # to WC1994
+ area = msr.get_median_area(pref_mag.value, 0.0)
+ aspect_ratio = 1.5
+ width_model = np.sqrt(area / aspect_ratio)
+ length_model = aspect_ratio * width_model
+ ztor_model = eqk.depth - width_model / 2.
+ if ztor_model < 0:
+ ztor_model = 0.0
+
+ length = get_positive_float(metadata["Fault Rupture Length (km)"])
+ if length is None:
+ length = length_model
+ width = get_positive_float(metadata["Fault Rupture Width (km)"])
+ if width is None:
+ width = width_model
+ ztor = get_float(metadata["Depth to Top Of Fault Rupture Model"])
+ if ztor is None:
+ ztor=ztor_model
+
+ # Rupture
+ eqk.rupture = Rupture(eq_id,
+ eq_name,
+ pref_mag,
+ length,
+ width,
+ ztor,
+ hypo_loc=hypo_loc)
+# get_float(metadata["Fault Rupture Length (km)"]),
+# get_float(metadata["Fault Rupture Width (km)"]),
+# get_float(metadata["Depth to Top Of Fault Rupture Model"]),
+# hypo_loc=hypo_loc)
+ eqk.rupture.get_area()
+ return eqk
+
+ @staticmethod
+ def _validate_datetime(metadata):
+ """
+ SARA flatfile should be formatted correctly but other flatfiles
+ are prone to bad datetime values - these will be overwritten
+ """
+ return (get_int(metadata["Year"]), get_int(metadata["Month"]),
+ get_int(metadata["Day"]), get_int(metadata["Hour"]),
+ get_int(metadata["Minute"]), get_int(metadata["Second"]))
+
+ def _get_focal_mechanism(self, eq_id, eq_name, metadata):
+ """
+ Returns the focal mechanism information as an instance of the
+ :class: smtk.sigma_database.FocalMechanism
+ """
+ nodal_planes = GCMTNodalPlanes()
+ # By default nodal plane 1 is assumed to be the fault plane in smtk.
+ # Depending on parameter fault_plane import correct angles in nodal
+ # planes 1 and 2 (1 being the fault plane)
+ if metadata['Fault Plane (1; 2; X)'] == '1':
+ nodal_planes.nodal_plane_1 = {
+ "strike": get_float(metadata['Nodal Plane 1 Strike (deg)']),
+ "dip": get_float(metadata['Nodal Plane 1 Dip (deg)']),
+ "rake": get_float(metadata['Nodal Plane 1 Rake Angle (deg)'])}
+
+ nodal_planes.nodal_plane_2 = {
+ "strike": get_float(metadata['Nodal Plane 2 Strike (deg)']),
+ "dip": get_float(metadata['Nodal Plane 2 Dip (deg)']),
+ "rake": get_float(metadata['Nodal Plane 2 Rake Angle (deg)'])}
+ elif metadata['Fault Plane (1; 2; X)'] == '2':
+ nodal_planes.nodal_plane_1 = {
+ "strike": get_float(metadata['Nodal Plane 2 Strike (deg)']),
+ "dip": get_float(metadata['Nodal Plane 2 Dip (deg)']),
+ "rake": get_float(metadata['Nodal Plane 2 Rake Angle (deg)'])}
+
+ nodal_planes.nodal_plane_2 = {
+ "strike": get_float(metadata['Nodal Plane 1 Strike (deg)']),
+ "dip": get_float(metadata['Nodal Plane 1 Dip (deg)']),
+ "rake": get_float(metadata['Nodal Plane 1 Rake Angle (deg)'])}
+ elif metadata['Fault Plane (1; 2; X)'] == 'X':
+ # Check if values for strike or dip are given otherwise set
+ # strike=0 and dip=90 and fill strike and dip for fault plane 1
+ # What can we do for rake?
+ strike = get_float(metadata['Nodal Plane 1 Strike (deg)'])
+ if strike is None:
+ strike = get_float(metadata['Nodal Plane 2 Strike (deg)'])
+ if strike is None:
+ strike = 0.0
+ dip = get_float(metadata['Nodal Plane 1 Dip (deg)'])
+ if dip is None:
+ dip = get_float(metadata['Nodal Plane 2 Dip (deg)'])
+ if dip is None:
+ dip = 90.0
+ nodal_planes.nodal_plane_1 = {"strike": strike,
+ "dip": dip,
+ "rake": None}
+ nodal_planes.nodal_plane_2 = {"strike": None,
+ "dip": None,
+ "rake": None}
+
+ nodal_planes = self._check_mechanism(nodal_planes)
+ principal_axes = GCMTPrincipalAxes()
+ mech_type =\
+ NEW_MECHANISM_TYPE[metadata["Style-of-Faulting (S; R; N; U)"]]
+ return FocalMechanism(eq_id, eq_name, nodal_planes, principal_axes,
+ mechanism_type=mech_type)
+
+ def _check_mechanism(self, nodal_planes):
+ """
+ Verify that the nodal planes are valid, and default nodal plane 1
+ to a "null" plane if not
+ """
+ if nodal_planes.nodal_plane_1["strike"]:
+ nodal_planes.nodal_plane_1["strike"] = \
+ nodal_planes.nodal_plane_1["strike"] % 360.0
+ if nodal_planes.nodal_plane_2["strike"]:
+ nodal_planes.nodal_plane_2["strike"] = \
+ nodal_planes.nodal_plane_2["strike"] % 360.0
+
+ valid_plane_1 = nodal_planes.nodal_plane_1["strike"] >= 0.0 and\
+ nodal_planes.nodal_plane_1["strike"] < 360.0 and\
+ nodal_planes.nodal_plane_1["dip"] > 0.0 and\
+ nodal_planes.nodal_plane_1["dip"] <= 90.0 and\
+ nodal_planes.nodal_plane_1["rake"] >= -180.0 and\
+ nodal_planes.nodal_plane_1["rake"] <= 180.0
+ valid_plane_2 = nodal_planes.nodal_plane_2["strike"] >= 0.0 and\
+ nodal_planes.nodal_plane_2["strike"] <= 360.0 and\
+ nodal_planes.nodal_plane_2["dip"] > 0.0 and\
+ nodal_planes.nodal_plane_2["dip"] <= 90.0 and\
+ nodal_planes.nodal_plane_2["rake"] >= -180.0 and\
+ nodal_planes.nodal_plane_2["rake"] <= 180.0
+ if valid_plane_1:
+ return nodal_planes
+
+ # If nodal plane 2 is valid then swap over
+ if valid_plane_2:
+ np1 = copy.deepcopy(nodal_planes.nodal_plane_1)
+ np2 = copy.deepcopy(nodal_planes.nodal_plane_2)
+ nodal_planes.nodal_plane_1 = np2
+ nodal_planes.nodal_plane_2 = np1
+ else:
+ nodal_planes.nodal_plane_1 = {"strike": 0.0,
+ "dip": 90.0,
+ "rake": 0.0}
+ return nodal_planes
+
+
+
+
+ def _parse_distance_data(self, event, site, metadata):
+ """
+ Read in the distance related metadata and return an instance of the
+ :class: smtk.sm_database.RecordDistance
+ """
+ # Compute various distance metrics
+ # Add calculation of Repi, Rhypo from event and station localizations
+ # (latitudes, longitudes, depth, elevation)?
+ target_site = Mesh(np.array([site.longitude]),
+ np.array([site.latitude]),
+ np.array([-site.altitude / 1000.0]))
+ # Warning ratio fixed to 1.5
+ ratio=1.5
+ surface_modeled = rcfg.create_planar_surface(
+ Point(event.longitude, event.latitude, event.depth),
+ event.mechanism.nodal_planes.nodal_plane_1['strike'],
+ event.mechanism.nodal_planes.nodal_plane_1['dip'],
+ event.rupture.area,
+ ratio)
+ hypocenter = rcfg.get_hypocentre_on_planar_surface(
+ surface_modeled,
+ event.rupture.hypo_loc)
+ try:
+ surface_modeled._create_mesh()
+ except:
+ dip = surface_modeled.get_dip()
+ dip_dir = (surface_modeled.get_strike() - 90.) % 360.
+ ztor = surface_modeled.top_left.depth
+ d_x = ztor * np.tan(np.radians(90.0 - dip))
+ top_left_surface = surface_modeled.top_left.point_at(d_x,
+ -ztor,
+ dip_dir)
+ top_left_surface.depth = 0.
+ top_right_surface = surface_modeled.top_right.point_at(d_x,
+ -ztor,
+ dip_dir)
+ top_right_surface.depth = 0.
+ surface_modeled = SimpleFaultSurface.from_fault_data(
+ Line([top_left_surface, top_right_surface]),
+ surface_modeled.top_left.depth,
+ surface_modeled.bottom_left.depth,
+ surface_modeled.get_dip(),
+ 1.0)
+
+ # Rhypo
+ Rhypo = get_float(metadata["Hypocentral Distance (km)"])
+ if Rhypo is None:
+ Rhypo = hypocenter.distance_to_mesh(target_site)
+ # Repi
+ Repi = get_float(metadata["Epicentral Distance (km)"])
+ if Repi is None:
+ Repi= hypocenter.distance_to_mesh(target_site, with_depths=False)
+ # Rrup
+ Rrup = get_float(metadata["Rupture Distance (km)"])
+ if Rrup is None:
+ Rrup = surface_modeled.get_min_distance(target_site)
+ # Rjb
+ Rjb = get_float(metadata["Joyner-Boore Distance (km)"])
+ if Rjb is None:
+ Rjb = surface_modeled.get_joyner_boore_distance(target_site)
+ # Need to check if Rx and Ry0 are consistant with the other metrics
+ # when those are coming from the flatfile?
+ # Rx
+ Rx = surface_modeled.get_rx_distance(target_site)
+ # Ry0
+ Ry0 = surface_modeled.get_ry0_distance(target_site)
+
+ distance = RecordDistance(
+ repi = float(Repi),
+ rhypo = float(Rhypo),
+ rjb = float(Rjb),
+ rrup = float(Rrup),
+ r_x = float(Rx),
+ ry0 = float(Ry0))
+ distance.azimuth = get_float(metadata["Source to Site Azimuth (deg)"])
+ #distance.hanging_wall = get_float(metadata["FW/HW Indicator"])
+ if metadata["FW/HW Indicator"] == "HW":
+ distance.hanging_wall = True
+ elif metadata["FW/HW Indicator"] == "FW":
+ distance.hanging_wall = False
+ else:
+ pass
+
+ return distance, surface_modeled
+
+ def _parse_site_data(self, metadata):
+ """
+ Returns the site data as an instance of the :class:
+ smtk.sm_database.RecordSite
+ """
+ site = RecordSite(
+ self._get_site_id(metadata["Station ID"]),
+ metadata["Station ID"],
+ metadata["Station Code"],
+ get_float(metadata["Station Longitude (deg positive E)"]),
+ get_float(metadata["Station Latitude (deg positive N)"]),
+ get_float(metadata["Station Elevation (m)"]),
+ get_float(metadata["Preferred Vs30 (m/s)"]),
+ site_class=metadata['Site Class (Hard Rock; Rock; Stiff Soil; Soft Soil)'],
+ network_code=None, # not provided
+ )
+ # network_code=metadata["Owner"])
+ site.nehrp = metadata["Preferred NEHRP Based on Vs30"]
+ site.vs30_measured_type = metadata["Measured(1)/Inferred(2) Class"]
+ if metadata["Measured(1)/Inferred(2) Class"] == "1":
+ site.vs30_measured = True
+ else:
+ site.vs30_measured = False
+ site.vs30_uncertainty = get_float(
+ metadata["Sigma of Vs30 (in natural log Units)"])
+ site.z1pt0 = get_float(metadata["Z1 (m)"])
+ site.z1pt5 = None
+ # site.z1pt5 = get_float(metadata["Z1.5 (m)"])
+ site.z2pt5 = get_float(metadata["Z2.5 (m)"])
+ # Implement default values for z1pt0 and z2pt5
+ if site.z1pt0 is None:
+ site.z1pt0 = rcfg.vs30_to_z1pt0_as08(site.vs30)
+ if site.z2pt5 is None:
+ site.z2pt5 = rcfg.z1pt0_to_z2pt5(site.z1pt0)
+ else:
+ # Need to convert z2pt5 from m to km
+ site.z2pt5 = site.z2pt5/1000.0
+ if "Backarc" in metadata["Forearc/Backarc for subduction events"]:
+ site.backarc = True
+ site.instrument_type = metadata["Digital (D)/Analog (A) Recording"]
+ return site
+
+ def _parse_processing_data(self, wfid, metadata):
+ """
+ Parses the information for each component
+ """
+ if metadata["Type of Filter"]:
+ filter_params1 = {
+ 'Type': FILTER_TYPE[metadata["Type of Filter"]],
+ 'Order': None,
+ 'Passes': get_positive_int(metadata['npass']),
+ 'NRoll': get_positive_int(metadata['nroll']),
+ 'High-Cut': get_positive_float(metadata["LP-H1 (Hz)"]),
+ 'Low-Cut': get_positive_float(metadata["HP-H1 (Hz)"])}
+
+ filter_params2 = {
+ 'Type': FILTER_TYPE[metadata["Type of Filter"]],
+ 'Order': None,
+ 'Passes': get_positive_int(metadata['npass']),
+ 'NRoll': get_positive_int(metadata['nroll']),
+ 'High-Cut': get_positive_float(metadata["LP-H2 (Hz)"]),
+ 'Low-Cut': get_positive_float(metadata["HP-H2 (Hz)"])}
+ else:
+ filter_params1, filter_params2 = None, None
+
+ intensity_measures = {
+ # All m - convert to cm
+ 'PGA': None,
+ 'PGV': None,
+ 'PGD': None
+ }
+ luf1 = get_float(metadata["Lowest Usable Freq - H1 (Hz)"])
+ if luf1 and luf1 > 0.0:
+ lup1 = 1. / luf1
+ else:
+ lup1 = None
+ luf2 = get_float(metadata["Lowest Usable Freq - H2 (Hz)"])
+ if luf2 and luf2 > 0.0:
+ lup2 = 1. / luf2
+ else:
+ lup2 = None
+ xcomp = Component(wfid, "1",
+ ims=intensity_measures,
+ longest_period=lup1,
+ waveform_filter=filter_params1,
+ units=metadata["Unit (cm/s/s; m/s/s; g)"])
+
+ ycomp = Component(wfid, "2",
+ ims=intensity_measures,
+ longest_period=lup2,
+ waveform_filter=filter_params2,
+ units=metadata["Unit (cm/s/s; m/s/s; g)"])
+
+ luf3 = get_float(metadata["Lowest Usable Freq - V (Hz)"])
+ if luf3 and luf3 > 0.0:
+ filter_params3 = {
+ 'Type': FILTER_TYPE[metadata["Type of Filter"]],
+ 'Order': None,
+ 'Passes': get_int(metadata['npass']),
+ 'NRoll': get_int(metadata['nroll']),
+ 'High-Cut': get_float(metadata["LP-V (Hz)"]),
+ 'Low-Cut': get_float(metadata["HP-V (Hz)"])}
+ lup3 = 1. / luf3
+ zcomp = Component(wfid, "V",
+ ims=intensity_measures,
+ longest_period=lup3,
+ waveform_filter=filter_params3,
+ units=metadata["Unit (cm/s/s; m/s/s; g)"])
+ return xcomp, ycomp, zcomp
+ else:
+ return xcomp, ycomp, None
+
+
+
+
+class NearFaultFlatFileParser(SimpleFlatfileParserV9):
+
+ def parse(self):
+ """
+ Parses the database
+ """
+ HEADER_LIST1 = copy.deepcopy(HEADER_LIST)
+ HEADER_LIST1.add("Rcdpp")
+ self._header_check(HEADER_LIST1)
+ # Read in csv
+ reader = csv.DictReader(open(self.filename, "r"))
+ metadata = []
+ self.database = GroundMotionDatabase(self.id, self.name)
+ self._get_site_id = self.database._get_site_id
+ for row in reader:
+ self.database.records.append(self._parse_record(row))
+ return self.database
+
+ def _parse_distance_data(self, event, site, metadata):
+ """
+ Read in the distance related metadata and return an instance of the
+ :class: smtk.sm_database.RecordDistance
+ """
+ # Compute various distance metrics
+ # Add calculation of Repi, Rhypo from event and station localizations
+ # (latitudes, longitudes, depth, elevation)?
+ target_site = Mesh(np.array([site.longitude]),
+ np.array([site.latitude]),
+ np.array([-site.altitude / 1000.0]))
+ # Warning ratio fixed to 1.5
+ ratio=1.5
+ surface_modeled = rcfg.create_planar_surface(
+ Point(event.longitude, event.latitude, event.depth),
+ event.mechanism.nodal_planes.nodal_plane_1['strike'],
+ event.mechanism.nodal_planes.nodal_plane_1['dip'],
+ event.rupture.area,
+ ratio)
+ hypocenter = rcfg.get_hypocentre_on_planar_surface(
+ surface_modeled,
+ event.rupture.hypo_loc)
+ try:
+ surface_modeled._create_mesh()
+ except:
+ dip = surface_modeled.get_dip()
+ dip_dir = (surface_modeled.get_strike() - 90.) % 360.
+ ztor = surface_modeled.top_left.depth
+ d_x = ztor * np.tan(np.radians(90.0 - dip))
+ top_left_surface = surface_modeled.top_left.point_at(d_x,
+ -ztor,
+ dip_dir)
+ top_left_surface.depth = 0.
+ top_right_surface = surface_modeled.top_right.point_at(d_x,
+ -ztor,
+ dip_dir)
+ top_right_surface.depth = 0.
+ surface_modeled = SimpleFaultSurface.from_fault_data(
+ Line([top_left_surface, top_right_surface]),
+ surface_modeled.top_left.depth,
+ surface_modeled.bottom_left.depth,
+ surface_modeled.get_dip(),
+ 1.0)
+
+ # Rhypo
+ Rhypo = get_float(metadata["Hypocentral Distance (km)"])
+ if Rhypo is None:
+ Rhypo = hypocenter.distance_to_mesh(target_site)
+ # Repi
+ Repi = get_float(metadata["Epicentral Distance (km)"])
+ if Repi is None:
+ Repi= hypocenter.distance_to_mesh(target_site, with_depths=False)
+ # Rrup
+ Rrup = get_float(metadata["Rupture Distance (km)"])
+ if Rrup is None:
+ Rrup = surface_modeled.get_min_distance(target_site)
+ # Rjb
+ Rjb = get_float(metadata["Joyner-Boore Distance (km)"])
+ if Rjb is None:
+ Rjb = surface_modeled.get_joyner_boore_distance(target_site)
+ # Rcdpp
+ Rcdpp = get_float(metadata["Rcdpp"])
+ if Rcdpp is None:
+ Rcdpp = surface_modeled.get_cdppvalue(target_site)
+ # Need to check if Rx and Ry0 are consistant with the other metrics
+ # when those are coming from the flatfile?
+ # Rx
+ Rx = surface_modeled.get_rx_distance(target_site)
+ # Ry0
+ Ry0 = surface_modeled.get_ry0_distance(target_site)
+
+ distance = RecordDistance(
+ repi = float(Repi),
+ rhypo = float(Rhypo),
+ rjb = float(Rjb),
+ rrup = float(Rrup),
+ r_x = float(Rx),
+ ry0 = float(Ry0),
+ rcdpp = float(Rcdpp) )
+ distance.azimuth = get_float(metadata["Source to Site Azimuth (deg)"])
+ #distance.hanging_wall = get_float(metadata["FW/HW Indicator"])
+ if metadata["FW/HW Indicator"] == "HW":
+ distance.hanging_wall = True
+ elif metadata["FW/HW Indicator"] == "FW":
+ distance.hanging_wall = False
+ else:
+ pass
+
+ return distance
+
+class SimpleAsciiTimeseriesReader(SMTimeSeriesReader):
+ """
+ Parses a simple ascii representation of a record in which the first line
+ contains the number of values and the time-step. Whilst the rest of the
+ file contains the acceleration record
+ """
+ def parse_records(self, record):
+ """
+ Parses the record set
+ """
+ time_series = OrderedDict([
+ ("X", {"Original": {}, "SDOF": {}}),
+ ("Y", {"Original": {}, "SDOF": {}}),
+ ("V", {"Original": {}, "SDOF": {}})])
+
+ target_names = time_series.keys()
+ for iloc, ifile in enumerate(self.input_files):
+ if not os.path.exists(ifile):
+ if iloc < 2:
+ # Expected horizontal component is missing - raise error
+ raise ValueError("Horizontal record %s is expected but "
+ "not found!" % ifile)
+ else:
+ print "Vertical record file %s not found" % ifile
+ del time_series["V"]
+ continue
+ else:
+ time_series[target_names[iloc]]["Original"] = \
+ self._parse_time_history(ifile, record.xrecord.units)
+ if iloc < 2:
+ del time_series["V"]
+
+ return time_series
+
+ def _parse_time_history(self, ifile, units="cm/s/s"):
+ """
+ Parses the time history from the file and returns a dictionary of
+ time-series properties
+ """
+ output = {}
+ accel = np.genfromtxt(ifile, skip_header=1)
+ output["Acceleration"] = convert_accel_units(accel, self.units)
+ nvals, time_step = (getline(ifile, 1).rstrip("\n")).split()
+ output["Time-step"] = float(time_step)
+ output["Number Steps"] = int(nvals)
+ output["Units"] = units
+ output["PGA"] = np.max(np.fabs(output["Acceleration"]))
+ return output
diff --git a/smtk/residuals/gmpe_residuals.py b/smtk/residuals/gmpe_residuals.py
index 81b677d..df22dd0 100755
--- a/smtk/residuals/gmpe_residuals.py
+++ b/smtk/residuals/gmpe_residuals.py
@@ -288,18 +288,20 @@ def __init__(self, gmpe_list, imts):
self.gmpe_sa_limits = {}
self.gmpe_scalars = {}
for gmpe in self.gmpe_list:
- gmpe_dict_1 = {}
- gmpe_dict_2 = {}
+ gmpe_dict_1 = OrderedDict([])
+ gmpe_dict_2 = OrderedDict([])
self.unique_indices[gmpe] = {}
# Get the period range and the coefficient types
gmpe_i = GSIM_LIST[gmpe]()
for c in dir(gmpe_i):
- if 'COEFFS' in c:
+ #if 'COEFFS' in c:
+ if c == 'COEFFS':
pers = [sa.period for sa in getattr(gmpe_i,c).sa_coeffs]
min_per, max_per = (min(pers), max(pers))
self.gmpe_sa_limits[gmpe] = (min_per, max_per)
for c in dir(gmpe_i):
- if 'COEFFS' in c:
+ #if 'COEFFS' in c:
+ if c == 'COEFFS':
self.gmpe_scalars[gmpe] = getattr(gmpe_i,c).non_sa_coeffs.keys()
for imtx in self.imts:
if "SA(" in imtx:
@@ -352,15 +354,21 @@ def get_residuals(self, database, nodal_plane_index=1,
if res_type == "Inter event":
inter_ev = \
context["Residual"][gmpe][imtx][res_type]
- inter_ev, inter_idx = np.unique(
- inter_ev,
- return_index=True)
- self.residuals[gmpe][imtx][res_type].extend(
- inter_ev.tolist())
- #inter_mags = (context["Rupture"].mag *
- # np.ones(len(inter_ev))).tolist()
- self.unique_indices[gmpe][imtx].append(
- inter_idx)
+ if np.all(
+ np.fabs(inter_ev - inter_ev[0]) < 1.0E-12):
+ # Single inter-event residual
+ self.residuals[gmpe][imtx][res_type].append(
+ inter_ev[0])
+ # Append indices
+ self.unique_indices[gmpe][imtx].append(
+ np.array([0]))
+ else:
+ # Inter event residuals per-site e.g. Chiou
+ # & Youngs (2008; 2014) case
+ self.residuals[gmpe][imtx][res_type].extend(
+ inter_ev.tolist())
+ self.unique_indices[gmpe][imtx].append(
+ np.arange(len(inter_ev)))
else:
self.residuals[gmpe][imtx][res_type].extend(
context["Residual"][gmpe][imtx][res_type].tolist())
@@ -383,8 +391,6 @@ def get_residuals(self, database, nodal_plane_index=1,
self.modelled[gmpe][imtx][res_type])
self.modelled[gmpe][imtx]["Mean"] = np.array(
self.modelled[gmpe][imtx]["Mean"])
- #self.unique_magnitudes[gmpe][imtx] = np.array(
- # self.unique_magnitudes[gmpe][imtx])
def get_observations(self, context, component="Geometric"):
"""
@@ -459,7 +465,7 @@ def calculate_residuals(self, context, normalise=True):
# Calculate residual
residual = {}
for gmpe in self.gmpe_list:
- residual[gmpe] = {}
+ residual[gmpe] = OrderedDict([])
for imtx in self.imts:
residual[gmpe][imtx] = {}
obs = np.log(context["Observations"][imtx])
@@ -500,29 +506,14 @@ def get_residual_statistics(self):
"""
Retreives the mean and standard deviation values of the residuals
"""
- statistics = OrderedDict([(gmpe, {}) for gmpe in self.gmpe_list])
+ statistics = OrderedDict([(gmpe, OrderedDict([]))
+ for gmpe in self.gmpe_list])
for gmpe in self.gmpe_list:
for imtx in self.imts:
if not self.residuals[gmpe][imtx]:
continue
statistics[gmpe][imtx] = {}
for res_type in self.types[gmpe][imtx]:
-# if res_type == "Inter event":
-# # As the inter-event term may be vectorial with
-# # repeated columns, get take only one value of inter-
-# # event residual if unique
-# delta_e = np.array([], dtype="float")
-# for ctxt in self.contexts:
-# iev_res = np.unique(
-# ctxt["Residual"][gmpe][imtx]["Inter event"])
-# delta_e = np.hstack([delta_e, iev_res])
-# #print delta_e
-# data = {
-# "Mean": np.mean(delta_e),
-# #self.residuals[gmpe][imtx][res_type]),
-# "Std Dev": np.std(delta_e)}
-# #self.residuals[gmpe][imtx][res_type])}
-# else:
data = {
"Mean": np.mean(
self.residuals[gmpe][imtx][res_type]),
@@ -540,7 +531,7 @@ def pretty_print(self, filename=None, sep=","):
else:
fid = sys.stdout
fid.write("Ground Motion Residuals\n")
- # Prin headers
+ # Print headers
event = self.contexts[0]
header_set = []
header_set.extend([key for key in event["Distances"].__dict__])
@@ -647,7 +638,8 @@ def get_likelihood_values(self):
residuals according to Equation 9 of Scherbaum et al (2004)
"""
statistics = self.get_residual_statistics()
- lh_values = OrderedDict([(gmpe, {}) for gmpe in self.gmpe_list])
+ lh_values = OrderedDict([(gmpe, OrderedDict([]))
+ for gmpe in self.gmpe_list])
for gmpe in self.gmpe_list:
for imtx in self.imts:
if not self.residuals[gmpe][imtx]:
@@ -775,7 +767,6 @@ def bootstrap_llh(ij, contexts, gmpes, imts):
"""
# Sample contexts
timer_on = datetime.now()
- print(ij)
neqs = len(contexts)
isamp = np.random.randint(0, neqs, neqs)
new_contexts = [contexts[i] for i in isamp]
diff --git a/smtk/response_spectrum.py b/smtk/response_spectrum.py
index a72c70d..8cc626b 100755
--- a/smtk/response_spectrum.py
+++ b/smtk/response_spectrum.py
@@ -26,7 +26,7 @@
from math import sqrt
from scipy.integrate import cumtrapz
import matplotlib.pyplot as plt
-from sm_utils import (_save_image,
+from smtk.sm_utils import (_save_image,
get_time_vector,
convert_accel_units,
get_velocity_displacement)
@@ -62,7 +62,7 @@ def __init__(self, acceleration, time_step, periods, damping=0.05,
self.response_spectrum = None
- def evaluate(self):
+ def __call__(self):
'''
Evaluates the response spectrum
:returns:
@@ -88,9 +88,8 @@ def evaluate(self):
accel - Acceleration response of Single Degree of Freedom Oscillator
vel - Velocity response of Single Degree of Freedom Oscillator
disp - Displacement response of Single Degree of Freedom Oscillator
-
'''
-
+ raise NotImplementedError("Cannot call Base Response Spectrum")
class NewmarkBeta(ResponseSpectrum):
@@ -98,7 +97,7 @@ class NewmarkBeta(ResponseSpectrum):
Evaluates the response spectrum using the Newmark-Beta methodology
'''
- def evaluate(self):
+ def __call__(self):
'''
Evaluates the response spectrum
:returns:
@@ -188,6 +187,7 @@ def _newmark_beta(self, omega, cval, kval):
a_t[j, :] = self.acceleration[j] + accel[j, :]
return accel, vel, disp, a_t
+
class NigamJennings(ResponseSpectrum):
"""
Evaluate the response spectrum using the algorithm of Nigam & Jennings
@@ -197,7 +197,7 @@ class NigamJennings(ResponseSpectrum):
of the sampling frequency.
"""
- def evaluate(self):
+ def __call__(self):
"""
Define the response spectrum
"""
diff --git a/smtk/sm_database.py b/smtk/sm_database.py
index 782e03f..41b0755 100755
--- a/smtk/sm_database.py
+++ b/smtk/sm_database.py
@@ -29,9 +29,12 @@
RuptureContext)
from openquake.hazardlib.site import Site, SiteCollection
from openquake.hazardlib.geo.point import Point
+from openquake.hazardlib.scalerel import PeerMSR
from smtk.trellis.configure import vs30_to_z1pt0_as08, z1pt0_to_z2pt5
from smtk.trellis.configure import vs30_to_z1pt0_cy14, vs30_to_z2pt5_cb14
+DEFAULT_MSR = PeerMSR()
+
class Magnitude(object):
"""
Class to hold magnitude attributes
@@ -233,7 +236,7 @@ def get_rake_from_mechanism_type(self):
Returns an idealised "rake" based on a qualitative description of the
style of faulting
"""
- if self.mechanism_type in MECHANISM_TYPE.keys():
+ if self.mechanism_type in MECHANISM_TYPE:
return MECHANISM_TYPE[self.mechanism_type]
else:
return 0.0
@@ -486,7 +489,7 @@ def get_ec8_class(self):
if self.ec8:
return self.ec8
if self.vs30:
- for key in EC8_VS30_BOUNDARIES.keys():
+ for key in EC8_VS30_BOUNDARIES:
in_group = (self.vs30 >= EC8_VS30_BOUNDARIES[key][0]) and\
(self.vs30 < EC8_VS30_BOUNDARIES[key][1])
if in_group:
@@ -494,14 +497,14 @@ def get_ec8_class(self):
return self.ec8
elif self.nspt:
# Check to see if a site class can be determined from NSPT
- for key in EC8_NSPT_BOUNDARIES.keys():
+ for key in EC8_NSPT_BOUNDARIES:
in_group = (self.nspt >= EC8_NSPT_BOUNDARIES[key][0]) and\
(self.nspt < EC8_NSPT_BOUNDARIES[key][1])
if in_group:
self.ec8 = key
return self.ec8
else:
- print "Cannot determine EC8 site class - no Vs30 or NSPT measures!"
+ print("Cannot determine EC8 site class - no Vs30 or NSPT measures!")
return None
def get_nehrp_class(self):
@@ -511,7 +514,7 @@ def get_nehrp_class(self):
if self.nehrp:
return self.nehrp
if self.vs30:
- for key in NEHRP_VS30_BOUNDARIES.keys():
+ for key in NEHRP_VS30_BOUNDARIES:
in_group = (self.vs30 >= NEHRP_VS30_BOUNDARIES[key][0]) and\
(self.vs30 < NEHRP_VS30_BOUNDARIES[key][1])
if in_group:
@@ -519,14 +522,14 @@ def get_nehrp_class(self):
return self.nehrp
elif self.nspt:
# Check to see if a site class can be determined from NSPT
- for key in NEHRP_NSPT_BOUNDARIES.keys():
+ for key in NEHRP_NSPT_BOUNDARIES:
in_group = (self.nspt >= NEHRP_NSPT_BOUNDARIES[key][0]) and\
(self.nspt < NEHRP_NSPT_BOUNDARIES[key][1])
if in_group:
self.nehrp = key
return self.nehrp
else:
- print "Cannot determine NEHRP site class - no Vs30 or NSPT measures!"
+ print("Cannot determine NEHRP site class - no Vs30 or NSPT measures!")
return None
@@ -546,7 +549,7 @@ def vs30_from_ec8(self):
if self.ec8 == 'E':
return 100
else:
- print "Cannot determine Vs30 from EC8 site class"
+ print("Cannot determine Vs30 from EC8 site class")
Filter = {'Type': None,
'Order': None,
@@ -906,12 +909,18 @@ def _get_event_context(self, idx, nodal_plane_index=1):
setattr(rctx, 'strike', 0.0)
setattr(rctx, 'dip', 90.0)
rctx.rake = rup.event.mechanism.get_rake_from_mechanism_type()
- if rup.event.rupture:
+ if rup.event.rupture.surface:
setattr(rctx, 'ztor', rup.event.rupture.surface.get_top_edge_depth())
setattr(rctx, 'width', rup.event.rupture.surface.width)
setattr(rctx, 'hypo_loc', rup.event.rupture.surface.get_hypo_location(1000))
else:
setattr(rctx, 'ztor', rup.event.depth)
+ # Use the PeerMSR to define the area and assuming an aspect ratio
+ # of 1 get the width
+ setattr(rctx, 'width',
+ np.sqrt(DEFAULT_MSR.get_median_area(rctx.mag, 0)))
+ # Default hypocentre location to the middle of the rupture
+ setattr(rctx, 'hypo_loc', (0.5, 0.5))
setattr(rctx, 'hypo_depth', rup.event.depth)
setattr(rctx, 'hypo_lat', rup.event.latitude)
setattr(rctx, 'hypo_lon', rup.event.longitude)
diff --git a/smtk/strong_motion_selector.py b/smtk/strong_motion_selector.py
index 7c9ba8f..727e329 100755
--- a/smtk/strong_motion_selector.py
+++ b/smtk/strong_motion_selector.py
@@ -37,14 +37,14 @@ def rank_sites_by_record_count(database, threshold=0):
name_id_list = [(rec.site.id, rec.site.name) for rec in database.records]
name_id = dict([])
for name_id_pair in name_id_list:
- if name_id_pair[0] in name_id.keys():
+ if name_id_pair[0] in name_id:
name_id[name_id_pair[0]]["Count"] += 1
else:
name_id[name_id_pair[0]] = {"Count": 1, "Name": name_id_pair[1]}
- counts = np.array([name_id[key]["Count"] for key in name_id.keys()])
+ counts = np.array([name_id[key]["Count"] for key in name_id])
sort_id = np.flipud(np.argsort(counts))
- key_vals = name_id.keys()
+ key_vals = list(name_id)
output_list = []
for idx in sort_id:
if name_id[key_vals[idx]]["Count"] >= threshold:
@@ -102,7 +102,8 @@ def select_from_record_id(self, record_id):
if record_id in self.record_ids:
return self.database.records[self.record_ids.index(record_id)]
else:
- raise ValueError("Record %s is not in database" % record_id)
+ raise ValueError(
+ "Record {:s} is not in database".format(record_id))
def select_from_record_ids(self, record_ids, as_db=False):
"""
@@ -111,7 +112,7 @@ def select_from_record_ids(self, record_ids, as_db=False):
idx = []
for record_id in record_ids:
if not record_id in self.record_ids:
- print("Record %s is not in database" % record_id)
+ print("Record {:s} is not in database".format(record_id))
for iloc, record in enumerate(self.database.records):
if record.id in record_ids:
idx.append(iloc)
@@ -133,7 +134,7 @@ def select_from_site_ids(self, site_ids, as_db=False):
"""
for site_id in site_ids:
if not site_id in self.site_ids:
- print("Site %s is not in database" % record_id)
+ print("Site {:w is not in database" % record_id)
idx = []
for iloc, record in enumerate(self.database.records):
if record.site.id in site_ids:
@@ -158,7 +159,7 @@ def select_from_event_ids(self, event_ids, as_db=False):
"""
for event_id in event_ids:
if not event_id in self.event_ids:
- print("Event %s not found in database" % event_id)
+ print("Event {:s} not found in database".format(event_id))
idx = []
for iloc, record in enumerate(self.database.records):
if record.event.id in event_ids:
@@ -345,8 +346,8 @@ def select_within_distance_range(self, distance_type, shortest, furthest,
# raise ValueError("Record %s is missing selected distance "
# "metric and alternative metric" % record.id)
else:
- print("Record %s is missing selected distance metric"
- % record.id)
+ print("Record {:s} is missing selected distance metric".format(
+ record.id))
return self.select_records(idx, as_db)
# Event-based selection
diff --git a/smtk/trellis/configure.py b/smtk/trellis/configure.py
index 6a9578e..46abdc6 100755
--- a/smtk/trellis/configure.py
+++ b/smtk/trellis/configure.py
@@ -558,13 +558,11 @@ def get_gsim_contexts(self):
setattr(dctx, "rvolc", np.zeros_like(self.target_sites.mesh.lons))
# Sites
sctx = SitesContext()
- key_list = ['_vs30', '_vs30measured', '_z1pt0', '_z2pt5', '_backarc']
+ key_list = ["lons", "lats", "vs30", "vs30measured", "z1pt0", "z2pt5",
+ "backarc"]
for key in key_list:
- setattr(sctx, key[1:], getattr(self.target_sites, key))
- for key in ['lons', 'lats']:
- setattr(sctx, key, getattr(self.target_sites, key))
+ setattr(sctx, key, self.target_sites.array[key])
-
# Rupture
rctx = RuptureContext()
setattr(rctx, 'mag', self.magnitude)
@@ -727,7 +725,7 @@ def get_target_sites_point(self, distance, distance_type, vs30,
:param floar z2pt5:
Depth to 2.5 km/s interface
"""
- if not distance_type in POINT_AT_MAPPING.keys():
+ if not distance_type in list(POINT_AT_MAPPING.keys()):
raise ValueError("Distance type must be one of: Rupture ('rrup'), "
"Joyner-Boore ('rjb'), Epicentral ('repi') or "
"Hypocentral ('rhyp')")
@@ -799,7 +797,7 @@ def filter_hanging_wall(self, filter_type=None):
if not filter_type:
# Considers both footwall and hanging wall
return self.target_sites
- elif not filter_type in ['HW', 'FW']:
+ elif not filter_type in ('HW', 'FW'):
raise ValueError('Hanging wall filter must be either "HW" or "FW"')
else:
pass
diff --git a/smtk/trellis/trellis_plots.py b/smtk/trellis/trellis_plots.py
index 3027796..ce2a99f 100755
--- a/smtk/trellis/trellis_plots.py
+++ b/smtk/trellis/trellis_plots.py
@@ -21,7 +21,7 @@
Sets up a simple rupture-site configuration to allow for physical comparison
of GMPEs
'''
-import sys, re, os
+import sys, re, os, json
import numpy as np
from collections import Iterable, OrderedDict
from itertools import cycle
@@ -32,20 +32,25 @@
from copy import deepcopy
import matplotlib.pyplot as plt
from openquake.hazardlib import gsim, imt
+from openquake.hazardlib.gsim.base import (RuptureContext,
+ DistancesContext,
+ SitesContext)
from openquake.hazardlib.gsim.gsim_table import GMPETable
from openquake.hazardlib.scalerel.wc1994 import WC1994
from smtk.sm_utils import _save_image, _save_image_tight
import smtk.trellis.trellis_utils as utils
-from smtk.trellis.configure import GSIMRupture
+from smtk.trellis.configure import GSIMRupture, DEFAULT_POINT
# Default - defines a 21 color and line-type cycle
matplotlib.rcParams["axes.prop_cycle"] = \
- cycler(u'color', [u'b', u'g', u'r', u'c', u'm', u'y', u'k',
- u'b', u'g', u'r', u'c', u'm', u'y', u'k',
- u'b', u'g', u'r', u'c', u'm', u'y', u'k']) +\
+ cycler(u'color', ['b', 'g', 'r', 'c', 'm', 'y', 'k',
+ 'b', 'g', 'r', 'c', 'm', 'y', 'k',
+ 'b', 'g', 'r', 'c', 'm', 'y', 'k',
+ 'b', 'g', 'r', 'c', 'm', 'y', 'k']) +\
cycler(u'linestyle', ["-", "-", "-", "-", "-", "-", "-",
"--", "--", "--", "--", "--", "--", "--",
- "-.", "-.", "-.", "-.", "-.", "-.", "-."])
+ "-.", "-.", "-.", "-.", "-.", "-.", "-.",
+ ":", ":", ":", ":", ":", ":", ":"])
# Get a list of the available GSIMs
AVAILABLE_GSIMS = gsim.get_available_gsims()
@@ -67,6 +72,7 @@
PLOT_UNITS = {'PGA': 'g',
'PGV': 'cm/s',
'SA': 'g',
+ 'SD': 'cm',
'IA': 'm/s',
'CSV': 'g-sec',
'RSD': 's',
@@ -130,7 +136,7 @@ def _check_gsim_list(gsim_list):
match = re.match(r'^GMPETable\(([^)]+?)\)$', gsim)
filepath = match.group(1).split("=")[1]
output_gsims.append(GMPETable(gmpe_table=filepath))
- elif not gsim in AVAILABLE_GSIMS.keys():
+ elif not gsim in AVAILABLE_GSIMS:
raise ValueError('%s Not supported by OpenQuake' % gsim)
else:
output_gsims.append(AVAILABLE_GSIMS[gsim]())
@@ -241,8 +247,6 @@ def __init__(self, magnitudes, distances, gsims, imts, params,
self.ylim = kwargs["ylim"]
self.legend_fontsize = kwargs["legend_fontsize"]
self.ncol = kwargs["ncol"]
- self.create_plot()
-
def _preprocess_distances(self):
"""
@@ -255,7 +259,7 @@ def _preprocess_distances(self):
for gmpe in self.gsims:
gsim_distances = [dist for dist in gmpe.REQUIRES_DISTANCES]
for dist in gsim_distances:
- if not dist in self.distances.keys():
+ if not dist in self.distances:
raise ValueError('GMPE %s requires distance type %s'
% (_get_gmpe_name(gmpe), dist))
# % (gmpe.__class.__.__name__, dist))
@@ -287,7 +291,7 @@ def _preprocess_ruptures(self):
for param in rup_params:
if param == 'mag':
continue
- elif not param in self.params.keys():
+ elif not param in self.params:
raise ValueError("GMPE %s requires rupture parameter %s"
% (_get_gmpe_name(gmpe), param))
#% (gmpe.__class__.__name__, param))
@@ -312,7 +316,7 @@ def _preprocess_sites(self):
for gmpe in self.gsims:
site_params = [param for param in gmpe.REQUIRES_SITES_PARAMETERS]
for param in site_params:
- if not param in self.params.keys():
+ if not param in self.params:
raise ValueError("GMPE %s requires site parameter %s"
% (_get_gmpe_name(gmpe), param))
#% (gmpe.__class__.__name__, param))
@@ -375,12 +379,19 @@ def from_rupture_model(cls, rupture, gsims, imts, stddevs='Total',
return cls(magnitudes, distances, gsims, imts, params, stddevs,
rupture=rupture, **kwargs)
- def create_plot(self):
+ def plot(self):
"""
Creates the plot!
"""
raise NotImplementedError("Cannot create plot of base class!")
+ def _get_ylabel(self, imt):
+ """
+ Returns the label for plotting on a y axis
+ """
+ raise NotImplementedError
+
+
class MagnitudeIMTTrellis(BaseTrellis):
"""
@@ -393,23 +404,76 @@ def __init__(self, magnitudes, distances, gsims, imts, params,
Instantiate with list of magnitude and the corresponding distances
given in a dictionary
"""
- for key in distances.keys():
+ for key in distances:
if isinstance(distances[key], float):
distances[key] = np.array([distances[key]])
super(MagnitudeIMTTrellis, self).__init__(magnitudes, distances, gsims,
imts, params, stddevs, **kwargs)
- def create_plot(self):
+ @classmethod
+ def from_rupture_model(cls, properties, magnitudes, distance, gsims, imts,
+ stddevs='Total', **kwargs):
+ """
+ Implements the magnitude trellis from a dictionary of properties,
+ magnitudes and distance
+ """
+ kwargs.setdefault('filename', None)
+ kwargs.setdefault('filetype', "png")
+ kwargs.setdefault('dpi', 300)
+ kwargs.setdefault('plot_type', "loglog")
+ kwargs.setdefault('distance_type', "rjb")
+ kwargs.setdefault('xlim', None)
+ kwargs.setdefault('ylim', None)
+ # Properties
+ properties.setdefault("tectonic_region", "Active Shallow Crust")
+ properties.setdefault("rake", 0.)
+ properties.setdefault("ztor", 0.)
+ properties.setdefault("strike", 0.)
+ properties.setdefault("msr", WC1994())
+ properties.setdefault("initial_point", DEFAULT_POINT)
+ properties.setdefault("hypocentre_location", None)
+ properties.setdefault("line_azimuth", 90.)
+ properties.setdefault("origin_point", (0.5, 0.5))
+ properties.setdefault("vs30measured", True)
+ properties.setdefault("z1pt0", None)
+ properties.setdefault("z2pt5", None)
+ properties.setdefault("backarc", False)
+ properties.setdefault("distance_type", "rrup")
+ # Define a basic rupture configuration
+ rup = GSIMRupture(magnitudes[0], properties["dip"],
+ properties["aspect"], properties["tectonic_region"],
+ properties["rake"], properties["ztor"],
+ properties["strike"], properties["msr"],
+ properties["initial_point"],
+ properties["hypocentre_location"])
+ # Add the target sites
+ _ = rup.get_target_sites_point(distance, properties['distance_type'],
+ properties["vs30"],
+ properties["line_azimuth"],
+ properties["origin_point"],
+ properties["vs30measured"],
+ properties["z1pt0"],
+ properties["z2pt5"],
+ properties["backarc"])
+ # Get the contexts
+ sctx, rctx, dctx = rup.get_gsim_contexts()
+ # Create an equivalent 'params' dictionary by merging the site and
+ # rupture properties
+ sctx.__dict__.update(rctx.__dict__)
+ for val in dctx.__dict__:
+ if getattr(dctx, val) is not None:
+ setattr(dctx, val, getattr(dctx, val)[0])
+ return cls(magnitudes, dctx.__dict__, gsims, imts, sctx.__dict__,
+ **kwargs)
+
+ def plot(self):
"""
Creates the trellis plot!
"""
# Determine the optimum number of rows and columns
nrow, ncol = utils.best_subplot_dimensions(len(self.imts))
# Get means and standard deviations
- if self.rupture:
- gmvs = self.get_ground_motion_values_from_rupture()
- else:
- gmvs = self.get_ground_motion_values()
+ gmvs = self.get_ground_motion_values()
fig = plt.figure(figsize=self.figure_size)
fig.set_tight_layout(True)
row_loc = 0
@@ -428,14 +492,13 @@ def create_plot(self):
# Add legend
lgd = plt.legend(self.lines,
self.labels,
- loc=2,
- bbox_to_anchor=(1.05, 1.),
+ loc=3,
+ bbox_to_anchor=(1.1, 0.),
fontsize=self.legend_fontsize,
ncol=self.ncol)
_save_image_tight(fig, lgd, self.filename, self.filetype, self.dpi)
plt.show()
-
def _build_plot(self, ax, i_m, gmvs):
"""
Plots the lines for a given axis
@@ -449,7 +512,6 @@ def _build_plot(self, ax, i_m, gmvs):
self.labels = []
self.lines = []
for gmpe in self.gsims:
- #self.labels.append(gmpe.__class__.__name__)
gmpe_name = _get_gmpe_name(gmpe)
self.labels.append(gmpe_name)
line, = ax.semilogy(self.magnitudes,
@@ -470,16 +532,66 @@ def _build_plot(self, ax, i_m, gmvs):
self._set_labels(i_m, ax)
def _set_labels(self, i_m, ax):
- """
- Sets the labels on the specified axes
- """
- ax.set_xlabel("Magnitude", fontsize=16)
- if 'SA(' in i_m:
- units = PLOT_UNITS['SA']
- else:
- units = PLOT_UNITS[i_m]
- ax.set_ylabel("Mean %s (%s)" % (i_m, units), fontsize=16)
-
+ """
+ Sets the labels on the specified axes
+ """
+ ax.set_xlabel("Magnitude", fontsize=16)
+ ax.set_ylabel(self._get_ylabel(i_m), fontsize=16)
+
+ def _get_ylabel(self, i_m):
+ """
+ Return the y-label for the magnitude IMT trellis
+ """
+ if 'SA(' in i_m:
+ units = PLOT_UNITS['SA']
+ else:
+ units = PLOT_UNITS[i_m]
+ return "Mean {:s} ({:s})".format(i_m, units)
+
+ def to_dict(self):
+ """
+ Parse the ground motion values to a dictionary
+ """
+ gmvs = self.get_ground_motion_values()
+ nrow, ncol = utils.best_subplot_dimensions(len(self.imts))
+ gmv_dict = OrderedDict([
+ ("xvalues", self.magnitudes.tolist()),
+ ("xlabel", "Magnitude")])
+ nvals = len(self.magnitudes)
+ gmv_dict["figures"] = []
+ row_loc = 0
+ col_loc = 0
+ for imt in self.imts:
+ if col_loc == ncol:
+ row_loc += 1
+ col_loc = 0
+ # Set the dictionary of y-values
+ ydict = {"ylabel": self._get_ylabel(imt),
+ "row": row_loc,
+ "column": col_loc,
+ "yvalues": OrderedDict([])}
+
+ for gsim in gmvs:
+ if not len(gmvs[gsim][imt]):
+ # GSIM missing, set None
+ ydict["yvalues"][gsim] = [None for i in range(nvals)]
+ continue
+ iml_to_list = []
+ for val in gmvs[gsim][imt].flatten().tolist():
+ if np.isnan(val) or (val < 0.0):
+ iml_to_list.append(None)
+ else:
+ iml_to_list.append(val)
+ ydict["yvalues"][gsim] = iml_to_list
+ gmv_dict["figures"].append(ydict)
+ col_loc += 1
+ return gmv_dict
+
+ def to_json(self):
+ """
+ Serializes the ground motion values to json
+ """
+ return json.dumps(self.to_dict())
def get_ground_motion_values(self):
"""
@@ -512,73 +624,6 @@ def get_ground_motion_values(self):
break
return gmvs
- def get_ground_motion_values_from_rupture(self):
- """
- """
- gmvs = OrderedDict()
- rctx, dctx, sctx = self._get_context_sets()
- for gmpe in self.gsims:
- gmpe_name = _get_gmpe_name(gmpe)
- gmvs.update([(gmpe_name, {})])
- for i_m in self.imts:
- gmvs[gmpe_name][i_m] = np.zeros(
- [len(self.rctx), self.nsites], dtype=float)
- for iloc, (rct, dct, sct) in enumerate(zip(rctx, dctx, sctx)):
- try:
- means, _ = gmpe.get_mean_and_stddevs(
- sct,
- rct,
- dct,
- imt.from_string(i_m),
- [self.stddevs])
-
- gmvs[gmpe_name][i_m][iloc, :] = \
- np.exp(means)
- except (KeyError, ValueError):
- gmvs[gmpe_name][i_m] = []
- break
- return gmvs
-
-
- def _get_context_sets(self):
- """
- When building from the rupture it is possible that it may be preferable
- to re-build the contexts (e.g. for magnitude scaling).
- """
- # Build context sets
- rct = []
- dct = []
- sct = []
- for rctx in self.rctx:
- temp_rup = deepcopy(self.rupture)
- # Update mag
- temp_rup.mag = deepcopy(rctx.mag)
- temp_rup.rupture = temp_rup.get_rupture()
- temp_rup.target_sites = None
- # Update target sites
- if temp_rup.target_sites_config["TYPE"] == "Mesh":
- _ = temp_rup.get_target_sites_mesh(
- *[temp_rup.target_sites_config[key] for key in
- ["RMAX", "SPACING", "VS30", "VS30MEASURED",
- "Z1.0", "Z2.5", "BACKARC"]])
- elif temp_rup.target_sites_config["TYPE"] == "Line":
- _ = temp_rup.get_target_sites_line(
- *[temp_rup.target_sites_config[key] for key in
- ["RMAX", "SPACING", "VS30", "AZIMUTH", "ORIGIN",
- "AS_LOG", "VS30MEASURED", "Z1.0", "Z2.5", "BACKARC"]])
- else:
- _ = temp_rup.get_target_sites_point(
- *[temp_rup.target_sites_config[key] for key in
- ["R", "RTYPE", "VS30", "AZIMUTH", "ORIGIN",
- "VS30MEASURED", "Z1.0", "Z2.5", "BACKARC"]])
- s_c, r_c, d_c = temp_rup.get_gsim_contexts()
- rct.append(r_c)
- dct.append(d_c)
- sct.append(s_c)
- return rct, dct, sct
-
-
-
def pretty_print(self, filename=None, sep=","):
"""
Format the ground motion for printing to file or to screen
@@ -595,13 +640,10 @@ def pretty_print(self, filename=None, sep=","):
self._write_pprint_header_line(fid, sep)
# Print Distances
distance_str = sep.join(["{:s}{:s}{:s}".format(key, sep, str(val[0]))
- for (key, val) in self.dctx.__dict__.items()])
+ for (key, val) in self.dctx.items()])
fid.write("Distances%s%s\n" % (sep, distance_str))
# Loop over IMTs
- if self.rupture:
- gmvs = self.get_ground_motion_values_from_rupture()
- else:
- gmvs = self.get_ground_motion_values()
+ gmvs = self.get_ground_motion_values()
for imt in self.imts:
fid.write("%s\n" % imt)
header_str = "Magnitude" + sep + sep.join([_get_gmpe_name(gsim)
@@ -621,8 +663,9 @@ def _write_pprint_header_line(self, fid, sep=","):
Write the header lines of the pretty print function
"""
fid.write("Magnitude IMT Trellis\n")
- fid.write("%s\n" % sep.join(["{:s}{:s}{:s}".format(key, sep, str(val))
- for (key, val) in self.params.items()]))
+ fid.write("%s\n" % sep.join([
+ "{:s}{:s}{:s}".format(key, sep, str(val))
+ for (key, val) in self.params.items()]))
class MagnitudeSigmaIMTTrellis(MagnitudeIMTTrellis):
@@ -719,13 +762,17 @@ def get_ground_motion_values_from_rupture(self):
break
return gmvs
+ def _get_ylabel(self, i_m):
+ """
+ """
+ return self.stddevs + " Std. Dev. ({:s})".format(str(i_m))
+
def _set_labels(self, i_m, ax):
"""
Sets the axes labels
"""
ax.set_xlabel("Magnitude", fontsize=16)
- ax.set_ylabel(self.stddevs + " Std. Dev. ({:s})".format(str(i_m)),
- fontsize=16)
+ ax.set_ylabel(self._get_ylabel(i_m), fontsize=16)
def _write_pprint_header_line(self, fid, sep=","):
"""
@@ -733,8 +780,9 @@ def _write_pprint_header_line(self, fid, sep=","):
"""
fid.write("Magnitude IMT %s Standard Deviations Trellis\n" %
self.stddevs)
- fid.write("%s\n" % sep.join(["{:s}{:s}{:s}".format(key, sep, str(val))
- for (key, val) in self.params.items()]))
+ fid.write("%s\n" % sep.join([
+ "{:s}{:s}{:s}".format(key, sep, str(val))
+ for (key, val) in self.params.items()]))
class DistanceIMTTrellis(MagnitudeIMTTrellis):
@@ -746,7 +794,7 @@ class DistanceIMTTrellis(MagnitudeIMTTrellis):
def __init__(self, magnitudes, distances, gsims, imts, params,
stddevs="Total", **kwargs):
"""
- Instandi
+ Instantiation
"""
if isinstance(magnitudes, float):
magnitudes = [magnitudes]
@@ -754,6 +802,40 @@ def __init__(self, magnitudes, distances, gsims, imts, params,
super(DistanceIMTTrellis, self).__init__(magnitudes, distances, gsims,
imts, params, stddevs, **kwargs)
+ @classmethod
+ def from_rupture_model(cls, rupture, gsims, imts, stddevs='Total',
+ **kwargs):
+ """
+ Constructs the Base Trellis Class from a rupture model
+ :param rupture:
+ Rupture as instance of the :class:
+ smtk.trellis.configure.GSIMRupture
+ """
+ kwargs.setdefault('filename', None)
+ kwargs.setdefault('filetype', "png")
+ kwargs.setdefault('dpi', 300)
+ kwargs.setdefault('plot_type', "loglog")
+ kwargs.setdefault('distance_type', "rjb")
+ kwargs.setdefault('xlim', None)
+ kwargs.setdefault('ylim', None)
+ assert isinstance(rupture, GSIMRupture)
+ magnitudes = [rupture.magnitude]
+ sctx, rctx, dctx = rupture.get_gsim_contexts()
+ # Create distances dictionary
+ distances = {}
+ for key in dctx._slots_:
+ distances[key] = getattr(dctx, key)
+ # Add all other parameters to the dictionary
+ params = {}
+ for key in rctx._slots_:
+ params[key] = getattr(rctx, key)
+ #for key in sctx.__slots__:
+ for key in sctx._slots_:
+ #for key in ['vs30', 'vs30measured', 'z1pt0', 'z2pt5']:
+ params[key] = getattr(sctx, key)
+ return cls(magnitudes, distances, gsims, imts, params, stddevs,
+ **kwargs)
+
def _build_plot(self, ax, i_m, gmvs):
"""
Plots the lines for a given axis
@@ -802,18 +884,59 @@ def _build_plot(self, ax, i_m, gmvs):
ax.set_ylim(self.ylim[0], self.ylim[1])
self._set_labels(i_m, ax)
-
def _set_labels(self, i_m, ax):
- """
- Sets the labels on the specified axes
- """
- ax.set_xlabel("%s (km)" % DISTANCE_LABEL_MAP[self.distance_type],
- fontsize=16)
- if 'SA(' in i_m:
- units = PLOT_UNITS['SA']
- else:
- units = PLOT_UNITS[i_m]
- ax.set_ylabel("Mean %s (%s)" % (i_m, units), fontsize=16)
+ """
+ Sets the labels on the specified axes
+ """
+ ax.set_xlabel("%s (km)" % DISTANCE_LABEL_MAP[self.distance_type],
+ fontsize=16)
+ ax.set_ylabel(self._get_ylabel(i_m), fontsize=16)
+
+ def _get_ylabel(self, i_m):
+ """
+ Returns the y-label for the given IMT
+ """
+ if 'SA(' in i_m:
+ units = PLOT_UNITS['SA']
+ else:
+ units = PLOT_UNITS[i_m]
+ return "Mean {:s} ({:s})".format(i_m, units)
+
+ def to_dict(self):
+ """
+ Parses the ground motion values to a dictionary
+ """
+ gmvs = self.get_ground_motion_values()
+ nrow, ncol = utils.best_subplot_dimensions(len(self.imts))
+ dist_label = "{:s} (km)".format(DISTANCE_LABEL_MAP[self.distance_type])
+ gmv_dict = OrderedDict([
+ ("xvalues", self.distances[self.distance_type].tolist()),
+ ("xlabel", dist_label)])
+ gmv_dict["figures"] = []
+ row_loc = 0
+ col_loc = 0
+ for imt in self.imts:
+ if col_loc == ncol:
+ row_loc += 1
+ col_loc = 0
+ # Set the dictionary of y-values
+ ydict = {"ylabel": self._get_ylabel(imt),
+ "row": row_loc,
+ "column": col_loc,
+ "yvalues": OrderedDict([])}
+ for gsim in gmvs:
+ data = [None if np.isnan(val) else val
+ for val in gmvs[gsim][imt].flatten()]
+ ydict["yvalues"][gsim] = data
+ gmv_dict["figures"].append(ydict)
+ col_loc += 1
+ return gmv_dict
+
+ def to_json(self):
+ """
+ Exports ground motion values to json
+ """
+ return json.dumps(self.to_dict())
def pretty_print(self, filename=None, sep=","):
"""
@@ -975,15 +1098,18 @@ def _build_plot(self, ax, i_m, gmvs):
self._set_labels(i_m, ax)
-
+ def _get_ylabel(self, i_m):
+ """
+ """
+ return self.stddevs + " Std. Dev. ({:s})".format(str(i_m))
+
def _set_labels(self, i_m, ax):
"""
Sets the labels on the specified axes
"""
ax.set_xlabel("%s (km)" % DISTANCE_LABEL_MAP[self.distance_type],
fontsize=16)
- ax.set_ylabel(self.stddevs + " Std. Dev. ({:s})".format(str(i_m)),
- fontsize=16)
+ ax.set_ylabel(self._get_ylabel(i_m), fontsize=16)
def _write_pprint_header_line(self, fid, sep=","):
"""
@@ -995,21 +1121,167 @@ def _write_pprint_header_line(self, fid, sep=","):
for (key, val) in self.params.items()]))
-class MagnitudeDistanceSpectraTrellis(MagnitudeIMTTrellis):
- """
-
- """
+class MagnitudeDistanceSpectraTrellis(BaseTrellis):
+ # In this case the preprocessor needs to be removed
def __init__(self, magnitudes, distances, gsims, imts, params,
stddevs="Total", **kwargs):
- """
+ """
+ Builds the trellis plots for variation in response spectra with
+ magnitude and distance.
+
+ In this case the class is instantiated with a set of magnitudes
+ and a dictionary indicating the different distance types.
"""
imts = ["SA(%s)" % i_m for i_m in imts]
super(MagnitudeDistanceSpectraTrellis, self).__init__(magnitudes,
- distances, gsims, imts, params, stddevs, **kwargs)
+ distances, gsims, imts, params, stddevs, **kwargs)
+
+ def _preprocess_ruptures(self):
+ """
+ In this case properties such as the rupture depth and width may change
+ with the magnitude. Where this behaviour is desired the use feeds
+ the function with a list of RuptureContext instances, in which each
+ rupture context contains the information specific to that magnitude.
+
+ If this behaviour is not desired then the pre-processing of the
+ rupture information proceeds as in the conventional case within the
+ base class
+ """
+ # If magnitudes was provided with a list of RuptureContexts
+ if all([isinstance(mag, RuptureContext)
+ for mag in self.magnitudes]):
+ # Get all required rupture attributes
+ self.rctx = [mag for mag in self.magnitudes]
+ for gmpe in self.gsims:
+ rup_params = [param
+ for param in gmpe.REQUIRES_RUPTURE_PARAMETERS]
+ for rctx in self.rctx:
+ for param in rup_params:
+ if not param in rctx.__dict__:
+ raise ValueError(
+ "GMPE %s requires rupture parameter %s"
+ % (_get_gmpe_name(gmpe), param))
+ return
+ # Otherwise instantiate in the conventional way
+ super(MagnitudeDistanceSpectraTrellis, self)._preprocess_ruptures()
+ def _preprocess_distances(self):
+ """
+ In the case of distances one can pass either a dictionary containing
+ the distances, or a list of dictionaries each calibrated to a specific
+ magnitude (the list must be the same length as the number of
+ magnitudes)
+ """
+ if isinstance(self.distances, dict):
+ # Copy the same distances across
+ self.distances = [deepcopy(self.distances)
+ for mag in self.magnitudes]
+ assert (len(self.distances) == len(self.magnitudes))
+ # Distances should be a list of dictionaries
+ self.dctx = []
+ required_distances = []
+ for gmpe in self.gsims:
+ gsim_distances = [dist for dist in gmpe.REQUIRES_DISTANCES]
+ for mag_distances in self.distances:
+ for dist in gsim_distances:
+ if not dist in mag_distances:
+ raise ValueError('GMPE %s requires distance type %s'
+ % (_get_gmpe_name(gmpe), dist))
+
+ if not dist in required_distances:
+ required_distances.append(dist)
+
+ for distance in self.distances:
+ dctx = gsim.base.DistancesContext()
+ dist_check = False
+ for dist in required_distances:
+ if dist_check and not (len(distance[dist]) == self.nsites):
+ raise ValueError("Distances arrays not equal length!")
+ else:
+ self.nsites = len(distance[dist])
+ dist_check = True
+ setattr(dctx, dist, distance[dist])
+ self.dctx.append(dctx)
- def create_plot(self):
+ @classmethod
+ def from_rupture_model(cls, properties, magnitudes, distances,
+ gsims, imts, stddevs='Total', **kwargs):
+ """
+ Constructs the Base Trellis Class from a rupture model
+ :param dict properties:
+ Properties of the rupture and sites, including (* indicates
+ required): *dip, *aspect, tectonic_region, rake, ztor, strike,
+ msr, initial_point, hypocentre_location, distance_type,
+ vs30, line_azimuth, origin_point, vs30measured, z1pt0,
+ z2pt5, backarc
+ :param list magnitudes:
+ List of magnitudes
+ :param list distances:
+ List of distances (the distance type should be specified in the
+ properties dict - rrup, by default)
+ """
+ kwargs.setdefault('filename', None)
+ kwargs.setdefault('filetype', "png")
+ kwargs.setdefault('dpi', 300)
+ kwargs.setdefault('plot_type', "loglog")
+ kwargs.setdefault('distance_type', "rjb")
+ kwargs.setdefault('xlim', None)
+ kwargs.setdefault('ylim', None)
+ # Defaults for the properties of the rupture and site configuration
+ properties.setdefault("tectonic_region", "Active Shallow Crust")
+ properties.setdefault("rake", 0.)
+ properties.setdefault("ztor", 0.)
+ properties.setdefault("strike", 0.)
+ properties.setdefault("msr", WC1994())
+ properties.setdefault("initial_point", DEFAULT_POINT)
+ properties.setdefault("hypocentre_location", None)
+ properties.setdefault("line_azimuth", 90.)
+ properties.setdefault("origin_point", (0.5, 0.5))
+ properties.setdefault("vs30measured", True)
+ properties.setdefault("z1pt0", None)
+ properties.setdefault("z2pt5", None)
+ properties.setdefault("backarc", False)
+ properties.setdefault("distance_type", "rrup")
+ distance_dicts = []
+ rupture_dicts = []
+ for magnitude in magnitudes:
+ # Generate the rupture for the specific magnitude
+ rup = GSIMRupture(magnitude, properties["dip"],
+ properties["aspect"],
+ properties["tectonic_region"],
+ properties["rake"], properties["ztor"],
+ properties["strike"], properties["msr"],
+ properties["initial_point"],
+ properties["hypocentre_location"])
+ distance_dict = None
+ for distance in distances:
+ # Define the target sites with respect to the rupture
+ _ = rup.get_target_sites_point(distance,
+ properties["distance_type"],
+ properties["vs30"],
+ properties["line_azimuth"],
+ properties["origin_point"],
+ properties["vs30measured"],
+ properties["z1pt0"],
+ properties["z2pt5"],
+ properties["backarc"])
+ sctx, rctx, dctx = rup.get_gsim_contexts()
+ if not distance_dict:
+ distance_dict = []
+ for (key, val) in dctx.__dict__.items():
+ distance_dict.append((key, val))
+ distance_dict = dict(distance_dict)
+ else:
+ for (key, val) in dctx.__dict__.items():
+ distance_dict[key] = np.hstack([
+ distance_dict[key], val])
+ distance_dicts.append(distance_dict)
+ rupture_dicts.append(rctx)
+ return cls(rupture_dicts, distance_dicts, gsims, imts, properties,
+ stddevs, **kwargs)
+
+ def plot(self):
"""
Create plot!
"""
@@ -1018,8 +1290,8 @@ def create_plot(self):
gmvs = self.get_ground_motion_values()
fig = plt.figure(figsize=self.figure_size)
fig.set_tight_layout({"pad":0.5})
- for rowloc in xrange(nrow):
- for colloc in xrange(self.nsites):
+ for rowloc in range(nrow):
+ for colloc in range(self.nsites):
self._build_plot(
plt.subplot2grid((nrow, self.nsites), (rowloc, colloc)),
gmvs,
@@ -1028,13 +1300,41 @@ def create_plot(self):
# Add legend
lgd = plt.legend(self.lines,
self.labels,
- loc=2,
- bbox_to_anchor=(1.1, 1.),
- ncol=self.ncol)
+ loc=3.,
+ bbox_to_anchor=(1.1, 0.0),
+ fontsize=self.legend_fontsize)
+
_save_image_tight(fig, lgd, self.filename, self.filetype, self.dpi)
plt.show()
-
-
+
+ def get_ground_motion_values(self):
+ """
+ Runs the GMPE calculations to retreive ground motion values
+ :returns:
+ Nested dictionary of values
+ {'GMPE1': {'IM1': , 'IM2': },
+ 'GMPE2': {'IM1': , 'IM2': }}
+ """
+ gmvs = OrderedDict()
+ for gmpe in self.gsims:
+ gmpe_name = _get_gmpe_name(gmpe)
+ gmvs.update([(gmpe_name, {})])
+ for i_m in self.imts:
+ gmvs[gmpe_name][i_m] = np.zeros(
+ [len(self.rctx), self.nsites], dtype=float)
+ for iloc, (rct, dct) in enumerate(zip(self.rctx, self.dctx)):
+ try:
+ means, _ = gmpe.get_mean_and_stddevs(
+ self.sctx, rct, dct,
+ imt.from_string(i_m),
+ [self.stddevs])
+
+ gmvs[gmpe_name][i_m][iloc, :] = \
+ np.exp(means)
+ except (KeyError, ValueError):
+ gmvs[gmpe_name][i_m] = []
+ break
+ return gmvs
def _build_plot(self, ax, gmvs, rloc, cloc):
"""
@@ -1048,8 +1348,6 @@ def _build_plot(self, ax, gmvs, rloc, cloc):
"""
self.labels = []
self.lines = []
- #periods = np.array([imt.from_string(i_m).period
- # for i_m in self.imts])
max_period = 0.0
min_period = np.inf
for gmpe in self.gsims:
@@ -1073,20 +1371,18 @@ def _build_plot(self, ax, gmvs, rloc, cloc):
if self.plot_type == "loglog":
line, = ax.loglog(periods,
spec,
- #"-",
linewidth=2.0,
label=gmpe_name)
else:
line, = ax.semilogy(periods,
spec,
- #"-",
linewidth=2.0,
label=gmpe_name)
# On the top row, add the distance as a title
if rloc == 0:
- ax.set_title("%s = %9.3f (km)" %(
+ ax.set_title("%s = %9.1f (km)" %(
self.distance_type,
- self.distances[self.distance_type][cloc]),
+ self.distances[rloc][self.distance_type][cloc]),
fontsize=14)
# On the last column add a vertical label with magnitude
if cloc == (self.nsites - 1):
@@ -1103,7 +1399,6 @@ def _build_plot(self, ax, gmvs, rloc, cloc):
ax.grid(True)
self._set_labels(i_m, ax)
-
def _set_labels(self, i_m, ax):
"""
Sets the labels on the specified axes
@@ -1111,6 +1406,55 @@ def _set_labels(self, i_m, ax):
ax.set_xlabel("Period (s)", fontsize=14)
ax.set_ylabel("Sa (g)", fontsize=14)
+ def to_dict(self):
+ """
+ Export ground motion values to a dictionary
+ """
+ gmvs = self.get_ground_motion_values()
+ periods = [float(val.split("SA(")[1].rstrip(")"))
+ for val in self.imts]
+
+ gmv_dict = OrderedDict([
+ ("xlabel", "Period (s)"),
+ ("xvalues", periods),
+ ("figures", [])
+ ])
+
+ mags = [rup.mag for rup in self.magnitudes]
+ dists = self.distances[0][self.distance_type]
+ for i, mag in enumerate(mags):
+ for j, dist in enumerate(dists):
+ ydict = OrderedDict([
+ ("ylabel", "Sa (g)"),
+ ("magnitude", mag),
+ ("distance", np.around(dist, 3)),
+ ("row", i),
+ ("column", j),
+ ("yvalues", OrderedDict([(gsim, []) for gsim in gmvs]))
+ ])
+ for gsim in gmvs:
+ for imt in self.imts:
+ if len(gmvs[gsim][imt]):
+ ydict["yvalues"][gsim].\
+ append(gmvs[gsim][imt][i, j])
+ else:
+ ydict["yvalues"][gsim].append(None)
+ gmv_dict["figures"].append(ydict)
+ return gmv_dict
+
+ def to_json(self):
+ """
+ Exports the ground motion values to json
+ """
+ return json.dumps(self.to_dict())
+
+ def _get_ylabel(self, i_m):
+ """
+ In this case only the spectra are being shown, so return only the
+ Sa (g) label
+ """
+ return "Sa (g)"
+
def pretty_print(self, filename=None, sep=","):
"""
Format the ground motion for printing to file or to screen
@@ -1125,10 +1469,7 @@ def pretty_print(self, filename=None, sep=","):
fid = sys.stdout
# Print Meta information
self._write_pprint_header_line(fid, sep)
- # Loop over IMTs
- #if self.rupture:
- # gmvs = self.get_ground_motion_values_from_rupture()
- #else:
+ # Loop over IMTs
gmvs = self.get_ground_motion_values()
# Get the GMPE list header string
gsim_str = "IMT{:s}{:s}".format(
@@ -1160,7 +1501,7 @@ def pretty_print(self, filename=None, sep=","):
imt_str = imt.split("(")[1].rstrip(")")
iml_str = sep.join(iml_str)
fid.write("{:s}{:s}{:s}\n".format(imt_str, sep, iml_str))
- fid.write("====================================================\n")
+ fid.write("================================================\n")
if filename:
fid.close()
@@ -1210,36 +1551,34 @@ def _build_plot(self, ax, gmvs, rloc, cloc):
min_period = np.min(periods) if np.min(periods) < min_period else \
min_period
- #spec = np.array([gmvs[gmpe.__class__.__name__][i_m][rloc, cloc]
- # for i_m in self.imts])
if self.plot_type == "loglog":
line, = ax.semilogx(periods,
spec,
- #"-",
linewidth=2.0,
label=gmpe_name)
else:
line, = ax.plot(periods,
spec,
- #"-",
linewidth=2.0,
label=gmpe_name)
# On the top row, add the distance as a title
if rloc == 0:
ax.set_title("%s = %9.3f (km)" %(
self.distance_type,
- self.distances[self.distance_type][cloc]),
- fontsize=12)
+ self.distances[0][self.distance_type][cloc]),
+ fontsize=14)
# On the last column add a vertical label with magnitude
if cloc == (self.nsites - 1):
ax.annotate("M = %s" % self.rctx[rloc].mag,
- (1.02, 0.5),
+ (1.05, 0.5),
xycoords="axes fraction",
- fontsize=12,
+ fontsize=14,
rotation="vertical")
self.lines.append(line)
ax.set_xlim(min_period, max_period)
+ if isinstance(self.ylim, tuple):
+ ax.set_ylim(self.ylim[0], self.ylim[1])
ax.grid(True)
self._set_labels(i_m, ax)
@@ -1256,15 +1595,12 @@ def get_ground_motion_values(self):
gmpe_name = _get_gmpe_name(gmpe)
gmvs.update([(gmpe_name, {})])
for i_m in self.imts:
- gmvs[gmpe_name][i_m] = np.zeros([len(self.rctx),
- self.nsites],
- dtype=float)
- for iloc, rct in enumerate(self.rctx):
+ gmvs[gmpe_name][i_m] = np.zeros([len(self.rctx), self.nsites],
+ dtype=float)
+ for iloc, (rct, dct) in enumerate(zip(self.rctx, self.dctx)):
try:
_, sigmas = gmpe.get_mean_and_stddevs(
- self.sctx,
- rct,
- self.dctx,
+ self.sctx, rct,dct,
imt.from_string(i_m),
[self.stddevs])
gmvs[gmpe_name][i_m][iloc, :] = sigmas[0]
@@ -1272,8 +1608,7 @@ def get_ground_motion_values(self):
gmvs[gmpe_name][i_m] = []
break
return gmvs
-
-
+
def _set_labels(self, i_m, ax):
"""
Sets the labels on the specified axes
@@ -1281,6 +1616,13 @@ def _set_labels(self, i_m, ax):
ax.set_xlabel("Period (s)", fontsize=14)
ax.set_ylabel("%s Std. Dev." % self.stddevs, fontsize=14)
+ def _get_ylabel(self, i_m):
+ """
+ Returns the standard deviation term (specific to the standard deviation
+ type specified for the class)
+ """
+ return "{:s} Std. Dev.".format(self.stddevs)
+
def _write_pprint_header_line(self, fid, sep=","):
"""
Write the header lines of the pretty print function
@@ -1290,3 +1632,180 @@ def _write_pprint_header_line(self, fid, sep=","):
fid.write("%s\n" % sep.join(["{:s}{:s}{:s}".format(key, sep, str(val))
for (key, val) in self.params.items()]))
+
+#class MagnitudeDistanceSpectraTrellis(MagnitudeIMTTrellis):
+# """
+#
+# """
+# def __init__(self, magnitudes, distances, gsims, imts, params,
+# stddevs="Total", **kwargs):
+# """
+# """
+# imts = ["SA(%s)" % i_m for i_m in imts]
+#
+# super(MagnitudeDistanceSpectraTrellis, self).__init__(magnitudes,
+# distances, gsims, imts, params, stddevs, **kwargs)
+#
+#
+# def create_plot(self):
+# """
+# Create plot!
+# """
+# nrow = len(self.magnitudes)
+# # Get means and standard deviations
+# gmvs = self.get_ground_motion_values()
+# fig = plt.figure(figsize=self.figure_size)
+# fig.set_tight_layout({"pad":0.5})
+# for rowloc in xrange(nrow):
+# for colloc in xrange(self.nsites):
+# self._build_plot(
+# plt.subplot2grid((nrow, self.nsites), (rowloc, colloc)),
+# gmvs,
+# rowloc,
+# colloc)
+# # Add legend
+# lgd = plt.legend(self.lines,
+# self.labels,
+# loc=2,
+# bbox_to_anchor=(1.1, 1.),
+# ncol=self.ncol)
+# _save_image_tight(fig, lgd, self.filename, self.filetype, self.dpi)
+# plt.show()
+#
+#
+#
+# def _build_plot(self, ax, gmvs, rloc, cloc):
+# """
+# Plots the lines for a given axis
+# :param ax:
+# Axes object
+# :param str i_m:
+# Intensity Measure
+# :param dict gmvs:
+# Ground Motion Values Dictionary
+# """
+# self.labels = []
+# self.lines = []
+# #periods = np.array([imt.from_string(i_m).period
+# # for i_m in self.imts])
+# max_period = 0.0
+# min_period = np.inf
+# for gmpe in self.gsims:
+# periods = []
+# spec = []
+# gmpe_name = _get_gmpe_name(gmpe)
+# for i_m in self.imts:
+# if len(gmvs[gmpe_name][i_m]):
+# periods.append(imt.from_string(i_m).period)
+# spec.append(gmvs[gmpe_name][i_m][rloc, cloc])
+# periods = np.array(periods)
+# spec = np.array(spec)
+# max_period = np.max(periods) if np.max(periods) > max_period else \
+# max_period
+# min_period = np.min(periods) if np.min(periods) < min_period else \
+# min_period
+#
+#
+# self.labels.append(gmpe_name)
+# # Get spectrum from gmvs
+# if self.plot_type == "loglog":
+# line, = ax.loglog(periods,
+# spec,
+# #"-",
+# linewidth=2.0,
+# label=gmpe_name)
+# else:
+# line, = ax.semilogy(periods,
+# spec,
+# #"-",
+# linewidth=2.0,
+# label=gmpe_name)
+# # On the top row, add the distance as a title
+# if rloc == 0:
+# ax.set_title("%s = %9.3f (km)" %(
+# self.distance_type,
+# self.distances[self.distance_type][cloc]),
+# fontsize=14)
+# # On the last column add a vertical label with magnitude
+# if cloc == (self.nsites - 1):
+# ax.annotate("M = %s" % self.rctx[rloc].mag,
+# (1.05, 0.5),
+# xycoords="axes fraction",
+# fontsize=14,
+# rotation="vertical")
+#
+# self.lines.append(line)
+# ax.set_xlim(min_period, max_period)
+# if isinstance(self.ylim, tuple):
+# ax.set_ylim(self.ylim[0], self.ylim[1])
+# ax.grid(True)
+# self._set_labels(i_m, ax)
+#
+#
+# def _set_labels(self, i_m, ax):
+# """
+# Sets the labels on the specified axes
+# """
+# ax.set_xlabel("Period (s)", fontsize=14)
+# ax.set_ylabel("Sa (g)", fontsize=14)
+#
+# def pretty_print(self, filename=None, sep=","):
+# """
+# Format the ground motion for printing to file or to screen
+# :param str filename:
+# Path to file
+# :param str sep:
+# Separator character
+# """
+# if filename:
+# fid = open(filename, "w")
+# else:
+# fid = sys.stdout
+# # Print Meta information
+# self._write_pprint_header_line(fid, sep)
+# # Loop over IMTs
+# #if self.rupture:
+# # gmvs = self.get_ground_motion_values_from_rupture()
+# #else:
+# gmvs = self.get_ground_motion_values()
+# # Get the GMPE list header string
+# gsim_str = "IMT{:s}{:s}".format(
+# sep,
+# sep.join([_get_gmpe_name(gsim) for gsim in self.gsims]))
+# for i, mag in enumerate(self.magnitudes):
+# for j in range(self.nsites):
+# dist_string = sep.join([
+# "{:s}{:s}{:s}".format(dist_type, sep, str(val[j]))
+# for (dist_type, val) in self.distances.items()])
+# # Get M-R header string
+# mr_header = "Magnitude{:s}{:s}{:s}{:s}".format(sep, str(mag),
+# sep,
+# dist_string)
+# fid.write("%s\n" % mr_header)
+# fid.write("%s\n" % gsim_str)
+# for imt in self.imts:
+# iml_str = []
+# for gsim in self.gsims:
+# gmpe_name = _get_gmpe_name(gsim)
+# # Need to deal with case that GSIMs don't define
+# # values for the period
+# if len(gmvs[gmpe_name][imt]):
+# iml_str.append("{:.8f}".format(
+# gmvs[gmpe_name][imt][i, j]))
+# else:
+# iml_str.append("-999.000")
+# # Retreived IMT string
+# imt_str = imt.split("(")[1].rstrip(")")
+# iml_str = sep.join(iml_str)
+# fid.write("{:s}{:s}{:s}\n".format(imt_str, sep, iml_str))
+# fid.write("====================================================\n")
+# if filename:
+# fid.close()
+#
+# def _write_pprint_header_line(self, fid, sep=","):
+# """
+# Write the header lines of the pretty print function
+# """
+# fid.write("Magnitude - Distance Spectra (km) IMT Trellis\n")
+# fid.write("%s\n" % sep.join(["{:s}{:s}{:s}".format(key, sep, str(val))
+# for (key, val) in self.params.items()]))
diff --git a/tests/hazard/__init__.py b/tests/hazard/__init__.py
new file mode 100755
index 0000000..e69de29
diff --git a/tests/hazard/conditional_simulation_test.py b/tests/hazard/conditional_simulation_test.py
new file mode 100644
index 0000000..f7600b1
--- /dev/null
+++ b/tests/hazard/conditional_simulation_test.py
@@ -0,0 +1,95 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+#
+# Copyright (C) 2014-2017 GEM Foundation and G. Weatherill
+#
+# OpenQuake is free software: you can redistribute it and/or modify it
+# under the terms of the GNU Affero General Public License as published
+# by the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# OpenQuake is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with OpenQuake. If not, see .
+"""
+Tests for execution of Conditional Simulation tools
+"""
+import unittest
+import os
+import cPickle
+import smtk.hazard.conditional_simulation as csim
+from smtk.residuals.gmpe_residuals import Residuals
+
+BASE_DATA_PATH = os.path.join(os.path.dirname(__file__), "data")
+
+
+class ConditionalSimulationTestCase(unittest.TestCase):
+ """
+ Test suite for the conditional simulation
+
+ Currently only testing execution - not correctness of values
+ """
+ @classmethod
+ def setUpClass(cls):
+ """
+ Import the database and the rupture before tests
+ """
+ input_db = os.path.join(BASE_DATA_PATH, "LAquila_Database")
+ with open(os.path.join(input_db, "metadatafile.pkl"), "r") as fid:
+ cls.db = cPickle.load(fid)
+ input_rupture_file = os.path.join(BASE_DATA_PATH,
+ "laquila_rupture.xml")
+ cls.rupture = csim.build_rupture_from_file(input_rupture_file)
+ cls.gsims = ["AkkarEtAlRjb2014"]
+ cls.imts = ["PGA", "SA(1.0)"]
+ for rec in cls.db:
+ rec.datafile = os.path.join(os.path.dirname(__file__),
+ rec.datafile)
+ print(rec.datafile)
+ # Generate the residuals
+ cls.residuals = Residuals(cls.gsims, cls.imts)
+ cls.residuals.get_residuals(cls.db)
+
+ def test_generation_residual_fields(self):
+ """
+ Executes the site collection
+ """
+ observed_sites = self.db.get_site_collection()
+ self.assertEqual(len(observed_sites), 13)
+ # Get the target sites
+ limits = [12.5, 15.0, 0.05, 40.5, 43.0, 0.05]
+ vs30 = 800.0
+ unknown_sites = csim.get_regular_site_collection(limits, vs30)
+ # Generate a conditional field of residuals
+ pga_residuals = self.residuals.residuals["AkkarEtAlRjb2014"]\
+ ["PGA"]["Intra event"]
+ sa1_residuals = self.residuals.residuals["AkkarEtAlRjb2014"]\
+ ["SA(1.0)"]["Intra event"]
+ pga_field1 = csim.conditional_simulation(observed_sites,
+ pga_residuals,
+ unknown_sites, "PGA", 1)
+ sa1_field1 = csim.conditional_simulation(observed_sites,
+ sa1_residuals,
+ unknown_sites, "SA(1.0)", 1)
+
+ def tests_generation_gmfs(self):
+ """
+ Tests the generation of the full ground motion fields
+ """
+ limits = [12.5, 15.0, 0.05, 40.5, 43.0, 0.05]
+ vs30 = 800.0
+ unknown_sites = csim.get_regular_site_collection(limits, vs30)
+ gmfs = csim.get_conditional_gmfs(self.db,
+ self.rupture,
+ sites=unknown_sites,
+ gsims=self.gsims,
+ imts=self.imts,
+ number_simulations=5,
+ truncation_level=3.0)
+ self.assertEqual(gmfs["AkkarEtAlRjb2014"]["PGA"].shape[1], 5)
+ self.assertEqual(gmfs["AkkarEtAlRjb2014"]["SA(1.0)"].shape[1], 5)
diff --git a/tests/hazard/data/LAquila_Database/metadatafile.pkl b/tests/hazard/data/LAquila_Database/metadatafile.pkl
new file mode 100644
index 0000000..64e5a6b
--- /dev/null
+++ b/tests/hazard/data/LAquila_Database/metadatafile.pkl
@@ -0,0 +1,5162 @@
+ccopy_reg
+_reconstructor
+p1
+(csmtk.sm_database
+GroundMotionDatabase
+p2
+c__builtin__
+object
+p3
+NtRp4
+(dp5
+S'directory'
+p6
+NsS'records'
+p7
+(lp8
+g1
+(csmtk.sm_database
+GroundMotionRecord
+p9
+g3
+NtRp10
+(dp11
+S'distance'
+p12
+g1
+(csmtk.sm_database
+RecordDistance
+p13
+g3
+NtRp14
+(dp15
+S'r_x'
+p16
+NsS'rhypo'
+p17
+F10
+sS'hanging_wall'
+p18
+NsS'flag'
+p19
+I0
+sS'rjb'
+p20
+F0
+sS'repi'
+p21
+F4
+sS'azimuth'
+p22
+NsS'ry0'
+p23
+NsS'rrup'
+p24
+NsbsS'datafile'
+p25
+S'data/LAquila_Database/records/16833.hdf5'
+p26
+sS'directivity'
+p27
+NsS'vertical'
+p28
+g1
+(csmtk.sm_database
+Component
+p29
+g3
+NtRp30
+(dp31
+S'lup'
+p32
+NsS'baseline'
+p33
+S'Zeroth Order Baseline Correction'
+p34
+sS'filter'
+p35
+(dp36
+S'Passes'
+p37
+I2
+sS'NRoll'
+p38
+I2
+sS'Low-Cut'
+p39
+F0.10000000000000001
+sS'High-Cut'
+p40
+F50
+sS'Type'
+p41
+S'Acausal Butterworth (Bandpass)'
+p42
+sS'Order'
+p43
+S'4-pole/4-pole'
+p44
+ssS'ims'
+p45
+(dp46
+S'PGV'
+p47
+F10.4174934
+sS'PGD'
+p48
+NsS'PGA'
+p49
+F258.50007199999999
+ssS'units'
+p50
+NsS'id'
+p51
+S'16833'
+p52
+sS'orientation'
+p53
+S'UP'
+p54
+sbsS'yrecord'
+p55
+g1
+(g29
+g3
+NtRp56
+(dp57
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p58
+sg35
+(dp59
+g37
+I2
+sg38
+I2
+sg39
+F0.10000000000000001
+sg40
+F50
+sg41
+S'Acausal Butterworth (Bandpass)'
+p60
+sg43
+S'4-pole/4-pole'
+p61
+ssg45
+(dp62
+g47
+F31.139098700000002
+sg48
+Nsg49
+F467.56410800000003
+ssg50
+Nsg51
+g52
+sg53
+S'WE'
+p63
+sbsS'site'
+p64
+g1
+(csmtk.sm_database
+RecordSite
+p65
+g3
+NtRp66
+(dp67
+S'instrument_type'
+p68
+S'Digital'
+p69
+sS'code'
+p70
+S'L Aquila - V. Aterno - Colle Grilli'
+p71
+sS'vs30_uncertainty'
+p72
+Nsg51
+S'2987'
+p73
+sS'vs30_measured'
+p74
+I0
+sS'ec8'
+p75
+S''
+sS'nehrp'
+p76
+NsS'floor'
+p77
+S''
+sS'altitude'
+p78
+F721
+sS'building_structure'
+p79
+S''
+sS'latitude'
+p80
+F42.373474000000002
+sS'z2pt5'
+p81
+NsS'nspt'
+p82
+NsS'vs30_measured_type'
+p83
+S'DH'
+p84
+sS'name'
+p85
+S'AQG'
+p86
+sS'site_class'
+p87
+NsS'country'
+p88
+S'Italy'
+p89
+sS'network_code'
+p90
+S'Servizio Sismico Nazionale (SSN), Ufficio Sistemi di Monitoraggio, Rome, Italy'
+p91
+sS'digitiser'
+p92
+S''
+sS'z1pt0'
+p93
+NsS'longitude'
+p94
+F13.337026
+sS'backarc'
+p95
+I00
+sS'vs30'
+p96
+F684.84199999999998
+sS'z1pt5'
+p97
+NsS'number_floors'
+p98
+NsbsS'time_series_file'
+p99
+(lp100
+S'16833/16833_H1.cor.acc'
+p101
+aS'16833/16833_H2.cor.acc'
+p102
+aS'16833/16833_V.cor.acc'
+p103
+asS'event'
+p104
+g1
+(csmtk.sm_database
+Earthquake
+p105
+g3
+NtRp106
+(dp107
+g85
+S'L Aquila Mainshock'
+p108
+sg88
+S'Italy'
+p109
+sg94
+F13.334
+sS'datetime'
+p110
+cdatetime
+datetime
+p111
+(S"\x07\xd9\x04\x06\x01 '\x00\x00\x00"
+tRp112
+sS'depth'
+p113
+F8.8000000000000007
+sS'magnitude'
+p114
+g1
+(csmtk.sm_database
+Magnitude
+p115
+g3
+NtRp116
+(dp117
+S'mtype'
+p118
+S'Mw'
+p119
+sS'sigma'
+p120
+NsS'value'
+p121
+F6.2999999999999998
+sbsS'mechanism'
+p122
+g1
+(csmtk.sm_database
+FocalMechanism
+p123
+g3
+NtRp124
+(dp125
+S'mechanism_type'
+p126
+S'Normal'
+p127
+sS'tensor'
+p128
+NsS'scalar_moment'
+p129
+NsS'nodal_planes'
+p130
+g1
+(csmtk.sm_database
+GCMTNodalPlanes
+p131
+g3
+NtRp132
+(dp133
+S'nodal_plane_2'
+p134
+(dp135
+S'strike'
+p136
+NsS'rake'
+p137
+NsS'dip'
+p138
+NssS'nodal_plane_1'
+p139
+(dp140
+g136
+F127
+sg137
+F-109
+sg138
+F50
+ssbsS'eigenvalues'
+p141
+g1
+(csmtk.sm_database
+GCMTPrincipalAxes
+p142
+g3
+NtRp143
+(dp144
+S'p_axis'
+p145
+NsS'b_axis'
+p146
+NsS'p_axes'
+p147
+(dp148
+S'eigenvalue'
+p149
+NsS'plunge'
+p150
+F75.170000000000002
+sg22
+F332.93000000000001
+ssS't_axis'
+p151
+NsS'b_axes'
+p152
+(dp153
+g149
+Nsg150
+Nsg22
+NssS't_axes'
+p154
+(dp155
+g149
+Nsg150
+F3.2999999999999998
+sg22
+F230.33000000000001
+ssbsg51
+S'20090406_0000075'
+p156
+sg85
+g108
+sbsS'magnitude_list'
+p157
+(lp158
+g1
+(g115
+g3
+NtRp159
+(dp160
+g118
+S'Ml'
+p161
+sg120
+Nsg121
+F5.7999999999999998
+sbag1
+(g115
+g3
+NtRp162
+(dp163
+g118
+S'Mw'
+p164
+sg120
+Nsg121
+F6.2999999999999998
+sbag1
+(g115
+g3
+NtRp165
+(dp166
+g118
+S''
+sg120
+Nsg121
+Nsbag1
+(g115
+g3
+NtRp167
+(dp168
+g118
+S''
+sg120
+Nsg121
+Nsbag1
+(g115
+g3
+NtRp169
+(dp170
+g118
+S''
+sg120
+Nsg121
+Nsbasg80
+F42.334000000000003
+sS'rupture'
+p171
+g1
+(csmtk.sm_database
+Rupture
+p172
+g3
+NtRp173
+(dp174
+S'area'
+p175
+NsS'hypo_loc'
+p176
+Nsg113
+NsS'surface'
+p177
+NsS'width'
+p178
+NsS'length'
+p179
+Nsg51
+g156
+sbsg51
+g156
+sbsS'average_lup'
+p180
+F9
+sS'spectra_file'
+p181
+(lp182
+S'16833/16833_H1.rs'
+p183
+aS'16833/16833_H2.rs'
+p184
+aS'16833/16833_V.rs'
+p185
+asg45
+NsS'average_sup'
+p186
+NsS'xrecord'
+p187
+g1
+(g29
+g3
+NtRp188
+(dp189
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p190
+sg35
+(dp191
+g37
+I2
+sg38
+I2
+sg39
+F0.10000000000000001
+sg40
+F50
+sg41
+S'Acausal Butterworth (Bandpass)'
+p192
+sg43
+S'4-pole/4-pole'
+p193
+ssg45
+(dp194
+g47
+F35.7390829
+sg48
+Nsg49
+F506.932929
+ssg50
+Nsg51
+g52
+sg53
+S'NS'
+p195
+sbsg51
+g52
+sbag1
+(g9
+g3
+NtRp196
+(dp197
+g12
+g1
+(g13
+g3
+NtRp198
+(dp199
+g16
+Nsg17
+F10
+sg18
+Nsg19
+I0
+sg20
+F0
+sg21
+F5
+sg22
+Nsg23
+Nsg24
+Nsbsg25
+S'data/LAquila_Database/records/16835.hdf5'
+p200
+sg27
+Nsg28
+g1
+(g29
+g3
+NtRp201
+(dp202
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p203
+sg35
+(dp204
+g37
+I2
+sg38
+I2
+sg39
+F0.10000000000000001
+sg40
+F50
+sg41
+S'Acausal Butterworth (Bandpass)'
+p205
+sg43
+S'4-pole/4-pole'
+p206
+ssg45
+(dp207
+g47
+F9.4060387900000002
+sg48
+Nsg49
+F477.53388899999993
+ssg50
+Nsg51
+S'16835'
+p208
+sg53
+S'UP'
+p209
+sbsg55
+g1
+(g29
+g3
+NtRp210
+(dp211
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p212
+sg35
+(dp213
+g37
+I2
+sg38
+I2
+sg39
+F0.10000000000000001
+sg40
+F50
+sg41
+S'Acausal Butterworth (Bandpass)'
+p214
+sg43
+S'4-pole/4-pole'
+p215
+ssg45
+(dp216
+g47
+F11.0249486
+sg48
+Nsg49
+F147.43128299999998
+ssg50
+Nsg51
+g208
+sg53
+S'WE'
+p217
+sbsg64
+g1
+(g65
+g3
+NtRp218
+(dp219
+g68
+S'Digital'
+p220
+sg70
+S'L Aquila - V. Aterno - F. Aterno'
+p221
+sg72
+Nsg51
+S'3609'
+p222
+sg74
+I0
+sg75
+S''
+sg76
+Nsg77
+S''
+sg78
+F693
+sg79
+S''
+sg80
+F42.375529999999998
+sg81
+Nsg82
+Nsg83
+S'DH'
+p223
+sg85
+S'AQA'
+p224
+sg87
+Nsg88
+S'Italy'
+p225
+sg90
+S''
+sg92
+S''
+sg93
+Nsg94
+F13.339297999999999
+sg95
+I00
+sg96
+F551.78700000000003
+sg97
+Nsg98
+Nsbsg99
+(lp226
+S'16835/16835_H1.cor.acc'
+p227
+aS'16835/16835_H2.cor.acc'
+p228
+aS'16835/16835_V.cor.acc'
+p229
+asg104
+g1
+(g105
+g3
+NtRp230
+(dp231
+g85
+S'L Aquila Mainshock'
+p232
+sg88
+S'Italy'
+p233
+sg94
+F13.334
+sg110
+g111
+(S"\x07\xd9\x04\x06\x01 '\x00\x00\x00"
+tRp234
+sg113
+F8.8000000000000007
+sg114
+g1
+(g115
+g3
+NtRp235
+(dp236
+g118
+S'Mw'
+p237
+sg120
+Nsg121
+F6.2999999999999998
+sbsg122
+g1
+(g123
+g3
+NtRp238
+(dp239
+g126
+S'Normal'
+p240
+sg128
+Nsg129
+Nsg130
+g1
+(g131
+g3
+NtRp241
+(dp242
+g134
+(dp243
+g136
+Nsg137
+Nsg138
+Nssg139
+(dp244
+g136
+F127
+sg137
+F-109
+sg138
+F50
+ssbsg141
+g1
+(g142
+g3
+NtRp245
+(dp246
+g145
+Nsg146
+Nsg147
+(dp247
+g149
+Nsg150
+F75.170000000000002
+sg22
+F332.93000000000001
+ssg151
+Nsg152
+(dp248
+g149
+Nsg150
+Nsg22
+Nssg154
+(dp249
+g149
+Nsg150
+F3.2999999999999998
+sg22
+F230.33000000000001
+ssbsg51
+S'20090406_0000075'
+p250
+sg85
+g232
+sbsg157
+(lp251
+g1
+(g115
+g3
+NtRp252
+(dp253
+g118
+S'Ml'
+p254
+sg120
+Nsg121
+F5.7999999999999998
+sbag1
+(g115
+g3
+NtRp255
+(dp256
+g118
+S'Mw'
+p257
+sg120
+Nsg121
+F6.2999999999999998
+sbag1
+(g115
+g3
+NtRp258
+(dp259
+g118
+S''
+sg120
+Nsg121
+Nsbag1
+(g115
+g3
+NtRp260
+(dp261
+g118
+S''
+sg120
+Nsg121
+Nsbag1
+(g115
+g3
+NtRp262
+(dp263
+g118
+S''
+sg120
+Nsg121
+Nsbasg80
+F42.334000000000003
+sg171
+g1
+(g172
+g3
+NtRp264
+(dp265
+g175
+Nsg176
+Nsg113
+Nsg177
+Nsg178
+Nsg179
+Nsg51
+g250
+sbsg51
+g250
+sbsg180
+F9
+sg181
+(lp266
+S'16835/16835_H1.rs'
+p267
+aS'16835/16835_H2.rs'
+p268
+aS'16835/16835_V.rs'
+p269
+asg45
+Nsg186
+Nsg187
+g1
+(g29
+g3
+NtRp270
+(dp271
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p272
+sg35
+(dp273
+g37
+I2
+sg38
+I2
+sg39
+F0.10000000000000001
+sg40
+F50
+sg41
+S'Acausal Butterworth (Bandpass)'
+p274
+sg43
+S'4-pole/4-pole'
+p275
+ssg45
+(dp276
+g47
+F9.3249606200000006
+sg48
+Nsg49
+F156.39358100000001
+ssg50
+Nsg51
+g208
+sg53
+S'NS'
+p277
+sbsg51
+g208
+sbag1
+(g9
+g3
+NtRp278
+(dp279
+g12
+g1
+(g13
+g3
+NtRp280
+(dp281
+g16
+Nsg17
+F10
+sg18
+Nsg19
+I0
+sg20
+F0
+sg21
+F5
+sg22
+Nsg23
+Nsg24
+Nsbsg25
+S'data/LAquila_Database/records/16837.hdf5'
+p282
+sg27
+Nsg28
+g1
+(g29
+g3
+NtRp283
+(dp284
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p285
+sg35
+(dp286
+g37
+I2
+sg38
+I2
+sg39
+F0.10000000000000001
+sg40
+F50
+sg41
+S'Acausal Butterworth (Bandpass)'
+p287
+sg43
+S'4-pole/4-pole'
+p288
+ssg45
+(dp289
+g47
+F12.457470299999999
+sg48
+Nsg49
+F516.89187600000002
+ssg50
+Nsg51
+S'16837'
+p290
+sg53
+S'UP'
+p291
+sbsg55
+g1
+(g29
+g3
+NtRp292
+(dp293
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p294
+sg35
+(dp295
+g37
+I2
+sg38
+I2
+sg39
+F0.10000000000000001
+sg40
+F50
+sg41
+S'Acausal Butterworth (Bandpass)'
+p296
+sg43
+S'4-pole/4-pole'
+p297
+ssg45
+(dp298
+g47
+F40.385558799999998
+sg48
+Nsg49
+F650.65523599999995
+ssg50
+Nsg51
+g290
+sg53
+S'WE'
+p299
+sbsg64
+g1
+(g65
+g3
+NtRp300
+(dp301
+g68
+S'Digital'
+p302
+sg70
+S'L Aquila - V. Aterno - Centro Valle'
+p303
+sg72
+Nsg51
+S'3614'
+p304
+sg74
+I0
+sg75
+S''
+sg76
+Nsg77
+S''
+sg78
+F692
+sg79
+S''
+sg80
+F42.377222000000003
+sg81
+Nsg82
+Nsg83
+S'CH'
+p305
+sg85
+S'AQV'
+p306
+sg87
+Nsg88
+S'Italy'
+p307
+sg90
+S''
+sg92
+S''
+sg93
+Nsg94
+F13.343888
+sg95
+I00
+sg96
+F473.68599999999998
+sg97
+Nsg98
+Nsbsg99
+(lp308
+S'16837/16837_H1.cor.acc'
+p309
+aS'16837/16837_H2.cor.acc'
+p310
+aS'16837/16837_V.cor.acc'
+p311
+asg104
+g1
+(g105
+g3
+NtRp312
+(dp313
+g85
+S'L Aquila Mainshock'
+p314
+sg88
+S'Italy'
+p315
+sg94
+F13.334
+sg110
+g111
+(S"\x07\xd9\x04\x06\x01 '\x00\x00\x00"
+tRp316
+sg113
+F8.8000000000000007
+sg114
+g1
+(g115
+g3
+NtRp317
+(dp318
+g118
+S'Mw'
+p319
+sg120
+Nsg121
+F6.2999999999999998
+sbsg122
+g1
+(g123
+g3
+NtRp320
+(dp321
+g126
+S'Normal'
+p322
+sg128
+Nsg129
+Nsg130
+g1
+(g131
+g3
+NtRp323
+(dp324
+g134
+(dp325
+g136
+Nsg137
+Nsg138
+Nssg139
+(dp326
+g136
+F127
+sg137
+F-109
+sg138
+F50
+ssbsg141
+g1
+(g142
+g3
+NtRp327
+(dp328
+g145
+Nsg146
+Nsg147
+(dp329
+g149
+Nsg150
+F75.170000000000002
+sg22
+F332.93000000000001
+ssg151
+Nsg152
+(dp330
+g149
+Nsg150
+Nsg22
+Nssg154
+(dp331
+g149
+Nsg150
+F3.2999999999999998
+sg22
+F230.33000000000001
+ssbsg51
+S'20090406_0000075'
+p332
+sg85
+g314
+sbsg157
+(lp333
+g1
+(g115
+g3
+NtRp334
+(dp335
+g118
+S'Ml'
+p336
+sg120
+Nsg121
+F5.7999999999999998
+sbag1
+(g115
+g3
+NtRp337
+(dp338
+g118
+S'Mw'
+p339
+sg120
+Nsg121
+F6.2999999999999998
+sbag1
+(g115
+g3
+NtRp340
+(dp341
+g118
+S''
+sg120
+Nsg121
+Nsbag1
+(g115
+g3
+NtRp342
+(dp343
+g118
+S''
+sg120
+Nsg121
+Nsbag1
+(g115
+g3
+NtRp344
+(dp345
+g118
+S''
+sg120
+Nsg121
+Nsbasg80
+F42.334000000000003
+sg171
+g1
+(g172
+g3
+NtRp346
+(dp347
+g175
+Nsg176
+Nsg113
+Nsg177
+Nsg178
+Nsg179
+Nsg51
+g332
+sbsg51
+g332
+sbsg180
+F9
+sg181
+(lp348
+S'16837/16837_H1.rs'
+p349
+aS'16837/16837_H2.rs'
+p350
+aS'16837/16837_V.rs'
+p351
+asg45
+Nsg186
+Nsg187
+g1
+(g29
+g3
+NtRp352
+(dp353
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p354
+sg35
+(dp355
+g37
+I2
+sg38
+I2
+sg39
+F0.10000000000000001
+sg40
+F50
+sg41
+S'Acausal Butterworth (Bandpass)'
+p356
+sg43
+S'4-pole/4-pole'
+p357
+ssg45
+(dp358
+g47
+F42.707211999999998
+sg48
+Nsg49
+F536.60637800000006
+ssg50
+Nsg51
+g290
+sg53
+S'NS'
+p359
+sbsg51
+g290
+sbag1
+(g9
+g3
+NtRp360
+(dp361
+g12
+g1
+(g13
+g3
+NtRp362
+(dp363
+g16
+Nsg17
+F36
+sg18
+Nsg19
+I0
+sg20
+F25
+sg21
+F35
+sg22
+Nsg23
+Nsg24
+Nsbsg25
+S'data/LAquila_Database/records/16839.hdf5'
+p364
+sg27
+Nsg28
+g1
+(g29
+g3
+NtRp365
+(dp366
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p367
+sg35
+(dp368
+g37
+I2
+sg38
+I2
+sg39
+F0.050000000000000003
+sg40
+F999
+sg41
+S'Acausal Butterworth (Bandpass)'
+p369
+sg43
+S'4-pole/4-pole'
+p370
+ssg45
+(dp371
+g47
+F3.7196003800000002
+sg48
+Nsg49
+F26.123000000000001
+ssg50
+Nsg51
+S'16839'
+p372
+sg53
+S'UP'
+p373
+sbsg55
+g1
+(g29
+g3
+NtRp374
+(dp375
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p376
+sg35
+(dp377
+g37
+I2
+sg38
+I2
+sg39
+F0.050000000000000003
+sg40
+F80
+sg41
+S'Acausal Butterworth (Bandpass)'
+p378
+sg43
+S'4-pole/4-pole'
+p379
+ssg45
+(dp380
+g47
+F10.7884662
+sg48
+Nsg49
+F54.817000000000007
+ssg50
+Nsg51
+g372
+sg53
+S'WE'
+p381
+sbsg64
+g1
+(g65
+g3
+NtRp382
+(dp383
+g68
+S'Digital'
+p384
+sg70
+S'Avezzano'
+p385
+sg72
+Nsg51
+S'3620'
+p386
+sg74
+I0
+sg75
+S''
+sg76
+Nsg77
+S''
+sg78
+F746
+sg79
+S''
+sg80
+F42.027458000000003
+sg81
+Nsg82
+Nsg83
+S'MASW'
+p387
+sg85
+S'AVZ'
+p388
+sg87
+Nsg88
+S'Italy'
+p389
+sg90
+S''
+sg92
+S''
+sg93
+Nsg94
+F13.425929
+sg95
+I00
+sg96
+F199
+sg97
+Nsg98
+Nsbsg99
+(lp390
+S'16839/16839_H1.cor.acc'
+p391
+aS'16839/16839_H2.cor.acc'
+p392
+aS'16839/16839_V.cor.acc'
+p393
+asg104
+g1
+(g105
+g3
+NtRp394
+(dp395
+g85
+S'L Aquila Mainshock'
+p396
+sg88
+S'Italy'
+p397
+sg94
+F13.334
+sg110
+g111
+(S"\x07\xd9\x04\x06\x01 '\x00\x00\x00"
+tRp398
+sg113
+F8.8000000000000007
+sg114
+g1
+(g115
+g3
+NtRp399
+(dp400
+g118
+S'Mw'
+p401
+sg120
+Nsg121
+F6.2999999999999998
+sbsg122
+g1
+(g123
+g3
+NtRp402
+(dp403
+g126
+S'Normal'
+p404
+sg128
+Nsg129
+Nsg130
+g1
+(g131
+g3
+NtRp405
+(dp406
+g134
+(dp407
+g136
+Nsg137
+Nsg138
+Nssg139
+(dp408
+g136
+F127
+sg137
+F-109
+sg138
+F50
+ssbsg141
+g1
+(g142
+g3
+NtRp409
+(dp410
+g145
+Nsg146
+Nsg147
+(dp411
+g149
+Nsg150
+F75.170000000000002
+sg22
+F332.93000000000001
+ssg151
+Nsg152
+(dp412
+g149
+Nsg150
+Nsg22
+Nssg154
+(dp413
+g149
+Nsg150
+F3.2999999999999998
+sg22
+F230.33000000000001
+ssbsg51
+S'20090406_0000075'
+p414
+sg85
+g396
+sbsg157
+(lp415
+g1
+(g115
+g3
+NtRp416
+(dp417
+g118
+S'Ml'
+p418
+sg120
+Nsg121
+F5.7999999999999998
+sbag1
+(g115
+g3
+NtRp419
+(dp420
+g118
+S'Mw'
+p421
+sg120
+Nsg121
+F6.2999999999999998
+sbag1
+(g115
+g3
+NtRp422
+(dp423
+g118
+S''
+sg120
+Nsg121
+Nsbag1
+(g115
+g3
+NtRp424
+(dp425
+g118
+S''
+sg120
+Nsg121
+Nsbag1
+(g115
+g3
+NtRp426
+(dp427
+g118
+S''
+sg120
+Nsg121
+Nsbasg80
+F42.334000000000003
+sg171
+g1
+(g172
+g3
+NtRp428
+(dp429
+g175
+Nsg176
+Nsg113
+Nsg177
+Nsg178
+Nsg179
+Nsg51
+g414
+sbsg51
+g414
+sbsg180
+F19.399999999999999
+sg181
+(lp430
+S'16839/16839_H1.rs'
+p431
+aS'16839/16839_H2.rs'
+p432
+aS'16839/16839_V.rs'
+p433
+asg45
+Nsg186
+Nsg187
+g1
+(g29
+g3
+NtRp434
+(dp435
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p436
+sg35
+(dp437
+g37
+I2
+sg38
+I2
+sg39
+F0.050000000000000003
+sg40
+F65
+sg41
+S'Acausal Butterworth (Bandpass)'
+p438
+sg43
+S'4-pole/4-pole'
+p439
+ssg45
+(dp440
+g47
+F11.2737037
+sg48
+Nsg49
+F67.694000000000003
+ssg50
+Nsg51
+g372
+sg53
+S'NS'
+p441
+sbsg51
+g372
+sbag1
+(g9
+g3
+NtRp442
+(dp443
+g12
+g1
+(g13
+g3
+NtRp444
+(dp445
+g16
+Nsg17
+F200
+sg18
+Nsg19
+I0
+sg20
+F194
+sg21
+F200
+sg22
+Nsg23
+Nsg24
+Nsbsg25
+S'data/LAquila_Database/records/16840.hdf5'
+p446
+sg27
+Nsg28
+g1
+(g29
+g3
+NtRp447
+(dp448
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p449
+sg35
+(dp450
+g37
+I2
+sg38
+I2
+sg39
+F0.10000000000000001
+sg40
+F15
+sg41
+S'Acausal Butterworth (Bandpass)'
+p451
+sg43
+S'4-pole/4-pole'
+p452
+ssg45
+(dp453
+g47
+F0.26337845200000004
+sg48
+Nsg49
+F0.75513000000000008
+ssg50
+Nsg51
+S'16840'
+p454
+sg53
+S'UP'
+p455
+sbsg55
+g1
+(g29
+g3
+NtRp456
+(dp457
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p458
+sg35
+(dp459
+g37
+I2
+sg38
+I2
+sg39
+F0.10000000000000001
+sg40
+F13
+sg41
+S'Acausal Butterworth (Bandpass)'
+p460
+sg43
+S'4-pole/4-pole'
+p461
+ssg45
+(dp462
+g47
+F0.25814520699999999
+sg48
+Nsg49
+F0.61305999999999994
+ssg50
+Nsg51
+g454
+sg53
+S'WE'
+p463
+sbsg64
+g1
+(g65
+g3
+NtRp464
+(dp465
+g68
+S'Digital'
+p466
+sg70
+S'Bibbiena (Nuova)'
+p467
+sg72
+Nsg51
+S'3623'
+p468
+sg74
+I0
+sg75
+S''
+sg76
+Nsg77
+S''
+sg78
+F471
+sg79
+S''
+sg80
+F43.747646000000003
+sg81
+Nsg82
+Nsg83
+S'DH'
+p469
+sg85
+S'BBN'
+p470
+sg87
+Nsg88
+S'Italy'
+p471
+sg90
+S''
+sg92
+S''
+sg93
+Nsg94
+F11.821427999999999
+sg95
+I00
+sg96
+F296.12299999999999
+sg97
+Nsg98
+Nsbsg99
+(lp472
+S'16840/16840_H1.cor.acc'
+p473
+aS'16840/16840_H2.cor.acc'
+p474
+aS'16840/16840_V.cor.acc'
+p475
+asg104
+g1
+(g105
+g3
+NtRp476
+(dp477
+g85
+S'L Aquila Mainshock'
+p478
+sg88
+S'Italy'
+p479
+sg94
+F13.334
+sg110
+g111
+(S"\x07\xd9\x04\x06\x01 '\x00\x00\x00"
+tRp480
+sg113
+F8.8000000000000007
+sg114
+g1
+(g115
+g3
+NtRp481
+(dp482
+g118
+S'Mw'
+p483
+sg120
+Nsg121
+F6.2999999999999998
+sbsg122
+g1
+(g123
+g3
+NtRp484
+(dp485
+g126
+S'Normal'
+p486
+sg128
+Nsg129
+Nsg130
+g1
+(g131
+g3
+NtRp487
+(dp488
+g134
+(dp489
+g136
+Nsg137
+Nsg138
+Nssg139
+(dp490
+g136
+F127
+sg137
+F-109
+sg138
+F50
+ssbsg141
+g1
+(g142
+g3
+NtRp491
+(dp492
+g145
+Nsg146
+Nsg147
+(dp493
+g149
+Nsg150
+F75.170000000000002
+sg22
+F332.93000000000001
+ssg151
+Nsg152
+(dp494
+g149
+Nsg150
+Nsg22
+Nssg154
+(dp495
+g149
+Nsg150
+F3.2999999999999998
+sg22
+F230.33000000000001
+ssbsg51
+S'20090406_0000075'
+p496
+sg85
+g478
+sbsg157
+(lp497
+g1
+(g115
+g3
+NtRp498
+(dp499
+g118
+S'Ml'
+p500
+sg120
+Nsg121
+F5.7999999999999998
+sbag1
+(g115
+g3
+NtRp501
+(dp502
+g118
+S'Mw'
+p503
+sg120
+Nsg121
+F6.2999999999999998
+sbag1
+(g115
+g3
+NtRp504
+(dp505
+g118
+S''
+sg120
+Nsg121
+Nsbag1
+(g115
+g3
+NtRp506
+(dp507
+g118
+S''
+sg120
+Nsg121
+Nsbag1
+(g115
+g3
+NtRp508
+(dp509
+g118
+S''
+sg120
+Nsg121
+Nsbasg80
+F42.334000000000003
+sg171
+g1
+(g172
+g3
+NtRp510
+(dp511
+g175
+Nsg176
+Nsg113
+Nsg177
+Nsg178
+Nsg179
+Nsg51
+g496
+sbsg51
+g496
+sbsg180
+F9.6999999999999993
+sg181
+(lp512
+S'16840/16840_H1.rs'
+p513
+aS'16840/16840_H2.rs'
+p514
+aS'16840/16840_V.rs'
+p515
+asg45
+Nsg186
+Nsg187
+g1
+(g29
+g3
+NtRp516
+(dp517
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p518
+sg35
+(dp519
+g37
+I2
+sg38
+I2
+sg39
+F0.10000000000000001
+sg40
+F18
+sg41
+S'Acausal Butterworth (Bandpass)'
+p520
+sg43
+S'4-pole/4-pole'
+p521
+ssg45
+(dp522
+g47
+F0.24662989500000002
+sg48
+Nsg49
+F1.0022
+ssg50
+Nsg51
+g454
+sg53
+S'NS'
+p523
+sbsg51
+g454
+sbag1
+(g9
+g3
+NtRp524
+(dp525
+g12
+g1
+(g13
+g3
+NtRp526
+(dp527
+g16
+Nsg17
+F134
+sg18
+Nsg19
+I0
+sg20
+F121
+sg21
+F133
+sg22
+Nsg23
+Nsg24
+Nsbsg25
+S'data/LAquila_Database/records/16843.hdf5'
+p528
+sg27
+Nsg28
+g1
+(g29
+g3
+NtRp529
+(dp530
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p531
+sg35
+(dp532
+g37
+I2
+sg38
+I2
+sg39
+F0.080000000000000002
+sg40
+F25
+sg41
+S'Acausal Butterworth (Bandpass)'
+p533
+sg43
+S'4-pole/4-pole'
+p534
+ssg45
+(dp535
+g47
+F1.43985367
+sg48
+Nsg49
+F5.1892000000000005
+ssg50
+Nsg51
+S'16843'
+p536
+sg53
+S'UP'
+p537
+sbsg55
+g1
+(g29
+g3
+NtRp538
+(dp539
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p540
+sg35
+(dp541
+g37
+I2
+sg38
+I2
+sg39
+F0.080000000000000002
+sg40
+F20
+sg41
+S'Acausal Butterworth (Bandpass)'
+p542
+sg43
+S'4-pole/4-pole'
+p543
+ssg45
+(dp544
+g47
+F3.2372953799999999
+sg48
+Nsg49
+F12.913
+ssg50
+Nsg51
+g536
+sg53
+S'WE'
+p545
+sbsg64
+g1
+(g65
+g3
+NtRp546
+(dp547
+g68
+S'Digital'
+p548
+sg70
+S'Bojano (Nuova)'
+p549
+sg72
+Nsg51
+S'3629'
+p550
+sg74
+I0
+sg75
+S''
+sg76
+Nsg77
+S''
+sg78
+F537
+sg79
+S''
+sg80
+F41.484451
+sg81
+Nsg82
+Nsg83
+S'DH'
+p551
+sg85
+S'BOJ'
+p552
+sg87
+Nsg88
+S'Italy'
+p553
+sg90
+S''
+sg92
+S''
+sg93
+Nsg94
+F14.472103000000001
+sg95
+I00
+sg96
+F305.85599999999999
+sg97
+Nsg98
+Nsbsg99
+(lp554
+S'16843/16843_H1.cor.acc'
+p555
+aS'16843/16843_H2.cor.acc'
+p556
+aS'16843/16843_V.cor.acc'
+p557
+asg104
+g1
+(g105
+g3
+NtRp558
+(dp559
+g85
+S'L Aquila Mainshock'
+p560
+sg88
+S'Italy'
+p561
+sg94
+F13.334
+sg110
+g111
+(S"\x07\xd9\x04\x06\x01 '\x00\x00\x00"
+tRp562
+sg113
+F8.8000000000000007
+sg114
+g1
+(g115
+g3
+NtRp563
+(dp564
+g118
+S'Mw'
+p565
+sg120
+Nsg121
+F6.2999999999999998
+sbsg122
+g1
+(g123
+g3
+NtRp566
+(dp567
+g126
+S'Normal'
+p568
+sg128
+Nsg129
+Nsg130
+g1
+(g131
+g3
+NtRp569
+(dp570
+g134
+(dp571
+g136
+Nsg137
+Nsg138
+Nssg139
+(dp572
+g136
+F127
+sg137
+F-109
+sg138
+F50
+ssbsg141
+g1
+(g142
+g3
+NtRp573
+(dp574
+g145
+Nsg146
+Nsg147
+(dp575
+g149
+Nsg150
+F75.170000000000002
+sg22
+F332.93000000000001
+ssg151
+Nsg152
+(dp576
+g149
+Nsg150
+Nsg22
+Nssg154
+(dp577
+g149
+Nsg150
+F3.2999999999999998
+sg22
+F230.33000000000001
+ssbsg51
+S'20090406_0000075'
+p578
+sg85
+g560
+sbsg157
+(lp579
+g1
+(g115
+g3
+NtRp580
+(dp581
+g118
+S'Ml'
+p582
+sg120
+Nsg121
+F5.7999999999999998
+sbag1
+(g115
+g3
+NtRp583
+(dp584
+g118
+S'Mw'
+p585
+sg120
+Nsg121
+F6.2999999999999998
+sbag1
+(g115
+g3
+NtRp586
+(dp587
+g118
+S''
+sg120
+Nsg121
+Nsbag1
+(g115
+g3
+NtRp588
+(dp589
+g118
+S''
+sg120
+Nsg121
+Nsbag1
+(g115
+g3
+NtRp590
+(dp591
+g118
+S''
+sg120
+Nsg121
+Nsbasg80
+F42.334000000000003
+sg171
+g1
+(g172
+g3
+NtRp592
+(dp593
+g175
+Nsg176
+Nsg113
+Nsg177
+Nsg178
+Nsg179
+Nsg51
+g578
+sbsg51
+g578
+sbsg180
+F12.125
+sg181
+(lp594
+S'16843/16843_H1.rs'
+p595
+aS'16843/16843_H2.rs'
+p596
+aS'16843/16843_V.rs'
+p597
+asg45
+Nsg186
+Nsg187
+g1
+(g29
+g3
+NtRp598
+(dp599
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p600
+sg35
+(dp601
+g37
+I2
+sg38
+I2
+sg39
+F0.080000000000000002
+sg40
+F20
+sg41
+S'Acausal Butterworth (Bandpass)'
+p602
+sg43
+S'4-pole/4-pole'
+p603
+ssg45
+(dp604
+g47
+F3.3346077199999997
+sg48
+Nsg49
+F14.163999999999998
+ssg50
+Nsg51
+g536
+sg53
+S'NS'
+p605
+sbsg51
+g536
+sbag1
+(g9
+g3
+NtRp606
+(dp607
+g12
+g1
+(g13
+g3
+NtRp608
+(dp609
+g16
+Nsg17
+F103
+sg18
+Nsg19
+I0
+sg20
+F91
+sg21
+F103
+sg22
+Nsg23
+Nsg24
+Nsbsg25
+S'data/LAquila_Database/records/16853.hdf5'
+p610
+sg27
+Nsg28
+g1
+(g29
+g3
+NtRp611
+(dp612
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p613
+sg35
+(dp614
+g37
+I2
+sg38
+I2
+sg39
+F0.070000000000000007
+sg40
+F25
+sg41
+S'Acausal Butterworth (Bandpass)'
+p615
+sg43
+S'4-pole/4-pole'
+p616
+ssg45
+(dp617
+g47
+F0.77229337899999995
+sg48
+Nsg49
+F2.8532999999999999
+ssg50
+Nsg51
+S'16853'
+p618
+sg53
+S'UP'
+p619
+sbsg55
+g1
+(g29
+g3
+NtRp620
+(dp621
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p622
+sg35
+(dp623
+g37
+I2
+sg38
+I2
+sg39
+F0.070000000000000007
+sg40
+F30
+sg41
+S'Acausal Butterworth (Bandpass)'
+p624
+sg43
+S'4-pole/4-pole'
+p625
+ssg45
+(dp626
+g47
+F1.63535907
+sg48
+Nsg49
+F8.3271999999999995
+ssg50
+Nsg51
+g618
+sg53
+S'WE'
+p627
+sbsg64
+g1
+(g65
+g3
+NtRp628
+(dp629
+g68
+S'Digital'
+p630
+sg70
+S'Cassino'
+p631
+sg72
+Nsg51
+S'3660'
+p632
+sg74
+I0
+sg75
+S''
+sg76
+Nsg77
+S''
+sg78
+F174
+sg79
+S''
+sg80
+F41.485790000000001
+sg81
+Nsg82
+Nsg83
+S'MASW'
+p633
+sg85
+S'CSS'
+p634
+sg87
+Nsg88
+S'Italy'
+p635
+sg90
+S''
+sg92
+S''
+sg93
+Nsg94
+F13.823090000000001
+sg95
+I00
+sg96
+F630
+sg97
+Nsg98
+Nsbsg99
+(lp636
+S'16853/16853_H1.cor.acc'
+p637
+aS'16853/16853_H2.cor.acc'
+p638
+aS'16853/16853_V.cor.acc'
+p639
+asg104
+g1
+(g105
+g3
+NtRp640
+(dp641
+g85
+S'L Aquila Mainshock'
+p642
+sg88
+S'Italy'
+p643
+sg94
+F13.334
+sg110
+g111
+(S"\x07\xd9\x04\x06\x01 '\x00\x00\x00"
+tRp644
+sg113
+F8.8000000000000007
+sg114
+g1
+(g115
+g3
+NtRp645
+(dp646
+g118
+S'Mw'
+p647
+sg120
+Nsg121
+F6.2999999999999998
+sbsg122
+g1
+(g123
+g3
+NtRp648
+(dp649
+g126
+S'Normal'
+p650
+sg128
+Nsg129
+Nsg130
+g1
+(g131
+g3
+NtRp651
+(dp652
+g134
+(dp653
+g136
+Nsg137
+Nsg138
+Nssg139
+(dp654
+g136
+F127
+sg137
+F-109
+sg138
+F50
+ssbsg141
+g1
+(g142
+g3
+NtRp655
+(dp656
+g145
+Nsg146
+Nsg147
+(dp657
+g149
+Nsg150
+F75.170000000000002
+sg22
+F332.93000000000001
+ssg151
+Nsg152
+(dp658
+g149
+Nsg150
+Nsg22
+Nssg154
+(dp659
+g149
+Nsg150
+F3.2999999999999998
+sg22
+F230.33000000000001
+ssbsg51
+S'20090406_0000075'
+p660
+sg85
+g642
+sbsg157
+(lp661
+g1
+(g115
+g3
+NtRp662
+(dp663
+g118
+S'Ml'
+p664
+sg120
+Nsg121
+F5.7999999999999998
+sbag1
+(g115
+g3
+NtRp665
+(dp666
+g118
+S'Mw'
+p667
+sg120
+Nsg121
+F6.2999999999999998
+sbag1
+(g115
+g3
+NtRp668
+(dp669
+g118
+S''
+sg120
+Nsg121
+Nsbag1
+(g115
+g3
+NtRp670
+(dp671
+g118
+S''
+sg120
+Nsg121
+Nsbag1
+(g115
+g3
+NtRp672
+(dp673
+g118
+S''
+sg120
+Nsg121
+Nsbasg80
+F42.334000000000003
+sg171
+g1
+(g172
+g3
+NtRp674
+(dp675
+g175
+Nsg176
+Nsg113
+Nsg177
+Nsg178
+Nsg179
+Nsg51
+g660
+sbsg51
+g660
+sbsg180
+F12.856999999999999
+sg181
+(lp676
+S'16853/16853_H1.rs'
+p677
+aS'16853/16853_H2.rs'
+p678
+aS'16853/16853_V.rs'
+p679
+asg45
+Nsg186
+Nsg187
+g1
+(g29
+g3
+NtRp680
+(dp681
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p682
+sg35
+(dp683
+g37
+I2
+sg38
+I2
+sg39
+F0.070000000000000007
+sg40
+F35
+sg41
+S'Acausal Butterworth (Bandpass)'
+p684
+sg43
+S'4-pole/4-pole'
+p685
+ssg45
+(dp686
+g47
+F1.40575374
+sg48
+Nsg49
+F9.4423000000000012
+ssg50
+Nsg51
+g618
+sg53
+S'NS'
+p687
+sbsg51
+g618
+sbag1
+(g9
+g3
+NtRp688
+(dp689
+g12
+g1
+(g13
+g3
+NtRp690
+(dp691
+g16
+Nsg17
+F187
+sg18
+Nsg19
+I0
+sg20
+F179
+sg21
+F187
+sg22
+Nsg23
+Nsg24
+Nsbsg25
+S'data/LAquila_Database/records/16854.hdf5'
+p692
+sg27
+Nsg28
+g1
+(g29
+g3
+NtRp693
+(dp694
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p695
+sg35
+(dp696
+g37
+I2
+sg38
+I2
+sg39
+F0.050000000000000003
+sg40
+F30
+sg41
+S'Acausal Butterworth (Bandpass)'
+p697
+sg43
+S'4-pole/4-pole'
+p698
+ssg45
+(dp699
+g47
+F0.31377620499999997
+sg48
+Nsg49
+F1.3005
+ssg50
+Nsg51
+S'16854'
+p700
+sg53
+S'UP'
+p701
+sbsg55
+g1
+(g29
+g3
+NtRp702
+(dp703
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p704
+sg35
+(dp705
+g37
+I2
+sg38
+I2
+sg39
+F0.050000000000000003
+sg40
+F20
+sg41
+S'Acausal Butterworth (Bandpass)'
+p706
+sg43
+S'4-pole/4-pole'
+p707
+ssg45
+(dp708
+g47
+F0.73125103800000002
+sg48
+Nsg49
+F4.3606999999999996
+ssg50
+Nsg51
+g700
+sg53
+S'WE'
+p709
+sbsg64
+g1
+(g65
+g3
+NtRp710
+(dp711
+g68
+S'Digital'
+p712
+sg70
+S'Cattolica'
+p713
+sg72
+Nsg51
+S'3661'
+p714
+sg74
+I0
+sg75
+S''
+sg76
+Nsg77
+S''
+sg78
+F12
+sg79
+S''
+sg80
+F43.955105000000003
+sg81
+Nsg82
+Nsg83
+S'ESAC-FK'
+p715
+sg85
+S'CTL'
+p716
+sg87
+Nsg88
+S'Italy'
+p717
+sg90
+S''
+sg92
+S''
+sg93
+Nsg94
+F12.735825999999999
+sg95
+I00
+sg96
+F207.28899999999999
+sg97
+Nsg98
+Nsbsg99
+(lp718
+S'16854/16854_H1.cor.acc'
+p719
+aS'16854/16854_H2.cor.acc'
+p720
+aS'16854/16854_V.cor.acc'
+p721
+asg104
+g1
+(g105
+g3
+NtRp722
+(dp723
+g85
+S'L Aquila Mainshock'
+p724
+sg88
+S'Italy'
+p725
+sg94
+F13.334
+sg110
+g111
+(S"\x07\xd9\x04\x06\x01 '\x00\x00\x00"
+tRp726
+sg113
+F8.8000000000000007
+sg114
+g1
+(g115
+g3
+NtRp727
+(dp728
+g118
+S'Mw'
+p729
+sg120
+Nsg121
+F6.2999999999999998
+sbsg122
+g1
+(g123
+g3
+NtRp730
+(dp731
+g126
+S'Normal'
+p732
+sg128
+Nsg129
+Nsg130
+g1
+(g131
+g3
+NtRp733
+(dp734
+g134
+(dp735
+g136
+Nsg137
+Nsg138
+Nssg139
+(dp736
+g136
+F127
+sg137
+F-109
+sg138
+F50
+ssbsg141
+g1
+(g142
+g3
+NtRp737
+(dp738
+g145
+Nsg146
+Nsg147
+(dp739
+g149
+Nsg150
+F75.170000000000002
+sg22
+F332.93000000000001
+ssg151
+Nsg152
+(dp740
+g149
+Nsg150
+Nsg22
+Nssg154
+(dp741
+g149
+Nsg150
+F3.2999999999999998
+sg22
+F230.33000000000001
+ssbsg51
+S'20090406_0000075'
+p742
+sg85
+g724
+sbsg157
+(lp743
+g1
+(g115
+g3
+NtRp744
+(dp745
+g118
+S'Ml'
+p746
+sg120
+Nsg121
+F5.7999999999999998
+sbag1
+(g115
+g3
+NtRp747
+(dp748
+g118
+S'Mw'
+p749
+sg120
+Nsg121
+F6.2999999999999998
+sbag1
+(g115
+g3
+NtRp750
+(dp751
+g118
+S''
+sg120
+Nsg121
+Nsbag1
+(g115
+g3
+NtRp752
+(dp753
+g118
+S''
+sg120
+Nsg121
+Nsbag1
+(g115
+g3
+NtRp754
+(dp755
+g118
+S''
+sg120
+Nsg121
+Nsbasg80
+F42.334000000000003
+sg171
+g1
+(g172
+g3
+NtRp756
+(dp757
+g175
+Nsg176
+Nsg113
+Nsg177
+Nsg178
+Nsg179
+Nsg51
+g742
+sbsg51
+g742
+sbsg180
+F19.399999999999999
+sg181
+(lp758
+S'16854/16854_H1.rs'
+p759
+aS'16854/16854_H2.rs'
+p760
+aS'16854/16854_V.rs'
+p761
+asg45
+Nsg186
+Nsg187
+g1
+(g29
+g3
+NtRp762
+(dp763
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p764
+sg35
+(dp765
+g37
+I2
+sg38
+I2
+sg39
+F0.050000000000000003
+sg40
+F20
+sg41
+S'Acausal Butterworth (Bandpass)'
+p766
+sg43
+S'4-pole/4-pole'
+p767
+ssg45
+(dp768
+g47
+F0.73525280400000004
+sg48
+Nsg49
+F3.3887
+ssg50
+Nsg51
+g700
+sg53
+S'NS'
+p769
+sbsg51
+g700
+sbag1
+(g9
+g3
+NtRp770
+(dp771
+g12
+g1
+(g13
+g3
+NtRp772
+(dp773
+g16
+Nsg17
+F232
+sg18
+Nsg19
+I0
+sg20
+F226
+sg21
+F232
+sg22
+Nsg23
+Nsg24
+Nsbsg25
+S'data/LAquila_Database/records/16856.hdf5'
+p774
+sg27
+Nsg28
+g1
+(g29
+g3
+NtRp775
+(dp776
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p777
+sg35
+(dp778
+g37
+I2
+sg38
+I2
+sg39
+F0.10000000000000001
+sg40
+F30
+sg41
+S'Acausal Butterworth (Bandpass)'
+p779
+sg43
+S'4-pole/4-pole'
+p780
+ssg45
+(dp781
+g47
+F0.29811710400000002
+sg48
+Nsg49
+F0.73833031300000007
+ssg50
+Nsg51
+S'16856'
+p782
+sg53
+S'UP'
+p783
+sbsg55
+g1
+(g29
+g3
+NtRp784
+(dp785
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p786
+sg35
+(dp787
+g37
+I2
+sg38
+I2
+sg39
+F0.10000000000000001
+sg40
+F30
+sg41
+S'Acausal Butterworth (Bandpass)'
+p788
+sg43
+S'4-pole/4-pole'
+p789
+ssg45
+(dp790
+g47
+F0.59057477899999999
+sg48
+Nsg49
+F1.53892074
+ssg50
+Nsg51
+g782
+sg53
+S'WE'
+p791
+sbsg64
+g1
+(g65
+g3
+NtRp792
+(dp793
+g68
+S'Digital'
+p794
+sg70
+S'Forli (Nuova)'
+p795
+sg72
+Nsg51
+S'3666'
+p796
+sg74
+I0
+sg75
+S''
+sg76
+Nsg77
+S''
+sg78
+F77
+sg79
+S''
+sg80
+F44.199409000000003
+sg81
+Nsg82
+Nsg83
+S'DH'
+p797
+sg85
+S'FOR'
+p798
+sg87
+Nsg88
+S'Italy'
+p799
+sg90
+S''
+sg92
+S''
+sg93
+Nsg94
+F12.041916000000001
+sg95
+I00
+sg96
+F295.93700000000001
+sg97
+Nsg98
+Nsbsg99
+(lp800
+S'16856/16856_H1.cor.acc'
+p801
+aS'16856/16856_H2.cor.acc'
+p802
+aS'16856/16856_V.cor.acc'
+p803
+asg104
+g1
+(g105
+g3
+NtRp804
+(dp805
+g85
+S'L Aquila Mainshock'
+p806
+sg88
+S'Italy'
+p807
+sg94
+F13.334
+sg110
+g111
+(S"\x07\xd9\x04\x06\x01 '\x00\x00\x00"
+tRp808
+sg113
+F8.8000000000000007
+sg114
+g1
+(g115
+g3
+NtRp809
+(dp810
+g118
+S'Mw'
+p811
+sg120
+Nsg121
+F6.2999999999999998
+sbsg122
+g1
+(g123
+g3
+NtRp812
+(dp813
+g126
+S'Normal'
+p814
+sg128
+Nsg129
+Nsg130
+g1
+(g131
+g3
+NtRp815
+(dp816
+g134
+(dp817
+g136
+Nsg137
+Nsg138
+Nssg139
+(dp818
+g136
+F127
+sg137
+F-109
+sg138
+F50
+ssbsg141
+g1
+(g142
+g3
+NtRp819
+(dp820
+g145
+Nsg146
+Nsg147
+(dp821
+g149
+Nsg150
+F75.170000000000002
+sg22
+F332.93000000000001
+ssg151
+Nsg152
+(dp822
+g149
+Nsg150
+Nsg22
+Nssg154
+(dp823
+g149
+Nsg150
+F3.2999999999999998
+sg22
+F230.33000000000001
+ssbsg51
+S'20090406_0000075'
+p824
+sg85
+g806
+sbsg157
+(lp825
+g1
+(g115
+g3
+NtRp826
+(dp827
+g118
+S'Ml'
+p828
+sg120
+Nsg121
+F5.7999999999999998
+sbag1
+(g115
+g3
+NtRp829
+(dp830
+g118
+S'Mw'
+p831
+sg120
+Nsg121
+F6.2999999999999998
+sbag1
+(g115
+g3
+NtRp832
+(dp833
+g118
+S''
+sg120
+Nsg121
+Nsbag1
+(g115
+g3
+NtRp834
+(dp835
+g118
+S''
+sg120
+Nsg121
+Nsbag1
+(g115
+g3
+NtRp836
+(dp837
+g118
+S''
+sg120
+Nsg121
+Nsbasg80
+F42.334000000000003
+sg171
+g1
+(g172
+g3
+NtRp838
+(dp839
+g175
+Nsg176
+Nsg113
+Nsg177
+Nsg178
+Nsg179
+Nsg51
+g824
+sbsg51
+g824
+sbsg180
+F9.6999999999999993
+sg181
+(lp840
+S'16856/16856_H1.rs'
+p841
+aS'16856/16856_H2.rs'
+p842
+aS'16856/16856_V.rs'
+p843
+asg45
+Nsg186
+Nsg187
+g1
+(g29
+g3
+NtRp844
+(dp845
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p846
+sg35
+(dp847
+g37
+I2
+sg38
+I2
+sg39
+F0.10000000000000001
+sg40
+F30
+sg41
+S'Acausal Butterworth (Bandpass)'
+p848
+sg43
+S'4-pole/4-pole'
+p849
+ssg45
+(dp850
+g47
+F0.661886584
+sg48
+Nsg49
+F1.5980752800000002
+ssg50
+Nsg51
+g782
+sg53
+S'NS'
+p851
+sbsg51
+g782
+sbag1
+(g9
+g3
+NtRp852
+(dp853
+g12
+g1
+(g13
+g3
+NtRp854
+(dp855
+g16
+Nsg17
+F20
+sg18
+Nsg19
+I0
+sg20
+F9
+sg21
+F18
+sg22
+Nsg23
+Nsg24
+Nsbsg25
+S'data/LAquila_Database/records/16858.hdf5'
+p856
+sg27
+Nsg28
+g1
+(g29
+g3
+NtRp857
+(dp858
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p859
+sg35
+(dp860
+g37
+I2
+sg38
+I2
+sg39
+F0.10000000000000001
+sg40
+F50
+sg41
+S'Acausal Butterworth (Bandpass)'
+p861
+sg43
+S'4-pole/4-pole'
+p862
+ssg45
+(dp863
+g47
+F4.44936825
+sg48
+Nsg49
+F107.00062
+ssg50
+Nsg51
+S'16858'
+p864
+sg53
+S'UP'
+p865
+sbsg55
+g1
+(g29
+g3
+NtRp866
+(dp867
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p868
+sg35
+(dp869
+g37
+I2
+sg38
+I2
+sg39
+F0.10000000000000001
+sg40
+F50
+sg41
+S'Acausal Butterworth (Bandpass)'
+p870
+sg43
+S'4-pole/4-pole'
+p871
+ssg45
+(dp872
+g47
+F9.7576244800000005
+sg48
+Nsg49
+F148.52283500000001
+ssg50
+Nsg51
+g864
+sg53
+S'WE'
+p873
+sbsg64
+g1
+(g65
+g3
+NtRp874
+(dp875
+g68
+S'Digital'
+p876
+sg70
+S'Gran Sasso (Lab. Infn Assergi)'
+p877
+sg72
+Nsg51
+S'3679'
+p878
+sg74
+I0
+sg75
+S''
+sg76
+Nsg77
+S''
+sg78
+F1062
+sg79
+S''
+sg80
+F42.420689000000003
+sg81
+Nsg82
+Nsg83
+S'MASW'
+p879
+sg85
+S'GSA'
+p880
+sg87
+Nsg88
+S'Italy'
+p881
+sg90
+S''
+sg92
+S''
+sg93
+Nsg94
+F13.519361999999999
+sg95
+I00
+sg96
+F488
+sg97
+Nsg98
+Nsbsg99
+(lp882
+S'16858/16858_H1.cor.acc'
+p883
+aS'16858/16858_H2.cor.acc'
+p884
+aS'16858/16858_V.cor.acc'
+p885
+asg104
+g1
+(g105
+g3
+NtRp886
+(dp887
+g85
+S'L Aquila Mainshock'
+p888
+sg88
+S'Italy'
+p889
+sg94
+F13.334
+sg110
+g111
+(S"\x07\xd9\x04\x06\x01 '\x00\x00\x00"
+tRp890
+sg113
+F8.8000000000000007
+sg114
+g1
+(g115
+g3
+NtRp891
+(dp892
+g118
+S'Mw'
+p893
+sg120
+Nsg121
+F6.2999999999999998
+sbsg122
+g1
+(g123
+g3
+NtRp894
+(dp895
+g126
+S'Normal'
+p896
+sg128
+Nsg129
+Nsg130
+g1
+(g131
+g3
+NtRp897
+(dp898
+g134
+(dp899
+g136
+Nsg137
+Nsg138
+Nssg139
+(dp900
+g136
+F127
+sg137
+F-109
+sg138
+F50
+ssbsg141
+g1
+(g142
+g3
+NtRp901
+(dp902
+g145
+Nsg146
+Nsg147
+(dp903
+g149
+Nsg150
+F75.170000000000002
+sg22
+F332.93000000000001
+ssg151
+Nsg152
+(dp904
+g149
+Nsg150
+Nsg22
+Nssg154
+(dp905
+g149
+Nsg150
+F3.2999999999999998
+sg22
+F230.33000000000001
+ssbsg51
+S'20090406_0000075'
+p906
+sg85
+g888
+sbsg157
+(lp907
+g1
+(g115
+g3
+NtRp908
+(dp909
+g118
+S'Ml'
+p910
+sg120
+Nsg121
+F5.7999999999999998
+sbag1
+(g115
+g3
+NtRp911
+(dp912
+g118
+S'Mw'
+p913
+sg120
+Nsg121
+F6.2999999999999998
+sbag1
+(g115
+g3
+NtRp914
+(dp915
+g118
+S''
+sg120
+Nsg121
+Nsbag1
+(g115
+g3
+NtRp916
+(dp917
+g118
+S''
+sg120
+Nsg121
+Nsbag1
+(g115
+g3
+NtRp918
+(dp919
+g118
+S''
+sg120
+Nsg121
+Nsbasg80
+F42.334000000000003
+sg171
+g1
+(g172
+g3
+NtRp920
+(dp921
+g175
+Nsg176
+Nsg113
+Nsg177
+Nsg178
+Nsg179
+Nsg51
+g906
+sbsg51
+g906
+sbsg180
+F9
+sg181
+(lp922
+S'16858/16858_H1.rs'
+p923
+aS'16858/16858_H2.rs'
+p924
+aS'16858/16858_V.rs'
+p925
+asg45
+Nsg186
+Nsg187
+g1
+(g29
+g3
+NtRp926
+(dp927
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p928
+sg35
+(dp929
+g37
+I2
+sg38
+I2
+sg39
+F0.10000000000000001
+sg40
+F50
+sg41
+S'Acausal Butterworth (Bandpass)'
+p930
+sg43
+S'4-pole/4-pole'
+p931
+ssg45
+(dp932
+g47
+F7.4663310600000008
+sg48
+Nsg49
+F142.452934
+ssg50
+Nsg51
+g864
+sg53
+S'NS'
+p933
+sbsg51
+g864
+sbag1
+(g9
+g3
+NtRp934
+(dp935
+g12
+g1
+(g13
+g3
+NtRp936
+(dp937
+g16
+Nsg17
+F168
+sg18
+Nsg19
+I0
+sg20
+F168
+sg21
+F168
+sg22
+Nsg23
+Nsg24
+Nsbsg25
+S'data/LAquila_Database/records/16878.hdf5'
+p938
+sg27
+Nsg28
+g1
+(g29
+g3
+NtRp939
+(dp940
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p941
+sg35
+(dp942
+g37
+I2
+sg38
+I2
+sg39
+F0.070000000000000007
+sg40
+F25
+sg41
+S'Acausal Butterworth (Bandpass)'
+p943
+sg43
+S'4-pole/4-pole'
+p944
+ssg45
+(dp945
+g47
+F0.51855132000000004
+sg48
+Nsg49
+F1.8541999999999998
+ssg50
+Nsg51
+S'16878'
+p946
+sg53
+S'UP'
+p947
+sbsg55
+g1
+(g29
+g3
+NtRp948
+(dp949
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p950
+sg35
+(dp951
+g37
+I2
+sg38
+I2
+sg39
+F0.070000000000000007
+sg40
+F20
+sg41
+S'Acausal Butterworth (Bandpass)'
+p952
+sg43
+S'4-pole/4-pole'
+p953
+ssg45
+(dp954
+g47
+F0.74274181299999997
+sg48
+Nsg49
+F3.8241999999999998
+ssg50
+Nsg51
+g946
+sg53
+S'WE'
+p955
+sbsg64
+g1
+(g65
+g3
+NtRp956
+(dp957
+g68
+S'Digital'
+p958
+sg70
+S'Sansepolcro'
+p959
+sg72
+Nsg51
+S'3769'
+p960
+sg74
+I0
+sg75
+S''
+sg76
+Nsg77
+S''
+sg78
+F371
+sg79
+S''
+sg80
+F43.567390000000003
+sg81
+Nsg82
+Nsg83
+S'DH'
+p961
+sg85
+S'SNS'
+p962
+sg87
+Nsg88
+S'Italy'
+p963
+sg90
+S''
+sg92
+S''
+sg93
+Nsg94
+F12.143375000000001
+sg95
+I00
+sg96
+F322.62900000000002
+sg97
+Nsg98
+Nsbsg99
+(lp964
+S'16878/16878_H1.cor.acc'
+p965
+aS'16878/16878_H2.cor.acc'
+p966
+aS'16878/16878_V.cor.acc'
+p967
+asg104
+g1
+(g105
+g3
+NtRp968
+(dp969
+g85
+S'L Aquila Mainshock'
+p970
+sg88
+S'Italy'
+p971
+sg94
+F13.334
+sg110
+g111
+(S"\x07\xd9\x04\x06\x01 '\x00\x00\x00"
+tRp972
+sg113
+F8.8000000000000007
+sg114
+g1
+(g115
+g3
+NtRp973
+(dp974
+g118
+S'Mw'
+p975
+sg120
+Nsg121
+F6.2999999999999998
+sbsg122
+g1
+(g123
+g3
+NtRp976
+(dp977
+g126
+S'Normal'
+p978
+sg128
+Nsg129
+Nsg130
+g1
+(g131
+g3
+NtRp979
+(dp980
+g134
+(dp981
+g136
+Nsg137
+Nsg138
+Nssg139
+(dp982
+g136
+F127
+sg137
+F-109
+sg138
+F50
+ssbsg141
+g1
+(g142
+g3
+NtRp983
+(dp984
+g145
+Nsg146
+Nsg147
+(dp985
+g149
+Nsg150
+F75.170000000000002
+sg22
+F332.93000000000001
+ssg151
+Nsg152
+(dp986
+g149
+Nsg150
+Nsg22
+Nssg154
+(dp987
+g149
+Nsg150
+F3.2999999999999998
+sg22
+F230.33000000000001
+ssbsg51
+S'20090406_0000075'
+p988
+sg85
+g970
+sbsg157
+(lp989
+g1
+(g115
+g3
+NtRp990
+(dp991
+g118
+S'Ml'
+p992
+sg120
+Nsg121
+F5.7999999999999998
+sbag1
+(g115
+g3
+NtRp993
+(dp994
+g118
+S'Mw'
+p995
+sg120
+Nsg121
+F6.2999999999999998
+sbag1
+(g115
+g3
+NtRp996
+(dp997
+g118
+S''
+sg120
+Nsg121
+Nsbag1
+(g115
+g3
+NtRp998
+(dp999
+g118
+S''
+sg120
+Nsg121
+Nsbag1
+(g115
+g3
+NtRp1000
+(dp1001
+g118
+S''
+sg120
+Nsg121
+Nsbasg80
+F42.334000000000003
+sg171
+g1
+(g172
+g3
+NtRp1002
+(dp1003
+g175
+Nsg176
+Nsg113
+Nsg177
+Nsg178
+Nsg179
+Nsg51
+g988
+sbsg51
+g988
+sbsg180
+F13.856999999999999
+sg181
+(lp1004
+S'16878/16878_H1.rs'
+p1005
+aS'16878/16878_H2.rs'
+p1006
+aS'16878/16878_V.rs'
+p1007
+asg45
+Nsg186
+Nsg187
+g1
+(g29
+g3
+NtRp1008
+(dp1009
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p1010
+sg35
+(dp1011
+g37
+I2
+sg38
+I2
+sg39
+F0.070000000000000007
+sg40
+F25
+sg41
+S'Acausal Butterworth (Bandpass)'
+p1012
+sg43
+S'4-pole/4-pole'
+p1013
+ssg45
+(dp1014
+g47
+F0.48558456300000002
+sg48
+Nsg49
+F3.3758999999999997
+ssg50
+Nsg51
+g946
+sg53
+S'NS'
+p1015
+sbsg51
+g946
+sbag1
+(g9
+g3
+NtRp1016
+(dp1017
+g12
+g1
+(g13
+g3
+NtRp1018
+(dp1019
+g16
+Nsg17
+F277
+sg18
+Nsg19
+I0
+sg20
+F277
+sg21
+F277
+sg22
+Nsg23
+Nsg24
+Nsbsg25
+S'data/LAquila_Database/records/16882.hdf5'
+p1020
+sg27
+Nsg28
+g1
+(g29
+g3
+NtRp1021
+(dp1022
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p1023
+sg35
+(dp1024
+g37
+I2
+sg38
+I2
+sg39
+F0.050000000000000003
+sg40
+F25
+sg41
+S'Acausal Butterworth (Bandpass)'
+p1025
+sg43
+S'4-pole/4-pole'
+p1026
+ssg45
+(dp1027
+g47
+F0.25298435699999999
+sg48
+Nsg49
+F0.61634634399999999
+ssg50
+Nsg51
+S'16882'
+p1028
+sg53
+S'UP'
+p1029
+sbsg55
+g1
+(g29
+g3
+NtRp1030
+(dp1031
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p1032
+sg35
+(dp1033
+g37
+I2
+sg38
+I2
+sg39
+F0.050000000000000003
+sg40
+F25
+sg41
+S'Acausal Butterworth (Bandpass)'
+p1034
+sg43
+S'4-pole/4-pole'
+p1035
+ssg45
+(dp1036
+g47
+F0.28740243700000001
+sg48
+Nsg49
+F0.94270337299999996
+ssg50
+Nsg51
+g1028
+sg53
+S'WE'
+p1037
+sbsg64
+g1
+(g65
+g3
+NtRp1038
+(dp1039
+g68
+S'Digital'
+p1040
+sg70
+S'Satriano Di Lucania'
+p1041
+sg72
+Nsg51
+S'3779'
+p1042
+sg74
+I0
+sg75
+S''
+sg76
+Nsg77
+S''
+sg78
+F748
+sg79
+S''
+sg80
+F40.541065000000003
+sg81
+Nsg82
+Nsg83
+S'ESAC'
+p1043
+sg85
+S'STL'
+p1044
+sg87
+Nsg88
+S'Italy'
+p1045
+sg90
+S''
+sg92
+S''
+sg93
+Nsg94
+F15.642169000000001
+sg95
+I00
+sg96
+F395.40699999999998
+sg97
+Nsg98
+Nsbsg99
+(lp1046
+S'16882/16882_H1.cor.acc'
+p1047
+aS'16882/16882_H2.cor.acc'
+p1048
+aS'16882/16882_V.cor.acc'
+p1049
+asg104
+g1
+(g105
+g3
+NtRp1050
+(dp1051
+g85
+S'L Aquila Mainshock'
+p1052
+sg88
+S'Italy'
+p1053
+sg94
+F13.334
+sg110
+g111
+(S"\x07\xd9\x04\x06\x01 '\x00\x00\x00"
+tRp1054
+sg113
+F8.8000000000000007
+sg114
+g1
+(g115
+g3
+NtRp1055
+(dp1056
+g118
+S'Mw'
+p1057
+sg120
+Nsg121
+F6.2999999999999998
+sbsg122
+g1
+(g123
+g3
+NtRp1058
+(dp1059
+g126
+S'Normal'
+p1060
+sg128
+Nsg129
+Nsg130
+g1
+(g131
+g3
+NtRp1061
+(dp1062
+g134
+(dp1063
+g136
+Nsg137
+Nsg138
+Nssg139
+(dp1064
+g136
+F127
+sg137
+F-109
+sg138
+F50
+ssbsg141
+g1
+(g142
+g3
+NtRp1065
+(dp1066
+g145
+Nsg146
+Nsg147
+(dp1067
+g149
+Nsg150
+F75.170000000000002
+sg22
+F332.93000000000001
+ssg151
+Nsg152
+(dp1068
+g149
+Nsg150
+Nsg22
+Nssg154
+(dp1069
+g149
+Nsg150
+F3.2999999999999998
+sg22
+F230.33000000000001
+ssbsg51
+S'20090406_0000075'
+p1070
+sg85
+g1052
+sbsg157
+(lp1071
+g1
+(g115
+g3
+NtRp1072
+(dp1073
+g118
+S'Ml'
+p1074
+sg120
+Nsg121
+F5.7999999999999998
+sbag1
+(g115
+g3
+NtRp1075
+(dp1076
+g118
+S'Mw'
+p1077
+sg120
+Nsg121
+F6.2999999999999998
+sbag1
+(g115
+g3
+NtRp1078
+(dp1079
+g118
+S''
+sg120
+Nsg121
+Nsbag1
+(g115
+g3
+NtRp1080
+(dp1081
+g118
+S''
+sg120
+Nsg121
+Nsbag1
+(g115
+g3
+NtRp1082
+(dp1083
+g118
+S''
+sg120
+Nsg121
+Nsbasg80
+F42.334000000000003
+sg171
+g1
+(g172
+g3
+NtRp1084
+(dp1085
+g175
+Nsg176
+Nsg113
+Nsg177
+Nsg178
+Nsg179
+Nsg51
+g1070
+sbsg51
+g1070
+sbsg180
+F18
+sg181
+(lp1086
+S'16882/16882_H1.rs'
+p1087
+aS'16882/16882_H2.rs'
+p1088
+aS'16882/16882_V.rs'
+p1089
+asg45
+Nsg186
+Nsg187
+g1
+(g29
+g3
+NtRp1090
+(dp1091
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p1092
+sg35
+(dp1093
+g37
+I2
+sg38
+I2
+sg39
+F0.050000000000000003
+sg40
+F25
+sg41
+S'Acausal Butterworth (Bandpass)'
+p1094
+sg43
+S'4-pole/4-pole'
+p1095
+ssg45
+(dp1096
+g47
+F0.29604007100000002
+sg48
+Nsg49
+F0.77132247300000001
+ssg50
+Nsg51
+g1028
+sg53
+S'NS'
+p1097
+sbsg51
+g1028
+sbag1
+(g9
+g3
+NtRp1098
+(dp1099
+g12
+g1
+(g13
+g3
+NtRp1100
+(dp1101
+g16
+Nsg17
+F10
+sg18
+Nsg19
+I0
+sg20
+F0
+sg21
+F6
+sg22
+Nsg23
+Nsg24
+Nsbsg25
+S'data/LAquila_Database/records/16889.hdf5'
+p1102
+sg27
+Nsg28
+g1
+(g29
+g3
+NtRp1103
+(dp1104
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p1105
+sg35
+(dp1106
+g37
+I2
+sg38
+I2
+sg39
+F0.10000000000000001
+sg40
+F50
+sg41
+S'Acausal Butterworth (Bandpass)'
+p1107
+sg43
+S'4-pole/4-pole'
+p1108
+ssg45
+(dp1109
+g47
+F20.1419435
+sg48
+Nsg49
+F363.37302699999998
+ssg50
+Nsg51
+S'16889'
+p1110
+sg53
+S'UP'
+p1111
+sbsg55
+g1
+(g29
+g3
+NtRp1112
+(dp1113
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p1114
+sg35
+(dp1115
+g37
+I2
+sg38
+I2
+sg39
+F0.10000000000000001
+sg40
+F50
+sg41
+S'Acausal Butterworth (Bandpass)'
+p1116
+sg43
+S'4-pole/4-pole'
+p1117
+ssg45
+(dp1118
+g47
+F28.352389500000001
+sg48
+Nsg49
+F292.22915499999999
+ssg50
+Nsg51
+g1110
+sg53
+S'WE'
+p1119
+sbsg64
+g1
+(g65
+g3
+NtRp1120
+(dp1121
+g68
+S'Digital'
+p1122
+sg70
+S"L'Aquila - V. Aterno - Aquil Park In"
+p1123
+sg72
+Nsg51
+S'2984'
+p1124
+sg74
+I0
+sg75
+S''
+sg76
+Nsg77
+S'Ground level or basement'
+p1125
+sg78
+F726
+sg79
+S''
+sg80
+F42.344966999999997
+sg81
+Nsg82
+Nsg83
+S'DH'
+p1126
+sg85
+S'AQK'
+p1127
+sg87
+Nsg88
+S'Italy'
+p1128
+sg90
+S'Servizio Sismico Nazionale (SSN), Ufficio Sistemi di Monitoraggio, Rome, Italy'
+p1129
+sg92
+S''
+sg93
+Nsg94
+F13.400949000000001
+sg95
+I00
+sg96
+F716.52700000000004
+sg97
+Nsg98
+Nsbsg99
+(lp1130
+S'16889/16889_H1.cor.acc'
+p1131
+aS'16889/16889_H2.cor.acc'
+p1132
+aS'16889/16889_V.cor.acc'
+p1133
+asg104
+g1
+(g105
+g3
+NtRp1134
+(dp1135
+g85
+S'L Aquila Mainshock'
+p1136
+sg88
+S'Italy'
+p1137
+sg94
+F13.334
+sg110
+g111
+(S"\x07\xd9\x04\x06\x01 '\x00\x00\x00"
+tRp1138
+sg113
+F8.8000000000000007
+sg114
+g1
+(g115
+g3
+NtRp1139
+(dp1140
+g118
+S'Mw'
+p1141
+sg120
+Nsg121
+F6.2999999999999998
+sbsg122
+g1
+(g123
+g3
+NtRp1142
+(dp1143
+g126
+S'Normal'
+p1144
+sg128
+Nsg129
+Nsg130
+g1
+(g131
+g3
+NtRp1145
+(dp1146
+g134
+(dp1147
+g136
+Nsg137
+Nsg138
+Nssg139
+(dp1148
+g136
+F127
+sg137
+F-109
+sg138
+F50
+ssbsg141
+g1
+(g142
+g3
+NtRp1149
+(dp1150
+g145
+Nsg146
+Nsg147
+(dp1151
+g149
+Nsg150
+F75.170000000000002
+sg22
+F332.93000000000001
+ssg151
+Nsg152
+(dp1152
+g149
+Nsg150
+Nsg22
+Nssg154
+(dp1153
+g149
+Nsg150
+F3.2999999999999998
+sg22
+F230.33000000000001
+ssbsg51
+S'20090406_0000075'
+p1154
+sg85
+g1136
+sbsg157
+(lp1155
+g1
+(g115
+g3
+NtRp1156
+(dp1157
+g118
+S'Ml'
+p1158
+sg120
+Nsg121
+F5.7999999999999998
+sbag1
+(g115
+g3
+NtRp1159
+(dp1160
+g118
+S'Mw'
+p1161
+sg120
+Nsg121
+F6.2999999999999998
+sbag1
+(g115
+g3
+NtRp1162
+(dp1163
+g118
+S''
+sg120
+Nsg121
+Nsbag1
+(g115
+g3
+NtRp1164
+(dp1165
+g118
+S''
+sg120
+Nsg121
+Nsbag1
+(g115
+g3
+NtRp1166
+(dp1167
+g118
+S''
+sg120
+Nsg121
+Nsbasg80
+F42.334000000000003
+sg171
+g1
+(g172
+g3
+NtRp1168
+(dp1169
+g175
+Nsg176
+Nsg113
+Nsg177
+Nsg178
+Nsg179
+Nsg51
+g1154
+sbsg51
+g1154
+sbsg180
+F9
+sg181
+(lp1170
+S'16889/16889_H1.rs'
+p1171
+aS'16889/16889_H2.rs'
+p1172
+aS'16889/16889_V.rs'
+p1173
+asg45
+Nsg186
+Nsg187
+g1
+(g29
+g3
+NtRp1174
+(dp1175
+g32
+Nsg33
+S'Zeroth Order Baseline Correction'
+p1176
+sg35
+(dp1177
+g37
+I2
+sg38
+I2
+sg39
+F0.10000000000000001
+sg40
+F50
+sg41
+S'Acausal Butterworth (Bandpass)'
+p1178
+sg43
+S'4-pole/4-pole'
+p1179
+ssg45
+(dp1180
+g47
+F31.551894900000001
+sg48
+Nsg49
+F311.67292199999997
+ssg50
+Nsg51
+g1110
+sg53
+S'NS'
+p1181
+sbsg51
+g1110
+sbasS'site_ids'
+p1182
+(lp1183
+sg51
+S'001'
+p1184
+sg85
+S'LAquila Mainshock'
+p1185
+sb.
\ No newline at end of file
diff --git a/tests/hazard/data/LAquila_Database/records/16833.hdf5 b/tests/hazard/data/LAquila_Database/records/16833.hdf5
new file mode 100644
index 0000000..6c96d04
Binary files /dev/null and b/tests/hazard/data/LAquila_Database/records/16833.hdf5 differ
diff --git a/tests/hazard/data/LAquila_Database/records/16835.hdf5 b/tests/hazard/data/LAquila_Database/records/16835.hdf5
new file mode 100644
index 0000000..33a978e
Binary files /dev/null and b/tests/hazard/data/LAquila_Database/records/16835.hdf5 differ
diff --git a/tests/hazard/data/LAquila_Database/records/16837.hdf5 b/tests/hazard/data/LAquila_Database/records/16837.hdf5
new file mode 100644
index 0000000..02dda45
Binary files /dev/null and b/tests/hazard/data/LAquila_Database/records/16837.hdf5 differ
diff --git a/tests/hazard/data/LAquila_Database/records/16839.hdf5 b/tests/hazard/data/LAquila_Database/records/16839.hdf5
new file mode 100644
index 0000000..5b59997
Binary files /dev/null and b/tests/hazard/data/LAquila_Database/records/16839.hdf5 differ
diff --git a/tests/hazard/data/LAquila_Database/records/16840.hdf5 b/tests/hazard/data/LAquila_Database/records/16840.hdf5
new file mode 100644
index 0000000..9a82ed0
Binary files /dev/null and b/tests/hazard/data/LAquila_Database/records/16840.hdf5 differ
diff --git a/tests/hazard/data/LAquila_Database/records/16843.hdf5 b/tests/hazard/data/LAquila_Database/records/16843.hdf5
new file mode 100644
index 0000000..f380c80
Binary files /dev/null and b/tests/hazard/data/LAquila_Database/records/16843.hdf5 differ
diff --git a/tests/hazard/data/LAquila_Database/records/16853.hdf5 b/tests/hazard/data/LAquila_Database/records/16853.hdf5
new file mode 100644
index 0000000..a721f50
Binary files /dev/null and b/tests/hazard/data/LAquila_Database/records/16853.hdf5 differ
diff --git a/tests/hazard/data/LAquila_Database/records/16854.hdf5 b/tests/hazard/data/LAquila_Database/records/16854.hdf5
new file mode 100644
index 0000000..b2cf9ef
Binary files /dev/null and b/tests/hazard/data/LAquila_Database/records/16854.hdf5 differ
diff --git a/tests/hazard/data/LAquila_Database/records/16856.hdf5 b/tests/hazard/data/LAquila_Database/records/16856.hdf5
new file mode 100644
index 0000000..ffd4b78
Binary files /dev/null and b/tests/hazard/data/LAquila_Database/records/16856.hdf5 differ
diff --git a/tests/hazard/data/LAquila_Database/records/16858.hdf5 b/tests/hazard/data/LAquila_Database/records/16858.hdf5
new file mode 100644
index 0000000..3a8a5dc
Binary files /dev/null and b/tests/hazard/data/LAquila_Database/records/16858.hdf5 differ
diff --git a/tests/hazard/data/LAquila_Database/records/16878.hdf5 b/tests/hazard/data/LAquila_Database/records/16878.hdf5
new file mode 100644
index 0000000..1a8bbaf
Binary files /dev/null and b/tests/hazard/data/LAquila_Database/records/16878.hdf5 differ
diff --git a/tests/hazard/data/LAquila_Database/records/16882.hdf5 b/tests/hazard/data/LAquila_Database/records/16882.hdf5
new file mode 100644
index 0000000..dd37140
Binary files /dev/null and b/tests/hazard/data/LAquila_Database/records/16882.hdf5 differ
diff --git a/tests/hazard/data/LAquila_Database/records/16889.hdf5 b/tests/hazard/data/LAquila_Database/records/16889.hdf5
new file mode 100644
index 0000000..19b1b1e
Binary files /dev/null and b/tests/hazard/data/LAquila_Database/records/16889.hdf5 differ
diff --git a/tests/hazard/data/laquila_rupture.xml b/tests/hazard/data/laquila_rupture.xml
new file mode 100644
index 0000000..b5f7708
--- /dev/null
+++ b/tests/hazard/data/laquila_rupture.xml
@@ -0,0 +1,20 @@
+
+
+
+ 6.3
+ -98.0
+
+
+
+
+ 13.3976 42.4371
+ 13.5571 42.3012
+
+
+ 50.0
+ 0.8
+ 12.69
+
+
+
diff --git a/tests/intensity_measures_test.py b/tests/intensity_measures_test.py
new file mode 100644
index 0000000..19f49fd
--- /dev/null
+++ b/tests/intensity_measures_test.py
@@ -0,0 +1,244 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+#
+# Copyright (C) 2014-2017 GEM Foundation and G. Weatherill
+#
+# OpenQuake is free software: you can redistribute it and/or modify it
+# under the terms of the GNU Affero General Public License as published
+# by the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# OpenQuake is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with OpenQuake. If not, see .
+"""
+Tests for generation of data for trellis plots
+"""
+import unittest
+import os
+import h5py
+import numpy as np
+import smtk.response_spectrum as rsp
+import smtk.intensity_measures as ims
+
+
+BASE_DATA_PATH = os.path.dirname(__file__)
+
+
+class BaseIMSTestCase(unittest.TestCase):
+ """
+ Base test case for Response Spectra and Intensity Measure functions
+ """
+
+ @staticmethod
+ def arr_diff(x, y, percent):
+ """
+ Retrieving data from hdf5 leads to precision differences use relative
+ error (i.e. < X % difference)
+ """
+ idx = np.logical_and(x > 0.0, y > 0.0)
+ diff = np.zeros_like(x)
+ diff[idx] = ((x[idx] / y[idx]) - 1.0) * 100
+ if np.all(np.fabs(diff) < percent):
+ return True
+ else:
+ iloc = np.argmax(diff)
+ print(x, y, diff, x[iloc], y[iloc], diff[iloc])
+ return False
+
+ def _compare_sa_sets(self, sax, fle_loc, disc=1.0):
+ """
+ When data is stored in a dictionary of arrays, compare by keys
+ """
+ for key in sax:
+ if not isinstance(sax[key], np.ndarray) or len(sax[key]) == 1:
+ continue
+ reference_data = self.fle[fle_loc + "/{:s}".format(key)][:]
+ self.assertTrue(self.arr_diff(sax[key], reference_data, disc))
+
+ def setUp(self):
+ """
+ Connect to hdf5 data store
+ """
+ self.fle = h5py.File(os.path.join(BASE_DATA_PATH,
+ "smtk_ims_test_data.hdf5"), "r")
+ self.periods = self.fle["INPUTS/periods"][:]
+
+ def tearDown(self):
+ """
+ Close hdf5 connection
+ """
+ self.fle.close()
+
+
+class ResponseSpectrumTestCase(BaseIMSTestCase):
+ """
+ Tests the response spectrum methods
+ """
+
+ def test_response_spectrum(self):
+ """
+ Tests the Nigam & Jennings Response Spectrum
+ """
+ x_record = self.fle["INPUTS/RECORD1/XRECORD"][:]
+ x_time_step = self.fle["INPUTS/RECORD1/XRECORD"].attrs["timestep"]
+ nigam_jennings = rsp.NigamJennings(x_record, x_time_step, self.periods,
+ damping=0.05, units="cm/s/s")
+ sax, timeseries, acc, vel, dis = nigam_jennings()
+ self._compare_sa_sets(sax, "TEST1/X/spectra")
+ for key in ["Acceleration", "Velocity", "Displacement"]:
+ if not isinstance(timeseries[key], np.ndarray):
+ continue
+ self.assertTrue(
+ self.arr_diff(timeseries[key],
+ self.fle["TEST1/X/timeseries/{:s}".format(key)][:],
+ 1.0)
+ )
+
+ def test_get_response_spectrum_pair(self):
+ """
+ Tests the call to the response spectrum via ims
+ """
+ sax, say = ims.get_response_spectrum_pair(
+ self.fle["INPUTS/RECORD1/XRECORD"][:],
+ self.fle["INPUTS/RECORD1/XRECORD"].attrs["timestep"],
+ self.fle["INPUTS/RECORD1/YRECORD"][:],
+ self.fle["INPUTS/RECORD1/YRECORD"].attrs["timestep"],
+ self.periods, damping=0.05, units="cm/s/s",
+ method="Nigam-Jennings")
+ self._compare_sa_sets(sax, "TEST1/X/spectra")
+ self._compare_sa_sets(say, "TEST1/Y/spectra")
+
+ def test_get_geometric_mean_spectrum(self):
+ """
+ Tests the geometric mean spectrum
+ """
+ sax, say = ims.get_response_spectrum_pair(
+ self.fle["INPUTS/RECORD1/XRECORD"][:],
+ self.fle["INPUTS/RECORD1/XRECORD"].attrs["timestep"],
+ self.fle["INPUTS/RECORD1/YRECORD"][:],
+ self.fle["INPUTS/RECORD1/YRECORD"].attrs["timestep"],
+ self.periods, damping=0.05, units="cm/s/s",
+ method="Nigam-Jennings")
+ sa_gm = ims.geometric_mean_spectrum(sax, say)
+ self._compare_sa_sets(sa_gm, "TEST1/GM/spectra")
+
+ def test_envelope_spectrum(self):
+ """
+ Tests the envelope spectrum
+ """
+ sax, say = ims.get_response_spectrum_pair(
+ self.fle["INPUTS/RECORD1/XRECORD"][:],
+ self.fle["INPUTS/RECORD1/XRECORD"].attrs["timestep"],
+ self.fle["INPUTS/RECORD1/YRECORD"][:],
+ self.fle["INPUTS/RECORD1/YRECORD"].attrs["timestep"],
+ self.periods, damping=0.05, units="cm/s/s",
+ method="Nigam-Jennings")
+ sa_env = ims.envelope_spectrum(sax, say)
+ self._compare_sa_sets(sa_env, "TEST1/ENV/spectra")
+
+ def test_gmrotd50(self):
+ """
+ Tests the function to get GMRotD50
+ """
+ gmrotd50 = ims.gmrotdpp(
+ self.fle["INPUTS/RECORD1/XRECORD"][:],
+ self.fle["INPUTS/RECORD1/XRECORD"].attrs["timestep"],
+ self.fle["INPUTS/RECORD1/YRECORD"][:],
+ self.fle["INPUTS/RECORD1/YRECORD"].attrs["timestep"],
+ self.periods, percentile=50.0, damping=0.05, units="cm/s/s",
+ method="Nigam-Jennings")
+ self._compare_sa_sets(gmrotd50, "TEST1/GMRotD50/spectra")
+
+ def test_gmroti50(self):
+ """
+ Tests the function to get GMRotI50
+ """
+ gmroti50 = ims.gmrotipp(
+ self.fle["INPUTS/RECORD1/XRECORD"][:],
+ self.fle["INPUTS/RECORD1/XRECORD"].attrs["timestep"],
+ self.fle["INPUTS/RECORD1/YRECORD"][:],
+ self.fle["INPUTS/RECORD1/YRECORD"].attrs["timestep"],
+ self.periods, percentile=50.0, damping=0.05, units="cm/s/s",
+ method="Nigam-Jennings")
+ self._compare_sa_sets(gmroti50, "TEST1/GMRotI50/spectra")
+
+
+class ScalarIntensityMeasureTestCase(BaseIMSTestCase):
+ """
+ Tests the functions returning scalar intensity measures
+ """
+ def test_get_peak_measures(self):
+ """
+ Tests the PGA, PGV, PGD functions
+ """
+ pga_x, pgv_x, pgd_x, _, _ = ims.get_peak_measures(
+ self.fle["INPUTS/RECORD1/XRECORD"].attrs["timestep"],
+ self.fle["INPUTS/RECORD1/XRECORD"][:],
+ True,
+ True)
+ self.assertAlmostEqual(pga_x, 523.6900024, 3)
+ self.assertAlmostEqual(pgv_x, 46.7632261, 3)
+ self.assertAlmostEqual(pgd_x, 13.6729804, 3)
+
+ def test_get_durations(self):
+ """
+ Tests the bracketed, uniform and significant duration
+ """
+ x_record = self.fle["INPUTS/RECORD1/XRECORD"][:]
+ x_timestep = self.fle["INPUTS/RECORD1/XRECORD"].attrs["timestep"]
+ self.assertAlmostEqual(
+ ims.get_bracketed_duration(x_record, x_timestep, 5.0),
+ 19.7360000, 3)
+
+ self.assertAlmostEqual(
+ ims.get_uniform_duration(x_record, x_timestep, 5.0),
+ 14.6820000, 3)
+
+ self.assertAlmostEqual(
+ ims.get_significant_duration(x_record, x_timestep, 0.05, 0.95),
+ 4.0320000, 3)
+
+ def test_arias_cav_arms(self):
+ """
+ Tests the functions for Ia, CAV, CAV5 and Arms
+ """
+ x_record = self.fle["INPUTS/RECORD1/XRECORD"][:]
+ x_timestep = self.fle["INPUTS/RECORD1/XRECORD"].attrs["timestep"]
+ # Arias intensity
+ self.assertAlmostEqual(
+ ims.get_arias_intensity(x_record, x_timestep),
+ 111.1540091, 3)
+ # 5 - 95 % Arias Intensity
+ self.assertAlmostEqual(
+ ims.get_arias_intensity(x_record, x_timestep, 0.05, 0.95),
+ 99.9621952, 3)
+ # CAV
+ self.assertAlmostEqual(
+ ims.get_cav(x_record, x_timestep),
+ 509.9941624, 3)
+ # CAV5
+ self.assertAlmostEqual(
+ ims.get_cav(x_record, x_timestep, threshold=5.0),
+ 496.7741956, 3)
+ # Arms
+ self.assertAlmostEqual(
+ ims.get_arms(x_record, x_timestep),
+ 56.8495087, 3)
+
+ def test_spectrum_intensities(self):
+ """
+ Tests Housner Intensity and Acceleration Spectrum Intensity
+ """
+ x_record = self.fle["INPUTS/RECORD1/XRECORD"][:]
+ x_timestep = self.fle["INPUTS/RECORD1/XRECORD"].attrs["timestep"]
+ sax = ims.get_response_spectrum(x_record, x_timestep, self.periods)[0]
+ housner = ims.get_response_spectrum_intensity(sax)
+ self.assertAlmostEqual(housner, 121.3103787, 3)
+ asi = ims.get_acceleration_spectrum_intensity(sax)
+ self.assertAlmostEqual(asi, 432.5134666, 3)
diff --git a/tests/residuals/__init__.py b/tests/residuals/__init__.py
new file mode 100755
index 0000000..e69de29
diff --git a/tests/residuals/data/residual_tests_esm_data.csv b/tests/residuals/data/residual_tests_esm_data.csv
new file mode 100644
index 0000000..d49db6b
--- /dev/null
+++ b/tests/residuals/data/residual_tests_esm_data.csv
@@ -0,0 +1,42 @@
+;event_id;event_time;ISC_ev_id;USGS_ev_id;INGV_ev_id;EMSC_ev_id;ev_nation_code;ev_latitude;ev_longitude;ev_depth_km;ev_hyp_ref;fm_type_code;ML;ML_ref;Mw;Mw_ref;Ms;Ms_ref;EMEC_Mw;EMEC_Mw_type;EMEC_Mw_ref;strike_1;dip_1;rake_1;strike_2;dip_2;rake_2;MT_Agency;MT_Identifier;event_source_id;es_strike;es_dip;es_rake;es_strike_dip_rake_ref;es_z_top;es_z_top_ref;es_length;es_width;es_geometry_ref;network_code;station_code;location_code;instrument_code;sensor_depth_m;proximity_code;housing_code;installation_code;st_nation_code;st_latitude;st_longitude;st_elevation;ec8_code;ec8_code_method;ec8_code_ref;vs30_m_sec;vs30_ref;vs30_calc_method;vs30_meas_type;slope_deg;vs30_m_sec_WA;epi_dist;epi_az;JB_dist;rup_dist;Rx_dist;Ry0_dist;instrument_type_code;late_triggered_flag_01;U_channel_code;U_azimuth_deg;V_channel_code;V_azimuth_deg;W_channel_code;U_hp;V_hp;W_hp;U_lp;V_lp;W_lp;U_pga;V_pga;W_pga;rotD50_pga;rotD100_pga;rotD00_pga;U_pgv;V_pgv;W_pgv;rotD50_pgv;rotD100_pgv;rotD00_pgv;U_pgd;V_pgd;W_pgd;rotD50_pgd;rotD100_pgd;rotD00_pgd;U_T90;V_T90;W_T90;rotD50_T90;rotD100_T90;rotD00_T90;U_housner;V_housner;W_housner;rotD50_housner;rotD100_housner;rotD00_housner;U_CAV;V_CAV;W_CAV;rotD50_CAV;rotD100_CAV;rotD00_CAV;U_ia;V_ia;W_ia;rotD50_ia;rotD100_ia;rotD00_ia;U_T0_010;U_T0_025;U_T0_040;U_T0_050;U_T0_070;U_T0_100;U_T0_150;U_T0_200;U_T0_250;U_T0_300;U_T0_350;U_T0_400;U_T0_450;U_T0_500;U_T0_600;U_T0_700;U_T0_750;U_T0_800;U_T0_900;U_T1_000;U_T1_200;U_T1_400;U_T1_600;U_T1_800;U_T2_000;U_T2_500;U_T3_000;U_T3_500;U_T4_000;U_T4_500;U_T5_000;U_T6_000;U_T7_000;U_T8_000;U_T9_000;U_T10_000;V_T0_010;V_T0_025;V_T0_040;V_T0_050;V_T0_070;V_T0_100;V_T0_150;V_T0_200;V_T0_250;V_T0_300;V_T0_350;V_T0_400;V_T0_450;V_T0_500;V_T0_600;V_T0_700;V_T0_750;V_T0_800;V_T0_900;V_T1_000;V_T1_200;V_T1_400;V_T1_600;V_T1_800;V_T2_000;V_T2_500;V_T3_000;V_T3_500;V_T4_000;V_T4_500;V_T5_000;V_T6_000;V_T7_000;V_T8_000;V_T9_000;V_T10_000;W_T0_010;W_T0_025;W_T0_040;W_T0_050;W_T0_070;W_T0_100;W_T0_150;W_T0_200;W_T0_250;W_T0_300;W_T0_350;W_T0_400;W_T0_450;W_T0_500;W_T0_600;W_T0_700;W_T0_750;W_T0_800;W_T0_900;W_T1_000;W_T1_200;W_T1_400;W_T1_600;W_T1_800;W_T2_000;W_T2_500;W_T3_000;W_T3_500;W_T4_000;W_T4_500;W_T5_000;W_T6_000;W_T7_000;W_T8_000;W_T9_000;W_T10_000;rotD50_T0_010;rotD50_T0_025;rotD50_T0_040;rotD50_T0_050;rotD50_T0_070;rotD50_T0_100;rotD50_T0_150;rotD50_T0_200;rotD50_T0_250;rotD50_T0_300;rotD50_T0_350;rotD50_T0_400;rotD50_T0_450;rotD50_T0_500;rotD50_T0_600;rotD50_T0_700;rotD50_T0_750;rotD50_T0_800;rotD50_T0_900;rotD50_T1_000;rotD50_T1_200;rotD50_T1_400;rotD50_T1_600;rotD50_T1_800;rotD50_T2_000;rotD50_T2_500;rotD50_T3_000;rotD50_T3_500;rotD50_T4_000;rotD50_T4_500;rotD50_T5_000;rotD50_T6_000;rotD50_T7_000;rotD50_T8_000;rotD50_T9_000;rotD50_T10_000;rotD100_T0_010;rotD100_T0_025;rotD100_T0_040;rotD100_T0_050;rotD100_T0_070;rotD100_T0_100;rotD100_T0_150;rotD100_T0_200;rotD100_T0_250;rotD100_T0_300;rotD100_T0_350;rotD100_T0_400;rotD100_T0_450;rotD100_T0_500;rotD100_T0_600;rotD100_T0_700;rotD100_T0_750;rotD100_T0_800;rotD100_T0_900;rotD100_T1_000;rotD100_T1_200;rotD100_T1_400;rotD100_T1_600;rotD100_T1_800;rotD100_T2_000;rotD100_T2_500;rotD100_T3_000;rotD100_T3_500;rotD100_T4_000;rotD100_T4_500;rotD100_T5_000;rotD100_T6_000;rotD100_T7_000;rotD100_T8_000;rotD100_T9_000;rotD100_T10_000;rotD00_T0_010;rotD00_T0_025;rotD00_T0_040;rotD00_T0_050;rotD00_T0_070;rotD00_T0_100;rotD00_T0_150;rotD00_T0_200;rotD00_T0_250;rotD00_T0_300;rotD00_T0_350;rotD00_T0_400;rotD00_T0_450;rotD00_T0_500;rotD00_T0_600;rotD00_T0_700;rotD00_T0_750;rotD00_T0_800;rotD00_T0_900;rotD00_T1_000;rotD00_T1_200;rotD00_T1_400;rotD00_T1_600;rotD00_T1_800;rotD00_T2_000;rotD00_T2_500;rotD00_T3_000;rotD00_T3_500;rotD00_T4_000;rotD00_T4_500;rotD00_T5_000;rotD00_T6_000;rotD00_T7_000;rotD00_T8_000;rotD00_T9_000;rotD00_T10_000
+132;EMSC-20040918_0000026;2004-09-18 12:52:14;7402659.0;usp000d4jb;;20040918_0000026;ES;42.9545;-1.6035;1.591;ISC;NF;4.3;IGIL;4.5;IAG;3.89;ISC;4.36;Mw;CSD11;;;;;;;;;;;;;;;;;;;RA;PYAS;0;HN;0.0;;;;FR;43.0119;0.797306;430.0;A;VS30;Dechamp_et_al_2014;1089.0;Hollender_et_al_2017;0.0;SWDCI;7.258524;715.785401;195.9;269.0;;;;;D;0.0;E;90.0;N;0.0;Z;0.1;0.1;0.1;30.0;30.0;30.0;0.14429;-0.272496;0.180655;0.1947315;0.272496;0.140369;-0.009126;-0.013767;0.009929;0.01114905;0.0137744;0.00833069;0.001212;0.002247;0.00178;0.002139015;0.00236872;0.00119862;37.25;30.48;34.99;34.04;37.73;29.905;0.0332101;0.0450478;0.0296976;0.03998745;0.0455605;0.0330927;1.04142108558;1.17466034974;0.945056545039;1.11604070003;1.17933039544;1.03134338026;5.67886417421e-05;8.64410883609e-05;4.86620979857e-05;7.16148590154e-05;8.78108026124e-05;5.54188983003e-05;0.144721;0.14614;0.156836;0.168155;0.236532;0.300797;0.578817;0.445479;0.417035;0.421013;0.385929;0.322933;0.259608;0.247277;0.312165;0.209786;0.170435;0.103732;0.109754;0.119621;0.078826;0.091841;0.045446;0.029266;0.021735;0.010584;0.006947;0.006512;0.006671;0.004719;0.004167;0.003435;0.002332;0.001803;0.001222;0.000949;0.272539;0.276107;0.293163;0.295209;0.373923;0.532108;0.764004;0.98616;0.452186;0.409024;0.582254;0.363487;0.297496;0.358314;0.205301;0.257009;0.281633;0.306331;0.233298;0.128683;0.096652;0.07258;0.067135;0.060633;0.039463;0.017737;0.013471;0.011263;0.010412;0.009909;0.008747;0.005436;0.004082;0.003114;0.002368;0.001846;0.18115;0.183244;0.186547;0.19129;0.211873;0.272368;0.502209;0.53444;0.445197;0.331821;0.409018;0.344018;0.257795;0.228426;0.172379;0.226757;0.201023;0.149979;0.103222;0.105745;0.081954;0.044359;0.036667;0.02479;0.022532;0.012161;0.009491;0.009325;0.006116;0.00571;0.00537;0.003999;0.003299;0.003023;0.001965;0.001412;0.1947345;0.1990675;0.209175;0.2231995;0.2866335;0.418256;0.5813865;0.7031525;0.454589;0.4146505;0.4571045;0.3529735;0.296018;0.279201;0.2756705;0.2234515;0.203022;0.2199665;0.1663235;0.1241185;0.084824;0.083503;0.0634695;0.0483715;0.034432;0.0131455;0.00992;0.009528;0.0078595;0.007035;0.006774;0.004846;0.003446;0.002639;0.002101;0.001683;0.272539;0.276107;0.293299;0.295209;0.377097;0.537313;0.764004;0.993705;0.563996;0.482218;0.629084;0.392655;0.334609;0.389414;0.329778;0.270808;0.283168;0.306331;0.233298;0.160402;0.114861;0.092068;0.067936;0.061215;0.040795;0.01774;0.01347;0.011547;0.010772;0.009912;0.008878;0.005464;0.004092;0.003266;0.002416;0.001944;0.140592;0.141844;0.151421;0.166613;0.227325;0.273202;0.492873;0.445479;0.371242;0.323738;0.28064;0.284989;0.254396;0.201014;0.204904;0.176069;0.155566;0.103732;0.105958;0.11122;0.07346;0.068653;0.041179;0.027244;0.020455;0.010159;0.006761;0.006474;0.006184;0.004174;0.003856;0.003119;0.002231;0.00176;0.001219;0.000931
+133;EMSC-20040918_0000026;2004-09-18 12:52:14;7402659.0;usp000d4jb;;20040918_0000026;ES;42.9545;-1.6035;1.591;ISC;NF;4.3;IGIL;4.5;IAG;3.89;ISC;4.36;Mw;CSD11;;;;;;;;;;;;;;;;;;;RA;PYAT;0;HN;0.0;;;;FR;43.0942;-0.7133;340.0;A;VS30;Dechamp_et_al_2014;1164.0;Hollender_et_al_2017;0.0;SWDCI;9.700524;804.614833;74.2;258.2;;;;;D;0.0;E;90.0;N;0.0;Z;0.1;0.1;0.1;30.0;30.0;30.0;-0.951552;-1.135373;0.660206;1.083883;1.250904;0.744259;0.045215;-0.070493;0.046222;0.0645164;0.0724838;0.0431496;-0.007141;-0.01652;-0.00848;0.0117427;0.0165696;0.00695813;17.81;15.47;20.775;16.3875;17.905;15.47;0.162533;0.272827;0.139117;0.2311635;0.280364;0.158271;3.80608305823;4.61317778613;3.14777769518;4.22677661689;4.84093443471;3.485226105;0.00125655220269;0.00201536925656;0.000840256999462;0.00163596079865;0.00220126492593;0.00107065667619;0.953363;0.99215;1.17516;1.12801;2.38735;2.07555;1.84343;2.26477;1.96371;1.91668;1.81851;1.85762;2.46551;2.63115;1.37016;0.783785;0.859659;0.770719;0.705863;0.529847;0.435947;0.230324;0.169781;0.12785;0.103442;0.050862;0.054701;0.048825;0.046915;0.035602;0.024342;0.020044;0.013816;0.009473;0.006735;0.005317;1.1432;1.21101;1.56717;1.68761;2.52304;2.8609;3.04592;3.02403;3.39687;3.75702;1.98711;2.33768;2.5509;1.52097;1.2932;0.98666;1.15877;1.46225;1.72314;0.990215;0.77263;0.508837;0.4575;0.309512;0.24259;0.126608;0.127469;0.08195;0.065949;0.055709;0.042082;0.025978;0.019967;0.015647;0.013261;0.011131;0.66294;0.675391;0.827167;0.983744;1.08753;1.38798;1.24424;2.3554;1.7376;2.38954;1.34711;1.29021;1.45137;1.23658;1.02802;0.680049;0.816075;0.72918;0.552679;0.59612;0.447732;0.237832;0.147583;0.111165;0.070826;0.060033;0.097045;0.065155;0.053186;0.043965;0.0314;0.018752;0.012593;0.009348;0.006567;0.00482;1.089995;1.154785;1.37367;1.513815;2.454885;2.49333;2.464475;2.734265;2.854245;2.98039;1.829475;2.13526;2.51482;2.1261;1.316725;1.009755;1.03033;1.124425;1.254735;0.8270735;0.6083755;0.3996205;0.3450635;0.2365325;0.180383;0.097323;0.09504;0.0692255;0.0566475;0.04339;0.0331455;0.024759;0.0176095;0.01292;0.0094645;0.0079285;1.25982;1.31418;1.57694;1.69315;3.13224;3.40893;3.16112;3.73863;3.63247;4.017;2.11953;2.34364;3.01329;2.66515;1.47681;1.18654;1.32386;1.49841;1.73368;1.05769;0.819634;0.530455;0.487982;0.33448;0.242931;0.129722;0.133924;0.093131;0.069438;0.059892;0.046818;0.02846;0.020684;0.015799;0.01335;0.011207;0.751288;0.766353;0.951443;1.03296;1.42298;1.60339;1.58095;1.69904;1.58679;1.91668;1.5392;1.76407;2.22263;1.49035;0.963222;0.758108;0.835824;0.760758;0.608947;0.529846;0.35604;0.155524;0.128836;0.098143;0.094557;0.050863;0.040685;0.031785;0.025861;0.021814;0.02317;0.015134;0.011339;0.007679;0.005873;0.004988
+134;EMSC-20040918_0000026;2004-09-18 12:52:14;7402659.0;usp000d4jb;;20040918_0000026;ES;42.9545;-1.6035;1.591;ISC;NF;4.3;IGIL;4.5;IAG;3.89;ISC;4.36;Mw;CSD11;;;;;;;;;;;;;;;;;;;RA;PYLI;0;HN;0.0;;;;FR;43.0016;1.13606;424.0;A;VS30;Dechamp_et_al_2014;1257.0;Hollender_et_al_2017;0.0;SWDCI;13.859577;913.884557;223.5;269.6;;;;;D;0.0;E;90.0;N;0.0;Z;0.2;0.2;0.2;30.0;30.0;30.0;-0.202745;0.170691;-0.130491;0.17027;0.203338;0.147985;-0.012595;-0.014217;-0.013164;0.0130636;0.0162723;0.00935149;-0.001781;0.001963;0.001726;0.00185623;0.00208877;0.00124522;37.395;35.025;36.835;36.44;42.66;28.64;0.0470153;0.0470509;0.042164;0.04703325;0.0537922;0.0354068;1.3320394;1.00213816018;0.880837854864;1.17189783791;1.33426045512;0.997379200409;8.89358991465e-05;5.6753714908e-05;4.3529518325e-05;7.28448080981e-05;9.19543228997e-05;5.37353102808e-05;0.202928;0.204269;0.207111;0.209758;0.222623;0.298525;0.334737;0.517655;0.545439;0.689744;0.465701;0.629267;0.53589;0.455312;0.457655;0.285782;0.2444;0.229309;0.194523;0.182865;0.103969;0.077508;0.056142;0.052675;0.030699;0.014904;0.012462;0.008485;0.007437;0.00671;0.004265;0.002699;0.001985;0.001515;0.001313;0.001128;0.170724;0.171423;0.173152;0.172253;0.195864;0.198644;0.268077;0.443087;0.459984;0.563363;0.661566;0.515981;0.527917;0.430631;0.389154;0.21208;0.19363;0.182881;0.176934;0.209749;0.15927;0.095728;0.052402;0.041655;0.028171;0.018803;0.011256;0.008767;0.007001;0.005253;0.004066;0.002723;0.001955;0.001612;0.001313;0.001154;0.130819;0.132213;0.136212;0.137001;0.150843;0.184882;0.278587;0.285036;0.38552;0.560217;0.515521;0.335185;0.310424;0.417284;0.40596;0.260498;0.227708;0.216069;0.174036;0.140836;0.094273;0.076568;0.039403;0.048476;0.037051;0.021319;0.015725;0.010472;0.008214;0.006283;0.004993;0.002858;0.001872;0.001482;0.001201;0.001011;0.170317;0.1713505;0.1742915;0.174908;0.20271;0.213453;0.3120795;0.4585345;0.4559095;0.561057;0.5851755;0.5986405;0.523339;0.4427225;0.426297;0.245239;0.214287;0.1841065;0.196185;0.19479;0.1361885;0.081944;0.055471;0.0465885;0.029307;0.0158695;0.0114635;0.00829;0.0067885;0.0052415;0.00393;0.0026285;0.0019335;0.0015595;0.0012825;0.001116;0.203362;0.204691;0.207236;0.210009;0.229989;0.298914;0.344598;0.520551;0.579554;0.719036;0.666174;0.683647;0.540603;0.556517;0.525766;0.300929;0.245754;0.233161;0.214434;0.228934;0.17962;0.106434;0.062883;0.055612;0.034027;0.020703;0.015168;0.008814;0.007433;0.006715;0.004268;0.002817;0.002103;0.001748;0.001418;0.00124;0.148264;0.15104;0.153073;0.153164;0.174513;0.188719;0.253095;0.281778;0.38387;0.385146;0.366903;0.426775;0.464205;0.324296;0.2591;0.176605;0.152436;0.153876;0.171637;0.137595;0.075354;0.044804;0.032451;0.02356;0.018808;0.010615;0.008569;0.006923;0.005324;0.004134;0.003141;0.002027;0.001499;0.001208;0.000979;0.000799
+135;EMSC-20040918_0000026;2004-09-18 12:52:14;7402659.0;usp000d4jb;;20040918_0000026;ES;42.9545;-1.6035;1.591;ISC;NF;4.3;IGIL;4.5;IAG;3.89;ISC;4.36;Mw;CSD11;;;;;;;;;;;;;;;;;;;RA;PYLL;0;HN;0.0;;;;FR;42.453;2.065;1430.0;A;VS30;Dechamp_et_al_2014;1100.0;Hollender_et_al_2017;0.0;REFR;17.054823;1000.469552;305.7;281.7;;;;;D;0.0;E;90.0;N;0.0;Z;0.1;0.1;0.1;30.0;30.0;30.0;-0.063371;-0.086334;0.066672;0.0817915;0.097928;0.06292;0.009147;-0.008849;0.007422;0.008897405;0.0108532;0.00645604;-0.002379;-0.001465;0.001379;0.00185669;0.00254295;0.00126515;47.795;39.715;52.25;44.32;48.045;39.715;0.0350245;0.0357846;0.0305;0.035488;0.0377013;0.0338182;0.609363020074;0.668711220464;0.673595530302;0.639840339909;0.669779999782;0.605780949965;1.60919864364e-05;2.33969831198e-05;1.86581692375e-05;1.97444791184e-05;2.36724558453e-05;1.58165220607e-05;0.063502;0.064338;0.064719;0.066671;0.070596;0.099792;0.114554;0.197079;0.195474;0.233471;0.161104;0.222308;0.16973;0.14342;0.172568;0.175562;0.1926;0.201293;0.13886;0.112613;0.076065;0.059137;0.04086;0.04931;0.052429;0.043132;0.027557;0.014219;0.008213;0.005867;0.005834;0.005031;0.003993;0.002052;0.001646;0.001184;0.086334;0.087347;0.08752;0.092043;0.09418;0.113202;0.160057;0.174492;0.209306;0.252713;0.213248;0.230639;0.232812;0.248549;0.272471;0.339024;0.324211;0.202092;0.190485;0.17149;0.093586;0.046732;0.041121;0.03521;0.031946;0.024567;0.016415;0.009531;0.005454;0.00479;0.003736;0.001996;0.001598;0.001371;0.001198;0.000953;0.066678;0.067018;0.067273;0.071676;0.074843;0.077743;0.098808;0.135897;0.153101;0.170581;0.234455;0.245629;0.225707;0.215276;0.208001;0.196605;0.160599;0.13487;0.120216;0.107554;0.073266;0.061142;0.050017;0.037492;0.034937;0.016992;0.017587;0.013613;0.009877;0.006021;0.005042;0.003076;0.002042;0.001193;0.001057;0.000898;0.0819075;0.082823;0.082463;0.083687;0.086473;0.1075535;0.1320785;0.1744605;0.1967895;0.2466105;0.193988;0.2271705;0.1968595;0.2006775;0.2188905;0.280957;0.270786;0.2035275;0.1544705;0.136998;0.0864275;0.050429;0.0409905;0.040999;0.0397775;0.035705;0.022916;0.0118535;0.007324;0.00527;0.00444;0.0036645;0.002885;0.001898;0.0014625;0.001158;0.097965;0.098231;0.099117;0.104231;0.101698;0.1235;0.17013;0.197079;0.24606;0.271374;0.22458;0.26756;0.235762;0.249829;0.279537;0.353673;0.324452;0.21073;0.190485;0.172429;0.101968;0.05927;0.057847;0.050875;0.052429;0.047776;0.028056;0.015505;0.009344;0.00696;0.006061;0.00503;0.004061;0.002157;0.001656;0.00126;0.062949;0.063395;0.06472;0.066671;0.070206;0.096242;0.110813;0.134696;0.177944;0.177418;0.161104;0.154101;0.152374;0.134231;0.164174;0.146333;0.192526;0.201007;0.115351;0.086106;0.073609;0.043539;0.034236;0.034348;0.027015;0.016897;0.011996;0.006549;0.003814;0.003053;0.002596;0.001821;0.001504;0.001195;0.0011;0.000857
+136;EMSC-20041205_0000033;2004-12-05 01:52:35;7445791.0;usp000da1z;;20041205_0000033;DE;48.1039;7.9208;10.0;ISC;SS;4.1;NAO;4.55;MED_RCMT;3.96;ISC;4.6;Mw;Ben-MKS12;109.0;70.0;-159.0;11.5204599273;70.3206623502;-43.8328409074;INGV;1652;;;;;;;;;;;CH;BNALP;0;HG;0.0;;;;CH;46.87049;8.42502;1540.0;;;;;;;;22.269664;1148.597966;142.3;344.7;;;;;D;0.0;E;90.0;N;0.0;Z;0.15;0.15;0.15;30.0;30.0;30.0;-1.354108;0.638057;1.13093;0.976455;1.354287;0.631159;0.068161;0.061819;0.078775;0.06184125;0.0766124;0.0438163;0.006896;-0.007768;0.004959;0.007381775;0.00804386;0.00485297;20.1;16.14;21.54;17.325;21.07;15.215;0.155961;0.175081;0.156595;0.1692915;0.197191;0.143478;2.86332275469;2.84925782578;2.86997360952;2.8692721272;2.91273829586;2.82655954276;0.000891144358516;0.000635372606772;0.000864727006813;0.000763258482234;0.000891144358516;0.000635372606772;1.35656;1.36542;1.42329;1.52765;1.55401;2.04951;2.1457;3.16025;3.99112;4.632;2.67973;2.16824;1.87806;1.64962;1.24011;1.08801;1.01755;0.882837;0.544739;0.35041;0.210557;0.21896;0.153009;0.119006;0.090353;0.05662;0.038704;0.026704;0.021882;0.018497;0.015596;0.012142;0.009042;0.007417;0.006383;0.005652;0.640475;0.660486;0.701954;0.761912;1.19783;1.13168;2.32041;1.695;1.69886;1.3638;1.65607;1.77521;1.80931;1.64849;1.35091;1.06752;1.00686;0.883228;0.785942;0.499545;0.578182;0.360012;0.231426;0.185271;0.11673;0.051778;0.046563;0.030809;0.027418;0.022745;0.015741;0.010632;0.008463;0.007148;0.0058;0.004916;1.13173;1.13984;1.14533;1.17876;1.54163;1.59219;2.0246;3.33206;4.17567;4.06998;2.7605;2.00954;1.85837;1.6313;1.1181;0.985056;0.837747;0.680884;0.653756;0.436054;0.50843;0.251342;0.146262;0.07343;0.055899;0.040918;0.032142;0.026708;0.021703;0.018281;0.013996;0.010834;0.008305;0.006757;0.005933;0.005241;0.9785225;0.9971055;1.05914;1.09402;1.215255;1.507605;2.240115;2.320985;3.016915;3.353035;2.42539;1.77633;1.821555;1.649055;1.30618;1.077765;1.03164;0.91257;0.687111;0.4121085;0.4252045;0.307595;0.1986595;0.163073;0.1103065;0.0536685;0.0440945;0.030014;0.0253575;0.021398;0.0155595;0.0109455;0.0086485;0.0072465;0.0060085;0.0051165;1.35656;1.36542;1.42753;1.52765;1.5571;2.08194;2.53313;3.16025;4.00492;4.64262;2.82224;2.17937;2.1911;2.07696;1.8063;1.43756;1.35166;1.18962;0.799239;0.575045;0.578181;0.385412;0.241653;0.185271;0.127385;0.074723;0.049566;0.034752;0.027418;0.022778;0.018317;0.013874;0.01031;0.008276;0.007156;0.006333;0.632935;0.648639;0.691211;0.697533;1.04331;0.979579;1.63846;1.34489;1.3672;1.3638;1.65607;1.58609;1.27533;0.916019;0.690567;0.893624;0.759991;0.828219;0.437274;0.288039;0.210557;0.21896;0.153009;0.085521;0.066051;0.041894;0.03284;0.022436;0.017823;0.014564;0.01134;0.007665;0.006059;0.004625;0.003704;0.003138
+137;EMSC-20041205_0000033;2004-12-05 01:52:35;7445791.0;usp000da1z;;20041205_0000033;DE;48.1039;7.9208;10.0;ISC;SS;4.1;NAO;4.55;MED_RCMT;3.96;ISC;4.6;Mw;Ben-MKS12;109.0;70.0;-159.0;11.5204599273;70.3206623502;-43.8328409074;INGV;1652;;;;;;;;;;;CH;BOURR;0;HG;0.0;;;;CH;47.39377;7.23018;860.0;;;;;;;;9.45237;798.192221;94.4;33.0;;;;;D;0.0;E;90.0;N;0.0;Z;0.1;0.1;0.1;30.0;30.0;30.0;0.933588;-0.903275;1.363412;0.9184315;1.181392;0.715785;-0.059484;-0.086643;-0.064505;0.071531;0.0954936;0.0415357;0.012134;-0.012209;-0.005881;0.0114192;0.0122841;0.00850845;29.935;33.585;29.645;33.32;35.225;29.795;0.229703;0.249143;0.206226;0.233041;0.255186;0.211776;5.35216837554;5.53196384215;6.77535861119;5.43108995119;5.72118679427;5.04183708191;0.0015883005521;0.00160378985571;0.00283456240215;0.00159604520391;0.00193621274648;0.00125587759098;0.935893;0.949802;0.959282;1.00161;1.45412;1.78334;1.68416;2.27418;2.14207;2.02017;2.23576;3.05081;2.63354;2.80132;1.80522;1.25237;1.05088;0.799434;0.973515;0.638142;0.384222;0.474005;0.264489;0.227162;0.260231;0.107774;0.077822;0.058496;0.062459;0.047816;0.03085;0.017001;0.011976;0.010243;0.008611;0.007668;0.910093;0.947384;1.11161;1.09735;1.92027;2.11194;2.63659;1.74577;2.86715;2.38065;2.02636;1.73261;2.15265;2.48505;1.9046;1.22636;1.10119;0.943616;0.695867;0.491136;0.500896;0.49487;0.493953;0.380574;0.278165;0.146753;0.100744;0.081699;0.067844;0.056742;0.033941;0.023115;0.013621;0.010335;0.008232;0.006634;1.36463;1.38788;1.54441;1.72013;2.38834;3.15515;2.99034;3.86934;4.90668;4.31322;3.25993;2.52539;2.38451;1.73855;1.43929;0.720499;0.638311;0.643506;0.546077;0.36153;0.382491;0.284422;0.199323;0.228996;0.2131;0.113445;0.061142;0.029135;0.02074;0.017874;0.012138;0.008139;0.006669;0.00556;0.004758;0.004132;0.922993;0.948593;1.039325;1.062655;1.78373;1.9513;1.89735;2.06987;2.585585;2.14911;2.14795;2.323245;2.401565;2.6659;1.87477;1.236885;1.03818;0.845779;0.837682;0.581876;0.4378425;0.47412;0.374715;0.283238;0.273032;0.132161;0.091432;0.073208;0.0651535;0.052334;0.0332385;0.0198465;0.013009;0.010255;0.008368;0.0069755;1.18365;1.19747;1.25214;1.34258;1.97408;2.3386;2.66875;2.37723;3.26789;2.88457;2.42828;3.26455;3.25087;3.72745;2.07703;1.40302;1.1528;1.04898;0.979875;0.656558;0.509178;0.551709;0.496613;0.383056;0.317372;0.161092;0.103509;0.082571;0.091495;0.07084;0.041735;0.025632;0.015638;0.011408;0.009204;0.007891;0.716481;0.728238;0.761955;0.820129;1.41659;1.43884;1.57797;1.45615;2.08751;1.52335;1.75103;1.60304;1.60397;1.77162;1.07136;0.757179;0.751087;0.634146;0.608964;0.441342;0.354001;0.428701;0.259616;0.163305;0.124713;0.104898;0.064878;0.040953;0.026632;0.022676;0.01933;0.012368;0.009011;0.00698;0.005959;0.005305
+138;EMSC-20041205_0000033;2004-12-05 01:52:35;7445791.0;usp000da1z;;20041205_0000033;DE;48.1039;7.9208;10.0;ISC;SS;4.1;NAO;4.55;MED_RCMT;3.96;ISC;4.6;Mw;Ben-MKS12;109.0;70.0;-159.0;11.5204599273;70.3206623502;-43.8328409074;INGV;1652;;;;;;;;;;;CH;DIX;0;HG;0.0;;;;CH;46.08007;7.40815;2410.0;;;;;;;;31.079867;1427.234491;228.3;9.6;;;;;D;0.0;E;90.0;N;0.0;Z;0.2;0.2;0.2;30.0;30.0;30.0;-0.11212;-0.101653;-0.094572;0.1113805;0.120916;0.094231;-0.006039;0.006847;0.005925;0.006152295;0.00691226;0.00544175;-0.001476;0.000883;-0.001628;0.00119645;0.00148137;0.000838448;44.345;40.665;49.43;42.4275;44.865;39.36;0.0286746;0.0248169;0.0269566;0.0266849;0.0289748;0.0237003;0.908815370016;0.932061050181;0.864725630044;0.922844787535;0.958631339512;0.883967439579;3.1079558287e-05;3.29460275627e-05;2.52573850513e-05;3.20127856223e-05;3.40236590387e-05;3.0001893009e-05;0.112443;0.114545;0.126133;0.128443;0.193505;0.187852;0.281629;0.431241;0.30074;0.221605;0.288597;0.277498;0.184884;0.175499;0.124011;0.098999;0.104355;0.09469;0.095673;0.094401;0.077716;0.056835;0.030247;0.042464;0.043625;0.018539;0.010417;0.010856;0.00994;0.007311;0.005272;0.002709;0.001802;0.001279;0.00095;0.000771;0.101783;0.103749;0.111552;0.122485;0.154036;0.218024;0.347653;0.320839;0.28716;0.267823;0.22693;0.218013;0.176105;0.162779;0.14784;0.101431;0.11009;0.104794;0.075323;0.065833;0.06307;0.049198;0.045233;0.028219;0.021965;0.019254;0.012813;0.005485;0.006016;0.005697;0.003131;0.00168;0.001218;0.000802;0.000629;0.000492;0.094838;0.096398;0.107045;0.101942;0.122461;0.200329;0.235552;0.277239;0.287798;0.179742;0.202454;0.192994;0.28318;0.163002;0.110133;0.074284;0.062665;0.085277;0.070015;0.058711;0.075073;0.049001;0.043944;0.045493;0.044352;0.020421;0.015939;0.009502;0.006581;0.005143;0.003302;0.002157;0.001445;0.001143;0.000939;0.00076;0.1115655;0.114323;0.120108;0.128522;0.154328;0.2099445;0.3157905;0.383408;0.2877455;0.2368885;0.243481;0.2357805;0.1941555;0.1670305;0.1327055;0.100215;0.1087285;0.102235;0.0822555;0.08179;0.0710085;0.0511825;0.0383835;0.036602;0.033486;0.018188;0.010492;0.0091135;0.007157;0.006831;0.004285;0.002235;0.0014745;0.001085;0.0008685;0.000695;0.121079;0.124902;0.137176;0.14141;0.199529;0.239356;0.401452;0.433293;0.311954;0.310409;0.307655;0.307647;0.223483;0.175899;0.152706;0.11992;0.120868;0.139716;0.099965;0.102052;0.089576;0.058238;0.047693;0.044221;0.043868;0.019511;0.013211;0.010879;0.010051;0.007501;0.005272;0.002712;0.001824;0.001309;0.00096;0.000774;0.094232;0.096018;0.102067;0.112579;0.135994;0.166614;0.234578;0.320762;0.223605;0.216925;0.214149;0.203565;0.167664;0.131547;0.108736;0.077176;0.085695;0.06853;0.057371;0.041561;0.044265;0.040903;0.030247;0.028219;0.020964;0.013359;0.009527;0.005486;0.005831;0.00395;0.002724;0.001513;0.001029;0.000801;0.000621;0.000479
+139;EMSC-20041205_0000033;2004-12-05 01:52:35;7445791.0;usp000da1z;;20041205_0000033;DE;48.1039;7.9208;10.0;ISC;SS;4.1;NAO;4.55;MED_RCMT;3.96;ISC;4.6;Mw;Ben-MKS12;109.0;70.0;-159.0;11.5204599273;70.3206623502;-43.8328409074;INGV;1652;;;;;;;;;;;CH;EMV;0;HG;0.0;;;;CH;46.06318;6.89883;2210.0;;;;;;;;25.331172;1240.663843;239.8;18.5;;;;;D;0.0;E;90.0;N;0.0;Z;0.1;0.1;0.1;30.0;30.0;30.0;-0.231992;0.172522;-0.175693;0.1980625;0.275948;0.172522;0.008785;-0.008572;0.005847;0.008362635;0.00942279;0.00759553;-0.002548;0.001975;-0.001052;0.002297275;0.00325305;0.000857664;37.585;43.3;46.76;41.7125;43.94;36.205;0.0402304;0.0297568;0.0236943;0.03514355;0.042221;0.0265857;1.3432188954;1.30970485535;1.11312003996;1.3273582521;1.40642567942;1.25467329984;7.92654050922e-05;7.08725743817e-05;4.47723671554e-05;7.50689847727e-05;8.44658617604e-05;6.56721147691e-05;0.232637;0.241585;0.269111;0.317073;0.509095;0.669008;0.568837;0.358926;0.441902;0.368645;0.367095;0.53305;0.524978;0.383274;0.214943;0.152439;0.136881;0.120995;0.141839;0.148567;0.104477;0.064381;0.058697;0.038937;0.033833;0.027133;0.029486;0.015682;0.009848;0.010083;0.009835;0.007014;0.003993;0.002855;0.002029;0.00172;0.173276;0.180419;0.21739;0.269402;0.466015;0.465026;0.47115;0.760392;0.431002;0.321197;0.265244;0.339109;0.290171;0.2022;0.212975;0.134944;0.135832;0.11833;0.123029;0.082554;0.061012;0.043498;0.040324;0.021096;0.02395;0.02852;0.022057;0.011375;0.009657;0.009263;0.006915;0.004069;0.00253;0.001633;0.001481;0.001204;0.177468;0.184826;0.212013;0.221098;0.329691;0.381016;0.330226;0.419429;0.423666;0.345367;0.234807;0.25261;0.207265;0.16198;0.133234;0.174908;0.127213;0.095356;0.091134;0.077271;0.040037;0.030826;0.044125;0.025644;0.02432;0.016113;0.013085;0.01006;0.009077;0.006223;0.004153;0.001966;0.001651;0.000974;0.000896;0.000833;0.198924;0.206029;0.244784;0.2952935;0.472401;0.5304935;0.471769;0.6101515;0.462146;0.3879225;0.3605;0.40788;0.402319;0.276625;0.213959;0.1441535;0.1363565;0.1196625;0.13235;0.1136425;0.0867785;0.0507205;0.0451445;0.033671;0.0312525;0.0278265;0.026701;0.012919;0.0097525;0.009674;0.008503;0.00566;0.0032685;0.0023655;0.001755;0.0014665;0.276427;0.284843;0.333652;0.411373;0.519638;0.750231;0.597214;0.766135;0.597175;0.473133;0.395812;0.53305;0.564444;0.390919;0.240006;0.17273;0.17829;0.147357;0.143946;0.154894;0.11485;0.066321;0.060742;0.042325;0.036914;0.038101;0.030573;0.01817;0.012201;0.013646;0.01198;0.007518;0.004319;0.003248;0.002448;0.002043;0.173276;0.180419;0.210763;0.226766;0.377409;0.408457;0.423712;0.346435;0.42321;0.316246;0.233441;0.254234;0.26382;0.182986;0.18378;0.109062;0.096549;0.099935;0.077991;0.05417;0.048776;0.042635;0.030797;0.017942;0.018483;0.016575;0.012663;0.00968;0.005397;0.00381;0.002118;0.001484;0.001155;0.000937;0.000698;0.000555
+140;EMSC-20041205_0000033;2004-12-05 01:52:35;7445791.0;usp000da1z;;20041205_0000033;DE;48.1039;7.9208;10.0;ISC;SS;4.1;NAO;4.55;MED_RCMT;3.96;ISC;4.6;Mw;Ben-MKS12;109.0;70.0;-159.0;11.5204599273;70.3206623502;-43.8328409074;INGV;1652;;;;;;;;;;;CH;LIENZ;0;HG;0.0;;;;CH;47.2946;9.4927;1720.0;;;;;;;;10.802799;833.262139;148.4;307.9;;;;;D;0.0;E;90.0;N;0.0;Z;0.07;0.07;0.07;30.0;30.0;30.0;-2.616299;-2.399381;1.362253;2.5014795;3.321209;1.816421;-0.086074;0.087153;0.087284;0.0902205;0.099547;0.0777045;-0.008132;-0.00932;0.009694;0.0088629;0.0101113;0.00649366;7.42;8.31;18.135;7.7275;8.44;7.41;0.222925;0.251019;0.260339;0.235682;0.258852;0.219753;5.97947566786;5.64091552204;4.72966950759;5.80919092532;5.99740030032;5.64091552204;0.00468201946858;0.00357887793237;0.00205934681933;0.00413044847381;0.00474446837657;0.00351642892618;2.618;2.7096;2.95446;3.37477;5.45244;7.91385;8.35089;4.60194;4.57399;5.11112;3.03132;3.56859;2.98599;3.26121;1.47318;1.41013;1.22768;1.03099;0.782271;0.560234;0.341418;0.229248;0.147631;0.120125;0.121813;0.089837;0.05013;0.038472;0.026815;0.02404;0.023363;0.016776;0.012176;0.01052;0.008836;0.007487;2.39954;2.46951;2.75279;2.99898;4.96301;4.74753;6.38968;4.34;3.72217;4.30041;4.75912;3.58762;2.37755;2.43556;1.65875;1.3091;1.26122;1.12931;0.80276;0.590775;0.469631;0.296133;0.329326;0.262298;0.203653;0.153455;0.079301;0.045486;0.038683;0.030917;0.02299;0.015735;0.011911;0.009593;0.008413;0.00703;1.36385;1.4051;1.60525;2.25144;3.12759;2.7666;3.44777;2.79022;2.42178;3.31785;3.56854;2.59263;1.56563;1.97448;2.05604;1.70809;1.97242;2.0658;1.44566;1.07112;0.670756;0.459603;0.265213;0.169818;0.135655;0.08617;0.063305;0.043168;0.030909;0.025961;0.020865;0.015243;0.011742;0.009461;0.007925;0.006928;2.50717;2.585885;2.860445;3.19375;5.2891;6.26286;7.4497;4.72903;4.386515;4.66286;4.421675;3.593755;2.490855;2.578255;1.46758;1.361985;1.247325;1.11392;0.789004;0.581604;0.454952;0.278897;0.256252;0.1925335;0.163261;0.1181;0.0643205;0.0432135;0.0332905;0.0268625;0.0231765;0.0160435;0.0122755;0.009617;0.0080585;0.006791;3.32916;3.4442;3.57561;4.14152;6.45423;8.02448;9.30997;5.31094;4.86414;5.32854;5.48564;4.32402;3.14547;3.3089;1.66898;1.48;1.38887;1.17577;0.879106;0.70962;0.504791;0.307393;0.329326;0.269388;0.208398;0.162416;0.082574;0.057309;0.046876;0.037818;0.027665;0.019212;0.013995;0.01075;0.009171;0.007815;1.81655;1.88891;2.25965;2.44862;3.75862;4.0206;4.17302;4.13605;3.24764;2.63988;3.03132;2.82957;2.1207;2.0705;1.34192;1.14831;1.00005;1.0118;0.730131;0.539532;0.341405;0.198105;0.144044;0.120125;0.088664;0.063947;0.041335;0.026993;0.021709;0.018668;0.01513;0.012246;0.009579;0.008073;0.006995;0.00596
+141;EMSC-20041205_0000033;2004-12-05 01:52:35;7445791.0;usp000da1z;;20041205_0000033;DE;48.1039;7.9208;10.0;ISC;SS;4.1;NAO;4.55;MED_RCMT;3.96;ISC;4.6;Mw;Ben-MKS12;109.0;70.0;-159.0;11.5204599273;70.3206623502;-43.8328409074;INGV;1652;;;;;;;;;;;CH;LLS;0;HG;0.0;;;;CH;46.84676;9.00825;1860.0;;;;;;;;14.107671;920.515084;162.0;330.0;;;;;D;0.0;E;90.0;N;0.0;Z;0.2;0.2;0.2;30.0;30.0;30.0;0.595501;-0.563773;-0.747704;0.560413;0.602387;0.464939;0.010744;-0.010608;0.021198;0.0107058;0.0114636;0.0103339;-0.00107;-0.001669;0.001749;0.00133187;0.00175406;0.000932493;22.8;21.855;16.825;22.1975;26.02;19.545;0.033967;0.0370823;0.0549694;0.0364656;0.0379083;0.0336902;2.3402396694;2.32468011567;2.52084636119;2.33442555293;2.38849241052;2.26099904545;0.000345484440415;0.00033119811465;0.000485339584857;0.000338341329045;0.000382784334676;0.000293898187945;0.606066;0.65571;0.978397;1.20346;1.96078;1.6629;1.16881;1.18852;0.76064;0.683312;0.572734;0.386664;0.239042;0.193744;0.166522;0.17528;0.176104;0.136044;0.086833;0.060036;0.07587;0.080825;0.056461;0.025444;0.019662;0.014144;0.006517;0.005915;0.004288;0.003692;0.002615;0.002033;0.001447;0.00127;0.00101;0.000844;0.569218;0.610262;0.874005;1.17258;1.75332;2.07274;1.26973;0.887479;0.577319;0.428654;0.285915;0.18485;0.147371;0.19153;0.202435;0.127769;0.114753;0.122378;0.095828;0.110898;0.099213;0.093631;0.06854;0.039862;0.030242;0.020997;0.01485;0.007613;0.004738;0.003887;0.002957;0.002492;0.001689;0.001316;0.001057;0.000904;0.751323;0.784364;1.24851;1.58639;2.26932;1.52834;2.96466;1.60823;1.4813;0.786266;0.654364;0.499949;0.415164;0.363523;0.231018;0.18706;0.157814;0.149339;0.15913;0.1377;0.120004;0.103878;0.09702;0.063956;0.049084;0.020158;0.014523;0.011767;0.008747;0.006357;0.004481;0.003214;0.002508;0.002025;0.001737;0.001536;0.5663195;0.6105125;0.892998;1.18607;1.819395;1.817155;1.252565;0.971821;0.6977755;0.570893;0.433628;0.2986225;0.2142535;0.192637;0.2173095;0.1518825;0.147156;0.131284;0.1032505;0.103546;0.084423;0.086186;0.0601205;0.036541;0.0256325;0.01786;0.011055;0.006327;0.00455;0.003698;0.002842;0.0021765;0.0015275;0.0012485;0.001006;0.0008475;0.606066;0.663809;1.0182;1.30479;1.96904;2.07274;1.30706;1.27387;0.774026;0.787531;0.602694;0.393162;0.250989;0.227774;0.232384;0.17528;0.176767;0.138195;0.112168;0.119757;0.101041;0.097157;0.073906;0.043042;0.034201;0.021784;0.014885;0.007662;0.004978;0.004214;0.003216;0.002692;0.001791;0.001411;0.001099;0.000917;0.470481;0.503931;0.750428;0.910224;1.37739;1.65407;1.1604;0.550743;0.545811;0.276576;0.219339;0.173945;0.141965;0.153811;0.166522;0.12062;0.109477;0.118389;0.0859;0.060036;0.048764;0.066703;0.051359;0.023406;0.016109;0.009719;0.006302;0.005626;0.004288;0.003349;0.002325;0.001637;0.001281;0.001125;0.000902;0.000757
+142;EMSC-20041205_0000033;2004-12-05 01:52:35;7445791.0;usp000da1z;;20041205_0000033;DE;48.1039;7.9208;10.0;ISC;SS;4.1;NAO;4.55;MED_RCMT;3.96;ISC;4.6;Mw;Ben-MKS12;109.0;70.0;-159.0;11.5204599273;70.3206623502;-43.8328409074;INGV;1652;;;;;;;;;;;CH;MMK;0;HG;0.0;;;;CH;46.05053;7.96399;2210.0;;;;;;;;27.968269;1323.766371;228.3;359.2;;;;;D;0.0;E;90.0;N;0.0;Z;0.1;0.1;0.1;30.0;30.0;30.0;-0.279079;-0.215567;0.173393;0.2487415;0.351595;0.156445;0.009834;0.012551;0.011612;0.01135285;0.0129677;0.0072792;-0.001604;-0.001285;0.001779;0.001450015;0.00170738;0.00119127;25.19;31.33;39.83;26.8425;35.345;24.16;0.0354844;0.0363047;0.0395316;0.03589455;0.042727;0.0291093;1.43593800999;1.47667962944;1.37957020537;1.4560641695;1.61834783014;1.28024688021;0.000106661052327;0.000103112134893;7.79262147736e-05;0.00010488659361;0.00013813107717;7.16421101074e-05;0.279357;0.289559;0.31981;0.332629;0.452011;0.580126;1.08545;0.648483;0.489078;0.359006;0.310053;0.28262;0.278288;0.227192;0.193007;0.216305;0.169957;0.146539;0.118998;0.136611;0.103442;0.07615;0.052602;0.03147;0.027539;0.016213;0.011109;0.009697;0.012239;0.010002;0.006404;0.003117;0.002805;0.002342;0.001468;0.001003;0.217234;0.224549;0.245124;0.277261;0.395967;0.648722;0.793935;0.862591;0.563753;0.592138;0.46044;0.347508;0.336554;0.26579;0.208896;0.201944;0.161864;0.135063;0.10565;0.129269;0.1048;0.05814;0.043473;0.027503;0.027213;0.020225;0.015787;0.007673;0.0045;0.003145;0.002602;0.001978;0.001678;0.001544;0.001444;0.001043;0.173828;0.176009;0.188522;0.205498;0.261316;0.507125;0.520795;0.514057;0.494349;0.430582;0.428399;0.359074;0.35701;0.279129;0.209069;0.146131;0.131783;0.145465;0.125262;0.100218;0.110199;0.090007;0.055738;0.042971;0.031767;0.02527;0.017383;0.012837;0.008528;0.006162;0.004664;0.002918;0.002752;0.002016;0.001619;0.001365;0.250092;0.258857;0.284693;0.306197;0.416623;0.632212;0.9468395;0.674066;0.530288;0.5031215;0.370225;0.3382415;0.3114225;0.2389965;0.2070795;0.2015645;0.171915;0.1425765;0.115445;0.13294;0.101252;0.067024;0.0487355;0.030253;0.0273765;0.0182565;0.0130865;0.0085975;0.0103935;0.0078835;0.0051265;0.002588;0.002219;0.0019595;0.0015215;0.001046;0.352275;0.364565;0.400578;0.433028;0.556837;0.746474;1.19504;0.890447;0.570976;0.651341;0.489118;0.39155;0.353639;0.304882;0.242878;0.222881;0.188662;0.151207;0.134378;0.173279;0.118939;0.085761;0.064716;0.038503;0.035291;0.022914;0.015926;0.009744;0.012557;0.010041;0.00645;0.003157;0.002807;0.002522;0.00172;0.001126;0.157091;0.161175;0.176798;0.178772;0.292879;0.541292;0.474589;0.556767;0.428432;0.301153;0.286919;0.230318;0.23387;0.216755;0.156323;0.158926;0.133925;0.122735;0.079433;0.067398;0.073414;0.048082;0.036304;0.026647;0.019931;0.014762;0.010753;0.007277;0.004433;0.003144;0.002602;0.001978;0.001447;0.001296;0.001328;0.000958
+143;EMSC-20041205_0000033;2004-12-05 01:52:35;7445791.0;usp000da1z;;20041205_0000033;DE;48.1039;7.9208;10.0;ISC;SS;4.1;NAO;4.55;MED_RCMT;3.96;ISC;4.6;Mw;Ben-MKS12;109.0;70.0;-159.0;11.5204599273;70.3206623502;-43.8328409074;INGV;1652;;;;;;;;;;;CH;SENIN;0;HG;0.0;;;;CH;46.36335;7.2993;2035.0;;;;;;;;8.237756;766.884757;199.1;13.4;;;;;D;0.0;E;90.0;N;0.0;Z;0.1;0.1;0.1;30.0;30.0;30.0;-0.240612;-0.229821;-0.247234;0.236113;0.271996;0.187623;0.02556;-0.020676;-0.013049;0.02352545;0.0262634;0.0122721;0.00583;0.003302;-0.003498;0.004626945;0.006083;0.00188518;27.925;28.29;35.63;28.1075;34.45;23.01;0.0935735;0.0689363;0.0685166;0.08242675;0.0982868;0.0535266;1.3309874303;1.37240388495;1.49274164993;1.35330284546;1.39827190489;1.26553760504;8.76086476522e-05;9.18085551191e-05;9.90139976918e-05;8.97086118843e-05;0.000105098528824;7.43186572246e-05;0.241496;0.248759;0.270922;0.32618;0.399676;0.444177;0.543155;0.67991;0.75506;0.37738;0.346564;0.302065;0.386826;0.455465;0.442666;0.260621;0.259089;0.248207;0.22393;0.210947;0.226465;0.224878;0.184841;0.152965;0.147391;0.129199;0.075685;0.043478;0.026523;0.020626;0.01486;0.009976;0.006702;0.004951;0.0038;0.003168;0.230057;0.236203;0.247377;0.259757;0.403606;0.421277;0.559699;0.568414;0.664714;0.509151;0.278842;0.424209;0.511497;0.457112;0.411697;0.346104;0.348006;0.369139;0.290536;0.276753;0.201894;0.156837;0.078277;0.05717;0.066043;0.05226;0.027085;0.019339;0.013218;0.009434;0.007138;0.005213;0.00301;0.002663;0.002116;0.00188;0.247239;0.257459;0.276919;0.271604;0.406476;0.498118;0.711242;0.435166;0.569527;0.426611;0.421585;0.42918;0.34117;0.390118;0.355583;0.227273;0.192044;0.188624;0.204248;0.182207;0.186432;0.108632;0.12272;0.109663;0.090946;0.08549;0.036128;0.019183;0.015112;0.011669;0.00931;0.005455;0.003437;0.002664;0.002078;0.002144;0.2371665;0.244227;0.261495;0.2927295;0.3905025;0.408796;0.5611195;0.6028135;0.718469;0.4536035;0.347339;0.3619425;0.42425;0.449855;0.416592;0.2872695;0.279344;0.2870755;0.2265095;0.2209715;0.217274;0.202178;0.1373785;0.113016;0.108184;0.0974625;0.058501;0.032573;0.0202785;0.0157425;0.0114435;0.007618;0.0052145;0.0039355;0.003096;0.0026325;0.272102;0.281104;0.30043;0.34738;0.406363;0.444177;0.640771;0.685956;0.931157;0.50935;0.383654;0.427968;0.526348;0.508618;0.459938;0.391799;0.358547;0.369139;0.297114;0.276753;0.274694;0.252558;0.189535;0.159718;0.15266;0.136414;0.0797;0.04438;0.028063;0.021533;0.015519;0.010635;0.007229;0.005348;0.004066;0.003447;0.187915;0.190922;0.194894;0.20634;0.289157;0.326427;0.482834;0.519635;0.445311;0.336213;0.246207;0.236327;0.368127;0.363284;0.388107;0.220828;0.238531;0.198736;0.184219;0.19298;0.12827;0.068903;0.045537;0.044031;0.056408;0.02843;0.020928;0.013949;0.008089;0.005455;0.004133;0.002669;0.002269;0.001717;0.001453;0.001152
+144;EMSC-20041205_0000033;2004-12-05 01:52:35;7445791.0;usp000da1z;;20041205_0000033;DE;48.1039;7.9208;10.0;ISC;SS;4.1;NAO;4.55;MED_RCMT;3.96;ISC;4.6;Mw;Ben-MKS12;109.0;70.0;-159.0;11.5204599273;70.3206623502;-43.8328409074;INGV;1652;;;;;;;;;;;CH;SULZ;0;HG;0.0;;;;CH;47.52748;8.11153;650.0;;;;;;;;9.170824;790.916565;65.7;347.5;;;;;D;0.0;E;90.0;N;0.0;Z;0.1;0.1;0.1;30.0;30.0;30.0;6.009712;-4.382713;-3.435094;4.8636185;6.410932;4.153554;0.328157;0.170836;-0.13023;0.2597835;0.358565;0.167091;-0.033725;0.013869;-0.008288;0.02457535;0.0345844;0.0115008;10.375;12.005;19.705;11.065;12.005;10.035;0.761597;0.490582;0.316018;0.653594;0.79167;0.459537;13.7866139964;13.0532688918;11.6148833094;13.5579946946;13.8517231516;13.0163798295;0.0229446595907;0.0169448680872;0.0125474647785;0.0199447633972;0.0232708586014;0.0166186680592;6.04565;6.26209;6.80815;9.51661;10.3526;14.3883;13.561;9.54048;9.26639;14.0898;14.3884;12.2029;8.39031;6.37527;3.19574;2.48388;2.52122;2.65234;2.91961;3.22487;1.96387;1.60039;1.00697;0.708491;0.553627;0.304771;0.1783;0.119912;0.096609;0.083844;0.069655;0.05221;0.040799;0.032995;0.027412;0.023321;4.42002;4.66858;6.05392;7.67436;8.08412;10.3862;9.17771;10.8168;10.2986;8.72486;9.98785;6.9629;6.40395;4.48325;3.05585;2.88276;2.22199;2.14224;1.93182;1.79094;1.28666;0.765017;0.386515;0.285302;0.215387;0.120947;0.079137;0.051945;0.045617;0.039858;0.033505;0.025142;0.018462;0.013824;0.012037;0.01071;3.46652;4.15413;6.49703;8.89908;7.34884;4.99997;8.42763;6.1404;9.53501;11.7364;10.0379;5.67649;5.60897;2.44113;2.15667;2.44509;1.6217;1.39119;1.03884;0.799489;0.46008;0.260382;0.224703;0.206805;0.139759;0.069969;0.046983;0.037959;0.031577;0.026339;0.024149;0.020339;0.015194;0.012196;0.010532;0.009403;4.894955;5.063095;6.565665;8.12455;8.721995;10.97845;10.5282;10.00197;9.61506;11.40695;13.7351;10.67545;7.991945;5.17907;3.16191;2.68103;2.52079;2.426555;2.79094;2.4665;1.60809;1.27137;0.8124215;0.5605605;0.4220225;0.2290655;0.146046;0.101733;0.0758575;0.0661195;0.055656;0.0407295;0.0307935;0.0244365;0.0202155;0.0172385;6.4299;6.63202;7.25045;9.93729;10.8484;14.5717;13.6966;11.3779;10.3765;15.7747;16.4512;13.4163;8.88136;6.70964;3.526;3.39361;2.77362;2.95446;3.21664;3.29068;2.00159;1.65354;1.04984;0.718054;0.561276;0.309847;0.185227;0.128194;0.100238;0.086735;0.072137;0.054187;0.042254;0.034251;0.028551;0.024348;4.16205;4.26927;5.89551;6.61713;7.39605;9.74536;8.8595;8.46774;8.04877;7.65236;9.49859;6.62291;5.98259;4.41059;2.47708;2.16062;2.08389;2.08024;1.77387;1.60962;0.812311;0.493348;0.273387;0.240435;0.151763;0.086477;0.05742;0.05017;0.045077;0.037804;0.033085;0.023584;0.018375;0.013435;0.011106;0.009976
+145;EMSC-20041205_0000033;2004-12-05 01:52:35;7445791.0;usp000da1z;;20041205_0000033;DE;48.1039;7.9208;10.0;ISC;SS;4.1;NAO;4.55;MED_RCMT;3.96;ISC;4.6;Mw;Ben-MKS12;109.0;70.0;-159.0;11.5204599273;70.3206623502;-43.8328409074;INGV;1652;;;;;;;;;;;CH;VDL;0;HG;0.0;1.0;DAM;;CH;46.48318;9.44956;1927.0;A*;GEO;ESM;;;;;17.319793;1007.775526;214.1;327.9;;;;;D;0.0;E;90.0;N;0.0;Z;0.2;0.2;0.2;30.0;30.0;30.0;-0.204178;-0.206545;-0.176855;0.2101995;0.223877;0.165381;-0.006101;0.009056;-0.007504;0.007770945;0.00919018;0.00604699;0.000536;-0.000747;0.000803;0.0007165325;0.000799165;0.000507386;44.83;45.675;47.835;45.4325;49.05;41.115;0.0180409;0.026582;0.0270212;0.0226236;0.0266691;0.0178671;1.68004501491;1.98561782498;1.72090583977;1.82035859753;1.98912703875;1.67879243;0.000105113540366;0.000148400142704;0.000105303595767;0.000126756837072;0.000152221533315;0.000101292184947;0.204324;0.209991;0.228966;0.236385;0.456725;0.429146;0.7646;0.611374;0.481532;0.434924;0.291169;0.262016;0.166843;0.125238;0.132828;0.114307;0.097009;0.083861;0.047411;0.043068;0.038447;0.024114;0.014808;0.010569;0.010182;0.00959;0.005776;0.004778;0.002628;0.002304;0.001604;0.000847;0.000693;0.000568;0.000533;0.000458;0.208009;0.216909;0.251202;0.288022;0.413631;0.368159;0.675096;0.655352;0.480437;0.447544;0.300694;0.214469;0.172384;0.195875;0.219439;0.217109;0.194854;0.138774;0.076129;0.061182;0.043815;0.03896;0.030379;0.026334;0.022834;0.01057;0.011858;0.006225;0.004991;0.003986;0.0022;0.001583;0.001056;0.000835;0.000728;0.000578;0.178187;0.185075;0.221554;0.307399;0.320614;0.55004;0.666288;0.569195;0.379295;0.270572;0.241279;0.171386;0.194734;0.244909;0.194948;0.24059;0.181715;0.14162;0.10582;0.080777;0.054989;0.043899;0.032182;0.026639;0.021785;0.009382;0.012027;0.00683;0.004317;0.003335;0.002437;0.001725;0.001033;0.00077;0.000618;0.000516;0.210743;0.219163;0.2391325;0.2586715;0.4296935;0.3923505;0.6900255;0.629402;0.4809845;0.445322;0.286818;0.2261925;0.181563;0.1853005;0.2062975;0.1756445;0.15474;0.1173845;0.0581035;0.046544;0.039046;0.0317795;0.0220925;0.0193665;0.01668;0.010242;0.0093775;0.005818;0.004092;0.002888;0.001896;0.0014295;0.000965;0.0008035;0.0006545;0.000544;0.224607;0.235058;0.267768;0.314886;0.497448;0.483645;0.779577;0.717834;0.555636;0.517108;0.306969;0.276971;0.206296;0.218797;0.237015;0.224563;0.195711;0.142286;0.07649;0.06185;0.04589;0.04017;0.030379;0.026582;0.022834;0.012653;0.0122;0.007578;0.005274;0.004009;0.002215;0.001636;0.001255;0.000963;0.000744;0.000592;0.166142;0.171711;0.217924;0.234001;0.355289;0.336072;0.618391;0.491377;0.374453;0.400461;0.221279;0.199942;0.161659;0.103554;0.132019;0.093625;0.095662;0.078829;0.046273;0.037014;0.034849;0.023576;0.014808;0.009648;0.009112;0.005842;0.005166;0.004119;0.002517;0.002169;0.001484;0.000848;0.000694;0.000567;0.000514;0.000451
+146;EMSC-20041205_0000033;2004-12-05 01:52:35;7445791.0;usp000da1z;;20041205_0000033;DE;48.1039;7.9208;10.0;ISC;SS;4.1;NAO;4.55;MED_RCMT;3.96;ISC;4.6;Mw;Ben-MKS12;109.0;70.0;-159.0;11.5204599273;70.3206623502;-43.8328409074;INGV;1652;;;;;;;;;;;CH;ZUR;0;HG;0.0;;;;CH;47.36921;8.58088;510.0;;;;;;;;11.491069;851.255326;95.5;329.0;;;;;D;0.0;E;90.0;N;0.0;Z;0.1;0.1;0.1;30.0;30.0;30.0;-7.697312;-5.077195;2.305535;5.9768395;7.914559;3.59571;-0.218138;0.139441;0.062499;0.15464;0.218139;0.108345;-0.01147;-0.006089;0.005435;0.0091327;0.0127442;0.00497043;19.05;15.865;23.41;18.8075;24.46;11.34;0.343273;0.216375;0.160529;0.275854;0.356254;0.203487;15.163828526;10.284225305;8.30546125281;12.8939555148;15.242935687;10.114613313;0.0257069352388;0.00911173381788;0.0053486548028;0.0174093353478;0.0263552889638;0.00846337789887;7.72888;8.00023;8.39021;9.05611;12.4949;33.3718;24.0226;18.7476;8.79575;6.1835;4.46065;2.86072;3.10956;2.69885;1.75273;1.12117;1.0391;1.17017;1.31428;1.10304;0.723159;0.415883;0.289975;0.228624;0.191428;0.138787;0.074877;0.048874;0.048581;0.042663;0.029424;0.022579;0.018543;0.015811;0.01395;0.012785;5.09032;5.22758;5.58099;5.85374;6.75707;12.4143;14.9189;10.079;6.33237;4.95611;2.66377;1.65057;1.38774;1.57921;1.51584;1.19277;1.14481;1.08887;0.92623;0.590882;0.343278;0.224921;0.189428;0.151504;0.123173;0.077131;0.051905;0.03591;0.026501;0.025492;0.023979;0.018617;0.015135;0.012813;0.011291;0.009905;2.31676;2.69135;3.86236;7.00552;6.91057;5.40033;5.86094;6.80953;3.37875;2.10058;1.46645;1.23956;1.2918;1.23083;1.10807;0.849717;0.795359;0.788965;0.564549;0.424656;0.326313;0.209362;0.157421;0.1399;0.12129;0.064233;0.038536;0.033503;0.025896;0.021012;0.014031;0.010763;0.008428;0.006614;0.00565;0.004974;5.98388;6.193705;6.40161;7.15934;9.934435;24.2349;20.3487;14.94215;7.98806;5.353525;3.35126;2.43215;2.19879;2.17759;1.537685;1.15697;1.08508;1.11149;1.147995;0.9155275;0.5652705;0.3342025;0.2455;0.192358;0.159829;0.1115155;0.0651765;0.042286;0.038809;0.0336835;0.0264995;0.019793;0.016133;0.0134855;0.011465;0.0100975;7.9147;8.17321;8.47776;9.47039;12.6849;33.3896;27.1986;19.2314;9.18883;6.3168;4.54929;2.89823;3.10956;2.76055;1.8464;1.63264;1.49732;1.54012;1.43442;1.18549;0.796404;0.472503;0.342832;0.268262;0.223434;0.156098;0.082859;0.051499;0.053524;0.046575;0.031797;0.022634;0.018587;0.015891;0.013969;0.012793;3.5958;3.76839;4.13272;4.9238;6.07497;11.7049;8.90585;7.52075;4.89442;2.91738;2.05328;1.38079;1.32316;1.3513;1.35698;0.900106;0.771631;0.703656;0.508516;0.317364;0.249318;0.190356;0.130935;0.113502;0.087631;0.052354;0.038827;0.031047;0.026503;0.023888;0.020089;0.016273;0.013471;0.01137;0.009821;0.008467
+147;EMSC-20041205_0000033;2004-12-05 01:52:35;7445791.0;usp000da1z;;20041205_0000033;DE;48.1039;7.9208;10.0;ISC;SS;4.1;NAO;4.55;MED_RCMT;3.96;ISC;4.6;Mw;Ben-MKS12;109.0;70.0;-159.0;11.5204599273;70.3206623502;-43.8328409074;INGV;1652;;;;;;;;;;;RA;STBO;0;HN;0.0;;;;FR;47.8609;7.26216;240.0;A*;GEO;Regnier_et_al_2010;;;;;0.724029;332.499313;56.1;61.0;;;;;D;0.0;E;90.0;N;0.0;Z;0.1;0.1;0.1;30.0;30.0;30.0;-9.547789;10.986162;-4.809244;9.4902865;12.21096;8.499385;-0.199415;0.233031;0.072031;0.214059;0.234595;0.164233;0.020803;-0.013037;0.006363;0.01738765;0.0237165;0.0109838;17.92;14.405;18.56;15.9425;17.92;12.845;0.483327;0.439495;0.182054;0.46139;0.514367;0.395574;20.4193379209;20.3179790982;11.4228359656;20.3686585095;22.6385959221;17.8930933214;0.0505403422202;0.0599454588826;0.0151608187916;0.055242897921;0.0701549242285;0.0403308812986;9.72411;10.4941;13.6759;16.2067;28.7911;31.4097;17.3005;11.0445;6.05265;7.39779;6.77549;8.38801;5.71448;4.88865;5.0018;3.32596;2.82032;2.1556;1.62564;1.39697;0.702324;0.57926;0.667103;0.378123;0.270191;0.160554;0.161347;0.106365;0.074676;0.062258;0.051682;0.0424;0.033271;0.026152;0.021372;0.018159;11.0772;12.0388;15.0352;23.4479;31.1464;35.9327;13.5081;12.2858;6.32562;9.97013;10.1777;7.26022;4.70766;4.90468;3.78184;2.06671;1.75129;1.77563;1.23103;0.934737;0.766767;0.519826;0.481141;0.319515;0.238473;0.162254;0.130068;0.127159;0.080288;0.05806;0.036869;0.026519;0.020231;0.016236;0.013468;0.011618;4.97266;6.04645;12.3071;13.2506;11.3662;14.7883;11.3507;5.48405;3.05969;2.50891;1.92437;1.31667;1.05299;1.18441;0.82402;0.888058;0.954002;1.01302;0.60341;0.540128;0.304025;0.215768;0.241558;0.184927;0.184604;0.083239;0.067659;0.046164;0.032063;0.023975;0.016194;0.010573;0.009058;0.007408;0.005458;0.004699;9.663905;10.47165;13.5707;19.0321;29.8907;34.03315;15.12955;10.89755;6.076925;8.44711;8.54537;7.643605;5.163485;5.068135;4.4183;2.89316;2.207845;1.966815;1.367935;1.169675;0.727952;0.531472;0.578832;0.352961;0.2400545;0.158289;0.152427;0.109174;0.0749295;0.0574445;0.0431995;0.033672;0.026139;0.0205805;0.016874;0.01462;12.2693;13.365;16.6294;26.6079;33.4117;39.9826;19.1624;12.3243;6.68543;9.98272;10.8357;10.5868;6.28748;5.60415;5.22903;3.38439;2.85342;2.222;1.68116;1.53444;0.965919;0.713844;0.667821;0.430693;0.277616;0.171404;0.168539;0.129207;0.080806;0.064828;0.054237;0.044594;0.035416;0.028355;0.023548;0.020173;8.62527;9.38875;12.0444;14.3444;24.7281;16.1853;11.7335;9.14247;4.84567;6.39456;4.10393;3.51459;4.55088;4.56222;2.97653;1.91701;1.65247;1.56248;1.09431;0.781026;0.453665;0.379748;0.370642;0.257954;0.217622;0.144448;0.118371;0.078955;0.062816;0.048916;0.032942;0.025513;0.020175;0.015958;0.013227;0.011437
+1824;EMSC-20130103_0000020;2013-01-03 08:39:11;602083601.0;usp000jxs7;1651411.0;20130103_0000020;;34.1091;25.1425;30.3795;ISC;TF;3.9;ISK;4.56;MED_RCMT;3.83;ISC;4.35;MWML92;DGA16;312.0;23.0;-26.0;66.0;80.0;-111.0;NOA;299397;;;;;;;;;;;HL;SIVA;0;HN;0.0;;;;GR;35.01746;24.80996;110.0;;;;;;;;0.080718;217.394096;105.3;163.1;;;;;D;0.0;E;90.0;N;0.0;Z;0.1;0.1;0.1;30.0;30.0;30.0;0.318351;0.261677;-0.166267;0.30633;0.350085;0.222786;-0.026104;-0.021813;0.012802;0.0229385;0.0281791;0.0171474;-0.002812;-0.002382;0.001684;0.00244955;0.00301485;0.00219179;36.58;38.23;38.05;37.1925;40.265;36.34;0.0904518;0.0874694;0.0441824;0.0888447;0.0988585;0.0783484;3.45222133556;2.97489972005;1.87225658931;3.22644635515;3.64595277472;2.7619395751;0.000501175586413;0.000361651695732;0.000133849911411;0.0004314135853;0.000557757371668;0.000305069941118;0.318429;0.321838;0.325424;0.327163;0.337472;0.413841;0.439083;0.786207;1.10597;1.02952;1.05537;1.14323;1.15192;0.808866;1.00938;0.693253;0.78763;0.727007;0.443823;0.323526;0.234527;0.10653;0.072955;0.050983;0.043786;0.026819;0.018509;0.014056;0.00866;0.007286;0.00613;0.004102;0.003389;0.003201;0.002717;0.002382;0.262035;0.264276;0.268193;0.26989;0.286838;0.290073;0.493367;0.617755;0.712706;0.770294;0.8047;0.884103;0.957496;1.42968;1.06843;0.656706;0.588401;0.488394;0.323733;0.270104;0.169106;0.116319;0.086915;0.079707;0.073048;0.030263;0.018425;0.011686;0.00838;0.006867;0.005778;0.004863;0.003042;0.002704;0.002134;0.001684;0.166355;0.168904;0.172186;0.196904;0.246575;0.234146;0.426771;0.491405;0.501762;0.416669;0.533993;0.664762;0.650657;0.567945;0.460796;0.328277;0.208968;0.18572;0.134057;0.099033;0.084087;0.082247;0.059552;0.037468;0.028476;0.021343;0.009729;0.008623;0.006793;0.004582;0.002995;0.002698;0.00239;0.001686;0.001573;0.001136;0.3068025;0.309592;0.312209;0.3182665;0.325537;0.380967;0.4947395;0.6772935;0.820249;0.981446;0.901419;1.107395;1.036545;1.13852;1.01469;0.6716335;0.6933875;0.59616;0.3725695;0.307011;0.189475;0.119525;0.0859365;0.061501;0.063235;0.0291285;0.0175675;0.012395;0.0085055;0.0071775;0.00586;0.0044005;0.0031945;0.002834;0.0022635;0.0018705;0.350154;0.3512;0.353611;0.372173;0.371289;0.413841;0.514832;0.81916;1.12522;1.07097;1.0702;1.15315;1.15192;1.5582;1.19807;0.752211;0.823888;0.797175;0.508532;0.381454;0.235427;0.139121;0.091939;0.080144;0.073798;0.030263;0.019435;0.014211;0.01014;0.008629;0.00613;0.005169;0.003563;0.003257;0.002814;0.002483;0.222974;0.223072;0.226336;0.230695;0.23726;0.271653;0.439083;0.617755;0.702628;0.728357;0.77045;0.809969;0.67979;0.761856;0.681109;0.474801;0.406888;0.291213;0.272171;0.23706;0.138224;0.10653;0.065681;0.049283;0.041736;0.023366;0.013778;0.009395;0.006854;0.005634;0.00495;0.003843;0.002752;0.002268;0.001915;0.001649
+1825;EMSC-20130103_0000020;2013-01-03 08:39:11;602083601.0;usp000jxs7;1651411.0;20130103_0000020;;34.1091;25.1425;30.3795;ISC;TF;3.9;ISK;4.56;MED_RCMT;3.83;ISC;4.35;MWML92;DGA16;312.0;23.0;-26.0;66.0;80.0;-111.0;NOA;299397;;;;;;;;;;;HL;ZKR;0;HN;0.0;;;;GR;35.1147;26.217;270.0;;;;;;;;6.924399;695.058912;148.8;221.8;;;;;D;0.0;E;90.0;N;0.0;Z;0.1;0.1;0.1;30.0;30.0;30.0;-0.032896;-0.031838;-0.020154;0.032189;0.033046;0.029863;-0.004447;-0.002705;0.001781;0.00340149;0.00447392;0.0027021;0.000918;0.000752;0.000564;0.000802627;0.000989482;0.000656735;53.935;49.28;68.41;52.715;54.615;49.28;0.018884;0.0137968;0.0104305;0.0163882;0.018884;0.0137265;0.439549015169;0.43926933514;0.32835669015;0.439409175155;0.45270378524;0.418293310109;5.49541644325e-06;6.0287216574e-06;2.796133615e-06;5.76206846491e-06;6.2560167368e-06;5.26811804975e-06;0.032942;0.033285;0.033853;0.037252;0.034924;0.036536;0.042131;0.053724;0.070193;0.084577;0.089354;0.102085;0.107527;0.099856;0.099501;0.071685;0.062107;0.055443;0.047509;0.043547;0.053778;0.038094;0.047183;0.032132;0.032908;0.014397;0.010082;0.005113;0.003744;0.004111;0.002773;0.001713;0.001196;0.000879;0.000765;0.000433;0.031849;0.032678;0.032665;0.031643;0.033502;0.035837;0.063553;0.075197;0.096837;0.152693;0.119322;0.129149;0.115192;0.085321;0.065345;0.059751;0.052045;0.049672;0.055963;0.033627;0.03116;0.031615;0.024929;0.019536;0.01709;0.008548;0.009337;0.006392;0.003386;0.003127;0.002112;0.001469;0.000867;0.000663;0.000557;0.000568;0.020163;0.020935;0.025394;0.029476;0.028661;0.032963;0.035376;0.041922;0.051369;0.049836;0.060366;0.083649;0.090395;0.060333;0.043674;0.039612;0.044485;0.047716;0.041885;0.041147;0.037549;0.017419;0.01313;0.013245;0.014211;0.006666;0.004466;0.005432;0.002667;0.001759;0.001594;0.000974;0.000724;0.000594;0.000488;0.000405;0.0321945;0.032829;0.033755;0.034003;0.034598;0.036579;0.0466975;0.056661;0.079564;0.121481;0.101758;0.110646;0.1121665;0.098402;0.077765;0.073307;0.055902;0.051247;0.054106;0.0408815;0.042112;0.0322455;0.0351285;0.0253445;0.0254805;0.0127845;0.009792;0.005798;0.0035605;0.0031795;0.0023465;0.0015;0.001054;0.000794;0.000617;0.0004915;0.03305;0.03357;0.035524;0.037252;0.036722;0.038904;0.064988;0.076828;0.097925;0.152692;0.12937;0.136715;0.120769;0.111088;0.099739;0.079459;0.063019;0.056909;0.067003;0.043628;0.054907;0.040386;0.049454;0.032132;0.035385;0.015834;0.013032;0.008064;0.00421;0.004147;0.002869;0.001821;0.001216;0.001079;0.000852;0.000569;0.029918;0.030782;0.030677;0.030733;0.032987;0.035251;0.040738;0.051259;0.067486;0.083553;0.08797;0.091275;0.0924;0.075244;0.063479;0.056553;0.048732;0.043473;0.036788;0.033627;0.03116;0.02601;0.020923;0.017755;0.014854;0.007752;0.005899;0.003683;0.002295;0.002606;0.001647;0.001433;0.000727;0.000629;0.000549;0.000376
+1826;EMSC-20130108_0000044;2013-01-08 14:16:09;602216240.0;usp000jy2b;1667271.0;20130108_0000044;GR;39.6681;25.5372;11.1303;ISC;SS;5.8;ATH;5.81;GCMT;5.82;ISC;5.8;Mw;GEOFON;331.0;77.0;-1.0;61.0;88.0;-166.0;GFZ;300037;v0000044;61.0;89.0;-173.0;GCMT;6.42006;from_nulcleation_depth;9.72523;7.06643;empirical_fault;HL;ALNA;0;HN;0.0;;;;GR;39.14804;23.86669;40.0;;;;;;;;0.72706;332.770652;155.0;67.6;150.33;150.47;-23.09;148.55;D;0.0;E;270.0;N;180.0;Z;0.03;0.03;0.03;30.0;30.0;30.0;2.612684;-2.675343;-2.007355;2.659961;3.122293;2.214149;0.324382;-0.393598;0.189343;0.3616945;0.473697;0.295123;0.120909;0.227868;0.052232;0.185953;0.231748;0.0594435;25.56;25.845;39.015;25.7025;32.455;22.53;1.59201;1.88017;0.770703;1.70495;2.03602;1.56311;22.8653423279;24.2942997632;17.3095502342;23.7174867052;24.812488481;21.9621202014;0.0244732259745;0.0282129038649;0.0125246429026;0.0263430637601;0.0308970910518;0.0217890411869;2.61438;2.62296;2.64035;2.66289;2.73618;2.95121;3.20204;3.90796;4.72252;5.55124;7.33589;7.52478;8.89671;7.28512;7.26145;10.7618;7.86974;6.93013;5.40647;4.57901;4.81337;5.29269;3.92031;2.69506;1.47512;0.599203;0.454514;0.334442;0.332277;0.324297;0.243852;0.157465;0.141606;0.107293;0.118316;0.10076;2.67576;2.68342;2.69824;2.71607;2.76449;2.88977;3.54095;4.23459;4.64794;4.89697;6.0484;6.45787;7.88838;7.98692;10.3831;10.9506;10.2078;9.40508;9.75586;8.88188;4.71649;3.95896;2.73771;2.42436;2.7468;1.19119;0.868089;0.887031;0.770814;0.65224;0.591701;0.306166;0.215173;0.136177;0.176858;0.179617;2.00827;2.01669;2.03293;2.05546;2.1537;2.30238;2.49088;2.52219;2.91723;3.25846;4.27062;4.43097;5.37152;9.10932;6.165;4.90978;4.5411;4.80242;3.73067;4.24729;1.58694;1.66809;1.01494;0.85324;0.607537;0.304421;0.270438;0.197704;0.106079;0.13521;0.193715;0.108727;0.115485;0.109945;0.093784;0.075445;2.66112;2.66794;2.683995;2.69764;2.74866;2.88487;3.460235;3.831725;4.68523;5.31381;6.7166;6.36395;8.276735;7.922945;9.20022;10.747;8.734265;8.193345;8.095315;6.443705;5.12294;4.946365;3.454995;2.55268;2.20512;0.994431;0.665556;0.656886;0.5855905;0.506059;0.4554405;0.249363;0.1847025;0.1253815;0.1496285;0.1455875;3.12393;3.13051;3.14365;3.15301;3.19064;3.31766;3.88574;4.36034;5.27069;7.11305;7.48579;7.74273;9.32252;9.70047;11.4912;13.6349;10.7626;10.0064;10.0672;8.97055;5.99362;5.32365;3.97946;2.69507;2.7468;1.19119;0.898665;0.894243;0.798074;0.68641;0.630731;0.326367;0.221022;0.144229;0.188109;0.194094;2.21441;2.21794;2.22769;2.22638;2.24802;2.42749;2.4025;2.92207;3.02791;3.63014;3.78721;4.80021;6.26379;6.52183;6.88208;7.88787;7.63981;6.62693;5.16072;4.42157;4.51785;2.68228;2.11382;2.21536;1.42055;0.521301;0.381855;0.243316;0.248905;0.221759;0.150758;0.101956;0.09641;0.093965;0.089963;0.077419
+1827;EMSC-20130108_0000044;2013-01-08 14:16:09;602216240.0;usp000jy2b;1667271.0;20130108_0000044;GR;39.6681;25.5372;11.1303;ISC;SS;5.8;ATH;5.81;GCMT;5.82;ISC;5.8;Mw;GEOFON;331.0;77.0;-1.0;61.0;88.0;-166.0;GFZ;300037;v0000044;61.0;89.0;-173.0;GCMT;6.42006;from_nulcleation_depth;9.72523;7.06643;empirical_fault;HL;AMGA;0;HN;0.0;;;;GR;36.83157;25.89382;300.0;;;;;;;;2.507216;464.76021;316.4;354.4;314.33;314.51;288.81;124.35;D;0.0;E;90.0;N;0.0;Z;0.07;0.07;0.07;30.0;30.0;30.0;-0.103257;-0.086909;-0.069189;0.0899115;0.10976;0.072795;-0.035937;-0.032902;-0.026428;0.03438125;0.0379295;0.0285539;-0.042038;-0.037785;0.024909;0.0372739;0.0421245;0.0321903;123.785;147.58;142.76;137.8775;149.135;118.815;0.0973824;0.0686205;0.0731189;0.08563955;0.09877;0.0677206;2.50959797953;2.48560906998;2.12207876005;2.49201386941;2.52008030544;2.46755006041;9.8975748682e-05;8.54818051778e-05;6.84704508001e-05;9.22287772302e-05;9.90722555212e-05;8.53853294219e-05;0.103603;0.277722;0.315242;0.166358;0.091241;0.101642;0.171228;0.131324;0.140516;0.207866;0.256588;0.236509;0.231969;0.198873;0.254778;0.202216;0.200088;0.196845;0.216307;0.200189;0.234238;0.178688;0.171632;0.275738;0.21481;0.14537;0.127616;0.177996;0.103268;0.104295;0.103095;0.100047;0.074749;0.061712;0.051217;0.043733;0.087035;0.088534;0.112221;0.089822;0.09821;0.120128;0.22185;0.236659;0.198328;0.160305;0.223285;0.196404;0.18075;0.170583;0.161746;0.190309;0.209175;0.196918;0.23314;0.191847;0.192228;0.167175;0.163392;0.116312;0.100781;0.09255;0.090661;0.101532;0.103822;0.091166;0.081222;0.12371;0.138976;0.081516;0.058299;0.05822;0.069271;0.104936;0.142834;0.079147;0.099656;0.134291;0.155567;0.118681;0.125599;0.143662;0.132499;0.142073;0.170122;0.154352;0.18329;0.201464;0.158541;0.163812;0.214604;0.183776;0.171002;0.143869;0.126356;0.145546;0.150224;0.140401;0.134901;0.151317;0.112318;0.070711;0.094461;0.072697;0.084466;0.066842;0.048284;0.031252;0.090566;0.2008465;0.2372325;0.1217755;0.0941545;0.1137325;0.204792;0.188076;0.1705225;0.172832;0.2248915;0.2153565;0.21668;0.173636;0.1933485;0.1956715;0.201871;0.2088085;0.2279585;0.199033;0.2207995;0.174439;0.1767455;0.2042735;0.1532565;0.130371;0.106925;0.144158;0.107464;0.102741;0.1000015;0.112378;0.110807;0.0755215;0.051035;0.047207;0.109797;0.277722;0.326785;0.172216;0.103005;0.13294;0.240077;0.241585;0.198797;0.208473;0.257214;0.236897;0.240819;0.198873;0.263741;0.217724;0.221151;0.223993;0.265357;0.247078;0.238403;0.196142;0.2172;0.275738;0.21481;0.171231;0.138659;0.189291;0.13128;0.119537;0.112329;0.15263;0.155857;0.081946;0.060056;0.06562;0.074311;0.084751;0.093565;0.084511;0.088244;0.098566;0.142256;0.131324;0.136786;0.156103;0.194236;0.186219;0.176569;0.147686;0.147019;0.15744;0.168938;0.176711;0.158223;0.121392;0.164158;0.135238;0.132751;0.112363;0.10006;0.066954;0.076018;0.088681;0.0796;0.077311;0.080789;0.073738;0.047012;0.057383;0.035916;0.020582
+1828;EMSC-20130108_0000044;2013-01-08 14:16:09;602216240.0;usp000jy2b;1667271.0;20130108_0000044;GR;39.6681;25.5372;11.1303;ISC;SS;5.8;ATH;5.81;GCMT;5.82;ISC;5.8;Mw;GEOFON;331.0;77.0;-1.0;61.0;88.0;-166.0;GFZ;300037;v0000044;61.0;89.0;-173.0;GCMT;6.42006;from_nulcleation_depth;9.72523;7.06643;empirical_fault;HL;DLFA;0;HN;0.0;;;;GR;38.47838;22.49563;560.0;;;;;;;;36.142699;1611.209078;294.5;62.4;289.75;289.82;-21.78;288.93;D;0.0;E;320.0;N;230.0;Z;0.03;0.03;0.03;30.0;30.0;30.0;0.249559;-0.20773;0.233894;0.228623;0.291421;0.189787;-0.052223;0.063938;0.041604;0.05368275;0.0669616;0.0380168;-0.057029;-0.09471;0.022817;0.07817185;0.110529;0.0203842;65.35;72.7;69.495;67.9825;75.95;56.92;0.205729;0.156438;0.170101;0.181526;0.213719;0.148207;3.82196814953;3.5662726944;2.94253971966;3.68344176705;3.94258689945;3.43401307553;0.000370566626895;0.000307127527314;0.000219712004174;0.000338847066959;0.00039845352463;0.000279240645103;0.249627;0.250683;0.250478;0.25359;0.254547;0.258493;0.275319;0.311214;0.334068;0.402935;0.399929;0.586005;0.677179;0.65977;0.834841;0.733388;0.623447;0.717818;0.932087;0.749248;0.515659;0.658349;0.472376;0.443431;0.259431;0.119871;0.110322;0.082906;0.095812;0.105909;0.070172;0.08858;0.053378;0.057502;0.057104;0.054138;0.207786;0.208479;0.208517;0.208645;0.211251;0.213485;0.227724;0.250482;0.267826;0.265603;0.389591;0.466526;0.541342;0.618401;0.739356;0.809875;0.874268;0.78485;1.07592;0.586234;0.388739;0.430367;0.271712;0.223719;0.16875;0.088762;0.091635;0.103794;0.113779;0.119208;0.157684;0.110673;0.090325;0.094612;0.091589;0.093199;0.233933;0.237191;0.237682;0.23477;0.234929;0.238607;0.241471;0.291812;0.269308;0.289947;0.31642;0.347355;0.491182;0.539873;0.591159;0.932665;0.682377;0.536587;0.529175;0.610236;0.467363;0.625429;0.44532;0.296681;0.201456;0.098698;0.07926;0.084287;0.072;0.065002;0.072376;0.050796;0.06009;0.05722;0.039169;0.02415;0.2286385;0.2293715;0.231019;0.229897;0.229921;0.2332285;0.2461455;0.2689905;0.298975;0.324287;0.394065;0.5388935;0.6590225;0.639552;0.7925655;0.7562065;0.7617495;0.780328;0.928923;0.665597;0.455157;0.531791;0.410034;0.350759;0.218137;0.114481;0.105837;0.094827;0.1021275;0.109839;0.116527;0.1024225;0.071728;0.0771325;0.076861;0.0764445;0.291519;0.291925;0.293278;0.293892;0.295046;0.300092;0.309661;0.328092;0.395619;0.452371;0.458192;0.656518;0.763754;0.840532;1.06692;0.95622;1.0393;0.972215;1.10956;0.785746;0.516511;0.695614;0.502569;0.458057;0.284331;0.146988;0.120466;0.111203;0.131977;0.133117;0.159786;0.127405;0.100544;0.09475;0.100892;0.104632;0.189795;0.190243;0.190963;0.19075;0.191783;0.19175;0.202118;0.20238;0.228825;0.260709;0.33745;0.36489;0.441977;0.488791;0.514194;0.666764;0.50904;0.573887;0.65033;0.452386;0.319596;0.379093;0.216582;0.176066;0.148992;0.086365;0.077406;0.080596;0.065421;0.080819;0.064388;0.044651;0.051496;0.04631;0.030431;0.021206
+1829;EMSC-20130108_0000044;2013-01-08 14:16:09;602216240.0;usp000jy2b;1667271.0;20130108_0000044;GR;39.6681;25.5372;11.1303;ISC;SS;5.8;ATH;5.81;GCMT;5.82;ISC;5.8;Mw;GEOFON;331.0;77.0;-1.0;61.0;88.0;-166.0;GFZ;300037;v0000044;61.0;89.0;-173.0;GCMT;6.42006;from_nulcleation_depth;9.72523;7.06643;empirical_fault;HL;EFSA;0;HN;0.0;;;;GR;39.54015;24.98864;5.0;;;;;;;;5.951127;634.846635;49.2;73.0;44.46;44.92;-11.24;43.02;D;0.0;E;200.0;N;110.0;Z;0.03;0.03;0.03;30.0;30.0;30.0;26.525361;-18.998608;-14.511174;24.2567065;27.529381;18.511702;-2.295803;1.422154;-0.735366;1.807465;2.40772;1.22944;0.5823;0.35959;0.118546;0.4994695;0.637209;0.162122;9.24;14.525;19.61;11.35;16.105;8.89;7.46256;4.59803;2.99725;6.28409;7.72347;4.00609;88.1168469368;73.9926302092;69.8643742087;81.0760434525;88.8435654145;73.3808827757;0.847806931461;0.502887057251;0.384486665666;0.675346976861;0.87378090157;0.476913051039;26.7091;27.7595;30.9383;31.3604;48.6886;46.4813;55.4381;59.1364;67.9535;51.316;58.1119;41.2489;59.5135;63.9798;57.8937;34.443;39.7252;47.23;29.8661;20.9377;17.5796;16.7173;15.0233;9.93926;5.12503;2.66246;1.84153;1.58008;1.28669;0.931217;0.809833;0.672134;0.536717;0.593046;0.522374;0.465047;19.1013;19.408;21.3998;26.3563;45.2201;44.7191;48.231;58.2793;62.0602;42.3253;30.2383;23.4456;24.6363;16.5236;21.0368;26.0108;28.6262;26.4813;19.635;17.9276;12.1448;9.82622;8.75183;6.04576;3.90103;2.26341;1.54557;1.35837;0.971017;0.990765;0.989832;0.616231;0.444056;0.476361;0.382213;0.324553;14.7288;15.5603;26.7542;35.7463;33.5909;36.6956;47.2091;38.7471;30.7719;25.7027;26.5274;17.729;15.8547;17.8709;17.1826;16.6471;16.7787;15.2943;11.8091;9.70566;8.205;7.85585;4.95314;3.50823;2.50887;1.15587;0.779256;0.441946;0.651937;0.497823;0.412204;0.1958;0.159587;0.119526;0.087755;0.06995;24.3427;25.06685;27.51085;30.814;44.9032;46.3629;52.7388;60.80455;61.53895;45.3746;49.22065;36.466;46.7983;48.80945;45.80405;31.93785;33.8579;34.2308;24.6385;20.2177;14.62805;14.3048;12.9011;7.832445;4.565895;2.63959;1.783505;1.476585;1.14193;0.981743;0.8302395;0.6420215;0.499276;0.537711;0.4602665;0.403153;27.5296;27.9387;30.9383;32.4618;50.0897;56.2425;63.422;65.8777;70.6607;55.4185;58.5293;42.5097;63.5381;64.7715;59.0053;36.1231;40.7926;48.2204;34.6708;23.584;17.6133;18.8112;16.5558;10.0508;5.14826;2.89396;2.31363;2.08081;1.44492;1.18772;1.08553;0.737114;0.693566;0.712177;0.629807;0.566011;18.521;18.8706;20.3935;21.906;42.1373;41.7909;45.6685;55.6535;55.592;36.2265;27.9434;23.1606;21.5253;14.2935;19.037;24.0526;23.1859;22.6898;19.6125;15.9047;10.04;6.80839;4.88435;4.84722;3.14082;1.87712;0.938171;0.772342;0.762627;0.689946;0.502122;0.360081;0.199936;0.152232;0.121578;0.099604
+1830;EMSC-20130108_0000044;2013-01-08 14:16:09;602216240.0;usp000jy2b;1667271.0;20130108_0000044;GR;39.6681;25.5372;11.1303;ISC;SS;5.8;ATH;5.81;GCMT;5.82;ISC;5.8;Mw;GEOFON;331.0;77.0;-1.0;61.0;88.0;-166.0;GFZ;300037;v0000044;61.0;89.0;-173.0;GCMT;6.42006;from_nulcleation_depth;9.72523;7.06643;empirical_fault;HL;KVLA;0;HN;0.0;;;;GR;40.93704;24.38591;122.0;;;;;;;;6.635921;677.187632;171.6;144.8;171.16;171.28;-170.95;8.57;D;0.0;E;140.0;N;0.0;Z;0.05;0.05;0.05;30.0;30.0;30.0;2.152603;-2.50597;1.360193;;;;0.130849;0.261174;0.138271;;;;0.058364;0.150582;0.060494;;;;42.335;33.32;47.41;;;;0.410373;0.732911;0.456659;;;;10.5325846359;10.7608683062;9.80048393467;;;;0.00481238445861;0.00516559642805;0.00339443566285;;;;2.15575;2.17019;2.20592;2.26125;2.2918;2.59469;3.72794;5.99551;6.07496;7.37164;5.54246;3.87136;4.80806;3.2531;1.88817;1.40777;1.11006;0.996913;0.885323;0.913062;0.84056;0.755885;0.649847;0.648914;0.505684;0.397401;0.335161;0.251819;0.277533;0.295762;0.153983;0.123059;0.077482;0.083797;0.080961;0.065356;2.50599;2.53836;2.58489;2.65512;2.65412;3.25586;4.09867;6.07318;4.67525;3.9585;3.33827;3.47151;3.34108;2.09448;2.28397;2.6543;2.40949;2.18878;2.17337;1.98241;2.45653;1.48615;1.18167;0.854295;0.852722;1.27747;1.02192;0.713685;0.611489;0.429371;0.305682;0.243612;0.134475;0.111736;0.122041;0.129194;1.36023;1.36464;1.38208;1.37738;1.50668;1.99807;1.90744;2.40877;3.18372;3.05545;3.74898;3.25976;3.87316;2.85745;1.59842;1.59045;1.33957;1.45221;1.20314;0.868104;0.96954;0.761264;0.595233;0.942357;0.700183;0.644888;0.453398;0.293779;0.401972;0.404762;0.201919;0.132984;0.107654;0.077038;0.052386;0.042983;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+1831;EMSC-20130108_0000044;2013-01-08 14:16:09;602216240.0;usp000jy2b;1667271.0;20130108_0000044;GR;39.6681;25.5372;11.1303;ISC;SS;5.8;ATH;5.81;GCMT;5.82;ISC;5.8;Mw;GEOFON;331.0;77.0;-1.0;61.0;88.0;-166.0;GFZ;300037;v0000044;61.0;89.0;-173.0;GCMT;6.42006;from_nulcleation_depth;9.72523;7.06643;empirical_fault;HL;LIA;0;HN;0.0;;;;GR;39.89725;25.18055;67.0;;;;;;;;2.798506;485.458204;39.8;129.7;38.27;38.8;-37.23;8.86;D;0.0;E;90.0;N;0.0;Z;0.05;0.05;0.05;30.0;30.0;30.0;-13.278071;-20.113888;-10.535006;15.7086395;20.517679;12.663827;-0.733584;0.737596;-0.492944;0.749111;0.8035;0.688314;0.210323;0.294957;-0.147204;0.2566125;0.342221;0.167489;20.37;19.435;19.545;19.57;20.44;19.305;2.69564;2.57328;1.98843;2.666225;2.87307;2.42607;58.9919027039;72.51076397;53.1797494383;66.1980553285;72.51076397;58.9919027039;0.265650914034;0.408323207787;0.224449272727;0.336987070207;0.410266558698;0.263707592876;13.4476;15.7956;25.5067;31.8531;45.1319;32.4854;16.4012;23.3799;24.1278;34.9975;39.0664;21.9898;13.7324;15.0473;10.0376;8.01265;8.63936;10.3297;11.2517;8.62636;7.38002;7.56544;3.9799;3.35878;2.74982;2.54355;1.27802;1.05838;0.889796;0.904575;0.979048;0.595586;0.334466;0.215181;0.153022;0.121942;20.2182;21.3921;42.029;28.9548;60.2266;57.7865;25.3531;28.4088;31.0891;34.5213;26.2381;24.2995;24.1707;16.5709;17.4703;12.4324;9.69237;9.66731;10.8828;8.81797;6.52177;4.68745;4.24872;2.52403;2.31204;2.00492;1.76862;1.14573;0.981659;0.824942;0.635482;0.594201;0.531225;0.433497;0.371538;0.307665;10.6847;12.9166;22.0148;30.6174;37.9047;35.71;18.0731;13.7678;20.0451;20.1535;12.0124;13.9557;13.2669;15.8324;8.87541;5.84365;5.21281;5.97701;8.42311;7.01488;5.04658;3.98864;3.90677;2.65128;1.77486;1.79607;1.20795;0.972522;0.63902;0.530174;0.470528;0.444909;0.283319;0.216048;0.184589;0.157663;15.7792;17.2019;33.4997;30.5972;45.85045;44.0155;24.764;23.49615;27.25125;34.7594;33.698;23.11645;22.4517;14.8677;14.18435;9.695775;9.28856;9.64712;11.04955;8.84868;6.930295;6.395805;4.18141;3.03237;2.489855;2.0714;1.514965;1.128325;0.95446;0.8522415;0.809029;0.5948775;0.460477;0.398021;0.305325;0.233206;20.7532;22.1322;42.3911;31.9178;60.2266;61.1477;26.4941;29.2009;37.589;43.1314;45.7841;30.1215;25.2571;16.5803;17.4703;12.5633;10.158;11.6391;11.9878;11.1401;7.71562;7.67131;4.85055;4.13955;3.19473;2.60478;1.77586;1.34946;1.08274;1.08127;1.07993;0.819435;0.617346;0.455463;0.372293;0.307697;12.8235;14.1549;23.0719;27.956;39.8805;30.5478;16.4012;20.5752;22.7744;15.2041;20.6502;19.6612;12.0408;12.6317;7.45737;6.33522;8.05084;7.47319;7.36119;6.08541;5.67029;4.12944;3.41608;2.22563;1.63984;1.81179;0.966169;0.90084;0.655984;0.543739;0.376308;0.374384;0.245915;0.15169;0.124522;0.103648
+1832;EMSC-20130108_0000044;2013-01-08 14:16:09;602216240.0;usp000jy2b;1667271.0;20130108_0000044;GR;39.6681;25.5372;11.1303;ISC;SS;5.8;ATH;5.81;GCMT;5.82;ISC;5.8;Mw;GEOFON;331.0;77.0;-1.0;61.0;88.0;-166.0;GFZ;300037;v0000044;61.0;89.0;-173.0;GCMT;6.42006;from_nulcleation_depth;9.72523;7.06643;empirical_fault;HL;NOAC;0;HN;0.0;;;;GR;37.97384;23.71767;93.0;;;;;;;;6.607305;675.41603;245.6;39.5;241.24;241.37;81.89;226.96;D;0.0;E;90.0;N;0.0;Z;0.07;0.07;0.07;30.0;30.0;30.0;-0.709942;-0.743178;0.362985;0.737567;0.949324;0.570514;-0.090533;0.111705;0.055915;0.1016334;0.143593;0.0723414;-0.051364;-0.063073;0.025961;0.0577144;0.0784644;0.0259705;66.57;51.235;71.075;58.5925;69.18;49.34;0.349185;0.483103;0.262611;0.4269265;0.49341;0.339143;7.07571395049;7.64500261545;5.72042570634;7.3642872795;7.77880706463;6.77930001989;0.00139407334268;0.00176615881825;0.000822848980903;0.00158011606993;0.00191837254195;0.00124185944359;0.710475;0.712937;0.715753;0.717675;0.749041;0.767818;0.85386;1.36221;1.54743;1.07539;1.05724;0.975729;1.43695;1.7927;1.28055;1.60157;1.67781;1.6946;1.5625;1.54101;1.00865;0.820736;0.727185;0.601539;0.448112;0.173921;0.159974;0.200089;0.198111;0.238566;0.206724;0.106445;0.073526;0.062767;0.075225;0.05842;0.743405;0.746962;0.749083;0.750091;0.757803;0.783392;0.911397;1.12647;1.24702;1.23476;1.44248;1.62573;2.21663;2.08279;1.70916;1.93787;1.30928;1.20669;1.2059;1.30966;1.13418;1.51831;1.39756;1.10608;0.618699;0.262269;0.262612;0.244283;0.213281;0.262346;0.228652;0.13354;0.123901;0.098764;0.11557;0.094923;0.363033;0.363504;0.369191;0.371605;0.364984;0.395354;0.498578;0.569229;0.773915;0.782115;0.731374;0.836325;0.829847;0.892668;0.971575;1.08974;0.99565;1.00816;1.24052;1.6471;0.985394;0.727242;0.43702;0.416722;0.238489;0.205987;0.147647;0.100828;0.100792;0.077505;0.099635;0.123183;0.105724;0.06701;0.046768;0.029646;0.7377155;0.7416145;0.7441505;0.744994;0.753422;0.7777765;0.9031515;1.194725;1.40264;1.236595;1.38625;1.31495;1.82988;1.978775;1.53379;1.739515;1.437435;1.418385;1.41832;1.523605;1.103495;1.18532;1.16195;0.945862;0.56288;0.238003;0.199088;0.2288795;0.206207;0.249354;0.21828;0.1210845;0.098678;0.091116;0.0975985;0.079502;0.94951;0.952073;0.961013;0.95682;0.991548;1.00238;1.07405;1.61266;1.90477;1.39844;1.46459;1.73065;2.42793;2.2756;1.79157;2.06554;1.74483;1.7118;1.59897;1.6117;1.18857;1.52615;1.40267;1.11264;0.684544;0.293883;0.270165;0.290691;0.289792;0.330531;0.307932;0.168496;0.135326;0.099477;0.121068;0.105701;0.57067;0.571209;0.571609;0.572587;0.577174;0.588203;0.645393;0.809338;0.966598;1.01975;1.05724;0.903401;1.0704;1.32457;0.970887;1.17958;1.10388;1.08956;1.09932;1.19135;0.878272;0.738879;0.62487;0.582781;0.334101;0.165985;0.133638;0.108951;0.101534;0.087425;0.07708;0.087622;0.069578;0.051094;0.033302;0.033365
+1833;EMSC-20130108_0000044;2013-01-08 14:16:09;602216240.0;usp000jy2b;1667271.0;20130108_0000044;GR;39.6681;25.5372;11.1303;ISC;SS;5.8;ATH;5.81;GCMT;5.82;ISC;5.8;Mw;GEOFON;331.0;77.0;-1.0;61.0;88.0;-166.0;GFZ;300037;v0000044;61.0;89.0;-173.0;GCMT;6.42006;from_nulcleation_depth;9.72523;7.06643;empirical_fault;HL;PLG;0;HN;0.0;;;;GR;40.37328;23.44443;566.0;;;;;;;;3.525881;520.201669;195.1;113.0;192.32;192.43;-158.29;109.23;D;0.0;E;90.0;N;0.0;Z;0.07;0.07;0.07;30.0;30.0;30.0;-0.43847;-0.541912;0.768306;0.533278;0.596562;0.433547;0.058336;-0.061291;-0.050438;0.05995705;0.0666241;0.0486313;0.031233;-0.027291;0.040807;0.0308323;0.0353428;0.0259105;63.11;63.79;55.4;63.505;67.625;59.79;0.206965;0.240081;0.226807;0.2287195;0.241373;0.200505;6.12935961978;6.09605207926;6.17065532895;6.11270584952;6.29553190008;5.85251217172;0.00103767149414;0.00110979815323;0.00128083384995;0.0010737347422;0.00118553568692;0.000961934205819;0.438525;0.453062;0.483188;0.542435;0.616148;0.798287;1.27312;1.07052;1.43532;1.21915;1.26588;1.31864;1.02762;0.789668;0.770876;0.733745;0.737643;0.767369;0.929126;0.788234;0.592401;0.365319;0.271342;0.248936;0.258216;0.245737;0.154251;0.139483;0.134919;0.107599;0.105279;0.098546;0.083651;0.069239;0.058655;0.044357;0.542388;0.547583;0.557304;0.554745;0.574535;0.603469;1.1429;1.46197;1.2746;2.02653;1.81668;1.40821;1.29775;1.33427;1.11523;1.12606;1.14749;0.952439;0.765472;0.762963;0.751623;0.456727;0.328271;0.339994;0.284463;0.295437;0.207743;0.167711;0.121211;0.12647;0.088696;0.046008;0.035027;0.035414;0.029384;0.022038;0.768493;0.774523;0.793628;0.813372;0.988334;1.00613;1.5905;1.63982;1.72389;3.05521;3.07413;2.11919;1.40116;1.15309;1.39607;0.985939;0.981069;1.16911;1.12267;0.641706;0.374633;0.291835;0.275967;0.236387;0.259319;0.214271;0.163638;0.177104;0.135509;0.104823;0.127446;0.080592;0.069226;0.062617;0.057859;0.037962;0.5340455;0.5413435;0.5493185;0.558011;0.6242315;0.7331855;1.15598;1.20829;1.467355;1.84105;1.70533;1.36057;1.087665;1.0174;0.9575905;0.826295;0.89266;0.820415;0.850344;0.7873375;0.6349275;0.4700025;0.2937315;0.290891;0.275465;0.26837;0.1759295;0.1495105;0.1271505;0.108154;0.0998365;0.0799535;0.064386;0.0548215;0.0422205;0.034514;0.596779;0.608482;0.635294;0.694328;0.738787;0.839858;1.32758;1.48683;1.63225;2.322;2.16111;1.58656;1.35935;1.37335;1.28233;1.13388;1.17426;1.03293;0.97231;0.906376;0.822381;0.521609;0.358021;0.349903;0.307508;0.295438;0.209824;0.193043;0.167172;0.12647;0.119071;0.100168;0.084235;0.070272;0.059441;0.044924;0.434377;0.438464;0.446124;0.469366;0.529963;0.572214;1.07779;1.01846;1.21761;1.18695;1.26588;1.09731;0.936574;0.783096;0.707067;0.733745;0.737643;0.754466;0.651449;0.658351;0.559436;0.335701;0.230467;0.212375;0.160815;0.233634;0.153976;0.112231;0.088774;0.084355;0.079483;0.044784;0.035027;0.027431;0.022521;0.02176
+1834;EMSC-20130108_0000044;2013-01-08 14:16:09;602216240.0;usp000jy2b;1667271.0;20130108_0000044;GR;39.6681;25.5372;11.1303;ISC;SS;5.8;ATH;5.81;GCMT;5.82;ISC;5.8;Mw;GEOFON;331.0;77.0;-1.0;61.0;88.0;-166.0;GFZ;300037;v0000044;61.0;89.0;-173.0;GCMT;6.42006;from_nulcleation_depth;9.72523;7.06643;empirical_fault;HL;PRK;0;HN;0.0;;;;GR;39.24565;26.26499;130.0;;;;;;;;5.704845;619.736567;78.3;307.1;76.38;76.77;71.82;26.33;D;0.0;E;90.0;N;0.0;Z;0.02;0.02;0.02;30.0;30.0;30.0;-19.926643;19.562941;13.683885;19.744792;27.042519;12.396879;-1.493074;-1.20715;-0.961706;1.381805;1.78326;0.959154;-0.299679;-0.301144;-0.144461;0.3004125;0.360339;0.1827;12.33;11.51;18.935;11.795;18.465;9.28;5.19547;5.02898;2.92858;5.15244;5.58359;4.53516;79.7309482428;67.3782813641;60.5966483796;73.6299026653;82.5059123073;63.3493249084;0.571455527138;0.447915685908;0.289829205132;0.509685583906;0.733673034392;0.285698209513;19.9506;20.0704;20.2746;20.7117;22.2904;24.7045;38.0286;38.2471;38.1923;48.9268;99.7587;99.6688;75.2736;51.5222;29.4255;38.8105;30.3115;27.8734;27.1567;15.5308;11.7985;7.627;6.53609;4.24295;3.02574;1.57171;1.18389;0.896409;0.754931;0.715886;0.635478;0.387718;0.349342;0.30939;0.273668;0.257884;19.567;19.6875;19.9568;20.0114;21.9805;29.2225;40.5545;43.3264;34.1494;44.3873;70.0713;95.9564;87.8808;53.4298;26.4121;17.1822;16.698;19.4702;15.2757;9.87343;9.5302;10.5681;8.81072;7.452;5.23435;2.69503;1.67835;1.2579;1.02737;0.901293;0.684507;0.387669;0.339105;0.276175;0.247327;0.220798;13.7105;13.841;14.0815;14.4561;16.4266;21.4087;29.3695;28.0539;30.6048;24.2559;27.4772;43.6825;53.5955;53.2624;25.5799;19.997;12.0128;9.92613;9.2272;7.10872;3.78557;3.76608;3.73116;3.84978;2.74893;1.19255;0.577089;0.425084;0.45708;0.366781;0.523334;0.46412;0.250993;0.16542;0.139434;0.124521;19.7588;19.87895;20.1157;20.36155;22.13545;27.73735;43.6285;39.7556;37.7182;46.92465;85.6698;97.8126;82.2466;52.476;28.06165;31.0035;23.25125;23.2581;22.7323;13.80825;10.86475;9.226615;7.432585;6.0936;4.163485;2.302825;1.488385;1.11771;0.89395;0.766488;0.652458;0.400134;0.3523695;0.2928555;0.2574925;0.237764;27.0762;27.2741;27.6303;28.1729;29.6892;30.8834;47.8467;53.7721;48.7595;54.8325;112.906;137.356;112.958;68.7383;37.2851;39.535;31.417;27.8734;28.9446;16.3732;12.4587;10.8763;9.34767;7.54038;5.67019;2.69503;1.76841;1.30565;1.05202;0.936854;0.796328;0.538679;0.41849;0.315897;0.283271;0.310238;12.4116;12.4896;12.7326;13.1096;14.5578;16.0906;34.6907;24.6573;23.4593;25.099;45.0937;37.8903;34.9318;25.8209;24.098;16.9998;16.698;15.7113;10.94;8.78923;6.73711;7.60729;5.0477;2.75783;1.93816;1.44462;1.12409;0.772538;0.64816;0.622994;0.529623;0.305296;0.304126;0.235533;0.178441;0.153149
+1835;EMSC-20130108_0000044;2013-01-08 14:16:09;602216240.0;usp000jy2b;1667271.0;20130108_0000044;GR;39.6681;25.5372;11.1303;ISC;SS;5.8;ATH;5.81;GCMT;5.82;ISC;5.8;Mw;GEOFON;331.0;77.0;-1.0;61.0;88.0;-166.0;GFZ;300037;v0000044;61.0;89.0;-173.0;GCMT;6.42006;from_nulcleation_depth;9.72523;7.06643;empirical_fault;HL;PSRA;0;HN;0.0;;;;GR;38.53978;25.56202;13.0;;;;;;;;2.79923;485.509639;125.3;359.0;122.94;123.22;109.73;55.69;D;0.0;E;90.0;N;0.0;Z;0.04;0.04;0.04;30.0;30.0;30.0;6.859103;6.753628;3.619535;6.7445415;7.950311;5.209907;-0.533993;0.312982;0.190531;0.4224395;0.555058;0.29175;0.193086;-0.072595;-0.075896;0.1425265;0.194898;0.0710957;28.0;28.48;28.63;28.205;28.485;27.72;2.15849;1.12509;0.878889;1.69306;2.16166;1.11982;38.6293996152;38.1354362995;21.760161646;38.3977817139;40.3792039047;36.006774755;0.084464685353;0.0856913268076;0.0270995551249;0.0850780060803;0.0962749458923;0.0738810598411;6.87264;6.93897;7.03785;7.09945;7.63098;9.42519;18.0726;19.3905;21.8741;17.8133;11.839;16.5879;14.8414;10.0772;8.3803;9.56635;9.51583;8.63936;9.86429;7.73956;4.84675;5.13861;4.02966;3.58612;2.36186;1.75784;1.31327;0.785929;0.483742;0.475402;0.454372;0.326315;0.179515;0.124929;0.155379;0.152746;6.76871;6.86345;7.07449;7.30716;7.65027;10.2727;20.6777;20.2156;19.4672;22.9663;12.4075;10.9793;9.28504;7.94581;7.92193;8.58456;6.62707;6.49841;6.09358;3.04487;2.0552;1.38503;1.23562;1.21434;0.836328;0.424724;0.386203;0.335618;0.322071;0.313298;0.282574;0.187431;0.183772;0.171954;0.104378;0.09399;3.62442;3.6954;3.87313;4.19803;5.0175;7.21319;15.3905;8.35358;7.38576;7.25586;5.45266;6.92309;5.34424;3.95902;3.84002;2.96588;3.92722;3.63463;2.25435;1.85095;1.8901;2.43127;1.89236;1.67901;1.351;0.463187;0.352919;0.291023;0.240295;0.242187;0.200055;0.196708;0.171206;0.168758;0.120304;0.072676;6.76114;6.833555;6.93126;6.9916;7.44477;9.975205;18.3014;19.8818;20.2763;20.41975;13.3;13.91535;11.8356;8.490485;8.309495;8.98862;7.899015;7.837995;7.50294;5.93928;3.66698;3.655605;2.90064;2.650955;1.693525;1.25082;0.9703245;0.609836;0.422547;0.3522185;0.330328;0.2433725;0.180432;0.146699;0.1314485;0.1262235;7.95388;8.04473;8.25369;8.4612;8.7295;12.0724;22.8976;21.9706;27.5431;27.2955;14.7353;16.622;14.8414;10.769;9.73234;10.0759;10.9651;9.96443;9.94659;7.85591;4.86737;5.16531;4.09502;3.74509;2.39168;1.76863;1.32648;0.806535;0.513908;0.483338;0.454374;0.329857;0.209599;0.194334;0.165467;0.174523;5.21254;5.27843;5.42823;5.52634;6.07201;9.16728;13.2184;14.8168;14.6712;10.4164;11.6271;9.7871;9.2178;6.90251;7.06928;4.88823;4.08001;4.39795;5.5648;2.97302;1.83578;1.27028;1.04495;0.880883;0.5932;0.382426;0.381978;0.298944;0.277353;0.280948;0.209511;0.17331;0.152626;0.124924;0.103039;0.071935
+1836;EMSC-20130108_0000044;2013-01-08 14:16:09;602216240.0;usp000jy2b;1667271.0;20130108_0000044;GR;39.6681;25.5372;11.1303;ISC;SS;5.8;ATH;5.81;GCMT;5.82;ISC;5.8;Mw;GEOFON;331.0;77.0;-1.0;61.0;88.0;-166.0;GFZ;300037;v0000044;61.0;89.0;-173.0;GCMT;6.42006;from_nulcleation_depth;9.72523;7.06643;empirical_fault;HL;SMTH;0;HN;0.0;;;;GR;40.47094;25.53045;365.0;;;;;;;;19.7731;1076.476682;89.1;179.6;86.76;86.99;-77.45;39.09;D;0.0;E;90.0;N;0.0;Z;0.03;0.03;0.03;30.0;30.0;30.0;-5.321418;-6.346579;-5.386645;5.8128515;7.360722;4.343479;-0.76764;-0.661559;-0.619789;0.666145;0.823141;0.372857;0.227873;0.14794;0.184658;0.213041;0.245184;0.115435;25.55;23.8;27.13;24.605;27.175;22.32;2.05985;1.95842;1.86922;2.00391;2.41355;1.50667;25.1008576584;28.9091967239;23.8091191767;26.9979906615;29.0762708167;24.8447036117;0.0382711524319;0.0525806676337;0.0337932911787;0.0454259097164;0.0557623551941;0.0350894702044;5.32829;5.38711;5.70061;6.57593;12.2744;14.0713;18.6593;8.45819;6.98933;8.14762;7.79081;6.89871;9.11317;12.0096;9.15454;10.0787;10.2896;9.69087;6.97476;5.58211;4.19886;4.69038;4.55117;3.76581;2.7752;1.77992;0.918461;0.853256;0.660371;0.575275;0.447287;0.335155;0.274887;0.33403;0.311403;0.257966;6.37494;6.54899;7.73931;8.17971;11.4019;13.9465;10.6553;11.1563;12.2004;11.4874;11.8543;12.2732;10.6538;11.8267;12.3955;7.7188;7.24249;7.24105;8.53085;7.59679;5.57566;5.25236;3.31469;2.37663;2.02168;1.35424;0.824261;0.731405;0.733812;0.415089;0.384315;0.278691;0.285635;0.190161;0.165086;0.156558;5.43086;5.69662;6.34031;7.24778;8.38212;11.6094;9.88359;9.55045;7.46365;8.83257;9.00728;6.67355;6.35772;7.17469;7.77061;6.54855;7.18545;7.96733;8.9754;8.55586;6.13619;4.49402;3.39224;2.59152;2.06928;1.35727;1.05429;0.492244;0.65179;0.521076;0.459538;0.331521;0.276192;0.178403;0.160427;0.10979;5.820295;5.978715;6.23638;6.85735;12.03515;14.42355;15.0772;9.628715;9.12516;10.175;10.1535;9.947085;10.2023;11.91815;10.8763;8.975985;8.884555;8.4405;7.87969;6.71605;4.840675;4.815825;4.265425;3.088355;2.234035;1.429815;0.821765;0.759135;0.7232155;0.4970355;0.3936135;0.288814;0.2802785;0.278034;0.241615;0.2036545;7.36552;7.58001;8.66095;9.48776;14.1047;15.5622;20.6935;11.2147;12.2444;11.5225;13.0708;14.0167;12.4468;13.858;14.4694;12.5999;12.3936;11.6;10.3834;8.45377;6.23107;6.48299;5.34947;3.96442;2.7801;1.8026;0.949193;0.880785;0.815884;0.639654;0.456259;0.353588;0.368148;0.365219;0.313237;0.265189;4.36596;4.49708;4.844;5.56338;8.94591;12.2737;10.6553;7.50876;6.27318;7.06001;6.97603;5.83118;6.34819;7.50414;5.95139;4.27591;3.93379;3.84857;3.32722;2.65301;3.26783;3.60398;3.05013;2.37319;1.87121;1.17807;0.670649;0.654712;0.421222;0.292485;0.306502;0.264577;0.190566;0.144347;0.144809;0.104917
+1837;EMSC-20130108_0000044;2013-01-08 14:16:09;602216240.0;usp000jy2b;1667271.0;20130108_0000044;GR;39.6681;25.5372;11.1303;ISC;SS;5.8;ATH;5.81;GCMT;5.82;ISC;5.8;Mw;GEOFON;331.0;77.0;-1.0;61.0;88.0;-166.0;GFZ;300037;v0000044;61.0;89.0;-173.0;GCMT;6.42006;from_nulcleation_depth;9.72523;7.06643;empirical_fault;HL;TNSA;0;HN;0.0;;;;GR;37.53942;25.1631;21.0;;;;;;;;2.574727;469.556462;238.5;7.7;235.51;235.7;188.4;141.5;D;0.0;E;90.0;N;0.0;Z;0.03;0.03;0.03;30.0;30.0;30.0;0.266875;-0.362877;0.346261;0.3089235;0.380759;0.250053;-0.034086;0.049689;0.036426;0.0439124;0.0496889;0.0333175;-0.033386;0.041707;-0.037335;0.0410842;0.0517975;0.0273661;74.75;50.5;69.3;62.03;77.485;50.395;0.151294;0.233743;0.17174;0.1953935;0.233772;0.150731;3.89635319436;4.50656949806;4.39616437513;4.23849670973;4.55485357101;3.87693092516;0.000364848928629;0.000606628304259;0.000473938156834;0.000485738625801;0.000613894159992;0.000357583078163;0.266996;0.269126;0.269686;0.270643;0.28711;0.436535;0.555198;0.598423;0.584224;0.704484;0.657471;0.909507;0.878966;0.763945;0.57968;0.485118;0.445114;0.412408;0.526367;0.419932;0.377127;0.324523;0.261522;0.276784;0.23559;0.183171;0.108358;0.132269;0.096435;0.104556;0.065461;0.070133;0.082894;0.083133;0.056635;0.04263;0.363055;0.364343;0.366626;0.370614;0.406066;0.517971;0.758056;0.819079;0.891054;0.962554;0.776119;1.06887;1.55096;1.08482;0.981203;1.15943;1.05055;0.819944;0.759143;0.788847;0.656907;0.593421;0.609504;0.368587;0.200646;0.275058;0.224113;0.109588;0.076826;0.084062;0.104401;0.095505;0.072553;0.079889;0.081891;0.063023;0.346468;0.347537;0.353336;0.362211;0.386328;0.466442;0.591283;0.611844;0.660876;0.567787;0.79076;0.952417;1.48733;1.1223;0.656041;0.641237;0.633201;0.583279;0.568358;0.438716;0.465727;0.413739;0.462602;0.247717;0.229663;0.1705;0.149336;0.100952;0.080869;0.09489;0.077098;0.096318;0.09304;0.070708;0.052809;0.040232;0.3089415;0.3119145;0.315537;0.318615;0.374086;0.468035;0.6068205;0.683527;0.7632585;0.8324;0.8452585;0.9842915;1.205005;0.8905195;0.7844685;0.8716735;0.7654205;0.581581;0.6243215;0.599083;0.5187325;0.471352;0.454664;0.31639;0.233882;0.202563;0.1710475;0.110472;0.089137;0.1063475;0.08642;0.077609;0.087071;0.0815115;0.065957;0.0530385;0.380815;0.38311;0.385824;0.393847;0.429642;0.579531;0.762896;0.819316;0.893573;0.963628;0.950239;1.15756;1.55273;1.1109;1.02185;1.22568;1.08149;0.820285;0.772673;0.833223;0.680312;0.594897;0.642577;0.385602;0.253422;0.279891;0.224679;0.132428;0.115712;0.117828;0.104748;0.106424;0.105648;0.107922;0.090661;0.073518;0.250661;0.252434;0.257558;0.261905;0.28711;0.401494;0.482746;0.551303;0.581667;0.512917;0.657472;0.880085;0.813966;0.750698;0.56109;0.388757;0.383756;0.402011;0.421948;0.364611;0.377127;0.294622;0.257539;0.197914;0.197943;0.166043;0.1022;0.095629;0.075877;0.076324;0.064817;0.065912;0.06587;0.057642;0.036195;0.021652
+1838;EMSC-20130108_0000044;2013-01-08 14:16:09;602216240.0;usp000jy2b;1667271.0;20130108_0000044;GR;39.6681;25.5372;11.1303;ISC;SS;5.8;ATH;5.81;GCMT;5.82;ISC;5.8;Mw;GEOFON;331.0;77.0;-1.0;61.0;88.0;-166.0;GFZ;300037;v0000044;61.0;89.0;-173.0;GCMT;6.42006;from_nulcleation_depth;9.72523;7.06643;empirical_fault;HL;YDRA;0;HN;0.0;;;;GR;37.34947;23.46529;20.0;;;;;;;;13.183462;895.8858;314.5;34.4;310.26;310.38;129.62;281.94;D;0.0;E;90.0;N;0.0;Z;0.04;0.04;0.04;30.0;30.0;30.0;0.503902;-0.359486;-0.198579;0.403702;0.515313;0.337538;0.075533;-0.056752;-0.034283;0.0755152;0.0817646;0.0555754;0.069918;0.040344;0.028739;0.05648155;0.0798485;0.0287146;63.9;67.555;83.87;66.4025;70.145;62.805;0.338751;0.253837;0.1597;0.2979825;0.338751;0.252794;6.02821246512;4.75481757206;3.40692819493;5.3747701725;6.04720333826;4.68537549214;0.000924189138444;0.000626464299593;0.000241361183079;0.000775326701766;0.000940332795464;0.000610320560766;0.503934;0.50538;0.523598;0.513564;0.510183;0.506331;0.527106;0.616745;0.723098;0.833391;1.03606;0.825844;1.18979;1.05989;0.776378;1.26543;1.24007;1.38054;1.51008;1.8397;1.01285;1.02006;0.733978;0.46189;0.330454;0.298242;0.156208;0.137451;0.120967;0.156499;0.150788;0.086524;0.061697;0.046872;0.042666;0.048359;0.359552;0.360851;0.375536;0.366565;0.372089;0.377711;0.369088;0.394405;0.569519;0.719242;0.761465;0.935457;1.44507;1.78143;0.975436;1.31158;1.20567;0.956625;1.01908;1.29817;0.793329;0.47905;0.54129;0.450048;0.268618;0.13183;0.081627;0.09517;0.083028;0.103791;0.148948;0.102034;0.096278;0.060362;0.042009;0.051816;0.198612;0.199397;0.208399;0.202229;0.203982;0.219537;0.226932;0.271452;0.368452;0.54127;0.520377;0.59546;0.649154;0.879361;0.453521;0.487318;0.384715;0.447295;0.459472;0.526376;0.349069;0.289794;0.4357;0.380002;0.263202;0.152444;0.098081;0.100287;0.075197;0.074866;0.100642;0.069339;0.087501;0.06634;0.047851;0.030195;0.403911;0.4055595;0.419163;0.418687;0.412143;0.4152245;0.4534775;0.509782;0.662612;0.7771635;0.867114;0.8736705;1.41176;1.536315;0.936017;1.288505;1.222865;1.200845;1.28204;1.604165;0.989168;0.827361;0.619088;0.455969;0.3045715;0.213911;0.1243305;0.109973;0.090975;0.124729;0.144372;0.09747;0.080605;0.05373;0.0423385;0.050087;0.515376;0.515868;0.535398;0.53804;0.520284;0.534009;0.582567;0.63369;0.762391;0.873439;1.1658;0.961502;1.55052;1.78189;1.1644;1.43832;1.48215;1.4814;1.75197;2.23066;1.06877;1.02006;0.777327;0.521076;0.339329;0.300484;0.157443;0.139873;0.1246;0.170064;0.169493;0.102771;0.099071;0.061422;0.052518;0.066626;0.337698;0.339557;0.351087;0.34649;0.348859;0.351263;0.364801;0.389425;0.504745;0.617381;0.71809;0.738114;1.13058;0.904793;0.772238;0.840001;1.03192;0.955407;0.615281;0.798888;0.73502;0.455023;0.393967;0.324999;0.240145;0.130042;0.080806;0.07976;0.05947;0.075438;0.097847;0.080216;0.051284;0.037147;0.033555;0.019635
+1839;EMSC-20130108_0000044;2013-01-08 14:16:09;602216240.0;usp000jy2b;1667271.0;20130108_0000044;GR;39.6681;25.5372;11.1303;ISC;SS;5.8;ATH;5.81;GCMT;5.82;ISC;5.8;Mw;GEOFON;331.0;77.0;-1.0;61.0;88.0;-166.0;GFZ;300037;v0000044;61.0;89.0;-173.0;GCMT;6.42006;from_nulcleation_depth;9.72523;7.06643;empirical_fault;KO;ENZZ;0;HN;0.0;;;;TR;40.607;26.1406;11.0;;;;;;;;0.789371;338.348707;116.2;206.4;112.16;112.35;-64.94;91.45;D;0.0;E;90.0;N;0.0;Z;0.04;0.04;0.04;30.0;30.0;30.0;-170.726857;-115.808429;-21.761585;150.284691;176.312988;106.585655;-16.793776;11.962223;2.568392;14.8808;18.1723;11.6416;2.647857;-2.343311;0.738297;2.53394;2.66728;1.70411;32.4;34.84;59.455;32.9375;37.685;31.665;65.0701;41.8395;13.3405;54.48145;68.1977;40.0012;873.078818751;883.547649283;324.545487335;878.313234017;953.794663246;775.566380293;38.6144986153;35.5573250045;3.11437242817;37.0859136128;46.4606675633;27.7111579714;170.837;171.248;171.888;172.952;177.853;182.339;210.948;212.97;369.457;308.628;247.185;222.17;293.629;370.117;379.625;447.455;420.949;427.782;328.426;296.009;214.478;158.647;101.91;69.3897;47.7239;34.6903;21.9989;13.7359;12.0783;9.49425;9.46578;6.60238;3.98359;3.86797;2.59222;2.33687;115.823;116.122;116.849;117.111;119.031;141.272;137.387;176.137;206.438;210.105;273.118;264.196;393.606;464.35;398.9;369.369;332.22;269.774;189.512;127.471;95.1833;70.8161;45.9095;51.5335;33.2819;32.7528;24.9528;11.6321;10.8241;7.98743;8.73851;4.78685;4.0135;2.36554;1.81267;1.47791;21.7924;21.9625;22.7499;22.7449;26.0802;34.2202;57.5029;45.9561;53.6645;61.4241;69.1102;58.6384;82.5064;92.3326;76.4445;100.613;71.3142;43.4328;47.495;51.8131;37.9249;15.4786;21.236;24.298;13.1646;14.2903;11.4057;7.75209;4.95821;3.63;2.99718;1.60573;1.37134;0.828105;0.612471;0.536137;150.3445;150.8315;151.769;152.705;157.12;165.2105;173.5205;212.3115;270.5325;277.3065;248.546;245.156;359.128;424.1795;390.6415;403.45;374.516;366.521;241.923;210.281;173.1835;115.175;82.67585;59.20915;43.75875;32.07575;23.29945;13.511;11.05845;9.26123;9.23114;5.569905;3.998475;3.04005;2.212545;1.992095;176.349;176.578;177.027;177.698;182.855;195.349;236.818;224.454;371.169;312.208;276.765;264.502;429.812;499.49;464.228;499.676;459.947;453.635;333.408;296.186;216.06;159.719;101.909;79.43;56.1807;38.2121;26.3573;15.0927;13.0105;11.6126;10.8101;6.82657;4.5527;3.86805;2.60636;2.33722;106.628;106.992;107.517;108.266;110.99;121.288;137.387;161.89;199.146;205.084;230.785;198.078;205.995;262.756;293.021;320.227;319.734;264.627;154.355;108.42;89.626;61.217;40.9541;31.6294;28.6957;22.1427;11.795;11.4368;9.54216;7.41933;6.70061;3.87039;2.68732;2.21851;1.58106;1.18216
+1840;EMSC-20130108_0000044;2013-01-08 14:16:09;602216240.0;usp000jy2b;1667271.0;20130108_0000044;GR;39.6681;25.5372;11.1303;ISC;SS;5.8;ATH;5.81;GCMT;5.82;ISC;5.8;Mw;GEOFON;331.0;77.0;-1.0;61.0;88.0;-166.0;GFZ;300037;v0000044;61.0;89.0;-173.0;GCMT;6.42006;from_nulcleation_depth;9.72523;7.06643;empirical_fault;KO;FOCM;0;HN;0.0;;;;TR;38.7131;26.7309;34.0;;;;;;;;2.86062;489.873133;147.9;316.2;146.66;146.92;143.11;32.61;D;0.0;E;90.0;N;0.0;Z;0.04;0.04;0.04;30.0;30.0;30.0;-12.514443;12.311513;6.645565;12.412978;14.667898;8.582754;1.174895;1.080183;-0.546634;1.197175;1.42168;0.84478;-0.660438;0.735566;0.352645;0.694231;0.895403;0.28265;38.145;32.065;43.75;35.315;42.115;29.465;5.43235;3.92735;2.40895;4.91516;5.54787;3.81035;84.8903386138;82.2502956108;54.4745144462;83.3248770251;85.6982246764;79.9355391812;0.322523307614;0.306814634373;0.107914220213;0.314668985442;0.373596791856;0.2557411653;12.522;12.5639;12.9994;12.9481;13.9488;15.4897;28.9689;41.2442;31.9728;32.3273;45.1958;59.8629;45.2121;31.6043;19.0255;16.3688;13.1063;13.5168;18.555;18.9572;11.8765;10.5548;11.2335;8.33929;5.96852;6.72458;5.09018;3.48939;2.08259;1.89018;2.37839;1.06319;0.57586;0.633515;0.77258;0.691272;12.3441;12.444;12.757;12.6896;12.7132;19.9515;26.7401;39.3732;29.9126;46.7141;53.6742;26.5125;22.0709;23.5076;16.1617;12.3919;11.137;12.0014;8.89989;7.44527;8.79274;7.33565;7.3687;5.86833;5.19935;4.60467;5.41559;3.20861;2.87054;2.83583;2.48411;1.49189;0.928016;0.590632;0.741538;0.668512;6.64999;6.72845;6.75358;6.58532;7.12663;11.0367;14.8207;23.403;18.8484;17.4274;16.1471;19.8483;15.9683;13.649;7.22016;6.33064;6.40294;6.60798;6.7052;5.47435;3.50079;3.63415;3.6199;5.26056;4.55302;3.48024;2.95944;1.28526;1.27091;1.2985;1.43836;0.809097;0.554397;0.414621;0.288415;0.22324;12.43305;12.50395;12.8782;12.81885;13.41705;17.57165;27.76545;40.90365;30.74385;39.7537;49.60665;46.8299;36.693;28.21255;16.41;14.0386;11.35015;12.0242;14.1807;13.8454;9.9843;9.70354;9.75174;8.185475;5.786435;6.17617;5.258455;3.15181;2.42095;2.50886;2.43125;1.27217;0.7650815;0.610552;0.75721;0.679744;14.6914;14.8189;15.1035;15.4206;16.209;21.6874;31.4206;46.3131;36.6834;52.8557;69.7963;63.2189;46.5037;32.6268;19.1699;19.8536;14.9593;14.8602;18.6546;19.2931;13.7823;12.5573;11.447;9.52367;7.17736;8.03748;6.69979;3.57896;2.87053;3.24203;3.28083;1.76199;1.03971;0.764956;1.04587;0.961291;8.60136;8.73379;8.95977;9.29718;10.9601;14.1547;24.2862;27.683;21.3901;23.3362;25.2396;21.3411;19.8015;22.4521;13.6047;9.17768;9.67822;10.6822;7.83149;7.19016;6.92393;6.28984;6.06469;5.84719;5.14609;3.25076;2.82302;2.63017;1.66701;1.46041;1.32374;0.613532;0.408639;0.330283;0.317988;0.260069
+1841;EMSC-20130108_0000044;2013-01-08 14:16:09;602216240.0;usp000jy2b;1667271.0;20130108_0000044;GR;39.6681;25.5372;11.1303;ISC;SS;5.8;ATH;5.81;GCMT;5.82;ISC;5.8;Mw;GEOFON;331.0;77.0;-1.0;61.0;88.0;-166.0;GFZ;300037;v0000044;61.0;89.0;-173.0;GCMT;6.42006;from_nulcleation_depth;9.72523;7.06643;empirical_fault;KO;GMLD;0;HN;0.0;;;;TR;38.0764;26.8747;10.0;;;;;;;;9.985842;812.011087;211.4;327.1;211.02;211.25;210.95;9.23;D;0.0;E;90.0;N;0.0;Z;0.05;0.05;0.05;30.0;30.0;30.0;-11.916812;-12.937232;-6.088203;12.947393;14.469734;11.040295;1.116421;1.507656;0.419905;1.21154;1.56216;1.11428;0.27218;-0.509913;-0.152476;0.405381;0.552141;0.162909;35.82;37.475;45.31;35.9125;37.645;35.42;4.16513;4.77415;1.97124;4.413465;4.78501;4.09779;129.51755936;120.921430274;53.5002033039;124.989100318;130.872074998;120.673553648;0.673264606275;0.579820662819;0.100571177008;0.62654261598;0.681804680522;0.571280556334;11.9201;11.9429;12.0376;12.0565;12.2755;13.544;18.4873;28.1255;32.5817;29.7196;49.0178;66.4693;44.6575;43.9377;52.5635;33.8239;29.2336;22.6407;17.1058;12.0868;8.31247;5.59103;3.81805;3.14907;3.16908;2.62318;1.54941;0.859205;0.681928;0.777845;0.567598;0.329109;0.241758;0.210513;0.254827;0.288839;12.9387;13.0203;12.9322;13.1881;13.6092;14.5144;15.8643;28.5542;24.5072;30.0398;38.7358;41.6588;47.7727;49.7642;54.3929;40.8225;31.5338;25.4067;15.5226;12.9041;9.31495;5.02967;4.57352;5.42565;4.29494;4.43095;2.36548;1.98356;1.53239;1.50308;1.35524;1.14939;0.662321;0.593656;0.713231;0.633716;6.09108;6.16141;6.10933;6.11032;6.18268;6.38112;6.9273;11.9781;19.8943;15.111;23.78;18.238;20.0798;15.3641;14.4829;11.5535;10.1606;7.59635;5.61163;5.0717;4.79603;3.92682;3.25925;2.99736;2.04795;1.16886;1.06587;0.721372;0.591996;0.519976;0.666489;0.270548;0.264363;0.240141;0.20444;0.142563;12.94895;12.9968;13.0129;13.19585;13.45095;14.4415;18.33175;27.84995;27.06135;32.3817;49.22785;54.0667;46.4477;46.06755;52.6035;38.08425;30.93675;24.4381;15.3115;11.8434;8.054655;5.400985;4.01398;4.37685;4.06325;3.288485;2.062195;1.518985;1.161375;1.13269;1.010148;0.8369755;0.509067;0.4472195;0.524147;0.493861;14.4791;14.5695;14.5713;14.8928;15.1026;15.8204;19.324;31.6334;32.7036;35.2128;58.7336;70.3745;54.1554;53.4946;61.7938;44.5724;35.2248;26.7352;17.5441;13.4169;9.31495;5.6396;4.90491;5.45147;5.03094;4.43096;2.37358;2.12669;1.56761;1.56009;1.41042;1.16876;0.678668;0.605349;0.74125;0.680391;11.0505;11.0896;11.0872;11.1298;11.2478;13.0075;14.7182;22.237;24.5072;28.2304;32.4722;38.8094;37.5902;36.7715;42.3912;31.2857;24.8035;19.0878;12.4262;9.31192;6.98839;4.68674;3.34228;2.70051;2.5505;2.35264;0.92854;0.750119;0.543272;0.531986;0.418435;0.30444;0.201224;0.143419;0.12405;0.112492
+1842;EMSC-20130108_0000044;2013-01-08 14:16:09;602216240.0;usp000jy2b;1667271.0;20130108_0000044;GR;39.6681;25.5372;11.1303;ISC;SS;5.8;ATH;5.81;GCMT;5.82;ISC;5.8;Mw;GEOFON;331.0;77.0;-1.0;61.0;88.0;-166.0;GFZ;300037;v0000044;61.0;89.0;-173.0;GCMT;6.42006;from_nulcleation_depth;9.72523;7.06643;empirical_fault;KO;GOKC;0;HN;0.0;;;;TR;40.1998;25.9183;123.0;;;;;;;;9.077905;788.517904;67.4;209.0;63.26;63.58;-34.96;52.72;D;0.0;E;90.0;N;0.0;Z;0.04;0.04;0.04;30.0;30.0;30.0;125.454167;-92.81634;-55.849155;104.1938935;147.158722;84.096214;7.107743;-7.988153;-4.102463;7.371495;9.60931;5.02251;-1.89023;-1.490918;-1.213912;1.651045;1.91982;1.31273;16.345;17.005;22.195;16.5975;17.02;16.345;30.7924;33.1839;20.2027;31.7896;35.4229;28.6937;462.855004859;457.605358337;353.596528854;462.845935009;467.650423838;451.308494505;15.8293142302;14.7891643707;7.81468942577;15.3092402297;15.9887660014;14.6297125275;126.57;131.231;142.942;163.573;190.32;464.553;305.695;279.597;229.809;210.902;201.161;204.933;239.613;171.895;184.929;161.669;160.876;155.869;124.892;83.0472;84.6773;62.734;42.0859;31.8845;28.0017;28.2027;9.60826;9.23252;7.55942;5.93507;4.73873;2.77106;2.3154;2.11564;1.60147;1.34139;93.1567;96.2103;107.745;112.583;154.771;209.473;245.351;268.895;217.456;267.104;229.995;176.739;243.992;157.161;200.258;158.697;129.272;144.318;174.229;167.667;64.5734;55.4739;65.8903;45.298;29.4025;26.066;10.9386;11.4773;7.62871;5.94263;5.03358;4.41561;2.72349;1.54129;1.3087;1.09289;56.0868;56.7402;58.8502;81.9293;109.699;134.201;172.799;155.681;132.354;117.672;121.297;103.887;154.291;113.818;118.58;87.6609;98.2756;106.604;65.9008;69.8956;60.1292;35.6533;40.0398;23.6899;18.7384;16.6272;9.79174;7.36223;5.98244;6.87024;6.21312;3.86021;2.70756;1.8025;1.2697;0.763359;104.6855;108.1735;115.4015;126.7115;158.8085;344.726;262.2255;294.9735;234.3565;243.169;226.753;201.169;228.159;155.9895;190.501;161.7465;139.4695;144.8845;136.9715;135.567;77.59395;59.6779;49.8179;39.2617;28.7021;27.08235;10.31895;10.43625;7.9552;5.93885;4.78372;3.76542;2.60701;2.036965;1.44696;1.229405;147.823;152.788;163.203;174.394;221.183;487.005;339.933;331.05;253.329;280.823;253.539;229.751;243.992;171.895;210.029;171.399;169.993;158.212;182.311;170.537;90.8776;67.177;67.8192;51.2572;37.464;33.2813;11.8302;11.7315;8.88396;7.3826;5.03361;4.41701;3.24254;2.18906;1.65399;1.35803;84.0966;85.8539;86.1393;102.049;140.366;209.473;238.108;226.601;192.953;162.703;154.041;162.41;177.199;135.749;177.832;133.38;105.245;128.109;117.514;80.9425;62.8255;48.0474;33.5649;27.7101;19.7583;14.8235;8.39851;5.45104;6.34564;5.01386;3.97587;2.36641;2.2914;1.47291;1.08124;0.936797
+1843;EMSC-20130108_0000044;2013-01-08 14:16:09;602216240.0;usp000jy2b;1667271.0;20130108_0000044;GR;39.6681;25.5372;11.1303;ISC;SS;5.8;ATH;5.81;GCMT;5.82;ISC;5.8;Mw;GEOFON;331.0;77.0;-1.0;61.0;88.0;-166.0;GFZ;300037;v0000044;61.0;89.0;-173.0;GCMT;6.42006;from_nulcleation_depth;9.72523;7.06643;empirical_fault;KO;GOMA;0;HN;0.0;;;;TR;38.7077;27.9175;110.0;;;;;;;;4.08679;545.767803;231.6;298.2;228.87;229.07;193.29;122.76;D;0.0;E;90.0;N;0.0;Z;0.04;0.04;0.04;30.0;30.0;30.0;-5.465577;4.237814;2.324424;4.4571565;5.770603;3.85179;0.619665;-0.580419;-0.3927;0.577433;0.673793;0.537213;-0.22241;-0.273805;0.222252;0.2493025;0.334198;0.154224;55.63;57.025;69.205;56.2725;59.23;52.99;2.66171;3.25363;1.6201;3.03579;3.27678;2.4946;51.0744905696;41.987077915;28.982165973;46.7053665781;51.1738603582;41.987077915;0.0829495504684;0.0544385221934;0.0213092295853;0.0686940381674;0.0829945883992;0.0543934909735;5.46691;5.48872;5.51962;5.56353;5.69646;6.08215;6.92194;10.4034;13.607;10.9243;17.9031;22.1807;20.9137;16.1242;11.6386;9.52308;7.55752;8.43019;9.84419;11.9791;8.6527;5.86695;4.65194;3.83666;2.56062;2.21135;1.40007;0.833906;0.684408;0.606565;0.537856;0.587305;0.416554;0.336491;0.219371;0.181549;4.23809;4.23791;4.27316;4.29825;4.28103;4.27995;4.92276;8.45638;7.7349;10.3431;11.9523;10.3829;8.64622;8.04354;7.94072;8.26373;6.37189;7.11582;10.8133;11.231;7.92611;7.42749;7.18538;7.74998;5.7066;3.15943;1.92026;1.47402;1.25421;0.91288;0.914417;0.683946;0.458061;0.298577;0.23786;0.20548;2.32443;2.34735;2.4147;2.41727;2.46068;2.70233;3.71213;7.77832;5.65691;4.42;4.11121;6.10149;3.66939;4.09264;3.48926;4.23985;3.53763;4.20379;4.22102;5.27745;5.37149;4.76495;3.2772;3.48224;2.13833;1.32168;1.32387;0.985226;0.703949;0.678269;1.16142;0.937388;0.670902;0.43722;0.368586;0.285274;4.459665;4.48995;4.4931;4.5225;4.61979;4.897075;5.95562;8.684175;10.092345;10.7222;15.76015;16.3984;16.19355;11.73165;10.74445;8.23056;7.55465;7.775605;10.6374;11.6396;8.200235;6.525705;5.993195;6.13052;4.568375;2.7629;1.66542;1.089555;0.948562;0.75223;0.8098535;0.6000085;0.4193095;0.330242;0.2305155;0.1949695;5.77062;5.78633;5.83554;5.8765;6.01809;6.38487;7.10922;10.5747;13.6638;12.9298;19.1587;22.1807;21.1122;16.591;11.8776;9.58668;7.94328;9.40259;11.6374;14.0622;8.92358;7.66952;7.83829;8.34224;5.83021;3.68289;2.20032;1.48943;1.29831;0.930017;0.925957;0.727;0.488161;0.379051;0.289609;0.246557;3.85546;3.86776;3.87597;3.92302;3.94926;4.06299;4.6653;7.84224;7.47001;8.38716;9.51777;10.063;8.2632;6.63138;7.06936;6.40347;5.71126;6.46042;7.20247;9.6175;4.84909;5.17822;3.64357;2.85082;1.86315;1.54423;1.18559;0.78094;0.684406;0.555268;0.48675;0.451367;0.355434;0.195352;0.143591;0.113664
+1844;EMSC-20130108_0000044;2013-01-08 14:16:09;602216240.0;usp000jy2b;1667271.0;20130108_0000044;GR;39.6681;25.5372;11.1303;ISC;SS;5.8;ATH;5.81;GCMT;5.82;ISC;5.8;Mw;GEOFON;331.0;77.0;-1.0;61.0;88.0;-166.0;GFZ;300037;v0000044;61.0;89.0;-173.0;GCMT;6.42006;from_nulcleation_depth;9.72523;7.06643;empirical_fault;KO;GPNR;0;HN;0.0;;;;TR;39.4552;26.1329;570.0;;;;;;;;6.896829;693.349986;56.4;295.0;53.66;54.14;45.98;27.87;D;0.0;E;90.0;N;0.0;Z;0.03;0.03;0.03;30.0;30.0;30.0;63.005745;-82.567309;38.376727;74.8324665;83.045113;58.17271;4.811987;-4.742254;2.581539;4.77712;6.73175;3.50331;1.444942;1.280822;1.015685;1.30674;1.62768;1.16613;26.73;25.3;23.27;25.875;27.415;24.38;17.7752;18.0833;9.03185;18.0342;19.4242;16.2108;408.628938356;414.98522468;252.519184004;413.125124638;421.089876892;402.543871797;9.039255767;10.3468774622;3.44279756593;9.6930666035;10.7601964417;8.62593794373;63.3725;64.7112;72.3881;98.1225;110.308;170.678;203.655;203.215;168.811;159.362;126.166;129.972;135.027;104.813;112.854;113.792;102.065;87.464;71.3753;52.8203;45.6296;29.1336;28.1688;22.1849;22.4799;10.0603;6.99078;7.03209;3.92168;3.58046;3.13009;2.8357;2.38216;1.64979;0.989424;0.7111;82.5762;84.3479;87.6723;92.7638;122.044;153.142;256.228;135.427;258.501;235.451;192.228;121.689;139.778;145.674;105.433;102.307;76.1049;52.3782;52.7279;44.8862;37.8116;33.8547;36.2535;20.2072;16.3084;12.5057;12.5816;6.75687;4.63794;4.74498;5.14708;3.50825;1.6814;1.10149;1.20214;1.02247;38.407;40.0251;44.4754;56.721;95.9687;131.613;139.831;80.9382;99.8862;69.0859;60.1701;46.8512;37.9633;33.8548;35.1608;40.2072;33.1278;24.1608;18.9456;27.7959;37.9911;19.8635;16.2262;11.5193;8.4924;8.90349;4.82821;3.3811;2.85076;3.00276;2.0068;1.78418;1.97734;1.49404;1.10817;0.82925;74.94835;76.29225;79.56865;94.10795;117.5625;166.1455;219.4295;168.3055;221.5385;188.629;162.521;131.3325;136.9425;116.6585;111.6895;101.7005;87.30295;70.9188;60.9555;50.03225;39.56525;32.1927;34.60555;22.3716;20.7796;11.30475;10.26395;7.02643;4.927375;4.852715;4.05885;3.203455;2.07327;1.412555;1.06116;0.906759;83.1003;84.8307;88.4515;104.368;137.626;187.802;257.476;205.586;273.771;248.695;229.513;137.803;145.732;145.674;131.034;120.765;114.513;96.5673;72.4471;55.0058;50.1953;36.1786;37.7046;24.6285;23.6981;12.6319;12.5816;7.5385;5.44107;5.49972;5.65926;4.30607;2.87709;1.66166;1.20222;1.05445;58.182;61.0724;70.8254;86.8167;99.8425;128.381;162.214;133.421;151.915;136.433;96.3277;116.148;108.235;95.2742;88.5127;69.9742;69.7511;47.422;45.3569;36.0954;32.691;27.6555;22.5519;18.9868;15.8822;8.81681;6.04927;5.17605;3.92171;3.30129;3.05275;2.0591;1.1799;1.05418;0.929475;0.675351
+1845;EMSC-20130108_0000044;2013-01-08 14:16:09;602216240.0;usp000jy2b;1667271.0;20130108_0000044;GR;39.6681;25.5372;11.1303;ISC;SS;5.8;ATH;5.81;GCMT;5.82;ISC;5.8;Mw;GEOFON;331.0;77.0;-1.0;61.0;88.0;-166.0;GFZ;300037;v0000044;61.0;89.0;-173.0;GCMT;6.42006;from_nulcleation_depth;9.72523;7.06643;empirical_fault;KO;KIYI;0;HN;0.0;;;;TR;41.4844;28.3;23.0;;;;;;;;4.800245;578.339304;308.8;230.1;303.96;304.03;-62.76;297.41;D;0.0;E;90.0;N;0.0;Z;0.04;0.04;0.04;30.0;30.0;30.0;12.284263;-15.757848;10.94137;14.1328805;17.666695;11.497662;1.25698;-1.61841;0.998138;1.556865;1.82428;1.16006;0.521888;-0.544697;0.130575;0.5333;0.657274;0.182363;46.14;38.505;38.22;43.975;49.93;37.51;4.50547;5.82789;3.27061;5.17629;5.88191;4.48658;162.617455762;168.679123129;78.4292338857;165.751983864;175.687794167;150.518510139;0.890913518588;1.0072915097;0.257311321266;0.949102470085;1.16819940872;0.730005691027;12.2859;12.3973;12.365;12.5599;12.5997;14.0012;16.2259;24.1632;29.7286;37.5821;42.1731;48.1631;54.1344;52.6326;38.7616;29.3688;25.7478;21.7444;26.5782;14.2693;10.9336;6.50012;4.78307;3.79384;3.88713;3.18425;3.32705;2.17329;2.31248;2.26589;2.36716;1.39338;0.857149;0.576801;0.440715;0.357872;15.7688;15.7732;15.9583;16.0289;16.8601;19.3279;19.0952;26.5898;46.3997;46.2862;39.4631;61.1778;73.074;56.9001;46.08;39.4204;32.567;27.695;16.8837;16.8217;13.211;7.83487;7.68093;7.78522;7.38495;3.45238;2.97398;2.56977;2.79015;2.49375;2.68535;1.54094;0.925548;0.62494;0.443481;0.337849;10.9424;11.1001;10.9519;11.1316;11.5363;14.6085;12.1795;12.5745;21.8873;16.7046;21.3212;26.7387;27.0704;29.4626;39.4828;50.2669;44.5323;31.0839;15.7738;8.60737;7.68388;4.10136;2.41722;1.8478;1.88149;1.18516;0.995377;1.00618;0.701142;0.695774;0.494758;0.317971;0.262778;0.172405;0.134322;0.101013;14.1401;14.2324;14.51965;14.46365;14.76445;16.507;18.47195;24.7176;37.769;37.81015;41.47895;53.7501;62.95795;64.4379;41.19105;32.6786;31.60945;25.13035;21.56935;15.3964;11.7362;7.02198;6.093765;6.169765;5.89555;3.32439;3.10701;2.353065;2.54152;2.3648;2.529465;1.464805;0.891345;0.600789;0.442018;0.34792;17.6728;17.7169;18.0681;17.6815;18.8346;20.1385;19.3464;26.8701;50.6603;46.2862;49.513;72.3869;73.0739;71.7511;52.6288;40.5475;39.4821;29.4995;30.5037;17.0819;13.2389;7.90475;7.75132;8.18575;8.32142;3.76101;4.23995;3.0863;3.49221;3.26297;3.51074;2.03917;1.25341;0.848278;0.6247;0.491678;11.4997;11.6151;11.5695;11.7545;11.8529;13.7551;16.2259;20.9954;28.9871;32.4389;30.3854;42.2952;51.4561;51.8017;34.6104;26.3649;23.5738;16.6894;11.6952;9.70652;7.97672;4.79794;4.48797;3.23359;2.70199;2.3722;1.72737;1.2927;0.895458;0.726968;0.433884;0.376412;0.240384;0.192024;0.15913;0.145491
+1846;EMSC-20130108_0000044;2013-01-08 14:16:09;602216240.0;usp000jy2b;1667271.0;20130108_0000044;GR;39.6681;25.5372;11.1303;ISC;SS;5.8;ATH;5.81;GCMT;5.82;ISC;5.8;Mw;GEOFON;331.0;77.0;-1.0;61.0;88.0;-166.0;GFZ;300037;v0000044;61.0;89.0;-173.0;GCMT;6.42006;from_nulcleation_depth;9.72523;7.06643;empirical_fault;KO;KRBN;0;HN;0.0;;;;TR;38.5936;26.5537;135.0;;;;;;;;5.085015;591.358409;148.2;323.9;147.58;147.85;147.16;12.68;D;0.0;E;90.0;N;0.0;Z;0.04;0.04;0.04;30.0;30.0;30.0;12.859398;18.023993;-14.514436;16.2527185;18.941128;11.748792;1.547797;1.380572;1.412873;1.44618;1.68866;0.972652;0.783933;-0.634926;0.334611;0.7009555;0.982676;0.437794;53.56;44.89;36.54;51.85;62.01;40.37;5.78264;6.68188;5.40053;6.25646;7.49372;4.89647;112.304674669;124.575479371;94.319480366;118.03472369;126.488749026;111.312066522;0.417833647202;0.572439205406;0.386361812821;0.495136427058;0.606596323334;0.38367658801;12.8633;13.2034;13.6276;13.8729;14.3493;16.744;34.4101;34.7281;41.2468;39.5972;23.6353;22.3027;28.8675;21.5877;26.2351;33.7776;36.2526;32.6594;23.7111;21.1608;12.5532;12.5237;8.70792;8.64541;6.45984;4.64481;3.00711;2.25305;2.33453;2.86108;2.51393;1.47009;0.889722;0.948159;1.11103;1.09095;18.0426;18.3425;18.4773;18.2337;19.8193;22.8877;41.5592;47.1263;75.3904;44.5896;31.5585;29.8306;47.0379;38.6165;24.4354;26.0286;23.2326;19.5197;16.5762;20.8333;17.5162;11.838;13.0824;11.8926;8.85126;7.09272;4.14384;3.15377;2.94629;1.84772;1.83062;1.32645;0.910565;0.642551;0.708313;0.818778;14.5241;14.6276;14.9623;14.7409;15.6169;17.514;21.9434;26.5837;27.9276;25.9485;22.8038;32.6008;36.482;46.1928;41.9418;47.7562;47.6423;39.5103;21.5733;16.3248;10.8705;10.6038;8.67021;5.61783;4.24359;3.0014;3.403;1.97172;1.79209;2.39665;1.67043;0.67167;0.566596;0.571655;0.399469;0.348238;16.27535;16.44105;16.9698;17.0188;17.81965;20.60625;38.31425;45.3263;59.8226;41.66315;28.0986;27.82635;39.11745;30.86895;24.4907;30.37265;28.8181;25.8065;20.4831;20.99705;15.3412;11.87175;11.1985;10.65515;7.90453;5.952265;3.56472;2.71902;2.69367;2.19188;2.271215;1.400065;0.9001925;0.80105;0.8737515;0.963508;18.9412;19.245;19.5705;19.5013;21.1688;26.0658;49.5093;48.3738;81.7976;45.4075;32.9918;33.2823;53.2353;41.4462;28.1494;37.1842;38.2782;33.1355;27.6226;28.4875;19.8289;12.834;13.2071;14.361;9.39625;7.7271;4.95945;3.17705;3.03928;3.01192;2.53552;1.95194;1.12869;1.02744;1.22919;1.29244;11.7518;12.0473;12.4672;12.4644;12.7354;15.7764;31.9746;28.997;25.5525;30.2087;17.397;20.0622;18.5559;18.2011;22.2346;23.072;20.0114;15.4207;14.9005;14.4902;12.3806;9.81871;8.37031;7.66441;4.75158;3.6876;3.00711;1.76472;1.72021;1.84773;1.63268;0.758041;0.723082;0.463241;0.36707;0.331533
+1847;EMSC-20130108_0000044;2013-01-08 14:16:09;602216240.0;usp000jy2b;1667271.0;20130108_0000044;GR;39.6681;25.5372;11.1303;ISC;SS;5.8;ATH;5.81;GCMT;5.82;ISC;5.8;Mw;GEOFON;331.0;77.0;-1.0;61.0;88.0;-166.0;GFZ;300037;v0000044;61.0;89.0;-173.0;GCMT;6.42006;from_nulcleation_depth;9.72523;7.06643;empirical_fault;KO;ORLT;0;HN;0.0;;;;TR;40.0452;28.8914;650.0;;;;;;;;9.898872;809.755212;290.0;262.8;285.39;285.51;101.81;266.66;D;0.0;E;90.0;N;0.0;Z;0.04;0.04;0.04;30.0;30.0;30.0;-14.531754;-12.231347;-5.946544;13.786431;16.682392;11.491652;-1.412783;1.398639;-0.730996;1.48887;1.61116;1.16912;0.255461;0.532523;-0.224327;0.4418425;0.540636;0.255464;38.345;34.575;57.94;36.9275;39.335;33.635;5.95262;7.1005;3.21414;6.31264;7.29752;5.75454;118.430002347;118.186909414;55.9565530602;118.30845588;121.180480855;116.57463172;0.566092324278;0.547822822298;0.106033038104;0.556957572359;0.572343057693;0.54157215671;14.5355;14.5684;14.6573;14.7622;14.8872;15.6551;19.9773;38.392;40.9827;42.4164;37.7394;43.0905;54.9076;45.953;26.8397;24.7098;18.6544;16.4531;20.5583;23.9481;22.0812;12.7455;10.1905;7.89319;6.37657;3.17331;2.11743;1.07296;1.02397;0.923146;0.622345;0.416456;0.302573;0.242695;0.21985;0.164539;12.2374;12.2899;12.4064;12.5072;12.8961;14.0826;15.831;25.1712;54.3319;36.8528;38.3597;38.9734;40.3664;32.2438;26.9629;27.8755;22.1475;20.9315;21.9841;19.5409;22.7366;13.3427;11.6131;10.922;12.5417;6.21391;2.55814;2.51948;2.03187;1.52934;1.57011;0.860998;0.605492;0.5473;0.545748;0.474721;5.95119;5.96834;5.9857;6.03642;6.16068;6.27224;7.65142;7.801;12.6294;11.806;18.255;13.9952;14.1943;16.3274;9.85832;12.6868;16.693;17.5601;17.2248;11.1526;12.7115;12.3629;5.34872;3.36185;2.50198;1.65956;1.42954;1.27001;0.95568;0.745204;0.563871;0.450587;0.415;0.30441;0.236625;0.189559;13.7981;13.84665;13.99245;14.13225;14.7309;15.65085;18.95585;31.82685;44.43715;40.333;37.3681;41.9373;45.81845;40.3701;25.74315;26.26645;21.78095;18.3102;21.17705;21.34715;22.40895;13.0441;10.77125;9.62694;10.0358;4.82955;2.299745;1.944245;1.499335;1.22214;1.239285;0.7472655;0.545783;0.4353315;0.4348255;0.3609945;16.6939;16.7523;16.8546;16.9664;17.1132;18.398;20.286;41.7801;54.3319;44.4618;39.1788;47.9887;54.9076;46.2358;27.2579;36.021;25.1153;23.3587;29.4266;27.1265;27.5608;16.3555;11.6367;11.6037;12.7521;6.23292;2.77393;2.53832;2.05901;1.52932;1.58448;0.939981;0.611847;0.568653;0.560364;0.474617;11.4982;11.5467;11.6318;11.7014;12.0176;13.0244;15.4398;23.9262;35.5129;34.8547;35.3859;33.1649;34.7001;32.2438;21.6053;15.9409;16.2106;14.5848;13.2918;13.937;9.45003;10.3162;9.51587;5.96396;4.70722;3.15477;1.9306;1.04223;0.92185;0.816871;0.62227;0.4166;0.274594;0.212254;0.187035;0.164953
+1848;EMSC-20130108_0000044;2013-01-08 14:16:09;602216240.0;usp000jy2b;1667271.0;20130108_0000044;GR;39.6681;25.5372;11.1303;ISC;SS;5.8;ATH;5.81;GCMT;5.82;ISC;5.8;Mw;GEOFON;331.0;77.0;-1.0;61.0;88.0;-166.0;GFZ;300037;v0000044;61.0;89.0;-173.0;GCMT;6.42006;from_nulcleation_depth;9.72523;7.06643;empirical_fault;KO;SHAP;0;HN;0.0;;;;TR;39.0231;29.222;1050.0;;;;;;;;10.970781;837.645812;325.6;283.9;321.84;321.98;215.51;239.14;D;0.0;E;90.0;N;0.0;Z;0.03;0.03;0.03;30.0;30.0;30.0;-3.388897;-3.605205;-1.443125;3.499206;4.761509;2.954921;0.294301;-0.424108;-0.237737;0.3933915;0.441406;0.291638;0.132756;0.189815;0.145861;0.185269;0.216529;0.132767;76.015;69.98;90.985;73.7625;76.65;68.55;1.45233;1.87369;0.947847;1.650255;1.87369;1.45233;40.7177021128;40.6425678445;26.8897571301;40.6801349787;42.5323745456;38.8251029166;0.0398250193462;0.0439762889426;0.0145087190831;0.041900652231;0.0476133002617;0.0361880104754;3.38984;3.40273;3.42041;3.4816;3.69395;3.79856;4.74376;7.28137;9.134;8.07804;8.01315;11.0928;9.37471;6.65261;5.29359;4.1042;5.08657;4.34112;5.1453;6.30366;4.73007;4.14149;2.2943;1.91946;1.40452;1.13073;0.895975;0.794369;0.557231;0.468686;0.563182;0.611394;0.471885;0.342909;0.25139;0.174766;3.60714;3.63038;3.71028;3.656;3.71932;4.17616;5.51157;5.34481;9.59325;11.4706;10.2501;13.0867;13.8024;10.4148;6.9445;11.184;10.0737;9.29978;7.85506;5.42183;5.31527;4.03663;2.83124;2.43836;1.87958;1.65659;0.964048;0.784352;0.660345;0.823546;0.714138;0.543573;0.470411;0.42471;0.325557;0.259972;1.44479;1.44321;1.44517;1.60168;1.42771;1.72265;2.20099;3.91044;3.91771;3.62454;3.45708;2.87231;4.58521;3.8963;3.96858;3.20763;3.23408;3.40711;3.8945;2.90516;2.6126;2.23431;2.33444;1.7443;1.03244;1.01883;1.09723;0.595298;0.384575;0.322824;0.396952;0.511717;0.440987;0.316875;0.208568;0.180548;3.500175;3.522045;3.587285;3.610055;3.706635;3.980815;5.039005;6.48304;9.37006;9.51738;8.407745;12.0428;11.7703;9.692315;6.140035;8.234985;7.772465;7.42442;6.60054;5.86008;4.89091;4.05462;2.707525;2.07472;1.63275;1.46178;0.888365;0.786174;0.6636305;0.783833;0.6080905;0.5776055;0.471147;0.383202;0.2879575;0.223385;4.76362;4.78324;4.81325;4.91022;5.00165;5.1414;6.04525;7.43981;11.6512;12.8035;10.8161;14.5833;13.8622;11.402;6.97159;11.2198;10.0995;9.33198;7.85506;7.77809;5.31527;4.67565;2.96133;2.43836;2.06197;1.66539;0.99996;0.879404;0.722377;0.889924;0.768678;0.673602;0.565351;0.469362;0.331239;0.260042;2.9583;2.95474;3.00336;2.99464;3.06647;3.422;4.43876;4.81559;7.39663;5.02508;5.65269;7.45893;9.35715;6.40896;5.2538;4.1042;4.8352;4.34112;5.10322;4.02161;4.31868;3.03428;2.14554;1.79785;1.40452;1.05155;0.745027;0.539224;0.481084;0.438055;0.478622;0.374978;0.290532;0.290358;0.226566;0.17477
diff --git a/tests/residuals/residuals_tests.py b/tests/residuals/residuals_tests.py
new file mode 100644
index 0000000..11bf057
--- /dev/null
+++ b/tests/residuals/residuals_tests.py
@@ -0,0 +1,149 @@
+"""
+Core test suite for the database and residuals construction
+"""
+import os
+import subprocess
+import unittest
+import cPickle
+import numpy as np
+from smtk.parsers.esm_flatfile_parser import (ESMFlatfileParser,
+ HEADERS,
+ COUNTRY_CODES)
+import smtk.residuals.gmpe_residuals as res
+
+
+BASE_DATA_PATH = os.path.join(os.path.dirname(__file__), "data")
+
+
+EXPECTED_IDS = [
+"EMSC_20040918_0000026_RA_PYAS_0", "EMSC_20040918_0000026_RA_PYAT_0",
+"EMSC_20040918_0000026_RA_PYLI_0", "EMSC_20040918_0000026_RA_PYLL_0",
+"EMSC_20041205_0000033_CH_BNALP_0", "EMSC_20041205_0000033_CH_BOURR_0",
+"EMSC_20041205_0000033_CH_DIX_0", "EMSC_20041205_0000033_CH_EMV_0",
+"EMSC_20041205_0000033_CH_LIENZ_0", "EMSC_20041205_0000033_CH_LLS_0",
+"EMSC_20041205_0000033_CH_MMK_0", "EMSC_20041205_0000033_CH_SENIN_0",
+"EMSC_20041205_0000033_CH_SULZ_0", "EMSC_20041205_0000033_CH_VDL_0",
+"EMSC_20041205_0000033_CH_ZUR_0", "EMSC_20041205_0000033_RA_STBO_0",
+"EMSC_20130103_0000020_HL_SIVA_0", "EMSC_20130103_0000020_HL_ZKR_0",
+"EMSC_20130108_0000044_HL_ALNA_0", "EMSC_20130108_0000044_HL_AMGA_0",
+"EMSC_20130108_0000044_HL_DLFA_0", "EMSC_20130108_0000044_HL_EFSA_0",
+"EMSC_20130108_0000044_HL_KVLA_0", "EMSC_20130108_0000044_HL_LIA_0",
+"EMSC_20130108_0000044_HL_NOAC_0", "EMSC_20130108_0000044_HL_PLG_0",
+"EMSC_20130108_0000044_HL_PRK_0", "EMSC_20130108_0000044_HL_PSRA_0",
+"EMSC_20130108_0000044_HL_SMTH_0", "EMSC_20130108_0000044_HL_TNSA_0",
+"EMSC_20130108_0000044_HL_YDRA_0", "EMSC_20130108_0000044_KO_ENZZ_0",
+"EMSC_20130108_0000044_KO_FOCM_0", "EMSC_20130108_0000044_KO_GMLD_0",
+"EMSC_20130108_0000044_KO_GOKC_0", "EMSC_20130108_0000044_KO_GOMA_0",
+"EMSC_20130108_0000044_KO_GPNR_0", "EMSC_20130108_0000044_KO_KIYI_0",
+"EMSC_20130108_0000044_KO_KRBN_0", "EMSC_20130108_0000044_KO_ORLT_0",
+"EMSC_20130108_0000044_KO_SHAP_0"]
+
+
+class ResidualsTestCase(unittest.TestCase):
+ """
+ Core test case for the residuals objects
+ """
+
+ @classmethod
+ def setUpClass(cls):
+ """
+ Setup constructs the database from the ESM test data
+ """
+ ifile = os.path.join(BASE_DATA_PATH, "residual_tests_esm_data.csv")
+ cls.out_location = os.path.join(BASE_DATA_PATH, "residual_tests")
+ if os.path.exists(cls.out_location):
+ subprocess.call(["rm", "-r", cls.out_location])
+ parser = ESMFlatfileParser.autobuild("000", "ESM ALL",
+ cls.out_location, ifile)
+ cls.database_file = os.path.join(cls.out_location,
+ "metadatafile.pkl")
+ cls.database = None
+ with open(cls.database_file, "r") as f:
+ cls.database = cPickle.load(f)
+ cls.gsims = ["AkkarEtAlRjb2014", "ChiouYoungs2014"]
+ cls.imts = ["PGA", "SA(1.0)"]
+
+ def test_correct_build_load(self):
+ """
+ Verifies that the database has been built and loaded correctly
+ """
+ self.assertEqual(len(self.database), 41)
+ self.assertListEqual([rec.id for rec in self.database],
+ EXPECTED_IDS)
+
+ def _check_residual_dictionary_correctness(self, res_dict):
+ """
+ Basic check for correctness of the residual dictionary
+ """
+ for i, gsim in enumerate(res_dict):
+ self.assertEqual(gsim, self.gsims[i])
+ for j, imt in enumerate(res_dict[gsim]):
+ self.assertEqual(imt, self.imts[j])
+ if gsim == "AkkarEtAlRjb2014":
+ # For Akkar et al - inter-event residuals should have
+ # 4 elements and the intra-event residuals 41
+ self.assertEqual(
+ len(res_dict[gsim][imt]["Inter event"]), 4)
+ elif gsim == "ChiouYoungs2014":
+ # For Chiou & Youngs - inter-event residuals should have
+ # 41 elements and the intra-event residuals 41 too
+ self.assertEqual(
+ len(res_dict[gsim][imt]["Inter event"]), 41)
+ else:
+ pass
+ self.assertEqual(
+ len(res_dict[gsim][imt]["Intra event"]), 41)
+ self.assertEqual(
+ len(res_dict[gsim][imt]["Total"]), 41)
+
+ def tests_residuals_execution(self):
+ """
+ Tests basic execution of residuals - not correctness of values
+ """
+ residuals = res.Residuals(self.gsims, self.imts)
+ residuals.get_residuals(self.database, component="Geometric")
+ self._check_residual_dictionary_correctness(residuals.residuals)
+ _ = residuals.get_residual_statistics()
+
+ def tests_likelihood_execution(self):
+ """
+ Tests basic execution of residuals - not correctness of values
+ """
+ lkh = res.Likelihood(self.gsims, self.imts)
+ lkh.get_residuals(self.database, component="Geometric")
+ self._check_residual_dictionary_correctness(lkh.residuals)
+ _ = lkh.get_likelihood_values()
+
+ def tests_llh_execution(self):
+ """
+ Tests execution of LLH - not correctness of values
+ """
+ llh = res.LLH(self.gsims, self.imts)
+ llh.get_residuals(self.database, component="Geometric")
+ self._check_residual_dictionary_correctness(llh.residuals)
+ _ = llh.get_loglikelihood_values(self.imts)
+
+ def tests_multivariate_llh_execution(self):
+ """
+ Tests execution of multivariate llh - not correctness of values
+ """
+ multi_llh = res.MultivariateLLH(self.gsims, self.imts)
+ multi_llh.get_residuals(self.database, component="Geometric")
+ self._check_residual_dictionary_correctness(multi_llh.residuals)
+ _ = multi_llh.get_likelihood_values()
+
+ def tests_edr_execution(self):
+ """
+ Tests execution of EDR - not correctness of values
+ """
+ edr = res.EDR(self.gsims, self.imts)
+ edr.get_residuals(self.database, component="Geometric")
+ self._check_residual_dictionary_correctness(edr.residuals)
+ _ = edr.get_edr_values()
+
+ @classmethod
+ def tearDownClass(cls):
+ """
+ Deletes the database
+ """
+ subprocess.call(["rm", "-r", cls.out_location])
diff --git a/tests/smtk_ims_test_data.hdf5 b/tests/smtk_ims_test_data.hdf5
new file mode 100644
index 0000000..798f762
Binary files /dev/null and b/tests/smtk_ims_test_data.hdf5 differ
diff --git a/tests/trellis/__init__.py b/tests/trellis/__init__.py
new file mode 100755
index 0000000..e69de29
diff --git a/tests/trellis/data/test_distance_imt_trellis.json b/tests/trellis/data/test_distance_imt_trellis.json
new file mode 100644
index 0000000..f0d29cf
--- /dev/null
+++ b/tests/trellis/data/test_distance_imt_trellis.json
@@ -0,0 +1 @@
+{"xvalues": [2.905237004115861, 2.905237004115861, 3.7714199905221903, 4.6375245285039455, 5.503550596721652, 6.369498173832653, 7.2353672385152095, 8.101157769424844, 8.96686974523709, 9.832503144626116, 10.698057946257904, 11.563534128814808, 12.42893167097327, 13.294250551407458, 14.159490748804274, 15.02465224184698, 15.889735009214746, 16.754739029599023, 17.619664281691257, 18.484510744178806, 19.349278395752208, 20.21396721511246, 21.078577180956472, 21.943108271976143, 22.807560466875657, 23.673889542782646, 24.549505104583496, 25.434223006030635, 26.327125595396005, 27.2274076314169, 28.13436068879643, 29.04735988000737, 29.965852548112004, 30.88934863090005, 31.817412439304714, 32.7496556314049, 33.68573119715359, 34.62532829785795, 35.56816782935452, 36.51399859867777, 37.46259402172146, 38.41374926408856, 39.36727875978305, 40.323014052609196, 41.28080191393974, 42.240502697502905, 43.20198889809681, 44.165143886042515, 45.12986079344127, 46.09604153189592, 47.06359592432875, 48.03244093598266, 49.00249999195538, 49.97370237022186, 50.94598266084328, 51.919280283125005, 52.893539053819616, 53.86870680017789, 54.84473501266347, 55.82157853269331, 56.799195271381954, 57.77754595586172, 58.756593900055236, 59.7363047972329, 60.7166465320464, 61.69758900990813, 62.679104001921175, 63.6611650037481, 64.64374710697795, 65.62682688174728, 66.61038226948949, 67.59439248479482, 68.57883792553041, 69.56370009040666, 70.548961503284, 71.53460564360958, 72.52061688239186, 73.50698042322429, 74.49368224789453, 75.48070906619584, 76.46804826951764, 77.45568788794418, 78.4436165505302, 79.43182344848339, 80.42029830100958, 81.40903132363296, 82.39801319870499, 83.38723504804727, 84.37668840742985, 85.36636520283356, 86.35625772829296, 87.34635862526581, 88.33666086331387, 89.32715772210048, 90.31784277453188, 91.3087098709792, 92.29975312452677, 93.29096689712205, 94.28234578660589, 95.27388461452028, 96.2655784147076, 97.25742242254438, 98.24941206485012, 99.24154295039313, 100.23381086094493, 101.22621174286658, 102.21874169916416, 103.21139698201945, 104.20417398571827, 105.19706923999563, 106.19007940374699, 107.18320125907614, 108.17643170566629, 109.16976775549136, 110.16320652774247, 111.15674524410296, 112.15038122420403, 113.14411188137151, 114.1379347185513, 115.13184732447047, 116.12584736998299, 117.11993260460667, 118.11410085322679, 119.10835001295976, 120.10267805019413, 121.09708299774175, 122.09156295215858, 123.08611607117678, 124.08074057126392, 125.07543472529885, 126.07019686035733, 127.06502535559265, 128.05991864023648, 129.05487519166198, 130.04989353355515, 131.0449722341654, 132.04010990463135, 133.03530519737816, 134.03055680460338, 135.02586345681036, 136.0212239214029, 137.01663700136046, 138.01210153396337, 139.00761638955518, 140.00318047038135, 140.99879270946715, 141.9944520695398, 142.99015754199434, 143.98590814591574, 144.98170292711265, 145.97754095723718, 146.9734213328831, 147.96934317476763, 148.96530562692186, 149.96130785591714, 150.95734905012722, 151.9534284190144, 152.94954519244047, 153.94569862002123, 154.94188797047255, 155.9381125310292, 156.93437160683294, 157.93066452038468, 158.92699061099304, 159.92334923426222, 160.9197397615831, 161.9161615796405, 162.91261408996633, 163.9090967084705, 164.90560886501336, 165.90215000299864, 166.89871957895332, 167.8953170621505, 168.89194193422833, 169.88859368883433, 170.88527183126368, 171.88197587814125, 172.87870535707563, 173.875459806365, 174.87223877467073, 175.86904182074656, 176.86586851313743, 177.86271842991673, 178.8595911584179, 179.85648629497678, 180.8534034446816, 181.85034222114325, 182.84730224625312, 183.84428314996595, 184.8412845700788, 185.83830615201776, 186.83534754864596, 187.8324084200582, 188.82948843339156, 189.82658726263952, 190.82370458847532, 191.82084009808096, 192.8179934849768, 193.8151644488534, 194.81235269542958, 195.8095579362716, 196.80677988868237, 197.80401827551415, 198.80127282507868, 199.79854327096294, 200.79582935193199, 201.79313081178648, 202.79044739924103, 203.78777886780819, 204.78512497567408, 205.78248548559753, 206.77986016478562, 207.77724878479887, 208.7746511214381, 209.7720669546516, 210.7694960684306, 211.7669382507243, 212.76439329333283, 213.76186099182996, 214.75934114546428, 215.75683355708546, 216.75433803305816, 217.7518543831784, 218.74938242059764, 219.74692196174342, 220.74447282625468, 221.74203483689607, 222.7396078194996, 223.7371916028907, 224.73478601882624, 225.73239090192044, 226.73000608959597, 227.7276314220079, 228.72526674199617, 229.7229118950225, 230.72056672910756, 231.718231094791, 232.7159048450628, 233.713587835315, 234.71127992330366, 235.70898096907467, 236.7066908349349, 237.70440938539576, 238.70213648713633, 239.69987200894644, 240.69761582168914, 241.69536779825518, 242.69312781352852, 243.6908957443417, 244.68867146942384, 245.68645486938925, 246.68424582666913], "xlabel": "Rupture Dist. (km)", "figures": [{"column": 0, "row": 0, "yvalues": {"AkkarBommer2010": [0.3811936035091111, 0.3811936035091111, 0.3811936035091111, 0.3811936035091111, 0.3811936035091111, 0.37971988334045803, 0.3720176518089937, 0.3587451459094935, 0.34152189641710073, 0.322046034637894, 0.3017592820648679, 0.2817094714839389, 0.26256140438483194, 0.24467694751658342, 0.22820734598409728, 0.21317097441362057, 0.19950974186683496, 0.18712644068095047, 0.17590788500872384, 0.16573841596072028, 0.1565072573026001, 0.14811211588018436, 0.1404605778700108, 0.13347026761072528, 0.1270683541745742, 0.12119075054633115, 0.1157812026624011, 0.11079037661624376, 0.10617499970082855, 0.101897080447906, 0.09792321562431112, 0.09422398285606333, 0.09077341289557234, 0.08754853355343752, 0.0845289768070374, 0.08169664087799675, 0.07903539973389515, 0.07653085328591058, 0.07417011239471309, 0.0719416135961451, 0.06983495918431858, 0.06784077893194537, 0.06595061028558125, 0.06415679435278426, 0.062452385406691784, 0.060831071980019184, 0.059287107913185685, 0.057815251968618676, 0.056410714831459235, 0.05506911249248408, 0.053786425157134665, 0.05255896094946896, 0.051383323785265736, 0.050256384877952566, 0.04917525741638052, 0.048137274017933364, 0.04713996661466004, 0.04618104847688084, 0.04525839811806124, 0.044370044858817966, 0.04351415585683943, 0.04268902443437844, 0.041893059556436886, 0.041124776331186615, 0.04038278742001638, 0.039665795258460486, 0.03897258500112381, 0.03830201811406344, 0.03765302654714123, 0.03702460742662254, 0.03641581821522655, 0.035825772292747436, 0.03525363491563316, 0.03469861951850295, 0.03415998432463289, 0.03363702923595104, 0.033129092976279854, 0.03263555046427428, 0.032155810394978994, 0.03168931301107184, 0.0312355280468255, 0.030793952829461717, 0.030364110524134034, 0.02994554851012268, 0.029537836877014983, 0.02914056703071137, 0.02875335040011178, 0.028375817236116135, 0.02800761549542618, 0.027648409802274263, 0.02729788048184746, 0.026955722659731764, 0.02662164542221977, 0.02629537103274431, 0.025976634200156633, 0.025665181394900493, 0.02536077020949036, 0.025063168760002037, 0.024772155125551972, 0.02448751682300441, 0.02420905031435196, 0.023936560544450945, 0.023669860506953883, 0.023408770836461867, 0.023153119425085557, 0.022902741061727162, 0.022657477092540786, 0.02241717510114015, 0.02218168860723736, 0.02195087678248334, 0.02172460418238645, 0.02150274049326312, 0.021285160293249873, 0.02107174282647145, 0.020862371789549337, 0.02065693512964846, 0.02045532485337184, 0.02025743684580904, 0.02006317069913619, 0.01987242955017275, 0.01968511992636376, 0.019501151599683266, 0.01932043744798792, 0.019142893323384806, 0.018968437927202122, 0.01879699269118692, 0.018628481664563844, 0.018462831406629764, 0.018299970884566984, 0.018139831376184145, 0.017982346377311737, 0.017827451513592607, 0.01767508445643036, 0.0175251848428676, 0.017377694199184283, 0.017232555868012353, 0.01708971493878544, 0.016949118181345688, 0.016810713982539065, 0.016674452285649996, 0.0165402845325244, 0.016408163608244857, 0.016278043788225106, 0.016149880687610148, 0.016023631212854383, 0.015899253515379207, 0.015776706947201104, 0.015655952018438554, 0.015536950356598836, 0.015419664667568198, 0.015304058698211059, 0.015190097200516619, 0.015077745897203428, 0.014966971448724326, 0.014857741421602387, 0.014750024258034015, 0.014643789246704418, 0.014539006494756557, 0.014435646900860513, 0.014333682129339888, 0.014233084585294055, 0.014133827390688927, 0.014035884361357115, 0.013939229984879169, 0.013843839399297508, 0.013749688372635358, 0.013656753283180343, 0.013565011100498313, 0.01347443936715307, 0.013385016181094755, 0.01329672017868974, 0.013209530518371655, 0.013123426864875587, 0.013038389374043769, 0.012954398678168319, 0.012871435871857347, 0.012789482498396966, 0.012708520536591966, 0.012628532388064924, 0.012549500864996833, 0.012471409178287424, 0.012394240926123873, 0.012317980082937897, 0.012242610988736597, 0.012168118338793625, 0.012094487173685943, 0.012021702869662199, 0.011949751129330827, 0.01187861797265473, 0.01180828972824219, 0.011738753024921427, 0.011669994783588199, 0.011602002209317367, 0.011534762783727306, 0.011468264257588442, 0.011402494643666739, 0.011337442209793061, 0.01127309547215073, 0.011209443188774378, 0.011146474353248224, 0.01108417818860339, 0.0110225441413996, 0.010961561875992105, 0.010901221268968945, 0.010841512403762936, 0.010782425565420426, 0.010723951235532152, 0.010666080087313073, 0.01060880298082904, 0.01055211095836665, 0.010495995239936358, 0.010440447218911391, 0.010385458457790864, 0.010331020684087934, 0.010277125786336177, 0.010223765810210894, 0.010170932954761807, 0.01011861956875343, 0.010066818147109007, 0.010015521327455087, 0.00996472188676309, 0.009914412738085127, 0.009864586927381151, 0.009815237630433571, 0.009766358149847106, 0.00971794191213212, 0.009669982464866068, 0.009622473473934337, 0.009575408720844225, 0.009528782100112296, 0.009482587616722493, 0.009436819383650864, 0.009391471619457867, 0.0093465386459436, 0.009302014885865347, 0.00925789486071514, 0.00921417318855567, 0.009170844581912276, 0.009127903845720478, 0.009085345875325666, 0.009043165654535189, 0.009001358253719869, 0.008959918827964134, 0.008918842615263165, 0.008878124934766293, 0.008837761185063827, 0.008797746842517589, 0.008758077459632824, 0.00871874866347078, 0.00867975615410168, 0.008641095703093488, 0.008602763152040938], "CauzziFaccioli2008": [0.2837284938176615, 0.2837284938176615, 0.2837284938176615, 0.2837284938176615, 0.2837284938176615, 0.2837284938176615, 0.2837284938176615, 0.2837284938176615, 0.2837284938176615, 0.2837284938176615, 0.2837284938176615, 0.2837284938176615, 0.2837284938176615, 0.2837284938176615, 0.2837284938176615, 0.279180101748705, 0.2541156859352849, 0.2323508451912472, 0.21334318046549475, 0.19665249025746576, 0.18192006787978202, 0.16885219261151035, 0.15720708185171767, 0.1467846138599134, 0.1374182334025355, 0.12896856386336014, 0.12131834933246695, 0.11436843320458599, 0.10803454607316834, 0.10224472745923766, 0.09693724587302922, 0.09205891237905889, 0.0875637063304826, 0.08341164993791118, 0.07956788215138573, 0.07600189296431475, 0.07268688745638899, 0.06959925525641635, 0.06671812605917642, 0.06402499570388319, 0.06150341036348349, 0.05913869879368684, 0.05691774449202663, 0.0548287911307909, 0.052861275837357585, 0.05100568586698557, 0.04925343499585679, 0.04759675659631099, 0.046028610871234193, 0.044542604144897455, 0.04313291845172296, 0.04179424994748923, 0.04052175490070248, 0.03931100221523068, 0.0381579315955334, 0.03705881659972944, 0.03601023193722419, 0.03500902446156095, 0.034052287387702544, 0.0331373373295479, 0.032261693809616715, 0.03142306094042248, 0.030619311017663346, 0.02984846979983087, 0.02910870327830052, 0.028398305767347063, 0.0277156891651386, 0.02705937325546782, 0.026427976936101147, 0.025820210273510377, 0.025234867295850075, 0.024670819446488263, 0.02412700962948192, 0.023602446786363685, 0.023096200950491537, 0.022607398731273348, 0.02213521918590698, 0.021678890040902912, 0.021237684229766553, 0.020810916716810946, 0.02039794158027779, 0.019998149330708325, 0.01961096444303082, 0.019235843083018192, 0.018872271010726166, 0.018519761645243812, 0.01817785427668184, 0.017846112412627173, 0.017524122247601304, 0.01721149124509661, 0.016907846822786156, 0.016612835132356413, 0.016326119926234037, 0.016047381504144604, 0.015776315733120428, 0.015512633135123383, 0.015256058036967364, 0.015006327777709709, 0.014763191969074878, 0.014526411804882474, 0.01429575941576633, 0.01407101726581799, 0.013851977588041057, 0.013638441855773363, 0.013430220287470112, 0.01322713138244319, 0.01302900148535653, 0.012835664377441618, 0.012646960892571973, 0.012462738556464275, 0.012282851247423187, 0.012107158877163486, 0.011935527090352364, 0.011767826981617182, 0.011603934828869433, 0.011443731841859253, 0.011287103924980814, 0.011133941453395302, 0.01098413906163027, 0.010837595443849808, 0.010694213165069884, 0.010553898482628608, 0.01041656117727801, 0.01028211439330538, 0.010150474487130174, 0.010021560883870292, 0.009895295941388391, 0.009771604821383794, 0.009650415367105569, 0.009531657987300466, 0.009415265546034004, 0.009301173258044054, 0.009189318589307481, 0.009079641162528582, 0.008972082667265797, 0.008866586774438252, 0.008763099054969435, 0.00866156690233816, 0.008561939458821848, 0.008464167545232125, 0.008368203593953962, 0.008274001585109056, 0.00818151698567734, 0.008090706691423238, 0.008001528971472875, 0.007913943415409175, 0.007827910882751346, 0.0077433934546978335, 0.0076603543880133145, 0.007578758070955899, 0.007498569981135137, 0.007419756645211441, 0.0073422856003374625, 0.007266125357260186, 0.007191245365000892, 0.007117615977034659, 0.0070452084188974955, 0.006973994757152425, 0.006903947869647823, 0.006835041417009699, 0.006767249815303507, 0.006700548209818501, 0.006634912449914101, 0.0065703190648849046, 0.006506745240792962, 0.006444168798226248, 0.006382568170939414, 0.006321922385334862, 0.006262211040751292, 0.006203414290518446, 0.006145512823745302, 0.006088487847812303, 0.006032321071530891, 0.005976994688946959, 0.00592249136375493, 0.005868794214300904, 0.005815886799144937, 0.005763753103162279, 0.005712377524157215, 0.00566174485997176, 0.005611840296063878, 0.00556264939353922, 0.00551415807761552, 0.005466352626502304, 0.005419219660678622, 0.0053727461325531085, 0.005326919316489312, 0.005281726799183406, 0.00523715647037853, 0.005193196513902726, 0.005149835399018368, 0.005107061872068655, 0.00506486494841214, 0.005023233904631697, 0.004982158271008343, 0.004941627824249446, 0.004901632580461009, 0.004862162788355387, 0.004823208922685091, 0.0047847616778932175, 0.004746811961974347, 0.004709350890534949, 0.00467236978104981, 0.004635860147301965, 0.004599813694005476, 0.004564222311597994, 0.004529078071202261, 0.004494373219746513, 0.004460100175239876, 0.004426251522197314, 0.0043928200072067825, 0.004359798534636443, 0.0043271801624739595, 0.0042949580982952614, 0.004263125695357145, 0.004231676448809654, 0.004200603992023941, 0.0041699020930320236, 0.004139564651073596, 0.004109585693247269, 0.0040799593712614905, 0.004050679958282935, 0.004021741845878281, 0.003993139541046107, 0.003964867663336355, 0.00393692094205415, 0.0039092942135449515, 0.003881982418558856, 0.003854980599690542, 0.0038282838988934757, 0.003801887555065101, 0.003775786901700556, 0.003749977364613753, 0.003724454459722278, 0.0036992137908949912, 0.0036742510478599364, 0.0036495620041705683, 0.0036251425152286063, 0.003600988516361746, 0.003577096020954002, 0.0035534611186280075, 0.0035300799734763345, 0.0035069488223414234, 0.003484063973141899, 0.0034614218032444502, 0.0034390187578791434, 0.0034168513485972876, 0.0033949161517704816, 0.0033732098071294838, 0.003351729016342138, 0.0033304705416278314, 0.0033094312044095755], "ChiouYoungs2008": [0.6058172715153997, 0.6058172715153997, 0.603702045531772, 0.5940464311507393, 0.5777936696857139, 0.5200784932993754, 0.4539688317300048, 0.3996242245223528, 0.35469343367135564, 0.31726468009053976, 0.28582155440141743, 0.25917618604833365, 0.2364023219904346, 0.21677730496395844, 0.1997351257794666, 0.18482980136217636, 0.17170735916325688, 0.16008460807591107, 0.14973310473597712, 0.14046703518023418, 0.1321340252455025, 0.12460813665228651, 0.11778449594590358, 0.11157514729121447, 0.10590582694001972, 0.10070976530548295, 0.09592109068102089, 0.09149738836698135, 0.08740282194503068, 0.08360572747930192, 0.08007806173371604, 0.07679492878077686, 0.07373417438011998, 0.07087603833152213, 0.06820285613801988, 0.06569880249659851, 0.06334967024448927, 0.06114267937928351, 0.0590663116264288, 0.05711016675435986, 0.055264837447778624, 0.05352180005936322, 0.05187331898435893, 0.050312362755461124, 0.04883253024884203, 0.047427985636850224, 0.04609340092676827, 0.044823905095970396, 0.043615038976938206, 0.042462715166060226, 0.04136318233180307, 0.04031299338386686, 0.03930897703778828, 0.03834821237172733, 0.03742800602492974, 0.036545871732946565, 0.0356995119333163, 0.034886801209117954, 0.034105771366415835, 0.03335459796669155, 0.03263158815688071, 0.03193516965832798, 0.0312638807923393, 0.030616361434175024, 0.02999134479968404, 0.02938764997970682, 0.028804175146824044, 0.02823989136737409, 0.027693836959037998, 0.02716511234069747, 0.026652875327029212, 0.026156336825298204, 0.025674756896275235, 0.025207441145160537, 0.024753737411901636, 0.024313032733375695, 0.023884750552720598, 0.02346834815352432, 0.023063314298800923, 0.02266916705662959, 0.02228545179611936, 0.021911739338883397, 0.021547624252650967, 0.02119272327489613, 0.02084667385549108, 0.020509132808396106, 0.020179775063359186, 0.019858292509349625, 0.0195443929222715, 0.01923779897011071, 0.018938247289310105, 0.018645487626691392, 0.01835928204176822, 0.018079404164696413, 0.017805638505560866, 0.01753777981103332, 0.01727563246478126, 0.017019009928317532, 0.016767734219241222, 0.016521635424088712, 0.016280551243216996, 0.016044326565387172, 0.01581281306986711, 0.015585868854066954, 0.01536335808487898, 0.015145150672027341, 0.014931121961875854, 0.014721152450254906, 0.01451512751298855, 0.014312937152890786, 0.014114475762105666, 0.013919641898746938, 0.013728338076869462, 0.01354047056887047, 0.013355949219511477, 0.013174687270765288, 0.012996601196804253, 0.012821610548446069, 0.01264963780646255, 0.01248060824316882, 0.01231444979177133, 0.01215109292298083, 0.011990470528434133, 0.01183251781049849, 0.011677172178060554, 0.011524373147937346, 0.011374062251556467, 0.011226182946593067, 0.011080680533259828, 0.010937502074972917, 0.010796596323132946, 0.010657913645777738, 0.010521405959878178, 0.010387026667067943, 0.010254730592605418, 0.010124473927381179, 0.009996214172800059, 0.009869910088372683, 0.009745521641861769, 0.009623009961844594, 0.009502337292554586, 0.009383466950874825, 0.009266363285366156, 0.009150991637222992, 0.009037318303044517, 0.008925310499330494, 0.008814936328605649, 0.008706164747088649, 0.008598965533820325, 0.00849330926118069, 0.008389167266713552, 0.008286511626202742, 0.008185315127923707, 0.00808555124801841, 0.007987194126933998, 0.00789021854687056, 0.007794599910189425, 0.007700314218733074, 0.0076073380540102545, 0.007515648558208845, 0.007425223415987133, 0.007336040837016852, 0.00724807953923161, 0.007161318732754136, 0.007075738104464756, 0.006991317803185555, 0.006908038425448474, 0.006825881001818789, 0.006744826983752895, 0.006664858230961518, 0.006585956999255292, 0.006508105928855597, 0.00643128803314252, 0.006355486687826732, 0.00628068562052131, 0.006206868900700334, 0.006134020930022665, 0.006062126433009017, 0.005991170448053442, 0.00592113831875878, 0.005852015685576806, 0.0057837884777458175, 0.005716442905508783, 0.005649965452602046, 0.0055843428690032825, 0.005519562163927732, 0.005455610599061471, 0.005392475682023959, 0.005330145160048451, 0.005268607013873139, 0.005207849451833584, 0.005147860904147733, 0.005088630017387914, 0.005030145649130468, 0.00497239686277701, 0.004915372922540254, 0.0048590632885879064, 0.004803457612339049, 0.004748545731907399, 0.004694317667683521, 0.004640763618055398, 0.004587873955255704, 0.004535639221338766, 0.004484050124273526, 0.00443309753415815, 0.004382772479542021, 0.004333066143858885, 0.004283969861962767, 0.004235475116764181, 0.0041875735359641455, 0.004140256888879809, 0.004093517083362213, 0.004047346162799047, 0.004001736303202573, 0.00395667981037767, 0.003912169117168532, 0.003868196780780335, 0.003824755480174725, 0.0037818380135346786, 0.003739437295798385, 0.0036975463562580447, 0.003656158336223002, 0.003615266486744182, 0.003574864166397997, 0.0035349448391278865, 0.0034955020721414245, 0.0034565295338615997, 0.003418020991930104, 0.0033799703112611895, 0.0033423714521443383, 0.00330521846839492, 0.003268505505549757, 0.003232226799108297, 0.0031963766728160185, 0.0031609495369901886, 0.003125939886886081, 0.003091342301102105, 0.0030571514400236292, 0.003023362044303562, 0.0029899689333783325, 0.002956967004019848, 0.0029243512289200465, 0.0028921166553089734, 0.002860258403604301, 0.0028287716660923843, 0.002797651705638803, 0.002766893854428359, 0.002736493512733292, 0.002706446147709153, 0.0026767472922180355, 0.0026473925436763554, 0.0026183775629299764], "ZhaoEtAl2006Asc": [0.4313536497704075, 0.4313536497704075, 0.39178855112251404, 0.3585865627447537, 0.33032863906296667, 0.3059884791293516, 0.2848054462703786, 0.26620383187860847, 0.2497398753515062, 0.23506601088253237, 0.2219061420394517, 0.21003816981881168, 0.19928140736390623, 0.18948735784110385, 0.18053285165866503, 0.17231486762418927, 0.16474657492187633, 0.1577542728512139, 0.15127499941187658, 0.1452546441829017, 0.13964644564054984, 0.1344097845458011, 0.12950920750922076, 0.12491363108392399, 0.1205956886109103, 0.11652226442423501, 0.11264150748619839, 0.10894163842274046, 0.10541457891504798, 0.10205203996324551, 0.09884572082290644, 0.09578745029181601, 0.09286928442614216, 0.09008357157908138, 0.08742299313096431, 0.08488058630365357, 0.08244975391764728, 0.08012426476781402, 0.0778982473854671, 0.07576617926086199, 0.07372287307131363, 0.07176346105863285, 0.06988337839497112, 0.06807834614638725, 0.06634435426978402, 0.06467764494916063, 0.06307469647936365, 0.06153220783342286, 0.060047083996017346, 0.058616422106365355, 0.057237498425496657, 0.05590775612271741, 0.05462479386176105, 0.05338635515784416, 0.05219031847039357, 0.05103468799288423, 0.0499175850991245, 0.04883724040514608, 0.04779198640606819, 0.0467802506486021, 0.0458005494013862, 0.04485148178709288, 0.04393172434238721, 0.04304002597379804, 0.04217520327961961, 0.04133613621010084, 0.04052176404007298, 0.03973108163009116, 0.03896313595397017, 0.03821702287225823, 0.03749188413279688, 0.03678690458100079, 0.03610130956381985, 0.03543436251266317, 0.03478536269171771, 0.03415364309916669, 0.033538568509841896, 0.03293953364873176, 0.032355961485628665, 0.03178730164195485, 0.031233028901563306, 0.030692641817896486, 0.030165661410539252, 0.02965162994473225, 0.029150109787916295, 0.028660682337824046, 0.02818294701712019, 0.027716520329873005, 0.02726103497562753, 0.02681613901706319, 0.026381495097600807, 0.02595677970553638, 0.025541682481609505, 0.025135905567055684, 0.024739162989488365, 0.024351180084108866, 0.0239716929479256, 0.023600447924861864, 0.02323720111974617, 0.022881717939356276, 0.022533772658776458, 0.0221931480115134, 0.021859634801856476, 0.0215330315381167, 0.021213144085463244, 0.020899785337155155, 0.020592774903063788, 0.020291938814434817, 0.019997109243936273, 0.019708124240073656, 0.01942482747513599, 0.01914706800588518, 0.018874700046248815, 0.0186075827513167, 0.018345580012025183, 0.018088560259884104, 0.017836396281221672, 0.01758896504038398, 0.017346147511418223, 0.017107828517755195, 0.016873896579464562, 0.016644243767667353, 0.016418765565724486, 0.016197360736837616, 0.01597993119771663, 0.01576638189800703, 0.015556620705160519, 0.015350558294477543, 0.015148108044049407, 0.01494918593434995, 0.014753710452240047, 0.01456160249916356, 0.014372785303318442, 0.014187184335614533, 0.01400472722922093, 0.013825343702530737, 0.013648965485376165, 0.01347552624833571, 0.01330496153498075, 0.013137208696927178, 0.012972206831555215, 0.012809896722267376, 0.012650220781170177, 0.012493122994067385, 0.012338548867651084, 0.012186445378794555, 0.012036760925849368, 0.011889445281855076, 0.011744449549572758, 0.01160172611826645, 0.011461228622143507, 0.011322911900394838, 0.011186731958749568, 0.011052645932487613, 0.010920612050842738, 0.010790589602735236, 0.010662538903778697, 0.010536421264505455, 0.01041219895975661, 0.010289835199193357, 0.0101692940988723, 0.010050540653852625, 0.009933540711780693, 0.009818260947419239, 0.009704668838077505, 0.009592732639909202, 0.009482421365041386, 0.009373704759497423, 0.0092665532818892, 0.00916093808284097, 0.00905683098511777, 0.008954204464434084, 0.0088530316309099, 0.00875328621115367, 0.00865494253094472, 0.008557975498494852, 0.00846236058826205, 0.00836807382530179, 0.00827509177012803, 0.008183391504072168, 0.00809295061511325, 0.008003747184169236, 0.007915759771826219, 0.007828967405492979, 0.0077433495669637226, 0.007658886180374239, 0.0075755576005360325, 0.007493344601637371, 0.0074122283662947635, 0.0073321904749446614, 0.007253212895562152, 0.007175277973693997, 0.007098368422797418, 0.007022467314871643, 0.006947558071372789, 0.0068736244544017385, 0.006800650558155814, 0.006728620800635402, 0.006657519915596602, 0.006587332944739792, 0.006518045230130585, 0.0064496424068376645, 0.006382110395790324, 0.006315435396836382, 0.006249603882006681, 0.0061846025889672205, 0.006120418514661379, 0.006057038909131596, 0.005994451269515698, 0.005932643334212854, 0.005871603077211801, 0.005811318702578896, 0.005751778639097567, 0.005692971535057203, 0.00563488625318441, 0.005577511865713949, 0.005520837649593117, 0.005464853081817757, 0.005409547834892742, 0.005354911772416016, 0.005300934944779649, 0.0052476075849864435, 0.005194920104577564, 0.005142863089667628, 0.0050914272970844655, 0.005040603650609452, 0.004990383237317151, 0.0049407573040088915, 0.004891717253739476, 0.0048432546424329774, 0.004795361175586047, 0.004748028705054402, 0.004701249225922485, 0.004655014873451205, 0.004609317920103559, 0.004564150772645081, 0.004519505969315954, 0.004475376177074995, 0.00443175418891125, 0.004388632921221698, 0.004346005411255244, 0.004303864814617479, 0.004262204402837714, 0.00422101756099445, 0.004180297785399326, 0.004140038681336265, 0.004100233960855368, 0.00406087744061932, 0.0040219630398016055, 0.0039834847780351, 0.003945436773407648, 0.0039078132405072335], "AkkarEtAlRjb2014": [0.40589955027178326, 0.40589955027178326, 0.40589955027178326, 0.40589955027178326, 0.40589955027178326, 0.4039162530383168, 0.39359907811518074, 0.37600932121983355, 0.3535357704441145, 0.3285955318667388, 0.3031437255258941, 0.27851270012160384, 0.2554732916289499, 0.23438168014449592, 0.21532601631455645, 0.19823956352768932, 0.18297688747564358, 0.16936070378111498, 0.15720858051893696, 0.14634693218551345, 0.13661745814957438, 0.1278793145303494, 0.12000901250924816, 0.11289920491961246, 0.10645701471797493, 0.10060225801846313, 0.09526574072176515, 0.0903877100662862, 0.08591648912944665, 0.08180729452214987, 0.07802122412855805, 0.07452439628280613, 0.07128722053391073, 0.06828378102778458, 0.06549131536211045, 0.06288977391365382, 0.06046144677081037, 0.05819064737180261, 0.05606344368803706, 0.054067429291418674, 0.05219152791598247, 0.05042582619180549, 0.04876143011941421, 0.04719034159247478, 0.045705351889387666, 0.04429994956176838, 0.04296824056756748, 0.04170487884454041, 0.040505005807952105, 0.03936419749576139, 0.038278418283606196, 0.037243980257759844, 0.03625750747259984, 0.03531590443514126, 0.03441632825611769, 0.03355616398900332, 0.032733002746877154, 0.031944622245377884, 0.03118896946892658, 0.03046414519925879, 0.029768390180690236, 0.02910007272673999, 0.028457677598590306, 0.02783979600794031, 0.027245116615704355, 0.026672417414380405, 0.026120558395894746, 0.025588474918840688, 0.025075171699551414, 0.024579717360464593, 0.024101239477193698, 0.0236389200725271, 0.023191991511580672, 0.02275973275755, 0.022341465952085974, 0.02193655328828722, 0.02154439414786716, 0.021164422477100753, 0.02079610437889839, 0.02043893590074006, 0.02009244100035506, 0.019756169672861996, 0.01942969622477907, 0.019112617681788922, 0.018804552318440346, 0.018505138299130003, 0.01821403242078702, 0.017930908948547826, 0.017655458536600444, 0.01738738722707677, 0.01712641552055177, 0.01687227751230123, 0.01662472008901467, 0.016383502181115492, 0.01614839406630617, 0.015919176720318364, 0.01569564121121556, 0.015477588133910121, 0.01526482708183905, 0.015057176153011668, 0.014854461487862907, 0.014656516836580827, 0.014463183153751192, 0.014274308218344904, 0.014089746277241147, 0.01390935771061158, 0.013733008717634344, 0.013560571021122712, 0.013391921589767992, 0.013226942376787714, 0.013065520073874185, 0.012907545879416477, 0.012752915280047614, 0.01260152784463387, 0.012453287029907164, 0.012308099996967612, 0.012165877437979098, 0.012026533412392043, 0.01188998519210625, 0.011756153115004551, 0.01162496044634323, 0.01149633324751552, 0.011370200251736984, 0.011246492746235088, 0.011125144460551057, 0.01100609146059388, 0.010889272048100746, 0.010774626665192985, 0.010662097803727824, 0.01055162991917029, 0.01044316934872739, 0.010336664233500263, 0.010232064444430082, 0.010129321511824666, 0.010028388558267586, 0.00992922023472087, 0.009831772659650254, 0.00973600336100706, 0.009641871220911211, 0.009549336422894317, 0.009458360401564204, 0.009368905794564316, 0.009280936396705212, 0.009194417116161716, 0.009109313932620286, 0.009025593857283866, 0.008943224894635143, 0.008862176005872958, 0.008782417073932746, 0.008703918870018815, 0.008626653021565083, 0.008550591981564108, 0.008475708999187228, 0.00840197809164005, 0.008329374017191894, 0.008257872249320897, 0.008187448951924914, 0.008118080955545032, 0.00804974573455463, 0.007982421385272246, 0.007916086604947428, 0.007850720671589888, 0.007786303424593423, 0.007722815246125681, 0.007660237043243299, 0.00759855023070505, 0.007537736714448535, 0.007477778875699954, 0.007418659555693451, 0.007360362040968879, 0.007302870049223091, 0.007246167715695607, 0.007190239580057451, 0.007135070573789862, 0.007080646008025168, 0.007026951561835539, 0.0069739732709468445, 0.006921697516861759, 0.006870111016374579, 0.006819200811462329, 0.006768954259534135, 0.006719359024027676, 0.00667040306533591, 0.006622074632051416, 0.006574362252515944, 0.006527254726663006, 0.006480741118140871, 0.006434810746705852, 0.006389453180874466, 0.006344658230825205, 0.006300415941539284, 0.006256716586171187, 0.0062135506596408905, 0.006170908872438452, 0.006128782144633135, 0.006087161600079426, 0.00604603856081208, 0.0060054045416234065, 0.005965251244816793, 0.005925570555127027, 0.005886354534805744, 0.005847595418860985, 0.005809285610449965, 0.005771417676414279, 0.005733984342958787, 0.005696978491461624, 0.005660393154417459, 0.005624221511504466, 0.005588456885772426, 0.0055530927399488166, 0.005518122672855216, 0.005483540415934892, 0.005449339829883128, 0.005415514901380013, 0.005382059739920349, 0.005348968574737941, 0.005316235751821003, 0.005283855731015729, 0.005251823083214653, 0.0052201324876270895, 0.005188778729128928, 0.005157756695689126, 0.005127061375870593, 0.005096687856402336, 0.0050666313198209625, 0.00503688704217973, 0.005007450390821394, 0.0049783168222149645, 0.004949481879852152, 0.004920941192202887, 0.004892690470728063, 0.004864725507946343, 0.004837042175555179, 0.004809636422602769, 0.004782504273710151, 0.004755641827341611, 0.004729045254121979, 0.004702710795199082, 0.004676634760650578, 0.00465081352793283, 0.004625243540371619, 0.004599921305692507, 0.00457484339459005, 0.004550006439334613, 0.00452540713241601, 0.004501042225221936, 0.004476908526751159, 0.0044530029023596585, 0.004429322272539185, 0.004405863611727723, 0.004382623947148808, 0.004359600357682312], "BindiEtAl2014Rjb": [0.37311409461691286, 0.37311409461691286, 0.37311409461691286, 0.37311409461691286, 0.37311409461691286, 0.370173856150439, 0.3553616404618449, 0.3317864133009836, 0.30425205784287845, 0.2764391461152911, 0.25042426807409773, 0.2270637658563307, 0.20651148920150642, 0.18858917565554442, 0.17299541559945097, 0.1594079332706562, 0.14752741621794682, 0.13709249433642848, 0.1278816386380466, 0.11970976295976031, 0.11242315583009331, 0.10589432404435802, 0.10001736152037158, 0.09470401782226189, 0.08988045408912015, 0.08548460482069929, 0.08146404711780954, 0.07777428389357344, 0.07437736014077795, 0.07124074533125002, 0.06833642791617763, 0.06564017886922964, 0.06313095018481538, 0.060790381417891254, 0.05860239302020861, 0.05655284967884137, 0.054629280348088234, 0.05282064439454232, 0.051117135413417863, 0.049510015954107874, 0.04799147771627229, 0.04655452282390113, 0.04519286261471808, 0.043900831043401416, 0.04267331032573254, 0.041505666875249904, 0.04039369592601986, 0.03933357351222273, 0.03832181470016998, 0.03735523715193506, 0.0364309292501095, 0.03554622213673803, 0.03469866512131108, 0.03388600399718361, 0.033106161875674424, 0.032357222205720446, 0.0316374136955535, 0.030945096894058187, 0.030278752223733912, 0.029636969286413507, 0.029018437287441627, 0.028421936444895685, 0.02784633026825626, 0.02729055860609551, 0.026753631375283665, 0.02623462289542014, 0.025732666761721038, 0.02524695119783848, 0.024776714837251836, 0.02432124288797817, 0.023879863640764415, 0.023451945285524016, 0.02303689300485491, 0.022634146317009662, 0.02224317664379124, 0.021863485081526152, 0.02149460035569373, 0.021136076941841244, 0.020787493337280444, 0.0204484504696709, 0.020118570230066538, 0.019797494119226804, 0.019484881997157616, 0.01918041092684502, 0.01888377410402644, 0.018594679865631094, 0.018312850770268847, 0.01803802274471828, 0.017769944290991622, 0.017508375749020068, 0.017253088610473286, 0.017003864879632145, 0.016760496477610416, 0.01652278468652708, 0.01629053963056013, 0.01606357979105438, 0.015841731553114437, 0.01562482878132935, 0.015412712422469915, 0.015205230133188273, 0.015002235930898538, 0.0148035898661857, 0.014609157715206739, 0.014418810690676687, 0.014232425170150822, 0.014049882440404097, 0.013871068456810794, 0.01369587361670894, 0.013524192545814407, 0.013355923896812696, 0.013190970159331681, 0.013029237480552937, 0.012870635495774446, 0.012715077168282386, 0.012562478637955286, 0.012412759078031145, 0.012265840559550063, 0.012121647922980316, 0.011980108656601714, 0.011841152781226097, 0.011704712740878167, 0.011570723299080831, 0.011439121440411528, 0.011309846277021272, 0.01118283895982593, 0.011058042594103881, 0.010935402159241062, 0.010814864432394107, 0.0106963779158471, 0.010579892767856059, 0.010465360736788984, 0.01035273509837716, 0.010241970595910505, 0.010133023383216165, 0.010025850970271586, 0.009920412171308401, 0.009816667055279064, 0.009714576898560135, 0.009614104139773797, 0.009515212336621295, 0.009417866124622252, 0.0093220311776635, 0.009227674170263229, 0.009134762741470412, 0.009043265460309216, 0.00895315179269865, 0.008864392069770454, 0.008776957457520558, 0.008690819927723777, 0.008605952230058155, 0.00852232786537171, 0.00843992106004842, 0.008358706741409885, 0.008278660514111916, 0.008199758637487462, 0.008121978003789736, 0.008045296117297908, 0.00796969107424255, 0.007895141543514403, 0.007821626748124585, 0.0077491264473738795, 0.007677620919711158, 0.007607090946239433, 0.007537517794849017, 0.007468883204944056, 0.007401169372742391, 0.007334358937120267, 0.007268434965977666, 0.007203380943106627, 0.007139180755536687, 0.0070758186813374485, 0.007013279377864652, 0.0069515478704221334, 0.0068906095413317405, 0.00683045011938662, 0.006771055669678329, 0.006712412583777947, 0.006654507570259345, 0.006597327645549872, 0.00654086012509674, 0.006485092614833361, 0.00643001300293782, 0.006375609451869022, 0.006321870390670343, 0.006268784507531005, 0.006216340742594995, 0.006164528281007225, 0.006113336546188786, 0.006062755193331687, 0.006012774103105998, 0.005963383375570089, 0.0059145733242767316, 0.005866334470568359, 0.005818657538053765, 0.005771533447259857, 0.0057249533104519286, 0.005678908426616264, 0.005633390276599102, 0.005588390518397528, 0.005543900982593515, 0.005499913667930935, 0.005456420737025117, 0.005413414512205511, 0.005370887471480812, 0.005328832244629721, 0.005287241609404502, 0.005246108487851098, 0.005205425942736543, 0.005165187174081976, 0.005125385515798812, 0.005086014432420873, 0.005047067515934294, 0.0050085384826969205, 0.004970421170447963, 0.0049327095354025925, 0.004895397649429718, 0.004858479697309849, 0.004821949974070756, 0.004785802882397874, 0.004750032930117213, 0.004714634727748471, 0.004679602986126046, 0.004644932514086072, 0.004610618216216668, 0.004576655090669729, 0.004543038227033072, 0.004509762804259097, 0.004476824088650745, 0.0044442174319005105, 0.004411938269182392, 0.004379982117295129, 0.004348344572853664, 0.004317021310529445, 0.004286008081336379, 0.004255300710961853, 0.004224895098141319, 0.004194787213075087, 0.004164973095885797, 0.004135448855116137, 0.004106210666264408, 0.004077254770358074, 0.0040485774725632084, 0.004020175140829166, 0.00399204420456741, 0.003964181153363916, 0.003936582535723105, 0.003909244957843532, 0.0038821650824236416, 0.0038553396274969933, 0.0038287653652970153, 0.0038024391211476014, 0.0037763577723830956], "CauzziEtAl2014": [0.3873202730902134, 0.3873202730902134, 0.3552590392467718, 0.32739755502852735, 0.3030035771649192, 0.2815012572709887, 0.2624321610901066, 0.24542727281586837, 0.23018656091113468, 0.21646384285299092, 0.20405542407790514, 0.19279146526218024, 0.18252934883709782, 0.17314852886217819, 0.1645464942309165, 0.1566355764298149, 0.14934040431989323, 0.14259585918875572, 0.13634541993875018, 0.1305398149726465, 0.12513591700303942, 0.12009583163609303, 0.11538614155480736, 0.1109772764324251, 0.10684298504325378, 0.10295137292628175, 0.09925269695912893, 0.09573551425725989, 0.09239181424590548, 0.08921330582014073, 0.08619163137229992, 0.08331852133925634, 0.08058590323992422, 0.07798597615794828, 0.0755112591934776, 0.07315462047462093, 0.07090929179657149, 0.06876887276737495, 0.06672732741479086, 0.06477897549420328, 0.06291848018660041, 0.061140833452736104, 0.059441339985319426, 0.057815600453757804, 0.05625949454713161, 0.0547691641783183, 0.05334099710351161, 0.05197161113010531, 0.05065783902481285, 0.049396714188442034, 0.04818545713033781, 0.047021462751238925, 0.045902288425687575, 0.04482564286316374, 0.043789375718581096, 0.04279146791772945, 0.04183002265986409, 0.04090325705838082, 0.04000949437996424, 0.039147156843247814, 0.03831475893908923, 0.03751090123597753, 0.036734264635956485, 0.03598360504826058, 0.035257748449802145, 0.034555586303698774, 0.03387607130889631, 0.033218213455851645, 0.032581076365049755, 0.03196377388682216, 0.03136546694256691, 0.0307853605889962, 0.030222701288422686, 0.029676774369450497, 0.029146901663648157, 0.028632439304904538, 0.02813277567924409, 0.02764732951382007, 0.027175548094712523, 0.02671690560395876, 0.026270901567043935, 0.02583705940271117, 0.025414925067640363, 0.025004065789110925, 0.02460406887930293, 0.02421454062537467, 0.023835105249953806, 0.023465403937013324, 0.023105093918588487, 0.022753847618052003, 0.022411351846051728, 0.02207730704546109, 0.021751426582026983, 0.021433436077576296, 0.021123072782939137, 0.020820084987922795, 0.020524231465867484, 0.02023528095051777, 0.01995301164307977, 0.019677210747513565, 0.01940767403221758, 0.019144205416443034, 0.01888661657983995, 0.01863472659368307, 0.018388361572419302, 0.018147354344266436, 0.017911544139691173, 0.017680776296660816, 0.01745490198165644, 0.017233777925483806, 0.017017266172997852, 0.01680523384591254, 0.01659755291791783, 0.016394100001373854, 0.016194756144925607, 0.015999406641375696, 0.015807940845254047, 0.015620251999504387, 0.01543623707078995, 0.015255796592917278, 0.015078834517931185, 0.014905258074450738, 0.014734977632848149, 0.014567906576894012, 0.014403961181512224, 0.014243060496323262, 0.014085126234652674, 0.013930082667721501, 0.01377785652373965, 0.013628376891643678, 0.013481575129236143, 0.013337384775498597, 0.013195741466857506, 0.013056582857208003, 0.012919848541495619, 0.012785479982679683, 0.012653420441907358, 0.012523614911737048, 0.012396010052257595, 0.01227055412996389, 0.012147196959251608, 0.012025889846400108, 0.011906585535926256, 0.011789238159195723, 0.011673803185178503, 0.011560237373250473, 0.011448498727943507, 0.01133854645555124, 0.011230340922503123, 0.011123843615428113, 0.011019017102822113, 0.01091582499825671, 0.01081423192504688, 0.010714203482319712, 0.01061570621241727, 0.010518707569573875, 0.010423175889811474, 0.010329080361999357, 0.010236391000024265, 0.010145078616027274, 0.010055114794653135, 0.009966471868277343, 0.009879122893160104, 0.00979304162649357, 0.009708202504299884, 0.009624580620147302, 0.009542151704648378, 0.009460892105705151, 0.009380778769475264, 0.009301789222023966, 0.009223901551635499, 0.009147094391758865, 0.009071346904558074, 0.008996638765045455, 0.008922950145772681, 0.008850261702058406, 0.008778554557728697, 0.008707810291353459, 0.008638010922954763, 0.008569138901173579, 0.00850117709087094, 0.008434108761152654, 0.008367917573796204, 0.008302587572067359, 0.008238103169910232, 0.008174449141496913, 0.00811161061112186, 0.008049573043430288, 0.007988322233965613, 0.007927844300025404, 0.00786812567181406, 0.007809153083880007, 0.007750913566829176, 0.00769339443930263, 0.007636583300209612, 0.0075804680212062025, 0.00752503673941091, 0.007470277850348958, 0.00741618000111686, 0.007362732083758211, 0.007309923228846522, 0.007257742799262076, 0.0072061803841635946, 0.00715522579313894, 0.007104869050538201, 0.007055100389973874, 0.007005910248988817, 0.006957289263882959, 0.006909228264694027, 0.006861718270327834, 0.006814750483831182, 0.0067683162878052665, 0.00672240723995177, 0.006677015068750047, 0.006632131669258672, 0.006587749099038869, 0.006543859574194699, 0.0065004554655273125, 0.00645752929479803, 0.006415073731098188, 0.0063730815873207815, 0.006331545816732051, 0.006290459509639008, 0.006249815890149697, 0.006209608313023818, 0.006169830260609921, 0.006130475339867789, 0.006091537279471676, 0.006053009926993229, 0.0060148872461607186, 0.005977163314193115, 0.0059398323192051215, 0.005902888557683004, 0.005866326432027107, 0.005830140448160409, 0.00579432521320057, 0.005758875433192933, 0.0057237859109039784, 0.0056890515436723715, 0.005654667321315588, 0.005620628324092336, 0.005586929720716344, 0.005553566766422292, 0.005520534801081088, 0.005487829247363805, 0.005455445608952105, 0.0054233794687944025, 0.00539162648740568, 0.005360182401210862, 0.005329043020929741, 0.005298204230001274, 0.005267661983048943], "DerrasEtAl2014": [0.18761877991787773, 0.18761877991787773, 0.18761877991787773, 0.18761877991787773, 0.18761877991787773, 0.38430087571675137, 0.34359652174014305, 0.31265994138355824, 0.2869099388262649, 0.2647260982905662, 0.2452534294740418, 0.22795302849293095, 0.21244959362992522, 0.19846486971318517, 0.18578363447765178, 0.17423431054782976, 0.1636769948727116, 0.1539956056790742, 0.14509248119926507, 0.13688452222622272, 0.12930035193490538, 0.12227817158166127, 0.11576410735511847, 0.10971091316067713, 0.10407693722431591, 0.09882528806811604, 0.09392315370939103, 0.08934124036262943, 0.08505330556029173, 0.08103576673593821, 0.07726737074117881, 0.07372891302021997, 0.07040299759045515, 0.06727383080928521, 0.0643270433079978, 0.061549535556535535, 0.0589293433683993, 0.05645552032173149, 0.05411803460215191, 0.051907678197433714, 0.049815986716493725, 0.04783516838341857, 0.04595804098454727, 0.04417797573366241, 0.042488847174894435, 0.04088498837143805, 0.03936115073524941, 0.03791246794307541, 0.036534423459790195, 0.03522282125411469, 0.03397375934624555, 0.03278360587328506, 0.03164897739791263, 0.030566719219924602, 0.02953388747928893, 0.028547732864914806, 0.027605685764884133, 0.026705342713173243, 0.025844454004141638, 0.02502091236066138, 0.024232742554271595, 0.02347809188676789, 0.022755221452387613, 0.02206249810827823, 0.02139838708840102, 0.020761445202770182, 0.020150314569763336, 0.019563716834458882, 0.019000447830648744, 0.01845937264823795, 0.01793942107150251, 0.017439583356909774, 0.016958906322169533, 0.016496489720821544, 0.016051482879033383, 0.01562308157337232, 0.01521052513027508, 0.014813093729612259, 0.014430105896318672, 0.014060916165439365, 0.01370491290724329, 0.013361516300145768, 0.013030176440255068, 0.012710371577292521, 0.012401606467476413, 0.012103410834726727, 0.011815337932293874, 0.011536963197488955, 0.011267882992843575, 0.011007713427514094, 0.01075608925324974, 0.010512662829683314, 0.0102771031541199, 0.010049094951345462, 0.009828337819348755, 0.009614545427135352, 0.009407444761113364, 0.009206775416790429, 0.009012288932756494, 0.008823748164158622, 0.008640926693063265, 0.008463608273308247, 0.00829158630760295, 0.008124663354799217, 0.007962650665409611, 0.007805367743573167, 0.007652641933802967, 0.007504308030961419, 0.007360207912019719, 0.007220190188248393, 0.007084109876587361, 0.00695182808902367, 0.006823211738884094, 0.0066981332630179115, 0.006576470358928872, 0.006458105735949737, 0.006342926879644672, 0.006230825828647378, 0.006121698963218608, 0.006015446804833396, 0.005911973826165218, 0.0058111882708690495, 0.005713001982602754, 0.005617330242763068, 0.005524091616443056, 0.005433207806152563, 0.005344603512863515, 0.005258206303978631, 0.005173946487838349, 0.005091756994408255, 0.005011573261810324, 0.004933333128379252, 0.004856976729947325, 0.004782446402076664, 0.0047096865869752464, 0.004638643744846069, 0.0045692662694381105, 0.004501504407577194, 0.004435310182467458, 0.004370637320570335, 0.0043074411818739555, 0.004245678693379584, 0.004185308285638688, 0.004126289832189936, 0.00406858459174321, 0.004012155152977306, 0.003956965381817312, 0.003902980371070423, 0.003850166392300016, 0.0037984908498317474, 0.0037479222367817477, 0.003698430093014488, 0.003649984964929975, 0.003602558366996126, 0.0035561227449413574, 0.0035106514405263975, 0.003466118657822172, 0.003422499430920654, 0.0033797695930112347, 0.0033379057467607105, 0.003296885235930837, 0.0032566861181826437, 0.003217287139006204, 0.003178667706728626, 0.003140807868547212, 0.003103688287544175, 0.003067290220636375, 0.0030315954974171216, 0.002996586499852635, 0.00296224614279222, 0.00292855785525605, 0.002895505562468884, 0.0028630736686020837, 0.002831247040197404, 0.0028000109902388817, 0.002769351262847609, 0.0027392540185700227, 0.0027097058202353004, 0.002680693619357, 0.0026522047430561557, 0.002624226881482176, 0.0025967480757122883, 0.00256975670610793, 0.0025432414811091615, 0.0025171914264490295, 0.0024915958747703383, 0.0024664444556276614, 0.0024417270858590966, 0.002417433960312324, 0.0023935555429106044, 0.0023700825580447275, 0.002347005982277394, 0.002324317036347955, 0.0023020071774649273, 0.0022800680918749028, 0.0022584916876967997, 0.002237270088010774, 0.0022163956241917603, 0.002195860829478546, 0.0021756584327674014, 0.002155781352624085, 0.0021362226915029184, 0.0021169757301674965, 0.0020980339223024857, 0.0020793908893124353, 0.0020610404152967775, 0.002042976442197591, 0.0020251930651112647, 0.0020076845277587317, 0.0019904452181088543, 0.001973469664147447, 0.001956752529788849, 0.0019402886109224778, 0.0019240728315909543, 0.0019081002402940332, 0.0018923660064140673, 0.0018768654167584172, 0.0018615938722147305, 0.0018465468845146765, 0.0018317200731023417, 0.0018171091621035345, 0.0018027099773922871, 0.0017885184437512836, 0.0017745305821224395, 0.0017607425069447555, 0.0017471504235764528, 0.0017337506257977585, 0.0017205394933925535, 0.0017075134898049944, 0.001694669159869251, 0.0016820031276097518, 0.001669512094108867, 0.0016571928354406275, 0.0016450422006674306, 0.0016330571098979703, 0.0016212345524042116, 0.0016095715847953748, 0.0015980653292469473, 0.0015867129717830912, 0.0015755117606102488, 0.0015644590045007097, 0.0015535520712240333, 0.0015427883860249759, 0.0015321654301463136, 0.0015216807393952179, 0.0015113319027513904, 0.0015011165610159913, 0.0014910324054997267, 0.001481077176748948, 0.0014712486633088344, 0.0014615447005214357, 0.0014519631693589875], "AbrahamsonEtAl2014": [0.5118653775738314, 0.5118653775738314, 0.48837291132896643, 0.4581822251933297, 0.4242856847979056, 0.38221098549172705, 0.34167218846885955, 0.306626547321841, 0.27626539718414855, 0.2498633300381773, 0.2267995448760484, 0.20655455511692644, 0.18869796830881508, 0.17287433181269096, 0.158789877339771, 0.14620110465765382, 0.13490533291351486, 0.12473303446173996, 0.11644380686085724, 0.11132370202773094, 0.10659713349386062, 0.10222088623111777, 0.09815773237677268, 0.09437545693449867, 0.09084606101558372, 0.08753788075563473, 0.08440516608342924, 0.08143545404747692, 0.07861962113150395, 0.07594867918863484, 0.0734139141412715, 0.07100697494528005, 0.06871992645109996, 0.06654527639613539, 0.0644759841486396, 0.06250545683458489, 0.06062753697844951, 0.058836484665198294, 0.057126956392924665, 0.05549398216495522, 0.05393294191192431, 0.05243954199803957, 0.05100979231983167, 0.049639984327462125, 0.048326670169860975, 0.04706664307357407, 0.045856919000230666, 0.04469471958300426, 0.043577456312143346, 0.042502715919878566, 0.04146824690291328, 0.040471947114071004, 0.03951185235164873, 0.03858612587501577, 0.03769304877635028, 0.03683101114139808, 0.03599850393539964, 0.03519411155444247, 0.03441650498637448, 0.03366443552963635, 0.03293672902234384, 0.032232280537736045, 0.03155004950585375, 0.030889055224669858, 0.030248372727059217, 0.029627128973014675, 0.02902449933916589, 0.028439704380169403, 0.027872006838824355, 0.02732070888382668, 0.026785149555983028, 0.026264702405437, 0.025758773303994047, 0.025266798418087082, 0.02478824232920153, 0.024322596289740046, 0.02386937660339255, 0.023428123120018365, 0.022998397835934572, 0.022579783591281478, 0.022171882856891326, 0.021774316603688188, 0.021386723248281034, 0.021008757668935445, 0.020640090286599407, 0.02028040620609111, 0.019929404413006134, 0.019586797022191328, 0.01925230857406285, 0.01892567537526883, 0.018606644880533228, 0.018294975112726715, 0.017990434118498273, 0.017692799456944883, 0.01740185771905213, 0.017117404075781693, 0.01683924185284588, 0.016567182130379818, 0.016301043365829892, 0.016040651038527025, 0.0157858373144979, 0.015536440730218856, 0.015292305894062967, 0.015053283204312418, 0.014819228582682923, 0.014590003222375188, 0.014365473349749866, 0.014145509998771032, 0.013929988797441837, 0.013718789765489205, 0.013511797122621034, 0.013308899106721398, 0.01310998780138874, 0.012914958972257048, 0.012723711911605156, 0.012536149290741835, 0.012352177019746642, 0.012171704114120774, 0.01199464256797294, 0.011820907233358751, 0.011650415705435369, 0.011483088213105307, 0.011318847514848532, 0.011157618799458285, 0.010999329591409658, 0.010843909660620342, 0.010691290936357687, 0.010541407425079507, 0.010394195131997396, 0.010249591986168318, 0.010107537768930782, 0.009967974045514355, 0.00983084409965544, 0.009696092871073484, 0.00956366689565613, 0.009433514248220802, 0.009305584487723818, 0.009179828604796438, 0.009056198971490126, 0.00893464929312854, 0.008815134562161374, 0.008697611013921303, 0.008582036084196127, 0.00846836836853107, 0.008356567583174683, 0.00824659452759532, 0.008138411048494082, 0.008031980005244776, 0.007927265236693891, 0.007824231529262734, 0.007722844586284796, 0.007623070998533515, 0.0075248782158762705, 0.007428234520011765, 0.007333108998239938, 0.007239471518219109, 0.007147292703667952, 0.00705654391097121, 0.006967197206648347, 0.006879225345652577, 0.006792601750457572, 0.0067073004909076655, 0.00662329626479075, 0.006540564379109551, 0.006459080732018495, 0.006378821795401466, 0.006299764598062996, 0.006221886709505428, 0.006145166224273438, 0.006069581746838067, 0.005995112377000083, 0.005921737695794442, 0.005849437751871712, 0.005778193048340994, 0.005707984530054092, 0.005638793571315893, 0.0055706019640008216, 0.005503391906064702, 0.005437145990431267, 0.00537184719424473, 0.005307478868468553, 0.005244024727822988, 0.005181468841044223, 0.00511979562145581, 0.005058989817839794, 0.004999036505596558, 0.004939921078182065, 0.004881629238814203, 0.004824146992436266, 0.004767460637929901, 0.004711556760567876, 0.0046564222246972325, 0.00460204416664663, 0.004548409987848245, 0.0044955073481672825, 0.004443324159431562, 0.004391848579154378, 0.004341069004444047, 0.004290974066093795, 0.004241552622844344, 0.004192793755816664, 0.0041446867631037025, 0.0040972211545227625, 0.004050386646514835, 0.004004173157194939, 0.003958570801540026, 0.003913569886715919, 0.00386916090753569, 0.003825334542045807, 0.003782081647236527, 0.003739393254871019, 0.0036972605674314386, 0.0036556749541758636, 0.0036146279473046167, 0.003574111238230729, 0.0035341166739526805, 0.00349463625352485, 0.0034556621246241695, 0.003417186580208065, 0.003379202055262667, 0.0033417011236368446, 0.0033046764949606453, 0.0032681210116451433, 0.003232027645960891, 0.0031963894971929773, 0.003161199788869816, 0.0031264518660645184, 0.0030921391927651296, 0.003058255349313043, 0.0030247940299066313, 0.0029917490401689954, 0.002959114294776623, 0.0029268838151489374, 0.0028950517271951175, 0.002863612259117893, 0.002832559739272198, 0.002801888594076364, 0.002771593345975898, 0.0027416686114568878, 0.0027121090991078685, 0.002682909607730162, 0.002654065024492933, 0.002625570323133766, 0.00259742056220219, 0.002569610883346011, 0.002542136509638176, 0.0025149927439437974, 0.002488174967325669, 0.002461678637487869, 0.0024354992872562004, 0.002409632523093305, 0.002384074023649973], "BooreEtAl2014": [0.41951983544499055, 0.41951983544499055, 0.41951983544499055, 0.41951983544499055, 0.41951983544499055, 0.4160945184459752, 0.399110274570862, 0.37290093690203785, 0.34331965295662437, 0.3142753756071229, 0.2876234847178831, 0.26393297589542614, 0.24315122673087428, 0.22498489864925297, 0.2090810295778101, 0.1951021759179783, 0.1827521065972578, 0.1717803506308105, 0.16197862201046356, 0.1531747858137994, 0.1452266736056521, 0.13801658039947814, 0.13144665225577096, 0.1254351285449525, 0.11991332138076083, 0.11482320088926633, 0.11011546665351772, 0.10574800481769296, 0.10168464964747853, 0.09789418523735512, 0.09434953693447382, 0.09102711309486575, 0.08790626643493205, 0.0849688509541426, 0.08219885559827314, 0.0795820998486358, 0.07710597953259542, 0.07475925356593108, 0.07253186421919927, 0.07041478497262758, 0.06839989118084153, 0.06647984968186685, 0.06464802420877157, 0.06289839403910515, 0.061225483778824474, 0.05962430254846825, 0.05809029113876319, 0.056619275946034366, 0.05520742869552346, 0.05385123112255919, 0.052547443914430385, 0.05129307932534925, 0.05008537696740769, 0.04892178235587776, 0.04779992784966219, 0.04671761568046425, 0.04567280280790917, 0.04466358737522135, 0.04368819657105136, 0.04274497572974279, 0.041832378524736355, 0.0409489581289543, 0.040093359232441575, 0.0392643108215455, 0.03846061963588076, 0.03768116422979861, 0.036924889573951784, 0.03619080214027528, 0.035477965420464004, 0.03478549583376757, 0.034112558985086805, 0.03345836623870791, 0.03282217157690834, 0.03220326871605584, 0.03160098845580773, 0.0310146962395851, 0.030443789906872354, 0.029887697619863145, 0.029345875948803352, 0.028817808101950088, 0.02830300228752514, 0.027800990196224784, 0.027311325594013586, 0.02683358301592012, 0.02636735655242255, 0.025912258720793648, 0.025467919414546118, 0.025033984924658394, 0.024610117026927256, 0.02419599213024212, 0.023791300481061192, 0.023395745419780442, 0.02300904268507725, 0.022630919762608594, 0.022261115274800673, 0.02189937840870098, 0.02154546837913836, 0.021199153924659545, 0.02086021283390968, 0.020528431500325624, 0.020203604503159014, 0.01988553421303496, 0.019574030420363434, 0.01926890998506076, 0.018969996506167784, 0.018677120010039103, 0.01839011665589241, 0.018108828457590705, 0.017833103020619724, 0.017562793293283835, 0.01729775733123229, 0.01703785807448247, 0.016782963136167024, 0.016532944602278107, 0.016287678841762084, 0.016047046326310214, 0.015810931459300293, 0.015579222413319405, 0.015351810975787866, 0.015128592402196633, 0.014909465276528469, 0.014694331378451582, 0.014483095556900286, 0.014275665609685422, 0.014071952168796734, 0.013871868591088823, 0.013675330854045894, 0.013482257456359214, 0.01329256932305224, 0.013106189714911799, 0.012923044141998609, 0.012743060281018398, 0.01256616789635657, 0.012392298764584484, 0.012221386602260752, 0.012053366996854508, 0.011888177340639398, 0.011725756767405776, 0.011566046091847889, 0.011408987751500007, 0.01125452575109135, 0.011102605609204291, 0.010953174307119708, 0.010806180239755468, 0.010661573168583474, 0.010519304176443759, 0.010379325624158778, 0.010241591108870301, 0.0101060554240103, 0.009972674520842075, 0.009841405471485565, 0.009712206433376969, 0.009585036615079898, 0.009459856243400002, 0.009336626531741476, 0.009215309649647712, 0.009095868693479113, 0.008978267658174333, 0.008862471410048397, 0.008748445660589448, 0.008636156941197237, 0.008525572578842082, 0.008416660672587908, 0.00830939007095625, 0.008203730350085692, 0.008099651792663311, 0.007997125367590388, 0.00789612271035108, 0.007796616104062816, 0.007698578461173653, 0.007601983305781053, 0.007506804756555683, 0.007413017510232432, 0.007320596825660175, 0.007229518508377046, 0.007139758895699678, 0.007051294842299734, 0.006964103706252663, 0.006878163335539417, 0.006793452054985457, 0.006709948653616379, 0.006627632372419997, 0.0065464828924956635, 0.006466480323577303, 0.00638760519291715, 0.006309838434517022, 0.006233161378692836, 0.0061575557419618855, 0.006083003617239981, 0.006009487464338728, 0.005936990100750946, 0.005865494692713746, 0.0057949847465410325, 0.005725444100214492, 0.0056568569152245255, 0.005589207668652539, 0.0055224811454857, 0.005456662431156526, 0.005391736904301049, 0.0053276902297233995, 0.0052645083515670465, 0.005202177486677824, 0.005140684118160023, 0.005080014989110526, 0.005020157096535685, 0.004961097685432904, 0.0049028242430424656, 0.0048453244932564355, 0.0047885863911825205, 0.004732598117859507, 0.004677348075113974, 0.004622824880561204, 0.004569017362738442, 0.004515914556371589, 0.004463505697768118, 0.004411780220333385, 0.0043607277502062764, 0.00431033810201081, 0.004260601274719439, 0.004211507447624855, 0.0041630469764170844, 0.004115210389362569, 0.004067988383582502, 0.004021371821426608, 0.003975351726939774, 0.003929919282419934, 0.003885065825061713, 0.0038407828436869697, 0.003797061975556074, 0.003753895003259818, 0.003711273851689508, 0.003669190585080957, 0.0036276374041331106, 0.003586606643196763, 0.0035460907675325904, 0.003506082370636093, 0.0034665741716277086, 0.003427559012705857, 0.003389029856662013, 0.003350979784454658, 0.0033134019928420704, 0.0032762897920709604, 0.0032396366036200387, 0.003203435957996837, 0.003167681492586874, 0.003132366949552441, 0.0030974861737809094, 0.0030630331108805003, 0.0030290018052223223, 0.002995386398028646, 0.002962181125502708, 0.0029293803170040954], "ChiouYoungs2014": [0.48356834407736027, 0.48356834407736027, 0.4610401205216194, 0.43837951821126864, 0.4156655859570066, 0.380320534688185, 0.34289545796188003, 0.3104938923338128, 0.28241344237351357, 0.2580151585439865, 0.23673961974089108, 0.21810856203114115, 0.20171898353419992, 0.18723406430544243, 0.17437337033359593, 0.1629035999906185, 0.15263041216079787, 0.14339148134565746, 0.135050728909511, 0.1274935958990265, 0.12062319885403822, 0.11435721514872049, 0.10862536184800399, 0.10336735310404054, 0.09853124156365978, 0.09406633894381823, 0.08991474658139811, 0.08604822506960455, 0.08244334146757938, 0.07907863097749111, 0.07593447444568206, 0.07299296562072541, 0.07023777632254523, 0.06765402460048896, 0.06522814891343202, 0.06294779001279592, 0.060801681322487464, 0.05877954803709856, 0.056872014797352995, 0.05507052158165483, 0.05336724732689892, 0.05175504072910606, 0.05022735765272002, 0.048778204582339765, 0.04740208757162396, 0.04609396617504418, 0.04484921188362155, 0.0436635706237389, 0.04253312891584568, 0.04145428332646568, 0.040423712881645445, 0.03943835414240184, 0.03849537867246249, 0.03759217265610614, 0.03672631844852201, 0.035895577863823636, 0.035097877025865684, 0.03433129262546037, 0.03359403944372196, 0.032884459016040035, 0.032201009324227044, 0.03154225541603926, 0.03090686086180014, 0.030293579967148685, 0.02970125066923417, 0.029128788051191463, 0.02857517841632336, 0.028039473869356558, 0.027520787357464417, 0.02701828812845258, 0.026531197567774615, 0.02605878537982235, 0.025600366082319064, 0.025155295785701977, 0.024722969232101887, 0.024302817070952127, 0.023894303350485216, 0.02349692320631568, 0.02311020073009294, 0.022733687002786516, 0.022366958278628838, 0.022009614306984844, 0.02166127678061715, 0.021321587899852962, 0.0209902090431021, 0.020666819535020805, 0.020351115504428374, 0.02004280882471393, 0.019741626130182, 0.019447307902293355, 0.01915960762031657, 0.01887829097135107, 0.01860313511514259, 0.018333927999455355, 0.01807046772216206, 0.017812561936507022, 0.017560027296295192, 0.017312688938036967, 0.017070379997305735, 0.01683294115680079, 0.01660022022378937, 0.01637207173482054, 0.016148356585734814, 0.015928941685169035, 0.015713699629895914, 0.015502508400456935, 0.015295251075677443, 0.015091815564749343, 0.01489209435567967, 0.014695984278978825, 0.0145033862855594, 0.014314205237888964, 0.014128349713509084, 0.013945731820092943, 0.013766267021298071, 0.0135898739726826, 0.013416474367055039, 0.013245992788628057, 0.013078356575427648, 0.012913495689420414, 0.012751342593876332, 0.012591832137510972, 0.012434901444984891, 0.012280489813366114, 0.012128538614185365, 0.011978991200749817, 0.01183179282038645, 0.011686890531325241, 0.011544233123940751, 0.011403771046092926, 0.011265456332325991, 0.01112924253669788, 0.010995084669027051, 0.010862939134363238, 0.010732763675491721, 0.01060451731829907, 0.010478160319839258, 0.010353654118946797, 0.010230961289251909, 0.01011004549446817, 0.00999087144582471, 0.009873404861523341, 0.009757612428111443, 0.009643461763669788, 0.009530921382710819, 0.009419960662701222, 0.009310549812120041, 0.009202659839972205, 0.009096262526678237, 0.008991330396273804, 0.00888783668984236, 0.008785755340129032, 0.008685060947263392, 0.00858572875554253, 0.008487734631218321, 0.008391055041237596, 0.00829566703288885, 0.008201548214310548, 0.008108676735816151, 0.008017031272001462, 0.007926591004587008, 0.00783733560597135, 0.007749245223450444, 0.0076623004640787576, 0.007576482380136497, 0.007491772455178555, 0.007408152590636052, 0.007325605092941941, 0.007244112661162795, 0.007163658375107606, 0.007084225683893127, 0.007005798394948887, 0.0069283606634357306, 0.006851896982064826, 0.0067763921712951794, 0.00670183136989678, 0.006628200025858593, 0.006555483887631291, 0.006483668995685666, 0.006412741674377434, 0.006342688524099978, 0.006273496413718666, 0.006205152473269727, 0.006137644086915487, 0.006070958886144238, 0.006005084743204879, 0.005940009764765349, 0.005875722285788031, 0.0058122108636107835, 0.0057494642722269685, 0.0056874714967557055, 0.005626221728093965, 0.005565704357745308, 0.005505908972816214, 0.005446825351174474, 0.005388443456762923, 0.00533075343506235, 0.005273745608698263, 0.005217410473186174, 0.0051617386928080764, 0.005106721096619292, 0.005052348674574701, 0.004998612573777496, 0.004945504094836897, 0.004893014688340833, 0.004841135951429566, 0.004789859624474068, 0.004739177587851219, 0.004689081858813306, 0.004639564588449697, 0.004590618058734637, 0.004542234679661771, 0.004494406986458529, 0.0044471276368806874, 0.004400389408582141, 0.0043541851965586634, 0.004308508010662025, 0.004263350973183572, 0.0042187073165027515, 0.004174570380800624, 0.004130933611834157, 0.00408779055877085, 0.004045134872081002, 0.004002960301485613, 0.003961260693958356, 0.003920029991779496, 0.0038792622306408277, 0.003838951537798894, 0.0037990921302759415, 0.003759678313106377, 0.003720704477628003, 0.0036821650998154747, 0.0036440547386562537, 0.0036063680345660527, 0.0035690997078437476, 0.003532244557164409, 0.0034957974581081267, 0.003459753361725513, 0.0034241072931370255, 0.0033888543501655244, 0.003353989702002485, 0.003319508587904274, 0.0032854063159199016, 0.0032516782616479572, 0.0032183198670229147, 0.0031853266391288783, 0.0031526941490407833, 0.0031204180306916686, 0.003088493979765857, 0.003056917752617463, 0.003025685165211675, 0.002994792092091509], "CampbellBozorgnia2014": [0.6829700868014487, 0.6829700868014487, 0.6749517947774241, 0.652187087967848, 0.617938238474865, 0.5478275537068565, 0.4787897489170536, 0.4241986072642038, 0.3798533560522476, 0.34311281215121286, 0.31220429396237614, 0.2858787617876658, 0.2632234393783211, 0.24355242759319617, 0.22633892465012498, 0.21117112976367317, 0.1977224012525533, 0.18573040828824666, 0.17498218457199655, 0.1653031831922521, 0.15654911815775688, 0.14859979081346283, 0.14135435701824847, 0.13472765712398135, 0.1286473409628727, 0.12304411819542821, 0.11783996442933482, 0.11299599848301284, 0.10848035934410778, 0.1042643421600358, 0.10032209465700874, 0.0966303317480952, 0.09316807182293026, 0.08991639600944064, 0.08685823030849013, 0.0839781496621264, 0.08126220254233461, 0.07869775441604462, 0.0762733483659922, 0.07397858116914967, 0.07180399321442635, 0.06974097075375363, 0.06778165910765142, 0.06591888557769794, 0.06414609094627186, 0.06245726856560664, 0.06084691015008004, 0.05930995748824513, 0.05784175938320486, 0.05643803321226127, 0.055094830569969964, 0.05380850652349642, 0.05257569206599884, 0.051393269404129485, 0.050258349759429374, 0.04916825340223451, 0.04812049167016682, 0.04711275075312012, 0.04614287705226872, 0.04520886394344157, 0.044308839794994975, 0.04344105710762108, 0.04260388265888998, 0.041795788548619366, 0.04101534405287739, 0.04026120820483746, 0.039532123029702264, 0.03882690736893584, 0.038144451236103445, 0.03748371065281086, 0.03684893368057839, 0.036234273551720195, 0.03563808064831586, 0.035059569677262196, 0.03449799784879354, 0.03395266212165537, 0.0334228966535499, 0.03290807043979606, 0.03240758512469656, 0.03192087297147996, 0.03144739497798236, 0.030986639126314563, 0.03053811875583992, 0.030101371049704763, 0.02960754370045156, 0.02903591550641565, 0.02847993925007131, 0.027939036209330442, 0.027412654797205956, 0.026900269028443356, 0.02640137708680391, 0.02591549998549797, 0.02544218031396838, 0.02498098106467351, 0.024531484534124324, 0.024093291292840206, 0.023666019219314143, 0.023249302593498007, 0.022842791245628758, 0.022446149756577032, 0.022059056706148942, 0.021681203966114494, 0.021312296034904452, 0.02095204941119631, 0.02060019200380579, 0.020256462575483268, 0.01992061021840653, 0.019592393859300984, 0.019271581792296624, 0.018957951237735863, 0.01865128792529682, 0.01835138569990634, 0.018058046149019326, 0.01777107824993237, 0.017490298035933115, 0.017215528280095153, 0.016946598195695457, 0.016683343152222724, 0.01642560440607604, 0.016173228845067302, 0.015926068745929393, 0.015683981544068398, 0.015446829614857044, 0.015214480065806795, 0.014986804538994019, 0.014763679023174433, 0.014544983675027798, 0.014330602649035878, 0.014120423935511873, 0.013914339206334966, 0.013712243667970532, 0.013514035921383909, 0.013319617828471466, 0.013128894384671692, 0.012941773597419562, 0.012758166370141193, 0.012577986391499771, 0.012401150029620283, 0.012227576231032366, 0.012057186424097425, 0.011889904426688169, 0.011725656357902547, 0.011564370553614606, 0.011405977485672025, 0.011250409684553956, 0.011097601665323885, 0.010947489856715826, 0.010800012533200898, 0.010655109749889327, 0.010512723280137231, 0.010372796555718999, 0.010235274609458974, 0.010100104020191252, 0.009967232859949614, 0.009836610643279717, 0.009708188278575485, 0.009581918021348234, 0.009457753429340245, 0.00933564931939657, 0.009215561726022154, 0.009097447861538892, 0.00898126607778363, 0.008866975829267687, 0.008754537637741186, 0.008643913058096081, 0.008535064645553364, 0.00842795592407756, 0.00832255135596235, 0.008218816312544746, 0.008116717045992735, 0.008016220662123463, 0.007917295094211954, 0.007819909077743131, 0.0077240321260727265, 0.00762963450695673, 0.007536687219916306, 0.007445161974399657, 0.007355031168714934, 0.007266267869695632, 0.007178845793076809, 0.007092739284545483, 0.007007923301446384, 0.006924373395110688, 0.006842065693787433, 0.0067609768861520946, 0.006681084205370645, 0.006602365413696095, 0.006524798787579811, 0.006448363103274908, 0.006373037622915108, 0.006298802081050182, 0.006225636671619613, 0.0061535220353507725, 0.006082439247563371, 0.006012369806366119, 0.005943295621230575, 0.005875199001928677, 0.005808062647820721, 0.005741869637481236, 0.005676603418648641, 0.00561224779849127, 0.0055487869341714685, 0.005486205323706522, 0.005424487797104542, 0.005363619507777952, 0.005303585924213306, 0.005244372821896592, 0.005185966275481265, 0.005128352651191125, 0.00507151859945126, 0.005015451047736769, 0.004960137193634967, 0.004905564498110565, 0.004851720678969593, 0.004798593704513295, 0.004746171787377384, 0.004694443378548656, 0.00464339716155531, 0.004593022046822484, 0.004543307166190253, 0.004494241867586336, 0.004445815709850233, 0.004398018457703333, 0.004350840076859762, 0.004304270729274115, 0.004258300768520781, 0.004212920735302257, 0.00416812135308017, 0.004123893523827035, 0.004080228323893708, 0.0040371169999899046, 0.00399455096527273, 0.003952521795541935, 0.003911021225536379, 0.0038700411453302967, 0.003829573596825712, 0.0037896107703370235, 0.0037501450012672375, 0.0037111687668707565, 0.003672674683100889, 0.003634655501541027, 0.003597104106413956, 0.003560013511669771, 0.003523376858148233, 0.003487187410814751, 0.0034514385560665485, 0.003416123799107751, 0.0033812367613907674, 0.003346771178122896, 0.0033127208958358355, 0.0032790798700150212, 0.0032458421627900857], "KothaEtAl2016Italy": [0.3209413698120255, 0.3209413698120255, 0.3209413698120255, 0.3209413698120255, 0.3209413698120255, 0.31927083997018196, 0.3106574199444789, 0.2962503123914575, 0.2782976007215931, 0.2588840921088401, 0.2395260183380927, 0.22113511599605482, 0.2041586515346456, 0.18874527903242178, 0.17487482780545108, 0.16244321856891716, 0.1513124358650421, 0.14133765496400527, 0.13238075683026485, 0.12431621189216738, 0.11703290108252477, 0.11043390093026545, 0.10443534295024715, 0.09896493463250546, 0.09396043897578628, 0.08936825191106917, 0.08514213353917718, 0.08124210648759243, 0.0776335141795149, 0.07428622304814758, 0.07117395003884704, 0.06827369703491278, 0.06556527546971545, 0.06303090648700731, 0.06065488415133727, 0.05842329119194934, 0.05632375850835814, 0.05434526115922924, 0.052477944811524554, 0.05071297767126426, 0.04904242378006418, 0.047459134271860506, 0.04595665376757322, 0.04452913956448071, 0.04317129167043611, 0.04187829205648264, 0.04064575176756082, 0.03946966475083554, 0.03834636744264321, 0.03727250330554087, 0.03624499163196148, 0.035261000035081584, 0.034317920134336884, 0.033413346015933765, 0.032545055109572014, 0.031710991174236335, 0.03090924912901502, 0.030138061501847543, 0.029395786299991608, 0.028680896132617043, 0.02799196843840565, 0.02732767669028644, 0.026686782465980965, 0.026068128287181695, 0.025470631142315923, 0.02489327661843463, 0.024335113576792026, 0.02379524931453693, 0.023272845161803897, 0.022767112469354943, 0.02227730894716263, 0.021802735318778764, 0.0213427322602996, 0.020896677596194287, 0.020463983727303174, 0.02004409526894531, 0.019636486879476066, 0.019240661261661095, 0.01885614732108876, 0.01848249846744621, 0.018119291045955537, 0.01776612288749047, 0.017422611967065307, 0.017088395161393422, 0.01676312709710003, 0.016446479081972498, 0.016138138112390166, 0.01583780595065416, 0.015545198266579427, 0.015260043838185414, 0.014982083806802573, 0.014711070982328926, 0.014446769194757068, 0.01418895268840616, 0.013937405555634778, 0.013691921207058604, 0.013452301875565332, 0.013218358151642283, 0.012989908547734432, 0.012766779089546607, 0.012548802932358492, 0.012335820000598382, 0.012127676649042029, 0.011924225344138343, 0.01172532436408849, 0.01153083751639849, 0.0113406338717327, 0.011154587512981937, 0.010972577298544329, 0.01079448663888354, 0.010620203285508577, 0.010449619131577558, 0.01028263002338512, 0.010119135582042154, 0.009959039034724625, 0.009802247054878015, 0.009648669610849142, 0.00949821982241362, 0.009350813824737214, 0.009206370639315151, 0.009064812051480926, 0.008926062494097433, 0.008790048937068223, 0.008656700782332898, 0.008525949764030458, 0.008397729853540249, 0.008271977169118346, 0.008148629889878314, 0.008027628173871234, 0.00790891408003946, 0.007792431493833535, 0.007678126056290491, 0.007565945096389774, 0.007455837566510297, 0.007347753980824993, 0.007241646356475035, 0.007137468157382594, 0.0070351742405633366, 0.006934720804807735, 0.006836065341614381, 0.0067391665882577815, 0.006643984482884377, 0.0065504801215325575, 0.006458615716987835, 0.006368354559373618, 0.006279660978399898, 0.0061925003071846745, 0.0061068388475759485, 0.006022643836896927, 0.005939883416053816, 0.005858526598932618, 0.005778543243035428, 0.0056999040212870455, 0.005622580394965245, 0.005546544587700838, 0.0054717695604966695, 0.005398228987722315, 0.005325897234037875, 0.005254749332205315, 0.005184760961751695, 0.005115908428437887, 0.005048168644508592, 0.004981519109679002, 0.004915937892833803, 0.004851403614401499, 0.004787895429380773, 0.004725393010987453, 0.004663876534894894, 0.004603326664047291, 0.004543724534017378, 0.004485051738886283, 0.004427290317628766, 0.00437042274097489, 0.004314431898736788, 0.004259301087574999, 0.004205013999191631, 0.004151554708929562, 0.004098907664763143, 0.0040470576766645176, 0.003995989906331433, 0.0039456898572599155, 0.0038961433651516215, 0.003847336588640396, 0.003799256000326323, 0.003751888378105812, 0.0037052207967865226, 0.003659240619975309, 0.003613935492229884, 0.0035692933314634416, 0.003525302321593806, 0.0034819509054269736, 0.003439227777766523, 0.0033971218787413383, 0.003355622387342784, 0.003314718715164122, 0.003274400500334736, 0.003234657601642004, 0.0031954800928341216, 0.0031568582570984127, 0.0031187825817060562, 0.0030812437528216358, 0.0030442326504670114, 0.0030077403436387425, 0.0029717580855686083, 0.002936277309128549, 0.002901289622367941, 0.002866786804185173, 0.0028327608001244725, 0.002799203718295395, 0.002766107825411932, 0.0027334655429439186, 0.0027012694433814475, 0.002669512246604182, 0.0026381868163552645, 0.002607286156814621, 0.002576803409268981, 0.0025467318488754343, 0.0025170648815156338, 0.0024877960407372964, 0.002458918984780429, 0.0024304274936855024, 0.0024023154664810126, 0.002374576918448083, 0.0023472059784591733, 0.00232019688638879, 0.002293543990594567, 0.0022672417454649672, 0.002241284709033622, 0.0022156675406562114, 0.002190384998749232, 0.0021654319385887772, 0.0021408033101662297, 0.0021164941561009304, 0.0020924996096066068, 0.002068814892510725, 0.0020454353133249614, 0.002022356265365254, 0.001999573224919864, 0.001977081749464461, 0.0019548774759220334, 0.001932956118967287, 0.0019113134693733813, 0.001889945392400208, 0.0018688478262228819, 0.0018480167803996037, 0.0018274483343770215, 0.0018071386360327805, 0.0017870839002536911, 0.0017672804075487187, 0.0017477245026963348, 0.0017284125934233737, 0.0017093411491174808], "KothaEtAl2016Other": [0.3511801289732619, 0.3511801289732619, 0.3511801289732619, 0.3511801289732619, 0.3511801289732619, 0.3494280347198046, 0.34039399853085134, 0.3252830767625809, 0.30645269960064164, 0.28608899138411614, 0.26578178593679935, 0.24648701799669365, 0.2286736028790153, 0.2124973779860673, 0.19793719991804162, 0.18488397872613535, 0.1731930672506641, 0.16271269561511578, 0.15329813456106048, 0.14481785910479755, 0.13715545401494325, 0.13020938590153341, 0.1238918056854345, 0.11812699695112834, 0.11284978130979421, 0.10800402671532236, 0.10354131725542702, 0.09941979828940826, 0.09560318932271968, 0.0920599478415442, 0.08876256452218033, 0.085686970545872, 0.08281203946127261, 0.08011916824149967, 0.07759192442912106, 0.07521574834159002, 0.07297770114010278, 0.07086625113133709, 0.06887109198808941, 0.06698298767004801, 0.06519363973064818, 0.06349557344064358, 0.06188203977060124, 0.060346930776700496, 0.05888470634655859, 0.05749033060082248, 0.05615921652520944, 0.05488717763808844, 0.05367038568887925, 0.05250533354024487, 0.051388802518068905, 0.05031783362229243, 0.04928970208266482, 0.04830189481986196, 0.047352090436190146, 0.04643814141420701, 0.04555805824673369, 0.04470999526044299, 0.043892237927557295, 0.04310319148807553, 0.04234137072848502, 0.04160539078307402, 0.04089395884129299, 0.04020586665942949, 0.03953998378755997, 0.038895251433834925, 0.03827067689760205, 0.03766532851109707, 0.037078331036625674, 0.03650886147229328, 0.035956145224831725, 0.03541945261272929, 0.034898095667025696, 0.034391425200751044, 0.03389882812117126, 0.033419724961754105, 0.03295356761328999, 0.03249983723571643, 0.0320580423341401, 0.03162771698422646, 0.03120841919366986, 0.03079972938773452, 0.030401249008082772, 0.030012599215163173, 0.02963341968535504, 0.029263367494902416, 0.028902116083468453, 0.02854935429073943, 0.028204785460186052, 0.027868126604580802, 0.027539107628375612, 0.027217470602478908, 0.02690296908737753, 0.026595367500873275, 0.026294440527066157, 0.025999972563471214, 0.025711757203439472, 0.025429596751286143, 0.02515330176773986, 0.024882690643533295, 0.024617589199115116, 0.024357830308652066, 0.024103253546612614, 0.023853704855366337, 0.02360903623236515, 0.023369105435567538, 0.02313377570588131, 0.022902915505489868, 0.022676398271015686, 0.0224541021805426, 0.022235909933603852, 0.022021708543302834, 0.021811389139792515, 0.021604846784391236, 0.02140198029368631, 0.021202692072980055, 0.021006887958532113, 0.020814477068037896, 0.02062537165886462, 0.02043948699356622, 0.020256741212252117, 0.020077055211405237, 0.019900352528770725, 0.019726559233965314, 0.0195556038244761, 0.019387417126747384, 0.019221932202058832, 0.019059084256934748, 0.018898810557827807, 0.01874105034984157, 0.01858574477927306, 0.018432836819763248, 0.01828227120186514, 0.018133994345844666, 0.017987954297543695, 0.017844100667139963, 0.0177023845706577, 0.017562758574083577, 0.017425176639950753, 0.0172895940762705, 0.017155967487687933, 0.01702425472875111, 0.016894414859184147, 0.016766408101074125, 0.016640195797864202, 0.0165157403750753, 0.01639300530266534, 0.016271955058952337, 0.0161525550960189, 0.01603477180653726, 0.01591857249193492, 0.015803925331853545, 0.015690799354824488, 0.015579164410115337, 0.015468991140690605, 0.015360250957232634, 0.015252916013179062, 0.015146959180727124, 0.015042354027761655, 0.01493907479567129, 0.01483709637800061, 0.01473639429991837, 0.014636944698450087, 0.014538724303453732, 0.01444171041929661, 0.014345880907212151, 0.014251214168302172, 0.014157689127155529, 0.014065285216064564, 0.013973982359806913, 0.013883760960970068, 0.013794601885803509, 0.013706486450564189, 0.0136193964083477, 0.013533313936375255, 0.013448221623725653, 0.013364102459488925, 0.013280939821327142, 0.013198717464425982, 0.013117419510822568, 0.013037030439090921, 0.01295753507437644, 0.012878918578761672, 0.012801166441951813, 0.01272426447226805, 0.01264819878793713, 0.012572955808664498, 0.01249852224748166, 0.012424885102856352, 0.012352031651057173, 0.012279949438761487, 0.012208626275898056, 0.012138050228716755, 0.012068209613075802, 0.011999092987939114, 0.011930689149076124, 0.011862987122956492, 0.01179597616083274, 0.011729645733005776, 0.011663985523262033, 0.011598985423483452, 0.01153463552841613, 0.011470926130600103, 0.011407847715445717, 0.011345390956462554, 0.011283546710623118, 0.011222306013868153, 0.01116166007674079, 0.011101600280148189, 0.011042118171248288, 0.010983205459451565, 0.010924854012541856, 0.010867055852904732, 0.010809803153865236, 0.010753088236128522, 0.010696903564320806, 0.010641241743627542, 0.010586095516525814, 0.010531457759607116, 0.010477321480488137, 0.010423679814806604, 0.010370526023299423, 0.010317853488961044, 0.01026565571427848, 0.010213926318540931, 0.010162659035222999, 0.01011184770943612, 0.010061486295450166, 0.010011568854279082, 0.009962089551331054, 0.009913042654121329, 0.009864422530043184, 0.009816223644198947, 0.00976844055728615, 0.00972106792353884, 0.009674100488721861, 0.009627533088176604, 0.009581360644916413, 0.009535578167771066, 0.009490180749577321, 0.00944516356541602, 0.009400521870892848, 0.00935625100046223, 0.009312346365792824, 0.009268803454174282, 0.00922561782696227, 0.009182785118062557, 0.009140301032451685, 0.009098161344733837, 0.00905636189773395, 0.009014898601122034, 0.008973767430074046], "KothaEtAl2016Turkey": [0.25647040914240016, 0.25647040914240016, 0.25647040914240016, 0.25647040914240016, 0.25647040914240016, 0.2551630866870744, 0.2484223287528166, 0.2371472012741665, 0.22309662113063491, 0.20790175700100724, 0.19274893117691527, 0.17835152476487906, 0.16505953616793184, 0.1529893452123209, 0.14212525329415257, 0.1323859160573361, 0.12366343730000214, 0.11584459000027843, 0.10882138861722414, 0.10249569166489937, 0.0967806262229139, 0.09160041990124485, 0.08688950875241863, 0.0825913805276072, 0.07865738553866318, 0.07504562410982048, 0.07171995435143019, 0.06864913065416423, 0.06580606726027473, 0.06316721441863876, 0.06071203252763755, 0.05842254990041635, 0.056282991060470675, 0.05427946411797412, 0.052399697451547086, 0.05063281747022943, 0.048969160595285464, 0.04740011376964481, 0.04591797878467341, 0.044515856530840524, 0.04318754795367168, 0.04192746905186922, 0.04073057771070099, 0.039592310538382344, 0.038508528180798994, 0.03747546784284587, 0.03648970195277467, 0.03554810207785277, 0.03464780734154041, 0.033786196710061986, 0.03296086461400714, 0.03216959945199586, 0.031410364591332694, 0.03068128153758623, 0.029980614992616287, 0.02930675956095241, 0.02865822789811958, 0.028033640123394803, 0.027431714343623015, 0.026851258155531556, 0.026291161011550157, 0.025750387349190308, 0.025227970396973852, 0.024723006580960664, 0.024234650465404222, 0.023762110169342855, 0.02330464320798857, 0.022861552713914376, 0.022432183998411237, 0.022015921417964653, 0.02161218551490039, 0.021220430404726213, 0.020840141385798802, 0.02047083274964505, 0.020112045772643552, 0.019763346871827982, 0.01942432590945306, 0.019094594632545134, 0.018773785235109988, 0.018461549031922958, 0.0181575552339778, 0.017861489816624596, 0.01757305447234405, 0.017291965640891103, 0.017017953610233876, 0.01675076168233706, 0.016490145398434363, 0.016235871818882613, 0.015987718853195863, 0.015745474636224756, 0.015508936946824335, 0.015277912665677722, 0.015052217269246496, 0.014831674357062072, 0.014616115209840665, 0.014405378376097323, 0.01419930928514445, 0.013997759884534678, 0.01380058830016571, 0.013607658517418077, 0.013418840081816976, 0.013234007817849556, 0.013053041564661277, 0.012875825927461282, 0.012702250043565264, 0.012532207362075403, 0.012365595436282573, 0.012202315727942269, 0.012042273422642656, 0.011885377255533475, 0.011731539346748544, 0.011580675045898846, 0.011432702785058391, 0.01128754393970248, 0.011145122697113576, 0.011005365931773323, 0.010868203087331128, 0.010733566064731895, 0.010601389116144284, 0.010471608744332412, 0.010344163607152682, 0.010218994426873735, 0.010096043904036275, 0.009975256635591255, 0.009856579037068802, 0.009739959268552324, 0.009625347164236507, 0.00951269416537414, 0.00940195325642001, 0.009293078904196103, 0.009186026999913749, 0.009080754803895027, 0.008977220892850482, 0.00887538510957507, 0.008775208514935028, 0.008676653342021895, 0.008579682952364326, 0.00848426179408902, 0.008390355361928383, 0.00829793015898442, 0.008206953660156687, 0.00811739427715161, 0.008029221324991427, 0.007942404989954658, 0.007856916298868703, 0.007772727089695511, 0.007689809983342904, 0.007608138356645993, 0.007527686316457439, 0.0074484286748005045, 0.007370340925025909, 0.0072933992189359005, 0.007217580344819488, 0.007142861706363891, 0.007069221302399806, 0.006996637707440466, 0.006925090052981393, 0.006854558009524006, 0.00678502176929071, 0.006716462029604482, 0.006648859976894993, 0.006582197271314789, 0.006516456031928395, 0.006451618822457241, 0.006387668637550048, 0.0063245888895618035, 0.006262363395816125, 0.006200976366329488, 0.00614041239198251, 0.006080656433114874, 0.006021693808526826, 0.0059635101848751915, 0.005906091566439434, 0.005849424285250942, 0.005793494991564015, 0.005738290644659828, 0.005683798503966327, 0.005630006120483128, 0.005576901328498962, 0.0055244722375908765, 0.00547270722489156, 0.005421594927617766, 0.005371124235847111, 0.005321284285534282, 0.0052720644517578845, 0.005223454342189093, 0.005175443790772862, 0.005128022851614478, 0.005081181793063054, 0.005034911091985565, 0.004989201428223258, 0.004944043679223867, 0.004899428914843982, 0.004855348392314353, 0.004811793551362702, 0.0047687560094881905, 0.0047262275573819665, 0.004684200154488498, 0.0046426659247038845, 0.004601617152203038, 0.004561046277395969, 0.004520945893003472, 0.004481308740253043, 0.0044421277051852935, 0.004403395815073925, 0.004365106234947532, 0.004327252264216859, 0.00428982733339904, 0.004252825000937376, 0.004216238950114541, 0.004180062986052571, 0.004144291032801544, 0.004108917130509274, 0.004073935432672803, 0.004039340203467057, 0.004005125815148828, 0.003971286745533512, 0.003937817575542501, 0.0039047129868184077, 0.0038719677594062423, 0.0038395767694983547, 0.0038075349872411573, 0.0037758374746018762, 0.003744479383292875, 0.003713455952751975, 0.0036827625081777547, 0.0036523944586163122, 0.0036223472951003306, 0.0035926165888364304, 0.0035631979894408163, 0.0035340872232218, 0.0035052800915062123, 0.0034767724690105547, 0.003448560302253729, 0.0034206396080110244, 0.003393006471807893, 0.00336565704645229, 0.0033385875506043265, 0.0033117942673826397, 0.0032852735430054614, 0.0032590217854664583, 0.003233035463243455, 0.003207311104039435, 0.0031818452935548657, 0.003156634674290768, 0.0031316759443807537, 0.003106965856452182, 0.0030825012165149055, 0.0030582788828771214, 0.00303429576508824, 0.0030105488229056473, 0.002987035065288328], "ZhaoEtAl2016Asc": [0.5660952060072781, 0.5660952060072781, 0.5222462495417223, 0.4834099200181806, 0.44884148982197325, 0.4179300995614624, 0.3901709001149704, 0.36514370941407354, 0.34249650808612697, 0.3219325647457699, 0.3032003094701178, 0.28608530659664566, 0.2704038447248806, 0.25599778248822114, 0.2427303768339376, 0.23048288553655957, 0.21915178397649832, 0.20864647241922085, 0.19888737737192827, 0.18980437139575365, 0.18133545169124188, 0.17342563007059533, 0.16602599647636823, 0.15909292566307331, 0.15258740251841765, 0.14646103458563206, 0.14063691885530843, 0.13509816383220366, 0.12983307633294422, 0.12482934051576913, 0.12007437791297046, 0.11555561288664347, 0.11126066478677424, 0.10821075190106523, 0.10531941077871923, 0.10254007071277933, 0.09986768085316536, 0.09729734705109803, 0.09482435068453034, 0.09244416036632555, 0.09015243821787047, 0.0879450420289146, 0.08581802433774283, 0.0837676292398078, 0.08179028755404552, 0.07988261083587371, 0.07804138461453511, 0.07626356114558898, 0.07454625190073003, 0.07288671996325025, 0.07128237245531317, 0.06973075309032879, 0.06822953491774489, 0.06677651330786356, 0.0653695992084308, 0.06400681269315085, 0.06268627681277099, 0.0614062117527835, 0.06016492929626548, 0.05896082758673401, 0.05779238618304524, 0.05665816139630315, 0.05555678189758848, 0.054486944584384175, 0.05344741069310956, 0.05243700214512971, 0.051454598113574626, 0.0504991317985588, 0.04956958739875016, 0.048664997267627075, 0.047784439243264386, 0.046927034141015615, 0.04609194339893942, 0.04527836686640729, 0.04448554072684396, 0.04371273554605636, 0.04295925443815869, 0.04222443134155134, 0.04150762939790496, 0.04080823942752223, 0.04012567849493481, 0.03945938855890659, 0.03880883520146607, 0.0381735064309189, 0.037552911554127245, 0.036946580113636475, 0.0363540608855954, 0.0357749209345625, 0.03520874472170135, 0.034655133262970525, 0.03411370333423297, 0.03358408672033942, 0.03306592950552977, 0.032558891402559555, 0.03206264511823095, 0.031576875753106144, 0.03110128023332863, 0.030635566772651116, 0.03017945436284634, 0.02973267229083635, 0.029294959680933284, 0.028866065060767575, 0.028445745949483132, 0.02803376846692732, 0.027629906962628813, 0.027233943663424392, 0.026845668338685225, 0.02646487798213468, 0.026091376509343414, 0.025724974470010917, 0.025365488774222688, 0.02501274243191582, 0.02466656430482631, 0.0243267888702268, 0.02399325599585441, 0.023665810725375356, 0.023344303073875673, 0.023028587832804686, 0.022718524383905054, 0.022413976521635848, 0.022114812283659746, 0.021820903788971172, 0.02153212708327673, 0.021248361991257455, 0.02096949197535446, 0.020695404000767113, 0.020425988406332248, 0.02016113878100625, 0.01990075184566546, 0.019644727339965418, 0.019392967914010115, 0.019145379024601592, 0.018901868835839154, 0.018662348123873324, 0.018426730185603923, 0.01819493075114016, 0.01796686789984643, 0.017742461979804332, 0.01752163553052834, 0.017304313208791645, 0.017090421717415746, 0.01687988973688333, 0.016672647859651054, 0.016468628527043474, 0.01626776596860199, 0.016069996143787044, 0.015875256685926948, 0.015683486848313808, 0.015494627452349256, 0.015308620837658599, 0.015125410814073639, 0.01494494261542266, 0.014767162855030542, 0.014592019482869334, 0.014419461744283874, 0.014249440140225384, 0.014081906388932091, 0.01391681338899542, 0.013754115183751314, 0.013593766926949873, 0.013435724849637396, 0.01327994622821839, 0.013126389353633128, 0.012975013501617233, 0.01282577890399225, 0.012678646720951767, 0.012533579014300775, 0.01239053872160689, 0.012249489631236411, 0.012110396358231886, 0.011973224321001086, 0.01183793971879052, 0.011704509509904995, 0.011572901390652028, 0.011443083774977866, 0.01131502577477422, 0.01118869718082316, 0.01106406844436536, 0.010941110659258362, 0.010819795544713457, 0.010700095428578178, 0.010581983231155792, 0.010465432449532651, 0.010350417142401033, 0.010236911915356637, 0.010124891906654544, 0.010014332773405455, 0.00990521067819994, 0.009797502276141413, 0.009691184702276612, 0.00958623555940778, 0.009482632906272463, 0.00938035524608068, 0.009279381515395079, 0.009179691073342386, 0.00908126369114492, 0.008984079541961244, 0.008888119191025787, 0.008793363586077112, 0.008699794048063019, 0.008607392262118974, 0.008516140268800624, 0.008426020455575554, 0.00833701554854963, 0.008249108604437453, 0.008162283002752912, 0.008076522438223927, 0.007991810913418685, 0.007908132731577566, 0.007825472489645081, 0.007743815071493417, 0.00766314564133438, 0.007583449637310199, 0.007504712765260838, 0.007426920992659424, 0.007350060542712874, 0.007274117888620098, 0.007199079747986254, 0.007124933077383893, 0.007051665067060686, 0.006979263135785415, 0.0069077149258309775, 0.006837008298088982, 0.006767131327311641, 0.0066980722974777605, 0.006629819697278031, 0.006562362215718111, 0.006495688737833286, 0.006429788340513533, 0.006364650288434499, 0.006300264030092404, 0.006236619193937718, 0.006173705584607861, 0.006111513179252448, 0.006050032123951413, 0.005989252730222097, 0.00592916547161144, 0.0058697609803739295, 0.005811030044229959, 0.005752963603202854, 0.005695552746534947, 0.005638788709676042, 0.005582662871346063, 0.00552716675066735, 0.005472292004366801, 0.005418030424043694, 0.005364373933502938, 0.0053113145861509335, 0.005258844562453277, 0.005206956167452661, 0.005155641828342779, 0.0051048940921016184], "BindiEtAl2017Rjb": [0.5511489837927657, 0.5511489837927657, 0.5511489837927657, 0.5511489837927657, 0.5511489837927657, 0.5458861557441732, 0.5203893575206123, 0.4827341552598357, 0.4421913156150179, 0.4039085849726427, 0.3697527569498909, 0.33994840277422694, 0.31409509934310176, 0.2916316217071224, 0.27201409866718246, 0.2547712657645654, 0.23951230002086019, 0.22591859168525782, 0.21373163975373763, 0.20274142753634355, 0.19277656294116507, 0.18369632810448486, 0.17538440837029398, 0.1677439883007515, 0.1606939229532869, 0.15416574207809094, 0.1481012958504075, 0.1424508945219891, 0.13717182932858063, 0.1322271889667683, 0.1275849064364642, 0.12321698648682651, 0.11909887552326553, 0.11520894458803892, 0.11152806264409203, 0.10803924241513851, 0.1047273448670773, 0.10157883135606807, 0.09858155473623341, 0.0957245824797651, 0.09299804623524911, 0.09039301332765992, 0.08790137655365708, 0.08551575930050702, 0.08322943355499839, 0.08103624880010583, 0.0789305701444091, 0.07690722431084615, 0.07496145233991242, 0.07308886804925967, 0.07128542144495885, 0.06954736640594637, 0.06787123206743245, 0.0662537974159891, 0.06469206868089868, 0.06318325916718102, 0.0617247712259258, 0.06031418010069271, 0.05894921942438899, 0.057627768171865365, 0.056347838899299785, 0.055107567123536, 0.05390520171353966, 0.05273909618232551, 0.05160770078153031, 0.05050955531296054, 0.04944328258171098, 0.04840758242440938, 0.047401226254013946, 0.04642305206923187, 0.04547195988266425, 0.044546907526829035, 0.04364690680176671, 0.04277101993188654, 0.041918356303202564, 0.041088069455099116, 0.040279354303566446, 0.03949144457514113, 0.03872361043294179, 0.03797515627802725, 0.03724541871103315, 0.036533764640419866, 0.03583958952505125, 0.03516231573999176, 0.03450139105543339, 0.03385628721958785, 0.03322649863730489, 0.03261154113679826, 0.03201095081767078, 0.03142428297395155, 0.030851111086439266, 0.030291025879135933, 0.029743634435023807, 0.0292085593667869, 0.0286854380385161, 0.028173921834707398, 0.0276736754731988, 0.02718437635895621, 0.026705713975857342, 0.026237389313867883, 0.025779114329177094, 0.025330611435095567, 0.024891613021645675, 0.02446186100194688, 0.024041106383656953, 0.023629108863832536, 0.02322563644571423, 0.022830465076042854, 0.022443378301622206, 0.022064166943916386, 0.021692628790580305, 0.021328568302887627, 0.020971796338093943, 0.020622129885828195, 0.02027939181770918, 0.0199434106493644, 0.019614020314174693, 0.01929105994802684, 0.01897437368447553, 0.018663810459700045, 0.018359223826716356, 0.018060471778327623, 0.017767416578325985, 0.017479924600495963, 0.01719786617499188, 0.01692111544170026, 0.01664955021019965, 0.01638305182598231, 0.016121505042599536, 0.01586479789942489, 0.015612821604745685, 0.015365470423904954, 0.015122641572241647, 0.014884235112584427, 0.014650153857073408, 0.014420303273087354, 0.014194591393083402, 0.013972928728153174, 0.013755228185111015, 0.013541404986952619, 0.013331376596516181, 0.013125062643197103, 0.012922384852566051, 0.012723266978769668, 0.012527634739564551, 0.01233541575387966, 0.01214653948178133, 0.011960937166739936, 0.011778541780083042, 0.011599287967552349, 0.01142311199785182, 0.011249951713122115, 0.01107974648123342, 0.010912437149833257, 0.010747966002069327, 0.010586276713911014, 0.010427314313008425, 0.010271025139018005, 0.010117356805333752, 0.009966258162173395, 0.00981767926094488, 0.00967157131986458, 0.00952788669075339, 0.00938657882697936, 0.00924760225248731, 0.009110912531883654, 0.008976466241526938, 0.008844220941582154, 0.008714135149010595, 0.008586168311448941, 0.008460280781943887, 0.008336433794519659, 0.008214589440528688, 0.008094710645773651, 0.007976761148356406, 0.007860705477238463, 0.007746508931477152, 0.0076341375601171576, 0.007523558142711524, 0.007414738170451126, 0.007307645827874584, 0.007202249975145036, 0.007098520130867611, 0.006996426455429599, 0.006895939734845393, 0.00679703136508848, 0.006699673336891134, 0.0066038382209974884, 0.006509499153852445, 0.006416629823713189, 0.006325204457166926, 0.006235197806040662, 0.006146585134691609, 0.0060593422076632595, 0.005973445277695605, 0.005888871074077524, 0.005805596791329331, 0.005723600078204822, 0.005642859027004175, 0.005563352163181449, 0.005485058435246098, 0.005407957204939126, 0.005332028237684378, 0.005257251693295687, 0.005183608116944567, 0.005111078430365478, 0.00503964392330443, 0.004969286245194129, 0.004899987397051885, 0.004831729723595655, 0.004764495905564513, 0.004698268952246487, 0.0046330321941984425, 0.004568769276158548, 0.004505464150141915, 0.004443101068715023, 0.004381664578443469, 0.0043211395135081595, 0.004261510989484032, 0.00420276439727685, 0.004144885397213533, 0.00408785991328126, 0.004031674127511572, 0.003976314474504076, 0.003921767636086299, 0.0038680205361067777, 0.0038150603353546775, 0.0037628744266062896, 0.003711450429790749, 0.003660776187274261, 0.0036108397592592486, 0.0035616294192929243, 0.0035131336498856027, 0.003465341138232798, 0.003418240772039744, 0.0033718216354450535, 0.0033260730050408307, 0.003280984345986254, 0.0032365453082130826, 0.0031927457227189046, 0.0031495755979476336, 0.003107025116253357, 0.0030650846304460014, 0.003023744660416453, 0.0029829958898396733, 0.0029428291629522217, 0.0029032354814037013, 0.0028642060011793303, 0.0028257320295918898, 0.0027878050223426485, 0.0027504165806454765, 0.0027135584484184196]}, "ylabel": "Mean PGA (g)"}, {"column": 1, "row": 0, "yvalues": {"AkkarBommer2010": [0.7915317536533829, 0.7915317536533829, 0.7915317536533829, 0.7915317536533829, 0.7915317536533829, 0.7888572114124538, 0.7748237803440885, 0.7504247180213315, 0.7183576639109162, 0.6815519799676844, 0.6426093830669999, 0.6035277540718228, 0.5656653187276466, 0.5298381285932913, 0.4964597153741295, 0.4656716709864805, 0.4374459760443082, 0.41165747201336517, 0.3881317906456498, 0.36667537621788787, 0.34709332845714863, 0.32919934586687993, 0.31282073120724, 0.2978004147586227, 0.2839972457847735, 0.2712853319208558, 0.2595529016379772, 0.24870097205426847, 0.2386419842570891, 0.2292984946634772, 0.2206019665600095, 0.21249167978332112, 0.20491376153899415, 0.1978203332235629, 0.19116876408139835, 0.18492102090665266, 0.17904310275243332, 0.17350455010682042, 0.16827801885803567, 0.1633389103791568, 0.15866505008876927, 0.1542364078204563, 0.1500348542271599, 0.14604394824413972, 0.14224875133487047, 0.13863566485313839, 0.13519228737929906, 0.13190728933977808, 0.12877030260394917, 0.12577182308147328, 0.12290312462364837, 0.1201561827712406, 0.11752360709459406, 0.11499858104576503, 0.11257480838988507, 0.11024646541007173, 0.1080081581875389, 0.10585488435182534, 0.10378199877477191, 0.1017851827504636, 0.0998604162617503, 0.09800395298440161, 0.09621229772365339, 0.09448218601552823, 0.09281056565776737, 0.09119457996372854, 0.08963155255703181, 0.08811897354611477, 0.08665448693662481, 0.08523587915567854, 0.08386106857645742, 0.08252809594393191, 0.08123511561352076, 0.07998038752411187, 0.07876226983536638, 0.07757921216660106, 0.07642974938128468, 0.07531249586688862, 0.0742261402650638, 0.07316944061164836, 0.0721412198501748, 0.07114036168602245, 0.0701658067516809, 0.0692165490564573, 0.06829163269648877, 0.06739014880319462, 0.06651123271047521, 0.06565406132261543, 0.06481785066668883, 0.06400185361461465, 0.06320535776140329, 0.062427683447314475, 0.06166818191276942, 0.060926233575755134, 0.06020124642244226, 0.05949265450245118, 0.058799916520973314, 0.058122514520596906, 0.057459952646268506, 0.05681175598738658, 0.05617746949146823, 0.05555665694434451, 0.054948900012182576, 0.054353797341025877, 0.05377096370990434, 0.053200029233830944, 0.052640638613318885, 0.05209245042729355, 0.05155513646652419, 0.051028381104886604, 0.050511880706001364, 0.05000534306295742, 0.04950848686899711, 0.04902104121717984, 0.0485427451272381, 0.0480733470978658, 0.04761260468292828, 0.04716028409006842, 0.04671615980038947, 0.046280014207908185, 0.04585163727761125, 0.04543082622100697, 0.045017385188139095, 0.04461112497510047, 0.044211862746146385, 0.04381942176957753, 0.04343363116658794, 0.04305432567236325, 0.0426813454087288, 0.04231453566770794, 0.04195374670538881, 0.04159883354552625, 0.041249655792357134, 0.04090607745212623, 0.040567966762858676, 0.04023519603193032, 0.03990764148103576, 0.039585183098160524, 0.03926770449618572, 0.03895509277779504, 0.03864723840635045, 0.0383440350824368, 0.0380453796257787, 0.037751171862281954, 0.037461314515913745, 0.03717571310520629, 0.036894275844140546, 0.03661691354720915, 0.03634353953843705, 0.03607406956419294, 0.03580842170958028, 0.03554651631827297, 0.03528827591559641, 0.035033625134726215, 0.034782490645851996, 0.03453480108816317, 0.03429048700453601, 0.03404948077879064, 0.033811716575401426, 0.033577130281563235, 0.03334565945147782, 0.03311724325280045, 0.032891822415115145, 0.03266933918037456, 0.0324497372551987, 0.032232961764969696, 0.03201895920963349, 0.0318076774211316, 0.03159906552240901, 0.03139307388791571, 0.031189654105540397, 0.03098875893993226, 0.03079034229712589, 0.030594359190442663, 0.03040076570759292, 0.030209518978948424, 0.03002057714692248, 0.029833899336421523, 0.02964944562632139, 0.02946717702193117, 0.029287055428396262, 0.029109043625015082, 0.02893310524042483, 0.028759204728624012, 0.028587307345800766, 0.0284173791279364, 0.028249386869150014, 0.02808329810075989, 0.027919081071031283, 0.027756704725588097, 0.027596138688459823, 0.02743735324374031, 0.0272803193178381, 0.0271250084622937, 0.026971392837143726, 0.026819445194812098, 0.026669138864507776, 0.026520447737111364, 0.02637334625053615, 0.026227809375536176, 0.026083812601961055, 0.025941331925424128, 0.02580034383438685, 0.025660825297624833, 0.025522753752086617, 0.025386107091104063, 0.025250863652966703, 0.025117002209830923, 0.024984501956958206, 0.02485334250227608, 0.02472350385623696, 0.024594966421983583, 0.02446771098579223, 0.024341718707797787, 0.024216971112983984, 0.024093450082432237, 0.02397113784482074, 0.02385001696816553, 0.023730070351794936, 0.02361128121854929, 0.023493633107200037, 0.02337710986507978, 0.023261695640918307, 0.023147374877875274, 0.023034132306764606, 0.022921952939466767, 0.022810822062516847, 0.022700725230871337, 0.0225916482618395, 0.022483577229179756, 0.022376498457355763, 0.022270398515942206, 0.022165264214182686, 0.0220610825956895, 0.021957840933283786, 0.021855526723970644, 0.021754127684045964, 0.021653631744329452, 0.021554027045522763, 0.021455301933685278, 0.021357444955827955, 0.02126044485561845, 0.02116429056919604, 0.021068971221092317, 0.020974476120256328, 0.020880794756177504, 0.020787916795107306, 0.020695832076374033, 0.020604530608789223, 0.020514002567145757, 0.0204242382887959, 0.020335228270320804], "CauzziFaccioli2008": [0.4311205709413487, 0.4311205709413487, 0.4311205709413487, 0.4311205709413487, 0.4311205709413487, 0.4311205709413487, 0.4311205709413487, 0.4311205709413487, 0.4311205709413487, 0.4311205709413487, 0.4311205709413487, 0.4311205709413487, 0.4311205709413487, 0.4311205709413487, 0.4311205709413487, 0.42449643336193316, 0.38791015433126513, 0.35601781851636766, 0.32806340657458966, 0.30343064460438857, 0.28161529745997654, 0.26220290332132784, 0.24485106314891955, 0.2292754138692743, 0.21523852711562996, 0.20254111000348918, 0.1910150101038678, 0.18051763340317184, 0.17092747034622957, 0.16214049317594725, 0.15406724080594542, 0.14663044843526046, 0.13976311067775812, 0.13340689127881775, 0.12751081122283867, 0.12203016150651307, 0.11692559806753142, 0.11216238508243155, 0.10770975965826284, 0.1035403962846539, 0.09962995361895353, 0.09595668950404626, 0.09250113276101203, 0.0892458024072343, 0.08617496663945115, 0.08327443528055589, 0.08053138048630148, 0.07793418139892841, 0.0754722891595689, 0.07313610928395997, 0.07091689889215375, 0.06880667668341277, 0.06679814387798429, 0.06488461462199133, 0.06305995457947348, 0.06131852662633771, 0.059655142719926085, 0.05806502115211781, 0.05654374850618231, 0.055087245733009445, 0.05369173784283349, 0.05235372677689565, 0.05106996708190098, 0.04983744405974473, 0.04865335410745016, 0.04751508699890633, 0.04642020989120777, 0.04536645286546264, 0.04435169583529057, 0.04337395667635488, 0.04243138044784461, 0.04152222959199498, 0.04064487501094596, 0.03979778793186134, 0.03897953248125931, 0.03818875889835141, 0.03742419732497249, 0.036684652116446434, 0.035968996623746786, 0.03527616840257721, 0.034605164809702126, 0.03395503895090637, 0.03332489594868039, 0.03271388950093826, 0.03212121870495599, 0.03154612512325311, 0.030987890070493587, 0.030445832102395202, 0.029919304689582475, 0.02940769406083786, 0.028910417201725994, 0.028426919995822548, 0.027956675497004074, 0.027499182322235187, 0.027053963155305012, 0.02662056335277523, 0.02619854964417331, 0.02578750891918789, 0.025387047095205884, 0.024996788059143658, 0.024616372677988652, 0.024245457872990896, 0.02388371575281629, 0.023530832801380172, 0.023186509116432587, 0.022850457695267862, 0.022522403764238728, 0.02220208414899984, 0.021889246682668527, 0.02158364964928317, 0.021285061260163718, 0.02099325916095455, 0.020708029967293328, 0.020429168827203623, 0.02015647900846853, 0.01988977150933618, 0.01962886469107119, 0.01937358393093137, 0.01912376129429321, 0.01887923522469775, 0.018639850250714542, 0.01840545670857043, 0.018175910479579126, 0.017951072741468097, 0.017730809732757258, 0.017514992529417708, 0.01730349683306154, 0.01709620277000013, 0.01689299470052104, 0.01669376103779245, 0.016498394075841805, 0.016306789826086795, 0.0161188478619285, 0.01593447117096123, 0.015753566014363188, 0.015576041793071435, 0.01540181092036896, 0.015230788700529964, 0.015062893213193464, 0.014898045203157361, 0.014736167975302727, 0.01457718729437176, 0.014421031289344017, 0.014267630362174719, 0.01411691710065722, 0.01396882619520517, 0.013823294359348091, 0.013680260253753585, 0.013539664413591564, 0.013401449179080734, 0.013265558629046968, 0.013131938517356586, 0.013000536212070007, 0.012871300637189519, 0.01274418221687402, 0.012619132821998282, 0.012496105718945738, 0.012375055520528378, 0.012255938138929721, 0.01213871074058123, 0.012023331702870978, 0.011909760572612855, 0.011797958026181093, 0.011687885831243394, 0.011579506810012399, 0.011472784803951648, 0.011367684639868066, 0.011264172097324462, 0.0111622138773225, 0.011061777572190446, 0.010962831636625136, 0.010865345359842479, 0.010769288838778701, 0.01067463295230633, 0.010581349336412273, 0.01048941036030514, 0.010398789103404136, 0.010309459333178676, 0.010221395483797047, 0.010134572635556732, 0.010048966495056122, 0.00996455337608334, 0.00988131018118888, 0.009799214383915148, 0.009718244011655705, 0.00963837762911964, 0.00955959432237432, 0.009481873683446244, 0.00940519579545524, 0.009329541218261565, 0.009254890974607103, 0.009181226536727418, 0.009108529813421149, 0.00903678313755479, 0.008965969253988222, 0.008896071307904126, 0.008827072833525382, 0.008758957743206518, 0.008691710316884833, 0.008625315191875892, 0.008559757353004151, 0.00849502212305079, 0.00843109515351405, 0.008367962415661387, 0.008305610191873501, 0.0082440250672584, 0.008183193921535232, 0.008123103921171356, 0.008063742511766583, 0.008005097410676468, 0.007947156599862061, 0.007889908318963842, 0.007833341058586343, 0.007777443553789724, 0.007722204777779331, 0.0076676139357867495, 0.007613660459135534, 0.007560333999486037, 0.0075076244232514695, 0.00745552180618129, 0.007404016428104057, 0.007353098767826516, 0.007302759498182383, 0.007252989481225445, 0.007203779763563113, 0.007155121571825436, 0.007107006308264281, 0.007059425546479807, 0.007012371027268261, 0.006965834654589005, 0.0069198084916456525, 0.00687428475707716, 0.006829255821257323, 0.006784714202696814, 0.006740652564546031, 0.006697063711195033, 0.006653940584967179, 0.006611276262904091, 0.0065690639536387365, 0.006527296994353447, 0.006485968847821503, 0.006445073099527794, 0.006404603454867779, 0.006364553736421181, 0.006324917881299352, 0.006285689938562475, 0.006246864066705535, 0.006208434531210783, 0.0061703957021644155, 0.006132742051936399, 0.006095468152919251, 0.00605856867532761], "ChiouYoungs2008": [1.3669555731141947, 1.3669555731141947, 1.3612779179188619, 1.3457052564038614, 1.3198833665239693, 1.1976629560615721, 1.0503644783689678, 0.9266576299064123, 0.8225699777340109, 0.7346822676887538, 0.6601264440187591, 0.5965374791011508, 0.541985683152767, 0.49490568688355674, 0.45403056401098457, 0.41833464788876046, 0.38698581891692124, 0.35930665498361175, 0.3347432716255428, 0.3128405513631463, 0.29322254419920096, 0.2755769865375976, 0.25964306855742064, 0.24520175022486013, 0.23206807223816786, 0.2200785506171198, 0.20907847655315817, 0.1989604371818768, 0.18963313458211534, 0.1810164632180705, 0.1730399721641234, 0.16564154659929384, 0.158766281460313, 0.15236552063507294, 0.14639603731567294, 0.14081933401950464, 0.13560104375743715, 0.1307104166073937, 0.12611987842259983, 0.12180465053988297, 0.11774242116641939, 0.11391306064627342, 0.11029837407832346, 0.10688188581355719, 0.10364865123614704, 0.10058509196037485, 0.09767885117903014, 0.09491866640168159, 0.09229425723952453, 0.08979622624304617, 0.08741597109148226, 0.08514560667878836, 0.08297789584743975, 0.08090618769636805, 0.07892436253665137, 0.07702678269461101, 0.07520824846817936, 0.07346395863411671, 0.0717894749811733, 0.07018069041154254, 0.06863380021036274, 0.06714527613256867, 0.06571184299938726, 0.06433045753383641, 0.06299828919668524, 0.06171270281252294, 0.06047124279986966, 0.05927161884056499, 0.05811169284239433, 0.05698946706511647, 0.05590307329451589, 0.05485076296162295, 0.05383089811536337, 0.052841943166704715, 0.05188245733102884, 0.05095108770304642, 0.050046562905453375, 0.049167687258458666, 0.048313335422705, 0.04748244747282704, 0.04667402436320267, 0.04588712375112362, 0.045120856146069144, 0.04437438135676882, 0.04364690521042698, 0.042937676520878626, 0.04224598428471541, 0.041571155086218774, 0.040912550693850636, 0.040269565832511164, 0.039641626117255614, 0.039028186135413916, 0.03842872766526074, 0.037842758020349296, 0.0372698085096566, 0.03670943300447852, 0.03616120660381372, 0.03562472439068804, 0.035099600272482254, 0.034585465898936754, 0.03408196965198747, 0.03358877570213468, 0.033105563126413544, 0.032632025083469525, 0.032167868041605714, 0.03171281105597717, 0.03126658509143448, 0.030828932387772456, 0.030399605864417225, 0.029978368561781883, 0.029564993116765644, 0.029159261270048153, 0.02876096340301165, 0.028369898102271154, 0.02798587174999484, 0.027608698138243317, 0.02723819810579043, 0.026874199195904797, 0.026516535333760857, 0.026165046522181386, 0.02581957855454779, 0.0254799827437796, 0.025146115666364405, 0.02481783892049252, 0.024495018897410965, 0.024177526565188526, 0.023865237264111095, 0.02355803051301161, 0.02325578982586149, 0.022958402538008557, 0.022665759641483037, 0.022377755628832287, 0.02209428834497911, 0.02181525884663852, 0.021540571268847838, 0.021270132698197317, 0.02100385305238207, 0.020741644965712066, 0.02048342368023735, 0.020229106942182107, 0.019978614903385164, 0.019731870027467773, 0.01948879700046668, 0.019249322645699913, 0.0190133758426155, 0.018780887449424, 0.018551790229302725, 0.01832601877998756, 0.018103509466562653, 0.017884200357295023, 0.017668031162333963, 0.017454943175152084, 0.01724487921656107, 0.017037783581186395, 0.01683360198627201, 0.016632281522692492, 0.01643377060806766, 0.016238018941871386, 0.01604497746243295, 0.01585459830574853, 0.015666834765994193, 0.015481641257682902, 0.015298973279362072, 0.015118787378795335, 0.014941041119544148, 0.01476569304889464, 0.014592702667059467, 0.014422030397591623, 0.014253637558965155, 0.01408748633725806, 0.013923539759888153, 0.013761761670363585, 0.01360211670398629, 0.013444570264479958, 0.013289088501490116, 0.013135638288926381, 0.012984187204101084, 0.012834703507636835, 0.01268715612410326, 0.012541514623358023, 0.012397749202552051, 0.012255830668781765, 0.012115730422351497, 0.011977420440625134, 0.011840873262440713, 0.011706061973065568, 0.011572960189666423, 0.011441542047277778, 0.01131178218524378, 0.011183655734117613, 0.011057138302997982, 0.010932205967284217, 0.010808835256836525, 0.01068700314452215, 0.010566687035133571, 0.010447864754663826, 0.010330514539924493, 0.010214615028494049, 0.010100145248984643, 0.00998708461160994, 0.009875412899052301, 0.009765110257604811, 0.00965615718859332, 0.009548534540050274, 0.009442223498650943, 0.009337205581882349, 0.00923346263045224, 0.009130976800920473, 0.009029730558546589, 0.008929706670349018, 0.008830888198362098, 0.008733258493091587, 0.008636801187153953, 0.008541500189099134, 0.008447339677406327, 0.008354304094648783, 0.008262378141820891, 0.008171546772823498, 0.008081795189099265, 0.007993108834416117, 0.007905473389790758, 0.007818874768550095, 0.007733299111525066, 0.007648732782371802, 0.0075651623630168035, 0.007482574649221563, 0.0074009566462633625, 0.007320295564727633, 0.007240578816408964, 0.00716179401031694, 0.007083928948784209, 0.007006971623671586, 0.006930910212670254, 0.006855733075694833, 0.0067814287513666294, 0.00670798595358386, 0.006635393568174991, 0.006563640649634556, 0.006492716417937829, 0.006422610255431027, 0.0063533117037982015, 0.006284810461097826, 0.006217096378870878, 0.006150159459315934, 0.006083989852531497, 0.006018577853821248, 0.005953913901061829, 0.005889988572130953, 0.005826792582394073, 0.0057643167822495405, 0.005702552154725811, 0.005641489813136634], "ZhaoEtAl2006Asc": [0.7882383994946361, 0.7882383994946361, 0.7295007497723208, 0.6783948384484713, 0.633527719369216, 0.5938259672133553, 0.5584490300043887, 0.5267293274625289, 0.4981299347493828, 0.47221410956892557, 0.4486229678370532, 0.42705887426305317, 0.4072729108687367, 0.38905530128010507, 0.3722280081901683, 0.35663894957240017, 0.3421574351888848, 0.3286705332216761, 0.3160801531221576, 0.3043006852042644, 0.2932570768381993, 0.28288325384563257, 0.27312081692959445, 0.26391795881152863, 0.25522855967604463, 0.24699334086215186, 0.23911332805408808, 0.23156937452069642, 0.22434934052754738, 0.21744021802222852, 0.2108285579315451, 0.20450078690527607, 0.19844343857968508, 0.1926433191485225, 0.18708762274565954, 0.18176400871912415, 0.1766606501645631, 0.17176626095678146, 0.1670701068518905, 0.1625620049367344, 0.1582323146956942, 0.1540719231863777, 0.15007222621335378, 0.14622510692541058, 0.14252291290370675, 0.13895843253445017, 0.1355248712481555, 0.13221582804700246, 0.12902527261879584, 0.12594752324249672, 0.12297722561975412, 0.12010933271399829, 0.11733908563865565, 0.11466199560746108, 0.11207382693795755, 0.1095705810847987, 0.10714848166831664, 0.10480396045746003, 0.10253364426131754, 0.10033434268146667, 0.09820303667642506, 0.0961368678894868, 0.09413312869250268, 0.09218925289947978, 0.09030280710569684, 0.08847148261034818, 0.08669308788276865, 0.08496554153465269, 0.08328686576298323, 0.08165518023057844, 0.08006869635338405, 0.07852571196575696, 0.07702460633688595, 0.07556383551347895, 0.0741419279655922, 0.07275748051410627, 0.07140915451999862, 0.07009567231694198, 0.06881581387016078, 0.06756841364568754, 0.0663523576754398, 0.06516658080446625, 0.064010064107839, 0.06288183246555401, 0.06178095228465526, 0.06070652935856113, 0.05965770685443356, 0.05863366341987087, 0.05763361140111865, 0.05665679516531563, 0.05570248952000142, 0.05476999822346616, 0.05385865258014332, 0.05296781011546548, 0.0520968533251696, 0.051245188494296864, 0.050412244581469465, 0.04959747216439611, 0.048800342442758354, 0.048020346294965315, 0.04725699338541713, 0.046509811319281634, 0.04577834484184188, 0.04506215507976483, 0.04436081882179658, 0.04367392783653509, 0.04300108822512076, 0.04234191980678089, 0.04169605553535613, 0.04106314094499591, 0.04044283362337277, 0.03983480271085818, 0.03923872842419195, 0.03865430160325312, 0.03808122327971296, 0.03751920426627305, 0.03696796476545129, 0.03642723399677883, 0.03589674984146978, 0.035376258503587596, 0.034865514186850424, 0.03436427878623849, 0.033872321593632716, 0.033389419016750695, 0.03291535431067777, 0.032449917321372784, 0.03199290424050409, 0.031544117371063995, 0.03110336490320707, 0.03067046069980126, 0.03024522409120908, 0.029827479678845175, 0.029417057147066637, 0.02901379108301061, 0.028617520803973104, 0.028228090191975107, 0.02784534753517178, 0.027469145375778808, 0.027099340364200006, 0.026735793119078456, 0.026378368092988526, 0.026026933443498705, 0.025681360909367314, 0.025341525691639798, 0.02500730633940915, 0.024678584640040926, 0.02435524551365884, 0.024037176911700084, 0.023724269719354783, 0.023416417661731286, 0.02311351721356012, 0.022815467512314235, 0.02252217027456534, 0.022233529715458097, 0.021949452471160355, 0.021669847524161952, 0.02139462613130428, 0.021123701754424934, 0.020856989993502266, 0.02059440852220958, 0.020335877025757034, 0.02008131714095391, 0.019830652398375608, 0.01958380816656633, 0.019340711598184353, 0.019101291578020162, 0.018865478672808824, 0.01863320508275826, 0.018404404594740874, 0.018179012537068197, 0.01795696573579127, 0.01773820247247437, 0.017522662443372663, 0.017310286719969467, 0.01710101771081502, 0.01689479912462282, 0.01669157593456609, 0.016491294343743298, 0.016293901751752583, 0.01609934672235031, 0.015907578952136132, 0.01571854924024324, 0.015532209458983304, 0.015348512525419843, 0.015167412373832616, 0.014988863929041371, 0.01481282308055595, 0.014639246657528323, 0.014468092404471684, 0.014299318957724202, 0.014132885822628866, 0.013968753351402264, 0.01380688272167362, 0.013647235915665905, 0.013489775699998907, 0.013334465606091507, 0.013181269911143639, 0.013030153619678289, 0.012881082445624631, 0.012734022794920136, 0.012588941748623786, 0.012445807046507395, 0.012304587071130193, 0.012165250832355616, 0.012027767952322974, 0.011892108650833498, 0.011758243731155346, 0.011626144566225198, 0.011495783085235219, 0.01136713176059501, 0.01124016359525215, 0.011114852110365987, 0.010991171333316656, 0.010869095786044503, 0.01074860047370484, 0.010629660873632013, 0.01051225292459915, 0.0103963530163695, 0.010281937979524036, 0.010168985075562763, 0.010057471987266099, 0.009947376809312295, 0.009838678039141712, 0.00973135456805967, 0.009625385672571804, 0.009520751005943216, 0.009417430589978194, 0.009315404807009087, 0.00921465439209226, 0.00911516042540248, 0.009016904324822042, 0.008919867838715352, 0.008824033038888514, 0.008729382313723317, 0.00863589836148465, 0.008543564183794764, 0.00845236307926766, 0.008362278637303548, 0.008273294732034439, 0.00818539551641751, 0.008098565416476041, 0.008012789125676694, 0.007928051599445615, 0.007844338049815406, 0.007761633940202659, 0.007679924980309126, 0.007599197121145331, 0.0075194365501718, 0.007440629686556221, 0.00736276317654328, 0.007285823888930167, 0.007209798910652695], "AkkarEtAlRjb2014": [0.8463882127255364, 0.8463882127255364, 0.8463882127255364, 0.8463882127255364, 0.8463882127255364, 0.8420801686503417, 0.8196839456702676, 0.7815575165631614, 0.7329541694762318, 0.679167584945746, 0.6244536644977459, 0.5716867519773355, 0.5225056921363971, 0.47764455325034927, 0.43725841504423474, 0.4011723638381091, 0.36904761496995847, 0.3404825922931548, 0.31506977416584225, 0.29242489627213586, 0.27219989169993664, 0.25408676629452326, 0.2378167309677333, 0.22315708445684146, 0.20990723169958658, 0.19789457262793453, 0.18697062464545341, 0.17700753554114063, 0.16789503273223408, 0.15953779829353998, 0.15185323313955976, 0.14476956409895234, 0.1382242465673653, 0.1321626185242691, 0.1265367665299545, 0.12130456959630762, 0.11642889190437049, 0.11187689993504543, 0.10761948358550277, 0.1036307642638419, 0.09988767583307366, 0.09636960667733101, 0.09305809315569924, 0.08993655635690838, 0.08699007542825091, 0.08420519187420451, 0.08156974014574973, 0.07907270060628441, 0.07670407159191624, 0.0744547578074507, 0.07231647273382054, 0.07028165308384637, 0.06834338364394466, 0.06649533109098928, 0.06473168558344525, 0.0630471091028679, 0.06143668966974189, 0.05989590068327579, 0.058420564740059244, 0.057006821376375506, 0.05565109825486302, 0.05435008538090631, 0.05310071198943152, 0.05190012578994573, 0.050745674297984045, 0.049634888016002535, 0.04856546525652643, 0.04753525842610956, 0.04654226161100065, 0.045584599324552694, 0.04466051629325959, 0.04376836817272352, 0.04290661309754901, 0.04207380398018916, 0.0412685814834286, 0.04048966759956478, 0.03973585977684829, 0.03900602554016324, 0.03829909755869262, 0.0376140691183269, 0.03694998996108746, 0.036305962457679225, 0.035681138082837065, 0.03507471416621342, 0.03448593089427615, 0.03391406854111099, 0.033358444908272174, 0.032818412955640315, 0.032293358607095674, 0.031782698716279124, 0.031285879179128125, 0.03080237318110886, 0.030331679568196275, 0.029873321331606157, 0.02942684419724381, 0.028991815311590185, 0.02856782201650676, 0.028154470706091887, 0.027751385759307013, 0.02735820854264655, 0.02697459647758352, 0.026600222168005134, 0.026234772583215684, 0.025877948292460765, 0.02552946274726996, 0.02518904160819157, 0.02485642211278503, 0.02453135248197869, 0.0242135913621339, 0.023902907300348282, 0.02359907825074084, 0.023301891109625085, 0.0230111412776354, 0.022726632247008993, 0.02244817521239287, 0.0221755887036061, 0.02190869823897564, 0.021647335997895138, 0.021391340511410627, 0.02114055636967813, 0.020894833945249058, 0.02065402913120134, 0.02041800309320129, 0.020186622034649226, 0.019959756974114912, 0.019737283534332507, 0.019519081742056164, 0.019305035838146124, 0.01909503409727943, 0.018888968656728174, 0.01868673535368366, 0.018488233570633318, 0.01829336608833759, 0.018102038945976694, 0.017914161308067573, 0.017729645337769953, 0.017548406076237217, 0.01737036132767686, 0.0171954315498088, 0.017023539749436104, 0.016854611382850285, 0.01668857426081601, 0.01652535845788904, 0.016364896225852316, 0.01620712191103972, 0.016051971875360324, 0.015899384420824624, 0.01574929971740159, 0.015601659734028137, 0.015456408172625518, 0.015313490404956833, 0.01517285341220336, 0.015034445727106974, 0.014898217378565903, 0.014764119838561133, 0.014632105971297334, 0.01450212998445801, 0.014374147382469067, 0.01424811492167648, 0.014123990567354612, 0.01400173345244431, 0.013881303837960709, 0.013762663074974472, 0.013645773568108572, 0.013530598740470263, 0.013417102999963121, 0.0133052517069108, 0.01319501114293227, 0.013086348481020806, 0.012979231756765406, 0.012873629840665398, 0.012769512411498778, 0.012666849930684112, 0.012565613617607909, 0.012465775425863678, 0.012367308020373275, 0.012270184755346029, 0.012174379653044071, 0.012079867383318605, 0.011986623243887105, 0.011894623141315397, 0.011803843572682528, 0.011714261607894986, 0.011625854872625508, 0.01153860153185156, 0.011452480273969598, 0.011367470295460032, 0.011283551286082962, 0.011200703414581945, 0.011118907314877607, 0.011038144072730138, 0.010958395212852308, 0.010879642686457159, 0.010801868859221875, 0.010725056499652514, 0.010649188767834258, 0.010574249204551927, 0.010500221720767264, 0.010427090587441007, 0.01035484042568152, 0.01028345619721614, 0.010212923195164158, 0.010143227035109018, 0.010074353646449197, 0.01000628926402944, 0.00993902042002854, 0.009872533936106858, 0.009806816915795704, 0.00974185673712297, 0.009677641045468926, 0.009614157746637398, 0.0095513950001434, 0.009489341212701514, 0.009427985031913534, 0.009367315340145654, 0.009307321248589339, 0.009247992091499773, 0.009189317420605808, 0.009131286999685092, 0.009073890799298786, 0.009017118991680818, 0.00896096194577619, 0.008905410222424002, 0.008850454569678923, 0.008796085918267561, 0.008742295377175989, 0.008689074229361271, 0.00863641392758707, 0.008584306090375063, 0.008532742498071212, 0.008481715089022858, 0.008431215955860907, 0.008381237341887013, 0.008331771637559611, 0.00828281137707717, 0.008234349235055019, 0.008186378023293077, 0.008138890687631115, 0.008091880304889842, 0.008045340079893517, 0.007999263342573535, 0.007953643545148686, 0.007908474259380696, 0.00786374917390245, 0.007819462091617425, 0.00777560692716642, 0.007732177704461521, 0.007689168554283678, 0.007646573711943043, 0.007604387515000707, 0.007562604401046555, 0.007521218905537454], "BindiEtAl2014Rjb": [0.8398357051090801, 0.8398357051090801, 0.8398357051090801, 0.8398357051090801, 0.8398357051090801, 0.8335847704328233, 0.802011317294862, 0.7514727301039567, 0.6919976368284645, 0.6314208415608198, 0.5742935578326795, 0.5225977423058543, 0.4767928359792685, 0.43659086085110294, 0.4014066935702678, 0.37058562489298225, 0.34350534049843484, 0.3196141137295686, 0.2984390471737257, 0.2795815067430915, 0.26270797764470694, 0.2475400765740969, 0.23384527152461076, 0.22142883777965228, 0.21012712292062077, 0.19980200880708776, 0.19033639910313382, 0.18163055674520903, 0.17359913340698144, 0.16616875715932652, 0.15927606847612946, 0.15286611593507463, 0.14689104072795311, 0.1413089935530673, 0.136083239037634, 0.1311814120224578, 0.12657489729453789, 0.12223831007334866, 0.11814905906675831, 0.11428697747525828, 0.11063401014322263, 0.10717394729501183, 0.10389219707700408, 0.10077559055233863, 0.09781221393893337, 0.0949912638025859, 0.09230292166139252, 0.0897382450624725, 0.0872890726840697, 0.08494794141868822, 0.08270801372336826, 0.08056301379534958, 0.07850717135611428, 0.07653517201369416, 0.07464211332793394, 0.07282346583357668, 0.07107503838403244, 0.06939294727048374, 0.06777358864737938, 0.0662136138607005, 0.06470990733030636, 0.06325956668445207, 0.061859884884573405, 0.06050833411250386, 0.059202551221370074, 0.05794032457667761, 0.05671958213557259, 0.05553838063088271, 0.054394895742747876, 0.05328741315446605, 0.05221432040146153, 0.05117409943271354, 0.05016531981323547, 0.04918663250423569, 0.04823676416464681, 0.047314511923812266, 0.046418738580657884, 0.04554836818935423, 0.04470238199573809, 0.04387981469244614, 0.043079750964079344, 0.04230132229652351, 0.04154370402721831, 0.0408061126154618, 0.04008780311385794, 0.039388066823825826, 0.0387062291198123, 0.038041647428158167, 0.03739370934802216, 0.03676183090283484, 0.03614545491184184, 0.03554404947223256, 0.03495710654322241, 0.034384140624160155, 0.03382468751949888, 0.033278303184026685, 0.03274456264235213, 0.03222305897714097, 0.03171340238105108, 0.03121521926775102, 0.030728151437753305, 0.030251855295188063, 0.029786001111911965, 0.029330272335647212, 0.028884364939124507, 0.028447986807409387, 0.028020857160832666, 0.027602706011133932, 0.027193273648616574, 0.026792310158258264, 0.026399574962898943, 0.026014836391754413, 0.025637871272633513, 0.025268464546340987, 0.02490640890190372, 0.024551504431273435, 0.02420355830235233, 0.023862384449177057, 0.023527803278251824, 0.023199641390033707, 0.022877731314678112, 0.02256191126119926, 0.022252024879254262, 0.021947921032818743, 0.021649453585063788, 0.021356481193801374, 0.021068867116883657, 0.020786479027009357, 0.020509188835402807, 0.020236872523876032, 0.019969409984814404, 0.01970668486864815, 0.019448584438409248, 0.019194999430991032, 0.01894582392475427, 0.018700955213137384, 0.018460293683964242, 0.01822374270414815, 0.01799120850950824, 0.01776260009944472, 0.017537829136218326, 0.01731680984860335, 0.017099458939688433, 0.01688569549863335, 0.016675440916164963, 0.016468618803645172, 0.01626515491552587, 0.016064977075035514, 0.0158680151029286, 0.015674200749168542, 0.015483467627383568, 0.015295751151989475, 0.01511098847782926, 0.014929118442228785, 0.014750081509352773, 0.014573819716750184, 0.014400276623997059, 0.014229397263334824, 0.014061128092215347, 0.01389541694767579, 0.013732213002442083, 0.01357146672271082, 0.013413129827511095, 0.013257155249595982, 0.01310349709778184, 0.012952110620687253, 0.01280295217180244, 0.01265597917583108, 0.012511150096260837, 0.012368424404100534, 0.012227762547736101, 0.012089125923870254, 0.011952476849481782, 0.011817778534782235, 0.011684995057112896, 0.011554091335756782, 0.011425033107619147, 0.011297786903746406, 0.011172320026648813, 0.011048600528397118, 0.010926597189456296, 0.010806279498236052, 0.010687617631323663, 0.010570582434374354, 0.010455145403634897, 0.010341278668076053, 0.010228954972108774, 0.010118147658863822, 0.010008830654012068, 0.009900978450107394, 0.00979456609143027, 0.009689569159313634, 0.009585963757935283, 0.009483726500557529, 0.009382834496198504, 0.009283265336719575, 0.009184997084313178, 0.009088008259376855, 0.008992277828762114, 0.008897785194377814, 0.008804510182145819, 0.008712433031285289, 0.008621534383925204, 0.008531795275021063, 0.008443197122580796, 0.008355721718171675, 0.008269351217714431, 0.008184068132543888, 0.008099855320731037, 0.008016695978660568, 0.007934573632846819, 0.007853472131991446, 0.007773375639263951, 0.007694268624805315, 0.007616135858443188, 0.007538962402613191, 0.007462733605479279, 0.007387435094247329, 0.007313052768664399, 0.007239572794698441, 0.007166981598392367, 0.007095265859887259, 0.007024412507609395, 0.0069544087126150855, 0.006885241883088521, 0.006816899658989662, 0.006749369906843522, 0.00668264071467146, 0.006616700387055321, 0.006551537440333265, 0.006487140597923391, 0.006423498785767978, 0.0063606011278992845, 0.006298436942119436, 0.00623699573579284, 0.006176267201747263, 0.0061162412142803995, 0.0060569078252682455, 0.005998257260373742, 0.0059402799153502415, 0.005882966352439965, 0.00582630729686208, 0.005770293633389129, 0.0057149164030088784, 0.005660166799669918, 0.005606036167106722, 0.0055525159957437635, 0.005499597919675355, 0.005447273713719196, 0.0053955352905433575, 0.005344374697859417, 0.005293784115687792], "CauzziEtAl2014": [0.6796795725123207, 0.6796795725123207, 0.6240099231783277, 0.5756201380758563, 0.5332387335198797, 0.49586672542595717, 0.4627094142950444, 0.433127487470742, 0.4066013871401652, 0.38270495570535834, 0.3610856772603254, 0.3414496798938743, 0.32355022179248166, 0.30717875908201475, 0.29215794933700107, 0.2783361220809955, 0.26558287224266375, 0.2537855212401517, 0.2428462542546215, 0.23267978877865308, 0.22321146376133935, 0.2143756641092758, 0.20611451437558753, 0.19837678989239965, 0.19111700459893521, 0.18427967362670628, 0.17777782327118508, 0.17159168847553444, 0.1657075159492523, 0.16011103996246387, 0.15478785692626937, 0.14972369646178466, 0.1449046132027837, 0.14031711835394076, 0.1359482658138923, 0.13178570432064213, 0.12781770443589918, 0.1240331671216565, 0.12042161905716606, 0.11697319860331869, 0.11367863536382289, 0.11052922555704871, 0.10751680484801249, 0.10463371985920299, 0.1018727992496986, 0.09922732500292304, 0.0966910043735043, 0.09425794280153804, 0.0919226179955018, 0.08967985530528991, 0.08752480444806324, 0.08545291760680576, 0.08345992889029617, 0.0815418351219143, 0.07969487790940175, 0.07791552693854542, 0.0762004644274978, 0.07454657067597344, 0.07295091064231533, 0.0714107214823384, 0.06992340098549309, 0.06848649684617233, 0.06709769671107284, 0.06575481894653945, 0.06445580407306713, 0.0631987068176054, 0.06198168873745574, 0.06080301137279056, 0.05966102988790321, 0.05855418716417495, 0.057481008310531406, 0.05644009555977132, 0.05543012352150705, 0.05444983476478583, 0.05349803570552944, 0.05257359277585773, 0.05167542885420596, 0.050802519936764545, 0.04995389203232735, 0.0491286182640149, 0.048325816162710325, 0.04754464513813762, 0.04678430411469443, 0.04604402932012962, 0.04532309221608568, 0.044620797560354926, 0.043936481591566545, 0.04326951032758912, 0.04261927796977948, 0.041985205405651316, 0.041366738803210706, 0.0407633482906282, 0.04017452671549615, 0.03959978847822494, 0.03903866843464434, 0.03849072086318225, 0.037955518492331156, 0.03743265158446846, 0.03692172707232746, 0.03642236774472991, 0.03593421147837463, 0.03545691051279377, 0.03499013076569528, 0.03453355118616604, 0.0340868631433725, 0.03364976984854655, 0.033221985808217835, 0.032803236306765834, 0.032393256916529105, 0.031991793033792404, 0.03159859943911135, 0.031213439880530634, 0.030836086678339692, 0.030466320350090722, 0.0301039292547379, 0.02974870925473743, 0.029400463395132387, 0.02905900159860936, 0.028724140375656532, 0.028395702548950526, 0.028073516991190466, 0.027757418375627327, 0.02744724693859389, 0.02714284825337719, 0.02684407301480955, 0.026550776834016594, 0.026262820042758202, 0.025980067506865115, 0.025702388448284857, 0.025429656275283798, 0.025161748420380808, 0.024898546185613116, 0.024639934594748395, 0.02438580225210128, 0.02413604120760474, 0.023890546827826344, 0.02364921767263128, 0.02341195537720873, 0.023178664539192186, 0.022949252610629984, 0.022723629794565325, 0.022501708945995753, 0.022283405477006482, 0.022068637265878998, 0.021857324569976147, 0.021649389942230837, 0.021444758151067795, 0.021243356103595627, 0.021045112771914547, 0.02084995912240329, 0.02065782804783301, 0.02046865430219904, 0.02028237443812602, 0.020098926746744274, 0.01991825119991989, 0.019740289394733497, 0.019564984500109416, 0.01939228120549916, 0.019222125671526126, 0.019054465482513546, 0.018889249600800503, 0.018726428322785166, 0.018565953236605617, 0.018407777181398594, 0.01825185420806215, 0.018098139541464303, 0.01794658954403435, 0.017797161680674304, 0.017649814484946177, 0.017504507526471615, 0.01736120137949824, 0.017219857592588508, 0.01708043865937788, 0.016942907990365314, 0.01680722988569031, 0.01667336950886091, 0.016541292861388574, 0.016410966758302416, 0.01628235880449845, 0.016155437371901546, 0.01603017157739649, 0.015906531261510093, 0.015784486967805787, 0.015664009922968895, 0.01554507201755435, 0.0154276457873715, 0.015311704395480703, 0.015197221614782023, 0.015084171811169864, 0.014972529927235198, 0.014862271466494084, 0.014753372478121021, 0.014645809542173021, 0.014539559755282198, 0.014434600716802125, 0.014330910515390101, 0.01422846771601037, 0.01412725134734334, 0.014027240889586423, 0.01392841626262975, 0.01383075781460026, 0.013734246310749989, 0.013638862922691418, 0.01354458921795017, 0.013451407149842755, 0.013359299047651058, 0.013268247607095154, 0.013178235881088764, 0.013089247270768418, 0.013001265516788799, 0.012914274690871967, 0.012828259187606434, 0.012743203716482665, 0.012659093294161552, 0.012575913236964558, 0.012493649153581088, 0.012412286937983137, 0.012331812762543883, 0.012252213071349344, 0.012173474573700974, 0.012095584237799212, 0.012018529284604961, 0.01194229718187257, 0.011866875638347853, 0.011792252598126982, 0.011718416235170063, 0.011645354947966447, 0.011573057354344265, 0.011501512286422055, 0.011430708785696611, 0.011360636098264158, 0.011291283670168377, 0.011222641142874582, 0.011154698348863052, 0.011087445307340012, 0.011020872220062263, 0.010954969467270256, 0.010889727603729719, 0.010825137354875374, 0.010761189613054382, 0.010697875433869478, 0.010635186032613571, 0.010573112780797974, 0.010511647202768109, 0.010450780972406927, 0.010390505909920944, 0.010330813978708085, 0.010271697282303828, 0.010213148061404867, 0.010155158690967333, 0.01009772167737536, 0.010040829655683032], "DerrasEtAl2014": [0.3732945201171318, 0.3732945201171318, 0.3732945201171318, 0.3732945201171318, 0.3732945201171318, 1.1519253358998294, 1.0131109977201023, 0.9055787655003161, 0.8167346155033722, 0.7412770895520979, 0.676127900902101, 0.6192346879194357, 0.5691212829219785, 0.5246743908995707, 0.48502676786661264, 0.44948673733028066, 0.4174926263946885, 0.388581765446225, 0.36236855471763585, 0.33852846115854235, 0.31678604969407753, 0.29690584811976595, 0.278685255385851, 0.2619489562675053, 0.24654446751895734, 0.23233854768082718, 0.21921427536873073, 0.2070686513473891, 0.19581061548206713, 0.18535939549316244, 0.17564312338875449, 0.16659766954563998, 0.158165655030041, 0.15029561084315293, 0.1429412590095134, 0.13606089527170853, 0.12961685695359826, 0.1235750625578182, 0.11790461205350322, 0.11257743872697686, 0.10756800501396974, 0.10285303598655222, 0.09841128519124515, 0.09422332837432298, 0.09027138132204528, 0.08653913861635393, 0.08301163058232922, 0.07967509610177206, 0.0765168693000857, 0.07352527839393214, 0.0706895552237983, 0.06799975419598327, 0.06544667952854483, 0.06302181984124204, 0.06071728925296884, 0.05852577425713177, 0.05644048573606805, 0.054455115554995166, 0.052563797243386765, 0.050761070330961826, 0.04904184795637011, 0.04740138741105707, 0.04583526331963519, 0.04433934319188871, 0.04290976511099576, 0.04154291734871323, 0.04023541972093897, 0.0389841065171198, 0.037786010854760736, 0.03663835032575788, 0.035538513815251624, 0.03448404938580647, 0.03347265313062984, 0.03250215890918927, 0.03157052888718525, 0.030675844810413064, 0.02981629994898372, 0.028990191654375365, 0.028195914477293194, 0.027431953799167064, 0.02669687993457216, 0.025989342665688725, 0.025308066173530767, 0.024651844333851734, 0.0240195363484801, 0.02341006268541173, 0.02282240130340962, 0.022255584138838488, 0.021708693834507683, 0.02118086069193714, 0.020671259830064175, 0.02017910853482789, 0.019703663785379463, 0.019244219943793984, 0.018800106596292204, 0.01837068653490089, 0.017955353869399327, 0.01755353226020313, 0.017164673263564856, 0.0167882547811656, 0.01642377960676054, 0.01607077406314475, 0.01572878672318993, 0.015397387209186486, 0.015076165065174375, 0.014764728697321147, 0.014462704377790729, 0.01416973530787342, 0.013885480736466631, 0.013609615130261708, 0.01334182739227637, 0.01308182012560236, 0.012829308939462176, 0.012584021794865815, 0.01234569838737808, 0.01211408956462848, 0.01188895677642251, 0.01167007155540128, 0.011457215026385381, 0.011250177442627119, 0.011048757747340434, 0.010852763158977102, 0.010662008778818127, 0.010476317219548762, 0.01029551825356784, 0.010119448479872489, 0.00994795100841908, 0.009780875160950931, 0.009618076187332642, 0.009459414996499866, 0.009304757901188846, 0.009153976375658426, 0.009006946825672811, 0.008863550370054424, 0.008723672633161096, 0.008587203547676614, 0.008454037167150125, 0.00832407148774654, 0.008197208278702142, 0.008073352921018212, 0.007952414253943616, 0.007834304428830104, 0.007718938769962954, 0.0076062356420055635, 0.007496116323696819, 0.007388504887482854, 0.007283328084767155, 0.007180515236492163, 0.007079998128770458, 0.006981710913314618, 0.006885590012410169, 0.006791574028213225, 0.006699603656141484, 0.00660962160216117, 0.006521572503773205, 0.006435402854511602, 0.006351060931784632, 0.006268496727890496, 0.0061876618840528575, 0.006108509627332947, 0.006030994710269322, 0.0059550733531264196, 0.005880703188614725, 0.005807843208973311, 0.005736453715295587, 0.005666496268998487, 0.005597933645330292, 0.005530729788820726, 0.005464849770587795, 0.005400259747410501, 0.005336926922486232, 0.005274819507800895, 0.005213906688029456, 0.005154158585905816, 0.005095546228988589, 0.005038041517765583, 0.00498161719503252, 0.004926246816491672, 0.004871904722515375, 0.004818566011024053, 0.004766206511426972, 0.004714802759582841, 0.0046643319737331755, 0.004614772031366807, 0.0045661014469759, 0.004518299350665086, 0.0044713454675764375, 0.004425220098096244, 0.004379904098810153, 0.004335378864175376, 0.00429162630887956, 0.004248628850857216, 0.004206369394937307, 0.004164831317095028, 0.004123998449283014, 0.004083855064818403, 0.004044385864302532, 0.004005575962051852, 0.003967410873020349, 0.003929876500190385, 0.0038929591224180085, 0.003856645382709375, 0.0038209222769159056, 0.0037857771428264353, 0.0037511976496468315, 0.0037171717878450353, 0.003683687859353235, 0.0036507344681091626, 0.0036183005109248594, 0.0035863751686712737, 0.0035549478977633443, 0.0035240084219383817, 0.0034935467243123308, 0.0034635530397063483, 0.00343401784723184, 0.0034049318631247305, 0.0033762860338195258, 0.003348071529254444, 0.0033202797363984862, 0.0032929022529925027, 0.0032659308814962634, 0.003239357623233977, 0.0032131746727312323, 0.0031873744122356677, 0.0031619494064152346, 0.0031368923972278848, 0.0031121962989551968, 0.003087854193396019, 0.0030638593252123626, 0.0030402050974234116, 0.0030168850670423695, 0.002993892940849882, 0.002971222571300883, 0.0029488679525588517, 0.0029268232166536376, 0.00290508262975847, 0.0028836405885818684, 0.0028624916168704883, 0.00284163036201943, 0.0028210515917856025, 0.0028007501911014596, 0.0027807211589849713, 0.0027609596055429165, 0.002741460749064267, 0.002722219913200852, 0.0027032325242317616, 0.0026844941084093587, 0.0026660002893837105, 0.0026477467857029813, 0.002629729408387885, 0.0026119440585759173, 0.002594386725235763], "AbrahamsonEtAl2014": [1.176158401768978, 1.176158401768978, 1.120817690975547, 1.0502556952391544, 0.9713788266540209, 0.8739909031169325, 0.7803454767603925, 0.6994563696418091, 0.6294351693078372, 0.5685919688359388, 0.5154827161345242, 0.4689002736486985, 0.4278452957593249, 0.39149293316106837, 0.3591618079815043, 0.33028736563416705, 0.30439985702749867, 0.2811064954713315, 0.2621077746067329, 0.250279518511037, 0.23936321392360663, 0.2292586769192934, 0.21987961264419323, 0.21115135280484737, 0.20300900603728758, 0.1953792746632083, 0.1881564490642021, 0.1813116384117217, 0.17482366121457302, 0.1686716554930477, 0.1628353991101692, 0.1572955150510419, 0.15203359320789422, 0.14703225235728093, 0.14227515996227189, 0.13774702282804924, 0.13343355816579228, 0.12932145201910836, 0.12539831006856944, 0.12165260439391846, 0.11807361871339382, 0.11465139384185911, 0.11137667454077531, 0.10824085852104755, 0.10523594806210015, 0.10235450449937249, 0.09958960568238438, 0.09693480640270428, 0.09438410172126406, 0.09193189307890175, 0.0895729570461753, 0.08730241655326994, 0.08511571443394722, 0.08300858911754888, 0.08097705230629465, 0.07901736848209638, 0.07712603609473062, 0.07529977029276562, 0.07353548706766852, 0.07183028869132004, 0.07018145033639352, 0.06858640777784207, 0.06704274608243478, 0.06554818920107287, 0.06410059038596347, 0.06269792336172773, 0.06133827418566718, 0.060019833738238035, 0.05874089079008123, 0.05749982559673096, 0.05629510397654709, 0.05512527183143064, 0.05398895007343847, 0.05288482992378615, 0.051811668553687226, 0.050768285039171, 0.04975355660453444, 0.048766415131266797, 0.0478058439113416, 0.04687087462557139, 0.04596058452946918, 0.045074093830458226, 0.044210563241739276, 0.04336919169933753, 0.04254921422998782, 0.04174989995851996, 0.04097055024444357, 0.04021049693811054, 0.03946910074782262, 0.03874574970977432, 0.03803985775349692, 0.03735086335595697, 0.036678228278125356, 0.03602143637817276, 0.0353799924960326, 0.03475342140440846, 0.03414126682168317, 0.03354309048257901, 0.03295847126267284, 0.032387004353213816, 0.03182830048289126, 0.03128198518354608, 0.030747698096931758, 0.030225092319908064, 0.02971383378562509, 0.029213600678414515, 0.02872408288029155, 0.02824498144708623, 0.027776008112402256, 0.027316884817681315, 0.026867343266803262, 0.026427124503749896, 0.025995978511953465, 0.025573663834031268, 0.025159947210755707, 0.02475460323807619, 0.02435741404121367, 0.023968168964797466, 0.02358666427817236, 0.023212702894991773, 0.02284609410631251, 0.022486653326433834, 0.02213420185078346, 0.02178856662518949, 0.021449580025911085, 0.021117079649867317, 0.02079090811449623, 0.020470912866748847, 0.02015694600072923, 0.01984886408352912, 0.019546527988831382, 0.019249802737884125, 0.018958557347458903, 0.01867266468445305, 0.018392001326785836, 0.018116447430280094, 0.017845886601230536, 0.01758020577437815, 0.017319295096018986, 0.017063047812007064, 0.0168113601604097, 0.016564131268585802, 0.016321263054482383, 0.016082660131952045, 0.015848229719890906, 0.015617881555027007, 0.015391527808187061, 0.015169083003880514, 0.014950463943045247, 0.014735589628820163, 0.014524381195190497, 0.014316761838399522, 0.014112656750979969, 0.013911993058303977, 0.01371469975753427, 0.013520707658871032, 0.013329949328996105, 0.013142359036618805, 0.012957872700029167, 0.012776427836581875, 0.012597963514013358, 0.012422420303533696, 0.012249740234600572, 0.012079866751317418, 0.011912744670380365, 0.011748320140516008, 0.011586540603346318, 0.011427354755617534, 0.011270712512748558, 0.011116564973635164, 0.010964864386662923, 0.010815564116885744, 0.01066861861431498, 0.010523983383282283, 0.010381614952829804, 0.010241470848092007, 0.010103509562623379, 0.009967690531645817, 0.009833974106168972, 0.009702321527961941, 0.009572694905331922, 0.009445057189690726, 0.00931937215287079, 0.009195604365167956, 0.00907371917408218, 0.008953682683730622, 0.008835461734906848, 0.008719023885766473, 0.008604337393111908, 0.008491371194257972, 0.008380094889456046, 0.008270478724855255, 0.008162493575985348, 0.008056110931739637, 0.007951302878841535, 0.007848042086777238, 0.007746301793178705, 0.007646055789641481, 0.0075472784079626334, 0.007449944506781506, 0.007354029458616155, 0.007259509137271394, 0.007166359905619771, 0.00707455860372662, 0.006984082537325365, 0.006894909466614733, 0.006807017595379304, 0.006720385560416572, 0.006634992421261911, 0.006550817650202901, 0.00646784112257073, 0.006386043107303786, 0.00630540425777014, 0.00622590560284455, 0.006147528538228677, 0.006070254818009381, 0.005994066546445111, 0.005918946169976215, 0.005844876469448492, 0.005771840552546822, 0.00569982184642925, 0.00562880409055768, 0.00555877132971834, 0.005489707907225625, 0.0054215984583045555, 0.005354427903645221, 0.005288181443126273, 0.005222844549699279, 0.005158402963431851, 0.005094842685703047, 0.005032149973548007, 0.0049703113341450335, 0.004909313519444296, 0.004849143520930389, 0.004789788564517621, 0.004731236105573167, 0.004673473824063078, 0.004616489619820539, 0.004560271607930074, 0.004504808114224967, 0.0044500876708972, 0.004396099012212256, 0.004342831070329771, 0.00429027297122455, 0.004238414030707165, 0.004187243750539327, 0.0041367518146428195, 0.004086928085398339, 0.004037762600032996, 0.0039892455670936956, 0.003941367363001814, 0.0038941185286916415], "BooreEtAl2014": [1.0261237108819243, 1.0261237108819243, 1.0261237108819243, 1.0261237108819243, 1.0261237108819243, 1.0179382350912876, 0.9772195991242265, 0.9139860053131321, 0.8421071977492233, 0.7710934061700025, 0.7056220599531702, 0.6472365843901899, 0.5959139438817781, 0.550997003230125, 0.5116520661022677, 0.47706545674550793, 0.446514735316519, 0.41938470282554136, 0.3951613330393105, 0.37341841392683034, 0.35380311415865395, 0.33602283705302743, 0.3198340545002361, 0.30503313142035116, 0.2914489061812511, 0.27893673354088805, 0.26737371166493495, 0.2566548542936053, 0.24669001248840863, 0.23740138969259614, 0.22872152677701243, 0.22059166029384555, 0.21296037813011376, 0.20578251313735146, 0.19901822805212185, 0.19263225491042948, 0.18659325983949365, 0.1808733100900398, 0.1754474248400975, 0.1702931949599663, 0.16539045980640385, 0.16072103138884714, 0.15626845805557474, 0.15201782128709446, 0.14795556033654855, 0.14406932038404144, 0.1403478206202623, 0.13678073928285475, 0.13335861316360184, 0.1300727495093914, 0.12691514857251923, 0.12387843534002418, 0.120955799198322, 0.11814094047824823, 0.11542802298198152, 0.11281163172537831, 0.11028673523857165, 0.10784865186121362, 0.10549301954632483, 0.10321576875352048, 0.10101309806845973, 0.09888145223327907, 0.09681750231388225, 0.09481812776499797, 0.09288040018384727, 0.09100156856945327, 0.0891790459268112, 0.08741039707446008, 0.08569332753090332, 0.08402567336966395, 0.08240539194566776, 0.08083055340652105, 0.07929933291198661, 0.07781000349341967, 0.07636092949238338, 0.07495056052407484, 0.07357742591711693, 0.07224012958619688, 0.07093734529859172, 0.06966781229953628, 0.06843033126502696, 0.06722376055360829, 0.06604701273159423, 0.06489905134864388, 0.06377888794277912, 0.0626855792558832, 0.06161822464263357, 0.060575963657172334, 0.05955797380347166, 0.05856346843646982, 0.057591694802262394, 0.05664193220665367, 0.05571349030234533, 0.05480570748578446, 0.0539179493955756, 0.05304960750494739, 0.052200097801446105, 0.05136885954758061, 0.05055535411664042, 0.04975906389840632, 0.04897949126984321, 0.04821615762633131, 0.0474686024692703, 0.04673638254623861, 0.04601907104020888, 0.04531625680454218, 0.044627543640763566, 0.043952549616333686, 0.043290906419848486, 0.04264225875125515, 0.04200626374488799, 0.04138259042326549, 0.04077091917973931, 0.040170941288199764, 0.03958235843824122, 0.039004882294172226, 0.038438234076524254, 0.03788214416465437, 0.037336351719255846, 0.036800604323575625, 0.03627465764227774, 0.03575827509693947, 0.03525122755722913, 0.034753293046885875, 0.03426425646366901, 0.033783909312516514, 0.03331204945116288, 0.03284848084756071, 0.03239301334845323, 0.03194546245850366, 0.03150564912942242, 0.03107339955855563, 0.03064854499644816, 0.030230921562910795, 0.02982037007115616, 0.029416735859578713, 0.029019868630806554, 0.028629622297650193, 0.028245854835596915, 0.02786842814154021, 0.0274972078984257, 0.027132063445528508, 0.026772867654078474, 0.026419496808001028, 0.026071830489493634, 0.02572975146923679, 0.025393145601003017, 0.02506190172047251, 0.02473591154803881, 0.02441506959544773, 0.02409927307605943, 0.023788421818609382, 0.02348241818426833, 0.023181166986880667, 0.02288457541623215, 0.022592552964204763, 0.022305011353703795, 0.022021864470225732, 0.021743028295952906, 0.021468420846280964, 0.021197962108640875, 0.02093157398356211, 0.02066918022784034, 0.020410706399752072, 0.020156079806205738, 0.019905229451771294, 0.019658085989496386, 0.019414581673432612, 0.01917465031281997, 0.018938227227844065, 0.018705249206904806, 0.01847565446535515, 0.018249382605618758, 0.018026374578665027, 0.017806572646761238, 0.017589920347472456, 0.017376362458845423, 0.017165844965738548, 0.016958315027251838, 0.01675372094521797, 0.016552012133704448, 0.01635313908950178, 0.01615705336355135, 0.01596370753327914, 0.015773055175804615, 0.015585050841991823, 0.01539965003130855, 0.015216809167467468, 0.015036485574818143, 0.014858637455466466, 0.014683223867091607, 0.014510204701435584, 0.01433954066344543, 0.014171193251040652, 0.014005124735486114, 0.01384129814234876, 0.01367967723301697, 0.013520226486763655, 0.013362911083338263, 0.013207696886057737, 0.013054550425397356, 0.012903438883045047, 0.01275433007642244, 0.012607192443636207, 0.012461995028870845, 0.012318707468179485, 0.012177299975685688, 0.012037743330165, 0.01190000886200001, 0.011764068440501988, 0.011629894461573071, 0.011497459835716666, 0.011366737976367114, 0.011237702788541248, 0.011110328657794414, 0.010984590439474168, 0.010860463448261566, 0.010737923447992138, 0.010616946641745973, 0.010497509662199507, 0.010379589562230748, 0.010263163805770362, 0.010148210258892013, 0.010034707181132134, 0.009922633217033698, 0.009811967387909468, 0.009702689083811835, 0.009594778055711647, 0.009488214407871415, 0.009382978590412547, 0.009279051392070622, 0.009176413933128376, 0.00907504765852827, 0.008974934331153468, 0.008876056025275563, 0.008778395120163094, 0.008681934293846704, 0.008586656517035435, 0.008492545047182195, 0.008399583422690558, 0.008307755457262906, 0.008217045234382714, 0.00812743710192864, 0.00803891566691658, 0.007951465790367299, 0.00786507258229309, 0.007779721396803443, 0.007695397827324346, 0.007612087701928779, 0.007529777078778012, 0.007448452241662434, 0.007368099695651844], "ChiouYoungs2014": [1.153133641136293, 1.153133641136293, 1.0967371660664453, 1.0410514803853863, 0.9859918864944401, 0.9018120883869647, 0.8127933596659747, 0.7355241973887435, 0.6683913876604144, 0.6099324421927722, 0.5588630878184102, 0.5140790263837766, 0.4746434555606362, 0.4397681006264638, 0.4087924804419562, 0.3811639930805628, 0.3564200397229967, 0.3341726024865876, 0.3140952602571919, 0.2959124213440859, 0.2793904754457818, 0.2643305592419479, 0.2505626542098028, 0.23794077213812012, 0.22633902291457533, 0.21563443315859443, 0.2056863460044195, 0.19642631369734062, 0.18779755114553331, 0.17974803630391767, 0.17223022321212927, 0.16520072567484181, 0.15861999298728097, 0.15245199110390015, 0.1466638973211637, 0.14122581301851767, 0.1361104966850669, 0.1312931179601885, 0.12675103246432246, 0.12246357661414306, 0.11841188128006076, 0.11457870297200161, 0.1109482711739825, 0.1075061504521838, 0.10423911600752281, 0.1011350414163491, 0.09818279738781711, 0.09537216045833584, 0.09269373063530507, 0.09013885709169445, 0.08769957109800751, 0.08536852545762418, 0.08313893978444598, 0.08100455102929352, 0.0789595687219366, 0.07699863445139876, 0.07511678515634913, 0.07330941984266183, 0.07157226938486105, 0.06990136910441205, 0.06829303384984096, 0.06674383533226451, 0.06525058149574295, 0.06381029772464672, 0.06242020971059394, 0.061077727819916466, 0.059780432818761116, 0.05852606282749245, 0.057312501389095785, 0.05613776654779102, 0.05500000084452142, 0.05389746214521421, 0.05282851522598342, 0.05179162404692269, 0.05078534465277368, 0.049808318644687, 0.048859267172717255, 0.04793698540342799, 0.047040337421341255, 0.0461682515268081, 0.04531971589644173, 0.04449377457528915, 0.04368952377282958, 0.04290610843741739, 0.04214271908608075, 0.041398588868638536, 0.040672990847075034, 0.03996523547264239, 0.03927466824488471, 0.038600667538012834, 0.03794264258141376, 0.0373000315821552, 0.036672299978464565, 0.036058938813991005, 0.035459463223618044, 0.03487341102231113, 0.034300341389195015, 0.03373983363973724, 0.033191486079449, 0.03265491493309542, 0.03212975334383806, 0.031615650437260556, 0.03111227044554694, 0.030619291887505007, 0.03013640680046011, 0.029663320020338602, 0.029199748506566404, 0.02874542070864457, 0.028300075971533983, 0.027863463977161877, 0.027435344219596904, 0.027015485511613126, 0.02660366552052788, 0.02619967033134389, 0.025803294035426208, 0.02541433834297342, 0.02503261221778674, 0.024657931532840106, 0.02429011874534901, 0.023929002590061567, 0.023574417789629137, 0.023226204780972294, 0.022884209456642393, 0.022548282920245254, 0.022218281255049373, 0.021894065304987182, 0.02157550046727184, 0.02126245649594365, 0.020954807315680675, 0.0206524308452615, 0.020355208830109148, 0.020063026683381294, 0.019775773335101554, 0.01949334108887548, 0.01921562548574335, 0.018942525174763327, 0.018673941789945497, 0.01840977983317486, 0.01814994656278317, 0.017894351887462977, 0.01764290826522409, 0.017395530607109678, 0.017152136185417593, 0.016912644546186063, 0.01667697742570227, 0.016445058670828225, 0.016216814162937094, 0.015992171745271, 0.01577106115353479, 0.015553413949569292, 0.015339163457925395, 0.015128244705214471, 0.014920594362069122, 0.014716150687597391, 0.014514853476199904, 0.014316644006629511, 0.014121464993185564, 0.013929260538935617, 0.01373997609086207, 0.01355355839684959, 0.013369955464407248, 0.013189116521063318, 0.013010991976332842, 0.012835533385197264, 0.012662693413015296, 0.012492425801805873, 0.012324685337835773, 0.012159427820446343, 0.011996610032074794, 0.011836189709404282, 0.011678125515594046, 0.011522377013548489, 0.011368904640167111, 0.011217669681541802, 0.011068634249052077, 0.010921761256326257, 0.010777014397022425, 0.010634358123402608, 0.010493757625657792, 0.01035517881196059, 0.010218588289203865, 0.010083953344408092, 0.009951241926760002, 0.009820422630261654, 0.009691464676963333, 0.009564337900756247, 0.0094390127317007, 0.009315460180871976, 0.009193651825698713, 0.009073559795777552, 0.00895515675914362, 0.008838415908977198, 0.008723310950734099, 0.00860981608967899, 0.00849790601880804, 0.00838755590714566, 0.008278741388400396, 0.008171438549967868, 0.008065623922267366, 0.007961274468396446, 0.00785836757409915, 0.007756881038025224, 0.007656793062283538, 0.007558082243262877, 0.00746072756272838, 0.007364708379166267, 0.007270004419381359, 0.007176595770331251, 0.00708446287119037, 0.006993586505638265, 0.006903947794359454, 0.006815528187753845, 0.006728309458844199, 0.006642273696378896, 0.00655740329812001, 0.006473680964312674, 0.006391089691327958, 0.006309612765475931, 0.006229233756979794, 0.006149936514109544, 0.00607170515746646, 0.005994524074416486, 0.005918377913666341, 0.0058432515799775805, 0.0057691302290150005, 0.0056959992623242, 0.005623844322435692, 0.005552651288089914, 0.005482406269580709, 0.005413095604212885, 0.005344705851871431, 0.00527722379069673, 0.005210636412865861, 0.00514493092047351, 0.005080094721511856, 0.005016115425945911, 0.004952980841879933, 0.004890678971815434, 0.004829198008995092, 0.004768526333830858, 0.0047086525104163175, 0.004649565283116461, 0.004591253573236457, 0.0045337064757650725, 0.004476913256192341, 0.004420863347397496, 0.0043655463466066614, 0.004310952012417411, 0.004257070261889359, 0.0042038911676990556, 0.004151404955354563, 0.004099602000473712], "CampbellBozorgnia2014": [1.2716111916529327, 1.2716111916529327, 1.2792215598959522, 1.256773403099212, 1.2081314035377482, 1.0791575210848003, 0.9478795439691128, 0.8437391065836738, 0.758602212689267, 0.6875071671406177, 0.6271989933318517, 0.5754165193153505, 0.5305175657862489, 0.4912679846156058, 0.4567154856049403, 0.42611000899929563, 0.3988510732733383, 0.37445155224258236, 0.35251191729528486, 0.3327014152363697, 0.3147440031477025, 0.29840764277796217, 0.28349602663547235, 0.2698421008771993, 0.25730293902985435, 0.24574039790229674, 0.23499726003071633, 0.22499530504585, 0.21567029571338187, 0.20696416159139364, 0.19882442698079966, 0.1912036729864952, 0.18405903887119193, 0.17735176466020433, 0.1710467748471799, 0.16511230171894256, 0.1595195460221762, 0.15424237226978954, 0.1492570358069603, 0.1445419387446685, 0.1400774119601737, 0.1358455205193869, 0.13182989006539514, 0.1280155519227014, 0.12438880487341282, 0.1209370917636895, 0.11764888928849375, 0.11451360948019317, 0.11152151158852454, 0.10866362318635941, 0.10593166946813222, 0.10331800982637214, 0.10081558089692458, 0.09841784535764299, 0.09611874584769457, 0.09391266344855347, 0.09179438023185772, 0.08975904543694113, 0.08780214489061323, 0.08591947332639002, 0.08410710929928282, 0.08236139242646205, 0.08067890271462248, 0.07905644176140816, 0.0774910156417225, 0.07597981931069704, 0.0745202223732584, 0.07310975608648766, 0.07174610147531532, 0.07042707845471564, 0.06915063586284498, 0.06791484231953746, 0.06671787783334607, 0.06556587065110774, 0.06445001049972814, 0.06336739387912589, 0.0623166334536728, 0.06129641520090902, 0.06030549378580385, 0.05934268826992447, 0.05840687812856818, 0.05749699955115387, 0.05661204200241044, 0.05575104502380763, 0.054774790433748936, 0.053641902547158914, 0.05254146751292219, 0.05147225107019537, 0.05043307788638058, 0.049422828187808895, 0.04844043461316993, 0.04748487927304238, 0.04655519100041289, 0.04565044277809803, 0.044769749330300736, 0.04391226486646028, 0.0430771809664992, 0.04226372459749578, 0.0414711562525118, 0.04069876820309749, 0.039945882857561864, 0.03921185121784061, 0.03849605142818767, 0.037797887409525104, 0.03711678757372384, 0.03645220361249633, 0.03580360935600763, 0.0351704996966244, 0.03455238957361284, 0.03394881301483615, 0.033359322231832016, 0.03278348676489366, 0.032220892675009695, 0.031671141779720906, 0.03113385093023705, 0.030608651327199393, 0.03009518787281558, 0.029593118557103486, 0.029102113876247025, 0.028621856281117346, 0.028152039654195354, 0.027692368813220954, 0.027242559040018877, 0.02680233563304385, 0.026371433482272888, 0.02594959666519611, 0.02553657806268432, 0.025132138993638257, 0.02473604886736248, 0.02434808485268451, 0.023968031562898555, 0.02359568075567357, 0.023230831047102288, 0.022873287639150336, 0.022522862059769354, 0.022179371915011233, 0.021842640652509814, 0.021512497335734727, 0.021188776428449775, 0.020871317588860776, 0.020559965472949644, 0.020254569546519045, 0.0199549839055153, 0.019661067104215148, 0.01937268199087108, 0.019089695550454488, 0.018811978754144303, 0.018539406415229383, 0.018271857051108318, 0.018009212751102566, 0.01775135904978288, 0.0174981848055734, 0.017249582084353843, 0.01700544604784396, 0.016765674846536925, 0.01653016951696995, 0.016298833883133242, 0.016071574461825916, 0.015848300371773563, 0.01562892324634726, 0.015413357149703162, 0.015201518496210615, 0.014993325973001162, 0.014788700465513909, 0.014587564985895236, 0.014389844604134975, 0.01419546638181612, 0.014004359308358775, 0.01381645423966375, 0.013631683839039763, 0.013449982520321126, 0.013271286393088456, 0.013095533209893453, 0.01292266231541166, 0.012752614597437524, 0.012585332439650267, 0.012420759676069136, 0.012258841547140185, 0.012099524657374867, 0.011942756934490685, 0.011788487589979177, 0.011636667081057235, 0.011487247073935539, 0.011340180408358472, 0.011195421063362673, 0.01105292412420629, 0.010912645750421527, 0.010774543144951248, 0.010638574524322026, 0.010504699089817821, 0.010372876999614205, 0.010243069341834457, 0.010115238108497172, 0.009989346170317773, 0.009865357252333232, 0.009743235910318612, 0.009622947507966162, 0.009504458194799484, 0.009387734884795133, 0.009272745235683114, 0.009159457628908817, 0.009047841150219931, 0.008937865570872167, 0.008829501329412254, 0.008722719514038432, 0.008617491845498083, 0.0085137906605179, 0.008411588895740342, 0.008310860072150478, 0.008211578279977282, 0.008113718164049651, 0.008017254909596134, 0.007922164228467648, 0.007828422345773377, 0.007736005986912029, 0.007644892364987955, 0.007555059168596128, 0.007466484549967389, 0.007379147113457149, 0.007293025904370565, 0.007208100398108994, 0.007124350489630134, 0.007041756483210393, 0.006960299082499033, 0.0068799593808553244, 0.006800718851958269, 0.0067225593406826855, 0.006645463054229275, 0.006569412553503959, 0.006494390744736113, 0.006420380871330263, 0.006347366505940602, 0.006275331542765591, 0.006204260190051204, 0.00613413696279986, 0.006064946675677111, 0.00599667443610866, 0.00592930563756511, 0.005862825953025523, 0.005797221328614827, 0.005732477977412862, 0.005668582373424513, 0.005605521245710735, 0.005543281572672641, 0.00548185057648641, 0.005421215717682173, 0.005361364689864204, 0.0053022854145669904, 0.005243966036244552, 0.00518639491738879, 0.005129560633770311, 0.005073451969803777], "KothaEtAl2016Italy": [0.704957626104066, 0.704957626104066, 0.704957626104066, 0.704957626104066, 0.704957626104066, 0.7012159857587097, 0.68199021147495, 0.6500636007812713, 0.6106336814588932, 0.5683587553104898, 0.526493022606282, 0.4869045927654988, 0.4504533513399294, 0.417381267516055, 0.3875968953814374, 0.3608520992633971, 0.33684162536786344, 0.3152549439173127, 0.29580083894063164, 0.2782172720474231, 0.2622736866797395, 0.24776968578413894, 0.23453217126989165, 0.2224120150322936, 0.2112807815323177, 0.2010277314356551, 0.1915571864314548, 0.18278626174609963, 0.17464293935053274, 0.16706444209642743, 0.1599958666171901, 0.15338903527182446, 0.14720153181346354, 0.1413958903726761, 0.13593891206276884, 0.13080108774518523, 0.12595610914624733, 0.12138045360274134, 0.11705303028432591, 0.11295487786536758, 0.10906890536562348, 0.10537966931217357, 0.10187318154893611, 0.09853674298241542, 0.09535879934160342, 0.09232881567844978, 0.08943716686869253, 0.08667504181350028, 0.0840343594061278, 0.08150769462957505, 0.07908821340213121, 0.07676961499673844, 0.07454608103460343, 0.07241223020022453, 0.07036307794751798, 0.06839400057094214, 0.06650070310243217, 0.06467919056972198, 0.06292574221407303, 0.061236888319424705, 0.05960938935056664, 0.05804021713705322, 0.05652653787326777, 0.05506569673388265, 0.05365520392870236, 0.05229272204254685, 0.050976054524296946, 0.0497031352053328, 0.04847201874170753, 0.047280871886442845, 0.046127965509144796, 0.04501166728931026, 0.04393043501790108, 0.04288281044890865, 0.041867413648939415, 0.040882937798305194, 0.03992814440210921, 0.03900185887402458, 0.03810296645933763, 0.037230408467172516, 0.03638317878489851, 0.035560320650276186, 0.03476092365935914, 0.03398412099028575, 0.033229086824957094, 0.032495033952276986, 0.03178121153824476, 0.031086903049394942, 0.030411424317454753, 0.02975412173408184, 0.0291143705655738, 0.028491573378320995, 0.02788515856660346, 0.02729457897499489, 0.026719310608371256, 0.026158851423048832, 0.025612720193151615, 0.025080455446787976, 0.024561614467048007, 0.024055772353256538, 0.023562521138248596, 0.02308146895781836, 0.022612239268750098, 0.022154470112134013, 0.02170781341894003, 0.021271934355023146, 0.02084651070297043, 0.020431232278383664, 0.02002580037837818, 0.01962992726022104, 0.019243335648207294, 0.018865758266998357, 0.018496937399773438, 0.01813662446965085, 0.01778457964298662, 0.01744057145317802, 0.017104376443787976, 0.01677577882979826, 0.016454570175953167, 0.01614054909116921, 0.01583352093808995, 0.01553329755691377, 0.015239697002675622, 0.014952543295224292, 0.014671666181178624, 0.014396900907204711, 0.014128088003973914, 0.01386507308023116, 0.013607706626415335, 0.013355843827319127, 0.013109344383306517, 0.012868072339628694, 0.012631895923417078, 0.012400687387949917, 0.01217432286381725, 0.011952682216622495, 0.011735648910895746, 0.011523109879899521, 0.011314955401026646, 0.011111078976519044, 0.010911377219237612, 0.01071574974323672, 0.010524099058903308, 0.010336330472452868, 0.01015235198955348, 0.00997207422289594, 0.009795410303513224, 0.009622275795679716, 0.00945258861521224, 0.009286268951028598, 0.00912323918979539, 0.00896342384354484, 0.008806749480103371, 0.008653144656219374, 0.008502539853264844, 0.008354867415391825, 0.008210061490041408, 0.008068057970695777, 0.007928794441776039, 0.007792210125599761, 0.007658245831292165, 0.0075268439055894394, 0.007397948185432383, 0.007271503952289882, 0.0071474578881271025, 0.007025758032960273, 0.006906353743925322, 0.0067891956557958825, 0.006674235642899681, 0.006561426782367666, 0.006450723318662314, 0.006342080629342762, 0.006235455192001499, 0.006130804552341655, 0.006028087293336441, 0.005927263005438392, 0.00582829225778947, 0.005731136570397005, 0.0056357583872367716, 0.005542121050249177, 0.005450188774189559, 0.00535992662230627, 0.005271300482810577, 0.005184277046109467, 0.005098823782773741, 0.00501490892221388, 0.0049325014320357585, 0.004851570998052914, 0.004772088004929857, 0.004694023517435012, 0.0046173492622795485, 0.0045420376105210405, 0.004468061560512984, 0.0043953947213792935, 0.0043240112969955965, 0.004253886070459499, 0.004184994389032037, 0.004117312149534204, 0.004050815784184187, 0.003985482246855136, 0.0039212889997464985, 0.003858214000446473, 0.0037962356893801977, 0.0037353329776218616, 0.003675485235069038, 0.0036166722789551155, 0.003558874362699328, 0.0035020721650757423, 0.003446246779693298, 0.0033913797047786017, 0.003337452833245885, 0.003284448443052242, 0.003232349187821644, 0.0031811380877342418, 0.0031307985206695177, 0.003081314213596136, 0.003032669234200514, 0.0029848479827467977, 0.0029378351841602736, 0.002891615880327431, 0.0028461754226059843, 0.0028014994645381834, 0.002757573954761497, 0.002714385130109694, 0.0026719195088988562, 0.0026301638843936152, 0.0025891053184456474, 0.002548731135302479, 0.0025090289155782377, 0.0024699864903834816, 0.0024315919356092705, 0.0023938335663590527, 0.002356699931526536, 0.00232017980851309, 0.0022842621980816652, 0.002248936319342861, 0.0022141916048693568, 0.0021800176959346847, 0.002146404437873469, 0.0021133418755583605, 0.0020808202489917983, 0.0020488299890079895, 0.0020173617130826334, 0.0019864062212471296, 0.0019559544921047525, 0.0019259976789448865, 0.001896527105953558, 0.0018675342645169976, 0.0018390108096156994, 0.0018109485563075067, 0.0017833394762942737, 0.0017561756945742356], "KothaEtAl2016Other": [0.7780522727086684, 0.7780522727086684, 0.7780522727086684, 0.7780522727086684, 0.7780522727086684, 0.7741271726843536, 0.7539597210459014, 0.7204730135989029, 0.6791225066297123, 0.6347954905279679, 0.5909037509886149, 0.5494036386557349, 0.5111936370729764, 0.47652449561103877, 0.44529792899874054, 0.41725200196126366, 0.39206547010411225, 0.3694120264434261, 0.3489859712264832, 0.33051245724024014, 0.31374982900547876, 0.29848817809114786, 0.284546300912374, 0.2717681772471643, 0.26001951172457655, 0.24918457656763268, 0.23916343780744959, 0.22986957046986475, 0.2212278334488002, 0.2131727616646852, 0.20564713078661262, 0.1986007525002327, 0.19198946302426742, 0.1857742727996851, 0.1799206502754686, 0.17439791718997572, 0.16917873660534738, 0.16423867820871485, 0.15955584810379433, 0.15511057255475888, 0.1508851269834932, 0.14686350302935608, 0.14303120771542033, 0.13937508977700344, 0.1358831890378794, 0.13254460540094049, 0.1293493845802994, 0.126288418164547, 0.12335335598270397, 0.12053652906110757, 0.11783088172269827, 0.11522991159943641, 0.11272761651153754, 0.11031844732106992, 0.1079972659958242, 0.10575930822860918, 0.10360015004812242, 0.1015156779358974, 0.09950206202916552, 0.09755573204602787, 0.09567335561702803, 0.09385181874814438, 0.0920882081754764, 0.09037979540205675, 0.08872402223307947, 0.08711848764851034, 0.08556093587133315, 0.08404924550651634, 0.08258141964054234, 0.08115557680390281, 0.07976994271027618, 0.07842284269566335, 0.07711269478933197, 0.07583800335587645, 0.07459735325428751, 0.07338940446559979, 0.07221288714592987, 0.07106659706608541, 0.06994939140297511, 0.0688601848515291, 0.06779794602906962, 0.06676169414671096, 0.06575049592494726, 0.06476346273279149, 0.0637997479317616, 0.06285854440775551, 0.061939082275558145, 0.061040626741942196, 0.06016247611479175, 0.05930395994668566, 0.05846443730245654, 0.05764329514115457, 0.05683994680371479, 0.05605383059829709, 0.05528440847605368, 0.054531164790608856, 0.053793605135141594, 0.05307125525146084, 0.052363660005906046, 0.05167038242735169, 0.05099100280292895, 0.050325117827491855, 0.049672339803107625, 0.04903229588516151, 0.04840462737195211, 0.04778898903485129, 0.047185048486354984, 0.04659248558353898, 0.04601099186463089, 0.04544027001654785, 0.044880033371442335, 0.044330005430422925, 0.043789919412748575, 0.043259517828900126, 0.04273855207610574, 0.04222678205488662, 0.041723975805423204, 0.041229909162495526, 0.04074436542794313, 0.04026713505957838, 0.03979801537561084, 0.03933681027368461, 0.038883329963684043, 0.03843739071352937, 0.037998814607223125, 0.03756742931447518, 0.03714306787124172, 0.03672556847059836, 0.036314774263370014, 0.03591053316799236, 0.035512697689110764, 0.035121124744442477, 0.03473567549947337, 0.03435621520957282, 0.03398261306914423, 0.03361474206743515, 0.03325247885068015, 0.03289570359024656, 0.03254429985647231, 0.03219815449792416, 0.03185715752579574, 0.03152120200319443, 0.031190183939068004, 0.030864002186568356, 0.030542558345604393, 0.030225756669409586, 0.02991350397491618, 0.02960570955676794, 0.029302285104782277, 0.02900314462472489, 0.028708204362210988, 0.028417382729628286, 0.028130600235902685, 0.027847779419004366, 0.027568844781063456, 0.027293722725969624, 0.02702234149935831, 0.026754631130865843, 0.026490523378556133, 0.026229951675437305, 0.02597285107794534, 0.025719158216352327, 0.025468811246976458, 0.02522174980614688, 0.024977914965825188, 0.024737249190834636, 0.0244996962976173, 0.024265201414451376, 0.024033710943085478, 0.02380517252171522, 0.0235795349892479, 0.023356748350822056, 0.02313676374449983, 0.022919533409116736, 0.022705010653216198, 0.022493149825047052, 0.02228390628356564, 0.02207723637041221, 0.02187309738282039, 0.021671447547427444, 0.021472245994940763, 0.021275452735640795, 0.021081028635678796, 0.02088893539414156, 0.020699135520856008, 0.02051159231490615, 0.020326269843831818, 0.020143132923488186, 0.01996214709853837, 0.019783278623559684, 0.019606494444737332, 0.01943176218212485, 0.01925905011245341, 0.01908832715246756, 0.01891956284276948, 0.018752727332154117, 0.018587791362416235, 0.018424726253614097, 0.018263503889777072, 0.01810409670503001, 0.017946477670138437, 0.017790620279439513, 0.01763649853816566, 0.017484086950125523, 0.017333360505756675, 0.017184294670507853, 0.017036865373566544, 0.016891048996901966, 0.016746822364619773, 0.016604162732622836, 0.01646304777855414, 0.0163234555920313, 0.016185364665144968, 0.016048753883225915, 0.01591360251586456, 0.01577989020817761, 0.01564759697231347, 0.01551670317918967, 0.015387189550453416, 0.015259037150658386, 0.015132227379651997, 0.015006741965165554, 0.01488256295560268, 0.014759672713017122, 0.014638053906275443, 0.014517689504401436, 0.014398562770089978, 0.014280657253394507, 0.014163956785573539, 0.014048445473097394, 0.013934107691810135, 0.013820928081236925, 0.013708891539039677, 0.013597983215610687, 0.013488188508803449, 0.013379493058795376, 0.013271882743078936, 0.013165343671576782, 0.01305986218187934, 0.012955424834597492, 0.012852018408831836, 0.012749629897750974, 0.01264824650427785, 0.012547855636880543, 0.012448444905465981, 0.01235000211737029, 0.012252515273446627, 0.012155972564245368, 0.012060362366284903, 0.011965673238413702, 0.011871893918251157, 0.011779013318720088], "KothaEtAl2016Turkey": [0.641938929939969, 0.641938929939969, 0.641938929939969, 0.641938929939969, 0.641938929939969, 0.6386342355466673, 0.6216539596593255, 0.5934573974095321, 0.5586358549170787, 0.5213033185288131, 0.4843326829951626, 0.4493722051911591, 0.4171797296677914, 0.3879676699852717, 0.36165435074455976, 0.3380200591739773, 0.31679491706235846, 0.2977045947615547, 0.2804919664289234, 0.2649257730508187, 0.2508026216093119, 0.23794579153869977, 0.2262026904308818, 0.2154419017209125, 0.205550281982591, 0.1964303093247872, 0.1879977527782893, 0.1801796678060587, 0.1729126936506948, 0.16614161709150582, 0.15981816515745562, 0.15389999156457065, 0.14834982558183485, 0.14313475639688109, 0.13822563024153828, 0.13359654128981494, 0.12922440057837864, 0.125088569933058, 0.1211705501604546, 0.11745371464388663, 0.11392308102817222, 0.1105651149450469, 0.10736756076892842, 0.10431929524336182, 0.10141020051598237, 0.09863105369281681, 0.09597343049390542, 0.09342962098143946, 0.09099255565281424, 0.08865574045744821, 0.08641319951770148, 0.08425942451874215, 0.08218932988618753, 0.08019821299984096, 0.07828171879990616, 0.07643580823401747, 0.07465673007004775, 0.07294099566561571, 0.07128535634024423, 0.06968678304374266, 0.06814244805456053, 0.06664970847633375, 0.06520609133053983, 0.06380928006858634, 0.062457102348444385, 0.061147518940041445, 0.05987861363988281, 0.05864858408955519, 0.05745573340520082, 0.056298462535641594, 0.05517526327636394, 0.05408471187463812, 0.0530254631682714, 0.05199624520678386, 0.050995854309345945, 0.050023150518607416, 0.04907705341396307, 0.04815653825149046, 0.047260632401206835, 0.046388412055229235, 0.04553899918314452, 0.044711558713126216, 0.043905295919508563, 0.04311945399938874, 0.04235331182246025, 0.04160618183975436, 0.04087740813839765, 0.04016636463053043, 0.03947245336576114, 0.038795102957387355, 0.038133767113524286, 0.03748792326505244, 0.03685707128302739, 0.036240732278767965, 0.03563844748049374, 0.03504977718083735, 0.034474299750065523, 0.03391161071026421, 0.0333613218661189, 0.03282306048829651, 0.032296468545720124, 0.031781201983373523, 0.03127693004249047, 0.03078333462024381, 0.03030010966628991, 0.02982696061369416, 0.029363603841974183, 0.028909766170157045, 0.028465184377912307, 0.02802960475294257, 0.02760278266297278, 0.027184482150786442, 0.026774475550868315, 0.026372543126303015, 0.025978472724720873, 0.025592059452082063, 0.025213105363276932, 0.02484141916849201, 0.024476815954444044, 0.02411911691958185, 0.02376814912245605, 0.023423745242495502, 0.023085743352475596, 0.02275398670201767, 0.022428323511493983, 0.022108606775767134, 0.02179469407720213, 0.021486447407458063, 0.021183732997570377, 0.02088642115587857, 0.0205943861133795, 0.02030750587610552, 0.020025662084162055, 0.019748739877072752, 0.019476627765106173, 0.019209217506267414, 0.01894640398867456, 0.018688085118041375, 0.018434161710003255, 0.018184537387053803, 0.017939118479855257, 0.017697813932709354, 0.017460535212978173, 0.017227196224279477, 0.016997713223250954, 0.016772004739731033, 0.016549991500181657, 0.016331596354209218, 0.0161167442040245, 0.015905361936722342, 0.015697378359227868, 0.015492724135813617, 0.015291331728042281, 0.01509313533704333, 0.014898070848013678, 0.014706075776836918, 0.014517089218735763, 0.01433105179886023, 0.014147905624727581, 0.013967594240442974, 0.013790062582601102, 0.01361525693782601, 0.01344312490185101, 0.013273615340093841, 0.013106678349647502, 0.01294226522264161, 0.012780328410908377, 0.012620821491896268, 0.012463699135791711, 0.012308917073787824, 0.012156432067454282, 0.012006201879176228, 0.011858185243598225, 0.011712341840054307, 0.011568632265926998, 0.01142701801091292, 0.011287461432148196, 0.011149925730166217, 0.011014374925653114, 0.010880773836972809, 0.010749088058425475, 0.010619283939219907, 0.010491328563126475, 0.010365189728786101, 0.010240835930652134, 0.010118236340541306, 0.009997360789768749, 0.009878179751848102, 0.009760664325733755, 0.009644786219588017, 0.009530517735051527, 0.009417831751999024, 0.009306701713764834, 0.009197101612819421, 0.009089005976881503, 0.008982389855450506, 0.008877228806743773, 0.008773498885024832, 0.00867117662831134, 0.00857023904644223, 0.008470663609502991, 0.008372428236584208, 0.008275511284874349, 0.008179891539061821, 0.00808554820105241, 0.007992460879972857, 0.007900609582467966, 0.007809974703269812, 0.007720537016034256, 0.007632277664439088, 0.007545178153526276, 0.007459220341292192, 0.007374386430506432, 0.007290658960759906, 0.007208020800730489, 0.007126455140660657, 0.007045945485040285, 0.006966475645488487, 0.006888029733827315, 0.00681059215534144, 0.006734147602218478, 0.006658681047163875, 0.006584177737185825, 0.006510623187543428, 0.006438003175853735, 0.006366303736354546, 0.006295511154313937, 0.006225611960587812, 0.0061565929263154165, 0.0060884410577521884, 0.006021143591235748, 0.005954687988277951, 0.005889061930783624, 0.005824253316388708, 0.005760250253916131, 0.005697041058945371, 0.005634614249492579, 0.005572958541797532, 0.005512062846215687, 0.005451916263210034, 0.005392508079442622, 0.005333827763960471, 0.005275864964474574, 0.0052186095037287765, 0.005162051375957113, 0.005106180743424957, 0.005050987933053736, 0.004996463433125619, 0.004942597890066271, 0.004889382105305349, 0.004836807032207126, 0.004784863773077566], "ZhaoEtAl2016Asc": [1.6557777212521825, 1.6557777212521825, 1.4784879100560187, 1.328336386386026, 1.2000274409214513, 1.089500664370713, 0.9935999577432082, 0.909841712243025, 0.8362495661781699, 0.7712347289458042, 0.7135080428254814, 0.6620145055918485, 0.615883922146557, 0.5743932944991365, 0.5369378607867417, 0.5030085802394247, 0.4721744733051679, 0.4440686549297972, 0.4183772030113893, 0.3948302221316077, 0.3731946208152008, 0.35326823642241484, 0.3348750274622098, 0.3178611170532172, 0.30209151937998957, 0.2874154755467727, 0.2736220571757589, 0.26064939564927453, 0.2484501519950758, 0.23697745938584122, 0.22618570015287337, 0.2160310209122031, 0.20647165379195676, 0.20104564937030678, 0.1959681339806099, 0.19108573965556847, 0.18638927637816627, 0.18186989893086775, 0.17751912998810893, 0.17332887187602994, 0.16929140986784869, 0.16539940923781535, 0.16164590779089757, 0.15802430519093186, 0.15452835010114338, 0.15115212591159793, 0.14789003564023814, 0.14473678644939053, 0.14168737410662982, 0.13873706763139387, 0.13588139430126345, 0.13311612514001125, 0.13043726096923633, 0.1278410190755349, 0.12532382052149355, 0.12288227811209557, 0.1205131850146733, 0.1182135040217462, 0.11598035743883578, 0.11381101757505323, 0.11170289781111777, 0.10965354421739791, 0.10766062769393736, 0.10572193660396746, 0.10383536987259766, 0.10199893052321089, 0.10021071962475817, 0.09846893062427961, 0.09677184404015218, 0.09511782249274855, 0.09350530605047463, 0.09193280787045495, 0.09039891011427223, 0.08890226012047461, 0.08744156681669474, 0.08601559735530534, 0.0846231739576723, 0.08326317095300464, 0.081934511998785, 0.08063616747061536, 0.07936715201025515, 0.07812652222125105, 0.07691337450242652, 0.07572684301012411, 0.07456609774073623, 0.07343034272561232, 0.07231881433111971, 0.07123077965689553, 0.07016553502610955, 0.06912240456172417, 0.06810073884333914, 0.06709991363943815, 0.06611932871038477, 0.06515840667762475, 0.06421659195505061, 0.06329334973865151, 0.06238816505084723, 0.06150054183620461, 0.0606300021053797, 0.05977608512440885, 0.058938346646572284, 0.05811635818438295, 0.05730970631925176, 0.05651799204664656, 0.05574083015467535, 0.05497784863414154, 0.054228688118279876, 0.053493001350444436, 0.05277045267819893, 0.052060717572281645, 0.051363482169070274, 0.05067844283524218, 0.050005305753394465, 0.049343786527448925, 0.048693609806832246, 0.04805450892831252, 0.047426225574642066, 0.04680850944902491, 0.046201117964631104, 0.045603815948319346, 0.04501637535784574, 0.04443857501184729, 0.04387020033194474, 0.04331104309634036, 0.042760901204309205, 0.04221957845106195, 0.04168688431242083, 0.041162633738842554, 0.04064664695831227, 0.040138749287671235, 0.03963877095196292, 0.039146546911412866, 0.03866191669565319, 0.03818472424487182, 0.03771481775752708, 0.037252049544328265, 0.036796275888185445, 0.03634735690984615, 0.03590515643894598, 0.03546954189023622, 0.035040384144742996, 0.03461755743562181, 0.034200939238504396, 0.03379041016613991, 0.03338585386711736, 0.03298715692850256, 0.0325942087822119, 0.03220690161495537, 0.03182513028158811, 0.03144879222173658, 0.031077787379527794, 0.030712018126327987, 0.030351389186321225, 0.02999580756483308, 0.02964518247927329, 0.029299425292584953, 0.02895844944910008, 0.028622170412698943, 0.028290505607171237, 0.027963374358706005, 0.027640697840393635, 0.027322399018693315, 0.02700840260175371, 0.02669863498953446, 0.026393024225640865, 0.02609149995081582, 0.02579399335801792, 0.025500437149014118, 0.02521076549244735, 0.024924913983302783, 0.024642819603724244, 0.024364420685137233, 0.02408965687161313, 0.02381846908444004, 0.023550799487844918, 0.02328659145583345, 0.023025789540090633, 0.022768339438921995, 0.022514187967175584, 0.02226328302712948, 0.022015573580286982, 0.021771009620067998, 0.021529542145346026, 0.021291123134811348, 0.021055705522125972, 0.020823243171842865, 0.020593690856058944, 0.020367004231783167, 0.02014313981898556, 0.01992205497931038, 0.019703707895426133, 0.019488057550988303, 0.019275063711200816, 0.019064686903948493, 0.018856888401484095, 0.018651630202649476, 0.01844887501561328, 0.018248586241108974, 0.01805072795615529, 0.017855264898238833, 0.017662162449955433, 0.017471386624074485, 0.01728290404903985, 0.01709668195485967, 0.016912688159409484, 0.016730891055099718, 0.016551259595921353, 0.016373763284845057, 0.016198372161564632, 0.016025056790577096, 0.015853788249582015, 0.01568453811819916, 0.015517278466984375, 0.015351981846742633, 0.015188621278122904, 0.015027170241490742, 0.01486760266706508, 0.01470989292531777, 0.014554015817619545, 0.014399946567132655, 0.014247660809935761, 0.014097134586379418, 0.01394834433266323, 0.01380126687262693, 0.013655879409750429, 0.013512159519354885, 0.013370085141002587, 0.013229634571083903, 0.013090786455591422, 0.012953519783072028, 0.012817813877754844, 0.012683648392844988, 0.012551003303985642, 0.012419858902875463, 0.012290195791043306, 0.012161994873773478, 0.012035237354174154, 0.011909904727391825, 0.011785978774960919, 0.011663441559286742, 0.011542275418262984, 0.01142246296001072, 0.011303987057743874, 0.011186830844752287, 0.011070977709503623, 0.01095641129085649, 0.010843115473384589, 0.01073107438280687, 0.010620272381523329, 0.010510694064252863, 0.01040232425376574, 0.010295147996718136], "BindiEtAl2017Rjb": [1.0784264373442787, 1.0784264373442787, 1.0784264373442787, 1.0784264373442787, 1.0784264373442787, 1.0679135019931794, 1.0170290259067876, 0.942024678308286, 0.861464971909574, 0.7855888863185174, 0.7180570749433994, 0.6592622545096115, 0.6083678031380136, 0.5642309864515511, 0.5257536622458316, 0.4919887727937238, 0.4621534882654719, 0.43561124080083474, 0.411846634607769, 0.3904416899879144, 0.37105583596407243, 0.3534098494937827, 0.3372732278792134, 0.3224543385010766, 0.3087927440150568, 0.29615320751792057, 0.28442098853567777, 0.27349813084209096, 0.26330051457776166, 0.25375550002407254, 0.2448000319102664, 0.2363791043492224, 0.22844450993607646, 0.22095381417031454, 0.2138695096631169, 0.20715831467493726, 0.2007905882107872, 0.19473983978847845, 0.1889823165314175, 0.18349665375463076, 0.17826357795441758, 0.17326565326212162, 0.16848706411751393, 0.1639134282614343, 0.15953163521852878, 0.1553297062992186, 0.15129667284053017, 0.14742246996494507, 0.1436978435903416, 0.1401142687949896, 0.13666387794573223, 0.13333939724785962, 0.13013409058183611, 0.12704170966427203, 0.12405644971286196, 0.121172909915404, 0.11838605810238975, 0.1156911991079365, 0.1130839463743297, 0.11056019641635785, 0.10811610581265119, 0.10574807043486964, 0.10345270666308641, 0.10122683436765235, 0.099067461465105, 0.09697176987964091, 0.09493710276191267, 0.09296095283457237, 0.09104095174947963, 0.08917486035458332, 0.08736055978036181, 0.08559604326564327, 0.0838794086515884, 0.08220885148038642, 0.08058265864208616, 0.07899920251886373, 0.07745693558152719, 0.07595438539757199, 0.07449015001433089, 0.07306289368437312, 0.07167134290369541, 0.07031428273595687, 0.06899055339872497, 0.06769904708999396, 0.06643870503524364, 0.06520851473711993, 0.06400750741162978, 0.06283475559596226, 0.061689370914632974, 0.06057050199166937, 0.05947733249769566, 0.058409079321732775, 0.057364990858446145, 0.05634434540225953, 0.0553464496406037, 0.05437063723910453, 0.05341626751216561, 0.052482724172923635, 0.0515694141570178, 0.05067576651509539, 0.049801231369313956, 0.048945278929558377, 0.0481073985653441, 0.047287097929709566, 0.04648390213171392, 0.04569735295435335, 0.04492700811498912, 0.04417244056557453, 0.04343323783018333, 0.042709001377482354, 0.041999346026007196, 0.0413038993802274, 0.040622301295530676, 0.039954203370365086, 0.03929926846397753, 0.03865717023815124, 0.03802759272162861, 0.03741022989582532, 0.03680478530067373, 0.03621097165940326, 0.03562851052121073, 0.035057131920817906, 0.03449657405397153, 0.033946582968013436, 0.03340691226669245, 0.03287732282846294, 0.03235758253752, 0.03184746602691969, 0.031346754433130924, 0.030855235161424552, 0.03037270166154091, 0.02989895321309613, 0.02943379472024014, 0.028977036515092654, 0.028528494169519317, 0.028087988314819554, 0.027655344468950984, 0.027230392870912484, 0.026812968321928362, 0.02640291003312202, 0.02600006147935392, 0.025604270258936267, 0.025215387958933935, 0.024833270025818654, 0.024457775641187958, 0.024088767602345906, 0.023726112207503456, 0.023369679145402705, 0.023019341389143452, 0.022674975094051968, 0.022336459499374843, 0.022003676833673096, 0.021676512223707596, 0.02135485360669442, 0.021038591645775293, 0.02072761964855628, 0.020421833488596712, 0.020121131529711678, 0.019825414552970506, 0.019534585686293744, 0.019248550336504997, 0.018967216123782184, 0.01869049281836633, 0.01841829227946766, 0.018150528396253737, 0.017887117030859597, 0.017627975963323276, 0.017373024838367262, 0.017122185113970796, 0.01687538001164432, 0.01663253446834115, 0.016393575089962854, 0.01615843010636274, 0.01592702932782476, 0.01569930410293261, 0.015475187277799042, 0.01525461315658696, 0.015037517463283169, 0.014823837304674894, 0.01461351113448892, 0.014406478718639404, 0.014202681101558479, 0.014002060573559225, 0.013804560639196647, 0.01361012598659221, 0.013418702457687934, 0.013230237019392892, 0.013044677735594746, 0.01286197374000267, 0.012682075209796338, 0.012504933340049276, 0.012330500318899991, 0.012158729303448398, 0.011989574396349297, 0.0118229906230807, 0.01165893390986395, 0.011497361062212967, 0.011338229744091802, 0.011181498457664318, 0.011027126523604595, 0.010875074061967296, 0.010725301973580374, 0.010577771921961854, 0.010432446315722923, 0.010289288291467146, 0.010148261697141165, 0.010009331075848475, 0.009872461650093813, 0.009737619306451038, 0.009604770580645738, 0.00947388264302632, 0.009344923284429119, 0.009217860902408481, 0.009092664487832582, 0.008969303611827184, 0.008847748413059006, 0.00872796958534812, 0.00860993836560006, 0.008493626522046643, 0.008379006342786714, 0.008266050624618066, 0.008154732662151928, 0.008045026237202362, 0.00793690560844051, 0.0078303455013069, 0.0077253210981767335, 0.007621808028764637, 0.00751978236077035, 0.007419220590750082, 0.0073200996352126135, 0.00722239682193311, 0.007126089881474298, 0.007031156938915475, 0.006937576505778127, 0.006845327472145521, 0.006754389098970003, 0.006664741010562981, 0.006576363187261755, 0.006489235958270446, 0.006403339994666857, 0.006318656302574635, 0.0062351662164929, 0.006152851392780856, 0.0060716938032926125, 0.005991675729159522, 0.005912779754713285, 0.005834988761548767, 0.005758285922721316, 0.005682654697075277, 0.005608078823702867, 0.0055345423165223525, 0.005462029458983985]}, "ylabel": "Mean SA(0.2) (g)"}, {"column": 0, "row": 1, "yvalues": {"AkkarBommer2010": [0.10198652810795937, 0.10198652810795937, 0.10198652810795937, 0.10198652810795937, 0.10198652810795937, 0.10157065864393276, 0.09940512584809057, 0.09570367879873597, 0.09095380337906982, 0.08564903461484219, 0.08019043686738013, 0.07485477114421918, 0.0698066980547049, 0.06512761763084354, 0.060844367159069206, 0.056951421822099765, 0.053425976435000425, 0.050237370991817756, 0.04735260814866315, 0.04473937544698011, 0.04236755618726685, 0.040209863102689265, 0.038241984767059437, 0.03644247671623111, 0.03479253148139718, 0.033275702880532235, 0.03187762521887423, 0.030585747972129092, 0.029389095147175293, 0.028278052245362714, 0.027244180447931754, 0.026280056031767977, 0.025379132361382842, 0.024535621655550302, 0.023744393844331173, 0.023000890072389497, 0.022301048688714162, 0.02164124184937157, 0.021018221127534233, 0.020429070764971934, 0.019871167408797633, 0.019342145357491684, 0.01883986649351228, 0.018362394209343876, 0.017907970742795327, 0.017474997428791036, 0.017062017451453554, 0.01666770074448886, 0.0162908307415893, 0.015930292723626505, 0.015585063547231198, 0.015254202571140038, 0.014936843623418326, 0.014632187875281973, 0.014339497506239274, 0.014058090061498758, 0.013787333416194102, 0.013526641272706849, 0.013275469127211198, 0.013033310650088245, 0.012799694432076987, 0.012574181054236517, 0.012356360445146224, 0.01214584949336113, 0.011942289887083875, 0.011745346156468847, 0.01155470389692308, 0.011370068154341937, 0.011191161955470865, 0.011017724968512057, 0.010849512280820497, 0.010686293282002534, 0.010527850642040206, 0.010373979375207447, 0.010224485981551045, 0.010079187658581465, 0.009937911576615947, 0.009800494211888824, 0.009666780732161095, 0.009536624430093992, 0.009409886200142395, 0.009286434055130416, 0.009166142679062688, 0.009048893013060355, 0.00893457187160676, 0.00882307158655414, 0.00871428967659725, 0.008608128540111322, 0.008504495169468537, 0.00840330088510365, 0.008304461087761991, 0.008207895027501163, 0.008113525588148375, 0.008021279086019276, 0.0079310850818193, 0.007842876204731355, 0.007756587987783301, 0.007672158713664003, 0.007589529270223856, 0.007508643014961905, 0.007429445647852956, 0.007351885091928303, 0.0072759113810631874, 0.00720147655447015, 0.007128534557438798, 0.007057041147894098, 0.0069869538083811725, 0.006918231663113508, 0.00685083539974991, 0.006784727195587323, 0.006719870647884018, 0.006656230708046516, 0.0065937736194332, 0.006532466858543541, 0.006472279079385528, 0.006413180060815646, 0.006355140656676281, 0.006298132748552127, 0.00624212920099261, 0.006187103819047534, 0.006133031307980216, 0.00607988723502919, 0.006027647993097441, 0.005976290766257696, 0.00592579349696822, 0.0058761348549026, 0.005827294207299553, 0.005779251590749372, 0.005731987684335227, 0.0056854837840547515, 0.005639721778451442, 0.005594684125389228, 0.005550353829908867, 0.00550671442310777, 0.005463749941988853, 0.0054214449102259156, 0.005379784319798912, 0.005338753613452946, 0.005298338667937563, 0.005258525777987709, 0.005219301641007357, 0.0051806533424205966, 0.0051425683416554315, 0.005105034458731566, 0.005068039861418253, 0.0050315730529372745, 0.004995622860182493, 0.0049601784224322975, 0.0049252291805291035, 0.004890764866506233, 0.004856775493637423, 0.004823251346893178, 0.004790182973780487, 0.004757561175550935, 0.004725376998759338, 0.004693621727155976, 0.004662286873898418, 0.004631364174067307, 0.004600845577472496, 0.004570723241738106, 0.004540989525650409, 0.004511636982761697, 0.004482658355234318, 0.004454046567917791, 0.004425794722646035, 0.0043978960927477835, 0.0043703441177593595, 0.004343132398330895, 0.004316254691319625, 0.004289704905060527, 0.004263477094806898, 0.004237565458336116, 0.004211964331709874, 0.0041866681851864635, 0.004161671619275566, 0.004136969360932415, 0.004112556259883584, 0.004088427285080354, 0.004064577521273975, 0.004041002165708603, 0.004017696524925998, 0.003994656011679103, 0.00397187614194916, 0.003949352532062608, 0.00392708089590398, 0.00390505704222131, 0.0038832768720199104, 0.0038617363760416992, 0.003840431632326442, 0.0038193588038522327, 0.003798514136251912, 0.0037778939556024523, 0.0037574946662851565, 0.003737312748913508, 0.0037173447583264876, 0.0036975873216448466, 0.003678037136388, 0.003658690968649419, 0.003639545651328812, 0.003620598082417747, 0.00360184522333889, 0.0035832840973346386, 0.003564911787905705, 0.0035467254372953407, 0.0035287222450207816, 0.003510899466446659, 0.003493254411402278, 0.0034757844428388723, 0.0034584869755264424, 0.0034413594747893304, 0.003424399455277517, 0.0034076044797747597, 0.0033909721580400736, 0.0033745001456831143, 0.00335818614307142, 0.003342027894268691, 0.0033260231860032055, 0.00331016984666535, 0.0032944657453331636, 0.0032789087908250657, 0.0032634969307789126, 0.0032482281507565116, 0.0032331004733728995, 0.003218111957449326, 0.0032032606971893296, 0.0031885448213774554, 0.0031739624925991475, 0.0031595119064822164, 0.0031451912909581463, 0.0031309989055432713, 0.003116933040639283, 0.0031029920168517337, 0.0030891741843269665, 0.003075477922106144, 0.0030619016374961987, 0.0030484437654571804, 0.003035102768005397, 0.003021877133631898, 0.0030087653767360565, 0.0029957660370733582, 0.0029828776792174753, 0.002970098892035824, 0.0029574282881783833, 0.002944864503579308, 0.0029324061969712273, 0.0029200520494113377, 0.002907800763819459, 0.002895651064527401, 0.0028836016968394025, 0.0028716514266037218, 0.002859799039793816, 0.002848043342100779], "CauzziFaccioli2008": [0.08024390440890757, 0.08024390440890757, 0.08024390440890757, 0.08024390440890757, 0.08024390440890757, 0.08024390440890757, 0.08024390440890757, 0.08024390440890757, 0.08024390440890757, 0.08024390440890757, 0.08024390440890757, 0.08024390440890757, 0.08024390440890757, 0.08024390440890757, 0.08024390440890757, 0.0791292477253693, 0.07294168709683235, 0.06750191415010871, 0.06269504359557265, 0.058426495522633785, 0.05461817320032237, 0.05120533363957466, 0.048134060273638826, 0.04535923535362332, 0.04284291705895938, 0.040553040133276576, 0.038462373468536586, 0.036547681251172505, 0.03478904538066255, 0.033169315869277766, 0.0316736630820874, 0.03028921129382095, 0.029004737427003865, 0.027810422254211695, 0.02669764401000369, 0.025658806434592688, 0.024687194894163055, 0.02377685549506991, 0.02292249310955595, 0.0221193850205597, 0.021363307519046082, 0.020650473285269998, 0.019977477783136785, 0.019341253215876448, 0.018739028848098555, 0.01816829670704489, 0.017626781844318252, 0.01711241647677329, 0.01662331743751, 0.016157766460090185, 0.015714192895006352, 0.015291158520220227, 0.014887344159579038, 0.014501537866285316, 0.014132624464682235, 0.01377957627396103, 0.013441444862740543, 0.013117353704969394, 0.012806491625619589, 0.012508106940019, 0.012221502203672142, 0.011946029500486581, 0.011681086206822578, 0.011426111176865846, 0.01118058130176126, 0.010944008400957503, 0.010715936409335285, 0.01049593882815254, 0.010283616411697708, 0.01007859506487234, 0.009880523929842695, 0.009689073642423466, 0.009503934741059115, 0.009324816213213528, 0.009151444165657137, 0.008983560606626357, 0.008820922329141778, 0.008663299885910618, 0.008510476647256248, 0.008362247934409282, 0.0082184202212947, 0.008078810398635826, 0.007943245094831283, 0.007811560048609241, 0.007683599528955846, 0.007559215798248075, 0.007438268614929329, 0.00732062477238969, 0.007206157671053987, 0.007094746920938868, 0.006986277972206011, 0.006880641771454412, 0.00677773444170966, 0.006677456984235804, 0.006579715000474993, 0.006484418432560115, 0.006391481320980377, 0.0063008215781078306, 0.006212360776393328, 0.006126023950149502, 0.006041739409918736, 0.005959438568517843, 0.00587905577791553, 0.0058005281761711845, 0.005723795543726342, 0.0056488001683928975, 0.005575486718437555, 0.005503802123204743, 0.005433695460768027, 0.005365117852133169, 0.005298022361557167, 0.005232363902578656, 0.0051680991493840474, 0.0051051864531615485, 0.005043585763124682, 0.004983258551902029, 0.004924167745021424, 0.004866277654226649, 0.0048095539143924865, 0.00475396342381101, 0.004699474287646254, 0.00464605576436245, 0.004593678214947484, 0.0045423130547643424, 0.004491932707873493, 0.004442510563683398, 0.004394020935789125, 0.004346439022876557, 0.004299740871570559, 0.004253903341116917, 0.004208904069794807, 0.004164721442962101, 0.0041213345626415765, 0.004078723218564885, 0.004036867860592195, 0.003995749572432919, 0.00395535004659783, 0.003915651560515691, 0.003876636953752219, 0.0038382896062733513, 0.0038005934176979827, 0.003763532787487762, 0.0037270925960255848, 0.0036912581865382794, 0.003656015347817871, 0.003621350297702998, 0.0035872496672810215, 0.0035537004857754432, 0.0035206901660831593, 0.0034882064909315218, 0.003456237599622104, 0.0034247719753356717, 0.003393798432968096, 0.0033633061074735174, 0.003333284442690205, 0.003303723180625607, 0.0032746123511792633, 0.003245942262283226, 0.0032177034904397462, 0.0031898868716393187, 0.003162483492639038, 0.0031354846825880503, 0.003108882004981184, 0.0030826672499281362, 0.003056832426722573, 0.0030313697566988445, 0.0030062716663631184, 0.0029815307807858375, 0.0029571399172462895, 0.0029330920791160774, 0.002909380449971854, 0.0028859983879285346, 0.002862939420181402, 0.0028401972377504517, 0.0028177656904163576, 0.0027956387818419085, 0.002773810664869379, 0.002752275636987963, 0.002731028135962912, 0.0027100627356212922, 0.00268937414178609, 0.0026689571883542354, 0.002648806833511765, 0.0026289181560809117, 0.0026092863519938197, 0.002589906730887949, 0.002570774712817878, 0.0025518858250796516, 0.002533235699142582, 0.002514820067684611, 0.002496634761727472, 0.002478675707866946, 0.0024609389255957443, 0.002443420524714435, 0.002426116702827669, 0.002409023742922278, 0.0023921380110240877, 0.002375455953930702, 0.0023589740970174035, 0.00234268904211302, 0.002326597465444108, 0.0023106961156435933, 0.002294981811823312, 0.002279451441705832, 0.0022641019598161095, 0.0022489303857281015, 0.0022339338023666584, 0.002219109354361162, 0.002204454246449777, 0.0021899657419326983, 0.002175641161171793, 0.0021614778801362813, 0.0021474733289916256, 0.0021336249907309888, 0.002119930399847353, 0.0021063871410450636, 0.0020929928479893915, 0.0020797452020929964, 0.0020666419313376907, 0.002053680809130731, 0.002040859653194007, 0.002028176324485546, 0.002015628726151943, 0.002003214802510636, 0.0019909325380612925, 0.0019787799565252093, 0.001966755119911732, 0.001954856127611076, 0.001943081115512281, 0.0019314282551460022, 0.0019198957528509702, 0.001908481848963318, 0.001897184817028488, 0.0018860029630344867, 0.0018749346246661218, 0.001863978170579516, 0.001853131999696148, 0.0018423945405159595, 0.001831764250448889, 0.0018212396151641235, 0.0018108191479568854, 0.0018005013891317003, 0.0017902849054021153, 0.0017801682893060454, 0.0017701501586365952, 0.0017602291558875087, 0.0017504039477130643, 0.0017406732244019305, 0.001731035699364535, 0.0017214901086337138, 0.001712035210377711, 0.0017026697844260915], "ChiouYoungs2008": [0.12538107268906012, 0.12538107268906012, 0.11598187092473204, 0.10769802329196747, 0.10031163949078017, 0.09147377437085677, 0.08271270912197926, 0.07511810352610061, 0.06850806346862666, 0.0627323618919215, 0.05766625796722461, 0.05320573372045619, 0.04926374980170979, 0.04576725461948087, 0.04265476621072845, 0.0398744004921013, 0.03738225435126886, 0.035141074853948934, 0.033119161333870335, 0.031289458125888896, 0.029628803865175482, 0.02811730957843422, 0.026737842804694243, 0.02547559904414371, 0.02431774515964229, 0.023251663259329196, 0.022262889709338037, 0.02134450725717492, 0.020490742570755255, 0.01969626703081968, 0.018956185131423445, 0.018266013985138038, 0.017621657896444272, 0.01701938064407754, 0.016455777199754256, 0.015927745983454412, 0.015432462327312147, 0.014967353530604528, 0.014530075694500022, 0.014118492397760737, 0.013730655192644063, 0.013364785849567924, 0.013019260249572619, 0.012692593808412667, 0.012383428310289312, 0.0120905200296317, 0.011812729023452987, 0.01154900948331406, 0.011298401043585928, 0.011060020950887829, 0.010833057007828058, 0.01061676121219034, 0.010410444020273345, 0.01021346917021139, 0.0100252490075809, 0.009845240261608, 0.00967294022564648, 0.009507883300527065, 0.009349637863723387, 0.009197803431246975, 0.009052008082693346, 0.008911906122998664, 0.008777175957287877, 0.008647518157688928, 0.008522653703208665, 0.008402322375767072, 0.008286281297242919, 0.00817430359395911, 0.008066177176446235, 0.007961703623561633, 0.007860697161166245, 0.00776298372654964, 0.007668400110679832, 0.0075767931711496275, 0.007488019109398455, 0.007401942806416538, 0.007318437211712501, 0.007237382780824667, 0.007158666957114807, 0.007082183693987209, 0.007007833014047303, 0.006935520602033947, 0.006865157428660357, 0.0067966594027636384, 0.006729947049399933, 0.006664945211735758, 0.006601582774788675, 0.006539792409231559, 0.006479510333648419, 0.0064206760937605715, 0.006363232357277903, 0.006307124723143634, 0.006252301544051808, 0.006198713761205085, 0.006146314750376258, 0.00609506017841022, 0.006044907869376763, 0.005995817679652082, 0.005947751381262868, 0.005900672552884983, 0.00585454647793292, 0.0058093400492290415, 0.005765021679774919, 0.005721561219189164, 0.005678929875410026, 0.005637100141290883, 0.0055960457257473685, 0.005555741489139442, 0.005516163382598014, 0.005477288391024946, 0.005439094479518139, 0.005401560542991251, 0.00536466635877425, 0.005328392541995715, 0.005292720503567151, 0.005257632410594261, 0.005223111149062503, 0.005189140288646282, 0.0051557040495092046, 0.005122787270966374, 0.005090375381892468, 0.005058454372766296, 0.005027010769249459, 0.0049960316072050395, 0.004965504409066961, 0.004935417161479274, 0.004905758294126792, 0.00487651665968692, 0.004847681514834904, 0.0048192425022406, 0.00479118963349787, 0.004763513272932675, 0.004736204122238006, 0.004709253205888944, 0.004682651857292458, 0.0046563917056300546, 0.004630464663354449, 0.004604862914303571, 0.004579578902396598, 0.0045546053208809605, 0.004529935102099193, 0.004505561407747087, 0.004481477619596567, 0.004457677330658856, 0.0044341543367627965, 0.004410902628527559, 0.0043879163837080345, 0.004365189959893813, 0.004342717887542189, 0.004320494863329628, 0.004298515743802605, 0.0042767755393156165, 0.004255269408238595, 0.0042339926514220185, 0.004212940706906159, 0.004192109144861989, 0.004171493662752385, 0.0041510900807028295, 0.004130894337070755, 0.004110902484204954, 0.004091110684383829, 0.004071515205926306, 0.0040521124194648345, 0.004032898794374326, 0.004013870895348351, 0.003995025379116816, 0.003976358991297832, 0.003957868563376984, 0.003939551009809476, 0.003921403325238244, 0.0039034225818228283, 0.003885605926674986, 0.0038679505793947203, 0.0038504538297033895, 0.003833113035168724, 0.003815925619018286, 0.003798889068036838, 0.0037820009305444416, 0.0037652588144512387, 0.003748660385386315, 0.0037322033648962178, 0.0037158855287115285, 0.0036997047050775183, 0.0036836587731465375, 0.00366774566142947, 0.0036519633463040022, 0.00363630985057667, 0.0036207832420972396, 0.0036053816324225193, 0.0035901031755281813, 0.0035749460665661856, 0.0035599085406658954, 0.003544988871777647, 0.0035301853715563975, 0.003515496388284261, 0.0035009203058302637, 0.003486455542645631, 0.003472100550793524, 0.003457853815011876, 0.0034437138518073123, 0.0034296792085803584, 0.0034157484627788046, 0.0034019202210803443, 0.0033881931186009523, 0.0033745658181306014, 0.003361037009392728, 0.0033476054083286266, 0.003334269756404608, 0.003321028819941328, 0.0033078813894649563, 0.0032948262790784577, 0.003281862325853285, 0.00326898838923982, 0.0032562033504965173, 0.003243506112136654, 0.0032308955973923076, 0.0032183707496947706, 0.003205930532171052, 0.003193573927155535, 0.0031812999357166047, 0.0031691075771973975, 0.003156995888770444, 0.0031449639250056343, 0.0031330107574509287, 0.0031211354742255518, 0.003109337179625057, 0.0030976149937380053, 0.0030859680520737946, 0.00307439550520125, 0.003062896518397596, 0.003051470271307626, 0.003040115957612349, 0.003028832784707362, 0.003017619973389972, 0.0030064767575553293, 0.0029954023839010636, 0.0029843961116399107, 0.002973457212220569, 0.002962584969056085, 0.002951778677259701, 0.002941037643387963, 0.0029303611851907753, 0.0029197486313681654, 0.0029091993213335543, 0.0028987126049835675, 0.0028882878424737464, 0.0028779244040002664, 0.0028676216695874618, 0.0028573790288807847, 0.0028471958809455434, 0.002837071634070184, 0.002827005705575488], "ZhaoEtAl2006Asc": [0.15140507078380547, 0.15140507078380547, 0.12985063054412502, 0.11362067609178692, 0.10095927847692565, 0.09080614152949819, 0.08248316546041487, 0.07553647364770662, 0.06965081084112472, 0.0646003757433858, 0.0602191943606368, 0.05638253648504394, 0.05299485390262832, 0.049981717676025904, 0.04728428863270866, 0.044855438710665066, 0.04265697540238481, 0.04065761985006422, 0.03883151018205809, 0.03715707751099358, 0.03561619065105133, 0.0341934974755261, 0.032875912116144504, 0.0316522116693531, 0.030512716064862427, 0.029446705116664147, 0.028439056012143582, 0.027485460540368316, 0.02658272923295516, 0.025727752164796978, 0.024917538519012204, 0.024149240757165128, 0.023420167769101847, 0.022727790249310435, 0.022069740691322705, 0.02144380974870228, 0.02084794023119318, 0.020280219648715573, 0.01973887195299998, 0.01922224893365436, 0.01872882158424346, 0.01825717165131718, 0.017805983505019513, 0.017374036416673757, 0.01696019729075725, 0.016563413872162203, 0.016182708431141533, 0.015817171915999705, 0.015465958555491688, 0.015128280887897388, 0.014803405190977306, 0.014490647285816489, 0.014189368687370483, 0.013898973075168653, 0.01361890305860695, 0.013348637212672989, 0.01308768736137486, 0.012835596087782843, 0.01259193445110918, 0.012356299892833312, 0.012128314315349439, 0.011907622317992842, 0.01169388957664413, 0.011486801354308957, 0.01128606113118922, 0.011091389343819348, 0.010902522223767492, 0.01071921072727372, 0.01054121954798758, 0.010368326205677117, 0.010200320204437112, 0.010037002254516666, 0.00987818355241168, 0.009723685114362475, 0.00957333715883244, 0.009426978533937123, 0.009284456186161333, 0.009145624667020708, 0.009010345674623256, 0.00887848762734965, 0.008749925267124195, 0.00862453928995226, 0.008502216001612627, 0.008382846996568683, 0.008266328858327657, 0.008152562879621551, 0.008041454800933668, 0.007932914565992896, 0.007826856093000044, 0.0077231970604266864, 0.007621858706338004, 0.007522765640261815, 0.007425845666720958, 0.007331029619595476, 0.007238251206564659, 0.007147446862927613, 0.0070585556141552815, 0.0069715189465835705, 0.006886280685692967, 0.0068027868814701225, 0.006720985700374684, 0.0066408273234848676, 0.006562263850410889, 0.006485249208605095, 0.006409739067722721, 0.006335690758709677, 0.006263063197320712, 0.006191816811787287, 0.006121913474380701, 0.006053316436626715, 0.005985990267950078, 0.005919900797541081, 0.005855015059249588, 0.005791301239323107, 0.005728728626827287, 0.005667267566581301, 0.005606889414470991, 0.005547566494994192, 0.005489272060916034, 0.005431980254909494, 0.005375666073071361, 0.005320305330207032, 0.005265874626786345, 0.005212351317477787, 0.005159713481172963, 0.005107939892423093, 0.005057009994207649, 0.005006903871966098, 0.004957602228824183, 0.004909086361951755, 0.0048613381399925295, 0.004814339981510349, 0.004768074834397708, 0.0047225261561995085, 0.004677677895302834, 0.0046335144729500125, 0.00459002076603327, 0.004547182090631973, 0.004504984186254441, 0.004463413200751403, 0.004422455675867023, 0.004382098533395873, 0.004342329061917332, 0.0043031349040802795, 0.004264504044409894, 0.004226424797613353, 0.004188885797360459, 0.004151875985516853, 0.004115384601808389, 0.004079401173898017, 0.004043915507853668, 0.004008917678992945, 0.003974398023083777, 0.003940347127887526, 0.003906755825028206, 0.003873615182173219, 0.0038409164955122118, 0.0038086512825207816, 0.003776811274996011, 0.003745388412353554, 0.0037143748351724237, 0.0036837628789800317, 0.0036535450682641953, 0.0036237141107046318, 0.003594262891613214, 0.0035651844685754136, 0.003536472066283992, 0.0035081190715562003, 0.003480119028528809, 0.0034524656340217657, 0.003425152733064364, 0.0033981743145780306, 0.0033715245072080224, 0.0033451975752992412, 0.0033191879150096517, 0.003293490050556638, 0.003268098630589775, 0.003243008424686847, 0.003218214319966348, 0.0031937113178139354, 0.0031694945307163373, 0.0031455591792006643, 0.003121900588873389, 0.0030985141875563144, 0.0030753955025154506, 0.0030525401577793207, 0.003029943871543147, 0.003007602453656412, 0.00298551180318985, 0.002963667906079595, 0.0029420668328454438, 0.0029207047363801293, 0.0028995778498079163, 0.0028786824844092337, 0.0028580150276093694, 0.002837571941028725, 0.0028173497585925545, 0.0027973450846981805, 0.00277755459243763, 0.002757975021873257, 0.0027386031783657883, 0.002719435930950871, 0.002700470210765249, 0.0026817030095175423, 0.002663131378005768, 0.0026447524246765355, 0.0026265633142270564, 0.0026085612662472115, 0.0025907435539007026, 0.0025731075026441523, 0.0025556504889823815, 0.002538369939259462, 0.002521263328483457, 0.002504328179184559, 0.002487562060304883, 0.002470962586119439, 0.0024545274151867285, 0.002438254249328702, 0.002422140832638321, 0.002406184950514641, 0.0023903844287237906, 0.0023747371324856683, 0.0023592409655852453, 0.0023438938695076964, 0.0023286938225967127, 0.0023136388392350645, 0.002298726969047229, 0.0022839562961226726, 0.0022693249382598497, 0.0022548310462297723, 0.0022404728030590362, 0.002226248423331073, 0.0022121561525058828, 0.00219819426625688, 0.0021843610698249667, 0.002170654897389109, 0.0021570741114525977, 0.0021436171022452583, 0.0021302822871404536, 0.002117068110086595, 0.0021039730410533546, 0.0020909955754910845, 0.0020781342338039898, 0.002065387560836081, 0.0020527541253700307, 0.002040232519638061, 0.002027821358844872, 0.002015519280702022, 0.002003324944973737, 0.001991237033033722, 0.0019792542474321552, 0.001967375311473725], "AkkarEtAlRjb2014": [0.059112261352648215, 0.059112261352648215, 0.059112261352648215, 0.059112261352648215, 0.059112261352648215, 0.0589377000068763, 0.05802408910278168, 0.056444283209025684, 0.0543825525289438, 0.05203270503897992, 0.04956055312380457, 0.04708849472898584, 0.044696476322660605, 0.042430549378301374, 0.04031281097769518, 0.0383498423782259, 0.03653890562682011, 0.0348721217929055, 0.033339127985833876, 0.0319286878954699, 0.030629621038867523, 0.029431304960227, 0.028323917838184623, 0.02729852804650726, 0.02634709684950392, 0.025462434544455927, 0.024638134133292255, 0.02386849657428173, 0.023148455539848817, 0.022473505913169822, 0.0218396380622856, 0.021243278654438407, 0.02068123805501452, 0.02015066397268426, 0.019649000828696646, 0.01917395426047718, 0.018723460166953053, 0.018295657735039914, 0.017888865935155783, 0.017501563028089053, 0.017132368680014276, 0.016780028333830504, 0.01644339953175495, 0.01612143992577387, 0.01581319674911695, 0.015517797553710447, 0.015234442045971153, 0.014962394876927458, 0.014700979262837586, 0.014449571329767506, 0.014207595090375332, 0.013974517973778236, 0.013749846840150588, 0.013533124420965855, 0.013323926133646169, 0.013121857226210013, 0.012926550213251885, 0.01273766256963903, 0.012554874652549227, 0.012377887826212129, 0.01220642276689312, 0.012040217928416197, 0.011879028150925442, 0.011722623397657459, 0.01157078760628607, 0.011423317642991515, 0.011280022348762065, 0.01114072166863092, 0.011005245855608648, 0.010873434741971453, 0.010745137071388975, 0.010620209886068757, 0.01049851796372352, 0.01037993329971692, 0.010264334630231322, 0.01015160699272185, 0.010041641320314995, 0.009934334067136586, 0.009829586861859477, 0.009727306187024993, 0.009627403081938319, 0.00952979286713793, 0.009434394888637638, 0.009341132280309658, 0.00924993174292529, 0.009160723338504352, 0.009073440298758943, 0.00898801884650847, 0.008904398029060605, 0.008822519562629617, 0.008742327686949042, 0.008663769029307392, 0.008586792477304542, 0.008511349059678349, 0.008437391834614838, 0.008364875784996114, 0.008293757720089123, 0.008223996183218053, 0.008155551364998213, 0.008088385021745838, 0.008022460398703753, 0.007957742157757687, 0.007894196309337324, 0.007831790148221246, 0.007770492192988955, 0.007710272128877949, 0.007651100753825312, 0.00759294992748789, 0.007535792523051815, 0.007479602381652416, 0.007424354269242457, 0.007370023835755954, 0.007316587576426195, 0.007264022795124376, 0.007212307569601021, 0.007161420718509277, 0.007111341770110793, 0.007062050932559064, 0.00701352906567251, 0.0069657576541072505, 0.006918718781850919, 0.006872395107961798, 0.006826769843482307, 0.006781826729461245, 0.006737550016022479, 0.006693924442423509, 0.006650935218047583, 0.006608568004280517, 0.006566808897223386, 0.006525644411196483, 0.006485061462992944, 0.006445047356841575, 0.006405589770042613, 0.006366676739241163, 0.006328296647305687, 0.006290438210779514, 0.006253090467877727, 0.006216242767001239, 0.006179884755741492, 0.006144006370352844, 0.006108597825668434, 0.00607364960543831, 0.006039152453068292, 0.006005097362742592, 0.005971475570908629, 0.005938278548109315, 0.00590549799114487, 0.0058731258155499694, 0.005841154148369598, 0.005809575321222378, 0.005778381863634886, 0.005747566496638521, 0.0057171221266129, 0.005687041839367502, 0.005657318894450096, 0.005627946719671061, 0.005598918905835366, 0.005570229201671998, 0.0055418715089523545, 0.005513839877790887, 0.005486128502116778, 0.005458731715313742, 0.00543164398601666, 0.005404859914061528, 0.005378374226579728, 0.00535218177423287, 0.005326277527581022, 0.00530065657357836, 0.005275314112192895, 0.005250245453143428, 0.005225446012749037, 0.005200911310888704, 0.005176636968063173, 0.005152618702558479, 0.005128852327704221, 0.005105333749225194, 0.005082058962680873, 0.005059024050990366, 0.005036225182039232, 0.005013658606365323, 0.0049913206549196155, 0.004969207736900673, 0.004947316337658752, 0.004925643016667258, 0.004904184405559288, 0.004882937206226711, 0.0048618981889792, 0.004841064190761348, 0.0048204321134254794, 0.004799998922058437, 0.004779761643360071, 0.004759717364071592, 0.004739863229452273, 0.004720196441802511, 0.004700714259031672, 0.004681413993269173, 0.004662293009517186, 0.004643348724343581, 0.00462457860461404, 0.004605980166260849, 0.004587550973088933, 0.004569288635615786, 0.004551190809946255, 0.004533255196678567, 0.0045154795398436014, 0.004497861625872784, 0.004480399282596907, 0.004463090378272584, 0.004445932820636246, 0.0044289245559854225, 0.004412063568284561, 0.004395347878297098, 0.004378775542740512, 0.00436234465346532, 0.004346053336656367, 0.004329899752055973, 0.004313882092208211, 0.0042979985817238, 0.004282247476564657, 0.0042666270633476425, 0.004251135658666958, 0.0042357716084344904, 0.004220533287237794, 0.004205419097714746, 0.004190427469944704, 0.004175556860855717, 0.004160805753646728, 0.0041461726572252795, 0.004131656105659205, 0.004117254657642614, 0.0041029668959756795, 0.0040887914270571705, 0.0040747268803903395, 0.004060771908100952, 0.004046925184467523, 0.004033185405463235, 0.004019551288309334, 0.004006021571039458, 0.003992595012074897, 0.003979270389810043, 0.0039660465022082715, 0.003952922166407394, 0.0039398962183348355, 0.0039269675123319876, 0.003914134920787857, 0.00390139733378112, 0.0038887536587310315, 0.003876202820056409, 0.0038637437588427363, 0.0038513754325174487, 0.0038390968145320366, 0.003826906894052574], "BindiEtAl2014Rjb": [0.08979829746550125, 0.08979829746550125, 0.08979829746550125, 0.08979829746550125, 0.08979829746550125, 0.08906503283471846, 0.08542691060470317, 0.07980851102854329, 0.07346863690839998, 0.06725463186098417, 0.06157050939606807, 0.05653930060563087, 0.05214742160408148, 0.04832843932053791, 0.045003134450088966, 0.04209612550178822, 0.03954149811112707, 0.037283732040661856, 0.03527683321461479, 0.033482934993329765, 0.031870881397142406, 0.03041497462921829, 0.02909393030532405, 0.027890029698661938, 0.026788440767939133, 0.025776677211676292, 0.024844167834035945, 0.023981913099555326, 0.023182210290683562, 0.02243843260933571, 0.021744850768482225, 0.021096488157658022, 0.02048900264483267, 0.0199185896076217, 0.01938190196712141, 0.01887598390771304, 0.018398215668954596, 0.01794626734005913, 0.017518060010515615, 0.017111732960661385, 0.01672561583488582, 0.016358204944038113, 0.016008143004909887, 0.01567420175290516, 0.015355266966418856, 0.015050325523613206, 0.014758454178463236, 0.0144788097965792, 0.014210620834855237, 0.01395317988455987, 0.01370583712664119, 0.013467994572005725, 0.013239100979321853, 0.013018647359358504, 0.012806162988485111, 0.012601211865426936, 0.012403389554861427, 0.012212320369535677, 0.012027654849301189, 0.011849067501227151, 0.011676254769792003, 0.011508933210279087, 0.011346837842036975, 0.011189720661274678, 0.011037349295630711, 0.010889505784996477, 0.010745985474973851, 0.010606596010998632, 0.010471156422602627, 0.010339496288512136, 0.010211454974377046, 0.010086880935851715, 0.009965631080574945, 0.0098475701833148, 0.009732570349175596, 0.009620510520308267, 0.009511276022065685, 0.009404758144961245, 0.00930085375917378, 0.009199464958672446, 0.009100498732340862, 0.009003866659729486, 0.008909484629308932, 0.008817272577304046, 0.00872715424537106, 0.00863905695554368, 0.00855291140103358, 0.008468651451585261, 0.008386213972221952, 0.008305538654313813, 0.008226567858000145, 0.008149246465082432, 0.00807352174158623, 0.00799934320925169, 0.00792666252528621, 0.007855433369761319, 0.007785611340092282, 0.007717153852085221, 0.007650020047077219, 0.007584170704736567, 0.007519568161120854, 0.0074561762316288785, 0.007393960138505831, 0.007332886442589613, 0.007272922979012614, 0.007214038796591356, 0.007156204100659766, 0.007099390199118966, 0.0070435694514948, 0.006988715220806537, 0.006934801828068542, 0.006881804509257572, 0.006829699374590712, 0.006778463369968417, 0.006728074240453326, 0.006678510495653899, 0.006629751376904112, 0.006581776826125598, 0.006534567456276417, 0.00648810452328944, 0.006442369899414828, 0.00639734604788493, 0.006353015998824921, 0.006309363326338463, 0.006266372126701295, 0.006224026997601869, 0.006182313018368474, 0.006141215731130579, 0.006100721122861702, 0.00606081560825653, 0.0060214860133972065, 0.005982719560166007, 0.005944503851365488, 0.0059068268565083916, 0.00586967689824271, 0.005833042639377806, 0.005796913070482012, 0.005761277498021954, 0.0057261255330152555, 0.005691447080172335, 0.005657232327501634, 0.005623471736355844, 0.005590156031896265, 0.0055572761939574385, 0.0055248234482891696, 0.005492789258160545, 0.005461165316306863, 0.005429943537204552, 0.0053991160496566735, 0.005368675189677072, 0.005338613493655845, 0.005308923691797246, 0.005279598701813398, 0.005250631622864752, 0.0052220157297355775, 0.005193744467233007, 0.005165811444800855, 0.005138210431337745, 0.005110935350210503, 0.005083980274455807, 0.005057339422158561, 0.005031007152003657, 0.005004977958989627, 0.004979246470300247, 0.004953807441325008, 0.0049286557518242995, 0.004903786402231922, 0.004879194510088777, 0.004854875306604125, 0.004830824133337406, 0.004807036438995749, 0.004783507776344483, 0.004760233799222796, 0.004737210259663577, 0.004714433005110621, 0.004691897975731379, 0.0046696012018199356, 0.0046475388012875065, 0.004625706977236684, 0.004604102015616731, 0.004582720282955556, 0.004561558224166982, 0.004540612360429281, 0.004519879287132556, 0.004499355671892559, 0.004479038252628517, 0.0044589238357020155, 0.004439009294115323, 0.004419291565766402, 0.004399767651759082, 0.004380434614765907, 0.00436128957744179, 0.004342329720886938, 0.004323552283157034, 0.004304954557818961, 0.004286533892550581, 0.004268287687782853, 0.0042502133953828325, 0.004232308517376616, 0.00421457060470943, 0.004196997256043706, 0.004179586116591463, 0.004162334876982174, 0.004145241272162335, 0.004128303080328724, 0.004111518121890801, 0.0040948842584643845, 0.004078399391893366, 0.004062061463299428, 0.0040458684521592755, 0.0040298183754068845, 0.004013909286562203, 0.003998139274883186, 0.0039825064645420925, 0.0039670090138242955, 0.003951645114349218, 0.003936412990312694, 0.003921310897750065, 0.003906337123819261, 0.003891489986103233, 0.003876767831931217, 0.0038621690377181723, 0.003847692008321966, 0.0038333351764174755, 0.0038190970018872413, 0.003804975971228424, 0.003790970596974841, 0.003777079417134608, 0.0037633009946419454, 0.0037496339168233426, 0.0037360767948776507, 0.0037226282633690388, 0.003709286979733392, 0.003696051623796888, 0.0036829208973069476, 0.0036698935234749106, 0.003656968246530221, 0.003644143831285673, 0.0036314190627136506, 0.003618792745532571, 0.003606263703803829, 0.0035938307805384174, 0.0035814928373132586, 0.0035692487538967798, 0.0035570974278838134, 0.003545037774339007, 0.0035330687254490024, 0.0035211892301828317, 0.003509398253960417, 0.003497694778329292, 0.0034860778006481578, 0.003474546333778869], "CauzziEtAl2014": [0.08215400480962043, 0.08215400480962043, 0.0748288734776265, 0.06857735123056163, 0.06318780510652794, 0.058499820390898585, 0.054389749697317635, 0.05076086078924839, 0.04753646962949913, 0.04465505909221854, 0.04206674750084735, 0.039730692848066504, 0.03761315715089707, 0.03568604404697199, 0.03392578063296294, 0.03231245307400686, 0.030829131598388192, 0.029461338435148008, 0.02819662477612704, 0.027024231703560518, 0.02593481637093285, 0.02492022932413086, 0.023973332219354087, 0.023087847687678277, 0.022258234959090774, 0.021477878746533244, 0.02073663663259592, 0.020032081267517675, 0.019362495459878615, 0.018726125080273555, 0.018121219606913645, 0.017546060832280146, 0.01699898260968912, 0.016478383874630718, 0.015982736662744756, 0.015510590442769331, 0.015060573768225914, 0.014631394008325417, 0.01422183573119139, 0.013830758169010754, 0.013457092085096706, 0.013099836279476947, 0.012758053906297237, 0.012430868728511197, 0.012117461399181989, 0.011817065831709894, 0.011528965700971219, 0.011252491102362662, 0.010987015384640978, 0.010731952164330785, 0.010486752523635198, 0.01025090238965565, 0.010023920089824875, 0.009805354076592292, 0.00959478081314134, 0.009391802811288326, 0.009196046812354364, 0.009007162101821654, 0.00882481894870086, 0.008648707160859161, 0.008478534747931832, 0.008314026683857343, 0.008154923761563298, 0.008000981532787318, 0.007851969326484862, 0.007707669339752354, 0.00756787579562335, 0.007432394162522433, 0.007301040430563622, 0.0071736404402497605, 0.007050029259483257, 0.006930050605126469, 0.0068135563056443485, 0.006700405801649526, 0.006590465681424113, 0.006483609248728202, 0.006379716120428092, 0.006278671851673519, 0.006180367586539567, 0.006084699732214701, 0.005991569654979176, 0.005900883396348222, 0.005812551407893798, 0.0057264883033745625, 0.00564261262691262, 0.005560846636052769, 0.005481116098641939, 0.005403350102532079, 0.005327480877208614, 0.005253443626497909, 0.005181176371585144, 0.005110619803622737, 0.005041717145276769, 0.004974414020593173, 0.004908658332625277, 0.004844400148298687, 0.0047815915900287186, 0.004720186733646117, 0.004660141512213115, 0.004601413625347865, 0.004543962453696104, 0.00448774897822509, 0.004432735704026916, 0.004378886588347397, 0.004326166972575214, 0.004274543517943072, 0.004223984144712139, 0.004174457974623911, 0.004125935276422095, 0.004078387414256478, 0.00403178679879642, 0.003986106840892577, 0.00394132190763533, 0.0038974072806671747, 0.0038543391166221625, 0.0038120944095623053, 0.0037706509553025957, 0.003729987317511137, 0.003690082795487878, 0.0036509173935242874, 0.003612471791757151, 0.0035747273184326377, 0.003537665923503308, 0.0035012701534849174, 0.003465523127503472, 0.003430408514470123, 0.0033959105113211463, 0.0033620138222678715, 0.0033287036390021642, 0.0032959656218075465, 0.0032637858815283897, 0.0032321509623530883, 0.0032010478253681565, 0.003170463832845452, 0.003140386733223604, 0.0031108046467493117, 0.0030817060517453155, 0.0030530797714737874, 0.003024914961564976, 0.0029972010979843118, 0.0029699279655111734, 0.002943085646703702, 0.0029166645113270283, 0.002890655206222808, 0.002865048645597936, 0.00283983600171348, 0.0028150086959546567, 0.0027905583902640974, 0.0027664769789209416, 0.002742756580650942, 0.0027193895310504003, 0.002696368375312144, 0.002673685861237246, 0.0026513349325213535, 0.0026293087223025202, 0.0026076005469589203, 0.0025862039001454907, 0.002565112447058994, 0.002544320018920977, 0.002523820607670173, 0.0025036083608536387, 0.002483677576710055, 0.0024640226994350183, 0.002444638314621959, 0.002425519144870286, 0.002406660045554433, 0.002388056000746784, 0.0023697021192874597, 0.002351593630996167, 0.002333725883019021, 0.0023160943363051767, 0.0022986945622085987, 0.002281522239208819, 0.0022645731497467477, 0.0022478431771703724, 0.002231328302786458, 0.0022150246030132356, 0.0021989282466312464, 0.002183035492127165, 0.0021673426851282814, 0.0021518462559227992, 0.0021365427170638657, 0.0021214286610531023, 0.0021065007581012197, 0.002091755753962569, 0.0020771904678408178, 0.0020628017903628827, 0.0020485866816190757, 0.0020345421692663746, 0.0020206653466929288, 0.0020069533712413446, 0.0019934034624883934, 0.001980012900579582, 0.001966779024616102, 0.001953699231092526, 0.0019407709723832628, 0.001927991755276075, 0.0019153591395510959, 0.001902870736603605, 0.0018905242081088012, 0.001878317264727834, 0.0018662476648523408, 0.0018543132133879204, 0.0018425117605730729, 0.0018308412008346878, 0.0018192994716766568, 0.001807884552602046, 0.0017965944640668892, 0.0017854272664647182, 0.0017743810591409309, 0.0017634539794356685, 0.001752644201754711, 0.001741949936666935, 0.0017313694300279162, 0.0017209009621284273, 0.001710542846867354, 0.0017002934309478647, 0.0016901510930965435, 0.001680114243304201, 0.0016701813220881567, 0.00166035079977485, 0.0016506211758025233, 0.001640990978043131, 0.001631458762142875, 0.0016220231108808256, 0.0016126826335449412, 0.0016034359653252226, 0.0015942817667230584, 0.001585218722976624, 0.0015762455435016018, 0.001567360961346943, 0.0015585637326649233, 0.0015498526361954514, 0.0015412264727637569, 0.0015326840647914286, 0.001524224255820222, 0.0015158459100481287, 0.0015075479118776987, 0.0014993291654758936, 0.001491188594345188, 0.0014831251409059788, 0.001475137766089279, 0.0014672254489400114, 0.0014593871862302104, 0.0014516219920821284, 0.0014439288976006916, 0.0014363069505151944, 0.0014287552148298948, 0.001421272770483329, 0.0014138587130161325, 0.0014065121532467655, 0.0013992322169555959], "DerrasEtAl2014": [0.0022022305921907525, 0.0022022305921907525, 0.0022022305921907525, 0.0022022305921907525, 0.0022022305921907525, 0.06498036234613601, 0.058179452378885055, 0.0539407023923173, 0.05071215664070073, 0.04804791803228434, 0.045752726228648885, 0.043722299446720306, 0.04189382235537489, 0.04022622325495937, 0.03869098713585474, 0.03726738430058152, 0.03593978386427721, 0.03469604345088808, 0.03352649440723446, 0.03242327549688496, 0.031379880118973705, 0.030390839510076782, 0.02945149544128258, 0.028557833509476747, 0.02770635848233364, 0.02689399947196327, 0.026118036678884782, 0.02537604400642405, 0.02466584353498342, 0.023985468984956435, 0.023333136080281508, 0.022707218272336578, 0.022106226673019428, 0.021528793326318046, 0.020973657152495676, 0.020439652050451562, 0.019925696756974202, 0.019430786147174497, 0.01895398372557306, 0.018494415107550215, 0.01805126232983198, 0.01762375885919958, 0.017211185192628983, 0.01681286496116815, 0.016428161465106752, 0.01605647458027204, 0.01569723798516553, 0.01534991666678188, 0.015014004669517984, 0.01468902305701472, 0.014374518061266302, 0.01407005939705856, 0.013775238722877397, 0.013489668232075308, 0.01321297936020742, 0.012944821596372178, 0.012684861387874375, 0.01243278112894144, 0.012188278225290908, 0.011951064227374568, 0.011720864025940265, 0.011497415104271345, 0.011280466842106589, 0.011069779866784344, 0.010865125447610525, 0.010666284929891646, 0.010473049205421454, 0.010285218216525985, 0.010102600491069428, 0.009925012706048585, 0.009752279277648624, 0.009584231975809949, 0.009420709561536827, 0.009261557445334613, 0.009106627365303852, 0.00895577708353241, 0.008808870099556845, 0.008665775379749578, 0.008526367101587749, 0.00839052441183557, 0.008258131197759526, 0.008129075870545135, 0.008003251160158167, 0.007880553920948689, 0.007760884947342917, 0.007644148799011565, 0.007530253634962473, 0.0074191110560190236, 0.007310635955207282, 0.007204746375590591, 0.007101363375127633, 0.007000410898156458, 0.006901815653137114, 0.0068055069962992785, 0.006711416820876364, 0.006619479451617098, 0.006529631544290797, 0.006441811989919085, 0.006355961823480723, 0.006272024136855852, 0.006189943995783253, 0.006109668360626695, 0.006031146010750718, 0.005954327472320211, 0.0058791649493519045, 0.005805612257850631, 0.00573362476287661, 0.005663159318396905, 0.005594174209784278, 0.00552662909883015, 0.005460484971150558, 0.005395704085868281, 0.005332249927460796, 0.005270087159667845, 0.005209181581365192, 0.005149500084303401, 0.005091010612631311, 0.005033682124113438, 0.004977484552967579, 0.004922388774242758, 0.004868366569668766, 0.004815390594908918, 0.004763434348151425, 0.0047124721399785935, 0.004662479064455437, 0.004613430971384156, 0.004565304439669549, 0.0045180767517483, 0.004471725869033386, 0.004426230408328897, 0.004381569619173152, 0.004337723362068289, 0.004294672087558749, 0.004252396816121314, 0.0042108791188320395, 0.004170101098775472, 0.0041300453731658955, 0.004090695056149709, 0.0040520337422590815, 0.004014045490491075, 0.003976714808984765, 0.003940026640271767, 0.003903966347075224, 0.0038685196986372418, 0.00383367285754923, 0.003799412367067561, 0.003765725138892695, 0.00373259844139454, 0.003700019888263764, 0.0036679774275745563, 0.0036364593312390565, 0.003605454184841561, 0.003574950877833523, 0.0035449385940774986, 0.0035154068027257544, 0.003486345249419367, 0.0034577439477966603, 0.0034295931712977072, 0.003401883445253648, 0.003374605539251103, 0.0033477504597578204, 0.0033213094430039488, 0.0032952739481049236, 0.003269635650419902, 0.003244386435134253, 0.00321951839106004, 0.003195023804644643, 0.0031708951541795523, 0.0031471251042035457, 0.0031237065000912943, 0.0031006323628206215, 0.0030778958839137766, 0.003055490420543095, 0.0030334094907983056, 0.0030116467691067867, 0.0029901960818035007, 0.0029690514028434052, 0.002948206849652199, 0.0029276566791100415, 0.002907395283663964, 0.0028874171875632555, 0.0028677170432149252, 0.0028482896276538746, 0.002829129839124056, 0.002810232693766842, 0.0027915933224128874, 0.002773206967473528, 0.0027550689799285518, 0.0027371748164068833, 0.0027195200363570706, 0.002702100299304432, 0.002684911362191667, 0.0026679490768005175, 0.002651209387251418, 0.002634688327578531, 0.002618382019377696, 0.002602286669524731, 0.0025863985679617503, 0.002570714085549681, 0.002555229671983484, 0.0025399418537699345, 0.0025248472322638325, 0.0025099424817626626, 0.0024952243476557014, 0.0024806896446283285, 0.0024663352549168915, 0.002452158126615092, 0.0024381552720284033, 0.0024243237660756894, 0.002410660744736946, 0.002397163403544285, 0.002383828996116704, 0.0023706548327354035, 0.00235763827895969, 0.0023447767542814353, 0.0023320677308172224, 0.0023195087320368054, 0.0023070973315270304, 0.0022948311517897585, 0.0022827078630729414, 0.002270725182233762, 0.002258880871632863, 0.0022471727380588657, 0.002235598631681877, 0.0022241564450354, 0.0022128441120259014, 0.002201659606968558, 0.002190600943649393, 0.002179666174411977, 0.0021688533892685966, 0.0021581607150352004, 0.0021475863144887544, 0.00213712838554723, 0.002126785160470832, 0.0021165549050842273, 0.002106435918019033, 0.0020964265299759843, 0.002086525103006145, 0.0020767300298108245, 0.002067039733059286, 0.0020574526647241516, 0.0020479673054336492, 0.0020385821638403655, 0.0020292957760060576, 0.0020201067048020854, 0.002011013539324816, 0.0020020148943258346, 0.0019931094096563456, 0.0019842957497254498, 0.001975572602972162, 0.001966938681349923, 0.0019583927198245725], "AbrahamsonEtAl2014": [0.09876274219392311, 0.09876274219392311, 0.09317257826330415, 0.08691509458951781, 0.08047426788952936, 0.07339672141825593, 0.06673918940810547, 0.06092263415611387, 0.05583324292858869, 0.05136486434602044, 0.04742451301103722, 0.04393315337177743, 0.040824562696742374, 0.03804357909516327, 0.035544304613384065, 0.033288485519121634, 0.03124413416260109, 0.02938438973095084, 0.027812486739170864, 0.026711712753455446, 0.02569508804312556, 0.024753381346030737, 0.023878636961712107, 0.02306396801242701, 0.022303387164294145, 0.02159010887847974, 0.02091429793182313, 0.02027328812960031, 0.019665131974452004, 0.019087909977096112, 0.018539760566099083, 0.01801889930727691, 0.01752363035791512, 0.01705235235311037, 0.016603560361198023, 0.016175845118681587, 0.015767890433044177, 0.015378469400547897, 0.015006439906135025, 0.014650739739139898, 0.014310381559965495, 0.013984447880526243, 0.01367208616831905, 0.013372504145599515, 0.013084965327381381, 0.01280878482226764, 0.012543325406098104, 0.012287993868774922, 0.012042237628072935, 0.011805541599954474, 0.01157742531227755, 0.011357440247333853, 0.01114516739798107, 0.010940215022114062, 0.010742216580493992, 0.010550828843585871, 0.010365730153743893, 0.010186618829959892, 0.010013211703214972, 0.00984524277137658, 0.009682461963431062, 0.009524634003650922, 0.009371537367097955, 0.009222963318581592, 0.009078715027869062, 0.008938606754591261, 0.008802463096854883, 0.008670118298109973, 0.008541415607311581, 0.008416206687855391, 0.00829435107117596, 0.008175715651267835, 0.008060174216717843, 0.007947607017149432, 0.007837900361253496, 0.007730946243829048, 0.007626641999489912, 0.007524889980895412, 0.0074255972595532556, 0.007328675347409112, 0.007234039937600053, 0.0071416106628771295, 0.007051310870338969, 0.0069630674112303665, 0.006876810444664752, 0.006792473254222148, 0.006709992076471231, 0.006629305940524816, 0.006550356517832279, 0.006473087981458407, 0.0063974468741715565, 0.006323381984707738, 0.00625084423164039, 0.006179786554314679, 0.006110163810361364, 0.006041932679335266, 0.005975051572058456, 0.005909480545285412, 0.005845181221329924, 0.005782116712326085, 0.005720251548813214, 0.005659551612368286, 0.0055999840720176546, 0.005541517324187142, 0.00548412093596501, 0.005427765591466978, 0.005372423041110259, 0.005318066053613212, 0.005264668370555202, 0.005212204663337118, 0.005160650492398195, 0.005109982268553461, 0.005060177216324503, 0.005011213339143584, 0.004963069386326066, 0.004915724821700534, 0.004869159793807975, 0.004823355107573749, 0.004778292197373091, 0.004733953101407924, 0.004690320437323174, 0.004647377378992641, 0.00460510763441043, 0.004563495424626945, 0.004522525463671553, 0.004482182939410875, 0.004442453495289749, 0.004403323212909867, 0.004364778595400778, 0.004326806551541893, 0.004289394380596272, 0.0042525297578196375, 0.004216200720608915, 0.004180395655259375, 0.004145103284297829, 0.00411031265436376, 0.004076013124610853, 0.00404219435560325, 0.004008846298681275, 0.003975959185775038, 0.003943523519643422, 0.0039115300645172985, 0.003879969837128374, 0.003848834098105656, 0.00381811434372078, 0.0037878022979668984, 0.003757889904955281, 0.0037283693216148333, 0.003699232910680144, 0.003670473233956085, 0.003642083045844111, 0.0036140552871214995, 0.003586383078959155, 0.0035590597171692743, 0.003532078666671969, 0.003505433556171093, 0.0034791181730304097, 0.0034531264583412685, 0.0034274525021730493, 0.003402090538999743, 0.00337703494329304, 0.0033522802252775076, 0.0033278210268384983, 0.003303652117578092, 0.0032797683910117895, 0.0032561648609010074, 0.0032328366577153308, 0.0032097790252186005, 0.003186987317175287, 0.003164456994170778, 0.0031421836205414878, 0.0031201628614110737, 0.003098390479827335, 0.003076862333996714, 0.003055574374612035, 0.0030345226422703675, 0.003013703264976503, 0.0029931124557301798, 0.002972746510192199, 0.00295260180442809, 0.0029326747927245797, 0.002912962005477819, 0.0028934600471493188, 0.0028741655942878513, 0.0028550753936145735, 0.002836186260169073, 0.0028174950755138163, 0.0027989987859954714, 0.0027806944010603622, 0.0027625789916225192, 0.00274464968848234, 0.002726903680793648, 0.002709338214578117, 0.0026919505912848694, 0.002674738166393765, 0.0026576983480608185, 0.00264082859580432, 0.0026241264192302578, 0.002607589376795734, 0.002591215074608575, 0.0025750011652630194, 0.0025589453467084558, 0.0025430453611524047, 0.002527298993993885, 0.0025117040727890916, 0.002496258466245494, 0.0024809600832454656, 0.0024658068718974107, 0.002450796818613735, 0.0024359279472149858, 0.0024211983180587923, 0.0024066060271935538, 0.0023921492055352083, 0.0023778260180671255, 0.0023636346630617248, 0.0023495733713236543, 0.0023356404054533752, 0.0023218340591310473, 0.0023081526564194387, 0.0022945945510858662, 0.0022811581259420247, 0.002267841792201578, 0.0022546439888548155, 0.002241563182059752, 0.002228597864549298, 0.0022157465550538217, 0.0022030077977390193, 0.002190380161658076, 0.002177862240218191, 0.0021654526506607176, 0.0021531500335547665, 0.0021409530523034486, 0.0021288603926630117, 0.002116870762273804, 0.0021049828902032454, 0.002093195526500286, 0.0020815074417607294, 0.002069917426703702, 0.0020584242917584066, 0.002047026866660945, 0.002035724000061468, 0.0020245145591404404, 0.002013397429234549, 0.002002371513471503, 0.0019914357324138697, 0.001980589023711276, 0.0019698303417610506, 0.0019591586573768217, 0.0019485729574651549, 0.0019380722447098894, 0.0019276555372635098, 0.0019173218684463756], "BooreEtAl2014": [0.09158992663180017, 0.09158992663180017, 0.09158992663180017, 0.09158992663180017, 0.09158992663180017, 0.0911264869950112, 0.08873424634782773, 0.08472348246178935, 0.07971122984946907, 0.07427650980949776, 0.0688462408037857, 0.0636810531559938, 0.058911253539342186, 0.054581954720455884, 0.0506893614580293, 0.0472049649978583, 0.04408999728015278, 0.04130338257543984, 0.03880575501742322, 0.0365612431499246, 0.03453805234044872, 0.032708437577540495, 0.031048394486733306, 0.02953724360995173, 0.028157197358816218, 0.026892952189252285, 0.02573132354109474, 0.024660928198170222, 0.023671912445607315, 0.022755721660286568, 0.021904906071244932, 0.021112957442828262, 0.020374171866066097, 0.019683534430989795, 0.019036622161939878, 0.018429522167011485, 0.017858762456451266, 0.017321253317253794, 0.016814237495415985, 0.016335247740690045, 0.015882070519493648, 0.01545271490818198, 0.015045385848544438, 0.014658461086690736, 0.014290471230853273, 0.01394008245762603, 0.013606081473469922, 0.013287362402132461, 0.01298291532128332, 0.012691816215296704, 0.012413218147333588, 0.012146343484014258, 0.011890477031091546, 0.011644959959607005, 0.011409184419594435, 0.011182588753293476, 0.01096465323226635, 0.010754896253449001, 0.010552870938061999, 0.010358162084957403, 0.010170383436435637, 0.009989175220092874, 0.009814201935003063, 0.00964515035459429, 0.009481727722051565, 0.009323660117106117, 0.00917069097565129, 0.009022579745868656, 0.00887910066650592, 0.008740041654621254, 0.008605203291599212, 0.008474397897512014, 0.008347448685027669, 0.008224188985047407, 0.008104461537118846, 0.007988117838417264, 0.007875017545768243, 0.007765027925758377, 0.007658023348505881, 0.00755388482111592, 0.007452499557261347, 0.007353760579674886, 0.007257566352669075, 0.007163820442083709, 0.007072431200310561, 0.006983311474269605, 0.0068963783344244585, 0.006811552823087203, 0.006728759720443081, 0.006647927326858189, 0.006568987260168715, 0.00649187426676631, 0.006416526045402965, 0.006342883082726246, 0.006270888499651167, 0.00620048790774458, 0.006131629274872445, 0.006064262799422905, 0.005998340792474375, 0.0059338175673324094, 0.005870649335902176, 0.005808794111412897, 0.005748211617043885, 0.005688863200039453, 0.005630711750934789, 0.005573721627540566, 0.005517858583363974, 0.005463089700167904, 0.00540938332439309, 0.0053567090071865745, 0.00530503744780193, 0.005254340440152671, 0.00520459082231615, 0.005155762428798534, 0.005107830045390909, 0.0050607693664481415, 0.005014556954446911, 0.0049691702016771665, 0.004924587293941485, 0.004880787176137669, 0.004837749519613463, 0.004795454691187968, 0.004753883723740995, 0.004713018288279171, 0.004672840667392682, 0.0046333337300238624, 0.004594480907470885, 0.004556266170558597, 0.004518674007909819, 0.00448168940525612, 0.0044452978257309185, 0.004409485191090339, 0.00437423786381197, 0.004339542630023954, 0.004305386683220085, 0.004271757608718163, 0.004238643368823709, 0.0042060322886613676, 0.0041739130426388035, 0.004142274641511556, 0.004111106420017205, 0.004080398025050165, 0.004050139404349018, 0.004020320795672768, 0.003990932716438758, 0.00396196595380179, 0.00393341155515134, 0.0039052608190076033, 0.0038775052862954555, 0.0038501367319803016, 0.0038231471570457417, 0.003796528780800246, 0.0037702740334938263, 0.003744375549232499, 0.0037188261591761373, 0.0036936188850058616, 0.003668746932649766, 0.003644203686254187, 0.0036199827023895544, 0.0035960777044815383, 0.0035724825774544706, 0.003549191362581458, 0.003526198252528462, 0.003503497586586475, 0.003481083846081477, 0.0034589516499563466, 0.003437095750516178, 0.0034155110293296173, 0.003394192493281193, 0.0033731352707666506, 0.003352334608025459, 0.0033317858656064206, 0.0033114845149579777, 0.0032914261351410217, 0.0032716064096566908, 0.0032520211233864234, 0.0032326661596382335, 0.0032135374972956897, 0.0031946312080652363, 0.003175943453818282, 0.0031574704840233235, 0.0031392086332658617, 0.0031211543188516626, 0.003103304038490401, 0.003085654368056652, 0.003068201959425357, 0.0030509435383784655, 0.003033875902580448, 0.0030169959196197633, 0.0030003005251141453, 0.0029837867208769497, 0.002967451573142297, 0.002951292210847163, 0.002935305823967962, 0.002919489661909723, 0.002903841031946007, 0.0028883572977075685, 0.002873035877718029, 0.0028578742439753107, 0.002842869920575995, 0.002828020482382821, 0.002813323553731912, 0.0027987768071801524, 0.0027843779622892927, 0.002770124784447972, 0.002756015083727549, 0.002742046713773086, 0.0027282175707266086, 0.002714525592182062, 0.0027009687561714416, 0.002687545080179655, 0.002674252620188931, 0.0026610894697500958, 0.0026480537590810177, 0.002635143654190663, 0.002622357356028131, 0.0026096930996558345, 0.0025971491534461043, 0.0025847238183002797, 0.0025724154268896285, 0.0025602223429174223, 0.00254814296040143, 0.0025361757029763368, 0.0025243190232151435, 0.002512571401969134, 0.002500931347726046, 0.0024893973959851674, 0.0024779681086498236, 0.002466642073435738, 0.002455417903295373, 0.0024442942358577605, 0.0024332697328827858, 0.00242234307973025, 0.0024115129848426616, 0.0024007781792416043, 0.0023901374160372295, 0.002379589469950478, 0.0023691331368475535, 0.0023587672332865323, 0.002348490596075357, 0.0023383020818413098, 0.0023282005666112795, 0.0023181849454026494, 0.0023082541318244936, 0.0022984070576888816, 0.002288642672631698, 0.0022789599437430187, 0.002269357855206567, 0.0022598354079480386, 0.0022503916192923613, 0.002241025522628691, 0.0022317361670843314], "ChiouYoungs2014": [0.11191871626737421, 0.11191871626737421, 0.102553247225235, 0.09420066403663242, 0.08670999747449236, 0.07883387322643522, 0.07142896717591143, 0.06502232294347417, 0.05945929633705172, 0.05460838289127292, 0.050359198288550865, 0.046619776194682744, 0.043313760758593126, 0.04037779458083214, 0.037759230535973465, 0.03541419767163674, 0.033306001540881126, 0.031403818185734685, 0.02968163550799497, 0.02811739797315915, 0.02669231599373272, 0.025390307569249627, 0.024197545698076056, 0.02310209026662911, 0.022093587452316717, 0.0211613790193059, 0.020292194850565274, 0.0194808296095708, 0.01872307004545101, 0.01801493907558551, 0.01735271064216135, 0.016732913541058346, 0.016152327757206545, 0.015607975871803967, 0.015097111387610666, 0.014617205287554518, 0.014165931751720158, 0.013741153672756341, 0.01334090840239148, 0.012963394012056232, 0.012606956243227501, 0.012270076246900056, 0.011951359158090659, 0.011649523514444118, 0.011363391503130265, 0.011091880004133896, 0.010833992388040043, 0.010588811020941176, 0.010355490426642142, 0.010133251056016207, 0.009921373614481314, 0.00971919390060718, 0.009526098111425501, 0.0093415185729503, 0.009164929857389148, 0.008995845251598281, 0.008833813544231085, 0.008678416101890307, 0.008529264207204866, 0.008385996634253002, 0.008248277439031806, 0.008115793944766261, 0.007988254903791483, 0.007865388819485614, 0.007746942413318004, 0.007632679223535904, 0.007522378323307906, 0.007415833147325329, 0.007312850416931321, 0.007213249154802245, 0.007116859781075942, 0.007023523283600965, 0.006933090455677985, 0.006845421195302954, 0.006760383860487918, 0.006677854675746351, 0.006597717185296452, 0.006519861748947272, 0.006444185077010122, 0.006370589800913286, 0.006298984076509021, 0.006229281217328248, 0.006161399355293886, 0.006095261126625956, 0.006030793380874417, 0.005967926911196677, 0.005906596204171222, 0.00584673920757507, 0.005788297114705365, 0.005731214163934878, 0.005675437452312501, 0.005620916762115064, 0.005567604399356574, 0.005515455043335436, 0.005464425606385531, 0.005414475103061194, 0.005365564528049926, 0.005317656742167404, 0.005270716365837694, 0.005224709679513405, 0.005179604530529432, 0.005135370245931282, 0.00509197755084761, 0.005049398492014846, 0.005007606366091765, 0.004966575652427999, 0.004926281949978745, 0.004886701918078849, 0.00484781322081383, 0.004809594474742045, 0.0047720251997433105, 0.0047350857727846835, 0.004698757384409524, 0.004663021997768843, 0.004627862310032156, 0.0045932617160179155, 0.004559204273905306, 0.004525674672889803, 0.004492658202662035, 0.004460140724592256, 0.00442810864451451, 0.004396548887010593, 0.004365448871100752, 0.004334796487254891, 0.004304580075642817, 0.004274788405549836, 0.004245410655885694, 0.004216436396722788, 0.004187855571801854, 0.0041596584819479756, 0.004131835769343716, 0.0041043784026093665, 0.004077277662643044, 0.004050525129178106, 0.004024112668015792, 0.003998032418894989, 0.003972276783963687, 0.003946838416817895, 0.003921710212076327, 0.0038968852954617875, 0.0038723570143611554, 0.0038481189288372937, 0.0038241648030688884, 0.0038004885971955503, 0.00377708445954521, 0.003753946719224508, 0.0037310698790526415, 0.0037084486088206155, 0.003686077738858438, 0.0036639522538954284, 0.0036420672871965583, 0.0036204181149631755, 0.003599000150982237, 0.0035778089415128152, 0.0035568401603977857, 0.0035360896043888333, 0.003515553188674765, 0.003495226942602819, 0.0034751070055831865, 0.003455189623168672, 0.003435471143299398, 0.0034159480127067287, 0.0033966167734665923, 0.003377474059696616, 0.0033585165943892962, 0.0033397411863754097, 0.003321144727411394, 0.0033027241893842448, 0.0032844766216297235, 0.003266399148357617, 0.0032484889661791977, 0.0032307433417331673, 0.003213159609404341, 0.0031957351691318256, 0.0031784674843021153, 0.00316135407972385, 0.0031443925396798696, 0.0031275805060540407, 0.0031109156765286743, 0.003094395802850458, 0.0030780186891606748, 0.0030617821903882914, 0.0030456842107021167, 0.0030297227020201277, 0.0030138956625733303, 0.0029982011355219806, 0.0029826372076215213, 0.0029672020079370065, 0.0029518937066030154, 0.0029367105136280224, 0.002921650677740875, 0.0029067124852776268, 0.0028918942591076423, 0.0028771943575967643, 0.0028626111736063382, 0.002848143133526695, 0.0028337886963434814, 0.002819546352735845, 0.002805414624205185, 0.0027913920622326836, 0.002777477247465755, 0.0027636687889304973, 0.0027499653232713316, 0.0027363655140142462, 0.002722868050855564, 0.0027094716489725256, 0.0026961750483570006, 0.002682977013170168, 0.002669876331117892, 0.0026568718128461063, 0.0026439622913549668, 0.0026311466214318287, 0.0026184236791015705, 0.002605792361094264, 0.0025932515843291137, 0.0025808002854144294, 0.002568437420162658, 0.002556161963120519, 0.0025439729071130074, 0.002531869262801365, 0.0025198500582540736, 0.0025079143385308075, 0.0024960611652785933, 0.002484289616339952, 0.002472598785372463, 0.002460987781479383, 0.0024494557288511575, 0.00243800176641699, 0.0024266250475066765, 0.002415324739521919, 0.0024041000236171258, 0.0023929500943890114, 0.0023818741595752163, 0.002370871439761056, 0.002359941168094601, 0.0023490825900097127, 0.0023382949629563972, 0.0023275775561389517, 0.0023169296502609433, 0.002306350537277146, 0.0022958395201524303, 0.002285395912626746, 0.0022750190389866517, 0.0022647082338427614, 0.0022544628419132137, 0.0022442822178127832, 0.0022341657258474522, 0.002224112739814361, 0.002214122642806998, 0.002204194827025481, 0.002194328693591364, 0.0021845236523677387], "CampbellBozorgnia2014": [0.12378031409286668, 0.12378031409286668, 0.12066672662339682, 0.11577890731511227, 0.10965188890844306, 0.09970659737532503, 0.08980615301802629, 0.08153416120690149, 0.07451362436893462, 0.06848614673706749, 0.0632635427890584, 0.05870313580598251, 0.054693800781261015, 0.05114734867436362, 0.047992817225328145, 0.04517248186286304, 0.04263896032120123, 0.04035305341114036, 0.03828210291418924, 0.03639872425976881, 0.03467981708891891, 0.03310578539065372, 0.031659917777937134, 0.03032789142947792, 0.02909737238175535, 0.027955811852370817, 0.02688763613876259, 0.025886447971997212, 0.024947119277370502, 0.024064902322096734, 0.023235419436764677, 0.022454646050592303, 0.021718889860220518, 0.021024768090243156, 0.020369184178239033, 0.01974930476752034, 0.019162537570825464, 0.01860651044324575, 0.018079051846349708, 0.017578172778879336, 0.01710205017816196, 0.01664901175038514, 0.01621752215947967, 0.01580617048834165, 0.01541365887840611, 0.015038792251682441, 0.01468046902097426, 0.014337672698098351, 0.014009464315294764, 0.013694975581102215, 0.013393402698334046, 0.013104000778124956, 0.012826078790068975, 0.012558994994283052, 0.012302700797921244, 0.012058511130846798, 0.011823202113672167, 0.01159631976738699, 0.01137743918111011, 0.011166162337195903, 0.010962116116542853, 0.010764950468471809, 0.010574336730859033, 0.010389966087405925, 0.010211548150056876, 0.01003880965565018, 0.009871493266840023, 0.009709356468227187, 0.009552170549455301, 0.009399719667770546, 0.009251799983227286, 0.009108218860343277, 0.008968794130561723, 0.008833353410397904, 0.00870173347060658, 0.008573779652125085, 0.008449345324933206, 0.008328291386310178, 0.008210485795285912, 0.008095803140361952, 0.007984124237844894, 0.007875335758353629, 0.007769329879284359, 0.007666003961204661, 0.007565260246322246, 0.00746700557732822, 0.007371151135070606, 0.007277612193622381, 0.007186307891453438, 0.007097161017500087, 0.007010097811040856, 0.006925047774363284, 0.006841943497304097, 0.006760720492800305, 0.006681317042673653, 0.006603674052923587, 0.0065277349178609135, 0.006453445392472062, 0.006380753472443914, 0.006309609281328744, 0.006239964964361058, 0.006171774588486691, 0.006104994048184383, 0.006039580976699344, 0.005975494662335032, 0.005912695969472696, 0.005851147264016074, 0.005790812342975725, 0.005731656367933439, 0.005673645802139832, 0.005616748351019876, 0.005560932905875619, 0.005506169490589286, 0.005452429211141714, 0.005399684207781791, 0.005347907609679678, 0.0052970734919237745, 0.005247156834716762, 0.0051981334846464685, 0.0051499801179074834, 0.005102674205362693, 0.005056193979338507, 0.005010518402055714, 0.00496562713560344, 0.004921500513368588, 0.004878119512842373, 0.004835465729724808, 0.004793521353258295, 0.004752269142722403, 0.004711692405027176, 0.004671774973346112, 0.004632501186733686, 0.0045938558706742315, 0.004555824318515232, 0.004518392273736916, 0.004481545913015744, 0.004445271830041045, 0.004409557020046151, 0.004374388865017064, 0.004339755119545918, 0.004305643897296189, 0.0042720436580486135, 0.004238943195299933, 0.004206331624387748, 0.004174198371114448, 0.004142533160847055, 0.004111326008070026, 0.004080567206369162, 0.004050247318825718, 0.004020357168802656, 0.003990887831102432, 0.003961830623481979, 0.0039331770985053804, 0.0039049190357206805, 0.003877048434145273, 0.0038495575050457764, 0.003822438664999334, 0.0037956845292237583, 0.003769287905163823, 0.003743241786323877, 0.003717539346333573, 0.003692173933239308, 0.003667139064009002, 0.0036424284192426368, 0.003618035838078703, 0.0035939553132889723, 0.0035701809865532294, 0.0035467071439056336, 0.0035235282113471635, 0.0035006387506155284, 0.0034780334551066452, 0.0034557071459420485, 0.003433654768174977, 0.0034118713871305398, 0.003390352184873816, 0.0033690924568013847, 0.0033480876083502734, 0.0033273331518211178, 0.003306824703309293, 0.0032865579797415434, 0.003266528796012057, 0.003246733062215895, 0.0032271667809746236, 0.0032078260448513214, 0.0031887070338513786, 0.00316980601300565, 0.00315111933003277, 0.0031326434130781004, 0.0031143747685257865, 0.003096309978881666, 0.003078445700724236, 0.003060778662720831, 0.0030433056637072364, 0.0030260235708279063, 0.003008929317734804, 0.002992019902842511, 0.002975292387637819, 0.002958743895041725, 0.002942371607822067, 0.0029261727670545122, 0.0029101446706313043, 0.0028942846718142457, 0.0028785901778327558, 0.0028630586485227025, 0.002847687595007485, 0.002832474578417195, 0.0028174172086464946, 0.0028025131431489705, 0.002787760085766817, 0.0027731557855949687, 0.0027586980358780063, 0.002744384672939366, 0.0027302135751410945, 0.002716182661873754, 0.00270228989257492, 0.002688533265775824, 0.002674910818174734, 0.0026614206237367956, 0.002648060792818731, 0.0026348294713183437, 0.002621724839847326, 0.0026087451129271654, 0.0025958885382071977, 0.002583153395704062, 0.002570537997061922, 0.0025580406848327414, 0.0025456598317762143, 0.0025333938401783567, 0.002521241141188489, 0.0025092001941738927, 0.0024972694860917566, 0.002485447530877451, 0.0024737328688493603, 0.0024621240661289105, 0.0024506197140760633, 0.002439218428739469, 0.0024279188503206245, 0.0024167196426522425, 0.0024056194926897713, 0.0023946171100158874, 0.0023837112263579772, 0.002372900595117439, 0.0023621839909111655, 0.0023515602091243766, 0.0023410280654749334, 0.002330586395588271, 0.002320234054583065, 0.002309969916667042, 0.002299792874742847, 0.002289701840023723, 0.002279695741658191, 0.002269773526364435], "KothaEtAl2016Italy": [0.1083896094458672, 0.1083896094458672, 0.1083896094458672, 0.1083896094458672, 0.1083896094458672, 0.107471213654872, 0.10295246057078136, 0.09608563066723157, 0.0884733070896555, 0.08112338764728166, 0.07447333022881449, 0.0686290772912648, 0.06354880460611448, 0.0591402387551854, 0.055303624658033484, 0.05194794734468831, 0.04899548042636087, 0.046381716189863975, 0.04405373375652172, 0.04196824869024171, 0.04008980449841805, 0.03838924174125188, 0.03684245357370077, 0.03542939293128907, 0.03413328668574727, 0.032940014826888554, 0.031837619300635375, 0.03081591408815638, 0.029866174235996603, 0.028980886551866782, 0.028153548624798647, 0.027378505879705146, 0.026650818716169998, 0.025966153569170387, 0.025320693095335765, 0.024711061733852204, 0.024134263693841012, 0.023587631038984477, 0.02306878001939303, 0.02257557417368845, 0.022106093015934376, 0.021658605351315547, 0.02123154644555397, 0.020823498416850373, 0.020433173333857555, 0.02005939859517119, 0.019701104239860396, 0.01935731189854819, 0.019027125143229386, 0.018709721033773573, 0.018404342691654262, 0.01811029275826176, 0.01782692761728293, 0.017553652279043857, 0.017289915839935218, 0.017035207442881138, 0.016789052675428233, 0.01655101035110517, 0.01632066962721972, 0.01609764741872847, 0.01588158607323686, 0.015672151276818213, 0.015469030164308697, 0.01527192961111656, 0.01508057468646896, 0.01489470725054332, 0.014714084680065707, 0.014538478708818862, 0.014367674371127287, 0.014201469037765656, 0.014039671534976579, 0.013882101338327632, 0.013728587834072185, 0.013578969641489616, 0.01343309399039655, 0.01329081614863344, 0.013151998894900808, 0.01301651203278897, 0.012884231942283103, 0.012755041165399278, 0.012628828022955929, 0.012505486259766907, 0.012384914715820549, 0.012267017021244867, 0.012151701313066369, 0.012038879971955635, 0.011928469377337087, 0.01182038967936722, 0.011714564586445698, 0.01161092116702845, 0.011509389664628661, 0.011409903324987815, 0.011312398234492736, 0.011216813168984265, 0.011123089452188746, 0.011031170823058113, 0.010941003311370077, 0.010852535120992277, 0.010765716520261514, 0.010680499738976735, 0.010596838871539314, 0.010514689785819356, 0.010434010037352346, 0.010354758788503926, 0.010276896732271229, 0.010200386020409541, 0.010125190195600335, 0.010051274127396613, 0.009978603951702136, 0.009907147013555967, 0.00983687181301423, 0.009767747953934194, 0.009699746095479857, 0.009632837906178662, 0.009566996020379132, 0.0095021939969552, 0.00943840628013126, 0.009375608162293861, 0.009313775748678843, 0.009252885923819577, 0.009192916319656347, 0.009133845285211176, 0.009075651857737973, 0.009018315735265037, 0.008961817250451115, 0.008906137345683579, 0.008851257549347265, 0.008797159953202736, 0.008743827190811944, 0.008691242416955304, 0.008639389287987622, 0.008588251943081854, 0.008537814986315277, 0.008488063469553274, 0.008438982876090122, 0.008390559105006253, 0.008342778456207312, 0.008295627616109559, 0.008249093643938422, 0.008203163958611075, 0.008157826326173068, 0.008113068847762101, 0.008068879948072014, 0.008025248364295901, 0.007982163135520946, 0.007939613592556977, 0.00789758934817592, 0.007856080287744632, 0.007815076560230077, 0.007774568569563075, 0.007734546966339633, 0.007695002639849728, 0.007655926710413178, 0.007617310522012421, 0.007579145635207796, 0.007541423820321778, 0.007504137050881947, 0.007467277497309728, 0.007430837520844514, 0.007394809667694759, 0.007359186663401879, 0.00732396140741363, 0.007289126967852605, 0.007254676576475574, 0.007220603623812426, 0.007186901654480165, 0.007153564362662769, 0.007120585587749657, 0.007087959310128556, 0.007055679647124202, 0.007023740849077044, 0.006992137295559005, 0.006960863491716314, 0.0069299140647389795, 0.006899283760447976, 0.006868967439998592, 0.006838960076693061, 0.006809256752899558, 0.006779852657072823, 0.006750743080873317, 0.006721923416379457, 0.006693389153391475, 0.006665135876821916, 0.00663715926416987, 0.006609455083076118, 0.006582019188956103, 0.006554847522707417, 0.006527936108489533, 0.006501281051572758, 0.006474878536254369, 0.006448724823839055, 0.006422816250681239, 0.006397149226287679, 0.006371720231477619, 0.006346525816598682, 0.00632156259979651, 0.006296827265336197, 0.006272316561973643, 0.00624802730137587, 0.006223956356586632, 0.006200100660538659, 0.006176457204607798, 0.006153023037210687, 0.006129795262441138, 0.006106771038748008, 0.006083947577648602, 0.0060613221424805006, 0.006038892047187863, 0.006016654655141902, 0.005994607377995337, 0.005972747674567397, 0.005951073049761426, 0.005929581053511097, 0.005908269279756478, 0.005887135365447726, 0.005866176989576059, 0.005845391872231, 0.00582477777368324, 0.005804332493492006, 0.005784053869636315, 0.005763939777669391, 0.005743988129895469, 0.005724196874568506, 0.005704563995111736, 0.005685087509357579, 0.005665765468807773, 0.00564659595791196, 0.005627577093365701, 0.005608707023425872, 0.005589983927243762, 0.005571406014215507, 0.005552971523348305, 0.005534678722643279, 0.005516525908493443, 0.0054985114050968625, 0.005480633563884453, 0.0054628907629619364, 0.005445281406565498, 0.005427803924531063, 0.005410456771776254, 0.005393238427795256, 0.005376147396165814, 0.005359182204068104, 0.005342341401815191, 0.005325623562395028, 0.00530902728102297, 0.005292551174705172, 0.005276193881812268, 0.005259954061662994, 0.00524383039411812, 0.005227821579182794, 0.005211926336619448], "KothaEtAl2016Other": [0.10924887725925601, 0.10924887725925601, 0.10924887725925601, 0.10924887725925601, 0.10924887725925601, 0.10832320080780652, 0.10376862492574054, 0.09684735764626232, 0.08917468672848682, 0.08176650017693046, 0.07506372386477882, 0.06917314011684783, 0.06405259313950377, 0.059609078009227025, 0.05574204882872046, 0.052359769099126895, 0.049383896249124044, 0.04674941117516228, 0.044402973463815686, 0.04230095553795698, 0.04040761982063071, 0.03869357570810814, 0.037134525246290066, 0.03571026244589848, 0.034403881208268226, 0.03320114958563527, 0.032090014725435066, 0.03106020985830892, 0.03010294086299393, 0.029210634985732394, 0.028376738267142085, 0.0275955513050128, 0.026862095339827394, 0.02617200245185914, 0.025521425035424414, 0.024906960769664938, 0.024325590114315978, 0.023774623982768577, 0.023251659727753945, 0.022754543950915217, 0.02228134094150107, 0.021830305780502646, 0.021399861329078368, 0.02098857846505084, 0.020595159046887992, 0.0202184211772885, 0.01985728641311553, 0.01951076862888597, 0.01917796429008566, 0.018858043932656565, 0.01855024467785355, 0.018253863638697444, 0.017968252096552277, 0.017692810344913025, 0.017426983112835387, 0.01717025549338068, 0.016922149313150597, 0.016682219888130696, 0.016450053118638494, 0.0162252628826914, 0.016007488692575237, 0.015796393584061288, 0.015591662211720687, 0.015392999127191585, 0.015200127220164193, 0.01501278630439057, 0.014830731833180254, 0.014653733730716207, 0.014481575327164299, 0.014314052386938862, 0.01415097222073633, 0.013992152873001587, 0.013837422377433014, 0.013686618073950704, 0.01353958598127266, 0.013396180219862911, 0.01325626248058849, 0.01311970153489664, 0.012986372782764408, 0.01285615783504972, 0.012728944127224837, 0.012604624561756653, 0.012483097176678904, 0.012364264838139289, 0.012248034954912798, 0.012134319213060386, 0.012023033329097231, 0.011914096820163473, 0.011807432789850606, 0.011702967728443594, 0.011600631326455151, 0.011500356300426725, 0.01140207823006455, 0.011305735405849771, 0.011211268686347578, 0.011118621364495691, 0.0110277390422183, 0.010938569512764845, 0.010851062650220126, 0.010765170305680777, 0.010680846209627655, 0.010598045880069655, 0.010516726536060199, 0.010436847016221095, 0.01035836770193989, 0.010281250444926704, 0.010205458498844527, 0.010130956454746763, 0.010057710180076685, 0.009985686760998385, 0.00991485444784951, 0.009845182603519336, 0.009776641654569894, 0.009709203044928477, 0.009642839192000091, 0.009577523445044398, 0.009513230045690218, 0.0094499340904524, 0.009387611495139014, 0.009326238961033613, 0.009265793942751793, 0.00920625461767561, 0.009147599856875034, 0.009089809197432757, 0.009032862816093015, 0.008976741504162339, 0.008921426643590271, 0.00886690018416829, 0.008813144621784438, 0.008760142977677222, 0.008707878778635823, 0.008656336038095137, 0.008605499238079965, 0.008555353311953085, 0.008505883627926357, 0.008457075973293982, 0.008408916539352945, 0.008361391906974942, 0.008314489032796305, 0.008268195235996633, 0.008222498185635741, 0.008177385888522102, 0.008132846677585329, 0.008088869200731662, 0.00804544241015472, 0.008002555552083426, 0.00796019815694407, 0.007918360029918898, 0.00787703124187997, 0.007836202120684477, 0.007795863242810208, 0.007756005425321225, 0.007716619718142927, 0.00767769739663644, 0.00763922995445773, 0.007601209096687805, 0.007563626733223707, 0.007526474972417211, 0.0074897461149507905, 0.007453432647942332, 0.007417527239264368, 0.007382022732074424, 0.007346912139542046, 0.007312188639768184, 0.007277845570885592, 0.0072438764263356775, 0.007210274850312529, 0.007177034633366801, 0.007144149708165238, 0.007111614145397166, 0.007079422149822121, 0.007047568056455601, 0.007016046326882935, 0.006984851545700706, 0.0069539784170769454, 0.006923421761428314, 0.0068931765122074665, 0.006863237712797655, 0.006833600513509667, 0.006804260168678208, 0.006775212033852009, 0.006746451563076309, 0.006717974306262669, 0.006689775906643202, 0.006661852098306286, 0.006634198703810826, 0.006606811631875534, 0.006579686875141071, 0.006552820508001943, 0.006526208684506123, 0.006499847636319475, 0.00647373367075256, 0.006447863168848198, 0.006422232583527029, 0.006396838437789264, 0.006371677322970609, 0.006346745897050387, 0.006322040883009986, 0.006297559067240648, 0.006273297297996918, 0.006249252483897087, 0.006225421592465881, 0.006201801648721011, 0.006178389733798745, 0.006155182983621307, 0.006132178587600065, 0.00610937378737748, 0.006086765875603772, 0.006064352194748058, 0.006042130135943715, 0.006020097137864545, 0.0059982506856338024, 0.005976588309762052, 0.005955107585115118, 0.005933806129909879, 0.00591268160473756, 0.005891731711613499, 0.005870954193052744, 0.005850346831170341, 0.005829907446805705, 0.005809633898670325, 0.0057895240825180504, 0.005769575930337451, 0.0057497874095651744, 0.005730156522319841, 0.005710681304656303, 0.005691359825838515, 0.0056721901876319826, 0.0056531705236137295, 0.005634298998500116, 0.00561557380749211, 0.005596993175636493, 0.0055785553572038175, 0.005560258635081612, 0.0055421013201828765, 0.005524081750869354, 0.005506198292389073, 0.005488449336327655, 0.00547083330007342, 0.005453348626295218, 0.005435993782433295, 0.005418767260202385, 0.005401667575106757, 0.005384693265966961, 0.005367842894458192, 0.005351115044659253, 0.0053345083226125, 0.005318021355894136, 0.0053016527931945305, 0.005285401303908938, 0.00526926557773669, 0.005253244324291022], "KothaEtAl2016Turkey": [0.0723592890683649, 0.0723592890683649, 0.0723592890683649, 0.0723592890683649, 0.0723592890683649, 0.0717461817155519, 0.06872952945237001, 0.06414533607336895, 0.059063462219889916, 0.05415676545920515, 0.04971728616295016, 0.04581574993767204, 0.042424235551281504, 0.03948114264398934, 0.036919876209698624, 0.03467967600990211, 0.03270865306498841, 0.030963742986318092, 0.029409616583413976, 0.02801737781135641, 0.02676335644371929, 0.025628086072751327, 0.024595473327714588, 0.023652135086917037, 0.022786873859720617, 0.021990263337607553, 0.021254320501761605, 0.02057224531770677, 0.019938213136453286, 0.019347208262719462, 0.01879488978378036, 0.018277482789518892, 0.017791689676260422, 0.017334617420533546, 0.016903717620754016, 0.01649673680279323, 0.016111675021275505, 0.015746751201647514, 0.015400373987983109, 0.015071117110483517, 0.014757698481338595, 0.014458962380671554, 0.014173864215181308, 0.013901457428094519, 0.0136408822156244, 0.013391355766536429, 0.013152163790847595, 0.012922653143732261, 0.012702225383204242, 0.012490331126688169, 0.01228646509335159, 0.012090161736972145, 0.011900991388884256, 0.011718556842842533, 0.011542490323801757, 0.011372450791186033, 0.011208121534306698, 0.011049208023645866, 0.010895435986740734, 0.010746549681721406, 0.010602310345175633, 0.010462494794104755, 0.01032689416438476, 0.010195312770403565, 0.010067567072471641, 0.009943484740287799, 0.009822903802167637, 0.009705671870983978, 0.009591645438853252, 0.00948068923352229, 0.009372675630237729, 0.009267484113576951, 0.009165000784343577, 0.009065117907171892, 0.008967733494962613, 0.008872750926681458, 0.008780078595432467, 0.008689629584031494, 0.008601321365597662, 0.008515075526930146, 0.00843081751267052, 0.008348476388438926, 0.008267984621318104, 0.008189277876216709, 0.008112294826781713, 0.008036976979653668, 0.007963268510981645, 0.007891116114199286, 0.007820468858170384, 0.007751278054882251, 0.007683497135943145, 0.00761708153720422, 0.007551988590889156, 0.007488177424661085, 0.00742560886711355, 0.007364245359208735, 0.007304050871229993, 0.007244990824850737, 0.007187032019953247, 0.007130142565862718, 0.00707429181668516, 0.007019450310467898, 0.006965589711918522, 0.006912682758440517, 0.006860703209264146, 0.006809625797464898, 0.006759426184679865, 0.006710080918345814, 0.006661567391296418, 0.0066138638035660715, 0.006566949126261357, 0.006520803067370066, 0.006475406039387038, 0.006430739128643125, 0.006386784066236947, 0.006343523200466514, 0.0063009394706766255, 0.006259016382432498, 0.006217737983945433, 0.006177088843674158, 0.006137054029035124, 0.006097619086157871, 0.0060587700206253, 0.006020493279143447, 0.005982775732088193, 0.005945604656881161, 0.0059089677221471565, 0.005872852972612233, 0.005837248814700981, 0.0058021440027956695, 0.00576752762612217, 0.005733389096228553, 0.005699718135026096, 0.005666504763362741, 0.005633739290101941, 0.005601412301679791, 0.005569514652117327, 0.005538037453464319, 0.005506972066652382, 0.005476310092737988, 0.005446043364515339, 0.005416163938481172, 0.005386664087133475, 0.005357536291590092, 0.005328773234508862, 0.00530036779329732, 0.005272313033596695, 0.00524460220302853, 0.005217228725189882, 0.005190186193887875, 0.005163468367599639, 0.005137069164150845, 0.005110982655599243, 0.005085203063316421, 0.005059724753258144, 0.005034542231414259, 0.005009650139431313, 0.00498504325039925, 0.0049607164647952505, 0.004936664806579084, 0.004912883419430535, 0.004889367563126673, 0.004866112610049372, 0.004843114041820247, 0.004820367446055487, 0.004797868513237538, 0.004775613033697535, 0.004753596894703601, 0.004731816077652231, 0.004710266655357024, 0.0046889447894308935, 0.004667846727759757, 0.004646968802061069, 0.004626307425526895, 0.0046058590905455644, 0.004585620366500879, 0.004565587897644269, 0.004545758401037966, 0.00452612866456601, 0.004506695545011043, 0.004487455966193242, 0.004468406917170408, 0.004449545450495909, 0.004430868680532511, 0.004412373781820228, 0.004394057987496136, 0.004375918587763916, 0.004357952928411643, 0.004340158409375776, 0.004322532483350003, 0.004305072654437014, 0.004287776476841581, 0.004270641553603889, 0.004253665535371274, 0.004236846119207183, 0.004220181047436012, 0.004203668106522516, 0.004187305125984554, 0.004171089977338512, 0.00415502057307497, 0.0041390948656654936, 0.004123310846597404, 0.004107666545437607, 0.004092160028922256, 0.004076789400074129, 0.004061552797343705, 0.004046448393775909, 0.004031474396199863, 0.004016629044441457, 0.004001910610558591, 0.003987317398096828, 0.0039728477413667985, 0.0039585000047407115, 0.003944272581968788, 0.003930163895514143, 0.003916172395905883, 0.0039022965611097246, 0.003888534895915736, 0.003874885931342429, 0.0038613482240567936, 0.003847920355809798, 0.0038346009328868434, 0.003821388585572826, 0.003808281967631128, 0.0037952797557961942, 0.003782380649279602, 0.0037695833692884596, 0.003756886658556772, 0.0037442892808884046, 0.003731790020711878, 0.0037193876826467163, 0.003707081091080352, 0.003694869089756129, 0.0036827505413713937, 0.0036707243271857323, 0.0036587893466389753, 0.0036469445169786553, 0.0036351887728966166, 0.003623521066174706, 0.003611940365338938, 0.003600445655322275, 0.0035890359371355054, 0.003577710227546049, 0.0035664675587644963, 0.003555306978138858, 0.0035442275478558246, 0.0035332283446493024, 0.0035223084595158052, 0.003511466997436486, 0.003500703077106056, 0.003490015830667312, 0.003479404403452719], "ZhaoEtAl2016Asc": [0.10511857814687559, 0.10511857814687559, 0.09489377032955314, 0.08617897974611852, 0.07868680147380307, 0.07219548813070258, 0.06653168496851737, 0.061558247962655646, 0.05716550186054902, 0.05326486984483783, 0.04978416606194002, 0.04666407215722657, 0.04385546883287805, 0.041317392919596234, 0.0390154575744746, 0.03692061919952344, 0.03500820662150676, 0.033257150560100084, 0.031649367431930815, 0.03016926308167349, 0.028803330438012476, 0.027539821275193697, 0.026368476850851624, 0.025280305628149282, 0.02426739888597042, 0.023320712140221335, 0.022427157897660564, 0.02158315975138614, 0.020786047137761013, 0.020033149226340998, 0.019321845053019836, 0.018649597676832354, 0.018013976403939917, 0.017425810917520962, 0.016869201464499196, 0.01634165793208982, 0.015841337858372665, 0.015366516261591145, 0.014915581477604257, 0.014487030039535177, 0.014079460995784762, 0.013691569953767859, 0.013322143054849557, 0.012970051024752648, 0.012634243398014063, 0.012313742981370206, 0.012007640596022124, 0.011715090120697439, 0.011435303844382858, 0.01116754812836192, 0.010911139370796831, 0.010665440262818371, 0.010429856322303381, 0.010203832689964425, 0.009986851171534588, 0.00977842750968946, 0.00957810886950991, 0.009385471521837958, 0.009200118709514649, 0.009021678682312424, 0.008849802887225902, 0.008684164301647226, 0.00852445589785496, 0.008370389228086972, 0.008221693120284465, 0.008078112475395666, 0.007939407157846651, 0.007805350971482616, 0.007675730713923469, 0.007550345302867322, 0.007429004968425354, 0.007311530506077731, 0.0071977525852944535, 0.0070875111092977856, 0.006980654621826281, 0.0068770397571139225, 0.006776530729626592, 0.006678998860388628, 0.006584322137004796, 0.006492384804725931, 0.006403076986138035, 0.006316294327247472, 0.006231937667931624, 0.0061499127348893295, 0.006070129855381406, 0.00599250369018994, 0.005916952984363431, 0.005843400334415516, 0.005771771970772805, 0.005701997554347665, 0.005634009986213288, 0.005567745229431111, 0.005503142142166673, 0.005440142321284779, 0.0053786899556891666, 0.005318731688723842, 0.005260216489004289, 0.005203095529101166, 0.005147322071535692, 0.005092851361593798, 0.005039640526494251, 0.004987648480493108, 0.004936835835524222, 0.004887164817014361, 0.004838599184534042, 0.004791104156969831, 0.0047446463419281125, 0.0046991936690982125, 0.004654715327325768, 0.004611181705160587, 0.004568564334663295, 0.004526835838268286, 0.004485969878514869, 0.004445941110469334, 0.004406725136679341, 0.004368298464501504, 0.004330638465666599, 0.004293723337944392, 0.004257532068788083, 0.0042220444008398686, 0.00418724079919072, 0.00415310242029261, 0.004119611082428919, 0.0040867492376541175, 0.004054499945118793, 0.004022846845704263, 0.003991774137891588, 0.003961266554798035, 0.0039313093423162145, 0.003901888238295977, 0.003872989452711986, 0.0038445996487646785, 0.0038167059248633206, 0.0037892957974460734, 0.003762357184591117, 0.0037358783903782937, 0.0037098480899619233, 0.003684255315317902, 0.0036590894416302193, 0.0036343401742845102, 0.0036099975364380144, 0.0035860518571359102, 0.0035624937599472726, 0.0035393141520952574, 0.003516504214055773, 0.003494055389602532, 0.003471959376276403, 0.003450208116258343, 0.0034287937876263156, 0.0034077087959783663, 0.003386945766402974, 0.003366497535782263, 0.0033463571454103542, 0.0033265178339133648, 0.00330697303045654, 0.0032877163482252707, 0.0032687415781672757, 0.003250042682984313, 0.0032316137913615548, 0.0032134491924246055, 0.003195543330412786, 0.003177890799560541, 0.0031604863391762076, 0.003143324828910423, 0.0031264012842052553, 0.0031097108519166365, 0.0030932488061022564, 0.003077010543967489, 0.003060991581963478, 0.0030451875520297726, 0.003029594197975994, 0.003014207371996766, 0.0029990230313137593, 0.0029840372349400493, 0.0029692461405613434, 0.0029546460015295872, 0.002940233163963799, 0.0029260040639543998, 0.0029119552248662037, 0.0028980832547367058, 0.002884384843764939, 0.002870856761888373, 0.00285749585644338, 0.0028442990499064516, 0.0028312633377129805, 0.0028183857861503064, 0.0028056635303222487, 0.0027930937721825214, 0.0027806737786340214, 0.0027684008796917854, 0.0027562724667070364, 0.0027442859906497154, 0.002732438960447933, 0.002720728941381596, 0.0027091535535284234, 0.002697710470260329, 0.0026863974167883877, 0.0026752121687545092, 0.0026641525508681483, 0.0026532164355861825, 0.0026424017418350447, 0.0026317064337723775, 0.002621128519588345, 0.0026106660503433894, 0.0026003171188431766, 0.0025900798585472757, 0.0025799524425120617, 0.0025699330823657322, 0.0025600200273145947, 0.002550211563179494, 0.002540506011461333, 0.002530901728434655, 0.0025213971042683855, 0.002511990562172723, 0.00250268055757131, 0.0024934655772978495, 0.002484344138816242, 0.0024753147894637393, 0.0024663761057158594, 0.002457526692472846, 0.002448765182366512, 0.002440090235087094, 0.0024315005367294244, 0.0024229947991576167, 0.0024145717593877713, 0.0024062301789881785, 0.0023979688434963157, 0.002389786561852177, 0.002381682165847368, 0.0023736545095895457, 0.002365702468981659, 0.0023578249412153736, 0.0023500208442785837, 0.0023422891164762054, 0.0023346287159640186, 0.0023270386202952505, 0.002319517825979065, 0.0023120653480512843, 0.0023046802196563286, 0.0022973614916402484, 0.002290108232154791, 0.002282919526271665, 0.002275794475607062, 0.002268732197955945, 0.002261731826935979, 0.0022547925116406177, 0.0022479134163011748, 0.0022410937199575814, 0.0022343326161376542, 0.0022276293125445892, 0.002220983030752183, 0.0022143930059081566], "BindiEtAl2017Rjb": [0.12792228822722354, 0.12792228822722354, 0.12792228822722354, 0.12792228822722354, 0.12792228822722354, 0.12709859866797432, 0.12292212250643907, 0.11618098046544009, 0.10815849490495485, 0.09988613804375995, 0.09198853433809034, 0.08475823024174751, 0.07828252813155015, 0.07254256100108163, 0.06747339390798136, 0.06299580859233322, 0.05903141815729469, 0.055508957117344083, 0.05236622575082592, 0.04955004621892049, 0.04701540937630596, 0.04472437552416614, 0.04264498229258293, 0.04075026124595428, 0.039017393268191904, 0.037427000914308596, 0.03596256328481526, 0.03460993538509419, 0.0333569543396722, 0.032193116804058994, 0.031109314312295137, 0.030097615612966734, 0.029151087086596045, 0.02826364405412689, 0.02742992719439893, 0.026645199426785282, 0.025905259527601986, 0.025206369477403606, 0.024545193116710835, 0.02391874415039184, 0.02332434191006463, 0.022759573579073142, 0.022222261821179732, 0.021710436944370665, 0.021222312884614878, 0.020756266418612664, 0.020310819115376227, 0.019884621618741348, 0.01947643992008935, 0.019085143335734148, 0.018709693948876328, 0.018349137313580087, 0.018002594249333863, 0.017669253580713487, 0.017348365698210015, 0.017039236834474884, 0.016741223965337733, 0.016453730257850643, 0.016176200998347566, 0.0159081199427307, 0.015649006038954152, 0.01539841047830142, 0.015155914037734393, 0.014921124680437355, 0.014693675385820587, 0.014473222183860974, 0.014259442371726777, 0.014052032893300833, 0.0138507088645473, 0.013655202229649157, 0.013465260534617949, 0.013280645806578987, 0.013101133528274285, 0.012926511698488326, 0.012756579970127252, 0.012591148858563614, 0.012430039013669682, 0.012273080549639197, 0.012120112427321299, 0.011970981884327119, 0.011825543908664077, 0.011683660752060347, 0.0115452014795353, 0.01141004155210905, 0.01127806243983941, 0.01114915126264107, 0.011023200456599179, 0.010900107463676454, 0.010779774442934074, 0.010662108001539737, 0.010547018943999703, 0.010434422038189324, 0.010324235796887293, 0.010216382273620771, 0.010110786871745846, 0.01000737816576776, 0.00990608773399658, 0.009806850001707878, 0.00970960209404525, 0.009614283697967655, 0.009520836932594796, 0.009429206227364996, 0.009339338207458504, 0.009251181585984631, 0.009164687062473994, 0.00907980722724637, 0.008996496471262407, 0.00891471090109491, 0.008834408258684626, 0.008755547845566399, 0.008678090451279588, 0.008601998285695009, 0.008527234915010463, 0.008453765201182245, 0.00838155524458522, 0.00831057232969309, 0.008240784873604336, 0.008172162377232835, 0.0081046753790101, 0.008038295410944387, 0.007972994956900455, 0.007908747412969406, 0.00784552704980691, 0.007783308976826844, 0.0077220691081438505, 0.007661784130167408, 0.0076024314707520135, 0.007543989269819328, 0.007486436351369448, 0.007429752196805546, 0.007373916919500785, 0.007318911240539417, 0.00726471646557021, 0.007211314462712779, 0.0071586876414614295, 0.007106818932533111, 0.0070556917686122565, 0.007005290065945312, 0.006955598206740637, 0.00690660102233472, 0.006858283777084646, 0.006810632152950949, 0.006763632234735381, 0.006717270495944394, 0.006671533785243376, 0.006626409313476324, 0.006581884641221643, 0.006537947666860028, 0.006494586615127396, 0.006451790026133576, 0.006409546744820262, 0.006367845910843228, 0.006326676948853544, 0.006286029559163194, 0.006245893708776479, 0.006206259622769545, 0.006167117776004038, 0.006128458885158463, 0.006090273901063197, 0.006052554001327899, 0.006015290583243608, 0.005978475256953848, 0.00594209983887717, 0.005906156345374627, 0.0058706369866482, 0.005835534160863482, 0.0058008404484851195, 0.005766548606815619, 0.005732651564731462, 0.005699142417605886, 0.00566601442241076, 0.005633260992992981, 0.0056008756955136995, 0.0055688522440482556, 0.005537184496336742, 0.005505866449681959, 0.005474892236986693, 0.005444256122925988, 0.005413952500248702, 0.005383975886203822, 0.005354320919085187, 0.005324982354891976, 0.005295955064099157, 0.0052672340285337925, 0.0052388143383536685, 0.005210691189124242, 0.005182859878989739, 0.005155315805935318, 0.0051280544651366045, 0.005101071446393798, 0.005074362431646734, 0.005047923192567902, 0.005021749588231139, 0.0049958375628526746, 0.004970183143602155, 0.004944782438481117, 0.004919631634266329, 0.00489472699451585, 0.004870064857636077, 0.004845641635005877, 0.004821453809158605, 0.004797497932016862, 0.004773770623181217, 0.004750268568267718, 0.004726988517296532, 0.004703927283125462, 0.004681081739930924, 0.004658448821731904, 0.00463602552095663, 0.0046138088870510815, 0.004591796025125903, 0.004569984094643361, 0.004548370308140127, 0.004526951929986826, 0.004505726275181964, 0.004484690708179578, 0.0044638426417494045, 0.0044431795358686734, 0.00442269889664427, 0.0044023982752643505, 0.004382275266978553, 0.00436232751010583, 0.004342552685069275, 0.004322948513456628, 0.004303512757105874, 0.0042842432172156796, 0.004265137733478567, 0.004246194183237919, 0.004227410480666348, 0.0042087845759659044, 0.004190314454589316, 0.004171998136480819, 0.004153833675337224, 0.004135819157887594, 0.0041179527031914185, 0.004100232461954771, 0.0040826566158637225, 0.004065223376934541, 0.004047930986880476, 0.004030777716494044, 0.004013761865045081, 0.003996881759693503, 0.0039801357549166345, 0.0039635222319506155, 0.003947039598245767, 0.003930686286934847, 0.003914460756314556, 0.003898361489339407, 0.003882386993127824, 0.0038665357984805503, 0.003850806459409568, 0.0038351975526794467]}, "ylabel": "Mean SA(2.0) (g)"}, {"column": 1, "row": 1, "yvalues": {"AkkarBommer2010": [0.0541431223502936, 0.0541431223502936, 0.0541431223502936, 0.0541431223502936, 0.0541431223502936, 0.05394448422975947, 0.05290908822443523, 0.05113513331293712, 0.04885041465269455, 0.0462867830197325, 0.04363423871871626, 0.04102561539519119, 0.0385416514542819, 0.03622395279382945, 0.03408811138982074, 0.0321339806182398, 0.03035274528902349, 0.028731406785823446, 0.02725545926076106, 0.025910395459305586, 0.024682492905075425, 0.023559174628013105, 0.022529127731092086, 0.02158229047177637, 0.020709773027265403, 0.019903749365685904, 0.019157341049425288, 0.018464504028919252, 0.01781992383177803, 0.017218921349559897, 0.016657369667072673, 0.01613162146410349, 0.0156384460884288, 0.015174975239712297, 0.01473865619197032, 0.014327211545383639, 0.013938604594943558, 0.013571009510827407, 0.013222785631028683, 0.012892455264658443, 0.012578684491851712, 0.012280266522800065, 0.011996107244475567, 0.011725212640072877, 0.011466677814146878, 0.011219677397001072, 0.010983457136102532, 0.010757326511205053, 0.01054065223417203, 0.010332852515003238, 0.010133391992876663, 0.009941777245628834, 0.009757552803434112, 0.009580297602935522, 0.009409621826913305, 0.009245164082167804, 0.009086588874661372, 0.008933584346491734, 0.008785860243906424, 0.008643146089608743, 0.00850518953603147, 0.00837175487920942, 0.00824262171543992, 0.008117583725117396, 0.007996447570019924, 0.007879031891990818, 0.007765166402379283, 0.007654691052848508, 0.007547455279253234, 0.00744331731122317, 0.007342143540931192, 0.0072438079452399025, 0.007148191556061735, 0.00705518197432748, 0.006964672923452903, 0.006876563838620838, 0.006790759488591117, 0.006707169627081058, 0.006625708671065479, 0.006546295403608553, 0.006468852699084989, 0.006393307268848362, 0.0063195894256005535, 0.006247632864883723, 0.006177374462263764, 0.006108754084907012, 0.0060417144163817365, 0.005976200793609245, 0.005912161055001035, 0.005849545398895955, 0.005788306251493411, 0.005728398143548957, 0.005669777595164703, 0.005612403008058776, 0.005556234564757923, 0.005501234134198102, 0.005447365183264477, 0.005394592693840156, 0.005342883084967401, 0.005292204139758968, 0.005242524936723098, 0.00519381578519723, 0.005146048164605245, 0.005099194667276529, 0.005053228944587264, 0.005008125656199646, 0.004963860422193887, 0.004920409777902482, 0.0048777511312712305, 0.004835862722582165, 0.0047947235863884385, 0.004754313515520646, 0.00471461302703422, 0.004675603329975701, 0.00463726629485882, 0.004599584424740708, 0.0045625408278062935, 0.004526119191365635, 0.004490303757183397, 0.004455079298058974, 0.004420431095585224, 0.004386344919017046, 0.004352807005185441, 0.004319804039397347, 0.004287323137264975, 0.004255351827413219, 0.004223878035014418, 0.004192890066106253, 0.004162376592648652, 0.004132326638279705, 0.004102729564732919, 0.004073575058879603, 0.0040448531203637955, 0.00401655404979793, 0.003988668437490136, 0.0039611871526746304, 0.0039341013332201665, 0.003907402375791582, 0.0038810819264407355, 0.003855131871606199, 0.003829544329500359, 0.0038043116418648884, 0.0037794263660756726, 0.0037548812675817205, 0.00373066931265938, 0.0037067836614685166, 0.0036832176613948546, 0.0036599648406658767, 0.003637018902225775, 0.0036143737178591664, 0.0035920233225495354, 0.003569961909064366, 0.00354818382275346, 0.0035266835565527176, 0.0035054557461834507, 0.0034844951655377873, 0.0034637967222426735, 0.0034433554533938025, 0.003423166521451886, 0.0034032252102952705, 0.0033835269214195526, 0.00336406717028097, 0.0033448415827743916, 0.0033258458918422624, 0.003307075934207192, 0.0032885276472244505, 0.0032701970658483757, 0.003252080319707575, 0.003234173630285746, 0.0032164733082023656, 0.003198975750589284, 0.003181677438560727, 0.0031645749347704033, 0.003147664881054768, 0.003130943996156796, 0.0031144090735287532, 0.0030980569792095672, 0.0030818846497744057, 0.003065889090353604, 0.0030500673727182756, 0.003034416633429417, 0.0030189340720490174, 0.0030036169494099827, 0.0029884625859428345, 0.002973468360057198, 0.0029586317065759143, 0.002943950115219629, 0.0029294211291401445, 0.002915042343500589, 0.002900811404100863, 0.002886726006046484, 0.002872783892459187, 0.002858982853228054, 0.0028453207237994376, 0.0028317953840043424, 0.002818404756921965, 0.002805146807778003, 0.0027920195428765243, 0.0027790210085645657, 0.0027661492902272965, 0.0027534025113141835, 0.002740778832393441, 0.002728276450235399, 0.0027158935969219897, 0.002703628538983664, 0.002691479576560339, 0.002679445042587742, 0.002667523302006903, 0.0026557127509963746, 0.002644011816227003, 0.0026324189541372476, 0.0026209326502298898, 0.0026095514183880467, 0.0025982738002108085, 0.002587098364367347, 0.002576023705969065, 0.0025650484459591783, 0.0025541712305192773, 0.0025433907304921134, 0.0025327056408201935, 0.002522114679999711, 0.00251161658954928, 0.002501210133493082, 0.002490894097857857, 0.002480667290183281, 0.0024705285390456554, 0.002460476693593842, 0.0024505106230978766, 0.0024406292165091185, 0.0024308313820320406, 0.0024211160467073204, 0.0024114821560054216, 0.002401928673431026, 0.002392454580137419, 0.002383058874550815, 0.0023737405720042895, 0.002364498704380982, 0.002355332319766281, 0.002346240482108897, 0.002337222270890239, 0.0023282767808022495, 0.002319403121433117, 0.002310600416960776, 0.002301867805853971, 0.002293204440580808, 0.0022846094873241705, 0.0022760821257042864, 0.0022676215485078746, 0.0022592269614238715, 0.00225089758278575, 0.0022426326433194403, 0.002234431385897973], "CauzziFaccioli2008": [0.04330562455448737, 0.04330562455448737, 0.04330562455448737, 0.04330562455448737, 0.04330562455448737, 0.04330562455448737, 0.04330562455448737, 0.04330562455448737, 0.04330562455448737, 0.04330562455448737, 0.04330562455448737, 0.04330562455448737, 0.04330562455448737, 0.04330562455448737, 0.04330562455448737, 0.04274883939232329, 0.03964713032392185, 0.03690398429082242, 0.034466206166770305, 0.03228969131604041, 0.030337782740174873, 0.028579906047743582, 0.026990454099897178, 0.02554788341908174, 0.024233984842096025, 0.02303329520532682, 0.021932622193911427, 0.020920659630928803, 0.019987674969400234, 0.019125254476008685, 0.01832609460840663, 0.017583830487366565, 0.016892894260067435, 0.01624839764103481, 0.015646034087473944, 0.01508199698487111, 0.014552910941688242, 0.014055773862105991, 0.013587907916434029, 0.013146917886447911, 0.012730655647566968, 0.012337189777270424, 0.011964779461586854, 0.011611852018404704, 0.011276983475051744, 0.010958881733946423, 0.010656371938507464, 0.010368383715660397, 0.010093940023843902, 0.009832147378712476, 0.00958218726448699, 0.009343308568563762, 0.00911482090161119, 0.008896088685980807, 0.00868652591243201, 0.008485591479656884, 0.008292785043206935, 0.008107643310739689, 0.007929736729154422, 0.007758666516597935, 0.00759406199859422, 0.007435578212904055, 0.0072828937523268895, 0.007135708818581308, 0.006993743463774672, 0.006856735998906436, 0.006724441551349391, 0.006596630755436273, 0.006473088562171415, 0.006353613155720487, 0.006238014965769169, 0.0061261157660838506, 0.0060177478506942125, 0.005912753280080799, 0.005810983190580554, 0.005712297160960447, 0.005616562630761579, 0.005523654365582206, 0.005433453964975287, 0.005345849409080913, 0.005260734640514809, 0.005178009178375875, 0.005097577761555842, 0.005019350018808314, 0.004943240163282454, 0.004869166709444068, 0.004797052210514048, 0.004726823014714947, 0.004658409038791574, 0.004591743557400156, 0.004526763007096208, 0.004463406803760269, 0.004401617172410707, 0.004341338988436649, 0.00428251962937692, 0.004225108836441526, 0.004169058585040839, 0.004114322963653896, 0.004060858060417437, 0.004008621856874517, 0.003957574128361198, 0.003907676350559701, 0.003858891611777907, 0.003811184530553198, 0.0037645211782109805, 0.003718869006034925, 0.0036741967767351252, 0.0036304744999219513, 0.0035876733713186303, 0.003545765715462091, 0.0035047249316634923, 0.0034645254430157764, 0.003425142648250549, 0.003386552876261005, 0.0033487333431233687, 0.003311662111456356, 0.0032753180519756522, 0.0032396808071043933, 0.00320473075651628, 0.003170448984490553, 0.003136817248971684, 0.003103817952230125, 0.003071434113029639, 0.003039649340212178, 0.0030084478076167183, 0.002977814230256289, 0.0029477338416781396, 0.0029181923724421223, 0.002889176029652115, 0.0028606714774816397, 0.002832665818638577, 0.002805146576716608, 0.0027781016793840935, 0.0027515194423660323, 0.00272538855417478, 0.0026996980615497405, 0.0026744373555683764, 0.002649596158392735, 0.002625164510617897, 0.0026011327591912037, 0.0025774915458726495, 0.0025542317962081603, 0.002531344708989655, 0.002508821746177921, 0.0024866546232635285, 0.002464835300045056, 0.002443355971803249, 0.002422209060852032, 0.002401387208446894, 0.002380883267034674, 0.002360690292826474, 0.0023408015386801144, 0.0023212104472754382, 0.00230191064456969, 0.002282895933519658, 0.0022641602880576085, 0.0022456978473095325, 0.002227502910044505, 0.002209569929344144, 0.0021918935074829596, 0.0021744683910085148, 0.002157289466014362, 0.002140351753595177, 0.0021236504054773786, 0.00210718069981648, 0.0020909380371545746, 0.002074917936530644, 0.002059116031736436, 0.0020435280677129977, 0.0020281498970804845, 0.002012977476795916, 0.0019980068649342177, 0.0019832342175859097, 0.0019686557858680327, 0.0019542679130422117, 0.0019400670317366946, 0.0019260496612669004, 0.0019122124050513617, 0.0018985519481183645, 0.0018850650547005388, 0.0018717485659127512, 0.0018585993975108821, 0.0018456145377277427, 0.0018327910451832164, 0.0018201260468656607, 0.0018076167361819253, 0.0017952603710729008, 0.0017830542721925893, 0.0017709958211477982, 0.001759082458796283, 0.0017473116836013082, 0.0017356810500399056, 0.001724188167063548, 0.0017128306966086543, 0.0017016063521553405, 0.0016905128973326003, 0.0016795481445680397, 0.0016687099537807545, 0.0016579962311156506, 0.001647404927717474, 0.0016369340385436943, 0.0016265816012139358, 0.0016163456948958433, 0.0016062244392245429, 0.0015962159932562928, 0.0015863185544533062, 0.001576530357700165, 0.0015668496743496663, 0.0015572748112975552, 0.0015478041100852426, 0.0015384359460289274, 0.0015291687273751295, 0.0015200008944808094, 0.0015109309190178917, 0.001501957303201015, 0.001493078579037859, 0.0014842933076012201, 0.0014756000783222652, 0.0014669975083039725, 0.001458484241654401, 0.0014500589488388102, 0.0014417203260503448, 0.001433467094598473, 0.001425298000314563, 0.001417211812974196, 0.0014092073257355956, 0.0014012833545935868, 0.0013934387378487618, 0.0013856723355911086, 0.0013779830291979528, 0.0013703697208455594, 0.0013628313330338684, 0.0013553668081243233, 0.0013479751078899667, 0.0013406552130776706, 0.001333406122982096, 0.0013262268550308974, 0.0013191164443809946, 0.001312073943525467, 0.0013050984219107277, 0.0012981889655638303, 0.001291344676729334, 0.0012845646735156872, 0.0012778480895506803, 0.0012711940736458746, 0.0012646017894695119, 0.001258070415227809, 0.0012515991433543635, 0.0012451871802073914, 0.0012388337457747308, 0.0012325380733859527, 0.0012262994094320513], "ChiouYoungs2008": [0.06258916779745213, 0.06258916779745213, 0.05665611341737181, 0.051558878259273966, 0.04714172217011715, 0.04296136420051584, 0.039170061657536726, 0.0358669351070463, 0.032974830789654526, 0.03043084585552616, 0.028183306596841214, 0.02618947876516006, 0.024413809011801905, 0.02282655756360029, 0.021402723485252132, 0.020121191917396294, 0.01896405193595719, 0.017916047078403552, 0.016964130052908512, 0.016097099953393573, 0.015305305281095352, 0.014580399773226692, 0.01391514083071524, 0.013303222470321065, 0.012739136374827428, 0.012217064436458737, 0.01172950845738378, 0.01127374991862903, 0.010847606303598541, 0.010448986157252569, 0.010075906640513999, 0.009726502844786034, 0.009399031301794177, 0.00909186948552544, 0.008803512621724626, 0.008532568760210519, 0.008277752797283341, 0.008037879937288795, 0.007811858936402523, 0.007598685364823808, 0.007397435045692949, 0.007207257772738995, 0.007027371368222431, 0.006857056114052973, 0.006695649568821015, 0.006542541769690971, 0.006397170808805392, 0.006259018767921068, 0.006127607991406302, 0.006002497675820551, 0.005883280753577266, 0.005769581048282982, 0.005661050679957101, 0.0055573676993345604, 0.005458233931610825, 0.00536337301130869, 0.005272528591252782, 0.005185462709988675, 0.005101954303248272, 0.005021797846304784, 0.004944802115212726, 0.004870789055999428, 0.004799592751882831, 0.004731058479502596, 0.004665041845990228, 0.004601407999480139, 0.004540030906355917, 0.00448079268916361, 0.004423583019700473, 0.0043682985623065395, 0.004314842462860243, 0.004263123879405066, 0.004213057550716732, 0.004164563399470847, 0.004117566166983126, 0.004071995076776363, 0.0040277835244863424, 0.0039848687918467305, 0.003943191782702753, 0.003902696779189788, 0.0038633312163861627, 0.0038250454738979053, 0.0037877926829757206, 0.003751528547888527, 0.003716211180391428, 0.0036818009462271845, 0.003648260322697826, 0.0036155537664198313, 0.0035836475904613536, 0.0035525098501221473, 0.003522110236684099, 0.0034924199785146817, 0.003463411748961169, 0.0034350595805156974, 0.00340733878477903, 0.0033802258777873373, 0.0033536985103019092, 0.003327735402696438, 0.0033023162841031893, 0.0032774218355092286, 0.00325303363651537, 0.0032291341154976404, 0.003205706502926882, 0.0031827347876241183, 0.003160203675745799, 0.0031380985523084045, 0.00311640544507736, 0.0030951109906572857, 0.003074202402634499, 0.003053667441631987, 0.003033494387148946, 0.003013672011066042, 0.0029941895527058177, 0.0029750366953454686, 0.0029562035440890808, 0.002937680605008512, 0.0029194587654739193, 0.002901529275595794, 0.0028838837307096597, 0.0028665140548363856, 0.0028494124850579313, 0.0028325715567512058, 0.002815984089627207, 0.002799643174526276, 0.002783542160922701, 0.0027676746450969727, 0.0027520344589342326, 0.0027366156593126743, 0.002721412518046251, 0.0027064195123493247, 0.002691631315792693, 0.002677042789722463, 0.002662648975114823, 0.002648445084842237, 0.0026344264963270993, 0.0026205887445611264, 0.0026069275154699755, 0.0025934386396037927, 0.002580118086135309, 0.00256696195714902, 0.0025539664822052314, 0.0025411280131637727, 0.002528443019253623, 0.002515908082375413, 0.002503519892623734, 0.002491275244018108, 0.0024791710304314526, 0.0024672042417056665, 0.002455371959944422, 0.0024436713559745035, 0.00243209968596601, 0.0024206542882047014, 0.0024093325800073487, 0.0023981320547737496, 0.0023870502791682483, 0.0023760848904242618, 0.0023652335937657215, 0.0023544941599398152, 0.002343864422855179, 0.0023333422773210225, 0.002322925676881386, 0.0023126126317410908, 0.00230240120677783, 0.002292289519637206, 0.0022822757389060807, 0.0022723580823611196, 0.0022625348152887762, 0.0022528042488730725, 0.002243164738648677, 0.002233614683015834, 0.002224152521814153, 0.0022147767349532522, 0.002205485841096963, 0.0021962783963990957, 0.002187152993288271, 0.0021781082592998804, 0.00216914285595262, 0.0021602554776682433, 0.002151444850732063, 0.002142709732292945, 0.002134048909400509, 0.0021254611980785943, 0.002116945442432814, 0.0021085005137911972, 0.0021001253098762297, 0.0020918187540072387, 0.002083579794331443, 0.002075407403082992, 0.002067300575868359, 0.0020592583309773376, 0.00205127970871842, 0.002043363770777488, 0.00203550959959916, 0.0020277162977895796, 0.0020199829875399687, 0.0020123088100699677, 0.0020046929250901206, 0.001997134510282644, 0.0019896327607999056, 0.0019821868887795607, 0.00197479612287634, 0.0019674597078089395, 0.0019601769039225506, 0.0019529469867651176, 0.0019457692466782364, 0.0019386429884007813, 0.0019315675306857889, 0.0019245422059295623, 0.001917566359812663, 0.0019106393509524889, 0.0019037605505667179, 0.0018969293421475966, 0.0018901451211462857, 0.0018834072946672083, 0.0018767152811718169, 0.0018700685101916007, 0.0018634664220498318, 0.0018569084675920007, 0.0018503941079242767, 0.0018439228141600768, 0.0018374940671740689, 0.0018311073573637662, 0.0018247621844181018, 0.0018184580570929365, 0.0018121944929932127, 0.0018059710183614126, 0.001799787167872366, 0.0017936424844338479, 0.0017875365189931258, 0.0017814688303489311, 0.0017754389849689418, 0.001769446556812362, 0.0017634911271576445, 0.001757572284434992, 0.0017516896240636025, 0.0017458427482935149, 0.001740031266051691, 0.0017342547927926108, 0.0017285129503527476, 0.001722805366809153, 0.0017171316763419334, 0.0017114915191003498, 0.001705884541072626, 0.0017003103939591908, 0.0016947687350493976, 0.0016892592271014774, 0.00168378153822565, 0.001678335341770341, 0.0016729203162114022, 0.001667536145044292, 0.0016621825166788157, 0.001656859124336963], "ZhaoEtAl2006Asc": [0.08280983261042844, 0.08280983261042844, 0.07128896451279099, 0.06256354755302462, 0.05572625080195694, 0.05022406967971328, 0.0457007479057303, 0.041916425394763035, 0.03870369156249102, 0.035942151747488, 0.033543004958241064, 0.03143931848510145, 0.02957968665203862, 0.02792397517548073, 0.02644039244725794, 0.025103428890660123, 0.023892378340244165, 0.022790258278222914, 0.021783008804875385, 0.020858889860007394, 0.020008021719282846, 0.019222030548445932, 0.01849377202105477, 0.017817113651650163, 0.01718676178938294, 0.01659683514302291, 0.01603900319181404, 0.015510911779738764, 0.01501082203777647, 0.014537035738257917, 0.014087917540118112, 0.013661908709600603, 0.013257534722995274, 0.012873408540880541, 0.012508230874329848, 0.012160788410415258, 0.011829950700308019, 0.011514666217182667, 0.011213957946034003, 0.010926918760812702, 0.010652706766064921, 0.010390540723293106, 0.010139695640921, 0.009899498577056055, 0.009669324682996382, 0.009448593500540892, 0.00923676551572831, 0.009033338964626856, 0.008837846882159443, 0.008649854382048733, 0.00846895615431953, 0.00829477416603043, 0.008126955550711554, 0.007965170672265159, 0.007809111349561357, 0.007658489228687281, 0.007513034290550916, 0.007372493482407494, 0.007236629462680605, 0.007105219449296661, 0.0069780541625399355, 0.0068549368541768, 0.006735682415323564, 0.0066201165561791935, 0.006508075051350405, 0.006399403045070037, 0.006293954411112908, 0.006191591162687352, 0.006092182908010888, 0.005995606347665181, 0.0059017448101827625, 0.005810487822641622, 0.005721730713329948, 0.0056353742438145565, 0.005551324267983779, 0.005469491415851506, 0.005389790800110292, 0.005312141743596039, 0.005236467525990749, 0.005162695148233874, 0.005090755113251857, 0.00502058122172715, 0.004952110381744508, 0.004885282431249096, 0.004820039972341191, 0.004756328216511975, 0.0046940948400073235, 0.004633289848560347, 0.004573865450811947, 0.004515775939780048, 0.004458977581799671, 0.0044034285123945695, 0.004349088638593699, 0.0042959195472326, 0.004243884418826091, 0.004192947946625279, 0.00414307626050179, 0.004094236855333366, 0.004046398523584738, 0.003999531291805189, 0.003953606360779547, 0.003908596049097172, 0.0038644737399118768, 0.0038212138306878297, 0.003778791685740242, 0.003737183591392, 0.003696366713582354, 0.003656319057772573, 0.003617019431007804, 0.0035784474060005186, 0.0035405832871129744, 0.0035034080781237973, 0.003466903451670986, 0.003431051720270089, 0.0033958358088179773, 0.0033612392284896628, 0.003327246051952246, 0.003293840889815486, 0.00326100886825134, 0.003228735607713515, 0.0031970072026961697, 0.0031658102024728395, 0.003135131592761445, 0.0031049587782640974, 0.0030752795660328506, 0.0030460821496182426, 0.0030173550939561994, 0.0029890873209552577, 0.002961268095746032, 0.0029338870135580245, 0.002906933987190889, 0.0028803992350492536, 0.0028542732697112694, 0.0028285468870046485, 0.0028032111555630684, 0.0027782574068391567, 0.0027536772255510353, 0.0027294624405407686, 0.002705605116023698, 0.00268209754321029, 0.0026589322322818315, 0.002636101904702194, 0.0026135994858500623, 0.002591418097956474, 0.002569551053332105, 0.002547991847871361, 0.0025267341548200753, 0.002505771818794395, 0.0024850988500388946, 0.002464709418913741, 0.0024445978505988077, 0.002424758620006994, 0.002405186346895116, 0.0023858757911649235, 0.0023668218483451336, 0.0023480195452464554, 0.0023294640357820677, 0.0023111505969463115, 0.002293074624944271, 0.00227523163146662, 0.0022576172401019773, 0.002240227182882704, 0.0022230572969567366, 0.0022061035213812915, 0.0021893618940325545, 0.002172828548627048, 0.00215649971184983, 0.0021403717005845885, 0.0021244409192425085, 0.0021087038571848435, 0.002093157086235695, 0.0020777972582818652, 0.002062621102955385, 0.002047625425396117, 0.0020328071040908277, 0.0020181630887860743, 0.0020036903984713616, 0.001989386119430779, 0.0019752474033593215, 0.0019612714655425764, 0.0019474555830960739, 0.0019337970932632484, 0.001920293391768748, 0.001906941931225676, 0.0018937402195944332, 0.0018806858186912842, 0.0018677763427446471, 0.0018550094569977041, 0.001842382876355179, 0.0018298943640729958, 0.0018175417304891152, 0.001805322831793871, 0.001793235568838802, 0.0017812778859822294, 0.0017694477699704133, 0.0017577432488529508, 0.0017461623909312326, 0.00173470330373886, 0.0017233641330528528, 0.001712143061934334, 0.001701038309798371, 0.0016900481315107305, 0.0016791708165122985, 0.0016684046879682343, 0.0016577481019431582, 0.0016471994465994922, 0.001636757141419595, 0.0016264196364502116, 0.0016161854115686067, 0.001606052975769838, 0.0015960208664741267, 0.001586087648854134, 0.0015762519151809593, 0.001566512284188727, 0.0015568674004567706, 0.001547315933809147, 0.0015378565787306396, 0.0015284880537990977, 0.0015192091011331068, 0.00151001848585498, 0.0015009149955681521, 0.0014918974398488776, 0.001482964649751613, 0.0014741154773276522, 0.0014653487951566651, 0.0014566634958905977, 0.0014480584918098599, 0.0014395327143910054, 0.0014310851138859097, 0.0014227146589118737, 0.001414420336052521, 0.0014062011494688476, 0.0013980561205205514, 0.0013899842873968758, 0.0013819847047570537, 0.0013740564433799144, 0.0013661985898222248, 0.00135841024608591, 0.0013506905292934937, 0.0013430385713716158, 0.0013354535187427383, 0.0013279345320241782, 0.001320480785734817, 0.001313091468008908, 0.001305765780317061, 0.0012985029371939338, 0.0012913021659726152, 0.0012841627065253818, 0.0012770838110108113, 0.0012700647436270313, 0.0012631047803706194, 0.001256203208801657], "AkkarEtAlRjb2014": [0.030574696353659406, 0.030574696353659406, 0.030574696353659406, 0.030574696353659406, 0.030574696353659406, 0.03048779993722407, 0.03003284692861949, 0.02924550847847241, 0.028216738318753157, 0.027042408152288318, 0.025804798496422532, 0.024564909993795955, 0.023362833132210617, 0.022221888398788296, 0.021153486964756843, 0.020161281092331264, 0.019244227004050044, 0.01839866042906473, 0.017619623813932426, 0.016901676203050824, 0.016239364677815542, 0.015627482543876987, 0.015061197104355053, 0.014536099970214681, 0.014048212959898413, 0.013593969831745784, 0.013170186021718894, 0.012774023547564897, 0.012402955165370304, 0.012054729999125654, 0.011727341747990323, 0.011418999920894379, 0.011128104174575444, 0.010853221628043903, 0.010593066925318834, 0.010346484777029473, 0.010112434704384719, 0.009889977720570873, 0.009678264705408772, 0.009476526253668635, 0.009284063802615513, 0.009100241868454702, 0.008924481243492054, 0.008756253025700851, 0.008595073369926006, 0.008440498865271763, 0.008292122456470832, 0.008149569838493046, 0.00801249626346742, 0.007880583707421302, 0.007753538351563057, 0.007631088339016048, 0.007512981773192576, 0.0073989849285466935, 0.007288880648304196, 0.0071824669071314925, 0.007079555519535121, 0.006979970977278528, 0.0068835494011964, 0.00679013759463715, 0.006699592187336829, 0.006611778859894191, 0.006526571640209639, 0.006443852264279587, 0.0063635095946266, 0.006285439090437591, 0.006209542324156771, 0.006135726539875221, 0.00606390424938637, 0.005993992862225382, 0.005925914346421684, 0.005859594917040069, 0.005794964749900307, 0.005731957718140053, 0.005670511149530052, 0.005610565602661014, 0.0055520646603194074, 0.005494954738532706, 0.005439184909918235, 0.005384706740101573, 0.0053314741360949, 0.005279443205625132, 0.0052285721265022305, 0.005178821025203047, 0.005130151863920816, 0.0050825283353979475, 0.005035915764927822, 0.0049902810189567555, 0.004945592419777293, 0.004901819665842224, 0.0048589337572720335, 0.004816906926164716, 0.004775712571351727, 0.004735325197269853, 0.00469572035665138, 0.004656874596755183, 0.004618765408886385, 0.0045813711809722475, 0.004544671152979612, 0.0045086453749778295, 0.004473274667663989, 0.0044385405851849295, 0.0044044253801002985, 0.004370911970343617, 0.004337983908050503, 0.004305625350130754, 0.004273821030471764, 0.0042425562336684255, 0.00421181677018278, 0.00418158895284227, 0.004151859574593722, 0.004122615887435221, 0.004093845582453529, 0.004065536770898848, 0.0040376779662368, 0.0040102580671155805, 0.003983266341197816, 0.003956692409803064, 0.003930526233316291, 0.0039047580973161117, 0.0038793785993825702, 0.00385437863654569, 0.003829749393338434, 0.0038054823304204677, 0.00378156917374076, 0.0037580019042100983, 0.003734772747854533, 0.003711874166424785, 0.0036892988484365195, 0.00366703970061859, 0.0036450898397479324, 0.003623442584850299, 0.00360209144974822, 0.0035810301359380952, 0.003560252525779618, 0.003539752675981096, 0.003519524811366458, 0.0034995633189094408, 0.0034798627420212927, 0.00346041777508021, 0.0034412232581900117, 0.0034222741721572137, 0.003403565633675278, 0.003385092890707516, 0.003366851318057242, 0.0033488364131179166, 0.003331043791793748, 0.003313469184583654, 0.0032961084328198666, 0.003278957485055488, 0.0032620123935923812, 0.0032452693111452127, 0.003228724487633203, 0.0032123742670954183, 0.0031962150847236574, 0.0031802434640073075, 0.0031644560139859413, 0.003148849426604334, 0.0031334204741655532, 0.003118166006878677, 0.003103082950495258, 0.0030881683040331316, 0.003073419137581658, 0.0030588325901866153, 0.003044405867810055, 0.003030136241363261, 0.003016021044808985, 0.0030020576733299324, 0.002988243581561815, 0.002974576281887298, 0.0029610533427885154, 0.0029476723872569137, 0.002934431091256232, 0.002921327182238445, 0.0029083584377090086, 0.0028955226838406904, 0.0028828177941331887, 0.002870241688117233, 0.0028577923301013274, 0.0028454677279596973, 0.002833265931959283, 0.0028211850336251087, 0.0028092231646419667, 0.0027973784957912276, 0.0027856492359215495, 0.0027740336309522383, 0.002762529962907877, 0.0027511365489832477, 0.002739851740637294, 0.002728673922715315, 0.0027176015125980842, 0.0027066329593770297, 0.002695766743054657, 0.0026850013737691704, 0.0026743353910424934, 0.002663767363050895, 0.0026532958859173234, 0.002642919583024777, 0.0026326371043502075, 0.0026224471258174736, 0.002612348348669907, 0.002602339498860483, 0.002592419326460296, 0.002582586605083322, 0.0025728401313286305, 0.002563178724237516, 0.0025536012247668457, 0.002544106495276857, 0.0025346934190333724, 0.00252536089972431, 0.0025161078609890306, 0.002506933245961425, 0.0024978360168250568, 0.0024888151543808338, 0.0024798696576263687, 0.002470998543346782, 0.0024622008457165856, 0.0024534756159123655, 0.002444821921735772, 0.0024362388472465944, 0.0024277254924055594, 0.002419280972726608, 0.0024109044189383763, 0.0024025949766544575, 0.002394351806052264, 0.0023861740815603986, 0.0023780609915538117, 0.0023700117380571466, 0.0023620255364554116, 0.0023541016152121364, 0.0023462392155948054, 0.002338437591406975, 0.0023306960087273944, 0.002323013745655521, 0.002315390092063419, 0.0023078243493538405, 0.0023003158302243054, 0.002292863858436918, 0.0022854677685939712, 0.0022781269059188747, 0.0022708406260425586, 0.002263608294794955, 0.002256429288001543, 0.0022493029912847525, 0.0022422287998702336, 0.002235206118397594, 0.0022282343607357242, 0.0022213129498024277, 0.0022144413173883107, 0.0022076189039849795, 0.002200845158616799, 0.0021941195386771285], "BindiEtAl2014Rjb": [0.04125700292666821, 0.04125700292666821, 0.04125700292666821, 0.04125700292666821, 0.04125700292666821, 0.0410684639076148, 0.04010229935331521, 0.03850662440102739, 0.03654850414173223, 0.03446074239800322, 0.03240092677383318, 0.030456439088447324, 0.02866568337121933, 0.027038092124784068, 0.02556797921154959, 0.024242828954443057, 0.023047825700093196, 0.02196814563246328, 0.020990007814591535, 0.020101071173429474, 0.019290503720475194, 0.018548899050833834, 0.01786813120806417, 0.017241193621022576, 0.016662043763473786, 0.016125462690769067, 0.01562693229723293, 0.015162530100053495, 0.014728840023819667, 0.014322877197188843, 0.013942024735297565, 0.013583980635365835, 0.01324671313878649, 0.01292842315143451, 0.01262751253750462, 0.012342557299977722, 0.012072284830157841, 0.011815554551014058, 0.011571341397142169, 0.011338721671538333, 0.011116860899318584, 0.010905003364046695, 0.01070246306599459, 0.010508615885651993, 0.010322892771894732, 0.010144773803893777, 0.009973783000265257, 0.009809483769161272, 0.009651474909685332, 0.009499387088874961, 0.009352879730030843, 0.009211638257795553, 0.009075371653425042, 0.008943810280473696, 0.008816703946769106, 0.00869382017338405, 0.00857494264533194, 0.008459869822190845, 0.008348413689755136, 0.008240398636332663, 0.008135660439427705, 0.0080340453503746, 0.007935409266063901, 0.007839616978252353, 0.007746541492104972, 0.007656063406638517, 0.007568070350601371, 0.0074824564680827646, 0.007399121948811405, 0.007317972598669346, 0.0072389194464608205, 0.007161878383407614, 0.007086769832232385, 0.007013518443030389, 0.00694205281343025, 0.006872305230802096, 0.006804211434512618, 0.006737710396424825, 0.006672744118026706, 0.006609257442731799, 0.00654719788204461, 0.0064865154544031245, 0.006427162535631014, 0.006369093720033613, 0.006312265691260642, 0.0062566371021391416, 0.006202168462760437, 0.006148822036159014, 0.006096561740991877, 0.006045353060671991, 0.005995162958460537, 0.005945959798064923, 0.005897713269330679, 0.005850394318645623, 0.005803975083712678, 0.005758428832371666, 0.005713729905179182, 0.005669853661479265, 0.005626776428717857, 0.00558447545477591, 0.005542928863110576, 0.005502115610514815, 0.005462015447316709, 0.0054226088798546125, 0.005383877135078387, 0.005345802127135498, 0.005308366425813409, 0.0052715532267183386, 0.005235346323079886, 0.005199730079077511, 0.005164689404594138, 0.005130209731308268, 0.005096276990041952, 0.005062877589287004, 0.005029998394840854, 0.004997626710481423, 0.004965750259623567, 0.004934357167895565, 0.004903435946584767, 0.00487297547689994, 0.00484296499500449, 0.004813394077776521, 0.004784252629254437, 0.0047555308677298316, 0.004727219313451438, 0.004699308776907256, 0.0046717903476519084, 0.004644655383650968, 0.004617895501113674, 0.004591502564788189, 0.004565468678695061, 0.004539786177275362, 0.004514447616932435, 0.0044894457679465725, 0.004464773606743834, 0.00444042430850006, 0.004416391240064249, 0.0043926679531846565, 0.004369248178022272, 0.004346125816938201, 0.004323294938540938, 0.004300749771981055, 0.004278484701480786, 0.004256494261088702, 0.004234773129646695, 0.004213316125960886, 0.004192118204165804, 0.004171174449273739, 0.004150480072899347, 0.0041300304091531955, 0.004109820910694302, 0.004089847144937123, 0.004070104790403299, 0.00405058963321346, 0.004031297563712415, 0.004012224573221288, 0.003993366750911851, 0.003974720280797016, 0.00395628143883254, 0.003938046590126128, 0.0039200121862471085, 0.0039021747626353073, 0.0038845309361022384, 0.003867077402422697, 0.003849810934011406, 0.0038327283776826405, 0.0038158266524884396, 0.0037991027476320703, 0.0037825537204547134, 0.003766176694491346, 0.003749968857593053, 0.003733927460114498, 0.0037180498131616593, 0.0037023332868997873, 0.003686775308917295, 0.0036713733626448724, 0.003656124985826601, 0.003641027769041605, 0.0036260793542741364, 0.00361127743353054, 0.003596619747500488, 0.0035821040842619343, 0.003567728278027311, 0.003553490207929601, 0.003539387796847041, 0.003525419010264896, 0.00351158185517278, 0.0034978743789964876, 0.003484294668562783, 0.0034708408490963525, 0.00345751108324739, 0.003444303570148786, 0.003431216544502094, 0.0034182482756909996, 0.0034053970669214602, 0.0033926612543875275, 0.003380039206461914, 0.00336752932291051, 0.0033551300341302702, 0.0033428398004087963, 0.003330657111206274, 0.003318580484457424, 0.0033066084658943656, 0.0032947396283879637, 0.003282972571309138, 0.003271305919907094, 0.003259738324706109, 0.003248268460918744, 0.0032368950278755105, 0.003225616748470813, 0.003214432368623558, 0.0032033406567534505, 0.003192340403270941, 0.0031814304200816178, 0.0031706095401037786, 0.0031598766167991814, 0.0031492305237163505, 0.0031386701540462715, 0.0031281944201898113, 0.003117802253336665, 0.0031074926030554085, 0.003097264436894349, 0.0030871167399929194, 0.0030770485147030794, 0.00306705878022055, 0.0030571465722257587, 0.0030473109425336923, 0.0030375509587530895, 0.0030278657039540186, 0.003018254276344019, 0.0030087157889525326, 0.0029992493693229974, 0.002989854159212941, 0.002980529314301391, 0.002971274003903573, 0.002962087410692708, 0.0029529687304286284, 0.0029439171716929926, 0.0029349319556311146, 0.002926012315699872, 0.002917157497421887, 0.002908366758145549, 0.002899639366810755, 0.00289097460372031, 0.0028823717603168367, 0.002873830138964815, 0.0028653490527378745, 0.0028569278252110327, 0.0028485657902577845, 0.002840262291852171, 0.0028320166838748614, 0.0028238283299244554], "CauzziEtAl2014": [0.04346820634460541, 0.04346820634460541, 0.040239800239950003, 0.03740702482967268, 0.03490420463932834, 0.03267915050530523, 0.030689907449637926, 0.028902393140898895, 0.02728865633999143, 0.02582557442397448, 0.024493866756510496, 0.023277338517901425, 0.02216229490050628, 0.021137082766337904, 0.020191728730818786, 0.019317650946186433, 0.018507427753734786, 0.01775461060894368, 0.01705357176019723, 0.01639937942080056, 0.015787694849424407, 0.01521468700824079, 0.014676961415058068, 0.014171500526795137, 0.013695613544955286, 0.013245907736928351, 0.01281685890904747, 0.012407324455555077, 0.012016545261319893, 0.011643716799557741, 0.011288013751152046, 0.010948608171828873, 0.010624682670617166, 0.010315439756714355, 0.010020108262697097, 0.009737947552202402, 0.009468250061568054, 0.009210342600083233, 0.008963586735660401, 0.008727378516534807, 0.008501147720352884, 0.00828435677615141, 0.008076499469247466, 0.007877099511743847, 0.0076857090402770775, 0.007501907086530233, 0.007325298053613881, 0.007155510222006685, 0.006992194301557527, 0.006835022040604628, 0.006683684899176491, 0.006537892790189783, 0.006397372890273056, 0.006261868520221076, 0.006131138093863008, 0.006004954133329365, 0.005883102348107013, 0.005765380774944189, 0.005651598975433187, 0.005541577288023877, 0.005435146131206908, 0.0053321453546453625, 0.005232423635141121, 0.005135837914433034, 0.005042252875960465, 0.004951540457886537, 0.004863579399820854, 0.0047782548208410635, 0.004695457826567614, 0.004615085143192803, 0.004537038776511404, 0.004461225694138617, 0.004387557529226454, 0.0043159503041173206, 0.004246324172486272, 0.004178603178629717, 0.004112715032661828, 0.00404859090047001, 0.003986165207368962, 0.003925375454470994, 0.003866162046869436, 0.0038084681327932037, 0.0037522394529599427, 0.0036974241994113723, 0.0036439728831686386, 0.0035918382100932145, 0.0035409749643915537, 0.0034913398992321757, 0.0034428916339971846, 0.0033955905577134652, 0.0033493987382508636, 0.003304279836898233, 0.00326019902796465, 0.003217122923069208, 0.0031750194998154315, 0.003133858034563789, 0.00309360903903625, 0.003054244200508861, 0.003015736325361702, 0.002978059285775124, 0.00294118796937179, 0.002905098231624351, 0.002869766850854027, 0.0028351714856617587, 0.0028012906346433775, 0.0027681035982494075, 0.0027355904426610675, 0.0027037319655605387, 0.002672509663684302, 0.0026419057020528485, 0.0026119028847792053, 0.002582484627364526, 0.0025536349303944437, 0.0025253383545547126, 0.002497579996893875, 0.00247034546825809, 0.0024436208718363614, 0.0024173927827506785, 0.002391648228635775, 0.0023663746711520403, 0.0023415599883814917, 0.0023171924580584306, 0.0022932607415898885, 0.002269753868823523, 0.0022466612235224085, 0.0022239725295107276, 0.002201677837453447, 0.0021797675122380558, 0.0021582322209265613, 0.0021370629212484134, 0.002116250850606685, 0.00209578751557152, 0.0020756646818355776, 0.0020558743646093424, 0.0020364088194332833, 0.0020172605333866707, 0.0019984222166734853, 0.001979886794566911, 0.001961647399694593, 0.0019436973646488134, 0.0019260302149056805, 0.001908639662038123, 0.001891519597209254, 0.001874664084933009, 0.0018580673570887827, 0.0018417238071788303, 0.0018256279848170615, 0.0018097745904384485, 0.0017941584702188082, 0.001778774611195977, 0.0017636181365821035, 0.0017486843012600394, 0.0017339684874540238, 0.0017194662005679605, 0.0017051730651834569, 0.0016910848212105698, 0.0016771973201847542, 0.0016635065217035958, 0.0016500084899970183, 0.001636699390625909, 0.0016235754873025919, 0.0016106331388292957, 0.0015978687961483592, 0.0015852789995004033, 0.0015728603756853124, 0.0015606096354222525, 0.001548523570804416, 0.001536599052844262, 0.0015248330291063304, 0.0015132225214232987, 0.0015017646236921724, 0.0014904564997477463, 0.0014792953813095872, 0.0014682785660001573, 0.0014574034154308838, 0.001446667353353872, 0.0014360678638761337, 0.0014256024897346287, 0.001415268830628939, 0.0014050645416102201, 0.0013949873315233163, 0.0013850349615009494, 0.0013752052435072274, 0.0013654960389291033, 0.0013559052572137624, 0.0013464308545502884, 0.0013370708325937922, 0.0013278232372307742, 0.0013186861573838047, 0.0013096577238543628, 0.0013007361082023497, 0.0012919195216607566, 0.0012832062140846004, 0.0012745944729325494, 0.0012660826222802531, 0.0012576690218641187, 0.001249352066154533, 0.0012411301834575126, 0.001233001835043762, 0.0012249655143039774, 0.0012170197459300167, 0.0012091630851201833, 0.0012013941168088859, 0.0011937114549185515, 0.0011861137416344628, 0.001178599646700351, 0.0011711678667350738, 0.0011638171245691297, 0.0011565461686004848, 0.001149353772169148, 0.0011422387329496442, 0.001135199872361128, 0.001128236034994188, 0.001121346088054098, 0.0011145289208197523, 0.0011077834441179486, 0.0011011085898123376, 0.0010945033103068322, 0.0010879665780626664, 0.0010814973851290108, 0.0010750947426863863, 0.0010687576806027534, 0.0010624852470017263, 0.0010562765078425405, 0.0010501305465114546, 0.0010440464634241136, 0.0010380233756387665, 0.0010320604164796934, 0.0010261567351707937, 0.0010203114964788499, 0.0010145238803663246, 0.0010087930816531743, 0.0010031183096877033, 0.0009974987880258883, 0.000991933754119136, 0.00098642245901015, 0.000980964167036551, 0.000975558155542272, 0.0009702037145962612, 0.0009649001467183087, 0.0009596467666120507, 0.0009544429009045014, 0.0009492878878923065, 0.0009441810772942762, 0.0009391218300102324, 0.0009341095178857564, 0.0009291435234828434, 0.0009242232398561747, 0.0009193480703349583, 0.0009145174283101696, 0.000909730737026802, 0.0009049874293814582], "DerrasEtAl2014": [0.0010214444084023272, 0.0010214444084023272, 0.0010214444084023272, 0.0010214444084023272, 0.0010214444084023272, 0.033448054595077985, 0.03016595985407548, 0.028228112314452748, 0.026787807735517515, 0.02561115144221331, 0.024599224348948442, 0.023700979934724805, 0.022886714005717488, 0.022137667480667193, 0.021441258995919792, 0.020788647490085535, 0.020173381614020283, 0.019590603429110714, 0.019036555129388573, 0.018508260913056105, 0.018003314826026712, 0.01751973521854865, 0.01705586245227232, 0.016610285480157135, 0.016181788171164314, 0.015769309425073496, 0.015371913099170395, 0.01498876503234274, 0.014619115279300708, 0.01426228422048689, 0.01391765158978121, 0.013584647722913182, 0.013262746512967263, 0.012951459690251504, 0.012650332138367632, 0.012358938027471896, 0.012076877596788908, 0.01180377445660464, 0.011539273308667228, 0.011283038005757348, 0.011034749887890041, 0.010794106345502843, 0.01056081956997834, 0.010334615459673582, 0.010115232655772492, 0.009902421687140039, 0.009695944207193778, 0.009495572308917928, 0.009301087906597269, 0.009112282174840357, 0.008928955037076337, 0.008750914697019064, 0.008577977207643056, 0.008409966073115097, 0.008246711879804011, 0.008088051953125968, 0.007933830037420765, 0.007783895996507455, 0.0076381055328609586, 0.007496319923663533, 0.0073584057722057405, 0.007224234773306546, 0.007093683491597121, 0.006966633151652776, 0.006842969439064528, 0.006722582311660753, 0.006605365820165857, 0.006491217937656119, 0.006380040397246346, 0.00627173853748261, 0.006166221154979147, 0.006063400363868018, 0.005963191461670882, 0.0058655128012348465, 0.005770285668403744, 0.005677434165114479, 0.005586885097641175, 0.0054985678697201355, 0.005412414380311814, 0.005328358925767948, 0.005246338106194751, 0.005166290735804522, 0.005088157757068503, 0.005011882158494053, 0.004937408895856462, 0.00486468481672349, 0.00479365858812925, 0.004724280627246244, 0.004656503034927469, 0.004590279531986989, 0.004525565398097737, 0.004462317413190495, 0.004400493801246473, 0.004340054176374556, 0.004280959491077708, 0.00422317198661076, 0.004166655145340098, 0.004111373645019405, 0.004057293314898181, 0.004004381093585821, 0.003952604988594113, 0.0039019340374894912, 0.0038523382705849527, 0.0038037886751062185, 0.0037562571607714394, 0.0037097165267233, 0.003664140429757485, 0.0036195033537929364, 0.0035757805805328065, 0.0035329481612647604, 0.00349098288975446, 0.0034498622761867685, 0.0034095645221112222, 0.0033700684963488556, 0.0033313537118243174, 0.0032934003032800366, 0.003256189005841664, 0.00321970113439529, 0.0031839185637470412, 0.003148823709530315, 0.003114399509831799, 0.003080629407506916, 0.0030474973331564305, 0.0030149876887379202, 0.002983085331785982, 0.0029517755602179153, 0.002921044097699626, 0.002890877079551167, 0.0028612610391692754, 0.0028321828949466675, 0.0028036299376687055, 0.0027755898183678736, 0.0027480505366186177, 0.0027210004292549817, 0.0026944281594947473, 0.0026683227064532565, 0.002642673355032904, 0.002617469686173091, 0.0025927015674462026, 0.002568359143987261, 0.0025444328297435895, 0.0025209132990324564, 0.0024977914783942574, 0.0024750585387316396, 0.0024527058877212415, 0.0024307251624897277, 0.002409108222542824, 0.0023878471429387292, 0.0023669342076954435, 0.0023463619034248986, 0.0023261229131832394, 0.0023062101105317872, 0.0022866165537981987, 0.0022673354805320817, 0.0022483603021475514, 0.002229684598745146, 0.0022113021141074284, 0.0021932067508611923, 0.002175392565800219, 0.002157853765363735, 0.0021405847012626973, 0.002123579866251427, 0.0021068338900366904, 0.0020903415353211397, 0.002074097693974887, 0.002058097383331866, 0.002042335742605776, 0.0020268080294210283, 0.002011509616455818, 0.001996435988192194, 0.001981582737769463, 0.0019669455639384956, 0.0019525202681114123, 0.0019383027515053105, 0.0019242890123750854, 0.0019104751433336156, 0.0018968573287552258, 0.0018834318422601389, 0.0018701950442769376, 0.0018571433796805803, 0.0018442733755028014, 0.0018315816387132276, 0.0018190648540682098, 0.0018067197820251927, 0.0017945432567205812, 0.0017825321840089137, 0.0017706835395610754, 0.00175899436701985, 0.0017474617762106579, 0.0017360829414058958, 0.0017248550996409107, 0.001713775549079851, 0.0017028416474299873, 0.0016920508104027207, 0.0016814005102198126, 0.0016708882741633456, 0.0016605116831679679, 0.0016502683704540722, 0.0016401560202008152, 0.0016301723662569604, 0.0016203151908894765, 0.0016105823235674191, 0.0016009716397812036, 0.0015914810598947893, 0.0015821085480313731, 0.0015728521109897055, 0.0015637097971917253, 0.0015546796956593745, 0.0015457599350201096, 0.0015369486825405425, 0.001528244143186402, 0.0015196445587092131, 0.0015111482067577424, 0.0015027534000142426, 0.0014944584853542667, 0.0014862618430295672, 0.00147816188587323, 0.001470157058526559, 0.0014622458366868223, 0.0014544267263753448, 0.0014466982632253315, 0.0014390590117887901, 0.001431507564862097, 0.001424042542829436, 0.0014166625930237286, 0.0014093663891046175, 0.0014021526304526428, 0.001395020041579661, 0.0013879673715545167, 0.0013809933934437932, 0.0013740969037672945, 0.0013672767219674255, 0.0013605316898925642, 0.0013538606712936415, 0.0013472625513337125, 0.0013407362361101392, 0.001334280652188977, 0.0013278947461512185, 0.0013215774841506443, 0.001315327851482771, 0.0013091448521648107, 0.0013030275085261082, 0.0012969748608088907, 0.001290985966779014, 0.0012850599013464782, 0.0012791957561952589, 0.0012733926394224142, 0.0012676496751860586, 0.0012619660033619923, 0.0012563407792089492, 0.0012507731730416554, 0.0012452623699123232], "AbrahamsonEtAl2014": [0.052579009985010125, 0.052579009985010125, 0.049062932676101706, 0.045417789968218956, 0.04187061306380904, 0.03831195277863586, 0.03505030291858212, 0.03219442608923503, 0.029690977480957805, 0.027489357618678677, 0.025544838465068657, 0.023819192971032754, 0.02228027815805572, 0.020901257118148383, 0.01965976505228951, 0.018537142726687366, 0.017517777115988818, 0.016588552596308828, 0.01577925672905913, 0.015146823126883804, 0.014563253134274055, 0.014023148513593951, 0.01352186108257886, 0.013055370544598054, 0.01262018456590176, 0.01221236591490501, 0.011826247643331097, 0.011460270775706811, 0.011113290654048156, 0.010784181789442349, 0.010471854789458843, 0.0101752671293984, 0.009893429464613109, 0.009625408756404491, 0.009370329157619588, 0.009127371356028853, 0.008895770886628929, 0.008674815784193657, 0.008463843843282056, 0.008262239675890124, 0.008069431700151003, 0.007884889151895452, 0.007708119180529486, 0.007538664068739627, 0.007376098599718746, 0.007220027584420945, 0.007070083553435505, 0.006925924612672691, 0.00678723245841018, 0.006653710544896864, 0.006525082396298851, 0.006401090054026226, 0.006281492650171083, 0.006166065097843871, 0.006054596889412859, 0.0059468909940656005, 0.005842762846552567, 0.005742039419514977, 0.005644558372306717, 0.005550167269767622, 0.005458722864917848, 0.005370090440029624, 0.005284143201012363, 0.005200761720475949, 0.005119833425240327, 0.0050412521244434915, 0.00496491757473604, 0.0048907350793692, 0.004818615118272292, 0.004748473006475818, 0.004680228578477577, 0.0046138058963672126, 0.004549132979718277, 0.0044861415554399665, 0.004424766825941277, 0.004364947254106481, 0.004306624363717062, 0.004249742554073414, 0.004194248927680934, 0.004140093129962428, 0.004087227200053583, 0.004035605431813337, 0.003985184244260517, 0.00393592206071353, 0.0038877791959711504, 0.0038407177509263693, 0.003794701514061727, 0.0037496958693101893, 0.0037056677098199382, 0.0036625853571886817, 0.0036204184857754136, 0.0035791380517232337, 0.0035387162263632054, 0.003499126333686442, 0.003460342791604023, 0.0034223410567318243, 0.0033850975724576877, 0.0033485897200698595, 0.0033127957727387245, 0.0032776948521626983, 0.003243266887699352, 0.003209492577822205, 0.0031763533537486175, 0.0031438313450997796, 0.003111909347462877, 0.0030805707917339674, 0.003049799715130224, 0.003019580733766127, 0.0029898990166981644, 0.002960740261346283, 0.0029320906702090597, 0.0029039369287943827, 0.002876266184692529, 0.002849066027722663, 0.002822324471092171, 0.0027960299335055222, 0.0027701712221714597, 0.002744737516653382, 0.002719718353517281, 0.0026951036117300636, 0.002670883498767024, 0.002647048537388279, 0.0026235895530474632, 0.0026004976618976515, 0.002577764259361359, 0.002555381009235236, 0.002533339833299194, 0.0025116329014040696, 0.00249025262201196, 0.0024691916331653794, 0.0024484427938628894, 0.0024279991758202266, 0.0024078540555963956, 0.0023880009070671475, 0.0023684333942271102, 0.0023491453643044954, 0.002330130841172648, 0.0023113840190437077, 0.002292899256429971, 0.002274671070360538, 0.002256694130840473, 0.0022389632555402657, 0.002221473404705075, 0.0022042196762733514, 0.0021871973011941973, 0.002170401638934691, 0.0021538281731680988, 0.0021374725076345486, 0.0021213303621659516, 0.0021053975688682886, 0.002089670068452852, 0.0020741439067113567, 0.002058815231126793, 0.0020436802876149934, 0.0020287354173907247, 0.002013977053952737, 0.001999401720182693, 0.0019850060255529687, 0.001970786663438321, 0.0019567404085276316, 0.00194286411433028, 0.0019291547107745772, 0.0019156092018929407, 0.001902224663591167, 0.0018889982414976119, 0.001875927148889447, 0.001863008664692623, 0.0018502401315520882, 0.0018376189539702718, 0.0018251425965102022, 0.0018128085820609547, 0.001800614490163259, 0.0017885579553922264, 0.0017766366657954395, 0.0017648483613838838, 0.0017531908326739944, 0.0017416619192782289, 0.0017302595085431185, 0.0017189815342320044, 0.001707825975251742, 0.0016967908544206376, 0.0016858742372770502, 0.0016750742309263233, 0.0016643889829251032, 0.001653816680201436, 0.0016433555480093627, 0.0016330038489165916, 0.0016227598818243571, 0.0016126219810179, 0.0016025885152467438, 0.0015926578868335737, 0.0015828285308105278, 0.0015730989140822758, 0.0015634675346146278, 0.0015539329206478764, 0.0015444936299339618, 0.0015351482489966383, 0.0015258953924138638, 0.0015167337021216704, 0.0015076618467385003, 0.0014986785209099075, 0.0014897824446719597, 0.0014809723628339728, 0.0014722470443784268, 0.0014636052818791073, 0.0014550458909353328, 0.0014465677096228307, 0.0014381695979601601, 0.0014298504373902797, 0.0014216091302768936, 0.0014134445994148008, 0.001405355787554202, 0.0013973416569380503, 0.0013894011888524217, 0.0013815333831891801, 0.0013737372580207763, 0.0013660118491865731, 0.0013583562098906177, 0.001350769410310138, 0.0013432505372147803, 0.0013357986935959296, 0.0013284129983060415, 0.0013210925857075981, 0.001313836605331324, 0.0013066442215434785, 0.0012995146132217979, 0.001292446973440086, 0.001285440509160836, 0.0012784944409359703, 0.0012716080026152158, 0.0012647804410620986, 0.0012580110158770265, 0.0012512989991276522, 0.0012446436750858903, 0.0012380443399716888, 0.0012315003017032817, 0.0012250108796535387, 0.0012185754044126028, 0.0012121932175563096, 0.0012058636714202767, 0.0011995861288797984, 0.0011933599631348732, 0.0011871845575006543, 0.0011810593052029015, 0.0011749836091785174, 0.001168956881880786, 0.0011629785450893554, 0.0011570480297247022, 0.001151164775667111, 0.0011453282315799708, 0.0011395378547370534, 0.001133793110854179], "BooreEtAl2014": [0.05051714552884945, 0.05051714552884945, 0.05051714552884945, 0.05051714552884945, 0.05051714552884945, 0.05028942963758605, 0.04910808099072555, 0.04710554835970564, 0.04456517870504437, 0.04176463352368709, 0.03892032189420153, 0.036174013457245205, 0.03360428825182972, 0.031245362137598702, 0.029103988408466695, 0.027171669495009976, 0.025432489827352894, 0.02386774833998721, 0.022458511258148302, 0.021186905141647408, 0.020036684685922804, 0.018993402102812463, 0.018044369823050042, 0.01717852544766792, 0.016386258881234867, 0.015659233301199452, 0.014990215632972152, 0.014372923366390695, 0.013801889812420228, 0.01327234747756588, 0.012780128099463734, 0.01232157745247831, 0.011893482963927091, 0.01149301229335725, 0.011117661216654688, 0.010765209368951633, 0.010433682607398171, 0.010121320944078985, 0.009826551165752569, 0.009547963400223377, 0.00928429101046826, 0.009034393299547128, 0.008797240594413357, 0.008571901347563892, 0.008357530954294062, 0.008153362032156606, 0.0079586959497406, 0.0077728954255934495, 0.0075953780461057155, 0.0074256105745193, 0.007263103942703782, 0.0071074088336365495, 0.006958111776160527, 0.006814831685082765, 0.006677216789296004, 0.006544941898787604, 0.0064177059682447146, 0.006295229920842641, 0.006177254700727932, 0.006063539526956964, 0.0059538603252442205, 0.005848008316956548, 0.005745788747440994, 0.005647019738044501, 0.005551531248130918, 0.00545916413510265, 0.005369769301885432, 0.005283206922599201, 0.0051993457382432115, 0.005118062415168082, 0.0050392409599517105, 0.004962772185013753, 0.004888553219943045, 0.004816487064069392, 0.004746482176301646, 0.004678452098678568, 0.0046123151104663085, 0.004547993909963274, 0.004485415321472359, 0.004424510025159177, 0.004365212307752322, 0.004307459832239132, 0.004251193424899144, 0.00419635687817984, 0.004142896768062337, 0.004090762284693124, 0.00403990507518069, 0.003990279097548719, 0.003941840484941183, 0.0038945474192508787, 0.003848360013420557, 0.0038032402017326387, 0.00375915163746608, 0.0037160595973490854, 0.0036739308922915863, 0.00363273378392109, 0.003592437906488782, 0.0035530141937486054, 0.0035144348104444298, 0.003476673088072085, 0.003439703464607633, 0.0034035014279220907, 0.0033680434626217393, 0.003333307000075125, 0.003299270371407804, 0.0032659127632608154, 0.0032332141761261344, 0.003201155385086142, 0.003169717902797716, 0.0031388839445720424, 0.0031086363954141547, 0.00307895877889545, 0.0030498352277415295, 0.003021250456025521, 0.00299318973286824, 0.0029656388575474077, 0.0029385841359326815, 0.0029120123581617536, 0.002885910777484728, 0.00286026709020429, 0.0028350694166472097, 0.002810306283105818, 0.0027859666046922277, 0.0027620396690521435, 0.0027385151208883293, 0.0027153829472479013, 0.002692633463528814, 0.0026702573001660492, 0.0026482453899587264, 0.0026265889560026724, 0.002605279500195213, 0.0025843087922804223, 0.0025636688594058788, 0.0025433519761632038, 0.002523350655086589, 0.002503657637584503, 0.0024842658852824192, 0.0024651685717547644, 0.002446359074625456, 0.0024278309680188224, 0.0024095780153423375, 0.0023915941623846126, 0.0023738735307121525, 0.00235641041135122, 0.0023391992587389076, 0.0023222346849314703, 0.002305511454056488, 0.002289024476997674, 0.0022727688063000173, 0.0022567396312861087, 0.002240932273371757, 0.0022253421815736155, 0.002209964928197587, 0.002194796204701009, 0.0021798318177201465, 0.002165067685254981, 0.0021504998330047053, 0.0021361243908465297, 0.0021219375894513523, 0.002107935757030931, 0.002094115316208915, 0.0020804727810125327, 0.0020670047539774745, 0.0020537079233625666, 0.0020405790604682166, 0.002027615017055245, 0.0020148127228590894, 0.0020021691831950913, 0.0019896814766519524, 0.0019773467528686607, 0.00196516223039151, 0.0019531251946088304, 0.001941232995758546, 0.0019294830470072341, 0.001917872822596353, 0.0019063998560540168, 0.0018950617384687967, 0.0018838561168234946, 0.0018727806923863706, 0.0018618332191576924, 0.0018510115023688911, 0.001840313397032978, 0.0018297368065436522, 0.0018192796813213522, 0.0018089400175044994, 0.0017987158556842318, 0.0017886052796807213, 0.001778606415359729, 0.0017687174294876828, 0.001758936528624038, 0.0017492619580493185, 0.0017396920007275059, 0.0017302249763016973, 0.001720859240121591, 0.0017115931823017366, 0.001702425226809394, 0.0016933538305808917, 0.001684377482665459, 0.0016754947033957883, 0.001666704043583694, 0.0016580040837409578, 0.0016493934333234232, 0.001640870729998518, 0.0016324346389342739, 0.0016240838521104847, 0.0016158170876496194, 0.001607633089168317, 0.001599530625147692, 0.0015915084883222075, 0.0015835654950867523, 0.0015757004849205072, 0.0015679123198280985, 0.0015601998837964386, 0.0015525620822674584, 0.0015449978416258, 0.0015375061087011305, 0.0015300858502845453, 0.0015227360526586821, 0.0015154557211409796, 0.0015082438796396869, 0.0015010995702222476, 0.0014940218526956247, 0.00148700980419826, 0.0014800625188031544, 0.0014731791071317783, 0.0014663586959786361, 0.0014596004279457389, 0.0014529034610872168, 0.0014462669685632384, 0.0014396901383032675, 0.0014331721726783587, 0.0014267122881819329, 0.0014203097151191787, 0.001413963697304471, 0.0014076734917667533, 0.0014014383684625813, 0.0013952576099966003, 0.0013891305113492038, 0.0013830563796112857, 0.001377034533725643, 0.0013710643042350928, 0.001365145033036908, 0.0013592760731434594, 0.0013534567884488876, 0.001347686553501685, 0.001341964753282846, 0.0013362907829895967, 0.0013306640478244543, 0.001325083962789454, 0.0013195499524856083, 0.0013140614509168913, 0.001308617901299455], "ChiouYoungs2014": [0.05682361365753582, 0.05682361365753582, 0.05141555290692405, 0.04673738877102872, 0.042662807336316805, 0.03891615232953189, 0.03556580882924155, 0.03264198519260782, 0.03007864047184323, 0.027821085943158404, 0.025824003421218922, 0.024049771136481688, 0.022467069478589455, 0.021049733321216, 0.019775815406845643, 0.018626826214232166, 0.01758711884527354, 0.016643391639180837, 0.015784285615328814, 0.015000057964466256, 0.014282316416918142, 0.013623802348874675, 0.013018212968249381, 0.01246005491549515, 0.01194452320035618, 0.011466426953113486, 0.011018841543374082, 0.010599467905723583, 0.010206492786334627, 0.009838155579222565, 0.009492768783074276, 0.00916873050935927, 0.008864531214202564, 0.008578756296457353, 0.008310085793516168, 0.00805729209104191, 0.007819236322632423, 0.007594863953845878, 0.0073831999083669225, 0.007183343491926624, 0.006994463293520966, 0.00681579218721193, 0.006646622516387671, 0.006486301512168736, 0.006334226975765101, 0.006189843239002495, 0.006052637406198274, 0.005922135873012659, 0.005797901112826038, 0.0056795287179549625, 0.005566644681118329, 0.005458902901619571, 0.005355982900414634, 0.005257587728442342, 0.005163442053066567, 0.0050732904082039, 0.004986895594505137, 0.004904037216864351, 0.004824510347412091, 0.004748124303058419, 0.004674701527518319, 0.0046040765685753625, 0.004536095142133921, 0.00447061327533669, 0.004407496521703702, 0.004346619241884288, 0.004287863944186495, 0.00423112067957956, 0.004176286486351242, 0.004123264880040283, 0.004071965384668829, 0.0040223031016644335, 0.003974198313191004, 0.003927576116911331, 0.0038823660894754366, 0.0038385019762753156, 0.0037959214052326585, 0.0037545656225865137, 0.0037143792488330443, 0.003675310053134215, 0.003637308744666058, 0.003600328779509078, 0.003564326181810575, 0.0035292593780596295, 0.0034950890434168125, 0.0034617779591320256, 0.0034292908801713392, 0.00339759441224277, 0.0033666568974880916, 0.0033364483081633426, 0.003306940147692649, 0.0032781053585276727, 0.003249918236297393, 0.0032223543497695104, 0.003195390466189549, 0.003169004481596256, 0.003143175355744675, 0.003117883051299876, 0.003093108476988791, 0.0030688334344249712, 0.00304504056834053, 0.0030217133199848378, 0.002998835883463583, 0.002976393164812571, 0.0029543707436151603, 0.002932754836987013, 0.0029115322657656526, 0.00289069042275357, 0.0028702172428764884, 0.0028501011751270004, 0.002830331156174598, 0.00281089658553162, 0.00279178730217233, 0.0027729935625094254, 0.0027545060196415075, 0.0027363157037868114, 0.002718414003829916, 0.0027007926499081855, 0.002683443696974065, 0.002666359509270689, 0.0026495327456643727, 0.0026329563457808147, 0.002616623516895618, 0.0026005277215330287, 0.002584662665729474, 0.0025690222879227024, 0.0025536007484280145, 0.002538392419467487, 0.0025233918757190167, 0.002508593885354826, 0.0024939934015408803, 0.0024795855543705584, 0.0024653656432071574, 0.002451329129412694, 0.002437471629440129, 0.002423788908269, 0.002410276873165146, 0.002396931567746377, 0.002383749166336969, 0.0023707259685954757, 0.0023578583944007425, 0.002345142978981783, 0.002332576368278705, 0.0023201553145223448, 0.0023078766720205247, 0.0022957373931403032, 0.0022837345244758563, 0.0022718652031922357, 0.002260126653535644, 0.0022485161835021643, 0.002237031181655859, 0.0022256691140898456, 0.0022144275215218766, 0.0022033040165183983, 0.0021922962808404137, 0.002181402062904969, 0.002170619175356662, 0.002159945492743805, 0.0021493789492937143, 0.0021389175367830717, 0.0021285593024976436, 0.002118302347278346, 0.002108144823648349, 0.002098084934018129, 0.002088120928964356, 0.002078251105579412, 0.0020684738058882094, 0.002058787415328724, 0.002049190361294128, 0.0020396811117329413, 0.00203025817380477, 0.0020209200925894242, 0.002011665449846519, 0.002002492862823557, 0.0019934009831103, 0.001984388495537363, 0.0019754541171169045, 0.0019665965960239443, 0.0019578147106160213, 0.001949107268490107, 0.0019404731055745058, 0.0019319110852548884, 0.0019234200975324946, 0.0019149990582133746, 0.0019066469081273653, 0.0018983626123754826, 0.001890145159604405, 0.0018819935613073077, 0.0018739068511494671, 0.0018658840843180542, 0.0018579243368948687, 0.0018500267052509636, 0.0018421903054627383, 0.0018344142727481194, 0.0018266977609223828, 0.0018190399418725653, 0.00181144000504992, 0.0018038971569796444, 0.0017964106207872096, 0.001788979635740483, 0.001781603456807485, 0.0017742813542283664, 0.001767012613102157, 0.0017597965329864361, 0.001752632427510808, 0.0017455196240023674, 0.001738457463123656, 0.0017314452985221357, 0.001724482496490907, 0.0017175684356402579, 0.0017107025065795597, 0.0017038841116093298, 0.0016971126644227687, 0.0016903875898167631, 0.001683708323411721, 0.00167707431138017, 0.0016704850101835781, 0.0016639398863173363, 0.001657438416063356, 0.001650980085250272, 0.0016445643890207072, 0.0016381908316056184, 0.0016318589261053156, 0.0016255681942769556, 0.0016193181663283329, 0.001613108380717587, 0.0016069383839589651, 0.0016008077304339684, 0.0015947159822081607, 0.0015886627088530785, 0.001582647487273355, 0.0015766699015386139, 0.001570729542720276, 0.001564826008732832, 0.0015589589041795815, 0.00155312784020277, 0.001547332434337689, 0.0015415723103709802, 0.0015358470982027666, 0.0015301564337124255, 0.001524499958628282, 0.0015188773204005367, 0.0015132881720777867, 0.0015077321721867697, 0.0015022089846153802, 0.0014967182784987596, 0.0014912597281083481, 0.0014858330127438851, 0.0014804378166282264, 0.0014750738288050002, 0.0014697407430386206, 0.0014644382577172917], "CampbellBozorgnia2014": [0.06601071651895833, 0.06601071651895833, 0.06345948100356227, 0.06029818887734628, 0.05678623284325815, 0.05231097741863491, 0.04793563656615851, 0.0441139005130453, 0.04075731367606629, 0.037796620452963274, 0.03517492243709257, 0.03284452709954574, 0.030765161717657072, 0.0289027327584625, 0.02722834551997253, 0.02571748502851097, 0.0243493209704456, 0.023106118227742115, 0.021972739607873375, 0.020936228656141694, 0.019985461150883642, 0.019110854777779705, 0.018304127599856536, 0.017558097160937924, 0.016866513264746565, 0.016222696252274106, 0.015617771369807461, 0.015048651492019208, 0.014512920676274417, 0.014008280050576102, 0.013532561512813257, 0.013083733799654162, 0.01265990324910288, 0.012259310972352146, 0.011880327687401321, 0.011521447118247603, 0.01118127860338553, 0.010858539365132789, 0.010552046750160561, 0.010260710648942644, 0.009983526227687427, 0.009719567053360646, 0.00946797865495435, 0.009227972538153948, 0.008998820652759072, 0.008779850300506768, 0.00857043946342261, 0.0083700125284524, 0.008178036381854565, 0.007994016846044864, 0.007817495431813598, 0.007648046379730059, 0.0074852739658180815, 0.0073288100481531645, 0.0071784760931196045, 0.0070345130247573984, 0.006895811397039937, 0.006762101457542002, 0.00663313075721184, 0.0065086628544399495, 0.006388476126526164, 0.006272362679235991, 0.006160127345919355, 0.006051586768375945, 0.005946568552323299, 0.0058449104909618155, 0.005746459850698925, 0.0056510727136295305, 0.0055586133718583865, 0.0054689537691912865, 0.00538197298612989, 0.00529755676447526, 0.005215597068175553, 0.005135991677362747, 0.005058643812797928, 0.004983461788193034, 0.004910358688108173, 0.0048392520693257175, 0.004770063683791004, 0.004702719221376048, 0.004637148070881599, 0.0045732830978236294, 0.004511060437682788, 0.004450419303407557, 0.0043913018060652564, 0.0043336527876276145, 0.004277419664970072, 0.0042225522842292765, 0.004169002784749223, 0.004116725471897261, 0.004065676698099359, 0.004015814751489826, 0.0039670997516283515, 0.0039194935517707944, 0.003872959647230172, 0.0038274630893960636, 0.0037829704050146335, 0.0037394495203657563, 0.0036968696899977254, 0.0036552014297095525, 0.0036144164534901092, 0.0035744876141521917, 0.0035353888474116434, 0.003497095119184954, 0.003459582375894592, 0.0034228274975854843, 0.00338680825367237, 0.003351503261148106, 0.003316891945098478, 0.0032829545013765174, 0.0032496718613022266, 0.0032170256582624247, 0.0031849981960934575, 0.0031535724191368232, 0.003122731883869774, 0.0030924607320115386, 0.0030627436650218645, 0.0030335659199056896, 0.003004913246250214, 0.0029767718844204475, 0.002949128544847446, 0.0029219703883459278, 0.00289528500740308, 0.0028690604083834803, 0.002843284994598107, 0.0028179475501907015, 0.0027930372247946264, 0.002768543518919163, 0.002744456270024929, 0.0027207656392511555, 0.002697462098759899, 0.002674536419664392, 0.0026519796605099354, 0.0026297831562794283, 0.002607938507894989, 0.002586437572190505, 0.002565272452330759, 0.002544435488654369, 0.0025239192499184925, 0.0025037165249258233, 0.0024838203145143207, 0.002464223823891219, 0.0024449204552947634, 0.0024259038009677935, 0.002407167636427147, 0.00238870591401515, 0.0023705127567195347, 0.002352582452248797, 0.002334909447350688, 0.0023174883423630033, 0.0023003138859844954, 0.0022833809702574293, 0.0022666846257501433, 0.0022502200169316373, 0.002233982437728918, 0.0022179673072587514, 0.0022021701657260967, 0.0021865866704817065, 0.00217121259223146, 0.0021560438113914725, 0.002141076314581268, 0.002126306191250568, 0.002111729630432331, 0.0020973429176176514, 0.00208314243174657, 0.0020691246423103424, 0.0020552861065602263, 0.0020416234668178494, 0.0020281334478837922, 0.002014812854539428, 0.0020016585691383557, 0.0019886675492842222, 0.0019758368255905576, 0.001963163499519932, 0.0019506447412987811, 0.0019382777879052326, 0.0019260599411263948, 0.0019139885656831485, 0.001902061087418841, 0.001890274991550307, 0.0018786278209777252, 0.0018671171746520365, 0.001855740705996829, 0.0018444961213831214, 0.0018333811786547976, 0.001822393685702775, 0.0018115314990859146, 0.0018007925226972534, 0.001790174706473421, 0.001779676045145961, 0.0017692945770328144, 0.0017590283828683767, 0.0017488755846710308, 0.00173883434464647, 0.0017289028641256478, 0.0017190793825360064, 0.0017093621764048333, 0.0016997495583936154, 0.0016902398763622801, 0.0016808315124620071, 0.0016715228822562175, 0.0016623124338677208, 0.0016531986471524634, 0.0016441800328973384, 0.0016352551320429575, 0.0016264225149289048, 0.0016176807805618448, 0.0016090285559051541, 0.0016004644951894177, 0.0015919872792432637, 0.0015835956148435141, 0.0015752882340844521, 0.0015670638937650648, 0.0015589213747940975, 0.0015508594816119948, 0.0015428770416294317, 0.0015349729046816227, 0.0015271459424982454, 0.0015193950481880425, 0.0015117191357380232, 0.0015041171395264539, 0.0014965880138494477, 0.0014891307324606151, 0.0014817442881233521, 0.0014744276921753743, 0.0014671799741050656, 0.0014600001811394313, 0.0014528873778430391, 0.0014458406457278417, 0.0014388590828733631, 0.0014319418035571214, 0.0014250879378946888, 0.0014182966314894483, 0.001411567045091399, 0.0014048983542649953, 0.0013982897490656758, 0.001391740433724643, 0.0013852496263419875, 0.0013788165585876164, 0.0013724404754097627, 0.0013661206347512116, 0.0013598563072724423, 0.001353646776081976, 0.0013474913364734165, 0.0013413892956692121, 0.0013353399725707417, 0.0013293426975146594, 0.0013233968120352508, 0.0013175016686327158, 0.0013116566305472104, 0.0013058610715382024, 0.0013001143756695495], "KothaEtAl2016Italy": [0.055684607983292535, 0.055684607983292535, 0.055684607983292535, 0.055684607983292535, 0.055684607983292535, 0.05525806128759948, 0.05315072560228297, 0.04992119092627011, 0.04630311242974179, 0.042772046552692664, 0.039545087397298305, 0.036683526912073355, 0.03417606051672004, 0.031984576274367425, 0.03006520840230943, 0.02837676125497205, 0.02688341302610114, 0.025555045464557054, 0.024366699194148238, 0.023297790321380418, 0.022331339235740585, 0.02145329701151468, 0.020651986727122533, 0.019917651285280724, 0.019242091505857234, 0.01861837764735937, 0.018040619463174992, 0.017503782481674803, 0.017003540663094598, 0.016536157686172212, 0.016098390817341362, 0.01568741265534114, 0.01530074708634095, 0.014936216590055054, 0.014591898658283408, 0.014266089566312182, 0.013957274107815429, 0.013664100191024018, 0.013385357417376462, 0.01311995893858656, 0.012866926025259946, 0.012625374888455054, 0.012394505381395068, 0.01217359127690348, 0.01196197187083995, 0.0117590447058002, 0.011564259244840327, 0.011377111353825563, 0.01119713847445564, 0.01102391538922022, 0.01085705049531247, 0.01069618251753332, 0.010540977600968502, 0.01039112673318645, 0.010246343453126147, 0.010106361810121051, 0.009970934541695932, 0.009839831443224598, 0.009712837906222719, 0.009589753605232513, 0.009470391315924705, 0.00935457584932571, 0.00924214308903838, 0.009132939119995857, 0.009026819438715228, 0.00892364823626969, 0.008823297746257104, 0.008725647650966442, 0.00863058453975287, 0.008538001414317521, 0.008447797236207323, 0.008359876512370145, 0.008274148915067923, 0.00819052893285605, 0.008108935549695625, 0.00802929194957199, 0.007951525244279337, 0.007875566222266529, 0.007801349116659409, 0.007728811390762908, 0.007657893539522264, 0.007588538905563843, 0.007520693508576882, 0.007454305886916636, 0.007389326950413642, 0.007325709843467758, 0.007263409817599631, 0.00720238411269516, 0.007142591846260929, 0.0070839939100611265, 0.00702655287356545, 0.006970232893687072, 0.00691499963033699, 0.006860820167356517, 0.006807662938433406, 0.006755497657634827, 0.00670429525422379, 0.006654027811452718, 0.006604668509051357, 0.0065561915691512455, 0.0065085722054060826, 0.006461786575090955, 0.006415811733976336, 0.0063706255937896515, 0.00632620688209343, 0.006282535104418916, 0.006239590508508459, 0.0061973540505299565, 0.006155807363137374, 0.006114932725258847, 0.006074713033504538, 0.006035131775093194, 0.005996173002203529, 0.005957821307661911, 0.0059200618018885095, 0.0058828800910214595, 0.0058462622561538035, 0.005810194833613194, 0.005774664796226716, 0.0057396595355110125, 0.00570516684473582, 0.005671174902810886, 0.005637672258949329, 0.005604647818064133, 0.005572090826856512, 0.005539990860559015, 0.005508337810295847, 0.0054771218710284696, 0.005446333530053984, 0.00541596355602707, 0.005386002988477808, 0.005356443127798824, 0.005327275525677781, 0.005298491975951879, 0.0052700845058629596, 0.005242045367691914, 0.005214367030754263, 0.005187042173738344, 0.005160063677368351, 0.005133424617377374, 0.00510711825777424, 0.005081138044390296, 0.0050554775986917135, 0.0050301307118464965, 0.005005091339031413, 0.004980353593969693, 0.004955911743687121, 0.004931760203477656, 0.0049078935320670865, 0.0048843064269678115, 0.004860993720013292, 0.00483795037306724, 0.004815171473896378, 0.0047926522322016074, 0.004770387975799974, 0.004748374146950149, 0.004726606298816078, 0.004705080092061937, 0.0046837912915728445, 0.00466273576329701, 0.004641909471201492, 0.004621308474340285, 0.004600928924026571, 0.004580767061107354, 0.004560819213334137, 0.004541081792827463, 0.004521551293630339, 0.004502224289346636, 0.004483097430862399, 0.004464167444145321, 0.004445431128119322, 0.0044268853526128445, 0.004408527056375255, 0.004390353245161358, 0.004372360989879121, 0.004354547424799892, 0.00433690974582739, 0.004319445208823838, 0.004302151127990872, 0.004285024874303455, 0.004268063873993886, 0.0042512656070852065, 0.00423462760597126, 0.004218147454041893, 0.00420182278435177, 0.004185651278331188, 0.00416963066453704, 0.004153758717442842, 0.00413803325626605, 0.004122452143831706, 0.004107013285470793, 0.004091714627952046, 0.004076554158446322, 0.004061529903522079, 0.004046639928171043, 0.004031882334862912, 0.004017255262628063, 0.0040027568861673675, 0.003988385414988408, 0.003974139092566319, 0.00396001619552983, 0.003946015032870029, 0.003932133945172767, 0.003918371303871951, 0.0039047255105254786, 0.0038911949961102825, 0.0038777782203384026, 0.0038644736709916236, 0.0038512798632747455, 0.003838195339187324, 0.003825218666911916, 0.003812348440220149, 0.003799583277894278, 0.0037869218231649806, 0.0037743627431642006, 0.0037619047283928026, 0.003749546492202538, 0.0037372867702919585, 0.003725124320215663, 0.003713057920906557, 0.0037010863722107177, 0.0036892084944344654, 0.0036774231279034, 0.0036657291325327412, 0.0036541253874088123, 0.003642610790381562, 0.003631184257667101, 0.00361984472346091, 0.0036085911395604656, 0.003597422474997592, 0.003586337715680234, 0.003575335864042882, 0.003564415938706069, 0.003553576974144128, 0.003542818020361288, 0.003532138142575706, 0.0035215364209113076, 0.0035110119500970853, 0.0035005638391738653, 0.003490191211207994, 0.0034798932030121296, 0.003469668964872633, 0.00345951766028348, 0.0034494384656865358, 0.003439430570218132, 0.0034294931754614024, 0.003419625495204626, 0.0034098267552051553, 0.003400096192958805, 0.0033904330574749727, 0.0033808366090562402, 0.0033713061190839048], "KothaEtAl2016Other": [0.05983939229110193, 0.05983939229110193, 0.05983939229110193, 0.05983939229110193, 0.05983939229110193, 0.05938101975372664, 0.05711644986036351, 0.053645950571697715, 0.04975791712161546, 0.045963388545857804, 0.042495656944605574, 0.03942058743003759, 0.03672603195551004, 0.0343710349459728, 0.03230845767001395, 0.03049403075975128, 0.028889259643800527, 0.027461778864087384, 0.026184766755570837, 0.025036103602906038, 0.023997542899360902, 0.023053987489590037, 0.02219288920424298, 0.021403762941725055, 0.020677797758147903, 0.020007546864629022, 0.019386680526786132, 0.018809788636984213, 0.018272222377535702, 0.01776996664980151, 0.017299536770796594, 0.01685789437894594, 0.016442378610642305, 0.016050649474722616, 0.015680641019274275, 0.015330522399918575, 0.01499866535654874, 0.01468361691404801, 0.014384076362633684, 0.01409887576122987, 0.01382696335470535, 0.013567389412154358, 0.013319294085611683, 0.013081896962060488, 0.01285448804037705, 0.012636419912125555, 0.012427100963261299, 0.012225989444792048, 0.012032588285649343, 0.011846440541655396, 0.011667125391422948, 0.011494254604000128, 0.011327469414623982, 0.01116643775458136, 0.011010851789150476, 0.010860425724341899, 0.010714893848735725, 0.010574008781494901, 0.010437539901595988, 0.010305271936738646, 0.010177003693262873, 0.0100525469108559, 0.009931725227937283, 0.00981437324540664, 0.009700335677972145, 0.009589466583623208, 0.009481628662949163, 0.009376692620998134, 0.009274536585239952, 0.009175045573933482, 0.009078111009864142, 0.008983630274976161, 0.008891506301926366, 0.008801647199022157, 0.008713965905391434, 0.008628379873561888, 0.008544810776934865, 0.00846318423989187, 0.008383429588508367, 0.008305479620051598, 0.008229270389628281, 0.008154741012499704, 0.00808183348073318, 0.008010492492986753, 0.007940665296336146, 0.007872301539153878, 0.007805353134151418, 0.007739774130762989, 0.007675520596138024, 0.0076125505040658846, 0.007550823631219737, 0.00749030146015982, 0.007430947088587069, 0.007372725144376157, 0.007315601705964014, 0.007259544227699676, 0.007204521469797176, 0.007150503432562341, 0.007097461294589557, 0.007045367354651518, 0.006994194977023314, 0.00694391854000766, 0.006894513387441906, 0.006845955782985699, 0.0067982228670055225, 0.006751292615883002, 0.006705143803589312, 0.006659755965378785, 0.006615109363466341, 0.006571184954561393, 0.0065279643591423615, 0.006485429832363209, 0.006443564236491114, 0.006402351014780135, 0.006361774166697256, 0.006321818224414332, 0.0062824682304958345, 0.006243709716707177, 0.006205528683881645, 0.006167911582781682, 0.006130845295898748, 0.0060943171201379934, 0.006058314750337306, 0.006022826263574205, 0.005987840104216213, 0.00595334506967483, 0.00591933029682277, 0.005885785249040154, 0.005852699703854719, 0.005820063741144657, 0.005787867731874336, 0.005756102327334346, 0.005724758448860144, 0.005693827278004178, 0.0056633002471385115, 0.005633169030465045, 0.005603425535413875, 0.005574061894409804, 0.005545070456987949, 0.005516443782242488, 0.005488174631591109, 0.005460255961840307, 0.005432680918536012, 0.0054054428295879095, 0.005378535199151605, 0.005351951701758758, 0.005325686176681918, 0.005299732622524509, 0.005274085192023634, 0.005248738187058269, 0.005223686053850515, 0.005198923378354649, 0.0051744448818219334, 0.005150245416535659, 0.0051263199617082355, 0.00510266361953251, 0.005079271611381558, 0.005056139274149572, 0.00503326205672791, 0.0050106355166116175, 0.004988255316628047, 0.004966117221786194, 0.004944217096237955, 0.004922550900349418, 0.0049011146878753555, 0.004879904603234593, 0.004858916878880883, 0.004838147832765099, 0.004817593865886531, 0.004797251459928166, 0.0047771171749726865, 0.004757187647297681, 0.004737459587244049, 0.004717929777157586, 0.004698595069398515, 0.004679452384418154, 0.004660498708898759, 0.0046417310939547585, 0.004623146653392864, 0.00460474256202913, 0.004586516054059848, 0.0045684644214855335, 0.004550585012585035, 0.004532875230438159, 0.004515332531495158, 0.004497954424191361, 0.004480738467604939, 0.004463682270156655, 0.004446783488349681, 0.004430039825548459, 0.00441344903079486, 0.004397008897660293, 0.004380717263132803, 0.004364572006537605, 0.004348571048490045, 0.00433271234987978, 0.004316993910885041, 0.0043014137700160245, 0.004285970003186669, 0.004270660722812876, 0.004255484076937829, 0.004240438248381709, 0.004225521453916839, 0.004210731943465255, 0.0041960679993206206, 0.00418152793539067, 0.00416711009646225, 0.004152812857486319, 0.004138634622882951, 0.004124573825866216, 0.004110628927786765, 0.004096798417493595, 0.004083080810712443, 0.004069474649441634, 0.004055978501364099, 0.004042590959275311, 0.004029310640526596, 0.004016136186483441, 0.004003066261998119, 0.003990099554896305, 0.003977234775477237, 0.00396447065602699, 0.003951805950344615, 0.003939239433280417, 0.003926769900286217, 0.003914396166977467, 0.00390211706870613, 0.003889931460145031, 0.003877838214882326, 0.0038658362250264208, 0.003853924400821017, 0.0038421016702694516, 0.003830366978768792, 0.0038187192887528016, 0.003807157579343868, 0.0037956808460134616, 0.0037842881002509822, 0.0037729783692406196, 0.0037617506955462464, 0.003750604136803736, 0.003739537765420926, 0.0037285506682846665, 0.0037176419464748788, 0.0037068107149854546, 0.003696056102451919, 0.0036853772508852896, 0.003674773315412393, 0.003664243464022171, 0.00365378687731787, 0.003643402748275377, 0.003633090282006383, 0.003622848695527906], "KothaEtAl2016Turkey": [0.04264446454860708, 0.04264446454860708, 0.04264446454860708, 0.04264446454860708, 0.04264446454860708, 0.042317805960146414, 0.04070396319139678, 0.03823071641840973, 0.03545991447210577, 0.03275574865203218, 0.030284474267855726, 0.02809303000551156, 0.026172758575468438, 0.024494473040803686, 0.023024580046311013, 0.021731531084945795, 0.020587893050824806, 0.019570600742638264, 0.018660539735921227, 0.0178419464445019, 0.017101817519253906, 0.016429393992192048, 0.01581573342686226, 0.015253363629344699, 0.014736005492016457, 0.014258352070532958, 0.013815892487976307, 0.013404771238225663, 0.013021675347444228, 0.012663743460845166, 0.012328492223662835, 0.012013756351499948, 0.01171763958339155, 0.011438474327699812, 0.01117478828649986, 0.01092527671094294, 0.010688779223596383, 0.010464260363646095, 0.010250793181968887, 0.010047545346886597, 0.009853767326482375, 0.00966878229627003, 0.009491977486723235, 0.009322796737527598, 0.009160734067312139, 0.009005328101302942, 0.008856157226525847, 0.00871283536627103, 0.008575008283492534, 0.008442350337520487, 0.008314561630544384, 0.00819136549028481, 0.008072506243503298, 0.00795774724186631, 0.007846869107362516, 0.00773966816927963, 0.007635955068722247, 0.007535553510060816, 0.007438299141525013, 0.007344038549591929, 0.007252628353863252, 0.00716393439087364, 0.007077830976773758, 0.006994200240111332, 0.006912931517026507, 0.006833920802136569, 0.0067570702491963185, 0.006682287716327628, 0.006609486351231481, 0.006538584212320644, 0.006469503922185338, 0.006402172350202514, 0.006336520321457178, 0.006272482349454945, 0.006209996390379332, 0.006149003616882303, 0.006089448209615908, 0.00603127716489303, 0.005974440117033904, 0.005918889174099044, 0.005864578765843995, 0.0058114655028394515, 0.005759508045808153, 0.005708666984321177, 0.005658904724076128, 0.0056101853820516205, 0.005562474688904463, 0.005515739898024129, 0.0054699497007222025, 0.005425074147074707, 0.005381084571980454, 0.00533795352603644, 0.0052956547108675665, 0.005254162918575043, 0.005213453975001374, 0.005173504686531019, 0.005134292790171427, 0.005095796906679829, 0.005057996496519262, 0.005020871818446364, 0.004984403890546663, 0.004948574453551142, 0.004913365936277778, 0.004878761423054706, 0.004844744622994039, 0.0048112998409929825, 0.004778411950349895, 0.004746066366890577, 0.00471424902450834, 0.004682946352027087, 0.004652145251304835, 0.0046218330765002945, 0.0045919976144306145, 0.004562627065952484, 0.0045337100283070015, 0.0045052354783666985, 0.004477192756734735, 0.004449571552642679, 0.004422361889602707, 0.004395554111768418, 0.0043691388709645295, 0.004343107114347135, 0.004317450072658568, 0.00429215924904374, 0.004267226408396298, 0.004242643567206219, 0.00421840298388007, 0.004194497149509493, 0.004170918779063016, 0.004147660802978827, 0.004124716359137291, 0.004102078785192891, 0.00407974161124723, 0.004057698552845211, 0.0040359435042780015, 0.004014470532176494, 0.003993273869381342, 0.0039723479090753855, 0.003951687199164847, 0.003931286436897934, 0.003911140463708442, 0.003891244260273746, 0.003871592941776128, 0.0038521817533591655, 0.0038330060657678555, 0.0038140613711654704, 0.00379534327911766, 0.0037768475127370154, 0.0037585699049792905, 0.0037405063950859984, 0.0037226530251645946, 0.0037050059369024843, 0.003687561368406293, 0.003670315651162449, 0.003653265207113253, 0.00363640654584285, 0.003619736261869021, 0.0036032510320355205, 0.003586947613000733, 0.003570822838819322, 0.003554873618610881, 0.003539096934314615, 0.003523489838523791, 0.0035080494523985913, 0.0034927729636525236, 0.0034776576246107124, 0.003462700750336259, 0.003447899716821675, 0.003433251959243818, 0.0034187549702786764, 0.0034044062984736794, 0.003390203546676455, 0.0033761443705157537, 0.003362226476934521, 0.003348447622771392, 0.0033348056133900308, 0.003321298301353494, 0.003307923585142341, 0.0032946794079147046, 0.0032815637563069463, 0.003268574659272675, 0.0032557101869596047, 0.0032429684496221296, 0.0032303475965684745, 0.0032178458151412436, 0.003205461329730137, 0.003193192400815409, 0.0031810373240412494, 0.003168994429317713, 0.0031570620799504763, 0.0031452386717971776, 0.0031335226324493703, 0.0031219124204394178, 0.0031104065244712117, 0.0030990034626740023, 0.003087701781878473, 0.0030765000569142587, 0.003065396889928222, 0.0030543909097229495, 0.0030434807711141065, 0.003032665154307091, 0.0030219427642910867, 0.0030113123302512243, 0.003000772604996735, 0.002990322364406447, 0.0029799604068889165, 0.002969685552858657, 0.002959496644226596, 0.002949392543904791, 0.002939372135325299, 0.002929434321971678, 0.002919578026924144, 0.0029098021924165874, 0.002900105779406024, 0.0028904877671535704, 0.002880947152816763, 0.002871482951052836, 0.0028620941936326823, 0.002852779929065023, 0.002843539222230544, 0.002834371154025685, 0.0028252748210157797, 0.002816249335097352, 0.0028072938231690782, 0.0027984074268112744, 0.002789589301973844, 0.0027808386186718883, 0.002772154560689497, 0.0027635363252907445, 0.0027549831229381366, 0.002746494177018274, 0.00273806872357414, 0.002729706011044335, 0.002721405300008639, 0.0027131658629399595, 0.002704986983962355, 0.0026968679586150406, 0.0026888080936221036, 0.002680806706667941, 0.002672863126177993, 0.0026649766911049193, 0.0026571467507198296, 0.002649372664408507, 0.0026416538014725076, 0.0026339895409350795, 0.0026263792713514984, 0.002618822390624003, 0.002611318305821003, 0.0026038664330004743, 0.0025964661970377407, 0.002589117031456689, 0.0025818183782655227], "ZhaoEtAl2016Asc": [0.05432754455320017, 0.05432754455320017, 0.04973655317460345, 0.04577057467221316, 0.04231755452797037, 0.03928985414121364, 0.03661807675806861, 0.034246651625615424, 0.032130624246175084, 0.03023328885293196, 0.028524418608873326, 0.026978926328183186, 0.02557583952327717, 0.024297507823122042, 0.023128984167494458, 0.02205753735195256, 0.021072264845121938, 0.020163782863557352, 0.019323976487455326, 0.018545796815279098, 0.017823095251026936, 0.017150487313418894, 0.016523240073948866, 0.015937178626946564, 0.015388607980911035, 0.014873120150259494, 0.014383984581122718, 0.013919571205318509, 0.013478715570092357, 0.01306022653013406, 0.012662914201530564, 0.012285609832005587, 0.01192717953093424, 0.011544306213198985, 0.011179803884584269, 0.010834109423204459, 0.010506044416349048, 0.010194504289391542, 0.009898455893937251, 0.009616934444694797, 0.009349040063712729, 0.009093934120477216, 0.008850835503446114, 0.008619016918927759, 0.008397801283505191, 0.00818655825422113, 0.007984700924409662, 0.007791682701186134, 0.007606994371972843, 0.007430161361271882, 0.007260741174588677, 0.007098321023486693, 0.006942515623813397, 0.006792965158006985, 0.006649333391737955, 0.006511305934952253, 0.006378588637401978, 0.006250906109030672, 0.006128000355925685, 0.006009629523029985, 0.005895566735303081, 0.005785599029540273, 0.005679526369603807, 0.005577160738332972, 0.005478325299901068, 0.005382853626880813, 0.005290588986724835, 0.005201383682799331, 0.005115098445508414, 0.005031601869414307, 0.004950769892602288, 0.004872485314857177, 0.004796637351502848, 0.004723121220028252, 0.0046518377568656784, 0.004582693061908907, 0.004515598168567201, 0.004450468737334388, 0.004387224771025225, 0.004325790349984273, 0.004266093385720487, 0.004208065391542351, 0.004151641268893436, 0.0040967591081935645, 0.004043360003089613, 0.003991387877108289, 0.003940789321791499, 0.003891513445458687, 0.003843511731822926, 0.0037967379077378516, 0.0037511478194181282, 0.0037066993165220446, 0.0036633521435407656, 0.003621067837972365, 0.003579809634808346, 0.0035395423768914943, 0.003500232430738528, 0.003461847607454617, 0.0034243570883910573, 0.0033877313552276938, 0.0033519421241801454, 0.003316962284061594, 0.0032827658379411084, 0.0032493278481640275, 0.0032166243845157304, 0.0031846324753254138, 0.0031533300613218805, 0.0031226959520654456, 0.0030927097847945097, 0.003063351985534079, 0.003034603732326217, 0.0030064469204515746, 0.0029788641295195413, 0.0029518385923123364, 0.0029253541652799766, 0.002899395300582762, 0.0028739470195934523, 0.002848994887769258, 0.0028245249908158904, 0.002800523912066437, 0.002776978711005791, 0.002753876902874262, 0.0027312064392891943, 0.0027089556898266262, 0.0026871134245084944, 0.0026656687971460214, 0.0026446113294901446, 0.002623930896145735, 0.0026036177102071586, 0.002583662309576122, 0.0025640555439247173, 0.00254478856226957, 0.0025258528011235007, 0.0025072399731954414, 0.0024889420566086033, 0.0024709512846103126, 0.0024532601357480093, 0.002435861324487243, 0.002418747792248802, 0.002401912698844072, 0.0023853494142883035, 0.002369051510972448, 0.0023530127561758965, 0.0023372271049035193, 0.002321688693030378, 0.0023063918307393402, 0.0022913309962374127, 0.0022765008297371335, 0.002261896127690174, 0.002247511837261554, 0.002233343051031987, 0.0022193850019191744, 0.002205633058306027, 0.0021920827193674516, 0.002178729610585797, 0.002165569479446485, 0.002152598191305484, 0.0021398117254209496, 0.0021272061711411533, 0.002114777724242431, 0.002102522683409277, 0.0020904374468516717, 0.0020785185090521573, 0.0020667624576380162, 0.0020551659703723327, 0.0020437258122592335, 0.0020324388327583164, 0.0020213019631029863, 0.0020103122137192127, 0.001999466671739632, 0.001988762498609094, 0.0019781969277783435, 0.0019677672624813323, 0.0019574708735933194, 0.001947305197565968, 0.0019372677344367385, 0.0019273560459088248, 0.0019175677534996618, 0.0019079005367542321, 0.0018983521315215884, 0.0018889203282909904, 0.001879602970586203, 0.0018703979534150103, 0.001861303221772101, 0.0018523167691930676, 0.0018434366363576317, 0.0018346609097399272, 0.0018259877203045199, 0.0018174152422457234, 0.001808941691769184, 0.0018005653259137466, 0.0017922844414120938, 0.0017840973735888603, 0.0017760024952947233, 0.0017679982158751125, 0.001760082980172189, 0.0017522552675589753, 0.001744513591004429, 0.0017368564961683004, 0.0017292825605245532, 0.0017217903925127098, 0.0017143786307154594, 0.0017070459430624319, 0.0016997910260581508, 0.0016926126040345533, 0.0016855094284259368, 0.0016784802770665036, 0.0016715239535092191, 0.0016646392863653087, 0.001657825128663894, 0.001651080357230652, 0.0016444038720853482, 0.0016377945958571424, 0.0016312514732173763, 0.001624773470329002, 0.0016183595743123511, 0.001612008792726352, 0.0016057201530651464, 0.0015994927022689993, 0.0015933255062496523, 0.0015872176494290539, 0.0015811682342914482, 0.001575176380948283, 0.0015692412267153016, 0.0015633619257017799, 0.0015575376484111376, 0.0015517675813529253, 0.0015460509266654683, 0.0015403869017491197, 0.0015347747389095744, 0.0015292136850111003, 0.0015237030011391614, 0.0015182419622723914, 0.0015128298569633612, 0.0015074659870280825, 0.001502149667243876, 0.001496880225055266, 0.0014916570002878955, 0.0014864793448699568, 0.0014813466225609617, 0.0014762582086878932, 0.001471213489888059, 0.0014662118638588014, 0.0014612527391137501, 0.0014563355347453702, 0.0014514596801937169, 0.0014466246150210576, 0.001441829788692372, 0.001437074660361413, 0.0014323586986623323, 0.0014276813815063574, 0.001423042195883921], "BindiEtAl2017Rjb": [0.06680057618809342, 0.06680057618809342, 0.06680057618809342, 0.06680057618809342, 0.06680057618809342, 0.06651858429903279, 0.06505556622562313, 0.06257484697503365, 0.0594254357392868, 0.05594837735624441, 0.05240900863623985, 0.048981303464011965, 0.04576230138670559, 0.04279515051749742, 0.0400895987372619, 0.03763673380623258, 0.035418429802294434, 0.03341294815158704, 0.031598045002679716, 0.029952566699959403, 0.028457171446463713, 0.027094567322184248, 0.02584949612439961, 0.024708594034464394, 0.023660201772385998, 0.022694163106047084, 0.021801631370624405, 0.020974892947234054, 0.0202072108374759, 0.019492688441124607, 0.01882615217540339, 0.01820305096356912, 0.01761937046757611, 0.01707156001824735, 0.0165564703809179, 0.016071300716635938, 0.01561355332294079, 0.015180994946810779, 0.014771623648180273, 0.014383640353825703, 0.014015424379265678, 0.013665512312864314, 0.013332579754162016, 0.01301542548029459, 0.01271295768262453, 0.012424181972606647, 0.012148190903281201, 0.011884154792344873, 0.011631313665699779, 0.01138897016793968, 0.011156483309303692, 0.010933262937972098, 0.010718764842811241, 0.01051248640539398, 0.010313962731622776, 0.010122763203105243, 0.009938488396649611, 0.009760767327339112, 0.00958925497658204, 0.009423630071681689, 0.009263593087824751, 0.009108864447130603, 0.008959182892633451, 0.008814304017838297, 0.008673998934869006, 0.00853805306631334, 0.008406265047647984, 0.008278445728679567, 0.008154417263800007, 0.00803401228201628, 0.007917073128760168, 0.007803451172369172, 0.0076930061689234, 0.007585605679814276, 0.007481124537031021, 0.007379444351678011, 0.007280453061721095, 0.007184044515367309, 0.007090118086857557, 0.006998578321775084, 0.0069093346092716345, 0.006822300878859017, 0.00673739531965277, 0.00665454012015885, 0.00657366122687421, 0.006494688120134007, 0.006417553605795305, 0.006342193621461444, 0.006268547056086011, 0.0061965555818896, 0.006126163497622397, 0.006057317582290134, 0.005989966958541437, 0.005924062964977126, 0.00585955903671419, 0.005796410593586612, 0.0057345749354212345, 0.005674011143872713, 0.005614679990343017, 0.005556543849551747, 0.0054995666183548534, 0.00544371363944701, 0.0053889516296069025, 0.005335248612172762, 0.005282573853462121, 0.005230897802867959, 0.005180192036386701, 0.005130429203350766, 0.005081582976156381, 0.005033628002790508, 0.004986539861978052, 0.004940295020782155, 0.004894870794502433, 0.00485024530872585, 0.00480639746340033, 0.004763306898800998, 0.004720953963279563, 0.004679319682683852, 0.004638385731351399, 0.004598134404580529, 0.004558548592493286, 0.004519611755208751, 0.004481307899250239, 0.00444362155511587, 0.004406537755945554, 0.004370042017223544, 0.004334120317456564, 0.004298759079774983, 0.0042639451544049635, 0.004229665801964145, 0.004195908677536261, 0.0041626618154820185, 0.004129913614947512, 0.004097652826032702, 0.0040658685365854924, 0.004034550159587725, 0.004003687421103515, 0.003973270348760338, 0.0039432892607351, 0.003913734755220613, 0.003884597700347375, 0.0038558692245382227, 0.003827540707273491, 0.0037996037702484483, 0.0037720502689009756, 0.0037448722842937754, 0.0037180621153325186, 0.003691612271304973, 0.0036655154647241553, 0.003639764604463297, 0.003614352789166145, 0.003589273300923064, 0.0035645195991971424, 0.0035400853149911904, 0.003515964245243821, 0.0034921503474436995, 0.0034686377344530324, 0.003445420669530062, 0.0034224935615418174, 0.0033998509603598522, 0.003377487552428172, 0.003355398156499451, 0.0033335777195288015, 0.003312021312720801, 0.003290724127721206, 0.0032696814729489495, 0.0032488887700613655, 0.003228341550546713, 0.00320803545244014, 0.0031879662171564816, 0.0031681296864351396, 0.0031485217993941247, 0.0031291385896859824, 0.003109976182754296, 0.0030910307931843214, 0.003072298722145892, 0.0030537763549234207, 0.0030354601585303232, 0.003017346679404295, 0.002999432541180563, 0.002981714442539206, 0.0029641891551248165, 0.002946853521534867, 0.0029297044533743203, 0.0029127389293741083, 0.002895953993571064, 0.0028793467535467143, 0.0028629143787229443, 0.0028466540987122447, 0.0028305632017207863, 0.002814639033002055, 0.002798878993359194, 0.0027832805376945837, 0.0027678411736045913, 0.0027525584600180345, 0.0027374300058767304, 0.002722453468856579, 0.0027076265541277145, 0.0026929470131527903, 0.0026784126425208796, 0.0026640212828174478, 0.0026497708175272847, 0.002635659171971058, 0.0026216843122723577, 0.0026078442443565565, 0.002594137012977725, 0.002580560700775096, 0.0025671134273563753, 0.0025537933484076282, 0.0025405986548292917, 0.002527527571896131, 0.002514578358442103, 0.0025017493060675864, 0.002489038738369548, 0.0024764450101930607, 0.0024639665069038927, 0.002451601643681333, 0.002439348864830717, 0.0024272066431148456, 0.002415173479103803, 0.002403247900542518, 0.0023914284617355796, 0.0023797137429488135, 0.0023681023498268727, 0.002356592912826451, 0.002345184086664905, 0.0023338745497831223, 0.0023226630038231215, 0.0023115481731190036, 0.002300528804201473, 0.0022896036653154437, 0.0022787715459498302, 0.002268031256379938, 0.0022573816272213835, 0.0022468215089955943, 0.002236349771706414, 0.0022259653044274766, 0.002215667014900015, 0.002205453829140952, 0.002195324691060669, 0.0021852785620905288, 0.0021753144208195613, 0.0021654312626402175, 0.002155628099402824, 0.0021459039590787433, 0.0021362578854315535, 0.002126688937696407, 0.002117196190267119, 0.00210777873239082, 0.0020984356678702683, 0.002089166114772669, 0.0020799692051462395]}, "ylabel": "Mean SA(3.0) (g)"}]}
\ No newline at end of file
diff --git a/tests/trellis/data/test_distance_sigma_imt_trellis.json b/tests/trellis/data/test_distance_sigma_imt_trellis.json
new file mode 100644
index 0000000..f24106b
--- /dev/null
+++ b/tests/trellis/data/test_distance_sigma_imt_trellis.json
@@ -0,0 +1 @@
+{"xvalues": [2.905237004115861, 2.905237004115861, 3.7714199905221903, 4.6375245285039455, 5.503550596721652, 6.369498173832653, 7.2353672385152095, 8.101157769424844, 8.96686974523709, 9.832503144626116, 10.698057946257904, 11.563534128814808, 12.42893167097327, 13.294250551407458, 14.159490748804274, 15.02465224184698, 15.889735009214746, 16.754739029599023, 17.619664281691257, 18.484510744178806, 19.349278395752208, 20.21396721511246, 21.078577180956472, 21.943108271976143, 22.807560466875657, 23.673889542782646, 24.549505104583496, 25.434223006030635, 26.327125595396005, 27.2274076314169, 28.13436068879643, 29.04735988000737, 29.965852548112004, 30.88934863090005, 31.817412439304714, 32.7496556314049, 33.68573119715359, 34.62532829785795, 35.56816782935452, 36.51399859867777, 37.46259402172146, 38.41374926408856, 39.36727875978305, 40.323014052609196, 41.28080191393974, 42.240502697502905, 43.20198889809681, 44.165143886042515, 45.12986079344127, 46.09604153189592, 47.06359592432875, 48.03244093598266, 49.00249999195538, 49.97370237022186, 50.94598266084328, 51.919280283125005, 52.893539053819616, 53.86870680017789, 54.84473501266347, 55.82157853269331, 56.799195271381954, 57.77754595586172, 58.756593900055236, 59.7363047972329, 60.7166465320464, 61.69758900990813, 62.679104001921175, 63.6611650037481, 64.64374710697795, 65.62682688174728, 66.61038226948949, 67.59439248479482, 68.57883792553041, 69.56370009040666, 70.548961503284, 71.53460564360958, 72.52061688239186, 73.50698042322429, 74.49368224789453, 75.48070906619584, 76.46804826951764, 77.45568788794418, 78.4436165505302, 79.43182344848339, 80.42029830100958, 81.40903132363296, 82.39801319870499, 83.38723504804727, 84.37668840742985, 85.36636520283356, 86.35625772829296, 87.34635862526581, 88.33666086331387, 89.32715772210048, 90.31784277453188, 91.3087098709792, 92.29975312452677, 93.29096689712205, 94.28234578660589, 95.27388461452028, 96.2655784147076, 97.25742242254438, 98.24941206485012, 99.24154295039313, 100.23381086094493, 101.22621174286658, 102.21874169916416, 103.21139698201945, 104.20417398571827, 105.19706923999563, 106.19007940374699, 107.18320125907614, 108.17643170566629, 109.16976775549136, 110.16320652774247, 111.15674524410296, 112.15038122420403, 113.14411188137151, 114.1379347185513, 115.13184732447047, 116.12584736998299, 117.11993260460667, 118.11410085322679, 119.10835001295976, 120.10267805019413, 121.09708299774175, 122.09156295215858, 123.08611607117678, 124.08074057126392, 125.07543472529885, 126.07019686035733, 127.06502535559265, 128.05991864023648, 129.05487519166198, 130.04989353355515, 131.0449722341654, 132.04010990463135, 133.03530519737816, 134.03055680460338, 135.02586345681036, 136.0212239214029, 137.01663700136046, 138.01210153396337, 139.00761638955518, 140.00318047038135, 140.99879270946715, 141.9944520695398, 142.99015754199434, 143.98590814591574, 144.98170292711265, 145.97754095723718, 146.9734213328831, 147.96934317476763, 148.96530562692186, 149.96130785591714, 150.95734905012722, 151.9534284190144, 152.94954519244047, 153.94569862002123, 154.94188797047255, 155.9381125310292, 156.93437160683294, 157.93066452038468, 158.92699061099304, 159.92334923426222, 160.9197397615831, 161.9161615796405, 162.91261408996633, 163.9090967084705, 164.90560886501336, 165.90215000299864, 166.89871957895332, 167.8953170621505, 168.89194193422833, 169.88859368883433, 170.88527183126368, 171.88197587814125, 172.87870535707563, 173.875459806365, 174.87223877467073, 175.86904182074656, 176.86586851313743, 177.86271842991673, 178.8595911584179, 179.85648629497678, 180.8534034446816, 181.85034222114325, 182.84730224625312, 183.84428314996595, 184.8412845700788, 185.83830615201776, 186.83534754864596, 187.8324084200582, 188.82948843339156, 189.82658726263952, 190.82370458847532, 191.82084009808096, 192.8179934849768, 193.8151644488534, 194.81235269542958, 195.8095579362716, 196.80677988868237, 197.80401827551415, 198.80127282507868, 199.79854327096294, 200.79582935193199, 201.79313081178648, 202.79044739924103, 203.78777886780819, 204.78512497567408, 205.78248548559753, 206.77986016478562, 207.77724878479887, 208.7746511214381, 209.7720669546516, 210.7694960684306, 211.7669382507243, 212.76439329333283, 213.76186099182996, 214.75934114546428, 215.75683355708546, 216.75433803305816, 217.7518543831784, 218.74938242059764, 219.74692196174342, 220.74447282625468, 221.74203483689607, 222.7396078194996, 223.7371916028907, 224.73478601882624, 225.73239090192044, 226.73000608959597, 227.7276314220079, 228.72526674199617, 229.7229118950225, 230.72056672910756, 231.718231094791, 232.7159048450628, 233.713587835315, 234.71127992330366, 235.70898096907467, 236.7066908349349, 237.70440938539576, 238.70213648713633, 239.69987200894644, 240.69761582168914, 241.69536779825518, 242.69312781352852, 243.6908957443417, 244.68867146942384, 245.68645486938925, 246.68424582666913], "xlabel": "Rupture Dist. (km)", "figures": [{"column": 0, "row": 0, "yvalues": {"AkkarBommer2010": [0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326], "CauzziFaccioli2008": [0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697], "ChiouYoungs2008": [0.5587433874339911, 0.5587433874339911, 0.5587444842683854, 0.5587495738765226, 0.5587584598935362, 0.5587936718460649, 0.5588427309790649, 0.5588924325300443, 0.5589421389247774, 0.558991361731838, 0.5590397438078188, 0.5590870348617992, 0.559133067150414, 0.5591777344838178, 0.5592209754891055, 0.5592627609211872, 0.5593030843483088, 0.5593419554513958, 0.5593793952567648, 0.55941543275655, 0.5594501025060481, 0.5594834429010305, 0.5595154949262017, 0.5595463012307598, 0.5595759054329718, 0.5596043721687027, 0.5596318182257183, 0.55965827485705, 0.5596837668247296, 0.5597083211170764, 0.5597319663514227, 0.5597547322798128, 0.559776649376965, 0.5597977484957453, 0.559818060579259, 0.5598376164211848, 0.5598564464676475, 0.5598745806550669, 0.5598920482792321, 0.5599088778914717, 0.5599250972182694, 0.5599407331010884, 0.5599558114535218, 0.5599703572332047, 0.5599843944262115, 0.5599979460419265, 0.5600110341166157, 0.560023679724149, 0.5600359029925216, 0.5600477231250023, 0.5600591584249023, 0.5600702263230968, 0.5600809434075698, 0.5600913254543536, 0.5601013874593481, 0.5601111436705787, 0.5601206076205382, 0.5601297921583176, 0.5601387094812883, 0.5601473711661474, 0.5601557881991774, 0.5601639710056101, 0.5601719294780072, 0.5601796730036032, 0.5601872104905686, 0.5601945503931767, 0.5602017007358613, 0.5602086691361755, 0.5602154628266601, 0.5602220886756452, 0.5602285532070098, 0.5602348626189315, 0.5602410228016578, 0.5602470393543371, 0.5602529176009469, 0.560258662605355, 0.5602642791855565, 0.5602697719271212, 0.5602751451958917, 0.5602804031499697, 0.5602855497510254, 0.5602905887749673, 0.560295523822005, 0.5603003583261388, 0.5603050955641069, 0.5603097386638224, 0.5603142906123252, 0.5603187542632808, 0.5603231323440478, 0.560327427462342, 0.5603316421125194, 0.5603357786814998, 0.5603398394543526, 0.5603438266195659, 0.5603477422740141, 0.5603515884276455, 0.5603553670079049, 0.5603590798639059, 0.5603627287703694, 0.560366315431342, 0.5603698414837053, 0.5603733085004913, 0.5603767179940131, 0.5603800714188237, 0.5603833701745108, 0.5603866156083394, 0.5603898090177502, 0.5603929516527217, 0.5603960447180055, 0.5603990893752401, 0.5604020867449524, 0.5604050379084524, 0.5604079439096263, 0.5604108057566364, 0.5604136244235306, 0.5604164008517677, 0.5604191359516644, 0.5604218306037662, 0.5604244856601479, 0.5604271019456486, 0.5604296802590422, 0.5604322213741496, 0.5604347260408948, 0.5604371949863077, 0.5604396289154767, 0.5604420285124551, 0.5604443944411219, 0.5604467273460007, 0.5604490278530385, 0.5604512965703478, 0.560453534088911, 0.5604557409832531, 0.5604579178120817, 0.5604600651188953, 0.5604621834325659, 0.5604642732678913, 0.5604663351261244, 0.5604683694954756, 0.5604703768515947, 0.5604723576580286, 0.5604743123666592, 0.5604762414181221, 0.5604781452422058, 0.5604800242582336, 0.5604818788754274, 0.5604837094932584, 0.560485516501779, 0.5604873002819429, 0.5604890612059105, 0.5604907996373408, 0.560492515931672, 0.5604942104363894, 0.5604958834912821, 0.5604975354286899, 0.5604991665737387, 0.5605007772445675, 0.5605023677525451, 0.5605039384024791, 0.5605054894928151, 0.5605070213158296, 0.5605085341578137, 0.560510028299251, 0.5605115040149873, 0.5605129615743943, 0.5605144012415281, 0.5605158232752786, 0.5605172279295165, 0.5605186154532337, 0.5605199860906768, 0.5605213400814786, 0.560522677660782, 0.5605239990593612, 0.5605253045037383, 0.5605265942162938, 0.5605278684153764, 0.5605291273154062, 0.5605303711269751, 0.5605316000569448, 0.5605328143085392, 0.560534014081436, 0.560535199571853, 0.5605363709726339, 0.5605375284733282, 0.5605386722602715, 0.5605398025166614, 0.5605409194226305, 0.5605420231553191, 0.5605431138889433, 0.5605441917948623, 0.5605452570416427, 0.5605463097951225, 0.5605473502184701, 0.5605483784722447, 0.5605493947144524, 0.5605503991006021, 0.5605513917837595, 0.5605523729145978, 0.5605533426414502, 0.5605543011103573, 0.5605552484651158, 0.5605561848473242, 0.5605571103964275, 0.560558025249762, 0.5605589295425961, 0.5605598234081732, 0.5605607069777504, 0.5605615803806384, 0.5605624437442389, 0.5605632971940818, 0.560564140853861, 0.5605649748454693, 0.5605657992890327, 0.5605666143029434, 0.5605674200038918, 0.5605682165068984, 0.560569003925344, 0.5605697823710007, 0.5605705519540591, 0.5605713127831585, 0.5605720649654139, 0.5605728086064428, 0.5605735438103918, 0.5605742706799629, 0.5605749893164373, 0.5605756998197015, 0.5605764022882701, 0.5605770968193098, 0.5605777835086616, 0.5605784624508643, 0.5605791337391751, 0.5605797974655916, 0.5605804537208726, 0.5605811025945584, 0.5605817441749907, 0.5605823785493323, 0.5605830058035859, 0.5605836260226129, 0.5605842392901518, 0.5605848456888363, 0.560585445300212, 0.5605860382047545, 0.5605866244818855, 0.5605872042099895, 0.5605877774664301, 0.5605883443275654, 0.5605889048687639, 0.5605894591644193, 0.5605900072879654, 0.5605905493118908, 0.5605910853077533, 0.5605916153461934, 0.5605921394969487], "ZhaoEtAl2006Asc": [0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494], "AkkarEtAlRjb2014": [0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058], "BindiEtAl2014Rjb": [0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251], "CauzziEtAl2014": [0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568], "DerrasEtAl2014": [0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044], "AbrahamsonEtAl2014": [0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064, 0.6333697577245064], "BooreEtAl2014": [0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6056251753908926, 0.6064454476127337, 0.6072589436681181, 0.6080657764769682, 0.6088660561391367, 0.6096598900279292, 0.6104473828797693, 0.6112286368802009, 0.6120037517464018, 0.6127728248063846, 0.6135359510750226, 0.6142932233270877, 0.6150447321674052, 0.6157905660982831, 0.616530811584334, 0.6172655531148077, 0.6179948732635602, 0.6187188527467526, 0.6194375704783893, 0.6201511036237833, 0.620859527651064, 0.6215629163807848, 0.6222613420337252, 0.6229548752769819, 0.6236435852683908, 0.6243275396993765, 0.625006804836282, 0.6256814455602686, 0.6263515254057902, 0.6270171065977715, 0.6276782500874891, 0.6283350155872389, 0.6289874616038148, 0.6296356454708848, 0.6302796233802539, 0.6309194504121285, 0.631555180564336, 0.632186866780628, 0.6328145609780442, 0.633438314073388, 0.6340581760088653, 0.6346741957768908, 0.6352864214441173, 0.6358949001747121, 0.6364996782528788, 0.6371008011047247, 0.6376983133194007, 0.6382922586696322, 0.6388826801315949, 0.6394696199042137, 0.6400531194278561, 0.6406332194024724, 0.6412099598052106, 0.6417833799074842, 0.6423535182915526, 0.6429204128666263, 0.6434841008844692, 0.6440446189545935, 0.6446020030589792, 0.6451562885664021, 0.6457075102463308, 0.6462557022824483, 0.6468008982857865, 0.6473431313074959, 0.6478824338512515, 0.6484188378853347, 0.6489523748543635, 0.6494830756907118, 0.6500109708256201, 0.650536090200003, 0.6510584632749632, 0.6515781190420289, 0.6520950860331176, 0.6526093923302383, 0.653121065574933, 0.653630132977475, 0.6541366213258302, 0.654640556994381, 0.655141965952429, 0.6556408737724784, 0.6561373056383076, 0.6566312863528393, 0.6571228403458109, 0.6576119916812423, 0.6580987640647408, 0.6585831808505939, 0.659065265048717, 0.6595450393314, 0.6600225260399254, 0.6604977471909789, 0.6609707244829527, 0.6614414793020588, 0.6619100327283152, 0.6623764055413895, 0.6628406182262861, 0.6633026909789275, 0.6637626437115718, 0.6642204960581309, 0.6646762673793464, 0.6651299767678535, 0.6655816430531276, 0.6660312848063163, 0.6664789203449573, 0.6669245677375918, 0.667368244808275, 0.6678099691409821, 0.6682497580839176, 0.6686876287537227, 0.6691235980395946, 0.6695576826073157, 0.6699898989031835, 0.6704202631578702, 0.6708487913901805, 0.6712754994107416, 0.6717004028256078, 0.6721235170397808, 0.6725448572606685, 0.672964438501456, 0.6733822755844127, 0.6737983831441265, 0.6742127756306704, 0.6746254673127008, 0.6750364722804956, 0.6754458044489201, 0.6758534775603425, 0.6762595051874785, 0.6766639007361833, 0.6770666774481869, 0.6774678484037712, 0.6778674265243891, 0.6782654245752385, 0.6786618551677784, 0.6790567307621967, 0.6794500636698315, 0.6798418660555289, 0.6802321499399838, 0.680620927202], "ChiouYoungs2014": [0.55339449225007, 0.55339449225007, 0.5534116084491787, 0.5534302175066163, 0.5534504488665487, 0.5534855794770214, 0.5535286155472051, 0.5535719055177618, 0.5536150460104542, 0.5536577167622766, 0.5536996724897744, 0.5537407315722934, 0.5537807642239837, 0.5538196816570456, 0.55385742687672, 0.553893967223192, 0.5539292885078457, 0.5539633904873533, 0.553996283405281, 0.5540279853591615, 0.5540585202936977, 0.554087916463947, 0.5541162052499792, 0.5541434202348694, 0.5541695964812523, 0.554194802965521, 0.554219192726717, 0.5542427822140709, 0.5542655782017782, 0.5542875918910134, 0.5543088380222726, 0.5543293341221677, 0.5543490998645441, 0.5543681565295416, 0.5543865265469831, 0.5544042331125599, 0.5544212998669372, 0.5544377506292106, 0.5544536091772561, 0.5544688990684424, 0.5544836434949886, 0.554497865168952, 0.5545115862324681, 0.5545248281894058, 0.5545376118551084, 0.5545499573213161, 0.5545618839337642, 0.554573410280287, 0.5545845541875652, 0.5545953327249169, 0.5546057622137682, 0.5546158582416417, 0.5546256356796788, 0.5546351087028653, 0.554644290812263, 0.554653194858664, 0.5546618330671854, 0.5546702170624019, 0.5546783578936918, 0.5546862660605286, 0.554693951537503, 0.5547014237989095, 0.5547086918427613, 0.5547157642141316, 0.5547226490277503, 0.5547293539897966, 0.5547358864188562, 0.5547422532660189, 0.5547484611341104, 0.5547545162960559, 0.5547604247123867, 0.5547661920479033, 0.5547718236875145, 0.5547773247512762, 0.5547827001086558, 0.5547879543920496, 0.5547930920095836, 0.5547981171572253, 0.554803033830241, 0.5548078458340233, 0.5548125567943245, 0.5548171701669198, 0.5548216892467344, 0.5548261171764581, 0.5548304569546768, 0.5548347114435459, 0.5548388833760305, 0.5548429753627381, 0.5548469898983628, 0.554850929367767, 0.5548547960517182, 0.5548585921323018, 0.5548623196980291, 0.5548659807486559, 0.5548695771997315, 0.554873110886891, 0.5548765835699072, 0.5548799969365164, 0.5548833526060304, 0.5548866521327478, 0.5548898970091762, 0.5548930886690766, 0.5548962284903389, 0.5548993177977019, 0.5549023578653225, 0.5549053499192057, 0.5549082951395039, 0.5549111946626897, 0.5549140495836143, 0.5549168609574539, 0.5549196298015532, 0.5549223570971709, 0.5549250437911327, 0.5549276907973983, 0.554930298998545, 0.554932869247175, 0.5549354023672501, 0.5549378991553564, 0.5549403603819054, 0.5549427867922726, 0.5549451791078798, 0.5549475380272211, 0.5549498642268385, 0.5549521583622484, 0.554954421068822, 0.5549566529626225, 0.5549588546412006, 0.5549610266843515, 0.5549631696548354, 0.5549652840990621, 0.5549673705477443, 0.5549694295165182, 0.5549714615065353, 0.5549734670050266, 0.5549754464858394, 0.5549774004099497, 0.5549793292259506, 0.5549812333705183, 0.554983113268857, 0.5549849693351221, 0.5549868019728265, 0.5549886115752265, 0.554990398525692, 0.5549921631980592, 0.5549939059569681, 0.5549956271581851, 0.5549973271489115, 0.5549990062680791, 0.5550006648466321, 0.5550023032077978, 0.5550039216673451, 0.5550055205338328, 0.5550071001088465, 0.5550086606872268, 0.555010202557287, 0.5550117260010222, 0.5550132312943105, 0.5550147187071043, 0.5550161885036157, 0.5550176409424937, 0.5550190762769943, 0.5550204947551437, 0.5550218966198953, 0.555023282109281, 0.5550246514565559, 0.5550260048903376, 0.5550273426347404, 0.5550286649095046, 0.5550299719301203, 0.5550312639079467, 0.5550325410503278, 0.5550338035607025, 0.5550350516387117, 0.5550362854803009, 0.5550375052778197, 0.5550387112201169, 0.5550399034926332, 0.5550410822774892, 0.5550422477535724, 0.5550434000966188, 0.5550445394792937, 0.555045666071268, 0.5550467800392943, 0.5550478815472767, 0.5550489707563421, 0.5550500478249071, 0.5550511129087428, 0.5550521661610376, 0.5550532077324584, 0.5550542377712097, 0.5550552564230897, 0.5550562638315468, 0.5550572601377317, 0.5550582454805504, 0.5550592199967129, 0.5550601838207836, 0.5550611370852272, 0.5550620799204542, 0.5550630124548664, 0.5550639348148988, 0.5550648471250617, 0.5550657495079812, 0.5550666420844385, 0.555067524973408, 0.5550683982920945, 0.5550692621559687, 0.5550701166788031, 0.5550709619727052, 0.5550717981481506, 0.5550726253140155, 0.5550734435776079, 0.5550742530446978, 0.5550750538195471, 0.5550758460049379, 0.5550766297022007, 0.5550774050112421, 0.5550781720305712, 0.5550789308573248, 0.5550796815872938, 0.5550804243149468, 0.5550811591334541, 0.555081886134712, 0.5550826054093645, 0.5550833170468261, 0.5550840211353032, 0.5550847177618151, 0.5550854070122154, 0.5550860889712109, 0.5550867637223826, 0.5550874313482037, 0.5550880919300588, 0.5550887455482626, 0.5550893922820772, 0.5550900322097299, 0.5550906654084299, 0.5550912919543857, 0.5550919119228205, 0.5550925253879889, 0.5550931324231924, 0.555093733100794, 0.5550943274922339, 0.5550949156680439, 0.5550954976978617, 0.5550960736504443, 0.5550966435936832, 0.5550972075946158, 0.55509776571944, 0.555098318033527, 0.5550988646014331, 0.5550994054869126, 0.5550999407529298, 0.5551004704616709], "CampbellBozorgnia2014": [0.5788341376058368, 0.5788341376058368, 0.5788867126098981, 0.5790405441951614, 0.5792852060974404, 0.5798395581081787, 0.5804634676816727, 0.5810185026328515, 0.5815138200418654, 0.5819570318321173, 0.5823546087089184, 0.5827121328298671, 0.5830344532243593, 0.5833257915478207, 0.5835898237166083, 0.58382974884891, 0.5840483500088348, 0.5842480483493117, 0.5844309512363365, 0.5845988946962567, 0.5847534805472535, 0.5848961086472568, 0.585028004741944, 0.5851502444134488, 0.5852637736179992, 0.585369568191303, 0.5854688473132463, 0.5855621464435321, 0.5856499030761511, 0.5857325235577155, 0.5858103839781286, 0.5858838315235927, 0.5859531861028482, 0.5860187421127989, 0.586080770250442, 0.5861395193078548, 0.586195217908654, 0.5862480761599065, 0.5862982872045474, 0.5863460286671208, 0.5863914639910052, 0.5864347436688662, 0.5864760063704146, 0.5865153799729568, 0.5865529825010187, 0.5865889229816567, 0.5866233022221169, 0.5866562135163368, 0.586687743286496, 0.5867179716654605, 0.5867469730255607, 0.5867748164587235, 0.5868015662125675, 0.5868272820866619, 0.5868520197927783, 0.586875831282596, 0.5868987650460018, 0.5869208663828116, 0.5869421776504716, 0.5869627384900383, 0.5869825860325096, 0.5870017550873747, 0.5870202783150605, 0.5870381863847853, 0.5870555081191822, 0.5870722706269159, 0.5870884994243968, 0.587104218547586, 0.587119450654789, 0.5871342171212458, 0.5871484210097626, 0.5871621912788304, 0.587175563372325, 0.5871885535281312, 0.5872011771450782, 0.587213448834539, 0.5872253824684128, 0.5872369912237735, 0.5872482876244349, 0.587259283579672, 0.5872699904203101, 0.5872804189323817, 0.587290579388534, 0.587300481577353, 0.5873116879272149, 0.5873246730922114, 0.5873373164033997, 0.5873496299157301, 0.5873616251484842, 0.5873733131137743, 0.5873847043432968, 0.5873958089134584, 0.5874066364689847, 0.5874171962451156, 0.5874274970884819, 0.587437547476751, 0.5874473555371221, 0.587456929063749, 0.5874662755341581, 0.5874754021247289, 0.5874843157252959, 0.5874930229529286, 0.5875015301649424, 0.5875098434711877, 0.587517968745664, 0.5875259116374992, 0.587533677581335, 0.5875412718071537, 0.5875486993495802, 0.5875559650566933, 0.5875630735983715, 0.5875700294742052, 0.5875768370209992, 0.5875835004198887, 0.5875900237030932, 0.587596410760328, 0.5876026653448931, 0.5876087910794598, 0.5876147914615681, 0.5876206698688561, 0.5876264295640323, 0.5876320736996081, 0.5876376053224016, 0.5876430273778261, 0.5876483427139763, 0.5876535540855194, 0.5876586641574072, 0.5876636755084127, 0.5876685906345055, 0.5876734119520711, 0.5876781418009847, 0.5876827824475447, 0.587687336087276, 0.5876918048476063, 0.5876961907904253, 0.587700495914531, 0.5877047221579671, 0.5877088714002623, 0.5877129454645693, 0.5877169461197148, 0.5877208750821598, 0.5877247340178788, 0.5877285245441596, 0.5877322482313261, 0.5877359066043917, 0.5877395011446434, 0.5877430332911606, 0.5877465044422732, 0.5877499159569589, 0.5877532691561856, 0.5877565653241996, 0.587759805709762, 0.587762991527337, 0.5877661239582336, 0.5877692041517012, 0.5877722332259846, 0.587775212269337, 0.5877781423409945, 0.587781024472113, 0.5877838596666706, 0.5877866489023345, 0.5877893931312963, 0.5877920932810767, 0.5877947502552986, 0.5877973649344332, 0.5877999381765183, 0.5878024708178505, 0.5878049636736514, 0.5878074175387118, 0.5878098331880104, 0.5878122113773122, 0.5878145528437451, 0.5878168583063554, 0.5878191284666459, 0.5878213640090924, 0.5878235656016444, 0.5878257338962082, 0.5878278695291121, 0.5878299731215578, 0.5878320452800543, 0.5878340865968388, 0.5878360976502823, 0.5878380790052828, 0.5878400312136443, 0.5878419548144432, 0.5878438503343844, 0.5878457182881431, 0.5878475591786979, 0.5878493734976512, 0.5878511617255405, 0.587852924332139, 0.5878546617767467, 0.5878563745084733, 0.5878580629665097, 0.5878597275803936, 0.5878613687702657, 0.5878629869471171, 0.58786458251303, 0.5878661558614113, 0.5878677073772178, 0.5878692374371753, 0.5878707464099912, 0.5878722346565598, 0.5878737025301624, 0.5878751503766608, 0.5878765785346851, 0.5878779873358156, 0.5878793771047607, 0.5878807481595272, 0.5878821008115879, 0.5878834353660427, 0.5878847521217764, 0.5878860513716102, 0.5878873334024504, 0.5878885984954324, 0.5878898469260597, 0.5878910789643405, 0.5878922948749187, 0.587893494917203, 0.5878946793454909, 0.5878958484090899, 0.5878970023524354, 0.5878981414152048, 0.5878992658324294, 0.587900375834602, 0.5879014716477827, 0.5879025534937009, 0.5879036215898555, 0.587904676149611, 0.5879057173822927, 0.5879067454932781, 0.5879077606840863, 0.5879087631524648, 0.5879097530924743, 0.5879107306945714, 0.587911696145689, 0.5879126496293134, 0.5879135913255621, 0.5879145214112562, 0.5879154400599943, 0.5879163474422218, 0.5879172437252999, 0.5879181290735724, 0.5879190036484309, 0.587919867608378, 0.5879207211090897, 0.5879215643034752, 0.5879223973417362, 0.5879232203714237, 0.5879240335374947, 0.587924836982366, 0.5879256308459677], "KothaEtAl2016Italy": [0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143], "KothaEtAl2016Other": [0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143], "KothaEtAl2016Turkey": [0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143], "ZhaoEtAl2016Asc": [0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705], "BindiEtAl2017Rjb": [0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061]}, "ylabel": "Total Std. Dev. (PGA)"}, {"column": 1, "row": 0, "yvalues": {"AkkarBommer2010": [0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741], "CauzziFaccioli2008": [0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482], "ChiouYoungs2008": [0.6207405754214154, 0.6207405754214154, 0.6207452108968473, 0.6207580897948295, 0.6207799925200159, 0.6208939423645311, 0.6210587527052475, 0.6212277912931863, 0.6213988887922897, 0.6215701323699876, 0.6217399179552164, 0.6219069588194834, 0.6220702653933327, 0.6222291095293659, 0.622382982984208, 0.6225315563659419, 0.6226746419543693, 0.6228121618335848, 0.6229441215711556, 0.6230705890329526, 0.6231916776421143, 0.6233075333240996, 0.6234183244248871, 0.623524233982871, 0.6236254538411498, 0.6237222336558567, 0.623814956057423, 0.6239037780503842, 0.6239888400308656, 0.6240702871881255, 0.6241482669252626, 0.6242229268913331, 0.6242944134770994, 0.6243628706676418, 0.6244284391734952, 0.6244912557818225, 0.6245514528831124, 0.6246091581388649, 0.6246644942629959, 0.6247175788950818, 0.6247685245476574, 0.6248174386129683, 0.6248644234170984, 0.6249095763114448, 0.6249529897931843, 0.6249947516477714, 0.6250349451076889, 0.6250736490226474, 0.6251109380372792, 0.6251468827730733, 0.6251815500119096, 0.6252150028790524, 0.6252473010239052, 0.6252785007971798, 0.6253086554234532, 0.6253378151683286, 0.625366027499639, 0.6253933372422991, 0.6254197867265662, 0.6254454159295787, 0.6254702626101419, 0.625494362436807, 0.625517749109346, 0.6255404544737752, 0.625562508631115, 0.6255839400400968, 0.6256047756140515, 0.6256250408122223, 0.6256447597257512, 0.6256639551585956, 0.6256826487036269, 0.6257008608141617, 0.6257186108711702, 0.6257359172464023, 0.6257527973616591, 0.6257692677444358, 0.6257853440801444, 0.6258010412611253, 0.6258163734326351, 0.6258313540360001, 0.625845995849107, 0.6258603110243964, 0.6258743111245149, 0.6258880071557729, 0.6259014095995455, 0.6259145284417482, 0.6259273732005063, 0.6259399529521367, 0.6259522763555474, 0.6259643516751541, 0.625976186802412, 0.6259877892760479, 0.6259991663010764, 0.6260103247666785, 0.6260212712630139, 0.6260320120970345, 0.626042553307364, 0.6260529006783002, 0.6260630597529981, 0.6260730358458833, 0.6260828340543447, 0.6260924592697529, 0.6261019161878427, 0.6261112093185051, 0.6261203429950193, 0.6261293213827638, 0.6261381484874362, 0.6261468281628124, 0.6261553641180752, 0.6261637599247343, 0.6261720190231674, 0.6261801447288021, 0.6261881402379603, 0.6261960086333868, 0.6262037528894802, 0.6262113758772435, 0.6262188803689711, 0.6262262690426876, 0.6262335444863535, 0.62624070920185, 0.6262477656087592, 0.6262547160479442, 0.6262615627849513, 0.6262683080132332, 0.6262749538572119, 0.626281502375186, 0.6262879555620924, 0.626294315352131, 0.6263005836212577, 0.6263067621895576, 0.6263128528235, 0.6263188572380847, 0.626324777098884, 0.6263306140239887, 0.6263363695858587, 0.6263420453130883, 0.6263476426920872, 0.6263531631686831, 0.6263586081496504, 0.6263639790041676, 0.6263692770652093, 0.6263745036308729, 0.6263796599656467, 0.6263847473016206, 0.6263897668396434, 0.6263947197504273, 0.6263996071756049, 0.6264044302287409, 0.6264091899962968, 0.6264138875385574, 0.6264185238905156, 0.6264231000627197, 0.6264276170420862, 0.6264320757926762, 0.6264364772564416, 0.6264408223539392, 0.626445111985016, 0.6264493470294661, 0.6264535283476612, 0.6264576567811555, 0.626461733153267, 0.626465758269635, 0.6264697329187561, 0.6264736578724983, 0.6264775338865972, 0.6264813617011311, 0.626485142040978, 0.6264888756162567, 0.6264925631227495, 0.6264962052423105, 0.6264998026432577, 0.626503355980751, 0.6265068658971564, 0.6265103330223972, 0.6265137579742917, 0.6265171413588789, 0.6265204837707343, 0.626523785793272, 0.6265270479990378, 0.6265302709499918, 0.6265334551977809, 0.626536601284003, 0.6265397097404599, 0.6265427810894046, 0.6265458158437783, 0.6265488145074399, 0.6265517775753884, 0.6265547055339774, 0.6265575988611234, 0.6265604580265066, 0.6265632834917655, 0.6265660757106856, 0.6265688351293816, 0.626571562186475, 0.6265742573132644, 0.6265769209338923, 0.6265795534655054, 0.6265821553184117, 0.6265847268962308, 0.6265872685960413, 0.6265897808085232, 0.6265922639180962, 0.6265947183030539, 0.626597144335694, 0.6265995423824455, 0.6266019128039909, 0.6266042559553863, 0.6266065721861773, 0.6266088618405119, 0.6266111252572505, 0.6266133627700722, 0.626615574707579, 0.626617761393397, 0.6266199231462743, 0.626622060280177, 0.6266241731043821, 0.6266262619235689, 0.6266283270379062, 0.6266303687431395, 0.6266323873306744, 0.6266343830876583, 0.6266363562970597, 0.6266383072377473, 0.6266402361845635, 0.6266421434084006, 0.6266440291762707, 0.6266458937513779, 0.6266477373931855, 0.6266495603574835, 0.6266513628964542, 0.6266531452587354, 0.6266549076894831, 0.6266566504304322, 0.6266583737199564, 0.6266600777931254, 0.6266617628817623, 0.6266634292144989, 0.62666507701683, 0.6266667065111665, 0.6266683179168864, 0.6266699114503866, 0.6266714873251321, 0.6266730457517043, 0.6266745869378484, 0.6266761110885201, 0.626677618405931, 0.6266791090895928, 0.6266805833363612, 0.6266820413404786, 0.6266834832936152, 0.6266849093849108, 0.6266863198010142], "ZhaoEtAl2006Asc": [0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374], "AkkarEtAlRjb2014": [0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663], "BindiEtAl2014Rjb": [0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782], "CauzziEtAl2014": [0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202], "DerrasEtAl2014": [0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937], "AbrahamsonEtAl2014": [0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089, 0.64370198850089], "BooreEtAl2014": [0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6221728789804508, 0.6233499849372494, 0.6245151673451715, 0.6256686680602845, 0.6268107216183602, 0.6279415555281154, 0.6290613905499006, 0.6301704409606972, 0.6312689148061924, 0.6323570141407169, 0.6334349352557207, 0.6345028688974456, 0.6355610004743854, 0.6366095102551369, 0.6376485735571473, 0.6386783609268577, 0.6396990383117086, 0.6407107672244816, 0.6417137049002956, 0.6427080044467741, 0.6436938149876081, 0.6446712817999685, 0.6456405464459968, 0.6466017468987417, 0.6475550176627873, 0.6485004898898429, 0.6494382914895541, 0.6503685472357642, 0.6512913788684568, 0.6522069051915649, 0.653115242166887, 0.6540165030042546, 0.6549107982481521, 0.6557982358609511, 0.6566789213029078, 0.6575529576090943, 0.6584204454633804, 0.6592814832696161, 0.6601361672201259, 0.660984591361665, 0.6618268476589159, 0.6626630260556485, 0.6634932145336631, 0.6643174991695794, 0.6651359641895879, 0.6659486920222434, 0.6667557633494039, 0.6675572571553378, 0.6683532507741531, 0.6691438199355547, 0.6699290388090381, 0.6707089800465518, 0.6714837148237358, 0.6722533128797318, 0.6730178425557035, 0.6737773708320177, 0.6745319633642424, 0.6752816845179396, 0.6760265974023174, 0.6767667639028052, 0.6775022447125627, 0.6782330993629885, 0.6789593862532649, 0.6796811626789357, 0.680398484859642, 0.681111407965929, 0.6818199861452701, 0.6825242725472545, 0.6832243193480334, 0.683920177773994, 0.6846118981247247, 0.6852995297953083, 0.6859831212979168, 0.6866627202827817, 0.6873383735585588, 0.6880101271120513, 0.6886780261274102, 0.6893421150047301, 0.6900024373781452, 0.6906590361333759, 0.6913119534247956, 0.6919612306920045, 0.6926069086759401, 0.693249027434523, 0.6938876263578885, 0.6945227441831745, 0.6951544190089106, 0.6957826883090156, 0.6964075889464088, 0.6970291571862491, 0.6976474287088229, 0.6982624386220815, 0.6988742214738499, 0.699482811263702, 0.7000882414545281, 0.7006905449838008, 0.7012897542745411, 0.7018859012460015, 0.7024790173240736, 0.703069133451426, 0.7036562800973852, 0.7042404872675672, 0.7048217845132491, 0.7054002009405343, 0.7059757652192536, 0.7065485055916756, 0.7071184498809696, 0.7076856254994994, 0.7082500594568615, 0.708811778367781, 0.709370808459772, 0.7099271755806349, 0.7104809052057746, 0.7110320224453204, 0.7115805520511126, 0.712126518423483, 0.7126699456179069, 0.7132108573514803, 0.713749277009252, 0.7142852276504095, 0.7148187320143181, 0.7153498125264202, 0.7158784913039995, 0.7164047901618159, 0.7169287306176099, 0.7174503338974842, 0.7179696209411579, 0.7184866124071086, 0.7190013286776017, 0.7195137898635944, 0.7200240158095522, 0.7205320260981357, 0.7210378400548034, 0.7215414767523065, 0.7220429550150774, 0.7225422934235425, 0.7230395103183223, 0.7235346238043522, 0.7240276517549133, 0.7245186118155754, 0.7250075214080565, 0.7254943977340046, 0.7259792577786921, 0.7264621183146432, 0.7269429959051747, 0.727421906907871, 0.7278988674779849, 0.7283738935717701, 0.7288470009497372, 0.7293182051798549, 0.7297875216406772, 0.7302549655244132, 0.7307205518399333, 0.7311842954157027, 0.731646210902687, 0.7321063127771607], "ChiouYoungs2014": [0.6268236783059384, 0.6268236783059384, 0.6268872641186521, 0.6269552624130516, 0.627028244474185, 0.6271526448726842, 0.6273044678886864, 0.6274571661938678, 0.6276093472426562, 0.6277598740059359, 0.6279078529424968, 0.6280526067994514, 0.6281936413627646, 0.6283306121012331, 0.6284632939246302, 0.6285915553780487, 0.6287153374559847, 0.6288346366367882, 0.6289494915066932, 0.6290599723078187, 0.629166172804778, 0.6292682039603064, 0.6293661890101666, 0.6294602596171539, 0.6295505528583308, 0.6296373242902501, 0.6297211220730915, 0.6298020153171451, 0.6298800392321235, 0.6299552442644405, 0.6300276928081628, 0.630097456441425, 0.6301646136065631, 0.630229247667338, 0.6302914452879695, 0.6303512950874055, 0.6304088865291794, 0.6304643090127722, 0.6305176511370705, 0.6305690001104336, 0.6306184412852742, 0.6306660577979909, 0.6307119302976564, 0.6307561367491147, 0.6307987522981188, 0.6308398491878624, 0.6308794967177905, 0.630917761236891, 0.6309547061648321, 0.6309903920353119, 0.6310248765568723, 0.6310582146871629, 0.631090458717315, 0.6311216583636235, 0.6311518608642316, 0.6311811110789012, 0.6312094515903236, 0.6312369228056978, 0.6312635630575666, 0.6312894087031068, 0.6313144942212456, 0.6313388523071229, 0.6313625139635423, 0.6313855085891541, 0.6314078640632006, 0.6314296068267173, 0.631450761960143, 0.6314713532573357, 0.6314914032960283, 0.631510933504781, 0.63152996422652, 0.6315485147787512, 0.6315666035105733, 0.6315842478565965, 0.631601464387906, 0.6316182688601845, 0.6316346762591373, 0.6316507008433405, 0.6316663561846426, 0.6316816552062477, 0.6316966102185986, 0.6317112329531807, 0.6317255345943606, 0.6317395258093694, 0.6317532167765333, 0.6317666172118562, 0.6317797363940455, 0.6317925831880756, 0.6318051660673732, 0.6318174931347054, 0.6318295721418505, 0.6318414105081221, 0.631853015337816, 0.6318643934366444, 0.6318755513272208, 0.6318864952636488, 0.6318972312452728, 0.63190776502964, 0.6319181021447207, 0.6319282479004329, 0.6319382073995135, 0.6319479855477745, 0.631957587063782, 0.6319670164879924, 0.6319762781913798, 0.6319853763835834, 0.6319943151206048, 0.6320030983120813, 0.6320117297281616, 0.6320202130060067, 0.632028551655938, 0.6320367490672547, 0.6320448085137381, 0.6320527331588642, 0.6320605260607365, 0.6320681901767622, 0.6320757283680806, 0.6320831434037611, 0.6320904379647847, 0.6320976146478173, 0.6321046759687929, 0.6321116243663124, 0.6321184622048707, 0.6321251917779206, 0.6321318153107853, 0.6321383349634245, 0.6321447528330644, 0.6321510709566981, 0.6321572913134654, 0.6321634158269162, 0.6321694463671647, 0.6321753847529415, 0.6321812327535486, 0.63218699209072, 0.6321926644403973, 0.6321982514344221, 0.6322037546621491, 0.6322091756719874, 0.6322145159728688, 0.6322197770356516, 0.632224960294461, 0.6322300671479688, 0.6322350989606176, 0.63224005706379, 0.6322449427569282, 0.6322497573086029, 0.632254501957539, 0.6322591779135948, 0.6322637863587018, 0.6322683284477637, 0.632272805309518, 0.6322772180473629, 0.6322815677401488, 0.632285855442938, 0.6322900821877354, 0.6322942489841862, 0.632298356820249, 0.6323024066628414, 0.6323063994584596, 0.6323103361337737, 0.6323142175962025, 0.6323180447344627, 0.6323218184190997, 0.632325539502998, 0.6323292088218713, 0.6323328271947365, 0.6323363954243686, 0.6323399142977394, 0.6323433845864408, 0.6323468070470923, 0.6323501824217354, 0.6323535114382112, 0.6323567948105281, 0.6323600332392153, 0.6323632274116631, 0.6323663780024535, 0.6323694856736788, 0.6323725510752487, 0.6323755748451894, 0.6323785576099294, 0.6323814999845803, 0.6323844025732045, 0.632387265969077, 0.632390090754937, 0.6323928775032337, 0.6323956267763616, 0.6323983391268916, 0.6324010150977923, 0.6324036552226466, 0.63240626002586, 0.6324088300228639, 0.6324113657203128, 0.6324138676162747, 0.6324163362004175, 0.6324187719541877, 0.632421175350987, 0.6324235468563411, 0.6324258869280651, 0.6324281960164244, 0.6324304745642905, 0.6324327230072926, 0.6324349417739656, 0.6324371312858936, 0.6324392919578496, 0.6324414241979319, 0.6324435284076958, 0.6324456049822836, 0.6324476543105493, 0.6324496767751818, 0.6324516727528237, 0.6324536426141872, 0.6324555867241689, 0.6324575054419583, 0.6324593991211475, 0.6324612681098343, 0.6324631127507265, 0.6324649333812413, 0.6324667303336028, 0.6324685039349374, 0.632470254507367, 0.6324719823681003, 0.6324736878295206, 0.6324753711992733, 0.6324770327803506, 0.6324786728711742, 0.6324802917656758, 0.6324818897533768, 0.6324834671194658, 0.6324850241448734, 0.632486561106347, 0.6324880782765228, 0.6324895759239963, 0.6324910543133926, 0.6324925137054328, 0.6324939543570016, 0.6324953765212111, 0.6324967804474657, 0.6324981663815229, 0.6324995345655556, 0.6325008852382105, 0.6325022186346679, 0.6325035349866983, 0.6325048345227182, 0.6325061174678459, 0.6325073840439552, 0.6325086344697276, 0.6325098689607049, 0.6325110877293396, 0.6325122909850449, 0.6325134789342433, 0.6325146517804144, 0.6325158097241425], "CampbellBozorgnia2014": [0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832], "KothaEtAl2016Italy": [0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133], "KothaEtAl2016Other": [0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133], "KothaEtAl2016Turkey": [0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133], "ZhaoEtAl2016Asc": [0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553], "BindiEtAl2017Rjb": [0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557]}, "ylabel": "Total Std. Dev. (SA(0.2))"}, {"column": 0, "row": 1, "yvalues": {"AkkarBommer2010": [0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164], "CauzziFaccioli2008": [0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829], "ChiouYoungs2008": [0.6861527580648684, 0.6861527580648684, 0.6861696809213955, 0.6861865591844728, 0.6862034665959592, 0.6862264749545453, 0.6862529530999205, 0.6862795934057957, 0.6863062392494207, 0.6863327455430291, 0.6863589819374957, 0.686384834696174, 0.6864102073975413, 0.6864350207037673, 0.6864592114521127, 0.6864827313072088, 0.6865055451729447, 0.6865276295166565, 0.6865489707142344, 0.6865695634871948, 0.6865894094732229, 0.6866085159499653, 0.686626894716848, 0.6866445611299874, 0.6866615332795267, 0.6866778541040022, 0.6866936249194305, 0.6867088527934649, 0.6867235392502484, 0.6867376898172541, 0.6867513132008235, 0.6867644205948773, 0.6867770251024714, 0.6867891412531026, 0.6868007846013199, 0.6868119713943794, 0.6868227182985038, 0.6868330421748261, 0.6868429598973937, 0.6868524882067074, 0.6868616435932019, 0.6868704422058918, 0.6868788997820919, 0.6868870315947214, 0.6868948524142174, 0.6869023764825262, 0.6869096174970208, 0.6869165886025267, 0.6869233023899128, 0.6869297708999551, 0.6869360056313782, 0.6869420175521671, 0.6869478171133833, 0.6869534142648532, 0.686958818472206, 0.6869640387348258, 0.686969083604369, 0.6869739612035539, 0.6869786792449966, 0.6869832450499022, 0.6869876655664693, 0.6869919473878902, 0.6869960967698634, 0.6870001196475519, 0.6870040216519423, 0.6870078081255736, 0.687011484137618, 0.6870150544983042, 0.6870185237726847, 0.6870218962937521, 0.687025176174915, 0.6870283673218506, 0.687031473443749, 0.6870344980639739, 0.6870374445301553, 0.6870403160237426, 0.6870431155690375, 0.6870458460417328, 0.6870485101769767, 0.6870511105769908, 0.6870536497182603, 0.68705612995832, 0.6870585535421565, 0.6870609226082508, 0.6870632391942744, 0.687065505242465, 0.6870677226046956, 0.6870698930472547, 0.6870720182553565, 0.6870740998373932, 0.6870761393289478, 0.6870781381965781, 0.6870800978413879, 0.6870820196023957, 0.687083904759715, 0.6870857545375553, 0.6870875701070543, 0.6870893525889551, 0.6870911030561299, 0.6870928225359688, 0.6870945120126325, 0.6870961724291841, 0.6870978046896022, 0.6870994096606856, 0.687100988173853, 0.6871025410268464, 0.6871040689853435, 0.6871055727844813, 0.6871070531303002, 0.687108510701112, 0.687109946148793, 0.6871113601000121, 0.6871127531573923, 0.6871141259006132, 0.6871154788874556, 0.6871168126547926, 0.6871181277195292, 0.6871194245794953, 0.6871207037142923, 0.6871219655860971, 0.6871232106404258, 0.6871244393068601, 0.687125651999736, 0.6871268491187996, 0.6871280310498308, 0.6871291981652354, 0.6871303508246103, 0.6871314893752792, 0.6871326141528038, 0.6871337254814708, 0.6871348236747549, 0.6871359090357605, 0.6871369818576426, 0.6871380424240074, 0.6871390910092953, 0.6871401278791451, 0.6871411532907427, 0.6871421674931527, 0.6871431707276351, 0.6871441632279487, 0.6871451452206399, 0.6871461169253182, 0.6871470785549214, 0.6871480303159664, 0.687148972408791, 0.6871499050277845, 0.6871508283616083, 0.6871517425934068, 0.6871526479010088, 0.6871535444571221, 0.6871544324295173, 0.6871553119812065, 0.6871561832706116, 0.6871570464517279, 0.6871579016742804, 0.6871587490838724, 0.6871595888221301, 0.6871604210268385, 0.6871612458320752, 0.6871620633683355, 0.6871628737626548, 0.6871636771387255, 0.6871644736170074, 0.6871652633148377, 0.6871660463465322, 0.6871668228234863, 0.6871675928542692, 0.6871683565447164, 0.6871691139980182, 0.6871698653148033, 0.6871706105932224, 0.6871713499290248, 0.6871720834156355, 0.687172811144227, 0.6871735332037899, 0.6871742496812002, 0.6871749606612844, 0.6871756662268819, 0.6871763664589055, 0.6871770614363998, 0.6871777512365964, 0.6871784359349692, 0.6871791156052852, 0.687179790319656, 0.6871804601485854, 0.6871811251610163, 0.6871817854243765, 0.6871824410046217, 0.6871830919662776, 0.6871837383724809, 0.6871843802850184, 0.6871850177643648, 0.6871856508697195, 0.6871862796590417, 0.6871869041890851, 0.6871875245154311, 0.6871881406925195, 0.6871887527736814, 0.6871893608111677, 0.687189964856178, 0.6871905649588896, 0.6871911611684843, 0.687191753533174, 0.6871923421002262, 0.6871929269159897, 0.687193508025917, 0.6871940854745884, 0.6871946593057335, 0.6871952295622537, 0.6871957962862422, 0.6871963595190054, 0.6871969193010821, 0.6871974756722621, 0.6871980286716058, 0.6871985783374613, 0.6871991247074821, 0.687199667818644, 0.6872002077072618, 0.6872007444090046, 0.687201277958912, 0.6872018083914083, 0.6872023357403175, 0.6872028600388778, 0.6872033813197542, 0.6872038996150536, 0.6872044149563356, 0.6872049273746267, 0.6872054369004321, 0.6872059435637475, 0.6872064473940703, 0.6872069484204116, 0.6872074466713063, 0.6872079421748244, 0.6872084349585809, 0.6872089250497458, 0.6872094124750546, 0.6872098972608163, 0.6872103794329244, 0.6872108590168646, 0.6872113360377242, 0.6872118105202005, 0.6872122824886089, 0.6872127519668909, 0.6872132189786228, 0.6872136835470221, 0.6872141456949559, 0.6872146054449477, 0.6872150628191851, 0.6872155178395256, 0.6872159705275045, 0.6872164209043405, 0.6872168689909427], "ZhaoEtAl2006Asc": [0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033], "AkkarEtAlRjb2014": [0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997], "BindiEtAl2014Rjb": [0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048], "CauzziEtAl2014": [0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969], "DerrasEtAl2014": [0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452], "AbrahamsonEtAl2014": [0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832, 0.7033670805489832], "BooreEtAl2014": [0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7004467151927067, 0.701604049172818, 0.7027531578102223, 0.7038941581036184, 0.7050271645667289, 0.7061522892982263, 0.7072696420492123, 0.708379330288384, 0.7094814592649009, 0.7105761320691594, 0.7116634496914638, 0.7127435110787408, 0.7138164131893258, 0.7148822510459631, 0.715941117787006, 0.7169931047159926, 0.7180383013495328, 0.719076795463703, 0.7201086731389182, 0.7211340188033618, 0.7221529152750528, 0.7231654438025624, 0.7241716841044639, 0.7251717144075591, 0.7261656114838763, 0.7271534506866011, 0.7281353059848233, 0.7291112499972899, 0.7300813540250901, 0.7310456880834005, 0.7320043209322397, 0.732957320106322, 0.7339047519440526, 0.7348466816156285, 0.7357831731503419, 0.7367142894631102, 0.737640092380181, 0.7385606426641693, 0.7394760000383195, 0.740386223210126, 0.7412913698942479, 0.7421914968348067, 0.7430866598270528, 0.7439769137384333, 0.744862312529063, 0.7457429092716626, 0.7466187561709234, 0.7474899045823596, 0.7483564050306543, 0.7492183072275083, 0.7500756600890066, 0.7509285117525321, 0.7517769095932266, 0.7526209002400258, 0.7534605295912632, 0.7542958428298742, 0.7551268844382131, 0.755953698212477, 0.756776327276766, 0.7575948140967842, 0.7584092004931915, 0.7592195276546216, 0.7600258361503761, 0.7608281659427794, 0.7616265563992684, 0.7624210463041334, 0.7632116738700178, 0.7639984767490875, 0.7647814920439882, 0.765560756318462, 0.7663363056077844, 0.7671081754288908, 0.767876400790291, 0.7686410162017503, 0.7694020556837111, 0.7701595527765415, 0.7709135405495117, 0.7716640516096065, 0.7724111181101054, 0.7731547717589754, 0.7738950438270701, 0.7746319651561402, 0.7753655661666556, 0.7760958768654568, 0.7768229268532296, 0.7775467453318163, 0.7782673611113595, 0.7789848026172819, 0.7796990978971187, 0.7804102746272004, 0.7811183601191736, 0.7818233813264038, 0.78252536485021, 0.7832243369459874, 0.7839203235291891, 0.7846133501811677, 0.7853034421549168, 0.785990624380663, 0.7866749214713582, 0.7873563577280464, 0.78803495714512, 0.7887107434154642, 0.7893837399355002, 0.7900539698101098, 0.7907214558574752, 0.7913862206138037, 0.7920482863379632, 0.7927076750160238, 0.793364408365705, 0.7940185078407248, 0.7943362008620783, 0.7943362008620783, 0.7943362008620783, 0.7943362008620783, 0.7943362008620783, 0.7943362008620783, 0.7943362008620783], "ChiouYoungs2014": [0.6957447340322621, 0.6957447340322621, 0.695765049357302, 0.6957857779935993, 0.6958069175113999, 0.6958323179285558, 0.695859838600316, 0.6958871527379615, 0.6959140846352488, 0.6959404986761122, 0.6959662932996912, 0.6959913948807035, 0.6960157522049909, 0.6960393318019024, 0.6960621141493495, 0.6960840906523268, 0.6961052612593386, 0.696125632584515, 0.6961452164225247, 0.6961640285663114, 0.6961820878586286, 0.6961994154254582, 0.6962160340525817, 0.6962319676763291, 0.6962472409666544, 0.6962619053299648, 0.6962760782064457, 0.6962897671110906, 0.6963029721354194, 0.6963156972102015, 0.6963279493468106, 0.6963397379909028, 0.6963510744746637, 0.6963619715551164, 0.6963724430271814, 0.6963825034013702, 0.6963921676371084, 0.696401450923726, 0.6964103685021227, 0.6964189355209893, 0.6964271669222679, 0.696435077351238, 0.6964426810872574, 0.6964499919917393, 0.6964570234704448, 0.6964637884475939, 0.6964702993496783, 0.6964765680971785, 0.6964826061026683, 0.6964884242740335, 0.6964940330217307, 0.6964994422691968, 0.6965046614656615, 0.6965096996007499, 0.6965145652203641, 0.6965192664434281, 0.6965238109791559, 0.696528206144568, 0.6965324588820331, 0.6965365757766624, 0.6965405630734167, 0.6965444266938197, 0.6965481722521983, 0.6965518050713905, 0.6965553301978784, 0.6965587524163206, 0.6965620762634691, 0.6965653060414617, 0.696568445830495, 0.6965714995008834, 0.696574470724516, 0.6965773629857269, 0.6965801795915983, 0.6965829236817149, 0.6965855982373906, 0.6965882060903913, 0.6965907499311741, 0.6965932323166677, 0.696595655677614, 0.6965980223254945, 0.6966003344590637, 0.6966025941705066, 0.6966048034512464, 0.6966069641974165, 0.6966090782150182, 0.6966111472247812, 0.6966131728667444, 0.6966151567045726, 0.6966171002296238, 0.6966190048647836, 0.6966208719680789, 0.6966227028360841, 0.6966244987071322, 0.6966262607643438, 0.6966279901384815, 0.6966296879106444, 0.6966313551148083, 0.6966329927402237, 0.6966346017336787, 0.6966361830016341, 0.6966377374122414, 0.6966392657972477, 0.6966407689537929, 0.6966422476461128, 0.6966437026071436, 0.6966451345400422, 0.6966465441196223, 0.6966479319937133, 0.6966492987844455, 0.6966506450894672, 0.6966519714830962, 0.6966532785174104, 0.696654566723281, 0.6966558366113509, 0.696657088672963, 0.6966583233810387, 0.696659541190913, 0.6966607425411241, 0.6966619278541651, 0.6966630975371956, 0.6966642519827189, 0.6966653915692228, 0.6966665166617916, 0.6966676276126837, 0.6966687247618845, 0.6966698084376292, 0.6966708789569013, 0.6966719366259068, 0.6966729817405246, 0.6966740145867367, 0.6966750354410363, 0.6966760445708173, 0.6966770422347454, 0.6966780286831107, 0.6966790041581655, 0.6966799688944453, 0.6966809231190746, 0.6966818670520599, 0.6966828009065678, 0.6966837248891916, 0.6966846392002055, 0.6966855440338073, 0.69668643957835, 0.6966873260165632, 0.6966882035257659, 0.6966890722780674, 0.6966899324405623, 0.6966907841755147, 0.6966916276405358, 0.6966924629887538, 0.696693290368975, 0.6966941099258412, 0.6966949217999766, 0.6966957261281314, 0.6966965230433185, 0.696697312674944, 0.6966980951489332, 0.6966988705878511, 0.6966996391110172, 0.6967004008346168, 0.6967011558718077, 0.6967019043328213, 0.6967026463250618, 0.6967033819531991, 0.6967041113192596, 0.6967048345227143, 0.6967055516605596, 0.6967062628274, 0.6967069681155242, 0.6967076676149787, 0.6967083614136405, 0.6967090495972843, 0.6967097322496497, 0.6967104094525037, 0.6967110812857028, 0.6967117478272514, 0.6967124091533582, 0.696713065338492, 0.6967137164554327, 0.6967143625753238, 0.6967150037677199, 0.6967156401006347, 0.6967162716405857, 0.696716898452639, 0.6967175206004511, 0.6967181381463089, 0.6967187511511708, 0.6967193596747033, 0.6967199637753185, 0.6967205635102087, 0.6967211589353819, 0.6967217501056934, 0.6967223370748784, 0.6967229198955839, 0.6967234986193963, 0.696724073296872, 0.6967246439775648, 0.6967252107100529, 0.6967257735419644, 0.6967263325200035, 0.696726887689974, 0.6967274390968037, 0.6967279867845666, 0.6967285307965055, 0.6967290711750532, 0.6967296079618533, 0.69673014119778, 0.6967306709229584, 0.6967311971767823, 0.6967317199979336, 0.6967322394243991, 0.6967327554934877, 0.6967332682418479, 0.696733777705483, 0.6967342839197672, 0.6967347869194612, 0.6967352867387259, 0.6967357834111374, 0.6967362769697012, 0.6967367674468644, 0.6967372548745306, 0.6967377392840707, 0.6967382207063367, 0.6967386991716729, 0.6967391747099272, 0.696739647350464, 0.6967401171221733, 0.6967405840534822, 0.6967410481723653, 0.6967415095063547, 0.6967419680825501, 0.6967424239276275, 0.6967428770678491, 0.6967433275290724, 0.6967437753367586, 0.6967442205159813, 0.6967446630914346, 0.6967451030874416, 0.6967455405279617, 0.696745975436599, 0.6967464078366087, 0.6967468377509053, 0.6967472652020692, 0.6967476902123535, 0.6967481128036913, 0.6967485329977013, 0.6967489508156949, 0.6967493662786821, 0.6967497794073774, 0.6967501902222059, 0.6967505987433092, 0.6967510049905506], "CampbellBozorgnia2014": [0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373], "KothaEtAl2016Italy": [0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113], "KothaEtAl2016Other": [0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113], "KothaEtAl2016Turkey": [0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113], "ZhaoEtAl2016Asc": [0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719], "BindiEtAl2017Rjb": [0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092]}, "ylabel": "Total Std. Dev. (SA(2.0))"}, {"column": 1, "row": 1, "yvalues": {"AkkarBommer2010": [0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823], "CauzziFaccioli2008": [0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976], "ChiouYoungs2008": [0.7086457119140066, 0.7086457119140066, 0.7086664479428663, 0.7086872895193442, 0.7087081900062767, 0.7087309883455292, 0.7087548009132753, 0.7087785350172011, 0.7088020917090162, 0.7088253823107101, 0.7088483290668491, 0.7088708653048247, 0.7088929351920777, 0.7089144931911028, 0.7089355033090453, 0.7089559382256998, 0.7089757783670362, 0.7089950109745363, 0.7090136292056018, 0.7090316312879593, 0.7090490197414288, 0.7090658006734025, 0.7090819831494392, 0.7090975786370923, 0.7091126005190199, 0.7091270917489799, 0.7091411674022373, 0.7091548269172939, 0.7091680622277815, 0.7091808697660875, 0.7091932496884676, 0.709205205204596, 0.7092167420000528, 0.7092278677410709, 0.7092385916517353, 0.7092489241547244, 0.7092588765675328, 0.7092684608469586, 0.7092776893754105, 0.7092865747833178, 0.7092951298025979, 0.7093033671467414, 0.7093112994136299, 0.7093189390076932, 0.7093262980784639, 0.7093333884729703, 0.7093402216997641, 0.7093468089026865, 0.7093531608427383, 0.7093592878866624, 0.7093652000010459, 0.7093709067509286, 0.7093764173020598, 0.7093817404260734, 0.7093868845079708, 0.7093918575553956, 0.7093966672092675, 0.7094013207554192, 0.709405825136934, 0.7094101869669421, 0.70941441254167, 0.7094185078535802, 0.7094224786044686, 0.7094263302184114, 0.7094300678544809, 0.7094336964191592, 0.7094372205784072, 0.7094406447693452, 0.7094439732115266, 0.7094472099177797, 0.7094503587046146, 0.7094534232021877, 0.7094564068638253, 0.7094593129751116, 0.7094621446625482, 0.7094649049017963, 0.7094675965255108, 0.7094702222307829, 0.7094727845862021, 0.7094752860385548, 0.7094777289191719, 0.7094801154499434, 0.7094824477490133, 0.7094847278361683, 0.7094869576379407, 0.7094891389924318, 0.7094912736538763, 0.7094933632969594, 0.709495409520896, 0.7094974138532903, 0.7094993777537844, 0.7095013026175055, 0.7095031897783292, 0.7095050405119598, 0.7095068560388476, 0.7095086375269437, 0.7095103860943075, 0.7095121028115724, 0.7095137887042766, 0.7095154447550711, 0.7095170719058052, 0.7095186710595036, 0.7095202430822363, 0.7095217888048873, 0.7095233090248324, 0.7095248045075264, 0.7095262759880058, 0.7095277241723148, 0.7095291497388556, 0.7095305533396671, 0.7095319356016403, 0.7095332971276676, 0.7095346384977351, 0.7095359602699595, 0.7095372629815694, 0.7095385471498395, 0.7095398132729775, 0.7095410618309642, 0.7095422932863545, 0.7095435080850362, 0.7095447066569527, 0.7095458894167903, 0.70954705676463, 0.7095482090865701, 0.7095493467553156, 0.709550470130743, 0.7095515795604338, 0.7095526753801857, 0.7095537579144989, 0.7095548274770375, 0.7095558843710713, 0.7095569288898973, 0.7095579613172392, 0.709558981927631, 0.7095599909867809, 0.70956098875192, 0.709561975472135, 0.7095629513886846, 0.7095639167353034, 0.7095648717384908, 0.7095658166177877, 0.7095667515860412, 0.7095676768496569, 0.7095685926088404, 0.7095694990578294, 0.7095703963851134, 0.7095712847736464, 0.7095721644010489, 0.7095730354398019, 0.7095738980574328, 0.7095747524166928, 0.7095755986757277, 0.7095764369882416, 0.7095772675036521, 0.7095780903672418, 0.7095789057203015, 0.7095797137002684, 0.7095805144408585, 0.7095813080721939, 0.7095820947209247, 0.7095828745103465, 0.7095836475605122, 0.7095844139883406, 0.70958517390772, 0.7095859274296084, 0.7095866746621287, 0.7095874157106614, 0.7095881506779335, 0.7095888796641024, 0.7095896027668402, 0.7095903200814107, 0.7095910317007457, 0.709591737715519, 0.7095924382142161, 0.7095931332832021, 0.7095938230067871, 0.7095945074672889, 0.7095951867450941, 0.709595860918716, 0.7095965300648512, 0.709597194258434, 0.7095978535726885, 0.7095985080791791, 0.7095991578478595, 0.7095998029471202, 0.7096004434438323, 0.7096010794033929, 0.7096017108897664, 0.7096023379655266, 0.7096029606918942, 0.7096035791287766, 0.7096041933348041, 0.7096048033673653, 0.7096054092826419, 0.7096060111356416, 0.7096066089802302, 0.709607202869163, 0.7096077928541149, 0.709608378985709, 0.7096089613135452, 0.7096095398862271, 0.7096101147513888, 0.7096106859557196, 0.7096112535449899, 0.709611817564074, 0.7096123780569739, 0.7096129350668409, 0.7096134886359994, 0.7096140388059653, 0.709614585617468, 0.7096151291104702, 0.7096156693241865, 0.7096162062971022, 0.7096167400669916, 0.7096172706709349, 0.7096177981453362, 0.7096183225259387, 0.7096188438478417, 0.7096193621455155, 0.7096198774528168, 0.7096203898030032, 0.7096208992287472, 0.7096214057621503, 0.7096219094347559, 0.7096224102775633, 0.7096229083210391, 0.70962340359513, 0.7096238961292749, 0.7096243859524162, 0.7096248730930114, 0.7096253575790433, 0.709625839438032, 0.7096263186970436, 0.7096267953827017, 0.709627269521196, 0.7096277411382929, 0.7096282102593438, 0.709628676909295, 0.7096291411126958, 0.7096296028937075, 0.7096300622761114, 0.7096305192833168, 0.7096309739383694, 0.7096314262639586, 0.7096318762824249, 0.7096323240157674, 0.709632769485651, 0.7096332127134128, 0.7096336537200694, 0.709634092526323, 0.7096345291525683, 0.709634963618898], "ZhaoEtAl2006Asc": [0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651], "AkkarEtAlRjb2014": [0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606], "BindiEtAl2014Rjb": [0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432], "CauzziEtAl2014": [0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796], "DerrasEtAl2014": [0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503], "AbrahamsonEtAl2014": [0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773, 0.6942134037887773], "BooreEtAl2014": [0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7085931970677988, 0.7100503349034316, 0.7114973538065538, 0.7129343935382718, 0.7143615909958478, 0.7157790802898859, 0.7171869928189522, 0.7185854573417684, 0.7199746000469753, 0.721354544620691, 0.7227254123118416, 0.7240873219954136, 0.7254403902336533, 0.726784731335369, 0.7281204574132968, 0.7294476784397451, 0.7307665023004043, 0.7320770348465718, 0.7333793799457251, 0.7346736395305382, 0.7359599136464287, 0.7372383004976351, 0.7385088964919219, 0.7397717962839558, 0.7410270928173324, 0.7422748773654545, 0.743515239571098, 0.7447482674849024, 0.7459740476026795, 0.7471926649016967, 0.7484042028758646, 0.7496087435699308, 0.7508063676127316, 0.7519971542494464, 0.753181181372973, 0.754358525554448, 0.7555292620728408, 0.7566934649438172, 0.7578512069477281, 0.7590025596568908, 0.760147593462076, 0.7612863775983089, 0.7624189801699606, 0.7635454681751705, 0.7646659075295943, 0.7657803630895593, 0.7668888986745683, 0.7679915770892294, 0.7690884601446139, 0.770179608679053, 0.7712650825783869, 0.7723449407957044, 0.773419241370568, 0.774488041447755, 0.7755513972955106, 0.7766093643233452, 0.7776619970993915, 0.7787093493673148, 0.7797514740628061, 0.7807884233296684, 0.781820248535501, 0.7828470002870052, 0.7838687284449156, 0.7848854821385448, 0.7858973097800265, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368, 0.7862474165299368], "ChiouYoungs2014": [0.6902696282300717, 0.6902696282300717, 0.6902900362237793, 0.6903106192638166, 0.6903313132394366, 0.6903531509072475, 0.6903754707407403, 0.6903975649936939, 0.690419342036036, 0.6904407274273736, 0.6904616618163764, 0.6904820988432613, 0.6905020032176764, 0.6905213490339606, 0.6905401183249905, 0.6905582998293903, 0.6905758879396942, 0.6905928818008289, 0.6906092845332268, 0.6906251025601884, 0.690640345023662, 0.6906550232761122, 0.6906691504387193, 0.6906827410179686, 0.6906958105739653, 0.6907084015555555, 0.6907206228361378, 0.6907324751722941, 0.6907439520763451, 0.6907550510238115, 0.6907657727580152, 0.6907761206886138, 0.6907861003742648, 0.6907957190800222, 0.6908049854006548, 0.6908139089417595, 0.6908225000512753, 0.6908307695947328, 0.6908387287682862, 0.6908463889442478, 0.690853761544464, 0.6908608579374578, 0.6908676893557665, 0.6908742668303841, 0.6908806011396238, 0.6908867027700909, 0.6908925818877799, 0.6908982483175881, 0.6909037115297979, 0.6909089806322829, 0.6909140643673898, 0.6909189711126033, 0.6909237088842447, 0.6909282853435693, 0.6909327078047339, 0.6909369832441924, 0.6909411183111488, 0.6909451193387652, 0.6909489923558711, 0.6909527430989691, 0.690956377024369, 0.6909598993203153, 0.6909633149190003, 0.6909666285083759, 0.6909698445436986, 0.6909729672587592, 0.6909760006767557, 0.6909789486207853, 0.6909818147239395, 0.6909846024389864, 0.6909873150476428, 0.69098995566943, 0.6909925272701216, 0.6909950326697886, 0.6909974745504509, 0.6909998554633474, 0.6910021778358363, 0.6910044439779391, 0.6910066560885422, 0.6910088162612709, 0.6910109264900488, 0.6910129886743595, 0.6910150046242207, 0.6910169760648904, 0.6910189046413127, 0.6910207919223211, 0.69102263940461, 0.6910244485164863, 0.6910262206214147, 0.6910279570213665, 0.6910296589599824, 0.6910313276255613, 0.6910329641538847, 0.6910345696308818, 0.6910361450951525, 0.6910376915403464, 0.691039209917416, 0.6910407011367421, 0.6910421660701466, 0.6910436055527923, 0.6910450203849828, 0.6910464113338618, 0.6910477791350231, 0.6910491244940321, 0.6910504480878671, 0.6910517505662832, 0.691053032553103, 0.6910542946474406, 0.6910555374248587, 0.6910567614384676, 0.6910579672199643, 0.6910591552806192, 0.6910603261122112, 0.6910614801879139, 0.6910626179631377, 0.6910637398763279, 0.6910648463497219, 0.6910659377900692, 0.6910670145893152, 0.691068077125249, 0.6910691257621212, 0.6910701608512295, 0.6910711827314763, 0.6910721917298984, 0.6910731881621716, 0.6910741723330893, 0.6910751445370206, 0.6910761050583428, 0.6910770541718575, 0.691077992143183, 0.6910789192291306, 0.6910798356780625, 0.6910807417302328, 0.6910816376181131, 0.6910825235667021, 0.6910833997938225, 0.6910842665104029, 0.6910851239207477, 0.6910859722227942, 0.691086811608359, 0.6910876422633726, 0.6910884643681033, 0.6910892780973729, 0.6910900836207604, 0.6910908811027994, 0.6910916707031642, 0.691092452576851, 0.6910932268743477, 0.6910939937417999, 0.6910947533211672, 0.6910955057503748, 0.6910962511634567, 0.6910969896906954, 0.6910977214587536, 0.6910984465908011, 0.6910991652066377, 0.6910998774228088, 0.6911005833527186, 0.6911012831067369, 0.6911019767923029, 0.6911026645140236, 0.6911033463737697, 0.6911040224707665, 0.6911046929016823, 0.6911053577607116, 0.6911060171396571, 0.6911066711280078, 0.6911073198130132, 0.6911079632797554, 0.6911086016112189, 0.6911092348883571, 0.691109863190156, 0.6911104865936966, 0.691111105174214, 0.6911117190051546, 0.6911123281582314, 0.691112932703477, 0.6911135327092949, 0.6911141282425083, 0.6911147193684085, 0.6911153061507999, 0.6911158886520445, 0.6911164669331048, 0.6911170410535844, 0.6911176110717678, 0.6911181770446589, 0.6911187390280179, 0.6911192970763965, 0.6911198512431727, 0.6911204015805845, 0.6911209481397609, 0.6911214909707539, 0.6911220301225682, 0.6911225656431899, 0.6911230975796148, 0.6911236259778756, 0.6911241508830676, 0.6911246723393746, 0.6911251903900926, 0.691125705077655, 0.6911262164436536, 0.6911267245288619, 0.6911272293732569, 0.6911277310160391, 0.6911282294956528, 0.6911287248498063, 0.6911292171154897, 0.691129706328994, 0.6911301925259288, 0.6911306757412391, 0.691131156009222, 0.6911316333635436, 0.6911321078372531, 0.6911325794627998, 0.6911330482720466, 0.6911335142962848, 0.6911339775662475, 0.6911344381121238, 0.6911348959635714, 0.6911353511497286, 0.6911358036992281, 0.6911362536402075, 0.6911367010003221, 0.691137145806755, 0.691137588086229, 0.6911380278650167, 0.6911384651689507, 0.6911389000234343, 0.6911393324534503, 0.6911397624835716, 0.6911401901379692, 0.6911406154404225, 0.6911410384143265, 0.6911414590827017, 0.691141877468201, 0.6911422935931192, 0.6911427074793992, 0.691143119148641, 0.691143528622108, 0.6911439359207353, 0.6911443410651352, 0.6911447440756056, 0.6911451449721354, 0.6911455437744117, 0.691145940501826, 0.6911463351734798, 0.6911467278081911, 0.6911471184245003, 0.6911475070406752, 0.6911478936747172, 0.6911482783443665, 0.6911486610671074], "CampbellBozorgnia2014": [0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878], "KothaEtAl2016Italy": [0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311], "KothaEtAl2016Other": [0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311], "KothaEtAl2016Turkey": [0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311], "ZhaoEtAl2016Asc": [0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135], "BindiEtAl2017Rjb": [0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394]}, "ylabel": "Total Std. Dev. (SA(3.0))"}]}
\ No newline at end of file
diff --git a/tests/trellis/data/test_magnitude_distance_spectra_sigma_trellis.json b/tests/trellis/data/test_magnitude_distance_spectra_sigma_trellis.json
new file mode 100644
index 0000000..b76051d
--- /dev/null
+++ b/tests/trellis/data/test_magnitude_distance_spectra_sigma_trellis.json
@@ -0,0 +1 @@
+{"xlabel": "Period (s)", "xvalues": [0.05, 0.075, 0.1, 0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.22, 0.24, 0.26, 0.28, 0.3, 0.32, 0.34, 0.36, 0.38, 0.4, 0.42, 0.44, 0.46, 0.48, 0.5, 0.55, 0.6, 0.65, 0.7, 0.75, 0.8, 0.85, 0.9, 0.95, 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2.0, 3.0, 4.001, 5.0, 7.5, 10.0], "figures": [{"ylabel": "Sa (g)", "magnitude": 4.0, "distance": 5.0, "row": 0, "column": 0, "yvalues": {"AkkarBommer2010": [0.6844817131851617, 0.6837362987816263, 0.683207418845582, 0.68672541913679, 0.6899371017735907, 0.6928915634006979, 0.6956269676162063, 0.6981735680158769, 0.6976000490734018, 0.6970613108380154, 0.6965533749187963, 0.6960729087565891, 0.6956170929827741, 0.6971778901534045, 0.6986027863323532, 0.7005012687446854, 0.7028253341764217, 0.7049889873300449, 0.7148224968535273, 0.7240596591789342, 0.7299358053141418, 0.732736803570049, 0.735394096191045, 0.7396101101089319, 0.7436299578941521, 0.7480893213112024, 0.7529640884143824, 0.7576398289888938, 0.7653446494262519, 0.766693379434133, 0.777923934283979, 0.7812641010612377, 0.7776172138314966, 0.7663280282574274, 0.7598439394252159, 0.7570802432466689, 0.752561463750785, 0.7489709391989503, 0.7433871979794608, 0.7409032244431811, 0.7378155982911665, 0.7422539024380507, 0.7359252519151268, 0.7357897954392761, 0.7435592056910777, 0.7473398109449241, 0.7490163484795692, 0.7561064684979164, 0.7794038310516823, null, null, null, null], "CauzziFaccioli2008": [0.8219379128089427, 0.8393387142592592, 0.8516847793668235, 0.8518298896882702, 0.8519623650325663, 0.8520842305359557, 0.8521970603688558, 0.8523021024302553, 0.8540729263581883, 0.85573635974715, 0.8573046864631392, 0.8587881962717722, 0.8601955943875482, 0.8525571104939933, 0.8455837210506426, 0.8381755704576738, 0.8303595392994786, 0.8230829883756888, 0.8232713592759195, 0.8234483065375926, 0.8233005200716469, 0.8228544967873165, 0.8224313567943714, 0.8196750153732449, 0.8170469232528611, 0.8178450428198889, 0.8218488981437654, 0.8256892844424486, 0.8260503297850302, 0.8211780597282549, 0.817439812829779, 0.8174315235234442, 0.8120846906790027, 0.8051021013844982, 0.8068610461370364, 0.8163400981893651, 0.8162896715758283, 0.8194244109214306, 0.8192920122785835, 0.8136785400803733, 0.8135348587705703, 0.8118129856380293, 0.8051582844607673, 0.7942350510381128, 0.7824361445045926, 0.7735861586996702, 0.7667493230415523, 0.7595645667758829, 0.6982775803896976, 0.6704283771676394, 0.6462004738584699, 0.6007518190344441, 0.5626092667104884], "ChiouYoungs2008": [0.7147916595766763, 0.7233989588286913, 0.7258220942697158, 0.7258313924992085, 0.7258474785977866, 0.725868854420252, 0.7258943917346017, 0.7259232271904499, 0.725158905510632, 0.724441875651373, 0.7237669632218979, 0.7231297931115805, 0.7225266324286548, 0.7209889168406064, 0.7195750637196617, 0.7177505322399585, 0.7155569757914355, 0.7135107827840227, 0.7115536284475847, 0.709707459551565, 0.7079608736187878, 0.7063040781752227, 0.7047286116523914, 0.7035829101556819, 0.702487676859522, 0.7014388294522147, 0.7004327429395374, 0.6994661865634417, 0.6979804970702983, 0.6966261980377407, 0.6953834035833688, 0.6942362349793112, 0.6931718562527683, 0.6938166383863833, 0.6944367338414072, 0.6950342705477913, 0.6956110854258838, 0.6961687795087219, 0.6961972614510883, 0.6962575568955636, 0.6963419246835488, 0.6964447148749104, 0.6965617141523265, 0.6988248620141495, 0.7009870799521849, 0.7030575665169927, 0.7050443001871486, 0.7069542515146432, 0.7267430718051252, 0.7494075480732544, 0.7678369358138484, 0.7844703894985458, 0.7989714462983017], "ZhaoEtAl2006Asc": [0.7182450835195463, 0.7506639297268827, 0.773692445355388, 0.7742426949440069, 0.7747562131314576, 0.7752380083676326, 0.7756921005392341, 0.7761217687966238, 0.7722802122118468, 0.7686816302832236, 0.7652978000089461, 0.7621051205205831, 0.7590836581036374, 0.7527411427191135, 0.7469669808073841, 0.7420715684469914, 0.737937653530582, 0.7340980860893183, 0.7361369393640627, 0.7381859520934553, 0.7402355419892188, 0.742278578508789, 0.7443097473498517, 0.742335679184848, 0.7404545736561577, 0.738658122565803, 0.7369390821527303, 0.7352910988173323, 0.7379520988250339, 0.740412047443854, 0.7404445155327583, 0.740476198131986, 0.7394343405313084, 0.7384747795287256, 0.7392130426477722, 0.739941213881211, 0.7393596516299581, 0.7388457213789629, 0.7351693539973224, 0.7319349648403927, 0.7305923515994256, 0.7308572357662626, 0.731116953708502, 0.7299943092840001, 0.7289730120917091, 0.7280397460331555, 0.7271835291354093, 0.7263952092353033, 0.722615388709651, 0.7022345940403416, 0.6993382586416962, null, null], "AkkarEtAlRjb2014": [0.7514019230744622, 0.7618002165922506, 0.7812130887280371, 0.7843878186203557, 0.7872884350731948, 0.7888397175599109, 0.7880527203176194, 0.7832053689805758, 0.7820091303814809, 0.7802584764038133, 0.7777611201390823, 0.7722903145838357, 0.7675740290030663, 0.7659554099293248, 0.7656047609569836, 0.763642691315775, 0.7585720071291848, 0.7622903449473829, 0.7695561837838741, 0.7700516995630878, 0.7731754005398775, 0.7773430967082682, 0.7781211538057553, 0.7743934142281944, 0.7716211635252107, 0.7700825020736414, 0.7677765560369761, 0.7653403491257991, 0.7721667501259039, 0.7774348847331203, 0.7826651902314297, 0.7869856478996297, 0.7863039170702382, 0.7803674262807232, 0.7799564731444953, 0.782871892457508, 0.7834978621540712, 0.7849243148227731, 0.7890588064269988, 0.7979061912280165, 0.7981296761805065, 0.8073204877866038, 0.8108963990547745, 0.8147434749662007, 0.8129160596273148, 0.8136103551455082, 0.8174336731503052, 0.8150865291488997, 0.8082581580163606, null, null, null, null], "BindiEtAl2014Rjb": [0.767508805710641, 0.7836029248110283, 0.7975671219261845, 0.7951428431878028, 0.7929296500990229, 0.7908937098167379, 0.789008723537143, 0.7872538432946641, 0.7839643806847408, 0.7808744055320594, 0.7779610994653116, 0.7752053483316296, 0.7725909814224782, 0.7747507465976511, 0.7767224577228621, 0.7785362561325888, 0.7768990288937333, 0.7753748067999079, 0.776151571674347, 0.7768812301158964, 0.7775691703935314, 0.775896019519639, 0.7743087099018517, 0.776729817038814, 0.7790382729291059, 0.7812440962019498, 0.7840965122991578, 0.7868324702226462, 0.790047543272952, 0.7929826750060335, 0.7946565385529079, 0.796206294136225, 0.7955067520351479, 0.7948523741015445, 0.8011539424069896, 0.807095219040994, 0.8136531197119701, 0.8198745663071109, 0.8202401036353644, 0.8205738130705763, 0.8208807959927493, 0.828430166458295, 0.8354584622164946, 0.8372393974217929, 0.8389123288958596, 0.8404896106446865, 0.8450234241355936, 0.8493246296465048, 0.8297894977175432, null, null, null, null], "CauzziEtAl2014": [0.8227964012485014, 0.8511727469660871, 0.8522195907509933, 0.8511643031364848, 0.8502009010251153, 0.849314656993124, 0.8484941231811982, 0.8477302244778377, 0.844245105878018, 0.8409713401738255, 0.8378847517658702, 0.8349650895987134, 0.832195221136202, 0.8257570491113541, 0.8198794585504274, 0.8170632016931386, 0.8169522037957349, 0.8168488672254801, 0.8224839554274542, 0.8277773071362535, 0.8312046299407523, 0.832924896120847, 0.8345569037869973, 0.8347880057508652, 0.8350083548141528, 0.8381071614360578, 0.8439015220480752, 0.8494593110549161, 0.8620985209858882, 0.8659787163104777, 0.8690536448522258, 0.8649731696879183, 0.8607944161115274, 0.8564544999373845, 0.8585000380163414, 0.8639075295473256, 0.8639996869785381, 0.8640808992911826, 0.8676581859365654, 0.8653514794289309, 0.8659400099950524, 0.8658508848376814, 0.8637958249184655, 0.8606244209148295, 0.854686846727022, 0.8502168157395237, 0.8469379501245717, 0.8471602031577969, 0.8388582348773796, 0.8329785027146948, 0.8235861763604481, 0.8043912561154009, 0.7772100228597301], "DerrasEtAl2014": [0.7480035478517366, 0.7562896733768881, 0.7717061638741622, 0.7799919911635539, 0.7780012184339148, 0.7768452564218975, 0.7799919911635539, 0.7768452564218975, 0.7717061638741622, 0.7697146252705663, 0.7665672007584541, 0.7582815111034834, 0.7551355809244937, 0.7551355809244937, 0.7511511145682411, 0.7480035478517366, 0.7417112320434819, 0.7417112320434819, 0.7499961841469494, 0.7551355809244937, 0.7582815111034834, 0.7614283696954255, 0.7582815111034834, 0.7562896733768881, 0.7531424628511735, 0.7531424628511735, 0.7551355809244937, 0.7531424628511735, 0.7582815111034834, 0.7614283696954255, 0.7634206899176481, 0.7634206899176481, 0.7645761452367758, 0.7634206899176481, 0.7582815111034834, 0.7614283696954255, 0.7665672007584541, 0.7717061638741622, 0.7799919911635539, 0.7902698805645967, 0.7965646616362811, 0.811980441655112, 0.8202666515897504, 0.8254052987450918, 0.8325365697570533, 0.8408219808864074, 0.8491077178141273, 0.8479549021314452, 0.8676713813383503, null, null, null, null], "AbrahamsonEtAl2014": [0.923885239133969, 0.9219898979008131, 0.9201242243404912, 0.9168343195583689, 0.9139280515262338, 0.9113139665589385, 0.9078713595885816, 0.9046706583061042, 0.900839911742388, 0.8972470180606402, 0.8938645221100797, 0.8906694494960897, 0.8876423829448435, 0.8789630700586558, 0.8710693034208646, 0.8608773672376065, 0.8486553389556851, 0.8373464038258001, 0.8282717122041765, 0.819790115321404, 0.8118325884222275, 0.8043414115474622, 0.797267834544954, 0.7923308118955336, 0.787639000529531, 0.783170173203614, 0.7789049711319644, 0.7748264321769102, 0.7655156469967647, 0.7570749053216045, 0.7493618906490194, 0.7422663203117175, 0.7357010262328033, 0.7313949962754148, 0.7273662742440221, 0.7235824821055554, 0.7200165585399928, 0.7166456586068181, 0.7104553612088275, 0.7048404450987031, 0.699706631341134, 0.6949808930352835, 0.6906055313997999, 0.6863433504614944, 0.6823608128101508, 0.6786250870083246, 0.6751087482218235, 0.6717886572427373, 0.6660960891643186, 0.648603860779889, 0.6336600034718934, 0.6031450903389665, 0.5914228605659406], "BooreEtAl2014": [0.9055484525965466, 0.8830067949908427, 0.8379791166848969, 0.8303523348555119, 0.823310391043378, 0.8172453731897171, 0.8067744418361306, 0.8023191384978923, 0.8001256151380232, 0.7970194476924638, 0.7952515325354613, 0.7921142594348368, 0.7898461875580587, 0.7875842812042403, 0.7839757649315442, 0.7777261728912046, 0.7742208987104391, 0.7664163359428087, 0.7634500638548667, 0.7596426791590899, 0.7530166000826277, 0.7501919754302895, 0.7474021675109058, 0.7446475676452586, 0.7433034373659253, 0.7401216116287918, 0.7391731867431339, 0.7391380114701178, 0.7389106847244801, 0.7387834594791629, 0.7379444423532168, 0.7384260287936768, 0.739195508644364, 0.7408994533673243, 0.7419737192111321, 0.7425530284094193, 0.7432664394414698, 0.744186132630809, 0.7452039989157332, 0.7456339584541466, 0.7461749124702599, 0.7467703797018197, 0.747428257426758, 0.7474122022017035, 0.7474148780964961, 0.7474202298573407, 0.7481310045707236, 0.7481310045707236, 0.7573143336818603, 0.7629770270970804, 0.7495385246936945, 0.723370582758243, 0.7051730284121762], "ChiouYoungs2014": [0.7813089802192529, 0.7927762421577291, 0.800992783474988, 0.8036871529591968, 0.8061449310213418, 0.8083006175813499, 0.8102947528365163, 0.8121498060671426, 0.8138257006563893, 0.8153971636023151, 0.8167610948096334, 0.8180471553983331, 0.8192636982294978, 0.8212521245456236, 0.8230541348049367, 0.824618874248332, 0.8259784736132394, 0.8272365121479489, 0.8283558667792603, 0.8294016448267197, 0.830383048826172, 0.8313076503524497, 0.8321817537797399, 0.8327411736874862, 0.8332723252209521, 0.8337779865767321, 0.8342605422200311, 0.8347220540632084, 0.8316490277394816, 0.8288468761388578, 0.8262729692275165, 0.8238938715028631, 0.821682902404596, 0.8173613331713665, 0.8133140403843453, 0.8095093139952917, 0.8059205961432084, 0.8025254274491228, 0.7947748709501433, 0.7877406734749275, 0.7813057963950407, 0.7753795295599647, 0.7698901605581353, 0.7677229461521452, 0.7656919591443555, 0.7637813596621544, 0.7619779143396324, 0.7602704593204159, 0.7550449839056756, 0.7512677059323889, 0.7481686875297576, 0.742643458868386, 0.7387330586889963], "CampbellBozorgnia2014": [0.9245164134548005, 0.9257041935879332, 0.8845986815261505, 0.8777413270883165, 0.8716922646686305, 0.8663082957637658, 0.8614798324088303, 0.8571212860759098, 0.8518079435241124, 0.8469087550425247, 0.8422798041472203, 0.8375391893900086, 0.8330918316728355, 0.8266396227739394, 0.8207612131605839, 0.8146826006857184, 0.8084083124295993, 0.8025764761067944, 0.7966069109580554, 0.7910525060014684, 0.7858638232787023, 0.7809996196918313, 0.7764251412724861, 0.7735178546322785, 0.7708082942865985, 0.7682767638977931, 0.7659062299106772, 0.7636818709384163, 0.7581911006051032, 0.7535181355851607, 0.7495111626968752, 0.7460545739578414, 0.743058544126908, 0.7433903470298611, 0.7438454415881561, 0.7444015256139238, 0.7450407349943753, 0.7457486171626468, 0.7428884441264512, 0.7404092754635958, 0.7382410203966285, 0.7363303761002793, 0.7346359642707401, 0.7329601686433725, 0.7313917796549372, 0.7299182236658507, 0.7285289969422998, 0.7272152363640355, 0.726449585312016, 0.7525004143230951, 0.7329120001746459, 0.6945343763990376, 0.6415894325813043], "KothaEtAl2016Italy": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Other": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Turkey": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "ZhaoEtAl2016Asc": [0.7278021709228408, 0.7771923607729061, 0.7889746510503364, 0.7888959212336364, 0.7890614678211072, 0.7851281052125924, 0.7816425014032949, 0.7779203044014215, 0.7731086598919974, 0.7761173983202411, 0.7789736837660179, 0.7791911134846302, 0.7795800151363553, 0.7766382892032334, 0.7740180644188175, 0.7720311021061312, 0.7705648785799881, 0.7692073842599275, 0.766046367881938, 0.7631174300150125, 0.7612176286655891, 0.7602584084081757, 0.7593800102715372, 0.7578610029858904, 0.7564140577504519, 0.7557303288152079, 0.755759754366926, 0.7557889917166034, 0.7583354500048901, 0.7606608968522045, 0.7631020746294933, 0.7653757247260983, 0.7691875558842282, 0.7727612826740222, 0.7743360885814617, 0.7758382563395544, 0.7755282571597322, 0.7752418977325723, 0.7735036933590107, 0.7719507714502052, 0.7702744781684243, 0.768462553483211, 0.7667757168820619, 0.7601190589317046, 0.7538661239670975, 0.7479707310064135, 0.7423941959549901, 0.7371037918773719, 0.6935776813018135, 0.6711784838363779, 0.6674346409949068, null, null], "BindiEtAl2017Rjb": [0.8956331632638443, 0.9102791622310158, 0.8915155151364446, 0.8806585598045363, 0.8721652361020817, 0.8619419154403619, 0.8550128842654946, 0.8491152000035095, 0.8447656795449257, 0.8366782265626375, 0.8275006067816506, 0.8172995224775309, 0.8080404663938557, 0.7924747477522548, 0.7795574303237702, 0.7710831262483961, 0.769626786282806, 0.76591816967415, 0.7607563726975937, 0.7551967045809985, 0.754068674194201, 0.7529532354190398, 0.753290637075757, 0.7502801781021541, 0.7481368979070608, 0.7452829309228811, 0.744935586376433, 0.7429570035129893, 0.7427907895019971, 0.749116576052753, 0.752806138934188, 0.7550676921627624, 0.7578875529852697, 0.7608282259360519, 0.7662748560588426, 0.7730108730438402, 0.7813574041608615, 0.7846822749227867, 0.789886878445262, 0.7944460849485006, 0.8013772027584762, 0.8038704516730292, 0.8107071945782892, 0.81029164015927, 0.8135451438297693, 0.8173261525859796, 0.8122649177017311, 0.8089673416900092, 0.7905637556402394, null, null, null, null]}}, {"ylabel": "Sa (g)", "magnitude": 4.0, "distance": 20.0, "row": 0, "column": 1, "yvalues": {"AkkarBommer2010": [0.6844817131851617, 0.6837362987816263, 0.683207418845582, 0.68672541913679, 0.6899371017735907, 0.6928915634006979, 0.6956269676162063, 0.6981735680158769, 0.6976000490734018, 0.6970613108380154, 0.6965533749187963, 0.6960729087565891, 0.6956170929827741, 0.6971778901534045, 0.6986027863323532, 0.7005012687446854, 0.7028253341764217, 0.7049889873300449, 0.7148224968535273, 0.7240596591789342, 0.7299358053141418, 0.732736803570049, 0.735394096191045, 0.7396101101089319, 0.7436299578941521, 0.7480893213112024, 0.7529640884143824, 0.7576398289888938, 0.7653446494262519, 0.766693379434133, 0.777923934283979, 0.7812641010612377, 0.7776172138314966, 0.7663280282574274, 0.7598439394252159, 0.7570802432466689, 0.752561463750785, 0.7489709391989503, 0.7433871979794608, 0.7409032244431811, 0.7378155982911665, 0.7422539024380507, 0.7359252519151268, 0.7357897954392761, 0.7435592056910777, 0.7473398109449241, 0.7490163484795692, 0.7561064684979164, 0.7794038310516823, null, null, null, null], "CauzziFaccioli2008": [0.8219379128089427, 0.8393387142592592, 0.8516847793668235, 0.8518298896882702, 0.8519623650325663, 0.8520842305359557, 0.8521970603688558, 0.8523021024302553, 0.8540729263581883, 0.85573635974715, 0.8573046864631392, 0.8587881962717722, 0.8601955943875482, 0.8525571104939933, 0.8455837210506426, 0.8381755704576738, 0.8303595392994786, 0.8230829883756888, 0.8232713592759195, 0.8234483065375926, 0.8233005200716469, 0.8228544967873165, 0.8224313567943714, 0.8196750153732449, 0.8170469232528611, 0.8178450428198889, 0.8218488981437654, 0.8256892844424486, 0.8260503297850302, 0.8211780597282549, 0.817439812829779, 0.8174315235234442, 0.8120846906790027, 0.8051021013844982, 0.8068610461370364, 0.8163400981893651, 0.8162896715758283, 0.8194244109214306, 0.8192920122785835, 0.8136785400803733, 0.8135348587705703, 0.8118129856380293, 0.8051582844607673, 0.7942350510381128, 0.7824361445045926, 0.7735861586996702, 0.7667493230415523, 0.7595645667758829, 0.6982775803896976, 0.6704283771676394, 0.6462004738584699, 0.6007518190344441, 0.5626092667104884], "ChiouYoungs2008": [0.7156839782135093, 0.725050670237791, 0.7277015768247238, 0.7276225556311242, 0.7275611942829007, 0.7275138989659344, 0.7274779755009511, 0.7274513627729345, 0.726579411159759, 0.7257671060943074, 0.725007329233634, 0.7242941441083295, 0.7236225498070687, 0.7219341663414331, 0.7203992583166924, 0.7184680394260899, 0.7161804857470675, 0.7140571532087694, 0.712030845565268, 0.7101272906759891, 0.7083326350140553, 0.7066352309712265, 0.7050251940632455, 0.7038488025769161, 0.7027271546019063, 0.7016554373287891, 0.700629441750818, 0.6996454662332297, 0.6981213916598422, 0.6967389368597946, 0.6954750019890739, 0.6943116373294372, 0.6932346302846663, 0.6938705311625577, 0.6944833679316428, 0.6950749060589333, 0.6956467138336627, 0.6962001900579875, 0.69622562458315, 0.6962834436884848, 0.696365789073337, 0.6964669295413277, 0.6965825972309108, 0.6988489966077299, 0.7010146633972075, 0.7030887725492738, 0.7050792732016613, 0.7069931002056496, 0.7267704081163687, 0.7494105674233427, 0.7678369358138484, 0.7844703894985458, 0.7989714462983017], "ZhaoEtAl2006Asc": [0.7182450835195463, 0.7506639297268827, 0.773692445355388, 0.7742426949440069, 0.7747562131314576, 0.7752380083676326, 0.7756921005392341, 0.7761217687966238, 0.7722802122118468, 0.7686816302832236, 0.7652978000089461, 0.7621051205205831, 0.7590836581036374, 0.7527411427191135, 0.7469669808073841, 0.7420715684469914, 0.737937653530582, 0.7340980860893183, 0.7361369393640627, 0.7381859520934553, 0.7402355419892188, 0.742278578508789, 0.7443097473498517, 0.742335679184848, 0.7404545736561577, 0.738658122565803, 0.7369390821527303, 0.7352910988173323, 0.7379520988250339, 0.740412047443854, 0.7404445155327583, 0.740476198131986, 0.7394343405313084, 0.7384747795287256, 0.7392130426477722, 0.739941213881211, 0.7393596516299581, 0.7388457213789629, 0.7351693539973224, 0.7319349648403927, 0.7305923515994256, 0.7308572357662626, 0.731116953708502, 0.7299943092840001, 0.7289730120917091, 0.7280397460331555, 0.7271835291354093, 0.7263952092353033, 0.722615388709651, 0.7022345940403416, 0.6993382586416962, null, null], "AkkarEtAlRjb2014": [0.7514019230744622, 0.7618002165922506, 0.7812130887280371, 0.7843878186203557, 0.7872884350731948, 0.7888397175599109, 0.7880527203176194, 0.7832053689805758, 0.7820091303814809, 0.7802584764038133, 0.7777611201390823, 0.7722903145838357, 0.7675740290030663, 0.7659554099293248, 0.7656047609569836, 0.763642691315775, 0.7585720071291848, 0.7622903449473829, 0.7695561837838741, 0.7700516995630878, 0.7731754005398775, 0.7773430967082682, 0.7781211538057553, 0.7743934142281944, 0.7716211635252107, 0.7700825020736414, 0.7677765560369761, 0.7653403491257991, 0.7721667501259039, 0.7774348847331203, 0.7826651902314297, 0.7869856478996297, 0.7863039170702382, 0.7803674262807232, 0.7799564731444953, 0.782871892457508, 0.7834978621540712, 0.7849243148227731, 0.7890588064269988, 0.7979061912280165, 0.7981296761805065, 0.8073204877866038, 0.8108963990547745, 0.8147434749662007, 0.8129160596273148, 0.8136103551455082, 0.8174336731503052, 0.8150865291488997, 0.8082581580163606, null, null, null, null], "BindiEtAl2014Rjb": [0.767508805710641, 0.7836029248110283, 0.7975671219261845, 0.7951428431878028, 0.7929296500990229, 0.7908937098167379, 0.789008723537143, 0.7872538432946641, 0.7839643806847408, 0.7808744055320594, 0.7779610994653116, 0.7752053483316296, 0.7725909814224782, 0.7747507465976511, 0.7767224577228621, 0.7785362561325888, 0.7768990288937333, 0.7753748067999079, 0.776151571674347, 0.7768812301158964, 0.7775691703935314, 0.775896019519639, 0.7743087099018517, 0.776729817038814, 0.7790382729291059, 0.7812440962019498, 0.7840965122991578, 0.7868324702226462, 0.790047543272952, 0.7929826750060335, 0.7946565385529079, 0.796206294136225, 0.7955067520351479, 0.7948523741015445, 0.8011539424069896, 0.807095219040994, 0.8136531197119701, 0.8198745663071109, 0.8202401036353644, 0.8205738130705763, 0.8208807959927493, 0.828430166458295, 0.8354584622164946, 0.8372393974217929, 0.8389123288958596, 0.8404896106446865, 0.8450234241355936, 0.8493246296465048, 0.8297894977175432, null, null, null, null], "CauzziEtAl2014": [0.8227964012485014, 0.8511727469660871, 0.8522195907509933, 0.8511643031364848, 0.8502009010251153, 0.849314656993124, 0.8484941231811982, 0.8477302244778377, 0.844245105878018, 0.8409713401738255, 0.8378847517658702, 0.8349650895987134, 0.832195221136202, 0.8257570491113541, 0.8198794585504274, 0.8170632016931386, 0.8169522037957349, 0.8168488672254801, 0.8224839554274542, 0.8277773071362535, 0.8312046299407523, 0.832924896120847, 0.8345569037869973, 0.8347880057508652, 0.8350083548141528, 0.8381071614360578, 0.8439015220480752, 0.8494593110549161, 0.8620985209858882, 0.8659787163104777, 0.8690536448522258, 0.8649731696879183, 0.8607944161115274, 0.8564544999373845, 0.8585000380163414, 0.8639075295473256, 0.8639996869785381, 0.8640808992911826, 0.8676581859365654, 0.8653514794289309, 0.8659400099950524, 0.8658508848376814, 0.8637958249184655, 0.8606244209148295, 0.854686846727022, 0.8502168157395237, 0.8469379501245717, 0.8471602031577969, 0.8388582348773796, 0.8329785027146948, 0.8235861763604481, 0.8043912561154009, 0.7772100228597301], "DerrasEtAl2014": [0.7480035478517366, 0.7562896733768881, 0.7717061638741622, 0.7799919911635539, 0.7780012184339148, 0.7768452564218975, 0.7799919911635539, 0.7768452564218975, 0.7717061638741622, 0.7697146252705663, 0.7665672007584541, 0.7582815111034834, 0.7551355809244937, 0.7551355809244937, 0.7511511145682411, 0.7480035478517366, 0.7417112320434819, 0.7417112320434819, 0.7499961841469494, 0.7551355809244937, 0.7582815111034834, 0.7614283696954255, 0.7582815111034834, 0.7562896733768881, 0.7531424628511735, 0.7531424628511735, 0.7551355809244937, 0.7531424628511735, 0.7582815111034834, 0.7614283696954255, 0.7634206899176481, 0.7634206899176481, 0.7645761452367758, 0.7634206899176481, 0.7582815111034834, 0.7614283696954255, 0.7665672007584541, 0.7717061638741622, 0.7799919911635539, 0.7902698805645967, 0.7965646616362811, 0.811980441655112, 0.8202666515897504, 0.8254052987450918, 0.8325365697570533, 0.8408219808864074, 0.8491077178141273, 0.8479549021314452, 0.8676713813383503, null, null, null, null], "AbrahamsonEtAl2014": [0.9257669515007033, 0.9254677092318233, 0.9230011229187693, 0.918736359532341, 0.9148632783622515, 0.9113139665589385, 0.9078713595885816, 0.9046706583061042, 0.900839911742388, 0.8972470180606402, 0.8938645221100797, 0.8906694494960897, 0.8876423829448435, 0.8789630700586558, 0.8710693034208646, 0.8608773672376065, 0.8486553389556851, 0.8373464038258001, 0.8282717122041765, 0.819790115321404, 0.8118325884222275, 0.8043414115474622, 0.797267834544954, 0.7923308118955336, 0.787639000529531, 0.783170173203614, 0.7789049711319644, 0.7748264321769102, 0.7655156469967647, 0.7570749053216045, 0.7493618906490194, 0.7422663203117175, 0.7357010262328033, 0.7313949962754148, 0.7273662742440221, 0.7235824821055554, 0.7200165585399928, 0.7166456586068181, 0.7104553612088275, 0.7048404450987031, 0.699706631341134, 0.6949808930352835, 0.6906055313997999, 0.6863433504614944, 0.6823608128101508, 0.6786250870083246, 0.6751087482218235, 0.6717886572427373, 0.6660960891643186, 0.648603860779889, 0.6336600034718934, 0.6031450903389665, 0.5914228605659406], "BooreEtAl2014": [0.9055484525965466, 0.8830067949908427, 0.8379791166848969, 0.8303523348555119, 0.823310391043378, 0.8172453731897171, 0.8067744418361306, 0.8023191384978923, 0.8001256151380232, 0.7970194476924638, 0.7952515325354613, 0.7921142594348368, 0.7898461875580587, 0.7875842812042403, 0.7839757649315442, 0.7777261728912046, 0.7742208987104391, 0.7664163359428087, 0.7634500638548667, 0.7596426791590899, 0.7530166000826277, 0.7501919754302895, 0.7474021675109058, 0.7446475676452586, 0.7433034373659253, 0.7401216116287918, 0.7391731867431339, 0.7391380114701178, 0.7389106847244801, 0.7387834594791629, 0.7379444423532168, 0.7384260287936768, 0.739195508644364, 0.7408994533673243, 0.7419737192111321, 0.7425530284094193, 0.7432664394414698, 0.744186132630809, 0.7452039989157332, 0.7456339584541466, 0.7461749124702599, 0.7467703797018197, 0.747428257426758, 0.7474122022017035, 0.7474148780964961, 0.7474202298573407, 0.7481310045707236, 0.7481310045707236, 0.7573143336818603, 0.7629770270970804, 0.7495385246936945, 0.723370582758243, 0.7051730284121762], "ChiouYoungs2014": [0.7818915204437314, 0.7938764424126598, 0.8022585614118853, 0.8049209068702122, 0.8073510634157571, 0.8094566964336836, 0.8114059686393512, 0.813220497528777, 0.814837545112656, 0.8163560771261265, 0.8176558626259831, 0.8188846241228457, 0.8200497158761942, 0.8219341225628143, 0.8236520321469734, 0.825144182039947, 0.826440792084451, 0.8276464982501909, 0.8287188923896035, 0.829725206526898, 0.8306731493308217, 0.831569151126329, 0.8324186322748315, 0.8329558031539037, 0.8334676125655834, 0.8339563645094293, 0.8344240612141635, 0.8348724538025313, 0.8317686017619916, 0.8289435901597475, 0.8263523386341783, 0.82395981959914, 0.8217382850697386, 0.8174083664942341, 0.8133543272072477, 0.8095440853282554, 0.8059508105856122, 0.8025518407272556, 0.7947983978791558, 0.787761878111509, 0.781325117949112, 0.7753973211054954, 0.769906716637072, 0.7677422011610896, 0.765714097487567, 0.7638065471232287, 0.7620062929485454, 0.7603021416916436, 0.7550684240471404, 0.7512703799911873, 0.7481686875297576, 0.742643458868386, 0.7387330586889963], "CampbellBozorgnia2014": [0.9275716963864371, 0.929198952975805, 0.887704884137977, 0.8804738894531917, 0.8740469069777523, 0.8682846874264004, 0.8630802649531841, 0.8583497990041659, 0.8525957901582758, 0.8472621996082879, 0.8422798041472203, 0.8375391893900086, 0.8330918316728355, 0.8266396227739394, 0.8207612131605839, 0.8146826006857184, 0.8084083124295993, 0.8025764761067944, 0.7966069109580554, 0.7910525060014684, 0.7858638232787023, 0.7809996196918313, 0.7764251412724861, 0.7735178546322785, 0.7708082942865985, 0.7682767638977931, 0.7659062299106772, 0.7636818709384163, 0.7581911006051032, 0.7535181355851607, 0.7495111626968752, 0.7460545739578414, 0.743058544126908, 0.7433903470298611, 0.7438454415881561, 0.7444015256139238, 0.7450407349943753, 0.7457486171626468, 0.7428884441264512, 0.7404092754635958, 0.7382410203966285, 0.7363303761002793, 0.7346359642707401, 0.7329601686433725, 0.7313917796549372, 0.7299182236658507, 0.7285289969422998, 0.7272152363640355, 0.726449585312016, 0.7525004143230951, 0.7329120001746459, 0.6945343763990376, 0.6415894325813043], "KothaEtAl2016Italy": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Other": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Turkey": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "ZhaoEtAl2016Asc": [0.7278021709228408, 0.7771923607729061, 0.7889746510503364, 0.7888959212336364, 0.7890614678211072, 0.7851281052125924, 0.7816425014032949, 0.7779203044014215, 0.7731086598919974, 0.7761173983202411, 0.7789736837660179, 0.7791911134846302, 0.7795800151363553, 0.7766382892032334, 0.7740180644188175, 0.7720311021061312, 0.7705648785799881, 0.7692073842599275, 0.766046367881938, 0.7631174300150125, 0.7612176286655891, 0.7602584084081757, 0.7593800102715372, 0.7578610029858904, 0.7564140577504519, 0.7557303288152079, 0.755759754366926, 0.7557889917166034, 0.7583354500048901, 0.7606608968522045, 0.7631020746294933, 0.7653757247260983, 0.7691875558842282, 0.7727612826740222, 0.7743360885814617, 0.7758382563395544, 0.7755282571597322, 0.7752418977325723, 0.7735036933590107, 0.7719507714502052, 0.7702744781684243, 0.768462553483211, 0.7667757168820619, 0.7601190589317046, 0.7538661239670975, 0.7479707310064135, 0.7423941959549901, 0.7371037918773719, 0.6935776813018135, 0.6711784838363779, 0.6674346409949068, null, null], "BindiEtAl2017Rjb": [0.8956331632638443, 0.9102791622310158, 0.8915155151364446, 0.8806585598045363, 0.8721652361020817, 0.8619419154403619, 0.8550128842654946, 0.8491152000035095, 0.8447656795449257, 0.8366782265626375, 0.8275006067816506, 0.8172995224775309, 0.8080404663938557, 0.7924747477522548, 0.7795574303237702, 0.7710831262483961, 0.769626786282806, 0.76591816967415, 0.7607563726975937, 0.7551967045809985, 0.754068674194201, 0.7529532354190398, 0.753290637075757, 0.7502801781021541, 0.7481368979070608, 0.7452829309228811, 0.744935586376433, 0.7429570035129893, 0.7427907895019971, 0.749116576052753, 0.752806138934188, 0.7550676921627624, 0.7578875529852697, 0.7608282259360519, 0.7662748560588426, 0.7730108730438402, 0.7813574041608615, 0.7846822749227867, 0.789886878445262, 0.7944460849485006, 0.8013772027584762, 0.8038704516730292, 0.8107071945782892, 0.81029164015927, 0.8135451438297693, 0.8173261525859796, 0.8122649177017311, 0.8089673416900092, 0.7905637556402394, null, null, null, null]}}, {"ylabel": "Sa (g)", "magnitude": 4.0, "distance": 50.0, "row": 0, "column": 2, "yvalues": {"AkkarBommer2010": [0.6844817131851617, 0.6837362987816263, 0.683207418845582, 0.68672541913679, 0.6899371017735907, 0.6928915634006979, 0.6956269676162063, 0.6981735680158769, 0.6976000490734018, 0.6970613108380154, 0.6965533749187963, 0.6960729087565891, 0.6956170929827741, 0.6971778901534045, 0.6986027863323532, 0.7005012687446854, 0.7028253341764217, 0.7049889873300449, 0.7148224968535273, 0.7240596591789342, 0.7299358053141418, 0.732736803570049, 0.735394096191045, 0.7396101101089319, 0.7436299578941521, 0.7480893213112024, 0.7529640884143824, 0.7576398289888938, 0.7653446494262519, 0.766693379434133, 0.777923934283979, 0.7812641010612377, 0.7776172138314966, 0.7663280282574274, 0.7598439394252159, 0.7570802432466689, 0.752561463750785, 0.7489709391989503, 0.7433871979794608, 0.7409032244431811, 0.7378155982911665, 0.7422539024380507, 0.7359252519151268, 0.7357897954392761, 0.7435592056910777, 0.7473398109449241, 0.7490163484795692, 0.7561064684979164, 0.7794038310516823, null, null, null, null], "CauzziFaccioli2008": [0.8219379128089427, 0.8393387142592592, 0.8516847793668235, 0.8518298896882702, 0.8519623650325663, 0.8520842305359557, 0.8521970603688558, 0.8523021024302553, 0.8540729263581883, 0.85573635974715, 0.8573046864631392, 0.8587881962717722, 0.8601955943875482, 0.8525571104939933, 0.8455837210506426, 0.8381755704576738, 0.8303595392994786, 0.8230829883756888, 0.8232713592759195, 0.8234483065375926, 0.8233005200716469, 0.8228544967873165, 0.8224313567943714, 0.8196750153732449, 0.8170469232528611, 0.8178450428198889, 0.8218488981437654, 0.8256892844424486, 0.8260503297850302, 0.8211780597282549, 0.817439812829779, 0.8174315235234442, 0.8120846906790027, 0.8051021013844982, 0.8068610461370364, 0.8163400981893651, 0.8162896715758283, 0.8194244109214306, 0.8192920122785835, 0.8136785400803733, 0.8135348587705703, 0.8118129856380293, 0.8051582844607673, 0.7942350510381128, 0.7824361445045926, 0.7735861586996702, 0.7667493230415523, 0.7595645667758829, 0.6982775803896976, 0.6704283771676394, 0.6462004738584699, 0.6007518190344441, 0.5626092667104884], "ChiouYoungs2008": [0.715850133668201, 0.7253537405750125, 0.7280379988072806, 0.7279405567549317, 0.7278632975108681, 0.7278020983130222, 0.7277538795170712, 0.7277162915097267, 0.7268244739146499, 0.7259946936834287, 0.7252194423574732, 0.7244924723209696, 0.723808531660842, 0.7220932992453558, 0.7205370442108707, 0.7185871466687815, 0.7162832656672531, 0.7141466619374656, 0.7121085142856153, 0.7101952259426328, 0.7083924844763283, 0.7066883000629887, 0.7050725291747967, 0.7038910686644416, 0.7027650848224357, 0.7016896345433712, 0.7006604057431588, 0.6996736144650105, 0.6981433842164395, 0.6967564549038946, 0.6954891850723376, 0.6943232810198844, 0.6932443042014621, 0.6938788192320259, 0.694490528230298, 0.6950811378337535, 0.6956521730775397, 0.696205000425854, 0.6962299583413335, 0.6962873936356281, 0.6963694280667048, 0.6964703168984928, 0.6965857833643142, 0.6988526739980747, 0.7010188626624695, 0.7030935210248835, 0.7050845941292418, 0.7069990118497489, 0.7267745603492227, 0.7494110255747293, 0.7678369358138484, 0.7844703894985458, 0.7989714462983017], "ZhaoEtAl2006Asc": [0.7182450835195463, 0.7506639297268827, 0.773692445355388, 0.7742426949440069, 0.7747562131314576, 0.7752380083676326, 0.7756921005392341, 0.7761217687966238, 0.7722802122118468, 0.7686816302832236, 0.7652978000089461, 0.7621051205205831, 0.7590836581036374, 0.7527411427191135, 0.7469669808073841, 0.7420715684469914, 0.737937653530582, 0.7340980860893183, 0.7361369393640627, 0.7381859520934553, 0.7402355419892188, 0.742278578508789, 0.7443097473498517, 0.742335679184848, 0.7404545736561577, 0.738658122565803, 0.7369390821527303, 0.7352910988173323, 0.7379520988250339, 0.740412047443854, 0.7404445155327583, 0.740476198131986, 0.7394343405313084, 0.7384747795287256, 0.7392130426477722, 0.739941213881211, 0.7393596516299581, 0.7388457213789629, 0.7351693539973224, 0.7319349648403927, 0.7305923515994256, 0.7308572357662626, 0.731116953708502, 0.7299943092840001, 0.7289730120917091, 0.7280397460331555, 0.7271835291354093, 0.7263952092353033, 0.722615388709651, 0.7022345940403416, 0.6993382586416962, null, null], "AkkarEtAlRjb2014": [0.7514019230744622, 0.7618002165922506, 0.7812130887280371, 0.7843878186203557, 0.7872884350731948, 0.7888397175599109, 0.7880527203176194, 0.7832053689805758, 0.7820091303814809, 0.7802584764038133, 0.7777611201390823, 0.7722903145838357, 0.7675740290030663, 0.7659554099293248, 0.7656047609569836, 0.763642691315775, 0.7585720071291848, 0.7622903449473829, 0.7695561837838741, 0.7700516995630878, 0.7731754005398775, 0.7773430967082682, 0.7781211538057553, 0.7743934142281944, 0.7716211635252107, 0.7700825020736414, 0.7677765560369761, 0.7653403491257991, 0.7721667501259039, 0.7774348847331203, 0.7826651902314297, 0.7869856478996297, 0.7863039170702382, 0.7803674262807232, 0.7799564731444953, 0.782871892457508, 0.7834978621540712, 0.7849243148227731, 0.7890588064269988, 0.7979061912280165, 0.7981296761805065, 0.8073204877866038, 0.8108963990547745, 0.8147434749662007, 0.8129160596273148, 0.8136103551455082, 0.8174336731503052, 0.8150865291488997, 0.8082581580163606, null, null, null, null], "BindiEtAl2014Rjb": [0.767508805710641, 0.7836029248110283, 0.7975671219261845, 0.7951428431878028, 0.7929296500990229, 0.7908937098167379, 0.789008723537143, 0.7872538432946641, 0.7839643806847408, 0.7808744055320594, 0.7779610994653116, 0.7752053483316296, 0.7725909814224782, 0.7747507465976511, 0.7767224577228621, 0.7785362561325888, 0.7768990288937333, 0.7753748067999079, 0.776151571674347, 0.7768812301158964, 0.7775691703935314, 0.775896019519639, 0.7743087099018517, 0.776729817038814, 0.7790382729291059, 0.7812440962019498, 0.7840965122991578, 0.7868324702226462, 0.790047543272952, 0.7929826750060335, 0.7946565385529079, 0.796206294136225, 0.7955067520351479, 0.7948523741015445, 0.8011539424069896, 0.807095219040994, 0.8136531197119701, 0.8198745663071109, 0.8202401036353644, 0.8205738130705763, 0.8208807959927493, 0.828430166458295, 0.8354584622164946, 0.8372393974217929, 0.8389123288958596, 0.8404896106446865, 0.8450234241355936, 0.8493246296465048, 0.8297894977175432, null, null, null, null], "CauzziEtAl2014": [0.8227964012485014, 0.8511727469660871, 0.8522195907509933, 0.8511643031364848, 0.8502009010251153, 0.849314656993124, 0.8484941231811982, 0.8477302244778377, 0.844245105878018, 0.8409713401738255, 0.8378847517658702, 0.8349650895987134, 0.832195221136202, 0.8257570491113541, 0.8198794585504274, 0.8170632016931386, 0.8169522037957349, 0.8168488672254801, 0.8224839554274542, 0.8277773071362535, 0.8312046299407523, 0.832924896120847, 0.8345569037869973, 0.8347880057508652, 0.8350083548141528, 0.8381071614360578, 0.8439015220480752, 0.8494593110549161, 0.8620985209858882, 0.8659787163104777, 0.8690536448522258, 0.8649731696879183, 0.8607944161115274, 0.8564544999373845, 0.8585000380163414, 0.8639075295473256, 0.8639996869785381, 0.8640808992911826, 0.8676581859365654, 0.8653514794289309, 0.8659400099950524, 0.8658508848376814, 0.8637958249184655, 0.8606244209148295, 0.854686846727022, 0.8502168157395237, 0.8469379501245717, 0.8471602031577969, 0.8388582348773796, 0.8329785027146948, 0.8235861763604481, 0.8043912561154009, 0.7772100228597301], "DerrasEtAl2014": [0.7480035478517366, 0.7562896733768881, 0.7717061638741622, 0.7799919911635539, 0.7780012184339148, 0.7768452564218975, 0.7799919911635539, 0.7768452564218975, 0.7717061638741622, 0.7697146252705663, 0.7665672007584541, 0.7582815111034834, 0.7551355809244937, 0.7551355809244937, 0.7511511145682411, 0.7480035478517366, 0.7417112320434819, 0.7417112320434819, 0.7499961841469494, 0.7551355809244937, 0.7582815111034834, 0.7614283696954255, 0.7582815111034834, 0.7562896733768881, 0.7531424628511735, 0.7531424628511735, 0.7551355809244937, 0.7531424628511735, 0.7582815111034834, 0.7614283696954255, 0.7634206899176481, 0.7634206899176481, 0.7645761452367758, 0.7634206899176481, 0.7582815111034834, 0.7614283696954255, 0.7665672007584541, 0.7717061638741622, 0.7799919911635539, 0.7902698805645967, 0.7965646616362811, 0.811980441655112, 0.8202666515897504, 0.8254052987450918, 0.8325365697570533, 0.8408219808864074, 0.8491077178141273, 0.8479549021314452, 0.8676713813383503, null, null, null, null], "AbrahamsonEtAl2014": [0.9260353245037359, 0.9259656615236918, 0.9234123408922548, 0.9190077067612632, 0.9149964474127876, 0.9113139665589385, 0.9078713595885816, 0.9046706583061042, 0.900839911742388, 0.8972470180606402, 0.8938645221100797, 0.8906694494960897, 0.8876423829448435, 0.8789630700586558, 0.8710693034208646, 0.8608773672376065, 0.8486553389556851, 0.8373464038258001, 0.8282717122041765, 0.819790115321404, 0.8118325884222275, 0.8043414115474622, 0.797267834544954, 0.7923308118955336, 0.787639000529531, 0.783170173203614, 0.7789049711319644, 0.7748264321769102, 0.7655156469967647, 0.7570749053216045, 0.7493618906490194, 0.7422663203117175, 0.7357010262328033, 0.7313949962754148, 0.7273662742440221, 0.7235824821055554, 0.7200165585399928, 0.7166456586068181, 0.7104553612088275, 0.7048404450987031, 0.699706631341134, 0.6949808930352835, 0.6906055313997999, 0.6863433504614944, 0.6823608128101508, 0.6786250870083246, 0.6751087482218235, 0.6717886572427373, 0.6660960891643186, 0.648603860779889, 0.6336600034718934, 0.6031450903389665, 0.5914228605659406], "BooreEtAl2014": [0.9055484525965466, 0.8830067949908427, 0.8379791166848969, 0.8303523348555119, 0.823310391043378, 0.8172453731897171, 0.8067744418361306, 0.8023191384978923, 0.8001256151380232, 0.7970194476924638, 0.7952515325354613, 0.7921142594348368, 0.7898461875580587, 0.7875842812042403, 0.7839757649315442, 0.7777261728912046, 0.7742208987104391, 0.7664163359428087, 0.7634500638548667, 0.7596426791590899, 0.7530166000826277, 0.7501919754302895, 0.7474021675109058, 0.7446475676452586, 0.7433034373659253, 0.7401216116287918, 0.7391731867431339, 0.7391380114701178, 0.7389106847244801, 0.7387834594791629, 0.7379444423532168, 0.7384260287936768, 0.739195508644364, 0.7408994533673243, 0.7419737192111321, 0.7425530284094193, 0.7432664394414698, 0.744186132630809, 0.7452039989157332, 0.7456339584541466, 0.7461749124702599, 0.7467703797018197, 0.747428257426758, 0.7474122022017035, 0.7474148780964961, 0.7474202298573407, 0.7481310045707236, 0.7481310045707236, 0.7573143336818603, 0.7629770270970804, 0.7495385246936945, 0.723370582758243, 0.7051730284121762], "ChiouYoungs2014": [0.7819912790082915, 0.794064840672668, 0.8024794797382064, 0.80513802886495, 0.8075650280383404, 0.8096627420033612, 0.8116049019424391, 0.8134129930655505, 0.8150198255033682, 0.8165291579274728, 0.8178174101987952, 0.8190358794874463, 0.8201917369836759, 0.8220572319089249, 0.823759902370861, 0.8252388477967582, 0.8265239679963345, 0.827720163730775, 0.8287840397736055, 0.8297832190495035, 0.8307251291313184, 0.8316159869930029, 0.8324610486767329, 0.8329942173266085, 0.8335025543328007, 0.8339882758780915, 0.8344533137134682, 0.834899361881608, 0.8317899800849605, 0.8289608794632204, 0.8263665319965722, 0.8239716210166919, 0.8217482056670573, 0.817416786372532, 0.8133615372273434, 0.809550308080165, 0.8059562188979175, 0.8025565705296196, 0.7948026092046463, 0.7877656744288298, 0.7813285792844965, 0.7754005115366042, 0.769909689558791, 0.7677456587601669, 0.7657180738432601, 0.7638110732492909, 0.7620113959180312, 0.7603078436835264, 0.7550726815936656, 0.751270867854555, 0.7481686875297576, 0.742643458868386, 0.7387330586889963], "CampbellBozorgnia2014": [0.9281671239446246, 0.9298805770438356, 0.8883103196511322, 0.881006128059404, 0.8745052405201047, 0.8686691632265404, 0.8633914286462386, 0.8585885256763621, 0.852748794935422, 0.8473308016951592, 0.8422798041472203, 0.8375391893900086, 0.8330918316728355, 0.8266396227739394, 0.8207612131605839, 0.8146826006857184, 0.8084083124295993, 0.8025764761067944, 0.7966069109580554, 0.7910525060014684, 0.7858638232787023, 0.7809996196918313, 0.7764251412724861, 0.7735178546322785, 0.7708082942865985, 0.7682767638977931, 0.7659062299106772, 0.7636818709384163, 0.7581911006051032, 0.7535181355851607, 0.7495111626968752, 0.7460545739578414, 0.743058544126908, 0.7433903470298611, 0.7438454415881561, 0.7444015256139238, 0.7450407349943753, 0.7457486171626468, 0.7428884441264512, 0.7404092754635958, 0.7382410203966285, 0.7363303761002793, 0.7346359642707401, 0.7329601686433725, 0.7313917796549372, 0.7299182236658507, 0.7285289969422998, 0.7272152363640355, 0.726449585312016, 0.7525004143230951, 0.7329120001746459, 0.6945343763990376, 0.6415894325813043], "KothaEtAl2016Italy": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Other": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Turkey": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "ZhaoEtAl2016Asc": [0.7278021709228408, 0.7771923607729061, 0.7889746510503364, 0.7888959212336364, 0.7890614678211072, 0.7851281052125924, 0.7816425014032949, 0.7779203044014215, 0.7731086598919974, 0.7761173983202411, 0.7789736837660179, 0.7791911134846302, 0.7795800151363553, 0.7766382892032334, 0.7740180644188175, 0.7720311021061312, 0.7705648785799881, 0.7692073842599275, 0.766046367881938, 0.7631174300150125, 0.7612176286655891, 0.7602584084081757, 0.7593800102715372, 0.7578610029858904, 0.7564140577504519, 0.7557303288152079, 0.755759754366926, 0.7557889917166034, 0.7583354500048901, 0.7606608968522045, 0.7631020746294933, 0.7653757247260983, 0.7691875558842282, 0.7727612826740222, 0.7743360885814617, 0.7758382563395544, 0.7755282571597322, 0.7752418977325723, 0.7735036933590107, 0.7719507714502052, 0.7702744781684243, 0.768462553483211, 0.7667757168820619, 0.7601190589317046, 0.7538661239670975, 0.7479707310064135, 0.7423941959549901, 0.7371037918773719, 0.6935776813018135, 0.6711784838363779, 0.6674346409949068, null, null], "BindiEtAl2017Rjb": [0.8956331632638443, 0.9102791622310158, 0.8915155151364446, 0.8806585598045363, 0.8721652361020817, 0.8619419154403619, 0.8550128842654946, 0.8491152000035095, 0.8447656795449257, 0.8366782265626375, 0.8275006067816506, 0.8172995224775309, 0.8080404663938557, 0.7924747477522548, 0.7795574303237702, 0.7710831262483961, 0.769626786282806, 0.76591816967415, 0.7607563726975937, 0.7551967045809985, 0.754068674194201, 0.7529532354190398, 0.753290637075757, 0.7502801781021541, 0.7481368979070608, 0.7452829309228811, 0.744935586376433, 0.7429570035129893, 0.7427907895019971, 0.749116576052753, 0.752806138934188, 0.7550676921627624, 0.7578875529852697, 0.7608282259360519, 0.7662748560588426, 0.7730108730438402, 0.7813574041608615, 0.7846822749227867, 0.789886878445262, 0.7944460849485006, 0.8013772027584762, 0.8038704516730292, 0.8107071945782892, 0.81029164015927, 0.8135451438297693, 0.8173261525859796, 0.8122649177017311, 0.8089673416900092, 0.7905637556402394, null, null, null, null]}}, {"ylabel": "Sa (g)", "magnitude": 4.0, "distance": 150.0, "row": 0, "column": 3, "yvalues": {"AkkarBommer2010": [0.6844817131851617, 0.6837362987816263, 0.683207418845582, 0.68672541913679, 0.6899371017735907, 0.6928915634006979, 0.6956269676162063, 0.6981735680158769, 0.6976000490734018, 0.6970613108380154, 0.6965533749187963, 0.6960729087565891, 0.6956170929827741, 0.6971778901534045, 0.6986027863323532, 0.7005012687446854, 0.7028253341764217, 0.7049889873300449, 0.7148224968535273, 0.7240596591789342, 0.7299358053141418, 0.732736803570049, 0.735394096191045, 0.7396101101089319, 0.7436299578941521, 0.7480893213112024, 0.7529640884143824, 0.7576398289888938, 0.7653446494262519, 0.766693379434133, 0.777923934283979, 0.7812641010612377, 0.7776172138314966, 0.7663280282574274, 0.7598439394252159, 0.7570802432466689, 0.752561463750785, 0.7489709391989503, 0.7433871979794608, 0.7409032244431811, 0.7378155982911665, 0.7422539024380507, 0.7359252519151268, 0.7357897954392761, 0.7435592056910777, 0.7473398109449241, 0.7490163484795692, 0.7561064684979164, 0.7794038310516823, null, null, null, null], "CauzziFaccioli2008": [0.8219379128089427, 0.8393387142592592, 0.8516847793668235, 0.8518298896882702, 0.8519623650325663, 0.8520842305359557, 0.8521970603688558, 0.8523021024302553, 0.8540729263581883, 0.85573635974715, 0.8573046864631392, 0.8587881962717722, 0.8601955943875482, 0.8525571104939933, 0.8455837210506426, 0.8381755704576738, 0.8303595392994786, 0.8230829883756888, 0.8232713592759195, 0.8234483065375926, 0.8233005200716469, 0.8228544967873165, 0.8224313567943714, 0.8196750153732449, 0.8170469232528611, 0.8178450428198889, 0.8218488981437654, 0.8256892844424486, 0.8260503297850302, 0.8211780597282549, 0.817439812829779, 0.8174315235234442, 0.8120846906790027, 0.8051021013844982, 0.8068610461370364, 0.8163400981893651, 0.8162896715758283, 0.8194244109214306, 0.8192920122785835, 0.8136785400803733, 0.8135348587705703, 0.8118129856380293, 0.8051582844607673, 0.7942350510381128, 0.7824361445045926, 0.7735861586996702, 0.7667493230415523, 0.7595645667758829, 0.6982775803896976, 0.6704283771676394, 0.6462004738584699, 0.6007518190344441, 0.5626092667104884], "ChiouYoungs2008": [0.7158870514739698, 0.725418599878621, 0.72810947526735, 0.7280087716296826, 0.7279286725823231, 0.7278649686086401, 0.7278145167010311, 0.7277749196924465, 0.7268792889236174, 0.7260461078876549, 0.725267806094445, 0.7245380856379864, 0.7238516534166842, 0.7221307878034507, 0.7205699658484523, 0.7186159657858618, 0.7163084160437999, 0.7141687884687546, 0.712127880435893, 0.7102122986238056, 0.7084076330164689, 0.7067018201834648, 0.7050846602781009, 0.7039019516607268, 0.7027748936458299, 0.7016985131742142, 0.7006684743044074, 0.6996809739025679, 0.6981491674584623, 0.6967610837040585, 0.6954929476693601, 0.694326380145681, 0.6932468859917765, 0.6938810350274327, 0.6944924453124067, 0.6950828083270923, 0.6956536379225069, 0.6962062921731402, 0.696231122868507, 0.6962884554071631, 0.6963704063579821, 0.6964712274571303, 0.6965866396191092, 0.6988536617243802, 0.7010199899173557, 0.7030947949679431, 0.7050860208104646, 0.7070005959802085, 0.726775667893942, 0.7494111475011216, 0.7678369358138484, 0.7844703894985458, 0.7989714462983017], "ZhaoEtAl2006Asc": [0.7182450835195463, 0.7506639297268827, 0.773692445355388, 0.7742426949440069, 0.7747562131314576, 0.7752380083676326, 0.7756921005392341, 0.7761217687966238, 0.7722802122118468, 0.7686816302832236, 0.7652978000089461, 0.7621051205205831, 0.7590836581036374, 0.7527411427191135, 0.7469669808073841, 0.7420715684469914, 0.737937653530582, 0.7340980860893183, 0.7361369393640627, 0.7381859520934553, 0.7402355419892188, 0.742278578508789, 0.7443097473498517, 0.742335679184848, 0.7404545736561577, 0.738658122565803, 0.7369390821527303, 0.7352910988173323, 0.7379520988250339, 0.740412047443854, 0.7404445155327583, 0.740476198131986, 0.7394343405313084, 0.7384747795287256, 0.7392130426477722, 0.739941213881211, 0.7393596516299581, 0.7388457213789629, 0.7351693539973224, 0.7319349648403927, 0.7305923515994256, 0.7308572357662626, 0.731116953708502, 0.7299943092840001, 0.7289730120917091, 0.7280397460331555, 0.7271835291354093, 0.7263952092353033, 0.722615388709651, 0.7022345940403416, 0.6993382586416962, null, null], "AkkarEtAlRjb2014": [0.7514019230744622, 0.7618002165922506, 0.7812130887280371, 0.7843878186203557, 0.7872884350731948, 0.7888397175599109, 0.7880527203176194, 0.7832053689805758, 0.7820091303814809, 0.7802584764038133, 0.7777611201390823, 0.7722903145838357, 0.7675740290030663, 0.7659554099293248, 0.7656047609569836, 0.763642691315775, 0.7585720071291848, 0.7622903449473829, 0.7695561837838741, 0.7700516995630878, 0.7731754005398775, 0.7773430967082682, 0.7781211538057553, 0.7743934142281944, 0.7716211635252107, 0.7700825020736414, 0.7677765560369761, 0.7653403491257991, 0.7721667501259039, 0.7774348847331203, 0.7826651902314297, 0.7869856478996297, 0.7863039170702382, 0.7803674262807232, 0.7799564731444953, 0.782871892457508, 0.7834978621540712, 0.7849243148227731, 0.7890588064269988, 0.7979061912280165, 0.7981296761805065, 0.8073204877866038, 0.8108963990547745, 0.8147434749662007, 0.8129160596273148, 0.8136103551455082, 0.8174336731503052, 0.8150865291488997, 0.8082581580163606, null, null, null, null], "BindiEtAl2014Rjb": [0.767508805710641, 0.7836029248110283, 0.7975671219261845, 0.7951428431878028, 0.7929296500990229, 0.7908937098167379, 0.789008723537143, 0.7872538432946641, 0.7839643806847408, 0.7808744055320594, 0.7779610994653116, 0.7752053483316296, 0.7725909814224782, 0.7747507465976511, 0.7767224577228621, 0.7785362561325888, 0.7768990288937333, 0.7753748067999079, 0.776151571674347, 0.7768812301158964, 0.7775691703935314, 0.775896019519639, 0.7743087099018517, 0.776729817038814, 0.7790382729291059, 0.7812440962019498, 0.7840965122991578, 0.7868324702226462, 0.790047543272952, 0.7929826750060335, 0.7946565385529079, 0.796206294136225, 0.7955067520351479, 0.7948523741015445, 0.8011539424069896, 0.807095219040994, 0.8136531197119701, 0.8198745663071109, 0.8202401036353644, 0.8205738130705763, 0.8208807959927493, 0.828430166458295, 0.8354584622164946, 0.8372393974217929, 0.8389123288958596, 0.8404896106446865, 0.8450234241355936, 0.8493246296465048, 0.8297894977175432, null, null, null, null], "CauzziEtAl2014": [0.8227964012485014, 0.8511727469660871, 0.8522195907509933, 0.8511643031364848, 0.8502009010251153, 0.849314656993124, 0.8484941231811982, 0.8477302244778377, 0.844245105878018, 0.8409713401738255, 0.8378847517658702, 0.8349650895987134, 0.832195221136202, 0.8257570491113541, 0.8198794585504274, 0.8170632016931386, 0.8169522037957349, 0.8168488672254801, 0.8224839554274542, 0.8277773071362535, 0.8312046299407523, 0.832924896120847, 0.8345569037869973, 0.8347880057508652, 0.8350083548141528, 0.8381071614360578, 0.8439015220480752, 0.8494593110549161, 0.8620985209858882, 0.8659787163104777, 0.8690536448522258, 0.8649731696879183, 0.8607944161115274, 0.8564544999373845, 0.8585000380163414, 0.8639075295473256, 0.8639996869785381, 0.8640808992911826, 0.8676581859365654, 0.8653514794289309, 0.8659400099950524, 0.8658508848376814, 0.8637958249184655, 0.8606244209148295, 0.854686846727022, 0.8502168157395237, 0.8469379501245717, 0.8471602031577969, 0.8388582348773796, 0.8329785027146948, 0.8235861763604481, 0.8043912561154009, 0.7772100228597301], "DerrasEtAl2014": [0.7480035478517366, 0.7562896733768881, 0.7717061638741622, 0.7799919911635539, 0.7780012184339148, 0.7768452564218975, 0.7799919911635539, 0.7768452564218975, 0.7717061638741622, 0.7697146252705663, 0.7665672007584541, 0.7582815111034834, 0.7551355809244937, 0.7551355809244937, 0.7511511145682411, 0.7480035478517366, 0.7417112320434819, 0.7417112320434819, 0.7499961841469494, 0.7551355809244937, 0.7582815111034834, 0.7614283696954255, 0.7582815111034834, 0.7562896733768881, 0.7531424628511735, 0.7531424628511735, 0.7551355809244937, 0.7531424628511735, 0.7582815111034834, 0.7614283696954255, 0.7634206899176481, 0.7634206899176481, 0.7645761452367758, 0.7634206899176481, 0.7582815111034834, 0.7614283696954255, 0.7665672007584541, 0.7717061638741622, 0.7799919911635539, 0.7902698805645967, 0.7965646616362811, 0.811980441655112, 0.8202666515897504, 0.8254052987450918, 0.8325365697570533, 0.8408219808864074, 0.8491077178141273, 0.8479549021314452, 0.8676713813383503, null, null, null, null], "AbrahamsonEtAl2014": [0.9261133323633599, 0.9261070812498694, 0.9235272112389423, 0.9190834822919649, 0.9150336247531671, 0.9113139665589385, 0.9078713595885816, 0.9046706583061042, 0.900839911742388, 0.8972470180606402, 0.8938645221100797, 0.8906694494960897, 0.8876423829448435, 0.8789630700586558, 0.8710693034208646, 0.8608773672376065, 0.8486553389556851, 0.8373464038258001, 0.8282717122041765, 0.819790115321404, 0.8118325884222275, 0.8043414115474622, 0.797267834544954, 0.7923308118955336, 0.787639000529531, 0.783170173203614, 0.7789049711319644, 0.7748264321769102, 0.7655156469967647, 0.7570749053216045, 0.7493618906490194, 0.7422663203117175, 0.7357010262328033, 0.7313949962754148, 0.7273662742440221, 0.7235824821055554, 0.7200165585399928, 0.7166456586068181, 0.7104553612088275, 0.7048404450987031, 0.699706631341134, 0.6949808930352835, 0.6906055313997999, 0.6863433504614944, 0.6823608128101508, 0.6786250870083246, 0.6751087482218235, 0.6717886572427373, 0.6660960891643186, 0.648603860779889, 0.6336600034718934, 0.6031450903389665, 0.5914228605659406], "BooreEtAl2014": [0.9276943376647762, 0.9094189769451044, 0.8774710984481328, 0.8730638194376426, 0.8691321805096939, 0.8656062506201425, 0.8601452041122118, 0.8576605083816364, 0.8570551899749785, 0.8542751552451623, 0.8526930841037227, 0.8495405574046736, 0.8466128658310496, 0.8436758175638461, 0.8393427966408383, 0.8304282997000768, 0.8251656962736796, 0.8143842799193777, 0.8096502309560053, 0.8045416509148015, 0.7953209282153965, 0.791234797810801, 0.7872669100800316, 0.7837573940769458, 0.7813949280371099, 0.7766907989632548, 0.7749612132629178, 0.7741219951917546, 0.7733107964196229, 0.7721471869815236, 0.7704592359541611, 0.7686241201008999, 0.7679120295255566, 0.7682968397480243, 0.7682085702867041, 0.7673137975093863, 0.7667524098536769, 0.7664034131808186, 0.7663825450994276, 0.765861626504627, 0.7655681528208899, 0.7654088793420781, 0.7656117889192569, 0.7650606294859029, 0.7647594353120267, 0.7645397654583613, 0.7652316692438752, 0.7652844516611416, 0.7792549673248887, 0.7799012468668233, 0.7603030428952046, 0.7321168538154126, 0.7182354832577719], "ChiouYoungs2014": [0.7820145505597583, 0.7941084840783869, 0.8025319719941069, 0.805190223071084, 0.8076170167069894, 0.8097133563097918, 0.8116542635480268, 0.8134612049465209, 0.815065886859187, 0.8165732580395444, 0.8178588792340082, 0.8190749779063394, 0.8202286891201196, 0.8220896045506761, 0.8237885377092785, 0.8252641935430245, 0.8265464107986619, 0.8277401809977509, 0.8288018500348302, 0.829799167096558, 0.8307394918496853, 0.8316289893165925, 0.8324728752250777, 0.8330049620723119, 0.8335123568356818, 0.8339972530598797, 0.834461564249356, 0.8349069696079197, 0.8317960481517583, 0.8289658038813686, 0.8263705870092073, 0.8239750018660479, 0.8217510546596035, 0.8174192081462487, 0.8133636139461758, 0.8095521027444966, 0.8059577805139727, 0.8025579377080331, 0.7948038280898093, 0.7877667744632685, 0.7813295832882343, 0.7754014378270295, 0.7699105534446055, 0.7677466637145096, 0.7657192298799056, 0.7638123895103477, 0.7620128804213866, 0.7603095030483726, 0.7550739258415138, 0.7512710107097061, 0.7481686875297576, 0.742643458868386, 0.7387330586889963], "CampbellBozorgnia2014": [0.928312349665571, 0.9300468531873601, 0.8884579905306229, 0.8811359274852393, 0.8746170019498033, 0.8687629036754708, 0.8634672860399246, 0.8586467177403795, 0.8527860869720442, 0.8473475202547948, 0.8422798041472203, 0.8375391893900086, 0.8330918316728355, 0.8266396227739394, 0.8207612131605839, 0.8146826006857184, 0.8084083124295993, 0.8025764761067944, 0.7966069109580554, 0.7910525060014684, 0.7858638232787023, 0.7809996196918313, 0.7764251412724861, 0.7735178546322785, 0.7708082942865985, 0.7682767638977931, 0.7659062299106772, 0.7636818709384163, 0.7581911006051032, 0.7535181355851607, 0.7495111626968752, 0.7460545739578414, 0.743058544126908, 0.7433903470298611, 0.7438454415881561, 0.7444015256139238, 0.7450407349943753, 0.7457486171626468, 0.7428884441264512, 0.7404092754635958, 0.7382410203966285, 0.7363303761002793, 0.7346359642707401, 0.7329601686433725, 0.7313917796549372, 0.7299182236658507, 0.7285289969422998, 0.7272152363640355, 0.726449585312016, 0.7525004143230951, 0.7329120001746459, 0.6945343763990376, 0.6415894325813043], "KothaEtAl2016Italy": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Other": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Turkey": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "ZhaoEtAl2016Asc": [0.7278021709228408, 0.7771923607729061, 0.7889746510503364, 0.7888959212336364, 0.7890614678211072, 0.7851281052125924, 0.7816425014032949, 0.7779203044014215, 0.7731086598919974, 0.7761173983202411, 0.7789736837660179, 0.7791911134846302, 0.7795800151363553, 0.7766382892032334, 0.7740180644188175, 0.7720311021061312, 0.7705648785799881, 0.7692073842599275, 0.766046367881938, 0.7631174300150125, 0.7612176286655891, 0.7602584084081757, 0.7593800102715372, 0.7578610029858904, 0.7564140577504519, 0.7557303288152079, 0.755759754366926, 0.7557889917166034, 0.7583354500048901, 0.7606608968522045, 0.7631020746294933, 0.7653757247260983, 0.7691875558842282, 0.7727612826740222, 0.7743360885814617, 0.7758382563395544, 0.7755282571597322, 0.7752418977325723, 0.7735036933590107, 0.7719507714502052, 0.7702744781684243, 0.768462553483211, 0.7667757168820619, 0.7601190589317046, 0.7538661239670975, 0.7479707310064135, 0.7423941959549901, 0.7371037918773719, 0.6935776813018135, 0.6711784838363779, 0.6674346409949068, null, null], "BindiEtAl2017Rjb": [0.8956331632638443, 0.9102791622310158, 0.8915155151364446, 0.8806585598045363, 0.8721652361020817, 0.8619419154403619, 0.8550128842654946, 0.8491152000035095, 0.8447656795449257, 0.8366782265626375, 0.8275006067816506, 0.8172995224775309, 0.8080404663938557, 0.7924747477522548, 0.7795574303237702, 0.7710831262483961, 0.769626786282806, 0.76591816967415, 0.7607563726975937, 0.7551967045809985, 0.754068674194201, 0.7529532354190398, 0.753290637075757, 0.7502801781021541, 0.7481368979070608, 0.7452829309228811, 0.744935586376433, 0.7429570035129893, 0.7427907895019971, 0.749116576052753, 0.752806138934188, 0.7550676921627624, 0.7578875529852697, 0.7608282259360519, 0.7662748560588426, 0.7730108730438402, 0.7813574041608615, 0.7846822749227867, 0.789886878445262, 0.7944460849485006, 0.8013772027584762, 0.8038704516730292, 0.8107071945782892, 0.81029164015927, 0.8135451438297693, 0.8173261525859796, 0.8122649177017311, 0.8089673416900092, 0.7905637556402394, null, null, null, null]}}, {"ylabel": "Sa (g)", "magnitude": 5.0, "distance": 5.0, "row": 1, "column": 0, "yvalues": {"AkkarBommer2010": [0.6844817131851617, 0.6837362987816263, 0.683207418845582, 0.68672541913679, 0.6899371017735907, 0.6928915634006979, 0.6956269676162063, 0.6981735680158769, 0.6976000490734018, 0.6970613108380154, 0.6965533749187963, 0.6960729087565891, 0.6956170929827741, 0.6971778901534045, 0.6986027863323532, 0.7005012687446854, 0.7028253341764217, 0.7049889873300449, 0.7148224968535273, 0.7240596591789342, 0.7299358053141418, 0.732736803570049, 0.735394096191045, 0.7396101101089319, 0.7436299578941521, 0.7480893213112024, 0.7529640884143824, 0.7576398289888938, 0.7653446494262519, 0.766693379434133, 0.777923934283979, 0.7812641010612377, 0.7776172138314966, 0.7663280282574274, 0.7598439394252159, 0.7570802432466689, 0.752561463750785, 0.7489709391989503, 0.7433871979794608, 0.7409032244431811, 0.7378155982911665, 0.7422539024380507, 0.7359252519151268, 0.7357897954392761, 0.7435592056910777, 0.7473398109449241, 0.7490163484795692, 0.7561064684979164, 0.7794038310516823, null, null, null, null], "CauzziFaccioli2008": [0.8219379128089427, 0.8393387142592592, 0.8516847793668235, 0.8518298896882702, 0.8519623650325663, 0.8520842305359557, 0.8521970603688558, 0.8523021024302553, 0.8540729263581883, 0.85573635974715, 0.8573046864631392, 0.8587881962717722, 0.8601955943875482, 0.8525571104939933, 0.8455837210506426, 0.8381755704576738, 0.8303595392994786, 0.8230829883756888, 0.8232713592759195, 0.8234483065375926, 0.8233005200716469, 0.8228544967873165, 0.8224313567943714, 0.8196750153732449, 0.8170469232528611, 0.8178450428198889, 0.8218488981437654, 0.8256892844424486, 0.8260503297850302, 0.8211780597282549, 0.817439812829779, 0.8174315235234442, 0.8120846906790027, 0.8051021013844982, 0.8068610461370364, 0.8163400981893651, 0.8162896715758283, 0.8194244109214306, 0.8192920122785835, 0.8136785400803733, 0.8135348587705703, 0.8118129856380293, 0.8051582844607673, 0.7942350510381128, 0.7824361445045926, 0.7735861586996702, 0.7667493230415523, 0.7595645667758829, 0.6982775803896976, 0.6704283771676394, 0.6462004738584699, 0.6007518190344441, 0.5626092667104884], "ChiouYoungs2008": [0.7133098769888482, 0.720685666870432, 0.7224908384653359, 0.7225046334293852, 0.7225270062011407, 0.722556038093681, 0.7225902923859073, 0.7226286741178907, 0.7219716987645296, 0.7213548418768229, 0.7207737383461759, 0.7202246897398011, 0.7197045357303098, 0.7183889644555047, 0.7171697876335572, 0.715531701855772, 0.7135164655983781, 0.7116284134296581, 0.7098197645711015, 0.7081063791248001, 0.706478951128944, 0.7049294477966179, 0.7034508934665505, 0.7023939678475355, 0.7013794845737855, 0.7004042577059757, 0.6994654404665936, 0.6985604798967768, 0.697219685068769, 0.6959823431767246, 0.6948350348850219, 0.6937666375619488, 0.6927678688982859, 0.6934570431221524, 0.6941156824572678, 0.6947468731893905, 0.6953532318195915, 0.6959369985099106, 0.6959768494421738, 0.696047850758044, 0.6961421533449585, 0.6962540565068283, 0.6963793238359336, 0.6986064070845689, 0.7007296842506732, 0.702758783010571, 0.7047022463133702, 0.7065677663358433, 0.7264196932143158, 0.7493678177617424, 0.7678369358138484, 0.7844703894985458, 0.7989714462983017], "ZhaoEtAl2006Asc": [0.7182450835195463, 0.7506639297268827, 0.773692445355388, 0.7742426949440069, 0.7747562131314576, 0.7752380083676326, 0.7756921005392341, 0.7761217687966238, 0.7722802122118468, 0.7686816302832236, 0.7652978000089461, 0.7621051205205831, 0.7590836581036374, 0.7527411427191135, 0.7469669808073841, 0.7420715684469914, 0.737937653530582, 0.7340980860893183, 0.7361369393640627, 0.7381859520934553, 0.7402355419892188, 0.742278578508789, 0.7443097473498517, 0.742335679184848, 0.7404545736561577, 0.738658122565803, 0.7369390821527303, 0.7352910988173323, 0.7379520988250339, 0.740412047443854, 0.7404445155327583, 0.740476198131986, 0.7394343405313084, 0.7384747795287256, 0.7392130426477722, 0.739941213881211, 0.7393596516299581, 0.7388457213789629, 0.7351693539973224, 0.7319349648403927, 0.7305923515994256, 0.7308572357662626, 0.731116953708502, 0.7299943092840001, 0.7289730120917091, 0.7280397460331555, 0.7271835291354093, 0.7263952092353033, 0.722615388709651, 0.7022345940403416, 0.6993382586416962, null, null], "AkkarEtAlRjb2014": [0.7514019230744622, 0.7618002165922506, 0.7812130887280371, 0.7843878186203557, 0.7872884350731948, 0.7888397175599109, 0.7880527203176194, 0.7832053689805758, 0.7820091303814809, 0.7802584764038133, 0.7777611201390823, 0.7722903145838357, 0.7675740290030663, 0.7659554099293248, 0.7656047609569836, 0.763642691315775, 0.7585720071291848, 0.7622903449473829, 0.7695561837838741, 0.7700516995630878, 0.7731754005398775, 0.7773430967082682, 0.7781211538057553, 0.7743934142281944, 0.7716211635252107, 0.7700825020736414, 0.7677765560369761, 0.7653403491257991, 0.7721667501259039, 0.7774348847331203, 0.7826651902314297, 0.7869856478996297, 0.7863039170702382, 0.7803674262807232, 0.7799564731444953, 0.782871892457508, 0.7834978621540712, 0.7849243148227731, 0.7890588064269988, 0.7979061912280165, 0.7981296761805065, 0.8073204877866038, 0.8108963990547745, 0.8147434749662007, 0.8129160596273148, 0.8136103551455082, 0.8174336731503052, 0.8150865291488997, 0.8082581580163606, null, null, null, null], "BindiEtAl2014Rjb": [0.767508805710641, 0.7836029248110283, 0.7975671219261845, 0.7951428431878028, 0.7929296500990229, 0.7908937098167379, 0.789008723537143, 0.7872538432946641, 0.7839643806847408, 0.7808744055320594, 0.7779610994653116, 0.7752053483316296, 0.7725909814224782, 0.7747507465976511, 0.7767224577228621, 0.7785362561325888, 0.7768990288937333, 0.7753748067999079, 0.776151571674347, 0.7768812301158964, 0.7775691703935314, 0.775896019519639, 0.7743087099018517, 0.776729817038814, 0.7790382729291059, 0.7812440962019498, 0.7840965122991578, 0.7868324702226462, 0.790047543272952, 0.7929826750060335, 0.7946565385529079, 0.796206294136225, 0.7955067520351479, 0.7948523741015445, 0.8011539424069896, 0.807095219040994, 0.8136531197119701, 0.8198745663071109, 0.8202401036353644, 0.8205738130705763, 0.8208807959927493, 0.828430166458295, 0.8354584622164946, 0.8372393974217929, 0.8389123288958596, 0.8404896106446865, 0.8450234241355936, 0.8493246296465048, 0.8297894977175432, null, null, null, null], "CauzziEtAl2014": [0.8227964012485014, 0.8511727469660871, 0.8522195907509933, 0.8511643031364848, 0.8502009010251153, 0.849314656993124, 0.8484941231811982, 0.8477302244778377, 0.844245105878018, 0.8409713401738255, 0.8378847517658702, 0.8349650895987134, 0.832195221136202, 0.8257570491113541, 0.8198794585504274, 0.8170632016931386, 0.8169522037957349, 0.8168488672254801, 0.8224839554274542, 0.8277773071362535, 0.8312046299407523, 0.832924896120847, 0.8345569037869973, 0.8347880057508652, 0.8350083548141528, 0.8381071614360578, 0.8439015220480752, 0.8494593110549161, 0.8620985209858882, 0.8659787163104777, 0.8690536448522258, 0.8649731696879183, 0.8607944161115274, 0.8564544999373845, 0.8585000380163414, 0.8639075295473256, 0.8639996869785381, 0.8640808992911826, 0.8676581859365654, 0.8653514794289309, 0.8659400099950524, 0.8658508848376814, 0.8637958249184655, 0.8606244209148295, 0.854686846727022, 0.8502168157395237, 0.8469379501245717, 0.8471602031577969, 0.8388582348773796, 0.8329785027146948, 0.8235861763604481, 0.8043912561154009, 0.7772100228597301], "DerrasEtAl2014": [0.7480035478517366, 0.7562896733768881, 0.7717061638741622, 0.7799919911635539, 0.7780012184339148, 0.7768452564218975, 0.7799919911635539, 0.7768452564218975, 0.7717061638741622, 0.7697146252705663, 0.7665672007584541, 0.7582815111034834, 0.7551355809244937, 0.7551355809244937, 0.7511511145682411, 0.7480035478517366, 0.7417112320434819, 0.7417112320434819, 0.7499961841469494, 0.7551355809244937, 0.7582815111034834, 0.7614283696954255, 0.7582815111034834, 0.7562896733768881, 0.7531424628511735, 0.7531424628511735, 0.7551355809244937, 0.7531424628511735, 0.7582815111034834, 0.7614283696954255, 0.7634206899176481, 0.7634206899176481, 0.7645761452367758, 0.7634206899176481, 0.7582815111034834, 0.7614283696954255, 0.7665672007584541, 0.7717061638741622, 0.7799919911635539, 0.7902698805645967, 0.7965646616362811, 0.811980441655112, 0.8202666515897504, 0.8254052987450918, 0.8325365697570533, 0.8408219808864074, 0.8491077178141273, 0.8479549021314452, 0.8676713813383503, null, null, null, null], "AbrahamsonEtAl2014": [0.7978198225040923, 0.7960327914009269, 0.7992737942729478, 0.8002102443670827, 0.801561430632465, 0.8031710972018679, 0.8009495390710599, 0.798884221899519, 0.7966183383590625, 0.7944929973584522, 0.7924919714725388, 0.790601682531329, 0.7888106553539955, 0.784529262725761, 0.7806320392049876, 0.7762369207582485, 0.7713933950760508, 0.7669002542703973, 0.7630062674036797, 0.7593594596585487, 0.7559310866201654, 0.7526971143177137, 0.7496372456061666, 0.7479351294200943, 0.7463145610751685, 0.7447681999425069, 0.7432896499675604, 0.7418733045473466, 0.7387858032330508, 0.7359747713182934, 0.7333953831950177, 0.7310128641902786, 0.7287996981338561, 0.728114103265923, 0.7274705056043578, 0.7268640789719145, 0.726290782951636, 0.7257472011658053, 0.7236001586620207, 0.7216441121935048, 0.7198481653023334, 0.7181883405081413, 0.716645658606818, 0.7153763442995822, 0.714185562531974, 0.7130642508590964, 0.7120048260365326, 0.7110008790430571, 0.7039005611590319, 0.6905977341160064, 0.6836755443922211, 0.669292350172927, 0.6660960891643186], "BooreEtAl2014": [0.7928218589317528, 0.7968640097281342, 0.7701444669670751, 0.7635561537961697, 0.756481658733376, 0.7496402470518776, 0.7361706663539372, 0.7298309735822398, 0.7241161854288302, 0.718805432645024, 0.7140087534477432, 0.7088529466680659, 0.7051434251271156, 0.7014844973340466, 0.6978785710995861, 0.6918657745545735, 0.6894349135342654, 0.6852298884316125, 0.6845832673970348, 0.6832505031099502, 0.6809937591490836, 0.679856602527327, 0.6791557258832468, 0.6789103401775525, 0.6791100794422064, 0.6811115914444563, 0.6822618632167563, 0.6847904789057745, 0.6871471821960707, 0.6897871048374273, 0.6925272557813158, 0.6987259834870891, 0.7017723990012715, 0.7049113419430844, 0.7070291719582721, 0.7089677355141064, 0.7102958890490639, 0.710862152600629, 0.7114831340235691, 0.7118716527577145, 0.7121351697536079, 0.7120242271159037, 0.7124607006705704, 0.7126227964358143, 0.7133067362642806, 0.7138017932171368, 0.7150000000000001, 0.7159010057263504, 0.7255291172654617, 0.7284825076529888, 0.7201022496840291, 0.6934113137236801, 0.6648443426848122], "ChiouYoungs2014": [0.7795917678046778, 0.7895705089284909, 0.7971528867884057, 0.7998460500156003, 0.8023021237043301, 0.8045072024109177, 0.8065478231629543, 0.8084469142724743, 0.8102190129340391, 0.8118808213739591, 0.8133742152057559, 0.8147809329004547, 0.816110230337943, 0.8183618487108014, 0.8203924173707162, 0.8221714890948083, 0.8237321380512223, 0.8251674317136353, 0.8264544755471099, 0.8276488665710114, 0.8287627626339377, 0.8298061578689038, 0.8307873622839141, 0.8314464722643176, 0.8320676328625354, 0.832654853942031, 0.8332115784963383, 0.8337407698972179, 0.8308348205912086, 0.82816452475244, 0.8256963409975105, 0.8234032162647206, 0.821263052149471, 0.8169944510086895, 0.8129918744402617, 0.8092251898432102, 0.8056690705806567, 0.8023020284335958, 0.7945683090247214, 0.787548850023259, 0.7811268335493724, 0.7752117446706681, 0.7697320286545805, 0.7675358704158365, 0.7654738687196578, 0.7635305025255624, 0.7616929500265275, 0.7599505663508843, 0.7547842596225943, 0.751236758475173, 0.7481686875297576, 0.742643458868386, 0.7387330586889963], "CampbellBozorgnia2014": [0.7730622967754148, 0.7874984662142613, 0.7751233675447706, 0.7700106144711701, 0.7656071047339378, 0.761780361143777, 0.7584298591114212, 0.7554777302327915, 0.7521618649119635, 0.7492327470898096, 0.7463399676168387, 0.7423458066201155, 0.7386301510228243, 0.7320210964857752, 0.7259907554703863, 0.7229595768053693, 0.7225884330401822, 0.7222577448529022, 0.720058470226781, 0.7179951164910406, 0.7160520144041415, 0.7142160503951647, 0.7124761399513669, 0.7126414380451696, 0.7128078319676622, 0.7129748366015094, 0.7131420611012109, 0.7133091896225646, 0.7157985910869645, 0.7183025434920838, 0.7207988856977868, 0.7232732561573155, 0.7257163702163538, 0.7266140187546833, 0.7275430700698667, 0.7284948717899241, 0.7294627040226861, 0.7304413049657035, 0.7292440578122104, 0.7283033448175189, 0.7275668368218208, 0.7269953691657542, 0.7265590134324947, 0.724385322359956, 0.7223492043879041, 0.7204346470830101, 0.7186282645557034, 0.716918754113742, 0.7179683140640679, 0.7145751384976864, 0.7107802051267326, 0.6945376159719501, 0.6681077757368192], "KothaEtAl2016Italy": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Other": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Turkey": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "ZhaoEtAl2016Asc": [0.7278021709228408, 0.7771923607729061, 0.7889746510503364, 0.7888959212336364, 0.7890614678211072, 0.7851281052125924, 0.7816425014032949, 0.7779203044014215, 0.7731086598919974, 0.7761173983202411, 0.7789736837660179, 0.7791911134846302, 0.7795800151363553, 0.7766382892032334, 0.7740180644188175, 0.7720311021061312, 0.7705648785799881, 0.7692073842599275, 0.766046367881938, 0.7631174300150125, 0.7612176286655891, 0.7602584084081757, 0.7593800102715372, 0.7578610029858904, 0.7564140577504519, 0.7557303288152079, 0.755759754366926, 0.7557889917166034, 0.7583354500048901, 0.7606608968522045, 0.7631020746294933, 0.7653757247260983, 0.7691875558842282, 0.7727612826740222, 0.7743360885814617, 0.7758382563395544, 0.7755282571597322, 0.7752418977325723, 0.7735036933590107, 0.7719507714502052, 0.7702744781684243, 0.768462553483211, 0.7667757168820619, 0.7601190589317046, 0.7538661239670975, 0.7479707310064135, 0.7423941959549901, 0.7371037918773719, 0.6935776813018135, 0.6711784838363779, 0.6674346409949068, null, null], "BindiEtAl2017Rjb": [0.8956331632638443, 0.9102791622310158, 0.8915155151364446, 0.8806585598045363, 0.8721652361020817, 0.8619419154403619, 0.8550128842654946, 0.8491152000035095, 0.8447656795449257, 0.8366782265626375, 0.8275006067816506, 0.8172995224775309, 0.8080404663938557, 0.7924747477522548, 0.7795574303237702, 0.7710831262483961, 0.769626786282806, 0.76591816967415, 0.7607563726975937, 0.7551967045809985, 0.754068674194201, 0.7529532354190398, 0.753290637075757, 0.7502801781021541, 0.7481368979070608, 0.7452829309228811, 0.744935586376433, 0.7429570035129893, 0.7427907895019971, 0.749116576052753, 0.752806138934188, 0.7550676921627624, 0.7578875529852697, 0.7608282259360519, 0.7662748560588426, 0.7730108730438402, 0.7813574041608615, 0.7846822749227867, 0.789886878445262, 0.7944460849485006, 0.8013772027584762, 0.8038704516730292, 0.8107071945782892, 0.81029164015927, 0.8135451438297693, 0.8173261525859796, 0.8122649177017311, 0.8089673416900092, 0.7905637556402394, null, null, null, null]}}, {"ylabel": "Sa (g)", "magnitude": 5.0, "distance": 20.0, "row": 1, "column": 1, "yvalues": {"AkkarBommer2010": [0.6844817131851617, 0.6837362987816263, 0.683207418845582, 0.68672541913679, 0.6899371017735907, 0.6928915634006979, 0.6956269676162063, 0.6981735680158769, 0.6976000490734018, 0.6970613108380154, 0.6965533749187963, 0.6960729087565891, 0.6956170929827741, 0.6971778901534045, 0.6986027863323532, 0.7005012687446854, 0.7028253341764217, 0.7049889873300449, 0.7148224968535273, 0.7240596591789342, 0.7299358053141418, 0.732736803570049, 0.735394096191045, 0.7396101101089319, 0.7436299578941521, 0.7480893213112024, 0.7529640884143824, 0.7576398289888938, 0.7653446494262519, 0.766693379434133, 0.777923934283979, 0.7812641010612377, 0.7776172138314966, 0.7663280282574274, 0.7598439394252159, 0.7570802432466689, 0.752561463750785, 0.7489709391989503, 0.7433871979794608, 0.7409032244431811, 0.7378155982911665, 0.7422539024380507, 0.7359252519151268, 0.7357897954392761, 0.7435592056910777, 0.7473398109449241, 0.7490163484795692, 0.7561064684979164, 0.7794038310516823, null, null, null, null], "CauzziFaccioli2008": [0.8219379128089427, 0.8393387142592592, 0.8516847793668235, 0.8518298896882702, 0.8519623650325663, 0.8520842305359557, 0.8521970603688558, 0.8523021024302553, 0.8540729263581883, 0.85573635974715, 0.8573046864631392, 0.8587881962717722, 0.8601955943875482, 0.8525571104939933, 0.8455837210506426, 0.8381755704576738, 0.8303595392994786, 0.8230829883756888, 0.8232713592759195, 0.8234483065375926, 0.8233005200716469, 0.8228544967873165, 0.8224313567943714, 0.8196750153732449, 0.8170469232528611, 0.8178450428198889, 0.8218488981437654, 0.8256892844424486, 0.8260503297850302, 0.8211780597282549, 0.817439812829779, 0.8174315235234442, 0.8120846906790027, 0.8051021013844982, 0.8068610461370364, 0.8163400981893651, 0.8162896715758283, 0.8194244109214306, 0.8192920122785835, 0.8136785400803733, 0.8135348587705703, 0.8118129856380293, 0.8051582844607673, 0.7942350510381128, 0.7824361445045926, 0.7735861586996702, 0.7667493230415523, 0.7595645667758829, 0.6982775803896976, 0.6704283771676394, 0.6462004738584699, 0.6007518190344441, 0.5626092667104884], "ChiouYoungs2008": [0.7150724050345176, 0.7239469081728588, 0.726404623569881, 0.7263471518484411, 0.7263051362055748, 0.726275452095755, 0.726255741338974, 0.7262441904984408, 0.7254204664169126, 0.7246526514623576, 0.7239340937452923, 0.7232592423923009, 0.7226234189232515, 0.7210242523598828, 0.7195660312385026, 0.7177077967607833, 0.7154893218971955, 0.713426019055416, 0.7114567843483411, 0.7096030983678601, 0.7078522727409147, 0.7061935933830492, 0.7046179322114797, 0.7034734241675397, 0.7023802395976887, 0.7013340268671946, 0.700330962629769, 0.6993676698923592, 0.6978921532988233, 0.6965476313718105, 0.6953138024114077, 0.6941746652356292, 0.6931173965649032, 0.6937671228578527, 0.6943916986614875, 0.6949932810193138, 0.6955737439178701, 0.6961347276449058, 0.6961642061869312, 0.6962255173295371, 0.6963108561694428, 0.6964145294233757, 0.696532289731193, 0.6987893020420424, 0.700944791291337, 0.7030079963654451, 0.704986953534203, 0.7068887111060543, 0.7266848695051933, 0.749400156697445, 0.7678369358138484, 0.7844703894985458, 0.7989714462983017], "ZhaoEtAl2006Asc": [0.7182450835195463, 0.7506639297268827, 0.773692445355388, 0.7742426949440069, 0.7747562131314576, 0.7752380083676326, 0.7756921005392341, 0.7761217687966238, 0.7722802122118468, 0.7686816302832236, 0.7652978000089461, 0.7621051205205831, 0.7590836581036374, 0.7527411427191135, 0.7469669808073841, 0.7420715684469914, 0.737937653530582, 0.7340980860893183, 0.7361369393640627, 0.7381859520934553, 0.7402355419892188, 0.742278578508789, 0.7443097473498517, 0.742335679184848, 0.7404545736561577, 0.738658122565803, 0.7369390821527303, 0.7352910988173323, 0.7379520988250339, 0.740412047443854, 0.7404445155327583, 0.740476198131986, 0.7394343405313084, 0.7384747795287256, 0.7392130426477722, 0.739941213881211, 0.7393596516299581, 0.7388457213789629, 0.7351693539973224, 0.7319349648403927, 0.7305923515994256, 0.7308572357662626, 0.731116953708502, 0.7299943092840001, 0.7289730120917091, 0.7280397460331555, 0.7271835291354093, 0.7263952092353033, 0.722615388709651, 0.7022345940403416, 0.6993382586416962, null, null], "AkkarEtAlRjb2014": [0.7514019230744622, 0.7618002165922506, 0.7812130887280371, 0.7843878186203557, 0.7872884350731948, 0.7888397175599109, 0.7880527203176194, 0.7832053689805758, 0.7820091303814809, 0.7802584764038133, 0.7777611201390823, 0.7722903145838357, 0.7675740290030663, 0.7659554099293248, 0.7656047609569836, 0.763642691315775, 0.7585720071291848, 0.7622903449473829, 0.7695561837838741, 0.7700516995630878, 0.7731754005398775, 0.7773430967082682, 0.7781211538057553, 0.7743934142281944, 0.7716211635252107, 0.7700825020736414, 0.7677765560369761, 0.7653403491257991, 0.7721667501259039, 0.7774348847331203, 0.7826651902314297, 0.7869856478996297, 0.7863039170702382, 0.7803674262807232, 0.7799564731444953, 0.782871892457508, 0.7834978621540712, 0.7849243148227731, 0.7890588064269988, 0.7979061912280165, 0.7981296761805065, 0.8073204877866038, 0.8108963990547745, 0.8147434749662007, 0.8129160596273148, 0.8136103551455082, 0.8174336731503052, 0.8150865291488997, 0.8082581580163606, null, null, null, null], "BindiEtAl2014Rjb": [0.767508805710641, 0.7836029248110283, 0.7975671219261845, 0.7951428431878028, 0.7929296500990229, 0.7908937098167379, 0.789008723537143, 0.7872538432946641, 0.7839643806847408, 0.7808744055320594, 0.7779610994653116, 0.7752053483316296, 0.7725909814224782, 0.7747507465976511, 0.7767224577228621, 0.7785362561325888, 0.7768990288937333, 0.7753748067999079, 0.776151571674347, 0.7768812301158964, 0.7775691703935314, 0.775896019519639, 0.7743087099018517, 0.776729817038814, 0.7790382729291059, 0.7812440962019498, 0.7840965122991578, 0.7868324702226462, 0.790047543272952, 0.7929826750060335, 0.7946565385529079, 0.796206294136225, 0.7955067520351479, 0.7948523741015445, 0.8011539424069896, 0.807095219040994, 0.8136531197119701, 0.8198745663071109, 0.8202401036353644, 0.8205738130705763, 0.8208807959927493, 0.828430166458295, 0.8354584622164946, 0.8372393974217929, 0.8389123288958596, 0.8404896106446865, 0.8450234241355936, 0.8493246296465048, 0.8297894977175432, null, null, null, null], "CauzziEtAl2014": [0.8227964012485014, 0.8511727469660871, 0.8522195907509933, 0.8511643031364848, 0.8502009010251153, 0.849314656993124, 0.8484941231811982, 0.8477302244778377, 0.844245105878018, 0.8409713401738255, 0.8378847517658702, 0.8349650895987134, 0.832195221136202, 0.8257570491113541, 0.8198794585504274, 0.8170632016931386, 0.8169522037957349, 0.8168488672254801, 0.8224839554274542, 0.8277773071362535, 0.8312046299407523, 0.832924896120847, 0.8345569037869973, 0.8347880057508652, 0.8350083548141528, 0.8381071614360578, 0.8439015220480752, 0.8494593110549161, 0.8620985209858882, 0.8659787163104777, 0.8690536448522258, 0.8649731696879183, 0.8607944161115274, 0.8564544999373845, 0.8585000380163414, 0.8639075295473256, 0.8639996869785381, 0.8640808992911826, 0.8676581859365654, 0.8653514794289309, 0.8659400099950524, 0.8658508848376814, 0.8637958249184655, 0.8606244209148295, 0.854686846727022, 0.8502168157395237, 0.8469379501245717, 0.8471602031577969, 0.8388582348773796, 0.8329785027146948, 0.8235861763604481, 0.8043912561154009, 0.7772100228597301], "DerrasEtAl2014": [0.7480035478517366, 0.7562896733768881, 0.7717061638741622, 0.7799919911635539, 0.7780012184339148, 0.7768452564218975, 0.7799919911635539, 0.7768452564218975, 0.7717061638741622, 0.7697146252705663, 0.7665672007584541, 0.7582815111034834, 0.7551355809244937, 0.7551355809244937, 0.7511511145682411, 0.7480035478517366, 0.7417112320434819, 0.7417112320434819, 0.7499961841469494, 0.7551355809244937, 0.7582815111034834, 0.7614283696954255, 0.7582815111034834, 0.7562896733768881, 0.7531424628511735, 0.7531424628511735, 0.7551355809244937, 0.7531424628511735, 0.7582815111034834, 0.7614283696954255, 0.7634206899176481, 0.7634206899176481, 0.7645761452367758, 0.7634206899176481, 0.7582815111034834, 0.7614283696954255, 0.7665672007584541, 0.7717061638741622, 0.7799919911635539, 0.7902698805645967, 0.7965646616362811, 0.811980441655112, 0.8202666515897504, 0.8254052987450918, 0.8325365697570533, 0.8408219808864074, 0.8491077178141273, 0.8479549021314452, 0.8676713813383503, null, null, null, null], "AbrahamsonEtAl2014": [0.8041969263234825, 0.8067979400395642, 0.8081874126473875, 0.8062537413486323, 0.8046049877961817, 0.8031710972018679, 0.8009495390710599, 0.798884221899519, 0.7966183383590625, 0.7944929973584522, 0.7924919714725388, 0.790601682531329, 0.7888106553539955, 0.784529262725761, 0.7806320392049876, 0.7762369207582485, 0.7713933950760508, 0.7669002542703973, 0.7630062674036797, 0.7593594596585487, 0.7559310866201654, 0.7526971143177137, 0.7496372456061666, 0.7479351294200943, 0.7463145610751685, 0.7447681999425069, 0.7432896499675604, 0.7418733045473466, 0.7387858032330508, 0.7359747713182934, 0.7333953831950177, 0.7310128641902786, 0.7287996981338561, 0.728114103265923, 0.7274705056043578, 0.7268640789719145, 0.726290782951636, 0.7257472011658053, 0.7236001586620207, 0.7216441121935048, 0.7198481653023334, 0.7181883405081413, 0.716645658606818, 0.7153763442995822, 0.714185562531974, 0.7130642508590964, 0.7120048260365326, 0.7110008790430571, 0.7039005611590319, 0.6905977341160064, 0.6836755443922211, 0.669292350172927, 0.6660960891643186], "BooreEtAl2014": [0.7928218589317528, 0.7968640097281342, 0.7701444669670751, 0.7635561537961697, 0.756481658733376, 0.7496402470518776, 0.7361706663539372, 0.7298309735822398, 0.7241161854288302, 0.718805432645024, 0.7140087534477432, 0.7088529466680659, 0.7051434251271156, 0.7014844973340466, 0.6978785710995861, 0.6918657745545735, 0.6894349135342654, 0.6852298884316125, 0.6845832673970348, 0.6832505031099502, 0.6809937591490836, 0.679856602527327, 0.6791557258832468, 0.6789103401775525, 0.6791100794422064, 0.6811115914444563, 0.6822618632167563, 0.6847904789057745, 0.6871471821960707, 0.6897871048374273, 0.6925272557813158, 0.6987259834870891, 0.7017723990012715, 0.7049113419430844, 0.7070291719582721, 0.7089677355141064, 0.7102958890490639, 0.710862152600629, 0.7114831340235691, 0.7118716527577145, 0.7121351697536079, 0.7120242271159037, 0.7124607006705704, 0.7126227964358143, 0.7133067362642806, 0.7138017932171368, 0.7150000000000001, 0.7159010057263504, 0.7255291172654617, 0.7284825076529888, 0.7201022496840291, 0.6934113137236801, 0.6648443426848122], "ChiouYoungs2014": [0.7812831083878906, 0.7927415396549617, 0.8009361225002816, 0.8036100787630885, 0.8060487499339721, 0.8081759438591604, 0.8101448820139935, 0.8119777218496622, 0.8136304956425332, 0.8151824785943007, 0.8165308238886287, 0.8178045080328225, 0.8190112896997538, 0.8209917874652012, 0.8227917943527521, 0.8243604576920862, 0.8257282355066383, 0.8269956945581254, 0.8281263667825087, 0.8291834681092632, 0.8301760072980049, 0.8311114516093026, 0.8319960587602142, 0.8325660793715413, 0.8331071447215984, 0.8336220560198381, 0.8341132523330889, 0.8345828496333425, 0.8315314898162937, 0.8287468571807688, 0.8261872881317095, 0.8238200598625868, 0.8216190225598662, 0.8173051382757365, 0.8132643597719323, 0.8094651951522039, 0.8058812582790453, 0.8024902260833305, 0.7947421129221935, 0.7877100169297626, 0.7812769357475251, 0.7753521874842366, 0.7698640781159545, 0.7676920218927208, 0.7656557892705401, 0.7637395741617798, 0.7619301892795842, 0.7602165307674432, 0.7549981732301145, 0.7512620088474407, 0.7481686875297576, 0.742643458868386, 0.7387330586889963], "CampbellBozorgnia2014": [0.7818983422685152, 0.7975958804698664, 0.784144211466629, 0.7779692456813811, 0.772483694281625, 0.7675671702098249, 0.7631273617134912, 0.7590920329852775, 0.7544853720348949, 0.7502775032187353, 0.7463399676168387, 0.7423458066201155, 0.7386301510228243, 0.7320210964857752, 0.7259907554703863, 0.7229595768053693, 0.7225884330401822, 0.7222577448529022, 0.720058470226781, 0.7179951164910406, 0.7160520144041415, 0.7142160503951647, 0.7124761399513669, 0.7126414380451696, 0.7128078319676622, 0.7129748366015094, 0.7131420611012109, 0.7133091896225646, 0.7157985910869645, 0.7183025434920838, 0.7207988856977868, 0.7232732561573155, 0.7257163702163538, 0.7266140187546833, 0.7275430700698667, 0.7284948717899241, 0.7294627040226861, 0.7304413049657035, 0.7292440578122104, 0.7283033448175189, 0.7275668368218208, 0.7269953691657542, 0.7265590134324947, 0.724385322359956, 0.7223492043879041, 0.7204346470830101, 0.7186282645557034, 0.716918754113742, 0.7179683140640679, 0.7145751384976864, 0.7107802051267326, 0.6945376159719501, 0.6681077757368192], "KothaEtAl2016Italy": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Other": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Turkey": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "ZhaoEtAl2016Asc": [0.7278021709228408, 0.7771923607729061, 0.7889746510503364, 0.7888959212336364, 0.7890614678211072, 0.7851281052125924, 0.7816425014032949, 0.7779203044014215, 0.7731086598919974, 0.7761173983202411, 0.7789736837660179, 0.7791911134846302, 0.7795800151363553, 0.7766382892032334, 0.7740180644188175, 0.7720311021061312, 0.7705648785799881, 0.7692073842599275, 0.766046367881938, 0.7631174300150125, 0.7612176286655891, 0.7602584084081757, 0.7593800102715372, 0.7578610029858904, 0.7564140577504519, 0.7557303288152079, 0.755759754366926, 0.7557889917166034, 0.7583354500048901, 0.7606608968522045, 0.7631020746294933, 0.7653757247260983, 0.7691875558842282, 0.7727612826740222, 0.7743360885814617, 0.7758382563395544, 0.7755282571597322, 0.7752418977325723, 0.7735036933590107, 0.7719507714502052, 0.7702744781684243, 0.768462553483211, 0.7667757168820619, 0.7601190589317046, 0.7538661239670975, 0.7479707310064135, 0.7423941959549901, 0.7371037918773719, 0.6935776813018135, 0.6711784838363779, 0.6674346409949068, null, null], "BindiEtAl2017Rjb": [0.8956331632638443, 0.9102791622310158, 0.8915155151364446, 0.8806585598045363, 0.8721652361020817, 0.8619419154403619, 0.8550128842654946, 0.8491152000035095, 0.8447656795449257, 0.8366782265626375, 0.8275006067816506, 0.8172995224775309, 0.8080404663938557, 0.7924747477522548, 0.7795574303237702, 0.7710831262483961, 0.769626786282806, 0.76591816967415, 0.7607563726975937, 0.7551967045809985, 0.754068674194201, 0.7529532354190398, 0.753290637075757, 0.7502801781021541, 0.7481368979070608, 0.7452829309228811, 0.744935586376433, 0.7429570035129893, 0.7427907895019971, 0.749116576052753, 0.752806138934188, 0.7550676921627624, 0.7578875529852697, 0.7608282259360519, 0.7662748560588426, 0.7730108730438402, 0.7813574041608615, 0.7846822749227867, 0.789886878445262, 0.7944460849485006, 0.8013772027584762, 0.8038704516730292, 0.8107071945782892, 0.81029164015927, 0.8135451438297693, 0.8173261525859796, 0.8122649177017311, 0.8089673416900092, 0.7905637556402394, null, null, null, null]}}, {"ylabel": "Sa (g)", "magnitude": 5.0, "distance": 50.0, "row": 1, "column": 2, "yvalues": {"AkkarBommer2010": [0.6844817131851617, 0.6837362987816263, 0.683207418845582, 0.68672541913679, 0.6899371017735907, 0.6928915634006979, 0.6956269676162063, 0.6981735680158769, 0.6976000490734018, 0.6970613108380154, 0.6965533749187963, 0.6960729087565891, 0.6956170929827741, 0.6971778901534045, 0.6986027863323532, 0.7005012687446854, 0.7028253341764217, 0.7049889873300449, 0.7148224968535273, 0.7240596591789342, 0.7299358053141418, 0.732736803570049, 0.735394096191045, 0.7396101101089319, 0.7436299578941521, 0.7480893213112024, 0.7529640884143824, 0.7576398289888938, 0.7653446494262519, 0.766693379434133, 0.777923934283979, 0.7812641010612377, 0.7776172138314966, 0.7663280282574274, 0.7598439394252159, 0.7570802432466689, 0.752561463750785, 0.7489709391989503, 0.7433871979794608, 0.7409032244431811, 0.7378155982911665, 0.7422539024380507, 0.7359252519151268, 0.7357897954392761, 0.7435592056910777, 0.7473398109449241, 0.7490163484795692, 0.7561064684979164, 0.7794038310516823, null, null, null, null], "CauzziFaccioli2008": [0.8219379128089427, 0.8393387142592592, 0.8516847793668235, 0.8518298896882702, 0.8519623650325663, 0.8520842305359557, 0.8521970603688558, 0.8523021024302553, 0.8540729263581883, 0.85573635974715, 0.8573046864631392, 0.8587881962717722, 0.8601955943875482, 0.8525571104939933, 0.8455837210506426, 0.8381755704576738, 0.8303595392994786, 0.8230829883756888, 0.8232713592759195, 0.8234483065375926, 0.8233005200716469, 0.8228544967873165, 0.8224313567943714, 0.8196750153732449, 0.8170469232528611, 0.8178450428198889, 0.8218488981437654, 0.8256892844424486, 0.8260503297850302, 0.8211780597282549, 0.817439812829779, 0.8174315235234442, 0.8120846906790027, 0.8051021013844982, 0.8068610461370364, 0.8163400981893651, 0.8162896715758283, 0.8194244109214306, 0.8192920122785835, 0.8136785400803733, 0.8135348587705703, 0.8118129856380293, 0.8051582844607673, 0.7942350510381128, 0.7824361445045926, 0.7735861586996702, 0.7667493230415523, 0.7595645667758829, 0.6982775803896976, 0.6704283771676394, 0.6462004738584699, 0.6007518190344441, 0.5626092667104884], "ChiouYoungs2008": [0.7156796422351691, 0.725055627653008, 0.7276934507803483, 0.7276007879061173, 0.7275277463077336, 0.727470337028929, 0.727425573910729, 0.7273911746106073, 0.7265105375789982, 0.725691152634204, 0.7249256052375272, 0.7242077256039395, 0.7235323270781562, 0.7218393212320531, 0.7203023634532593, 0.7183712910265492, 0.7160855911306854, 0.7139648906716479, 0.7119422800692328, 0.7100426208715207, 0.7082519054990627, 0.7065583882293442, 0.704952123352518, 0.7037796902650445, 0.7026617816062549, 0.701593581866851, 0.7005708855536602, 0.6995899983770963, 0.6980740191094841, 0.6966982512522484, 0.6954398654321807, 0.6942811325507302, 0.6932080163620785, 0.6938467077295538, 0.6944619656782897, 0.6950556148075608, 0.6956292720157122, 0.6961843761905233, 0.6962105491488263, 0.6962690210787966, 0.6963519317556104, 0.6964535479522611, 0.6965695975272359, 0.6988334524427382, 0.7009963352573734, 0.7030674337036616, 0.7050547156314186, 0.7069651412316466, 0.7267466331562703, 0.7494076210114984, 0.7678369358138484, 0.7844703894985458, 0.7989714462983017], "ZhaoEtAl2006Asc": [0.7182450835195463, 0.7506639297268827, 0.773692445355388, 0.7742426949440069, 0.7747562131314576, 0.7752380083676326, 0.7756921005392341, 0.7761217687966238, 0.7722802122118468, 0.7686816302832236, 0.7652978000089461, 0.7621051205205831, 0.7590836581036374, 0.7527411427191135, 0.7469669808073841, 0.7420715684469914, 0.737937653530582, 0.7340980860893183, 0.7361369393640627, 0.7381859520934553, 0.7402355419892188, 0.742278578508789, 0.7443097473498517, 0.742335679184848, 0.7404545736561577, 0.738658122565803, 0.7369390821527303, 0.7352910988173323, 0.7379520988250339, 0.740412047443854, 0.7404445155327583, 0.740476198131986, 0.7394343405313084, 0.7384747795287256, 0.7392130426477722, 0.739941213881211, 0.7393596516299581, 0.7388457213789629, 0.7351693539973224, 0.7319349648403927, 0.7305923515994256, 0.7308572357662626, 0.731116953708502, 0.7299943092840001, 0.7289730120917091, 0.7280397460331555, 0.7271835291354093, 0.7263952092353033, 0.722615388709651, 0.7022345940403416, 0.6993382586416962, null, null], "AkkarEtAlRjb2014": [0.7514019230744622, 0.7618002165922506, 0.7812130887280371, 0.7843878186203557, 0.7872884350731948, 0.7888397175599109, 0.7880527203176194, 0.7832053689805758, 0.7820091303814809, 0.7802584764038133, 0.7777611201390823, 0.7722903145838357, 0.7675740290030663, 0.7659554099293248, 0.7656047609569836, 0.763642691315775, 0.7585720071291848, 0.7622903449473829, 0.7695561837838741, 0.7700516995630878, 0.7731754005398775, 0.7773430967082682, 0.7781211538057553, 0.7743934142281944, 0.7716211635252107, 0.7700825020736414, 0.7677765560369761, 0.7653403491257991, 0.7721667501259039, 0.7774348847331203, 0.7826651902314297, 0.7869856478996297, 0.7863039170702382, 0.7803674262807232, 0.7799564731444953, 0.782871892457508, 0.7834978621540712, 0.7849243148227731, 0.7890588064269988, 0.7979061912280165, 0.7981296761805065, 0.8073204877866038, 0.8108963990547745, 0.8147434749662007, 0.8129160596273148, 0.8136103551455082, 0.8174336731503052, 0.8150865291488997, 0.8082581580163606, null, null, null, null], "BindiEtAl2014Rjb": [0.767508805710641, 0.7836029248110283, 0.7975671219261845, 0.7951428431878028, 0.7929296500990229, 0.7908937098167379, 0.789008723537143, 0.7872538432946641, 0.7839643806847408, 0.7808744055320594, 0.7779610994653116, 0.7752053483316296, 0.7725909814224782, 0.7747507465976511, 0.7767224577228621, 0.7785362561325888, 0.7768990288937333, 0.7753748067999079, 0.776151571674347, 0.7768812301158964, 0.7775691703935314, 0.775896019519639, 0.7743087099018517, 0.776729817038814, 0.7790382729291059, 0.7812440962019498, 0.7840965122991578, 0.7868324702226462, 0.790047543272952, 0.7929826750060335, 0.7946565385529079, 0.796206294136225, 0.7955067520351479, 0.7948523741015445, 0.8011539424069896, 0.807095219040994, 0.8136531197119701, 0.8198745663071109, 0.8202401036353644, 0.8205738130705763, 0.8208807959927493, 0.828430166458295, 0.8354584622164946, 0.8372393974217929, 0.8389123288958596, 0.8404896106446865, 0.8450234241355936, 0.8493246296465048, 0.8297894977175432, null, null, null, null], "CauzziEtAl2014": [0.8227964012485014, 0.8511727469660871, 0.8522195907509933, 0.8511643031364848, 0.8502009010251153, 0.849314656993124, 0.8484941231811982, 0.8477302244778377, 0.844245105878018, 0.8409713401738255, 0.8378847517658702, 0.8349650895987134, 0.832195221136202, 0.8257570491113541, 0.8198794585504274, 0.8170632016931386, 0.8169522037957349, 0.8168488672254801, 0.8224839554274542, 0.8277773071362535, 0.8312046299407523, 0.832924896120847, 0.8345569037869973, 0.8347880057508652, 0.8350083548141528, 0.8381071614360578, 0.8439015220480752, 0.8494593110549161, 0.8620985209858882, 0.8659787163104777, 0.8690536448522258, 0.8649731696879183, 0.8607944161115274, 0.8564544999373845, 0.8585000380163414, 0.8639075295473256, 0.8639996869785381, 0.8640808992911826, 0.8676581859365654, 0.8653514794289309, 0.8659400099950524, 0.8658508848376814, 0.8637958249184655, 0.8606244209148295, 0.854686846727022, 0.8502168157395237, 0.8469379501245717, 0.8471602031577969, 0.8388582348773796, 0.8329785027146948, 0.8235861763604481, 0.8043912561154009, 0.7772100228597301], "DerrasEtAl2014": [0.7480035478517366, 0.7562896733768881, 0.7717061638741622, 0.7799919911635539, 0.7780012184339148, 0.7768452564218975, 0.7799919911635539, 0.7768452564218975, 0.7717061638741622, 0.7697146252705663, 0.7665672007584541, 0.7582815111034834, 0.7551355809244937, 0.7551355809244937, 0.7511511145682411, 0.7480035478517366, 0.7417112320434819, 0.7417112320434819, 0.7499961841469494, 0.7551355809244937, 0.7582815111034834, 0.7614283696954255, 0.7582815111034834, 0.7562896733768881, 0.7531424628511735, 0.7531424628511735, 0.7551355809244937, 0.7531424628511735, 0.7582815111034834, 0.7614283696954255, 0.7634206899176481, 0.7634206899176481, 0.7645761452367758, 0.7634206899176481, 0.7582815111034834, 0.7614283696954255, 0.7665672007584541, 0.7717061638741622, 0.7799919911635539, 0.7902698805645967, 0.7965646616362811, 0.811980441655112, 0.8202666515897504, 0.8254052987450918, 0.8325365697570533, 0.8408219808864074, 0.8491077178141273, 0.8479549021314452, 0.8676713813383503, null, null, null, null], "AbrahamsonEtAl2014": [0.8056694380170641, 0.8093767274645854, 0.8103473701646943, 0.8077098003507146, 0.8053338227325451, 0.8031710972018679, 0.8009495390710599, 0.798884221899519, 0.7966183383590625, 0.7944929973584522, 0.7924919714725388, 0.790601682531329, 0.7888106553539955, 0.784529262725761, 0.7806320392049876, 0.7762369207582485, 0.7713933950760508, 0.7669002542703973, 0.7630062674036797, 0.7593594596585487, 0.7559310866201654, 0.7526971143177137, 0.7496372456061666, 0.7479351294200943, 0.7463145610751685, 0.7447681999425069, 0.7432896499675604, 0.7418733045473466, 0.7387858032330508, 0.7359747713182934, 0.7333953831950177, 0.7310128641902786, 0.7287996981338561, 0.728114103265923, 0.7274705056043578, 0.7268640789719145, 0.726290782951636, 0.7257472011658053, 0.7236001586620207, 0.7216441121935048, 0.7198481653023334, 0.7181883405081413, 0.716645658606818, 0.7153763442995822, 0.714185562531974, 0.7130642508590964, 0.7120048260365326, 0.7110008790430571, 0.7039005611590319, 0.6905977341160064, 0.6836755443922211, 0.669292350172927, 0.6660960891643186], "BooreEtAl2014": [0.7928218589317528, 0.7968640097281342, 0.7701444669670751, 0.7635561537961697, 0.756481658733376, 0.7496402470518776, 0.7361706663539372, 0.7298309735822398, 0.7241161854288302, 0.718805432645024, 0.7140087534477432, 0.7088529466680659, 0.7051434251271156, 0.7014844973340466, 0.6978785710995861, 0.6918657745545735, 0.6894349135342654, 0.6852298884316125, 0.6845832673970348, 0.6832505031099502, 0.6809937591490836, 0.679856602527327, 0.6791557258832468, 0.6789103401775525, 0.6791100794422064, 0.6811115914444563, 0.6822618632167563, 0.6847904789057745, 0.6871471821960707, 0.6897871048374273, 0.6925272557813158, 0.6987259834870891, 0.7017723990012715, 0.7049113419430844, 0.7070291719582721, 0.7089677355141064, 0.7102958890490639, 0.710862152600629, 0.7114831340235691, 0.7118716527577145, 0.7121351697536079, 0.7120242271159037, 0.7124607006705704, 0.7126227964358143, 0.7133067362642806, 0.7138017932171368, 0.7150000000000001, 0.7159010057263504, 0.7255291172654617, 0.7284825076529888, 0.7201022496840291, 0.6934113137236801, 0.6648443426848122], "ChiouYoungs2014": [0.7818294278770165, 0.7937706315745685, 0.8021376932138481, 0.8047980510556401, 0.8072257776969444, 0.8093265370493116, 0.8112713119096376, 0.8130818447863873, 0.8146957215588126, 0.8162117631148413, 0.8175112351673263, 0.8187401782023676, 0.8199058386114652, 0.8217955068963287, 0.8235190280975832, 0.8250177603860872, 0.8263215680799039, 0.8275340879011412, 0.8286137186430413, 0.8296266844453716, 0.8305807513985296, 0.8314824074014189, 0.8323371281369801, 0.83287958115171, 0.8333961968688638, 0.8338893204271114, 0.8343610100003841, 0.8348130654890542, 0.8317190005768352, 0.8289016892199192, 0.8263166067801826, 0.8239291090703696, 0.8217117192697321, 0.8173851202192799, 0.8133338579859608, 0.8095259608133151, 0.8059346824401203, 0.8025374255580412, 0.7947850559972928, 0.7877494319173332, 0.7813134175244674, 0.7753862356188775, 0.7698961268866215, 0.7677296827173876, 0.7656994846401373, 0.7637896846422507, 0.7619870403578397, 0.7602803780151239, 0.7550497589548463, 0.7512681190587787, 0.7481686875297576, 0.742643458868386, 0.7387330586889963], "CampbellBozorgnia2014": [0.784229754122003, 0.8002683891614508, 0.7865249649203105, 0.780063853594398, 0.77428887596157, 0.7690826295792447, 0.7643547824528145, 0.7600344175693583, 0.7550897570508724, 0.7505486433078732, 0.7463399676168387, 0.7423458066201155, 0.7386301510228243, 0.7320210964857752, 0.7259907554703863, 0.7229595768053693, 0.7225884330401822, 0.7222577448529022, 0.720058470226781, 0.7179951164910406, 0.7160520144041415, 0.7142160503951647, 0.7124761399513669, 0.7126414380451696, 0.7128078319676622, 0.7129748366015094, 0.7131420611012109, 0.7133091896225646, 0.7157985910869645, 0.7183025434920838, 0.7207988856977868, 0.7232732561573155, 0.7257163702163538, 0.7266140187546833, 0.7275430700698667, 0.7284948717899241, 0.7294627040226861, 0.7304413049657035, 0.7292440578122104, 0.7283033448175189, 0.7275668368218208, 0.7269953691657542, 0.7265590134324947, 0.724385322359956, 0.7223492043879041, 0.7204346470830101, 0.7186282645557034, 0.716918754113742, 0.7179683140640679, 0.7145751384976864, 0.7107802051267326, 0.6945376159719501, 0.6681077757368192], "KothaEtAl2016Italy": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Other": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Turkey": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "ZhaoEtAl2016Asc": [0.7278021709228408, 0.7771923607729061, 0.7889746510503364, 0.7888959212336364, 0.7890614678211072, 0.7851281052125924, 0.7816425014032949, 0.7779203044014215, 0.7731086598919974, 0.7761173983202411, 0.7789736837660179, 0.7791911134846302, 0.7795800151363553, 0.7766382892032334, 0.7740180644188175, 0.7720311021061312, 0.7705648785799881, 0.7692073842599275, 0.766046367881938, 0.7631174300150125, 0.7612176286655891, 0.7602584084081757, 0.7593800102715372, 0.7578610029858904, 0.7564140577504519, 0.7557303288152079, 0.755759754366926, 0.7557889917166034, 0.7583354500048901, 0.7606608968522045, 0.7631020746294933, 0.7653757247260983, 0.7691875558842282, 0.7727612826740222, 0.7743360885814617, 0.7758382563395544, 0.7755282571597322, 0.7752418977325723, 0.7735036933590107, 0.7719507714502052, 0.7702744781684243, 0.768462553483211, 0.7667757168820619, 0.7601190589317046, 0.7538661239670975, 0.7479707310064135, 0.7423941959549901, 0.7371037918773719, 0.6935776813018135, 0.6711784838363779, 0.6674346409949068, null, null], "BindiEtAl2017Rjb": [0.8956331632638443, 0.9102791622310158, 0.8915155151364446, 0.8806585598045363, 0.8721652361020817, 0.8619419154403619, 0.8550128842654946, 0.8491152000035095, 0.8447656795449257, 0.8366782265626375, 0.8275006067816506, 0.8172995224775309, 0.8080404663938557, 0.7924747477522548, 0.7795574303237702, 0.7710831262483961, 0.769626786282806, 0.76591816967415, 0.7607563726975937, 0.7551967045809985, 0.754068674194201, 0.7529532354190398, 0.753290637075757, 0.7502801781021541, 0.7481368979070608, 0.7452829309228811, 0.744935586376433, 0.7429570035129893, 0.7427907895019971, 0.749116576052753, 0.752806138934188, 0.7550676921627624, 0.7578875529852697, 0.7608282259360519, 0.7662748560588426, 0.7730108730438402, 0.7813574041608615, 0.7846822749227867, 0.789886878445262, 0.7944460849485006, 0.8013772027584762, 0.8038704516730292, 0.8107071945782892, 0.81029164015927, 0.8135451438297693, 0.8173261525859796, 0.8122649177017311, 0.8089673416900092, 0.7905637556402394, null, null, null, null]}}, {"ylabel": "Sa (g)", "magnitude": 5.0, "distance": 150.0, "row": 1, "column": 3, "yvalues": {"AkkarBommer2010": [0.6844817131851617, 0.6837362987816263, 0.683207418845582, 0.68672541913679, 0.6899371017735907, 0.6928915634006979, 0.6956269676162063, 0.6981735680158769, 0.6976000490734018, 0.6970613108380154, 0.6965533749187963, 0.6960729087565891, 0.6956170929827741, 0.6971778901534045, 0.6986027863323532, 0.7005012687446854, 0.7028253341764217, 0.7049889873300449, 0.7148224968535273, 0.7240596591789342, 0.7299358053141418, 0.732736803570049, 0.735394096191045, 0.7396101101089319, 0.7436299578941521, 0.7480893213112024, 0.7529640884143824, 0.7576398289888938, 0.7653446494262519, 0.766693379434133, 0.777923934283979, 0.7812641010612377, 0.7776172138314966, 0.7663280282574274, 0.7598439394252159, 0.7570802432466689, 0.752561463750785, 0.7489709391989503, 0.7433871979794608, 0.7409032244431811, 0.7378155982911665, 0.7422539024380507, 0.7359252519151268, 0.7357897954392761, 0.7435592056910777, 0.7473398109449241, 0.7490163484795692, 0.7561064684979164, 0.7794038310516823, null, null, null, null], "CauzziFaccioli2008": [0.8219379128089427, 0.8393387142592592, 0.8516847793668235, 0.8518298896882702, 0.8519623650325663, 0.8520842305359557, 0.8521970603688558, 0.8523021024302553, 0.8540729263581883, 0.85573635974715, 0.8573046864631392, 0.8587881962717722, 0.8601955943875482, 0.8525571104939933, 0.8455837210506426, 0.8381755704576738, 0.8303595392994786, 0.8230829883756888, 0.8232713592759195, 0.8234483065375926, 0.8233005200716469, 0.8228544967873165, 0.8224313567943714, 0.8196750153732449, 0.8170469232528611, 0.8178450428198889, 0.8218488981437654, 0.8256892844424486, 0.8260503297850302, 0.8211780597282549, 0.817439812829779, 0.8174315235234442, 0.8120846906790027, 0.8051021013844982, 0.8068610461370364, 0.8163400981893651, 0.8162896715758283, 0.8194244109214306, 0.8192920122785835, 0.8136785400803733, 0.8135348587705703, 0.8118129856380293, 0.8051582844607673, 0.7942350510381128, 0.7824361445045926, 0.7735861586996702, 0.7667493230415523, 0.7595645667758829, 0.6982775803896976, 0.6704283771676394, 0.6462004738584699, 0.6007518190344441, 0.5626092667104884], "ChiouYoungs2008": [0.7158674695833699, 0.725387602352677, 0.7280740410258542, 0.7279727418740182, 0.7278920766452294, 0.7278278355876651, 0.7277768747328555, 0.7277367956131052, 0.7268411819502562, 0.7260080449918842, 0.7252298108085213, 0.7245001785531926, 0.7238138525921738, 0.7220940071693256, 0.7205341724492514, 0.7185814177187128, 0.7162753161292107, 0.7141370394878254, 0.7120977333080085, 0.7101836248082859, 0.7083803181274528, 0.7066757617866525, 0.7050597661431786, 0.7038783377660482, 0.7027524587248578, 0.7016771664305504, 0.700648133991528, 0.6996615661401927, 0.6981324286298922, 0.696746526493147, 0.6954801965462195, 0.6943151409525098, 0.6932369250751871, 0.6938720350117629, 0.6944842807526106, 0.6950753749530328, 0.695646848376444, 0.6962000727565755, 0.6962251319738308, 0.696282660919717, 0.6963647761467862, 0.6964657283628727, 0.6965812358992867, 0.6988471736273106, 0.7010123057761235, 0.7030858066422255, 0.705075626223124, 0.7069887019618033, 0.7267654175827964, 0.7494098783922338, 0.7678369358138484, 0.7844703894985458, 0.7989714462983017], "ZhaoEtAl2006Asc": [0.7182450835195463, 0.7506639297268827, 0.773692445355388, 0.7742426949440069, 0.7747562131314576, 0.7752380083676326, 0.7756921005392341, 0.7761217687966238, 0.7722802122118468, 0.7686816302832236, 0.7652978000089461, 0.7621051205205831, 0.7590836581036374, 0.7527411427191135, 0.7469669808073841, 0.7420715684469914, 0.737937653530582, 0.7340980860893183, 0.7361369393640627, 0.7381859520934553, 0.7402355419892188, 0.742278578508789, 0.7443097473498517, 0.742335679184848, 0.7404545736561577, 0.738658122565803, 0.7369390821527303, 0.7352910988173323, 0.7379520988250339, 0.740412047443854, 0.7404445155327583, 0.740476198131986, 0.7394343405313084, 0.7384747795287256, 0.7392130426477722, 0.739941213881211, 0.7393596516299581, 0.7388457213789629, 0.7351693539973224, 0.7319349648403927, 0.7305923515994256, 0.7308572357662626, 0.731116953708502, 0.7299943092840001, 0.7289730120917091, 0.7280397460331555, 0.7271835291354093, 0.7263952092353033, 0.722615388709651, 0.7022345940403416, 0.6993382586416962, null, null], "AkkarEtAlRjb2014": [0.7514019230744622, 0.7618002165922506, 0.7812130887280371, 0.7843878186203557, 0.7872884350731948, 0.7888397175599109, 0.7880527203176194, 0.7832053689805758, 0.7820091303814809, 0.7802584764038133, 0.7777611201390823, 0.7722903145838357, 0.7675740290030663, 0.7659554099293248, 0.7656047609569836, 0.763642691315775, 0.7585720071291848, 0.7622903449473829, 0.7695561837838741, 0.7700516995630878, 0.7731754005398775, 0.7773430967082682, 0.7781211538057553, 0.7743934142281944, 0.7716211635252107, 0.7700825020736414, 0.7677765560369761, 0.7653403491257991, 0.7721667501259039, 0.7774348847331203, 0.7826651902314297, 0.7869856478996297, 0.7863039170702382, 0.7803674262807232, 0.7799564731444953, 0.782871892457508, 0.7834978621540712, 0.7849243148227731, 0.7890588064269988, 0.7979061912280165, 0.7981296761805065, 0.8073204877866038, 0.8108963990547745, 0.8147434749662007, 0.8129160596273148, 0.8136103551455082, 0.8174336731503052, 0.8150865291488997, 0.8082581580163606, null, null, null, null], "BindiEtAl2014Rjb": [0.767508805710641, 0.7836029248110283, 0.7975671219261845, 0.7951428431878028, 0.7929296500990229, 0.7908937098167379, 0.789008723537143, 0.7872538432946641, 0.7839643806847408, 0.7808744055320594, 0.7779610994653116, 0.7752053483316296, 0.7725909814224782, 0.7747507465976511, 0.7767224577228621, 0.7785362561325888, 0.7768990288937333, 0.7753748067999079, 0.776151571674347, 0.7768812301158964, 0.7775691703935314, 0.775896019519639, 0.7743087099018517, 0.776729817038814, 0.7790382729291059, 0.7812440962019498, 0.7840965122991578, 0.7868324702226462, 0.790047543272952, 0.7929826750060335, 0.7946565385529079, 0.796206294136225, 0.7955067520351479, 0.7948523741015445, 0.8011539424069896, 0.807095219040994, 0.8136531197119701, 0.8198745663071109, 0.8202401036353644, 0.8205738130705763, 0.8208807959927493, 0.828430166458295, 0.8354584622164946, 0.8372393974217929, 0.8389123288958596, 0.8404896106446865, 0.8450234241355936, 0.8493246296465048, 0.8297894977175432, null, null, null, null], "CauzziEtAl2014": [0.8227964012485014, 0.8511727469660871, 0.8522195907509933, 0.8511643031364848, 0.8502009010251153, 0.849314656993124, 0.8484941231811982, 0.8477302244778377, 0.844245105878018, 0.8409713401738255, 0.8378847517658702, 0.8349650895987134, 0.832195221136202, 0.8257570491113541, 0.8198794585504274, 0.8170632016931386, 0.8169522037957349, 0.8168488672254801, 0.8224839554274542, 0.8277773071362535, 0.8312046299407523, 0.832924896120847, 0.8345569037869973, 0.8347880057508652, 0.8350083548141528, 0.8381071614360578, 0.8439015220480752, 0.8494593110549161, 0.8620985209858882, 0.8659787163104777, 0.8690536448522258, 0.8649731696879183, 0.8607944161115274, 0.8564544999373845, 0.8585000380163414, 0.8639075295473256, 0.8639996869785381, 0.8640808992911826, 0.8676581859365654, 0.8653514794289309, 0.8659400099950524, 0.8658508848376814, 0.8637958249184655, 0.8606244209148295, 0.854686846727022, 0.8502168157395237, 0.8469379501245717, 0.8471602031577969, 0.8388582348773796, 0.8329785027146948, 0.8235861763604481, 0.8043912561154009, 0.7772100228597301], "DerrasEtAl2014": [0.7480035478517366, 0.7562896733768881, 0.7717061638741622, 0.7799919911635539, 0.7780012184339148, 0.7768452564218975, 0.7799919911635539, 0.7768452564218975, 0.7717061638741622, 0.7697146252705663, 0.7665672007584541, 0.7582815111034834, 0.7551355809244937, 0.7551355809244937, 0.7511511145682411, 0.7480035478517366, 0.7417112320434819, 0.7417112320434819, 0.7499961841469494, 0.7551355809244937, 0.7582815111034834, 0.7614283696954255, 0.7582815111034834, 0.7562896733768881, 0.7531424628511735, 0.7531424628511735, 0.7551355809244937, 0.7531424628511735, 0.7582815111034834, 0.7614283696954255, 0.7634206899176481, 0.7634206899176481, 0.7645761452367758, 0.7634206899176481, 0.7582815111034834, 0.7614283696954255, 0.7665672007584541, 0.7717061638741622, 0.7799919911635539, 0.7902698805645967, 0.7965646616362811, 0.811980441655112, 0.8202666515897504, 0.8254052987450918, 0.8325365697570533, 0.8408219808864074, 0.8491077178141273, 0.8479549021314452, 0.8676713813383503, null, null, null, null], "AbrahamsonEtAl2014": [0.8061219653407855, 0.810157309623962, 0.8109923605590293, 0.8081440132939157, 0.8055508620647693, 0.8031710972018679, 0.8009495390710599, 0.798884221899519, 0.7966183383590625, 0.7944929973584522, 0.7924919714725388, 0.790601682531329, 0.7888106553539955, 0.784529262725761, 0.7806320392049876, 0.7762369207582485, 0.7713933950760508, 0.7669002542703973, 0.7630062674036797, 0.7593594596585487, 0.7559310866201654, 0.7526971143177137, 0.7496372456061666, 0.7479351294200943, 0.7463145610751685, 0.7447681999425069, 0.7432896499675604, 0.7418733045473466, 0.7387858032330508, 0.7359747713182934, 0.7333953831950177, 0.7310128641902786, 0.7287996981338561, 0.728114103265923, 0.7274705056043578, 0.7268640789719145, 0.726290782951636, 0.7257472011658053, 0.7236001586620207, 0.7216441121935048, 0.7198481653023334, 0.7181883405081413, 0.716645658606818, 0.7153763442995822, 0.714185562531974, 0.7130642508590964, 0.7120048260365326, 0.7110008790430571, 0.7039005611590319, 0.6905977341160064, 0.6836755443922211, 0.669292350172927, 0.6660960891643186], "BooreEtAl2014": [0.8144377986763554, 0.8222011234665968, 0.8077300068719434, 0.8042093493003107, 0.800154149449141, 0.7958056862525449, 0.7874043576743048, 0.7831458542497413, 0.7791872056932233, 0.7744324442908328, 0.7700794414064907, 0.7652147198136451, 0.7611553343621019, 0.7571246075366027, 0.7531065814299972, 0.7450089916080058, 0.7410964175400617, 0.7343071911015745, 0.7320511460628296, 0.729568580245952, 0.724931956893458, 0.7226124783208465, 0.7207874392669449, 0.7198633565715237, 0.7190943190941324, 0.7197246296670784, 0.7201738046958633, 0.721947893111536, 0.7238094682960261, 0.7254614026215918, 0.7274009127264979, 0.7313872007613509, 0.7329676864053525, 0.7347908151737867, 0.7357740011627938, 0.7362171945424139, 0.736263790307788, 0.7355347233788154, 0.735106977299193, 0.73452638885059, 0.7339305813352826, 0.7330392336160056, 0.7330121401056536, 0.732608259169508, 0.7329694973724996, 0.7332164365576136, 0.7343795123757725, 0.7353162155768478, 0.7501392255475217, 0.7474633125516842, 0.7322729958039352, 0.7035950462294608, 0.6799208169298155], "ChiouYoungs2014": [0.7819958279067662, 0.7940774023500297, 0.8024956240098436, 0.8051534087371953, 0.8075795526550326, 0.8096750544467917, 0.8116150777925139, 0.8134211632318753, 0.8150254198464051, 0.8165324169042225, 0.8178182988971581, 0.8190346732709061, 0.8201886717864852, 0.8220512226371682, 0.823751675728028, 0.8252289794483387, 0.8265129316965194, 0.8277082981816818, 0.8287717163836879, 0.8297706243755197, 0.8307124046844189, 0.831603241837699, 0.8324483684256481, 0.8329818362655097, 0.8334904872049219, 0.8339765205220259, 0.8344418669281709, 0.834888220747741, 0.8317801308819116, 0.8289521252554866, 0.826358715772553, 0.8239646163259268, 0.8217419095735414, 0.8174111191170721, 0.8133564146353786, 0.8095456602304707, 0.8059519873342268, 0.8025527060836187, 0.7947989152923755, 0.7877621251286017, 0.781325150160979, 0.7753971787223312, 0.7699064285687922, 0.7677417677071697, 0.7657134896243541, 0.7638057347336257, 0.762005245409286, 0.7603008285641863, 0.7550662614982602, 0.751270072778962, 0.7481686875297576, 0.742643458868386, 0.7387330586889963], "CampbellBozorgnia2014": [0.7849749777747984, 0.80112334731443, 0.7872860168947922, 0.7807329456241247, 0.774865125213704, 0.7695660887359197, 0.764746120406119, 0.7603347100813769, 0.7552822251616428, 0.7506349369619016, 0.7463399676168387, 0.7423458066201155, 0.7386301510228243, 0.7320210964857752, 0.7259907554703863, 0.7229595768053693, 0.7225884330401822, 0.7222577448529022, 0.720058470226781, 0.7179951164910406, 0.7160520144041415, 0.7142160503951647, 0.7124761399513669, 0.7126414380451696, 0.7128078319676622, 0.7129748366015094, 0.7131420611012109, 0.7133091896225646, 0.7157985910869645, 0.7183025434920838, 0.7207988856977868, 0.7232732561573155, 0.7257163702163538, 0.7266140187546833, 0.7275430700698667, 0.7284948717899241, 0.7294627040226861, 0.7304413049657035, 0.7292440578122104, 0.7283033448175189, 0.7275668368218208, 0.7269953691657542, 0.7265590134324947, 0.724385322359956, 0.7223492043879041, 0.7204346470830101, 0.7186282645557034, 0.716918754113742, 0.7179683140640679, 0.7145751384976864, 0.7107802051267326, 0.6945376159719501, 0.6681077757368192], "KothaEtAl2016Italy": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Other": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Turkey": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "ZhaoEtAl2016Asc": [0.7278021709228408, 0.7771923607729061, 0.7889746510503364, 0.7888959212336364, 0.7890614678211072, 0.7851281052125924, 0.7816425014032949, 0.7779203044014215, 0.7731086598919974, 0.7761173983202411, 0.7789736837660179, 0.7791911134846302, 0.7795800151363553, 0.7766382892032334, 0.7740180644188175, 0.7720311021061312, 0.7705648785799881, 0.7692073842599275, 0.766046367881938, 0.7631174300150125, 0.7612176286655891, 0.7602584084081757, 0.7593800102715372, 0.7578610029858904, 0.7564140577504519, 0.7557303288152079, 0.755759754366926, 0.7557889917166034, 0.7583354500048901, 0.7606608968522045, 0.7631020746294933, 0.7653757247260983, 0.7691875558842282, 0.7727612826740222, 0.7743360885814617, 0.7758382563395544, 0.7755282571597322, 0.7752418977325723, 0.7735036933590107, 0.7719507714502052, 0.7702744781684243, 0.768462553483211, 0.7667757168820619, 0.7601190589317046, 0.7538661239670975, 0.7479707310064135, 0.7423941959549901, 0.7371037918773719, 0.6935776813018135, 0.6711784838363779, 0.6674346409949068, null, null], "BindiEtAl2017Rjb": [0.8956331632638443, 0.9102791622310158, 0.8915155151364446, 0.8806585598045363, 0.8721652361020817, 0.8619419154403619, 0.8550128842654946, 0.8491152000035095, 0.8447656795449257, 0.8366782265626375, 0.8275006067816506, 0.8172995224775309, 0.8080404663938557, 0.7924747477522548, 0.7795574303237702, 0.7710831262483961, 0.769626786282806, 0.76591816967415, 0.7607563726975937, 0.7551967045809985, 0.754068674194201, 0.7529532354190398, 0.753290637075757, 0.7502801781021541, 0.7481368979070608, 0.7452829309228811, 0.744935586376433, 0.7429570035129893, 0.7427907895019971, 0.749116576052753, 0.752806138934188, 0.7550676921627624, 0.7578875529852697, 0.7608282259360519, 0.7662748560588426, 0.7730108730438402, 0.7813574041608615, 0.7846822749227867, 0.789886878445262, 0.7944460849485006, 0.8013772027584762, 0.8038704516730292, 0.8107071945782892, 0.81029164015927, 0.8135451438297693, 0.8173261525859796, 0.8122649177017311, 0.8089673416900092, 0.7905637556402394, null, null, null, null]}}, {"ylabel": "Sa (g)", "magnitude": 6.0, "distance": 5.0, "row": 2, "column": 0, "yvalues": {"AkkarBommer2010": [0.6844817131851617, 0.6837362987816263, 0.683207418845582, 0.68672541913679, 0.6899371017735907, 0.6928915634006979, 0.6956269676162063, 0.6981735680158769, 0.6976000490734018, 0.6970613108380154, 0.6965533749187963, 0.6960729087565891, 0.6956170929827741, 0.6971778901534045, 0.6986027863323532, 0.7005012687446854, 0.7028253341764217, 0.7049889873300449, 0.7148224968535273, 0.7240596591789342, 0.7299358053141418, 0.732736803570049, 0.735394096191045, 0.7396101101089319, 0.7436299578941521, 0.7480893213112024, 0.7529640884143824, 0.7576398289888938, 0.7653446494262519, 0.766693379434133, 0.777923934283979, 0.7812641010612377, 0.7776172138314966, 0.7663280282574274, 0.7598439394252159, 0.7570802432466689, 0.752561463750785, 0.7489709391989503, 0.7433871979794608, 0.7409032244431811, 0.7378155982911665, 0.7422539024380507, 0.7359252519151268, 0.7357897954392761, 0.7435592056910777, 0.7473398109449241, 0.7490163484795692, 0.7561064684979164, 0.7794038310516823, null, null, null, null], "CauzziFaccioli2008": [0.8219379128089427, 0.8393387142592592, 0.8516847793668235, 0.8518298896882702, 0.8519623650325663, 0.8520842305359557, 0.8521970603688558, 0.8523021024302553, 0.8540729263581883, 0.85573635974715, 0.8573046864631392, 0.8587881962717722, 0.8601955943875482, 0.8525571104939933, 0.8455837210506426, 0.8381755704576738, 0.8303595392994786, 0.8230829883756888, 0.8232713592759195, 0.8234483065375926, 0.8233005200716469, 0.8228544967873165, 0.8224313567943714, 0.8196750153732449, 0.8170469232528611, 0.8178450428198889, 0.8218488981437654, 0.8256892844424486, 0.8260503297850302, 0.8211780597282549, 0.817439812829779, 0.8174315235234442, 0.8120846906790027, 0.8051021013844982, 0.8068610461370364, 0.8163400981893651, 0.8162896715758283, 0.8194244109214306, 0.8192920122785835, 0.8136785400803733, 0.8135348587705703, 0.8118129856380293, 0.8051582844607673, 0.7942350510381128, 0.7824361445045926, 0.7735861586996702, 0.7667493230415523, 0.7595645667758829, 0.6982775803896976, 0.6704283771676394, 0.6462004738584699, 0.6007518190344441, 0.5626092667104884], "ChiouYoungs2008": [0.6365386800792627, 0.6450766393493156, 0.6488738247359308, 0.6497729610384823, 0.6506002373561229, 0.6513667051271368, 0.65208101969364, 0.6527500902158571, 0.6529596056538014, 0.6531532439410702, 0.6533332791025672, 0.6535015488501238, 0.653659556185557, 0.6540240655066692, 0.6543318737302545, 0.6542503646617049, 0.6538239698787885, 0.6534121332044441, 0.6532542333498914, 0.653090554849037, 0.6529234832239428, 0.6527547588828206, 0.6525856575104343, 0.6529659146356667, 0.6533215581362255, 0.653655363882925, 0.6539696853313868, 0.6542665325572172, 0.6557813386475345, 0.6571486995138043, 0.6583952790058288, 0.6595411623551184, 0.660601843407292, 0.662929573640509, 0.6651277611157531, 0.6672106300239163, 0.6691901603738315, 0.6710765408141107, 0.6728738471228191, 0.6745559683015516, 0.6761380859392905, 0.6776325072581877, 0.6790493703280489, 0.6820998257061656, 0.6849924823027778, 0.6877432500490965, 0.6903667403555506, 0.6928767005028196, 0.7145015983829359, 0.7387553267864986, 0.757760970392379, 0.7748092115159706, 0.7895849784855333], "ZhaoEtAl2006Asc": [0.7182450835195463, 0.7506639297268827, 0.773692445355388, 0.7742426949440069, 0.7747562131314576, 0.7752380083676326, 0.7756921005392341, 0.7761217687966238, 0.7722802122118468, 0.7686816302832236, 0.7652978000089461, 0.7621051205205831, 0.7590836581036374, 0.7527411427191135, 0.7469669808073841, 0.7420715684469914, 0.737937653530582, 0.7340980860893183, 0.7361369393640627, 0.7381859520934553, 0.7402355419892188, 0.742278578508789, 0.7443097473498517, 0.742335679184848, 0.7404545736561577, 0.738658122565803, 0.7369390821527303, 0.7352910988173323, 0.7379520988250339, 0.740412047443854, 0.7404445155327583, 0.740476198131986, 0.7394343405313084, 0.7384747795287256, 0.7392130426477722, 0.739941213881211, 0.7393596516299581, 0.7388457213789629, 0.7351693539973224, 0.7319349648403927, 0.7305923515994256, 0.7308572357662626, 0.731116953708502, 0.7299943092840001, 0.7289730120917091, 0.7280397460331555, 0.7271835291354093, 0.7263952092353033, 0.722615388709651, 0.7022345940403416, 0.6993382586416962, null, null], "AkkarEtAlRjb2014": [0.7514019230744622, 0.7618002165922506, 0.7812130887280371, 0.7843878186203557, 0.7872884350731948, 0.7888397175599109, 0.7880527203176194, 0.7832053689805758, 0.7820091303814809, 0.7802584764038133, 0.7777611201390823, 0.7722903145838357, 0.7675740290030663, 0.7659554099293248, 0.7656047609569836, 0.763642691315775, 0.7585720071291848, 0.7622903449473829, 0.7695561837838741, 0.7700516995630878, 0.7731754005398775, 0.7773430967082682, 0.7781211538057553, 0.7743934142281944, 0.7716211635252107, 0.7700825020736414, 0.7677765560369761, 0.7653403491257991, 0.7721667501259039, 0.7774348847331203, 0.7826651902314297, 0.7869856478996297, 0.7863039170702382, 0.7803674262807232, 0.7799564731444953, 0.782871892457508, 0.7834978621540712, 0.7849243148227731, 0.7890588064269988, 0.7979061912280165, 0.7981296761805065, 0.8073204877866038, 0.8108963990547745, 0.8147434749662007, 0.8129160596273148, 0.8136103551455082, 0.8174336731503052, 0.8150865291488997, 0.8082581580163606, null, null, null, null], "BindiEtAl2014Rjb": [0.767508805710641, 0.7836029248110283, 0.7975671219261845, 0.7951428431878028, 0.7929296500990229, 0.7908937098167379, 0.789008723537143, 0.7872538432946641, 0.7839643806847408, 0.7808744055320594, 0.7779610994653116, 0.7752053483316296, 0.7725909814224782, 0.7747507465976511, 0.7767224577228621, 0.7785362561325888, 0.7768990288937333, 0.7753748067999079, 0.776151571674347, 0.7768812301158964, 0.7775691703935314, 0.775896019519639, 0.7743087099018517, 0.776729817038814, 0.7790382729291059, 0.7812440962019498, 0.7840965122991578, 0.7868324702226462, 0.790047543272952, 0.7929826750060335, 0.7946565385529079, 0.796206294136225, 0.7955067520351479, 0.7948523741015445, 0.8011539424069896, 0.807095219040994, 0.8136531197119701, 0.8198745663071109, 0.8202401036353644, 0.8205738130705763, 0.8208807959927493, 0.828430166458295, 0.8354584622164946, 0.8372393974217929, 0.8389123288958596, 0.8404896106446865, 0.8450234241355936, 0.8493246296465048, 0.8297894977175432, null, null, null, null], "CauzziEtAl2014": [0.8227964012485014, 0.8511727469660871, 0.8522195907509933, 0.8511643031364848, 0.8502009010251153, 0.849314656993124, 0.8484941231811982, 0.8477302244778377, 0.844245105878018, 0.8409713401738255, 0.8378847517658702, 0.8349650895987134, 0.832195221136202, 0.8257570491113541, 0.8198794585504274, 0.8170632016931386, 0.8169522037957349, 0.8168488672254801, 0.8224839554274542, 0.8277773071362535, 0.8312046299407523, 0.832924896120847, 0.8345569037869973, 0.8347880057508652, 0.8350083548141528, 0.8381071614360578, 0.8439015220480752, 0.8494593110549161, 0.8620985209858882, 0.8659787163104777, 0.8690536448522258, 0.8649731696879183, 0.8607944161115274, 0.8564544999373845, 0.8585000380163414, 0.8639075295473256, 0.8639996869785381, 0.8640808992911826, 0.8676581859365654, 0.8653514794289309, 0.8659400099950524, 0.8658508848376814, 0.8637958249184655, 0.8606244209148295, 0.854686846727022, 0.8502168157395237, 0.8469379501245717, 0.8471602031577969, 0.8388582348773796, 0.8329785027146948, 0.8235861763604481, 0.8043912561154009, 0.7772100228597301], "DerrasEtAl2014": [0.7480035478517366, 0.7562896733768881, 0.7717061638741622, 0.7799919911635539, 0.7780012184339148, 0.7768452564218975, 0.7799919911635539, 0.7768452564218975, 0.7717061638741622, 0.7697146252705663, 0.7665672007584541, 0.7582815111034834, 0.7551355809244937, 0.7551355809244937, 0.7511511145682411, 0.7480035478517366, 0.7417112320434819, 0.7417112320434819, 0.7499961841469494, 0.7551355809244937, 0.7582815111034834, 0.7614283696954255, 0.7582815111034834, 0.7562896733768881, 0.7531424628511735, 0.7531424628511735, 0.7551355809244937, 0.7531424628511735, 0.7582815111034834, 0.7614283696954255, 0.7634206899176481, 0.7634206899176481, 0.7645761452367758, 0.7634206899176481, 0.7582815111034834, 0.7614283696954255, 0.7665672007584541, 0.7717061638741622, 0.7799919911635539, 0.7902698805645967, 0.7965646616362811, 0.811980441655112, 0.8202666515897504, 0.8254052987450918, 0.8325365697570533, 0.8408219808864074, 0.8491077178141273, 0.8479549021314452, 0.8676713813383503, null, null, null, null], "AbrahamsonEtAl2014": [0.6484685352835949, 0.6493441419940075, 0.6563290157911167, 0.6593874451636619, 0.6629062392196627, 0.6667268581807807, 0.6655830825111853, 0.664519375187812, 0.6636436807210286, 0.6628217674658975, 0.6620474483803821, 0.6613155444042412, 0.6606216769074414, 0.6602894047156356, 0.6599861592699597, 0.6608478906059959, 0.6627476126571613, 0.664519375187812, 0.6653958081134694, 0.6662197603387271, 0.6669971954338321, 0.6677331131474143, 0.6684317467026831, 0.6698038629081495, 0.6711137694369091, 0.6723669191701822, 0.6735680754778466, 0.6747214239966003, 0.6776908379653258, 0.6804085379254715, 0.682914273486536, 0.6852390332401535, 0.6874074483157715, 0.6904516224232379, 0.6933181185004319, 0.6960267988170161, 0.698594354689868, 0.7010349492001093, 0.7031205652077677, 0.7050274766872244, 0.7067840840128138, 0.7084124994226925, 0.7099302782668168, 0.7119339315576076, 0.7138187224621422, 0.7155980813317264, 0.7172832768505959, 0.7188838571007141, 0.7099302782668168, 0.7010376577190217, 0.7034550447612129, 0.7091191719309244, 0.7172516991963142], "BooreEtAl2014": [0.6815423684555495, 0.7147866814651768, 0.7088335488674333, 0.70356307464221, 0.696420849774043, 0.688726360755852, 0.671400029788501, 0.6625050943200362, 0.652441568264929, 0.6440069875397316, 0.6352771048920306, 0.6271722251503171, 0.6212905922352278, 0.6157247761784481, 0.6118300417599646, 0.6062384019509157, 0.6053527897020051, 0.6059389408182974, 0.6083461185871082, 0.6102655159846408, 0.6137752031485143, 0.6149666657632753, 0.6168468205316454, 0.6196684597427885, 0.6218890576300566, 0.6301745789858553, 0.6340236588645568, 0.639513096034788, 0.6450193795538239, 0.650902450448606, 0.6575484773003433, 0.6706153890271234, 0.6764909459852364, 0.6815071533006826, 0.6852634529872434, 0.6890718395058675, 0.6916010410634154, 0.6924081166479781, 0.693238775603327, 0.6940929332589405, 0.6945250175479643, 0.6940778054368256, 0.6945401356293242, 0.6950165465656195, 0.6963942848702881, 0.6973184351499679, 0.6987131027825368, 0.7001178472228801, 0.7081645289055362, 0.7079950564799163, 0.7064764681148269, 0.6890979611056762, 0.6495667787071626], "ChiouYoungs2014": [0.6479854449961885, 0.6584946428315915, 0.6666980351039805, 0.6697533408152628, 0.6725421758091753, 0.6751842496994274, 0.6776285171549328, 0.6799024400235386, 0.6820563436720186, 0.684075005500587, 0.6860238533574246, 0.6878599016714427, 0.6895952532663743, 0.6927570786069911, 0.6956142305951681, 0.6982144312539698, 0.7005948070160534, 0.7027914104833889, 0.7047814077737935, 0.7066358288009967, 0.7083716995816365, 0.7100030902788456, 0.7115417620807325, 0.7128921940824671, 0.714172817163467, 0.7153904427137129, 0.7165509487925062, 0.7176594417493888, 0.7188325879428609, 0.7198779811428467, 0.7208203344290034, 0.7216779692148846, 0.7224648062930067, 0.7223575043232116, 0.7222522432374943, 0.7221493409393757, 0.7220489877938259, 0.7219512881832534, 0.7211290356480605, 0.7203835334722384, 0.7197020969505661, 0.719074926911372, 0.7184943099778602, 0.7178641444587149, 0.7172607544068308, 0.7166818052356836, 0.7161261547168623, 0.7155937742678427, 0.7102732674529731, 0.7069366348440286, 0.7038444892161905, 0.6980384646358044, 0.6939040782253537], "CampbellBozorgnia2014": [0.619976371285718, 0.6482434009116544, 0.6669957950805377, 0.6640235587161002, 0.6616839765249315, 0.6598512170166846, 0.658430584924829, 0.6573493235406168, 0.6560429805929525, 0.6551553840217779, 0.6540437857018426, 0.6505084859679864, 0.6472619253439832, 0.6398376467596227, 0.633117902859703, 0.6325623027986392, 0.6375594066379565, 0.6423581555487562, 0.6436196011056469, 0.6449388595936285, 0.6463011266697495, 0.6476948480621363, 0.6491109304271497, 0.6526199615856915, 0.6559702990386298, 0.6591757934325532, 0.662248551643364, 0.665199218279757, 0.6759031376738889, 0.685842460976842, 0.6951207792960601, 0.7038219403320863, 0.7120147470382899, 0.7138152098219914, 0.7155506654430743, 0.7172258101397948, 0.7188448775373711, 0.7204116878563257, 0.7206922940056525, 0.7211317835502621, 0.7216903091988284, 0.722338888378088, 0.7230560144276513, 0.720376354017737, 0.7178645211342529, 0.7155010730440174, 0.7132697470726926, 0.7111568040875373, 0.7127222460397878, 0.6833334731688543, 0.6934277179346093, 0.6999714279883145, 0.6976338581232996], "KothaEtAl2016Italy": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Other": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Turkey": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "ZhaoEtAl2016Asc": [0.7278021709228408, 0.7771923607729061, 0.7889746510503364, 0.7888959212336364, 0.7890614678211072, 0.7851281052125924, 0.7816425014032949, 0.7779203044014215, 0.7731086598919974, 0.7761173983202411, 0.7789736837660179, 0.7791911134846302, 0.7795800151363553, 0.7766382892032334, 0.7740180644188175, 0.7720311021061312, 0.7705648785799881, 0.7692073842599275, 0.766046367881938, 0.7631174300150125, 0.7612176286655891, 0.7602584084081757, 0.7593800102715372, 0.7578610029858904, 0.7564140577504519, 0.7557303288152079, 0.755759754366926, 0.7557889917166034, 0.7583354500048901, 0.7606608968522045, 0.7631020746294933, 0.7653757247260983, 0.7691875558842282, 0.7727612826740222, 0.7743360885814617, 0.7758382563395544, 0.7755282571597322, 0.7752418977325723, 0.7735036933590107, 0.7719507714502052, 0.7702744781684243, 0.768462553483211, 0.7667757168820619, 0.7601190589317046, 0.7538661239670975, 0.7479707310064135, 0.7423941959549901, 0.7371037918773719, 0.6935776813018135, 0.6711784838363779, 0.6674346409949068, null, null], "BindiEtAl2017Rjb": [0.8956331632638443, 0.9102791622310158, 0.8915155151364446, 0.8806585598045363, 0.8721652361020817, 0.8619419154403619, 0.8550128842654946, 0.8491152000035095, 0.8447656795449257, 0.8366782265626375, 0.8275006067816506, 0.8172995224775309, 0.8080404663938557, 0.7924747477522548, 0.7795574303237702, 0.7710831262483961, 0.769626786282806, 0.76591816967415, 0.7607563726975937, 0.7551967045809985, 0.754068674194201, 0.7529532354190398, 0.753290637075757, 0.7502801781021541, 0.7481368979070608, 0.7452829309228811, 0.744935586376433, 0.7429570035129893, 0.7427907895019971, 0.749116576052753, 0.752806138934188, 0.7550676921627624, 0.7578875529852697, 0.7608282259360519, 0.7662748560588426, 0.7730108730438402, 0.7813574041608615, 0.7846822749227867, 0.789886878445262, 0.7944460849485006, 0.8013772027584762, 0.8038704516730292, 0.8107071945782892, 0.81029164015927, 0.8135451438297693, 0.8173261525859796, 0.8122649177017311, 0.8089673416900092, 0.7905637556402394, null, null, null, null]}}, {"ylabel": "Sa (g)", "magnitude": 6.0, "distance": 20.0, "row": 2, "column": 1, "yvalues": {"AkkarBommer2010": [0.6844817131851617, 0.6837362987816263, 0.683207418845582, 0.68672541913679, 0.6899371017735907, 0.6928915634006979, 0.6956269676162063, 0.6981735680158769, 0.6976000490734018, 0.6970613108380154, 0.6965533749187963, 0.6960729087565891, 0.6956170929827741, 0.6971778901534045, 0.6986027863323532, 0.7005012687446854, 0.7028253341764217, 0.7049889873300449, 0.7148224968535273, 0.7240596591789342, 0.7299358053141418, 0.732736803570049, 0.735394096191045, 0.7396101101089319, 0.7436299578941521, 0.7480893213112024, 0.7529640884143824, 0.7576398289888938, 0.7653446494262519, 0.766693379434133, 0.777923934283979, 0.7812641010612377, 0.7776172138314966, 0.7663280282574274, 0.7598439394252159, 0.7570802432466689, 0.752561463750785, 0.7489709391989503, 0.7433871979794608, 0.7409032244431811, 0.7378155982911665, 0.7422539024380507, 0.7359252519151268, 0.7357897954392761, 0.7435592056910777, 0.7473398109449241, 0.7490163484795692, 0.7561064684979164, 0.7794038310516823, null, null, null, null], "CauzziFaccioli2008": [0.8219379128089427, 0.8393387142592592, 0.8516847793668235, 0.8518298896882702, 0.8519623650325663, 0.8520842305359557, 0.8521970603688558, 0.8523021024302553, 0.8540729263581883, 0.85573635974715, 0.8573046864631392, 0.8587881962717722, 0.8601955943875482, 0.8525571104939933, 0.8455837210506426, 0.8381755704576738, 0.8303595392994786, 0.8230829883756888, 0.8232713592759195, 0.8234483065375926, 0.8233005200716469, 0.8228544967873165, 0.8224313567943714, 0.8196750153732449, 0.8170469232528611, 0.8178450428198889, 0.8218488981437654, 0.8256892844424486, 0.8260503297850302, 0.8211780597282549, 0.817439812829779, 0.8174315235234442, 0.8120846906790027, 0.8051021013844982, 0.8068610461370364, 0.8163400981893651, 0.8162896715758283, 0.8194244109214306, 0.8192920122785835, 0.8136785400803733, 0.8135348587705703, 0.8118129856380293, 0.8051582844607673, 0.7942350510381128, 0.7824361445045926, 0.7735861586996702, 0.7667493230415523, 0.7595645667758829, 0.6982775803896976, 0.6704283771676394, 0.6462004738584699, 0.6007518190344441, 0.5626092667104884], "ChiouYoungs2008": [0.6382515893483228, 0.6482782840069381, 0.6528153555232967, 0.6536712803205514, 0.6544583810688629, 0.6551873917124561, 0.6558666783004549, 0.6565028935481422, 0.6565471655652371, 0.6565916302329854, 0.6566362055072044, 0.6566808226339007, 0.6567254240603706, 0.6568021852109431, 0.6568674349431554, 0.6565646741567716, 0.655935163874751, 0.6553472945950447, 0.6550330010339702, 0.6547313062760989, 0.6544416067678489, 0.6541632604617111, 0.6538956216689632, 0.6541899896693594, 0.6544673189808946, 0.6547294453541103, 0.6549779287507932, 0.6552141049840278, 0.6565906940471692, 0.6578439085498874, 0.6589948794738123, 0.6600596902092812, 0.6610508727410118, 0.6633351182946704, 0.6654942946115061, 0.6675419557748604, 0.6694895349450818, 0.6713467696168035, 0.6731379364937585, 0.6748122066187533, 0.6763849939441866, 0.6778687521768616, 0.6792736910069213, 0.6823748723190629, 0.685322370328765, 0.6881307840530587, 0.6908129768365905, 0.6933804747743884, 0.7149551850558223, 0.7388131357175571, 0.757760970392379, 0.7748092115159706, 0.7895849784855333], "ZhaoEtAl2006Asc": [0.7182450835195463, 0.7506639297268827, 0.773692445355388, 0.7742426949440069, 0.7747562131314576, 0.7752380083676326, 0.7756921005392341, 0.7761217687966238, 0.7722802122118468, 0.7686816302832236, 0.7652978000089461, 0.7621051205205831, 0.7590836581036374, 0.7527411427191135, 0.7469669808073841, 0.7420715684469914, 0.737937653530582, 0.7340980860893183, 0.7361369393640627, 0.7381859520934553, 0.7402355419892188, 0.742278578508789, 0.7443097473498517, 0.742335679184848, 0.7404545736561577, 0.738658122565803, 0.7369390821527303, 0.7352910988173323, 0.7379520988250339, 0.740412047443854, 0.7404445155327583, 0.740476198131986, 0.7394343405313084, 0.7384747795287256, 0.7392130426477722, 0.739941213881211, 0.7393596516299581, 0.7388457213789629, 0.7351693539973224, 0.7319349648403927, 0.7305923515994256, 0.7308572357662626, 0.731116953708502, 0.7299943092840001, 0.7289730120917091, 0.7280397460331555, 0.7271835291354093, 0.7263952092353033, 0.722615388709651, 0.7022345940403416, 0.6993382586416962, null, null], "AkkarEtAlRjb2014": [0.7514019230744622, 0.7618002165922506, 0.7812130887280371, 0.7843878186203557, 0.7872884350731948, 0.7888397175599109, 0.7880527203176194, 0.7832053689805758, 0.7820091303814809, 0.7802584764038133, 0.7777611201390823, 0.7722903145838357, 0.7675740290030663, 0.7659554099293248, 0.7656047609569836, 0.763642691315775, 0.7585720071291848, 0.7622903449473829, 0.7695561837838741, 0.7700516995630878, 0.7731754005398775, 0.7773430967082682, 0.7781211538057553, 0.7743934142281944, 0.7716211635252107, 0.7700825020736414, 0.7677765560369761, 0.7653403491257991, 0.7721667501259039, 0.7774348847331203, 0.7826651902314297, 0.7869856478996297, 0.7863039170702382, 0.7803674262807232, 0.7799564731444953, 0.782871892457508, 0.7834978621540712, 0.7849243148227731, 0.7890588064269988, 0.7979061912280165, 0.7981296761805065, 0.8073204877866038, 0.8108963990547745, 0.8147434749662007, 0.8129160596273148, 0.8136103551455082, 0.8174336731503052, 0.8150865291488997, 0.8082581580163606, null, null, null, null], "BindiEtAl2014Rjb": [0.767508805710641, 0.7836029248110283, 0.7975671219261845, 0.7951428431878028, 0.7929296500990229, 0.7908937098167379, 0.789008723537143, 0.7872538432946641, 0.7839643806847408, 0.7808744055320594, 0.7779610994653116, 0.7752053483316296, 0.7725909814224782, 0.7747507465976511, 0.7767224577228621, 0.7785362561325888, 0.7768990288937333, 0.7753748067999079, 0.776151571674347, 0.7768812301158964, 0.7775691703935314, 0.775896019519639, 0.7743087099018517, 0.776729817038814, 0.7790382729291059, 0.7812440962019498, 0.7840965122991578, 0.7868324702226462, 0.790047543272952, 0.7929826750060335, 0.7946565385529079, 0.796206294136225, 0.7955067520351479, 0.7948523741015445, 0.8011539424069896, 0.807095219040994, 0.8136531197119701, 0.8198745663071109, 0.8202401036353644, 0.8205738130705763, 0.8208807959927493, 0.828430166458295, 0.8354584622164946, 0.8372393974217929, 0.8389123288958596, 0.8404896106446865, 0.8450234241355936, 0.8493246296465048, 0.8297894977175432, null, null, null, null], "CauzziEtAl2014": [0.8227964012485014, 0.8511727469660871, 0.8522195907509933, 0.8511643031364848, 0.8502009010251153, 0.849314656993124, 0.8484941231811982, 0.8477302244778377, 0.844245105878018, 0.8409713401738255, 0.8378847517658702, 0.8349650895987134, 0.832195221136202, 0.8257570491113541, 0.8198794585504274, 0.8170632016931386, 0.8169522037957349, 0.8168488672254801, 0.8224839554274542, 0.8277773071362535, 0.8312046299407523, 0.832924896120847, 0.8345569037869973, 0.8347880057508652, 0.8350083548141528, 0.8381071614360578, 0.8439015220480752, 0.8494593110549161, 0.8620985209858882, 0.8659787163104777, 0.8690536448522258, 0.8649731696879183, 0.8607944161115274, 0.8564544999373845, 0.8585000380163414, 0.8639075295473256, 0.8639996869785381, 0.8640808992911826, 0.8676581859365654, 0.8653514794289309, 0.8659400099950524, 0.8658508848376814, 0.8637958249184655, 0.8606244209148295, 0.854686846727022, 0.8502168157395237, 0.8469379501245717, 0.8471602031577969, 0.8388582348773796, 0.8329785027146948, 0.8235861763604481, 0.8043912561154009, 0.7772100228597301], "DerrasEtAl2014": [0.7480035478517366, 0.7562896733768881, 0.7717061638741622, 0.7799919911635539, 0.7780012184339148, 0.7768452564218975, 0.7799919911635539, 0.7768452564218975, 0.7717061638741622, 0.7697146252705663, 0.7665672007584541, 0.7582815111034834, 0.7551355809244937, 0.7551355809244937, 0.7511511145682411, 0.7480035478517366, 0.7417112320434819, 0.7417112320434819, 0.7499961841469494, 0.7551355809244937, 0.7582815111034834, 0.7614283696954255, 0.7582815111034834, 0.7562896733768881, 0.7531424628511735, 0.7531424628511735, 0.7551355809244937, 0.7531424628511735, 0.7582815111034834, 0.7614283696954255, 0.7634206899176481, 0.7634206899176481, 0.7645761452367758, 0.7634206899176481, 0.7582815111034834, 0.7614283696954255, 0.7665672007584541, 0.7717061638741622, 0.7799919911635539, 0.7902698805645967, 0.7965646616362811, 0.811980441655112, 0.8202666515897504, 0.8254052987450918, 0.8325365697570533, 0.8408219808864074, 0.8491077178141273, 0.8479549021314452, 0.8676713813383503, null, null, null, null], "AbrahamsonEtAl2014": [0.6560876622097138, 0.6616598535140935, 0.6664200074589661, 0.6663318457171401, 0.666456643533887, 0.6667268581807807, 0.6655830825111853, 0.664519375187812, 0.6636436807210286, 0.6628217674658975, 0.6620474483803821, 0.6613155444042412, 0.6606216769074414, 0.6602894047156356, 0.6599861592699597, 0.6608478906059959, 0.6627476126571613, 0.664519375187812, 0.6653958081134694, 0.6662197603387271, 0.6669971954338321, 0.6677331131474143, 0.6684317467026831, 0.6698038629081495, 0.6711137694369091, 0.6723669191701822, 0.6735680754778466, 0.6747214239966003, 0.6776908379653258, 0.6804085379254715, 0.682914273486536, 0.6852390332401535, 0.6874074483157715, 0.6904516224232379, 0.6933181185004319, 0.6960267988170161, 0.698594354689868, 0.7010349492001093, 0.7031205652077677, 0.7050274766872244, 0.7067840840128138, 0.7084124994226925, 0.7099302782668168, 0.7119339315576076, 0.7138187224621422, 0.7155980813317264, 0.7172832768505959, 0.7188838571007141, 0.7099302782668168, 0.7010376577190217, 0.7034550447612129, 0.7091191719309244, 0.7172516991963142], "BooreEtAl2014": [0.6815423684555495, 0.7147866814651768, 0.7088335488674333, 0.70356307464221, 0.696420849774043, 0.688726360755852, 0.671400029788501, 0.6625050943200362, 0.652441568264929, 0.6440069875397316, 0.6352771048920306, 0.6271722251503171, 0.6212905922352278, 0.6157247761784481, 0.6118300417599646, 0.6062384019509157, 0.6053527897020051, 0.6059389408182974, 0.6083461185871082, 0.6102655159846408, 0.6137752031485143, 0.6149666657632753, 0.6168468205316454, 0.6196684597427885, 0.6218890576300566, 0.6301745789858553, 0.6340236588645568, 0.639513096034788, 0.6450193795538239, 0.650902450448606, 0.6575484773003433, 0.6706153890271234, 0.6764909459852364, 0.6815071533006826, 0.6852634529872434, 0.6890718395058675, 0.6916010410634154, 0.6924081166479781, 0.693238775603327, 0.6940929332589405, 0.6945250175479643, 0.6940778054368256, 0.6945401356293242, 0.6950165465656195, 0.6963942848702881, 0.6973184351499679, 0.6987131027825368, 0.7001178472228801, 0.7081645289055362, 0.7079950564799163, 0.7064764681148269, 0.6890979611056762, 0.6495667787071626], "ChiouYoungs2014": [0.6494689496524217, 0.6612707984715652, 0.6701561963092114, 0.6732473261421902, 0.676065677789872, 0.6786630222158813, 0.6810652526565106, 0.6832995402293583, 0.6853561564812072, 0.6872851067813494, 0.689112126972359, 0.6908360307725518, 0.6924677404538213, 0.6953923783641259, 0.6980457670659636, 0.7004597602443515, 0.7026686677264267, 0.7047141405201756, 0.7065636865746516, 0.7082928243422864, 0.7099162655421167, 0.7114462073505687, 0.712892878391305, 0.7141587252963324, 0.7153619813785332, 0.7165085750018161, 0.7176036359856767, 0.7186516329775618, 0.7196791200145988, 0.7206046018372081, 0.7214467938324794, 0.7222196977373624, 0.7229340540666235, 0.7227789609761545, 0.7226312622046108, 0.7224904450231158, 0.7223560240822103, 0.72222754833693, 0.7213965609084929, 0.7206411346986193, 0.7199488240138693, 0.7193099786649887, 0.7187169580473884, 0.7181343447986535, 0.7175819299739953, 0.717056184554151, 0.716554414811329, 0.7160746556185795, 0.7106826044901575, 0.7069860887836483, 0.7038444892161905, 0.6980384646358044, 0.6939040782253537], "CampbellBozorgnia2014": [0.6348494056926585, 0.6652679456674596, 0.6824481730019988, 0.677747068317868, 0.6736157248747643, 0.6699512343110277, 0.666675150384938, 0.6637264290887294, 0.6601670216096702, 0.6570201560158074, 0.6540437857018426, 0.6505084859679864, 0.6472619253439832, 0.6398376467596227, 0.633117902859703, 0.6325623027986392, 0.6375594066379565, 0.6423581555487562, 0.6436196011056469, 0.6449388595936285, 0.6463011266697495, 0.6476948480621363, 0.6491109304271497, 0.6526199615856915, 0.6559702990386298, 0.6591757934325532, 0.662248551643364, 0.665199218279757, 0.6759031376738889, 0.685842460976842, 0.6951207792960601, 0.7038219403320863, 0.7120147470382899, 0.7138152098219914, 0.7155506654430743, 0.7172258101397948, 0.7188448775373711, 0.7204116878563257, 0.7206922940056525, 0.7211317835502621, 0.7216903091988284, 0.722338888378088, 0.7230560144276513, 0.720376354017737, 0.7178645211342529, 0.7155010730440174, 0.7132697470726926, 0.7111568040875373, 0.7127222460397878, 0.6833334731688543, 0.6934277179346093, 0.6999714279883145, 0.6976338581232996], "KothaEtAl2016Italy": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Other": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Turkey": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "ZhaoEtAl2016Asc": [0.7278021709228408, 0.7771923607729061, 0.7889746510503364, 0.7888959212336364, 0.7890614678211072, 0.7851281052125924, 0.7816425014032949, 0.7779203044014215, 0.7731086598919974, 0.7761173983202411, 0.7789736837660179, 0.7791911134846302, 0.7795800151363553, 0.7766382892032334, 0.7740180644188175, 0.7720311021061312, 0.7705648785799881, 0.7692073842599275, 0.766046367881938, 0.7631174300150125, 0.7612176286655891, 0.7602584084081757, 0.7593800102715372, 0.7578610029858904, 0.7564140577504519, 0.7557303288152079, 0.755759754366926, 0.7557889917166034, 0.7583354500048901, 0.7606608968522045, 0.7631020746294933, 0.7653757247260983, 0.7691875558842282, 0.7727612826740222, 0.7743360885814617, 0.7758382563395544, 0.7755282571597322, 0.7752418977325723, 0.7735036933590107, 0.7719507714502052, 0.7702744781684243, 0.768462553483211, 0.7667757168820619, 0.7601190589317046, 0.7538661239670975, 0.7479707310064135, 0.7423941959549901, 0.7371037918773719, 0.6935776813018135, 0.6711784838363779, 0.6674346409949068, null, null], "BindiEtAl2017Rjb": [0.8956331632638443, 0.9102791622310158, 0.8915155151364446, 0.8806585598045363, 0.8721652361020817, 0.8619419154403619, 0.8550128842654946, 0.8491152000035095, 0.8447656795449257, 0.8366782265626375, 0.8275006067816506, 0.8172995224775309, 0.8080404663938557, 0.7924747477522548, 0.7795574303237702, 0.7710831262483961, 0.769626786282806, 0.76591816967415, 0.7607563726975937, 0.7551967045809985, 0.754068674194201, 0.7529532354190398, 0.753290637075757, 0.7502801781021541, 0.7481368979070608, 0.7452829309228811, 0.744935586376433, 0.7429570035129893, 0.7427907895019971, 0.749116576052753, 0.752806138934188, 0.7550676921627624, 0.7578875529852697, 0.7608282259360519, 0.7662748560588426, 0.7730108730438402, 0.7813574041608615, 0.7846822749227867, 0.789886878445262, 0.7944460849485006, 0.8013772027584762, 0.8038704516730292, 0.8107071945782892, 0.81029164015927, 0.8135451438297693, 0.8173261525859796, 0.8122649177017311, 0.8089673416900092, 0.7905637556402394, null, null, null, null]}}, {"ylabel": "Sa (g)", "magnitude": 6.0, "distance": 50.0, "row": 2, "column": 2, "yvalues": {"AkkarBommer2010": [0.6844817131851617, 0.6837362987816263, 0.683207418845582, 0.68672541913679, 0.6899371017735907, 0.6928915634006979, 0.6956269676162063, 0.6981735680158769, 0.6976000490734018, 0.6970613108380154, 0.6965533749187963, 0.6960729087565891, 0.6956170929827741, 0.6971778901534045, 0.6986027863323532, 0.7005012687446854, 0.7028253341764217, 0.7049889873300449, 0.7148224968535273, 0.7240596591789342, 0.7299358053141418, 0.732736803570049, 0.735394096191045, 0.7396101101089319, 0.7436299578941521, 0.7480893213112024, 0.7529640884143824, 0.7576398289888938, 0.7653446494262519, 0.766693379434133, 0.777923934283979, 0.7812641010612377, 0.7776172138314966, 0.7663280282574274, 0.7598439394252159, 0.7570802432466689, 0.752561463750785, 0.7489709391989503, 0.7433871979794608, 0.7409032244431811, 0.7378155982911665, 0.7422539024380507, 0.7359252519151268, 0.7357897954392761, 0.7435592056910777, 0.7473398109449241, 0.7490163484795692, 0.7561064684979164, 0.7794038310516823, null, null, null, null], "CauzziFaccioli2008": [0.8219379128089427, 0.8393387142592592, 0.8516847793668235, 0.8518298896882702, 0.8519623650325663, 0.8520842305359557, 0.8521970603688558, 0.8523021024302553, 0.8540729263581883, 0.85573635974715, 0.8573046864631392, 0.8587881962717722, 0.8601955943875482, 0.8525571104939933, 0.8455837210506426, 0.8381755704576738, 0.8303595392994786, 0.8230829883756888, 0.8232713592759195, 0.8234483065375926, 0.8233005200716469, 0.8228544967873165, 0.8224313567943714, 0.8196750153732449, 0.8170469232528611, 0.8178450428198889, 0.8218488981437654, 0.8256892844424486, 0.8260503297850302, 0.8211780597282549, 0.817439812829779, 0.8174315235234442, 0.8120846906790027, 0.8051021013844982, 0.8068610461370364, 0.8163400981893651, 0.8162896715758283, 0.8194244109214306, 0.8192920122785835, 0.8136785400803733, 0.8135348587705703, 0.8118129856380293, 0.8051582844607673, 0.7942350510381128, 0.7824361445045926, 0.7735861586996702, 0.7667493230415523, 0.7595645667758829, 0.6982775803896976, 0.6704283771676394, 0.6462004738584699, 0.6007518190344441, 0.5626092667104884], "ChiouYoungs2008": [0.639169809646539, 0.6499877364762009, 0.6548581088313203, 0.6556760945842084, 0.6564298240916419, 0.6571291182189536, 0.6577816693975136, 0.6583936207233639, 0.6583558294580941, 0.6583259917027686, 0.6583029057892426, 0.6582855946161003, 0.6582732552063173, 0.6582096999321544, 0.6581565802410483, 0.6577438219545293, 0.6570120671537688, 0.6563360432352184, 0.6559401905022549, 0.6555673084777108, 0.6552149936301963, 0.6548811914126735, 0.6545641331409662, 0.6548133988979867, 0.655050120484053, 0.6552755188954742, 0.6554906444330518, 0.6556964070182583, 0.6570006651108087, 0.6581955690200351, 0.6592987171061272, 0.6603237192301572, 0.6612813267998615, 0.6635431101507405, 0.6656825437637318, 0.6677127183186703, 0.6696446983244575, 0.6714879236897777, 0.6732751671792591, 0.6749454819683277, 0.6765143250730672, 0.6779941733349777, 0.6793952430278354, 0.6825230379891748, 0.6854997872724027, 0.6883397424778083, 0.6910552583062938, 0.6936571614720572, 0.7152129419782753, 0.7388473089878177, 0.757760970392379, 0.7748092115159706, 0.7895849784855333], "ZhaoEtAl2006Asc": [0.7182450835195463, 0.7506639297268827, 0.773692445355388, 0.7742426949440069, 0.7747562131314576, 0.7752380083676326, 0.7756921005392341, 0.7761217687966238, 0.7722802122118468, 0.7686816302832236, 0.7652978000089461, 0.7621051205205831, 0.7590836581036374, 0.7527411427191135, 0.7469669808073841, 0.7420715684469914, 0.737937653530582, 0.7340980860893183, 0.7361369393640627, 0.7381859520934553, 0.7402355419892188, 0.742278578508789, 0.7443097473498517, 0.742335679184848, 0.7404545736561577, 0.738658122565803, 0.7369390821527303, 0.7352910988173323, 0.7379520988250339, 0.740412047443854, 0.7404445155327583, 0.740476198131986, 0.7394343405313084, 0.7384747795287256, 0.7392130426477722, 0.739941213881211, 0.7393596516299581, 0.7388457213789629, 0.7351693539973224, 0.7319349648403927, 0.7305923515994256, 0.7308572357662626, 0.731116953708502, 0.7299943092840001, 0.7289730120917091, 0.7280397460331555, 0.7271835291354093, 0.7263952092353033, 0.722615388709651, 0.7022345940403416, 0.6993382586416962, null, null], "AkkarEtAlRjb2014": [0.7514019230744622, 0.7618002165922506, 0.7812130887280371, 0.7843878186203557, 0.7872884350731948, 0.7888397175599109, 0.7880527203176194, 0.7832053689805758, 0.7820091303814809, 0.7802584764038133, 0.7777611201390823, 0.7722903145838357, 0.7675740290030663, 0.7659554099293248, 0.7656047609569836, 0.763642691315775, 0.7585720071291848, 0.7622903449473829, 0.7695561837838741, 0.7700516995630878, 0.7731754005398775, 0.7773430967082682, 0.7781211538057553, 0.7743934142281944, 0.7716211635252107, 0.7700825020736414, 0.7677765560369761, 0.7653403491257991, 0.7721667501259039, 0.7774348847331203, 0.7826651902314297, 0.7869856478996297, 0.7863039170702382, 0.7803674262807232, 0.7799564731444953, 0.782871892457508, 0.7834978621540712, 0.7849243148227731, 0.7890588064269988, 0.7979061912280165, 0.7981296761805065, 0.8073204877866038, 0.8108963990547745, 0.8147434749662007, 0.8129160596273148, 0.8136103551455082, 0.8174336731503052, 0.8150865291488997, 0.8082581580163606, null, null, null, null], "BindiEtAl2014Rjb": [0.767508805710641, 0.7836029248110283, 0.7975671219261845, 0.7951428431878028, 0.7929296500990229, 0.7908937098167379, 0.789008723537143, 0.7872538432946641, 0.7839643806847408, 0.7808744055320594, 0.7779610994653116, 0.7752053483316296, 0.7725909814224782, 0.7747507465976511, 0.7767224577228621, 0.7785362561325888, 0.7768990288937333, 0.7753748067999079, 0.776151571674347, 0.7768812301158964, 0.7775691703935314, 0.775896019519639, 0.7743087099018517, 0.776729817038814, 0.7790382729291059, 0.7812440962019498, 0.7840965122991578, 0.7868324702226462, 0.790047543272952, 0.7929826750060335, 0.7946565385529079, 0.796206294136225, 0.7955067520351479, 0.7948523741015445, 0.8011539424069896, 0.807095219040994, 0.8136531197119701, 0.8198745663071109, 0.8202401036353644, 0.8205738130705763, 0.8208807959927493, 0.828430166458295, 0.8354584622164946, 0.8372393974217929, 0.8389123288958596, 0.8404896106446865, 0.8450234241355936, 0.8493246296465048, 0.8297894977175432, null, null, null, null], "CauzziEtAl2014": [0.8227964012485014, 0.8511727469660871, 0.8522195907509933, 0.8511643031364848, 0.8502009010251153, 0.849314656993124, 0.8484941231811982, 0.8477302244778377, 0.844245105878018, 0.8409713401738255, 0.8378847517658702, 0.8349650895987134, 0.832195221136202, 0.8257570491113541, 0.8198794585504274, 0.8170632016931386, 0.8169522037957349, 0.8168488672254801, 0.8224839554274542, 0.8277773071362535, 0.8312046299407523, 0.832924896120847, 0.8345569037869973, 0.8347880057508652, 0.8350083548141528, 0.8381071614360578, 0.8439015220480752, 0.8494593110549161, 0.8620985209858882, 0.8659787163104777, 0.8690536448522258, 0.8649731696879183, 0.8607944161115274, 0.8564544999373845, 0.8585000380163414, 0.8639075295473256, 0.8639996869785381, 0.8640808992911826, 0.8676581859365654, 0.8653514794289309, 0.8659400099950524, 0.8658508848376814, 0.8637958249184655, 0.8606244209148295, 0.854686846727022, 0.8502168157395237, 0.8469379501245717, 0.8471602031577969, 0.8388582348773796, 0.8329785027146948, 0.8235861763604481, 0.8043912561154009, 0.7772100228597301], "DerrasEtAl2014": [0.7480035478517366, 0.7562896733768881, 0.7717061638741622, 0.7799919911635539, 0.7780012184339148, 0.7768452564218975, 0.7799919911635539, 0.7768452564218975, 0.7717061638741622, 0.7697146252705663, 0.7665672007584541, 0.7582815111034834, 0.7551355809244937, 0.7551355809244937, 0.7511511145682411, 0.7480035478517366, 0.7417112320434819, 0.7417112320434819, 0.7499961841469494, 0.7551355809244937, 0.7582815111034834, 0.7614283696954255, 0.7582815111034834, 0.7562896733768881, 0.7531424628511735, 0.7531424628511735, 0.7551355809244937, 0.7531424628511735, 0.7582815111034834, 0.7614283696954255, 0.7634206899176481, 0.7634206899176481, 0.7645761452367758, 0.7634206899176481, 0.7582815111034834, 0.7614283696954255, 0.7665672007584541, 0.7717061638741622, 0.7799919911635539, 0.7902698805645967, 0.7965646616362811, 0.811980441655112, 0.8202666515897504, 0.8254052987450918, 0.8325365697570533, 0.8408219808864074, 0.8491077178141273, 0.8479549021314452, 0.8676713813383503, null, null, null, null], "AbrahamsonEtAl2014": [0.6580652390398976, 0.6651342707912751, 0.6693518743247143, 0.6683330503864573, 0.6674702637725165, 0.6667268581807807, 0.6655830825111853, 0.664519375187812, 0.6636436807210286, 0.6628217674658975, 0.6620474483803821, 0.6613155444042412, 0.6606216769074414, 0.6602894047156356, 0.6599861592699597, 0.6608478906059959, 0.6627476126571613, 0.664519375187812, 0.6653958081134694, 0.6662197603387271, 0.6669971954338321, 0.6677331131474143, 0.6684317467026831, 0.6698038629081495, 0.6711137694369091, 0.6723669191701822, 0.6735680754778466, 0.6747214239966003, 0.6776908379653258, 0.6804085379254715, 0.682914273486536, 0.6852390332401535, 0.6874074483157715, 0.6904516224232379, 0.6933181185004319, 0.6960267988170161, 0.698594354689868, 0.7010349492001093, 0.7031205652077677, 0.7050274766872244, 0.7067840840128138, 0.7084124994226925, 0.7099302782668168, 0.7119339315576076, 0.7138187224621422, 0.7155980813317264, 0.7172832768505959, 0.7188838571007141, 0.7099302782668168, 0.7010376577190217, 0.7034550447612129, 0.7091191719309244, 0.7172516991963142], "BooreEtAl2014": [0.6815423684555495, 0.7147866814651768, 0.7088335488674333, 0.70356307464221, 0.696420849774043, 0.688726360755852, 0.671400029788501, 0.6625050943200362, 0.652441568264929, 0.6440069875397316, 0.6352771048920306, 0.6271722251503171, 0.6212905922352278, 0.6157247761784481, 0.6118300417599646, 0.6062384019509157, 0.6053527897020051, 0.6059389408182974, 0.6083461185871082, 0.6102655159846408, 0.6137752031485143, 0.6149666657632753, 0.6168468205316454, 0.6196684597427885, 0.6218890576300566, 0.6301745789858553, 0.6340236588645568, 0.639513096034788, 0.6450193795538239, 0.650902450448606, 0.6575484773003433, 0.6706153890271234, 0.6764909459852364, 0.6815071533006826, 0.6852634529872434, 0.6890718395058675, 0.6916010410634154, 0.6924081166479781, 0.693238775603327, 0.6940929332589405, 0.6945250175479643, 0.6940778054368256, 0.6945401356293242, 0.6950165465656195, 0.6963942848702881, 0.6973184351499679, 0.6987131027825368, 0.7001178472228801, 0.7081645289055362, 0.7079950564799163, 0.7064764681148269, 0.6890979611056762, 0.6495667787071626], "ChiouYoungs2014": [0.6504059715539899, 0.6630447105652394, 0.6722507040463317, 0.6753242159920717, 0.6781275276352483, 0.6806777903261787, 0.6830373625008277, 0.6852327272392915, 0.6872225955291944, 0.6890905631553919, 0.6908372051497151, 0.6924878890773791, 0.6940525894804279, 0.6968283411315719, 0.6993566846997831, 0.7016571542876828, 0.7037625597714235, 0.7057189205060674, 0.7074875864985807, 0.7091461293372584, 0.7107074757218631, 0.7121824101961233, 0.7135800263617, 0.7148005351911495, 0.7159629754872328, 0.7170726401610384, 0.7181341309482704, 0.7191514742270636, 0.7201026637900242, 0.7209669692512497, 0.7217591674351636, 0.7224905386513008, 0.7231698917563922, 0.7229893534707, 0.7228196610682395, 0.7226596729698377, 0.722508412284277, 0.7223650380878829, 0.7215283590357134, 0.7207675160427534, 0.720070074989518, 0.7194263893146536, 0.7188288166509946, 0.718269697270462, 0.7177428719326736, 0.7172444812751474, 0.7167713774675316, 0.7163209983585624, 0.7109003829145687, 0.7070130059704052, 0.7038444892161905, 0.6980384646358044, 0.6939040782253537], "CampbellBozorgnia2014": [0.6397202183843986, 0.6708857120522086, 0.6875029620975717, 0.6822031463011756, 0.6774633419474461, 0.6731871727190445, 0.6693005923587169, 0.6657455455258475, 0.6614643694952949, 0.6576031608601522, 0.6540437857018426, 0.6505084859679864, 0.6472619253439832, 0.6398376467596227, 0.633117902859703, 0.6325623027986392, 0.6375594066379565, 0.6423581555487562, 0.6436196011056469, 0.6449388595936285, 0.6463011266697495, 0.6476948480621363, 0.6491109304271497, 0.6526199615856915, 0.6559702990386298, 0.6591757934325532, 0.662248551643364, 0.665199218279757, 0.6759031376738889, 0.685842460976842, 0.6951207792960601, 0.7038219403320863, 0.7120147470382899, 0.7138152098219914, 0.7155506654430743, 0.7172258101397948, 0.7188448775373711, 0.7204116878563257, 0.7206922940056525, 0.7211317835502621, 0.7216903091988284, 0.722338888378088, 0.7230560144276513, 0.720376354017737, 0.7178645211342529, 0.7155010730440174, 0.7132697470726926, 0.7111568040875373, 0.7127222460397878, 0.6833334731688543, 0.6934277179346093, 0.6999714279883145, 0.6976338581232996], "KothaEtAl2016Italy": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Other": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Turkey": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "ZhaoEtAl2016Asc": [0.7278021709228408, 0.7771923607729061, 0.7889746510503364, 0.7888959212336364, 0.7890614678211072, 0.7851281052125924, 0.7816425014032949, 0.7779203044014215, 0.7731086598919974, 0.7761173983202411, 0.7789736837660179, 0.7791911134846302, 0.7795800151363553, 0.7766382892032334, 0.7740180644188175, 0.7720311021061312, 0.7705648785799881, 0.7692073842599275, 0.766046367881938, 0.7631174300150125, 0.7612176286655891, 0.7602584084081757, 0.7593800102715372, 0.7578610029858904, 0.7564140577504519, 0.7557303288152079, 0.755759754366926, 0.7557889917166034, 0.7583354500048901, 0.7606608968522045, 0.7631020746294933, 0.7653757247260983, 0.7691875558842282, 0.7727612826740222, 0.7743360885814617, 0.7758382563395544, 0.7755282571597322, 0.7752418977325723, 0.7735036933590107, 0.7719507714502052, 0.7702744781684243, 0.768462553483211, 0.7667757168820619, 0.7601190589317046, 0.7538661239670975, 0.7479707310064135, 0.7423941959549901, 0.7371037918773719, 0.6935776813018135, 0.6711784838363779, 0.6674346409949068, null, null], "BindiEtAl2017Rjb": [0.8956331632638443, 0.9102791622310158, 0.8915155151364446, 0.8806585598045363, 0.8721652361020817, 0.8619419154403619, 0.8550128842654946, 0.8491152000035095, 0.8447656795449257, 0.8366782265626375, 0.8275006067816506, 0.8172995224775309, 0.8080404663938557, 0.7924747477522548, 0.7795574303237702, 0.7710831262483961, 0.769626786282806, 0.76591816967415, 0.7607563726975937, 0.7551967045809985, 0.754068674194201, 0.7529532354190398, 0.753290637075757, 0.7502801781021541, 0.7481368979070608, 0.7452829309228811, 0.744935586376433, 0.7429570035129893, 0.7427907895019971, 0.749116576052753, 0.752806138934188, 0.7550676921627624, 0.7578875529852697, 0.7608282259360519, 0.7662748560588426, 0.7730108730438402, 0.7813574041608615, 0.7846822749227867, 0.789886878445262, 0.7944460849485006, 0.8013772027584762, 0.8038704516730292, 0.8107071945782892, 0.81029164015927, 0.8135451438297693, 0.8173261525859796, 0.8122649177017311, 0.8089673416900092, 0.7905637556402394, null, null, null, null]}}, {"ylabel": "Sa (g)", "magnitude": 6.0, "distance": 150.0, "row": 2, "column": 3, "yvalues": {"AkkarBommer2010": [0.6844817131851617, 0.6837362987816263, 0.683207418845582, 0.68672541913679, 0.6899371017735907, 0.6928915634006979, 0.6956269676162063, 0.6981735680158769, 0.6976000490734018, 0.6970613108380154, 0.6965533749187963, 0.6960729087565891, 0.6956170929827741, 0.6971778901534045, 0.6986027863323532, 0.7005012687446854, 0.7028253341764217, 0.7049889873300449, 0.7148224968535273, 0.7240596591789342, 0.7299358053141418, 0.732736803570049, 0.735394096191045, 0.7396101101089319, 0.7436299578941521, 0.7480893213112024, 0.7529640884143824, 0.7576398289888938, 0.7653446494262519, 0.766693379434133, 0.777923934283979, 0.7812641010612377, 0.7776172138314966, 0.7663280282574274, 0.7598439394252159, 0.7570802432466689, 0.752561463750785, 0.7489709391989503, 0.7433871979794608, 0.7409032244431811, 0.7378155982911665, 0.7422539024380507, 0.7359252519151268, 0.7357897954392761, 0.7435592056910777, 0.7473398109449241, 0.7490163484795692, 0.7561064684979164, 0.7794038310516823, null, null, null, null], "CauzziFaccioli2008": [0.8219379128089427, 0.8393387142592592, 0.8516847793668235, 0.8518298896882702, 0.8519623650325663, 0.8520842305359557, 0.8521970603688558, 0.8523021024302553, 0.8540729263581883, 0.85573635974715, 0.8573046864631392, 0.8587881962717722, 0.8601955943875482, 0.8525571104939933, 0.8455837210506426, 0.8381755704576738, 0.8303595392994786, 0.8230829883756888, 0.8232713592759195, 0.8234483065375926, 0.8233005200716469, 0.8228544967873165, 0.8224313567943714, 0.8196750153732449, 0.8170469232528611, 0.8178450428198889, 0.8218488981437654, 0.8256892844424486, 0.8260503297850302, 0.8211780597282549, 0.817439812829779, 0.8174315235234442, 0.8120846906790027, 0.8051021013844982, 0.8068610461370364, 0.8163400981893651, 0.8162896715758283, 0.8194244109214306, 0.8192920122785835, 0.8136785400803733, 0.8135348587705703, 0.8118129856380293, 0.8051582844607673, 0.7942350510381128, 0.7824361445045926, 0.7735861586996702, 0.7667493230415523, 0.7595645667758829, 0.6982775803896976, 0.6704283771676394, 0.6462004738584699, 0.6007518190344441, 0.5626092667104884], "ChiouYoungs2008": [0.6396000031880165, 0.6507690596869381, 0.6557714723729986, 0.6565712713419901, 0.6573092090660986, 0.6579945868480994, 0.6586347230492399, 0.6592354837390665, 0.6591630747707572, 0.6591016823977894, 0.659049680809957, 0.6590057464854103, 0.6589687903664515, 0.6588441662822848, 0.6587392368758473, 0.6582775792407289, 0.6574998653339004, 0.6567841829138991, 0.6563508727654412, 0.6559453873410337, 0.6555644700437654, 0.6552053995482314, 0.6548658789419732, 0.6550942850674342, 0.6553123140404743, 0.6555208827378142, 0.6557207908199741, 0.6559127399260125, 0.6571838069583065, 0.6583522386548688, 0.6594338914698192, 0.6604411704635248, 0.6613839691990173, 0.6636355696065251, 0.6657661449928376, 0.6677885520040153, 0.6697136711500429, 0.6715507954855992, 0.6733359933483186, 0.675004441815851, 0.6765716010112777, 0.6780499542171167, 0.6794497293616617, 0.6825891594767797, 0.6855787814592696, 0.6884327663754038, 0.6911633394058351, 0.6937811393950734, 0.7153296345413931, 0.7388630567264752, 0.757760970392379, 0.7748092115159706, 0.7895849784855333], "ZhaoEtAl2006Asc": [0.7182450835195463, 0.7506639297268827, 0.773692445355388, 0.7742426949440069, 0.7747562131314576, 0.7752380083676326, 0.7756921005392341, 0.7761217687966238, 0.7722802122118468, 0.7686816302832236, 0.7652978000089461, 0.7621051205205831, 0.7590836581036374, 0.7527411427191135, 0.7469669808073841, 0.7420715684469914, 0.737937653530582, 0.7340980860893183, 0.7361369393640627, 0.7381859520934553, 0.7402355419892188, 0.742278578508789, 0.7443097473498517, 0.742335679184848, 0.7404545736561577, 0.738658122565803, 0.7369390821527303, 0.7352910988173323, 0.7379520988250339, 0.740412047443854, 0.7404445155327583, 0.740476198131986, 0.7394343405313084, 0.7384747795287256, 0.7392130426477722, 0.739941213881211, 0.7393596516299581, 0.7388457213789629, 0.7351693539973224, 0.7319349648403927, 0.7305923515994256, 0.7308572357662626, 0.731116953708502, 0.7299943092840001, 0.7289730120917091, 0.7280397460331555, 0.7271835291354093, 0.7263952092353033, 0.722615388709651, 0.7022345940403416, 0.6993382586416962, null, null], "AkkarEtAlRjb2014": [0.7514019230744622, 0.7618002165922506, 0.7812130887280371, 0.7843878186203557, 0.7872884350731948, 0.7888397175599109, 0.7880527203176194, 0.7832053689805758, 0.7820091303814809, 0.7802584764038133, 0.7777611201390823, 0.7722903145838357, 0.7675740290030663, 0.7659554099293248, 0.7656047609569836, 0.763642691315775, 0.7585720071291848, 0.7622903449473829, 0.7695561837838741, 0.7700516995630878, 0.7731754005398775, 0.7773430967082682, 0.7781211538057553, 0.7743934142281944, 0.7716211635252107, 0.7700825020736414, 0.7677765560369761, 0.7653403491257991, 0.7721667501259039, 0.7774348847331203, 0.7826651902314297, 0.7869856478996297, 0.7863039170702382, 0.7803674262807232, 0.7799564731444953, 0.782871892457508, 0.7834978621540712, 0.7849243148227731, 0.7890588064269988, 0.7979061912280165, 0.7981296761805065, 0.8073204877866038, 0.8108963990547745, 0.8147434749662007, 0.8129160596273148, 0.8136103551455082, 0.8174336731503052, 0.8150865291488997, 0.8082581580163606, null, null, null, null], "BindiEtAl2014Rjb": [0.767508805710641, 0.7836029248110283, 0.7975671219261845, 0.7951428431878028, 0.7929296500990229, 0.7908937098167379, 0.789008723537143, 0.7872538432946641, 0.7839643806847408, 0.7808744055320594, 0.7779610994653116, 0.7752053483316296, 0.7725909814224782, 0.7747507465976511, 0.7767224577228621, 0.7785362561325888, 0.7768990288937333, 0.7753748067999079, 0.776151571674347, 0.7768812301158964, 0.7775691703935314, 0.775896019519639, 0.7743087099018517, 0.776729817038814, 0.7790382729291059, 0.7812440962019498, 0.7840965122991578, 0.7868324702226462, 0.790047543272952, 0.7929826750060335, 0.7946565385529079, 0.796206294136225, 0.7955067520351479, 0.7948523741015445, 0.8011539424069896, 0.807095219040994, 0.8136531197119701, 0.8198745663071109, 0.8202401036353644, 0.8205738130705763, 0.8208807959927493, 0.828430166458295, 0.8354584622164946, 0.8372393974217929, 0.8389123288958596, 0.8404896106446865, 0.8450234241355936, 0.8493246296465048, 0.8297894977175432, null, null, null, null], "CauzziEtAl2014": [0.8227964012485014, 0.8511727469660871, 0.8522195907509933, 0.8511643031364848, 0.8502009010251153, 0.849314656993124, 0.8484941231811982, 0.8477302244778377, 0.844245105878018, 0.8409713401738255, 0.8378847517658702, 0.8349650895987134, 0.832195221136202, 0.8257570491113541, 0.8198794585504274, 0.8170632016931386, 0.8169522037957349, 0.8168488672254801, 0.8224839554274542, 0.8277773071362535, 0.8312046299407523, 0.832924896120847, 0.8345569037869973, 0.8347880057508652, 0.8350083548141528, 0.8381071614360578, 0.8439015220480752, 0.8494593110549161, 0.8620985209858882, 0.8659787163104777, 0.8690536448522258, 0.8649731696879183, 0.8607944161115274, 0.8564544999373845, 0.8585000380163414, 0.8639075295473256, 0.8639996869785381, 0.8640808992911826, 0.8676581859365654, 0.8653514794289309, 0.8659400099950524, 0.8658508848376814, 0.8637958249184655, 0.8606244209148295, 0.854686846727022, 0.8502168157395237, 0.8469379501245717, 0.8471602031577969, 0.8388582348773796, 0.8329785027146948, 0.8235861763604481, 0.8043912561154009, 0.7772100228597301], "DerrasEtAl2014": [0.7480035478517366, 0.7562896733768881, 0.7717061638741622, 0.7799919911635539, 0.7780012184339148, 0.7768452564218975, 0.7799919911635539, 0.7768452564218975, 0.7717061638741622, 0.7697146252705663, 0.7665672007584541, 0.7582815111034834, 0.7551355809244937, 0.7551355809244937, 0.7511511145682411, 0.7480035478517366, 0.7417112320434819, 0.7417112320434819, 0.7499961841469494, 0.7551355809244937, 0.7582815111034834, 0.7614283696954255, 0.7582815111034834, 0.7562896733768881, 0.7531424628511735, 0.7531424628511735, 0.7551355809244937, 0.7531424628511735, 0.7582815111034834, 0.7614283696954255, 0.7634206899176481, 0.7634206899176481, 0.7645761452367758, 0.7634206899176481, 0.7582815111034834, 0.7614283696954255, 0.7665672007584541, 0.7717061638741622, 0.7799919911635539, 0.7902698805645967, 0.7965646616362811, 0.811980441655112, 0.8202666515897504, 0.8254052987450918, 0.8325365697570533, 0.8408219808864074, 0.8491077178141273, 0.8479549021314452, 0.8676713813383503, null, null, null, null], "AbrahamsonEtAl2014": [0.6589129635762885, 0.6666206450274426, 0.6705949932729538, 0.6691796475905702, 0.6678979754759102, 0.6667268581807807, 0.6655830825111853, 0.664519375187812, 0.6636436807210286, 0.6628217674658975, 0.6620474483803821, 0.6613155444042412, 0.6606216769074414, 0.6602894047156356, 0.6599861592699597, 0.6608478906059959, 0.6627476126571613, 0.664519375187812, 0.6653958081134694, 0.6662197603387271, 0.6669971954338321, 0.6677331131474143, 0.6684317467026831, 0.6698038629081495, 0.6711137694369091, 0.6723669191701822, 0.6735680754778466, 0.6747214239966003, 0.6776908379653258, 0.6804085379254715, 0.682914273486536, 0.6852390332401535, 0.6874074483157715, 0.6904516224232379, 0.6933181185004319, 0.6960267988170161, 0.698594354689868, 0.7010349492001093, 0.7031205652077677, 0.7050274766872244, 0.7067840840128138, 0.7084124994226925, 0.7099302782668168, 0.7119339315576076, 0.7138187224621422, 0.7155980813317264, 0.7172832768505959, 0.7188838571007141, 0.7099302782668168, 0.7010376577190217, 0.7034550447612129, 0.7091191719309244, 0.7172516991963142], "BooreEtAl2014": [0.7023813508957266, 0.7386338583622668, 0.7438097381447721, 0.7413872626531706, 0.7371239773566992, 0.7318366531181326, 0.7196207653688673, 0.7129484149991457, 0.7048611127497043, 0.6973082501396038, 0.6893847764325448, 0.68200866793334, 0.6762136984720623, 0.670690945337507, 0.6667970455251334, 0.6598308735213828, 0.6577699142484755, 0.656162124852797, 0.6570980794061261, 0.65799174353328, 0.6592799511477567, 0.6593427697619939, 0.6601309579208653, 0.6623220971337362, 0.6636052910414213, 0.6706168832183843, 0.673819106289213, 0.6785837314422012, 0.6836553017075615, 0.6885769882899025, 0.6944490350862863, 0.7053601861042068, 0.709771795382061, 0.7134701277379023, 0.7161091132907758, 0.7183973007325428, 0.7196344305700018, 0.7191222214475177, 0.7188938833020749, 0.7187606303109828, 0.7183099670942703, 0.7170619306061218, 0.7170517333709334, 0.7169334254962, 0.717967688072824, 0.7186205485212018, 0.7199661718892839, 0.7213915700234037, 0.734998762500311, 0.7287202704709963, 0.7198029026931713, 0.7003575946675089, 0.6661729936962122], "ChiouYoungs2014": [0.6508800952451519, 0.6639237616661957, 0.6732471092942615, 0.6763007260240332, 0.6790877508060793, 0.6816116624268023, 0.6839479896130709, 0.6861226715404743, 0.6880812499149757, 0.6899208449274652, 0.6916301877903623, 0.6932469785907543, 0.694780726151393, 0.697486875903678, 0.6999570479689321, 0.7022049015218993, 0.7042625047298035, 0.7061778633854341, 0.7079089847364263, 0.7095349142494192, 0.71106770219488, 0.7125174424277361, 0.7138926750850167, 0.7150922879557098, 0.7162359919705573, 0.7173287689419817, 0.7183749632320039, 0.7193783863754426, 0.7202943981499909, 0.7211307656558488, 0.7219003193474082, 0.7226130132085993, 0.7232767259240398, 0.7230843304877929, 0.7229045034077014, 0.7227357737833109, 0.7225769113064261, 0.7224268769470097, 0.7215873057230742, 0.7208238647030077, 0.7201241026824391, 0.7194783650393675, 0.7188790106628504, 0.718330273249795, 0.7178148195307984, 0.7173286957344579, 0.7168686207375904, 0.716431854596991, 0.710998697081585, 0.7070252154382715, 0.7038444892161905, 0.6980384646358044, 0.6939040782253537], "CampbellBozorgnia2014": [0.6418438068749893, 0.6733408555064057, 0.689706157916619, 0.6841409296205501, 0.6791329624883525, 0.6745885677407661, 0.670435472193185, 0.6666167941783528, 0.6620230679854441, 0.6578537542099805, 0.6540437857018426, 0.6505084859679864, 0.6472619253439832, 0.6398376467596227, 0.633117902859703, 0.6325623027986392, 0.6375594066379565, 0.6423581555487562, 0.6436196011056469, 0.6449388595936285, 0.6463011266697495, 0.6476948480621363, 0.6491109304271497, 0.6526199615856915, 0.6559702990386298, 0.6591757934325532, 0.662248551643364, 0.665199218279757, 0.6759031376738889, 0.685842460976842, 0.6951207792960601, 0.7038219403320863, 0.7120147470382899, 0.7138152098219914, 0.7155506654430743, 0.7172258101397948, 0.7188448775373711, 0.7204116878563257, 0.7206922940056525, 0.7211317835502621, 0.7216903091988284, 0.722338888378088, 0.7230560144276513, 0.720376354017737, 0.7178645211342529, 0.7155010730440174, 0.7132697470726926, 0.7111568040875373, 0.7127222460397878, 0.6833334731688543, 0.6934277179346093, 0.6999714279883145, 0.6976338581232996], "KothaEtAl2016Italy": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Other": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Turkey": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "ZhaoEtAl2016Asc": [0.7278021709228408, 0.7771923607729061, 0.7889746510503364, 0.7888959212336364, 0.7890614678211072, 0.7851281052125924, 0.7816425014032949, 0.7779203044014215, 0.7731086598919974, 0.7761173983202411, 0.7789736837660179, 0.7791911134846302, 0.7795800151363553, 0.7766382892032334, 0.7740180644188175, 0.7720311021061312, 0.7705648785799881, 0.7692073842599275, 0.766046367881938, 0.7631174300150125, 0.7612176286655891, 0.7602584084081757, 0.7593800102715372, 0.7578610029858904, 0.7564140577504519, 0.7557303288152079, 0.755759754366926, 0.7557889917166034, 0.7583354500048901, 0.7606608968522045, 0.7631020746294933, 0.7653757247260983, 0.7691875558842282, 0.7727612826740222, 0.7743360885814617, 0.7758382563395544, 0.7755282571597322, 0.7752418977325723, 0.7735036933590107, 0.7719507714502052, 0.7702744781684243, 0.768462553483211, 0.7667757168820619, 0.7601190589317046, 0.7538661239670975, 0.7479707310064135, 0.7423941959549901, 0.7371037918773719, 0.6935776813018135, 0.6711784838363779, 0.6674346409949068, null, null], "BindiEtAl2017Rjb": [0.8956331632638443, 0.9102791622310158, 0.8915155151364446, 0.8806585598045363, 0.8721652361020817, 0.8619419154403619, 0.8550128842654946, 0.8491152000035095, 0.8447656795449257, 0.8366782265626375, 0.8275006067816506, 0.8172995224775309, 0.8080404663938557, 0.7924747477522548, 0.7795574303237702, 0.7710831262483961, 0.769626786282806, 0.76591816967415, 0.7607563726975937, 0.7551967045809985, 0.754068674194201, 0.7529532354190398, 0.753290637075757, 0.7502801781021541, 0.7481368979070608, 0.7452829309228811, 0.744935586376433, 0.7429570035129893, 0.7427907895019971, 0.749116576052753, 0.752806138934188, 0.7550676921627624, 0.7578875529852697, 0.7608282259360519, 0.7662748560588426, 0.7730108730438402, 0.7813574041608615, 0.7846822749227867, 0.789886878445262, 0.7944460849485006, 0.8013772027584762, 0.8038704516730292, 0.8107071945782892, 0.81029164015927, 0.8135451438297693, 0.8173261525859796, 0.8122649177017311, 0.8089673416900092, 0.7905637556402394, null, null, null, null]}}, {"ylabel": "Sa (g)", "magnitude": 7.0, "distance": 5.0, "row": 3, "column": 0, "yvalues": {"AkkarBommer2010": [0.6844817131851617, 0.6837362987816263, 0.683207418845582, 0.68672541913679, 0.6899371017735907, 0.6928915634006979, 0.6956269676162063, 0.6981735680158769, 0.6976000490734018, 0.6970613108380154, 0.6965533749187963, 0.6960729087565891, 0.6956170929827741, 0.6971778901534045, 0.6986027863323532, 0.7005012687446854, 0.7028253341764217, 0.7049889873300449, 0.7148224968535273, 0.7240596591789342, 0.7299358053141418, 0.732736803570049, 0.735394096191045, 0.7396101101089319, 0.7436299578941521, 0.7480893213112024, 0.7529640884143824, 0.7576398289888938, 0.7653446494262519, 0.766693379434133, 0.777923934283979, 0.7812641010612377, 0.7776172138314966, 0.7663280282574274, 0.7598439394252159, 0.7570802432466689, 0.752561463750785, 0.7489709391989503, 0.7433871979794608, 0.7409032244431811, 0.7378155982911665, 0.7422539024380507, 0.7359252519151268, 0.7357897954392761, 0.7435592056910777, 0.7473398109449241, 0.7490163484795692, 0.7561064684979164, 0.7794038310516823, null, null, null, null], "CauzziFaccioli2008": [0.8219379128089427, 0.8393387142592592, 0.8516847793668235, 0.8518298896882702, 0.8519623650325663, 0.8520842305359557, 0.8521970603688558, 0.8523021024302553, 0.8540729263581883, 0.85573635974715, 0.8573046864631392, 0.8587881962717722, 0.8601955943875482, 0.8525571104939933, 0.8455837210506426, 0.8381755704576738, 0.8303595392994786, 0.8230829883756888, 0.8232713592759195, 0.8234483065375926, 0.8233005200716469, 0.8228544967873165, 0.8224313567943714, 0.8196750153732449, 0.8170469232528611, 0.8178450428198889, 0.8218488981437654, 0.8256892844424486, 0.8260503297850302, 0.8211780597282549, 0.817439812829779, 0.8174315235234442, 0.8120846906790027, 0.8051021013844982, 0.8068610461370364, 0.8163400981893651, 0.8162896715758283, 0.8194244109214306, 0.8192920122785835, 0.8136785400803733, 0.8135348587705703, 0.8118129856380293, 0.8051582844607673, 0.7942350510381128, 0.7824361445045926, 0.7735861586996702, 0.7667493230415523, 0.7595645667758829, 0.6982775803896976, 0.6704283771676394, 0.6462004738584699, 0.6007518190344441, 0.5626092667104884], "ChiouYoungs2008": [0.5603781384602162, 0.5706147937204245, 0.5766953456539113, 0.5784763208727381, 0.5801064565645668, 0.5816095663970106, 0.5830042168155066, 0.5843051661762898, 0.5853304884356857, 0.5862899336958909, 0.5871914530587035, 0.5880416496287099, 0.5888460652248241, 0.5907988338096442, 0.5925578353454154, 0.5939624107116515, 0.5950584954359307, 0.5960655748689097, 0.597506152623033, 0.5988457825545473, 0.6000974773369723, 0.6012719278466857, 0.602378017604684, 0.6041643250165708, 0.6058611379564388, 0.6074769216936656, 0.609019005835355, 0.6104937774490193, 0.6148075416314134, 0.6187302088532307, 0.6223271374314074, 0.625648603463509, 0.6287341010485938, 0.6326816974762641, 0.6364018667654721, 0.6399198802520047, 0.6432569981825991, 0.6464312791964041, 0.6499924982030567, 0.6532901456068937, 0.6563627890388702, 0.6592410202167858, 0.6619495447153402, 0.665869245289199, 0.6695802454042216, 0.673104154118338, 0.6764608522866594, 0.679669075671972, 0.7030383557027008, 0.7282972731554799, 0.7477927741025585, 0.7652549333392108, 0.78030565357429], "ZhaoEtAl2006Asc": [0.7182450835195463, 0.7506639297268827, 0.773692445355388, 0.7742426949440069, 0.7747562131314576, 0.7752380083676326, 0.7756921005392341, 0.7761217687966238, 0.7722802122118468, 0.7686816302832236, 0.7652978000089461, 0.7621051205205831, 0.7590836581036374, 0.7527411427191135, 0.7469669808073841, 0.7420715684469914, 0.737937653530582, 0.7340980860893183, 0.7361369393640627, 0.7381859520934553, 0.7402355419892188, 0.742278578508789, 0.7443097473498517, 0.742335679184848, 0.7404545736561577, 0.738658122565803, 0.7369390821527303, 0.7352910988173323, 0.7379520988250339, 0.740412047443854, 0.7404445155327583, 0.740476198131986, 0.7394343405313084, 0.7384747795287256, 0.7392130426477722, 0.739941213881211, 0.7393596516299581, 0.7388457213789629, 0.7351693539973224, 0.7319349648403927, 0.7305923515994256, 0.7308572357662626, 0.731116953708502, 0.7299943092840001, 0.7289730120917091, 0.7280397460331555, 0.7271835291354093, 0.7263952092353033, 0.722615388709651, 0.7022345940403416, 0.6993382586416962, null, null], "AkkarEtAlRjb2014": [0.7514019230744622, 0.7618002165922506, 0.7812130887280371, 0.7843878186203557, 0.7872884350731948, 0.7888397175599109, 0.7880527203176194, 0.7832053689805758, 0.7820091303814809, 0.7802584764038133, 0.7777611201390823, 0.7722903145838357, 0.7675740290030663, 0.7659554099293248, 0.7656047609569836, 0.763642691315775, 0.7585720071291848, 0.7622903449473829, 0.7695561837838741, 0.7700516995630878, 0.7731754005398775, 0.7773430967082682, 0.7781211538057553, 0.7743934142281944, 0.7716211635252107, 0.7700825020736414, 0.7677765560369761, 0.7653403491257991, 0.7721667501259039, 0.7774348847331203, 0.7826651902314297, 0.7869856478996297, 0.7863039170702382, 0.7803674262807232, 0.7799564731444953, 0.782871892457508, 0.7834978621540712, 0.7849243148227731, 0.7890588064269988, 0.7979061912280165, 0.7981296761805065, 0.8073204877866038, 0.8108963990547745, 0.8147434749662007, 0.8129160596273148, 0.8136103551455082, 0.8174336731503052, 0.8150865291488997, 0.8082581580163606, null, null, null, null], "BindiEtAl2014Rjb": [0.767508805710641, 0.7836029248110283, 0.7975671219261845, 0.7951428431878028, 0.7929296500990229, 0.7908937098167379, 0.789008723537143, 0.7872538432946641, 0.7839643806847408, 0.7808744055320594, 0.7779610994653116, 0.7752053483316296, 0.7725909814224782, 0.7747507465976511, 0.7767224577228621, 0.7785362561325888, 0.7768990288937333, 0.7753748067999079, 0.776151571674347, 0.7768812301158964, 0.7775691703935314, 0.775896019519639, 0.7743087099018517, 0.776729817038814, 0.7790382729291059, 0.7812440962019498, 0.7840965122991578, 0.7868324702226462, 0.790047543272952, 0.7929826750060335, 0.7946565385529079, 0.796206294136225, 0.7955067520351479, 0.7948523741015445, 0.8011539424069896, 0.807095219040994, 0.8136531197119701, 0.8198745663071109, 0.8202401036353644, 0.8205738130705763, 0.8208807959927493, 0.828430166458295, 0.8354584622164946, 0.8372393974217929, 0.8389123288958596, 0.8404896106446865, 0.8450234241355936, 0.8493246296465048, 0.8297894977175432, null, null, null, null], "CauzziEtAl2014": [0.8227964012485014, 0.8511727469660871, 0.8522195907509933, 0.8511643031364848, 0.8502009010251153, 0.849314656993124, 0.8484941231811982, 0.8477302244778377, 0.844245105878018, 0.8409713401738255, 0.8378847517658702, 0.8349650895987134, 0.832195221136202, 0.8257570491113541, 0.8198794585504274, 0.8170632016931386, 0.8169522037957349, 0.8168488672254801, 0.8224839554274542, 0.8277773071362535, 0.8312046299407523, 0.832924896120847, 0.8345569037869973, 0.8347880057508652, 0.8350083548141528, 0.8381071614360578, 0.8439015220480752, 0.8494593110549161, 0.8620985209858882, 0.8659787163104777, 0.8690536448522258, 0.8649731696879183, 0.8607944161115274, 0.8564544999373845, 0.8585000380163414, 0.8639075295473256, 0.8639996869785381, 0.8640808992911826, 0.8676581859365654, 0.8653514794289309, 0.8659400099950524, 0.8658508848376814, 0.8637958249184655, 0.8606244209148295, 0.854686846727022, 0.8502168157395237, 0.8469379501245717, 0.8471602031577969, 0.8388582348773796, 0.8329785027146948, 0.8235861763604481, 0.8043912561154009, 0.7772100228597301], "DerrasEtAl2014": [0.7480035478517366, 0.7562896733768881, 0.7717061638741622, 0.7799919911635539, 0.7780012184339148, 0.7768452564218975, 0.7799919911635539, 0.7768452564218975, 0.7717061638741622, 0.7697146252705663, 0.7665672007584541, 0.7582815111034834, 0.7551355809244937, 0.7551355809244937, 0.7511511145682411, 0.7480035478517366, 0.7417112320434819, 0.7417112320434819, 0.7499961841469494, 0.7551355809244937, 0.7582815111034834, 0.7614283696954255, 0.7582815111034834, 0.7562896733768881, 0.7531424628511735, 0.7531424628511735, 0.7551355809244937, 0.7531424628511735, 0.7582815111034834, 0.7614283696954255, 0.7634206899176481, 0.7634206899176481, 0.7645761452367758, 0.7634206899176481, 0.7582815111034834, 0.7614283696954255, 0.7665672007584541, 0.7717061638741622, 0.7799919911635539, 0.7902698805645967, 0.7965646616362811, 0.811980441655112, 0.8202666515897504, 0.8254052987450918, 0.8325365697570533, 0.8408219808864074, 0.8491077178141273, 0.8479549021314452, 0.8676713813383503, null, null, null, null], "AbrahamsonEtAl2014": [0.6122140272264444, 0.6124824754238726, 0.6206520188328347, 0.6245321803708893, 0.6290240237214255, 0.6339556005112779, 0.632752589662888, 0.6316335963198918, 0.6307122441818889, 0.6298473588311825, 0.629032450599311, 0.6282620864501357, 0.627531672507452, 0.6271818699386394, 0.6268626088928201, 0.6277698101361632, 0.6297693213254887, 0.6316335963198918, 0.6325555955447529, 0.6334222675796857, 0.6342399062788446, 0.6350137875617644, 0.6357483778980486, 0.6371908778118839, 0.6385676875068271, 0.6398845786502456, 0.6411465918983973, 0.6423581555487562, 0.6454764688678786, 0.6483292207527576, 0.650958451002553, 0.653396918171413, 0.6556706490304413, 0.6588614747478271, 0.6618647999712471, 0.6647016659159679, 0.6673897455044938, 0.6699440275127467, 0.6721261259749473, 0.6741207183316315, 0.6759576476480108, 0.6776601429465261, 0.6792466415080755, 0.6813405337296999, 0.6833097164079293, 0.6851683107132496, 0.6869281616366653, 0.6885993029331354, 0.6792466415080755, 0.6699468617287286, 0.6724760218773603, 0.6783988502348747, 0.6868951885113186], "BooreEtAl2014": [0.6815423684555495, 0.7147866814651768, 0.7088335488674333, 0.70356307464221, 0.696420849774043, 0.688726360755852, 0.671400029788501, 0.6625050943200362, 0.652441568264929, 0.6440069875397316, 0.6352771048920306, 0.6271722251503171, 0.6212905922352278, 0.6157247761784481, 0.6118300417599646, 0.6062384019509157, 0.6053527897020051, 0.6059389408182974, 0.6083461185871082, 0.6102655159846408, 0.6137752031485143, 0.6149666657632753, 0.6168468205316454, 0.6196684597427885, 0.6218890576300566, 0.6301745789858553, 0.6340236588645568, 0.639513096034788, 0.6450193795538239, 0.650902450448606, 0.6575484773003433, 0.6706153890271234, 0.6764909459852364, 0.6815071533006826, 0.6852634529872434, 0.6890718395058675, 0.6916010410634154, 0.6924081166479781, 0.693238775603327, 0.6940929332589405, 0.6945250175479643, 0.6940778054368256, 0.6945401356293242, 0.6950165465656195, 0.6963942848702881, 0.6973184351499679, 0.6987131027825368, 0.7001178472228801, 0.7081645289055362, 0.7079950564799163, 0.7064764681148269, 0.6890979611056762, 0.6495667787071626], "ChiouYoungs2014": [0.582929636623307, 0.5939013423760927, 0.6024498387213777, 0.6056608272018729, 0.6085928760709676, 0.6114247326369202, 0.6140455024169112, 0.6164844109214034, 0.6188027560941539, 0.6209765000291931, 0.6231289124339588, 0.6251582542297143, 0.6270776125466635, 0.6306551749616286, 0.6338943043543647, 0.6368798383635832, 0.6396497295919175, 0.642210441718979, 0.6445394198708079, 0.6467134401279523, 0.64875153193215, 0.6506694613496387, 0.6524804315424017, 0.6541719226945193, 0.6557781935174134, 0.6573073311778239, 0.6587663360170266, 0.6601613067854053, 0.663407760512739, 0.6663463040518856, 0.6690301519201283, 0.6714999229352563, 0.6737873060081415, 0.6758326251271243, 0.6777489929483158, 0.67955169167626, 0.681253457639441, 0.682865015821565, 0.6856863235223614, 0.6882653678847692, 0.690641025080665, 0.6928435551781278, 0.69489698900438, 0.6951149862448877, 0.6953037804598946, 0.6954678829431755, 0.6956123024422775, 0.6957426905645996, 0.6902592199808163, 0.6869608484124351, 0.6838260560990639, 0.6778451939786843, 0.6735783933589319], "CampbellBozorgnia2014": [0.6088804558548865, 0.6356997918436962, 0.6554333078417782, 0.6536219779008162, 0.6525315778864024, 0.6520165823756814, 0.6519675007701015, 0.6523002264092983, 0.6527410965634132, 0.6536463531604767, 0.6540437857018426, 0.6505084859679864, 0.6472619253439832, 0.6398376467596227, 0.633117902859703, 0.6325623027986392, 0.6375594066379565, 0.6423581555487562, 0.6436196011056469, 0.6449388595936285, 0.6463011266697495, 0.6476948480621363, 0.6491109304271497, 0.6526199615856915, 0.6559702990386298, 0.6591757934325532, 0.662248551643364, 0.665199218279757, 0.6759031376738889, 0.685842460976842, 0.6951207792960601, 0.7038219403320863, 0.7120147470382899, 0.7138152098219914, 0.7155506654430743, 0.7172258101397948, 0.7188448775373711, 0.7204116878563257, 0.7206922940056525, 0.7211317835502621, 0.7216903091988284, 0.722338888378088, 0.7230560144276513, 0.720376354017737, 0.7178645211342529, 0.7155010730440174, 0.7132697470726926, 0.7111568040875373, 0.7127222460397878, 0.6833334731688543, 0.6934277179346093, 0.6999714279883145, 0.6976338581232996], "KothaEtAl2016Italy": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Other": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Turkey": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "ZhaoEtAl2016Asc": [0.7278021709228408, 0.7771923607729061, 0.7889746510503364, 0.7888959212336364, 0.7890614678211072, 0.7851281052125924, 0.7816425014032949, 0.7779203044014215, 0.7731086598919974, 0.7761173983202411, 0.7789736837660179, 0.7791911134846302, 0.7795800151363553, 0.7766382892032334, 0.7740180644188175, 0.7720311021061312, 0.7705648785799881, 0.7692073842599275, 0.766046367881938, 0.7631174300150125, 0.7612176286655891, 0.7602584084081757, 0.7593800102715372, 0.7578610029858904, 0.7564140577504519, 0.7557303288152079, 0.755759754366926, 0.7557889917166034, 0.7583354500048901, 0.7606608968522045, 0.7631020746294933, 0.7653757247260983, 0.7691875558842282, 0.7727612826740222, 0.7743360885814617, 0.7758382563395544, 0.7755282571597322, 0.7752418977325723, 0.7735036933590107, 0.7719507714502052, 0.7702744781684243, 0.768462553483211, 0.7667757168820619, 0.7601190589317046, 0.7538661239670975, 0.7479707310064135, 0.7423941959549901, 0.7371037918773719, 0.6935776813018135, 0.6711784838363779, 0.6674346409949068, null, null], "BindiEtAl2017Rjb": [0.8956331632638443, 0.9102791622310158, 0.8915155151364446, 0.8806585598045363, 0.8721652361020817, 0.8619419154403619, 0.8550128842654946, 0.8491152000035095, 0.8447656795449257, 0.8366782265626375, 0.8275006067816506, 0.8172995224775309, 0.8080404663938557, 0.7924747477522548, 0.7795574303237702, 0.7710831262483961, 0.769626786282806, 0.76591816967415, 0.7607563726975937, 0.7551967045809985, 0.754068674194201, 0.7529532354190398, 0.753290637075757, 0.7502801781021541, 0.7481368979070608, 0.7452829309228811, 0.744935586376433, 0.7429570035129893, 0.7427907895019971, 0.749116576052753, 0.752806138934188, 0.7550676921627624, 0.7578875529852697, 0.7608282259360519, 0.7662748560588426, 0.7730108730438402, 0.7813574041608615, 0.7846822749227867, 0.789886878445262, 0.7944460849485006, 0.8013772027584762, 0.8038704516730292, 0.8107071945782892, 0.81029164015927, 0.8135451438297693, 0.8173261525859796, 0.8122649177017311, 0.8089673416900092, 0.7905637556402394, null, null, null, null]}}, {"ylabel": "Sa (g)", "magnitude": 7.0, "distance": 20.0, "row": 3, "column": 1, "yvalues": {"AkkarBommer2010": [0.6844817131851617, 0.6837362987816263, 0.683207418845582, 0.68672541913679, 0.6899371017735907, 0.6928915634006979, 0.6956269676162063, 0.6981735680158769, 0.6976000490734018, 0.6970613108380154, 0.6965533749187963, 0.6960729087565891, 0.6956170929827741, 0.6971778901534045, 0.6986027863323532, 0.7005012687446854, 0.7028253341764217, 0.7049889873300449, 0.7148224968535273, 0.7240596591789342, 0.7299358053141418, 0.732736803570049, 0.735394096191045, 0.7396101101089319, 0.7436299578941521, 0.7480893213112024, 0.7529640884143824, 0.7576398289888938, 0.7653446494262519, 0.766693379434133, 0.777923934283979, 0.7812641010612377, 0.7776172138314966, 0.7663280282574274, 0.7598439394252159, 0.7570802432466689, 0.752561463750785, 0.7489709391989503, 0.7433871979794608, 0.7409032244431811, 0.7378155982911665, 0.7422539024380507, 0.7359252519151268, 0.7357897954392761, 0.7435592056910777, 0.7473398109449241, 0.7490163484795692, 0.7561064684979164, 0.7794038310516823, null, null, null, null], "CauzziFaccioli2008": [0.8219379128089427, 0.8393387142592592, 0.8516847793668235, 0.8518298896882702, 0.8519623650325663, 0.8520842305359557, 0.8521970603688558, 0.8523021024302553, 0.8540729263581883, 0.85573635974715, 0.8573046864631392, 0.8587881962717722, 0.8601955943875482, 0.8525571104939933, 0.8455837210506426, 0.8381755704576738, 0.8303595392994786, 0.8230829883756888, 0.8232713592759195, 0.8234483065375926, 0.8233005200716469, 0.8228544967873165, 0.8224313567943714, 0.8196750153732449, 0.8170469232528611, 0.8178450428198889, 0.8218488981437654, 0.8256892844424486, 0.8260503297850302, 0.8211780597282549, 0.817439812829779, 0.8174315235234442, 0.8120846906790027, 0.8051021013844982, 0.8068610461370364, 0.8163400981893651, 0.8162896715758283, 0.8194244109214306, 0.8192920122785835, 0.8136785400803733, 0.8135348587705703, 0.8118129856380293, 0.8051582844607673, 0.7942350510381128, 0.7824361445045926, 0.7735861586996702, 0.7667493230415523, 0.7595645667758829, 0.6982775803896976, 0.6704283771676394, 0.6462004738584699, 0.6007518190344441, 0.5626092667104884], "ChiouYoungs2008": [0.5613605272493163, 0.5724478300852583, 0.5789840019863773, 0.5807492830287582, 0.5823638177885488, 0.5838516162591346, 0.5852313517151652, 0.5865178367980033, 0.5874471685026212, 0.588319975920022, 0.5891428369841747, 0.5899212436649675, 0.590659828333597, 0.5924436753930152, 0.5940597991070451, 0.5953350118689068, 0.5963128200698471, 0.597216694350319, 0.5985680809431975, 0.5998281196445728, 0.6010083568511869, 0.6021183004802063, 0.6031658692196898, 0.6049029865039505, 0.6065543757963117, 0.6081280845223513, 0.6096310838119826, 0.6110694514630798, 0.6153026812785296, 0.6191571813020547, 0.622695777048524, 0.6259668531337419, 0.6290084660197512, 0.6329299244579881, 0.6366261819960749, 0.6401222371689327, 0.6434391223027578, 0.6465947047889634, 0.6501531869996647, 0.6534462048814881, 0.6565125198449866, 0.6593828782674325, 0.6620821105637009, 0.6660331777426923, 0.6697778298350504, 0.6733365433881394, 0.6767277288401615, 0.6799683209109654, 0.7033142656301249, 0.7283314774674102, 0.7477927741025585, 0.7652549333392108, 0.78030565357429], "ZhaoEtAl2006Asc": [0.7182450835195463, 0.7506639297268827, 0.773692445355388, 0.7742426949440069, 0.7747562131314576, 0.7752380083676326, 0.7756921005392341, 0.7761217687966238, 0.7722802122118468, 0.7686816302832236, 0.7652978000089461, 0.7621051205205831, 0.7590836581036374, 0.7527411427191135, 0.7469669808073841, 0.7420715684469914, 0.737937653530582, 0.7340980860893183, 0.7361369393640627, 0.7381859520934553, 0.7402355419892188, 0.742278578508789, 0.7443097473498517, 0.742335679184848, 0.7404545736561577, 0.738658122565803, 0.7369390821527303, 0.7352910988173323, 0.7379520988250339, 0.740412047443854, 0.7404445155327583, 0.740476198131986, 0.7394343405313084, 0.7384747795287256, 0.7392130426477722, 0.739941213881211, 0.7393596516299581, 0.7388457213789629, 0.7351693539973224, 0.7319349648403927, 0.7305923515994256, 0.7308572357662626, 0.731116953708502, 0.7299943092840001, 0.7289730120917091, 0.7280397460331555, 0.7271835291354093, 0.7263952092353033, 0.722615388709651, 0.7022345940403416, 0.6993382586416962, null, null], "AkkarEtAlRjb2014": [0.7514019230744622, 0.7618002165922506, 0.7812130887280371, 0.7843878186203557, 0.7872884350731948, 0.7888397175599109, 0.7880527203176194, 0.7832053689805758, 0.7820091303814809, 0.7802584764038133, 0.7777611201390823, 0.7722903145838357, 0.7675740290030663, 0.7659554099293248, 0.7656047609569836, 0.763642691315775, 0.7585720071291848, 0.7622903449473829, 0.7695561837838741, 0.7700516995630878, 0.7731754005398775, 0.7773430967082682, 0.7781211538057553, 0.7743934142281944, 0.7716211635252107, 0.7700825020736414, 0.7677765560369761, 0.7653403491257991, 0.7721667501259039, 0.7774348847331203, 0.7826651902314297, 0.7869856478996297, 0.7863039170702382, 0.7803674262807232, 0.7799564731444953, 0.782871892457508, 0.7834978621540712, 0.7849243148227731, 0.7890588064269988, 0.7979061912280165, 0.7981296761805065, 0.8073204877866038, 0.8108963990547745, 0.8147434749662007, 0.8129160596273148, 0.8136103551455082, 0.8174336731503052, 0.8150865291488997, 0.8082581580163606, null, null, null, null], "BindiEtAl2014Rjb": [0.767508805710641, 0.7836029248110283, 0.7975671219261845, 0.7951428431878028, 0.7929296500990229, 0.7908937098167379, 0.789008723537143, 0.7872538432946641, 0.7839643806847408, 0.7808744055320594, 0.7779610994653116, 0.7752053483316296, 0.7725909814224782, 0.7747507465976511, 0.7767224577228621, 0.7785362561325888, 0.7768990288937333, 0.7753748067999079, 0.776151571674347, 0.7768812301158964, 0.7775691703935314, 0.775896019519639, 0.7743087099018517, 0.776729817038814, 0.7790382729291059, 0.7812440962019498, 0.7840965122991578, 0.7868324702226462, 0.790047543272952, 0.7929826750060335, 0.7946565385529079, 0.796206294136225, 0.7955067520351479, 0.7948523741015445, 0.8011539424069896, 0.807095219040994, 0.8136531197119701, 0.8198745663071109, 0.8202401036353644, 0.8205738130705763, 0.8208807959927493, 0.828430166458295, 0.8354584622164946, 0.8372393974217929, 0.8389123288958596, 0.8404896106446865, 0.8450234241355936, 0.8493246296465048, 0.8297894977175432, null, null, null, null], "CauzziEtAl2014": [0.8227964012485014, 0.8511727469660871, 0.8522195907509933, 0.8511643031364848, 0.8502009010251153, 0.849314656993124, 0.8484941231811982, 0.8477302244778377, 0.844245105878018, 0.8409713401738255, 0.8378847517658702, 0.8349650895987134, 0.832195221136202, 0.8257570491113541, 0.8198794585504274, 0.8170632016931386, 0.8169522037957349, 0.8168488672254801, 0.8224839554274542, 0.8277773071362535, 0.8312046299407523, 0.832924896120847, 0.8345569037869973, 0.8347880057508652, 0.8350083548141528, 0.8381071614360578, 0.8439015220480752, 0.8494593110549161, 0.8620985209858882, 0.8659787163104777, 0.8690536448522258, 0.8649731696879183, 0.8607944161115274, 0.8564544999373845, 0.8585000380163414, 0.8639075295473256, 0.8639996869785381, 0.8640808992911826, 0.8676581859365654, 0.8653514794289309, 0.8659400099950524, 0.8658508848376814, 0.8637958249184655, 0.8606244209148295, 0.854686846727022, 0.8502168157395237, 0.8469379501245717, 0.8471602031577969, 0.8388582348773796, 0.8329785027146948, 0.8235861763604481, 0.8043912561154009, 0.7772100228597301], "DerrasEtAl2014": [0.7480035478517366, 0.7562896733768881, 0.7717061638741622, 0.7799919911635539, 0.7780012184339148, 0.7768452564218975, 0.7799919911635539, 0.7768452564218975, 0.7717061638741622, 0.7697146252705663, 0.7665672007584541, 0.7582815111034834, 0.7551355809244937, 0.7551355809244937, 0.7511511145682411, 0.7480035478517366, 0.7417112320434819, 0.7417112320434819, 0.7499961841469494, 0.7551355809244937, 0.7582815111034834, 0.7614283696954255, 0.7582815111034834, 0.7562896733768881, 0.7531424628511735, 0.7531424628511735, 0.7551355809244937, 0.7531424628511735, 0.7582815111034834, 0.7614283696954255, 0.7634206899176481, 0.7634206899176481, 0.7645761452367758, 0.7634206899176481, 0.7582815111034834, 0.7614283696954255, 0.7665672007584541, 0.7717061638741622, 0.7799919911635539, 0.7902698805645967, 0.7965646616362811, 0.811980441655112, 0.8202666515897504, 0.8254052987450918, 0.8325365697570533, 0.8408219808864074, 0.8491077178141273, 0.8479549021314452, 0.8676713813383503, null, null, null, null], "AbrahamsonEtAl2014": [0.619845046744477, 0.6238011693302109, 0.6296523630571278, 0.630782130658993, 0.6322533064904926, 0.6339556005112779, 0.632752589662888, 0.6316335963198918, 0.6307122441818889, 0.6298473588311825, 0.629032450599311, 0.6282620864501357, 0.627531672507452, 0.6271818699386394, 0.6268626088928201, 0.6277698101361632, 0.6297693213254887, 0.6316335963198918, 0.6325555955447529, 0.6334222675796857, 0.6342399062788446, 0.6350137875617644, 0.6357483778980486, 0.6371908778118839, 0.6385676875068271, 0.6398845786502456, 0.6411465918983973, 0.6423581555487562, 0.6454764688678786, 0.6483292207527576, 0.650958451002553, 0.653396918171413, 0.6556706490304413, 0.6588614747478271, 0.6618647999712471, 0.6647016659159679, 0.6673897455044938, 0.6699440275127467, 0.6721261259749473, 0.6741207183316315, 0.6759576476480108, 0.6776601429465261, 0.6792466415080755, 0.6813405337296999, 0.6833097164079293, 0.6851683107132496, 0.6869281616366653, 0.6885993029331354, 0.6792466415080755, 0.6699468617287286, 0.6724760218773603, 0.6783988502348747, 0.6868951885113186], "BooreEtAl2014": [0.6815423684555495, 0.7147866814651768, 0.7088335488674333, 0.70356307464221, 0.696420849774043, 0.688726360755852, 0.671400029788501, 0.6625050943200362, 0.652441568264929, 0.6440069875397316, 0.6352771048920306, 0.6271722251503171, 0.6212905922352278, 0.6157247761784481, 0.6118300417599646, 0.6062384019509157, 0.6053527897020051, 0.6059389408182974, 0.6083461185871082, 0.6102655159846408, 0.6137752031485143, 0.6149666657632753, 0.6168468205316454, 0.6196684597427885, 0.6218890576300566, 0.6301745789858553, 0.6340236588645568, 0.639513096034788, 0.6450193795538239, 0.650902450448606, 0.6575484773003433, 0.6706153890271234, 0.6764909459852364, 0.6815071533006826, 0.6852634529872434, 0.6890718395058675, 0.6916010410634154, 0.6924081166479781, 0.693238775603327, 0.6940929332589405, 0.6945250175479643, 0.6940778054368256, 0.6945401356293242, 0.6950165465656195, 0.6963942848702881, 0.6973184351499679, 0.6987131027825368, 0.7001178472228801, 0.7081645289055362, 0.7079950564799163, 0.7064764681148269, 0.6890979611056762, 0.6495667787071626], "ChiouYoungs2014": [0.5837856734393233, 0.5954944279054986, 0.6045019962416556, 0.6077606153855601, 0.6107336616172778, 0.6135548415557649, 0.6161649604575222, 0.6185933105848751, 0.6208616852121877, 0.6229890848621918, 0.6250747292026639, 0.6270421814630027, 0.628903964728877, 0.6323443522216875, 0.6354639339812584, 0.6383397362373726, 0.6410078526133608, 0.6434774103080745, 0.6457201372911114, 0.647816090914025, 0.6497831592102037, 0.651636171844955, 0.6533875560433263, 0.6550245424367651, 0.6565803885779694, 0.6580627255197727, 0.659478163755099, 0.6608324667355521, 0.6639846678314125, 0.6668437579844241, 0.669459847073551, 0.6718712483690424, 0.6741079073807315, 0.6761221022479128, 0.678010194220806, 0.6797870983591187, 0.6814652426163266, 0.6830550919541345, 0.685871926671328, 0.6884446855079954, 0.690812468452829, 0.6930056975697735, 0.6950485177236193, 0.6952989477199408, 0.6955218819791146, 0.6957206438920761, 0.6958987562766282, 0.6960600996249109, 0.6905182027870639, 0.6869904609761666, 0.6838260560990639, 0.6778451939786843, 0.6735783933589319], "CampbellBozorgnia2014": [0.6272884795113539, 0.6565872927422093, 0.6745968268425437, 0.6707949485115647, 0.6675881159406716, 0.6648623054442886, 0.6625313332249085, 0.6605286915230146, 0.6581044840944354, 0.6560898818813639, 0.6540437857018426, 0.6505084859679864, 0.6472619253439832, 0.6398376467596227, 0.633117902859703, 0.6325623027986392, 0.6375594066379565, 0.6423581555487562, 0.6436196011056469, 0.6449388595936285, 0.6463011266697495, 0.6476948480621363, 0.6491109304271497, 0.6526199615856915, 0.6559702990386298, 0.6591757934325532, 0.662248551643364, 0.665199218279757, 0.6759031376738889, 0.685842460976842, 0.6951207792960601, 0.7038219403320863, 0.7120147470382899, 0.7138152098219914, 0.7155506654430743, 0.7172258101397948, 0.7188448775373711, 0.7204116878563257, 0.7206922940056525, 0.7211317835502621, 0.7216903091988284, 0.722338888378088, 0.7230560144276513, 0.720376354017737, 0.7178645211342529, 0.7155010730440174, 0.7132697470726926, 0.7111568040875373, 0.7127222460397878, 0.6833334731688543, 0.6934277179346093, 0.6999714279883145, 0.6976338581232996], "KothaEtAl2016Italy": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Other": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Turkey": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "ZhaoEtAl2016Asc": [0.7278021709228408, 0.7771923607729061, 0.7889746510503364, 0.7888959212336364, 0.7890614678211072, 0.7851281052125924, 0.7816425014032949, 0.7779203044014215, 0.7731086598919974, 0.7761173983202411, 0.7789736837660179, 0.7791911134846302, 0.7795800151363553, 0.7766382892032334, 0.7740180644188175, 0.7720311021061312, 0.7705648785799881, 0.7692073842599275, 0.766046367881938, 0.7631174300150125, 0.7612176286655891, 0.7602584084081757, 0.7593800102715372, 0.7578610029858904, 0.7564140577504519, 0.7557303288152079, 0.755759754366926, 0.7557889917166034, 0.7583354500048901, 0.7606608968522045, 0.7631020746294933, 0.7653757247260983, 0.7691875558842282, 0.7727612826740222, 0.7743360885814617, 0.7758382563395544, 0.7755282571597322, 0.7752418977325723, 0.7735036933590107, 0.7719507714502052, 0.7702744781684243, 0.768462553483211, 0.7667757168820619, 0.7601190589317046, 0.7538661239670975, 0.7479707310064135, 0.7423941959549901, 0.7371037918773719, 0.6935776813018135, 0.6711784838363779, 0.6674346409949068, null, null], "BindiEtAl2017Rjb": [0.8956331632638443, 0.9102791622310158, 0.8915155151364446, 0.8806585598045363, 0.8721652361020817, 0.8619419154403619, 0.8550128842654946, 0.8491152000035095, 0.8447656795449257, 0.8366782265626375, 0.8275006067816506, 0.8172995224775309, 0.8080404663938557, 0.7924747477522548, 0.7795574303237702, 0.7710831262483961, 0.769626786282806, 0.76591816967415, 0.7607563726975937, 0.7551967045809985, 0.754068674194201, 0.7529532354190398, 0.753290637075757, 0.7502801781021541, 0.7481368979070608, 0.7452829309228811, 0.744935586376433, 0.7429570035129893, 0.7427907895019971, 0.749116576052753, 0.752806138934188, 0.7550676921627624, 0.7578875529852697, 0.7608282259360519, 0.7662748560588426, 0.7730108730438402, 0.7813574041608615, 0.7846822749227867, 0.789886878445262, 0.7944460849485006, 0.8013772027584762, 0.8038704516730292, 0.8107071945782892, 0.81029164015927, 0.8135451438297693, 0.8173261525859796, 0.8122649177017311, 0.8089673416900092, 0.7905637556402394, null, null, null, null]}}, {"ylabel": "Sa (g)", "magnitude": 7.0, "distance": 50.0, "row": 3, "column": 2, "yvalues": {"AkkarBommer2010": [0.6844817131851617, 0.6837362987816263, 0.683207418845582, 0.68672541913679, 0.6899371017735907, 0.6928915634006979, 0.6956269676162063, 0.6981735680158769, 0.6976000490734018, 0.6970613108380154, 0.6965533749187963, 0.6960729087565891, 0.6956170929827741, 0.6971778901534045, 0.6986027863323532, 0.7005012687446854, 0.7028253341764217, 0.7049889873300449, 0.7148224968535273, 0.7240596591789342, 0.7299358053141418, 0.732736803570049, 0.735394096191045, 0.7396101101089319, 0.7436299578941521, 0.7480893213112024, 0.7529640884143824, 0.7576398289888938, 0.7653446494262519, 0.766693379434133, 0.777923934283979, 0.7812641010612377, 0.7776172138314966, 0.7663280282574274, 0.7598439394252159, 0.7570802432466689, 0.752561463750785, 0.7489709391989503, 0.7433871979794608, 0.7409032244431811, 0.7378155982911665, 0.7422539024380507, 0.7359252519151268, 0.7357897954392761, 0.7435592056910777, 0.7473398109449241, 0.7490163484795692, 0.7561064684979164, 0.7794038310516823, null, null, null, null], "CauzziFaccioli2008": [0.8219379128089427, 0.8393387142592592, 0.8516847793668235, 0.8518298896882702, 0.8519623650325663, 0.8520842305359557, 0.8521970603688558, 0.8523021024302553, 0.8540729263581883, 0.85573635974715, 0.8573046864631392, 0.8587881962717722, 0.8601955943875482, 0.8525571104939933, 0.8455837210506426, 0.8381755704576738, 0.8303595392994786, 0.8230829883756888, 0.8232713592759195, 0.8234483065375926, 0.8233005200716469, 0.8228544967873165, 0.8224313567943714, 0.8196750153732449, 0.8170469232528611, 0.8178450428198889, 0.8218488981437654, 0.8256892844424486, 0.8260503297850302, 0.8211780597282549, 0.817439812829779, 0.8174315235234442, 0.8120846906790027, 0.8051021013844982, 0.8068610461370364, 0.8163400981893651, 0.8162896715758283, 0.8194244109214306, 0.8192920122785835, 0.8136785400803733, 0.8135348587705703, 0.8118129856380293, 0.8051582844607673, 0.7942350510381128, 0.7824361445045926, 0.7735861586996702, 0.7667493230415523, 0.7595645667758829, 0.6982775803896976, 0.6704283771676394, 0.6462004738584699, 0.6007518190344441, 0.5626092667104884], "ChiouYoungs2008": [0.562502451365011, 0.5746228399970104, 0.5816671738537347, 0.5834030559122999, 0.584990923843724, 0.5864543389452819, 0.5878116253288816, 0.5890773191916802, 0.5898984865824188, 0.5906732412402962, 0.5914067201636182, 0.5921032437987926, 0.5927664811794785, 0.5943593457360324, 0.5958136539820978, 0.5969394976810393, 0.5977789962536257, 0.5985628917001707, 0.5998063017755547, 0.6009712295214255, 0.6020670978723197, 0.6031017268107304, 0.6040816770751058, 0.6057591125479311, 0.6073562372862699, 0.608880402935708, 0.6103379961241641, 0.6117346001707833, 0.6158712322002863, 0.6196463518458771, 0.6231186827821147, 0.6263336748270576, 0.629327233710155, 0.633218099105034, 0.6368869875440131, 0.6403583834533029, 0.6436529042968511, 0.6467880788684675, 0.6503418854661143, 0.6536292126770619, 0.6566889133504872, 0.6595517732959051, 0.6622426166949494, 0.6662293927637144, 0.6700125889036591, 0.6736117445621991, 0.6770440120388801, 0.6803247181057163, 0.7036224403162884, 0.7283698021158505, 0.7477927741025585, 0.7652549333392108, 0.78030565357429], "ZhaoEtAl2006Asc": [0.7182450835195463, 0.7506639297268827, 0.773692445355388, 0.7742426949440069, 0.7747562131314576, 0.7752380083676326, 0.7756921005392341, 0.7761217687966238, 0.7722802122118468, 0.7686816302832236, 0.7652978000089461, 0.7621051205205831, 0.7590836581036374, 0.7527411427191135, 0.7469669808073841, 0.7420715684469914, 0.737937653530582, 0.7340980860893183, 0.7361369393640627, 0.7381859520934553, 0.7402355419892188, 0.742278578508789, 0.7443097473498517, 0.742335679184848, 0.7404545736561577, 0.738658122565803, 0.7369390821527303, 0.7352910988173323, 0.7379520988250339, 0.740412047443854, 0.7404445155327583, 0.740476198131986, 0.7394343405313084, 0.7384747795287256, 0.7392130426477722, 0.739941213881211, 0.7393596516299581, 0.7388457213789629, 0.7351693539973224, 0.7319349648403927, 0.7305923515994256, 0.7308572357662626, 0.731116953708502, 0.7299943092840001, 0.7289730120917091, 0.7280397460331555, 0.7271835291354093, 0.7263952092353033, 0.722615388709651, 0.7022345940403416, 0.6993382586416962, null, null], "AkkarEtAlRjb2014": [0.7514019230744622, 0.7618002165922506, 0.7812130887280371, 0.7843878186203557, 0.7872884350731948, 0.7888397175599109, 0.7880527203176194, 0.7832053689805758, 0.7820091303814809, 0.7802584764038133, 0.7777611201390823, 0.7722903145838357, 0.7675740290030663, 0.7659554099293248, 0.7656047609569836, 0.763642691315775, 0.7585720071291848, 0.7622903449473829, 0.7695561837838741, 0.7700516995630878, 0.7731754005398775, 0.7773430967082682, 0.7781211538057553, 0.7743934142281944, 0.7716211635252107, 0.7700825020736414, 0.7677765560369761, 0.7653403491257991, 0.7721667501259039, 0.7774348847331203, 0.7826651902314297, 0.7869856478996297, 0.7863039170702382, 0.7803674262807232, 0.7799564731444953, 0.782871892457508, 0.7834978621540712, 0.7849243148227731, 0.7890588064269988, 0.7979061912280165, 0.7981296761805065, 0.8073204877866038, 0.8108963990547745, 0.8147434749662007, 0.8129160596273148, 0.8136103551455082, 0.8174336731503052, 0.8150865291488997, 0.8082581580163606, null, null, null, null], "BindiEtAl2014Rjb": [0.767508805710641, 0.7836029248110283, 0.7975671219261845, 0.7951428431878028, 0.7929296500990229, 0.7908937098167379, 0.789008723537143, 0.7872538432946641, 0.7839643806847408, 0.7808744055320594, 0.7779610994653116, 0.7752053483316296, 0.7725909814224782, 0.7747507465976511, 0.7767224577228621, 0.7785362561325888, 0.7768990288937333, 0.7753748067999079, 0.776151571674347, 0.7768812301158964, 0.7775691703935314, 0.775896019519639, 0.7743087099018517, 0.776729817038814, 0.7790382729291059, 0.7812440962019498, 0.7840965122991578, 0.7868324702226462, 0.790047543272952, 0.7929826750060335, 0.7946565385529079, 0.796206294136225, 0.7955067520351479, 0.7948523741015445, 0.8011539424069896, 0.807095219040994, 0.8136531197119701, 0.8198745663071109, 0.8202401036353644, 0.8205738130705763, 0.8208807959927493, 0.828430166458295, 0.8354584622164946, 0.8372393974217929, 0.8389123288958596, 0.8404896106446865, 0.8450234241355936, 0.8493246296465048, 0.8297894977175432, null, null, null, null], "CauzziEtAl2014": [0.8227964012485014, 0.8511727469660871, 0.8522195907509933, 0.8511643031364848, 0.8502009010251153, 0.849314656993124, 0.8484941231811982, 0.8477302244778377, 0.844245105878018, 0.8409713401738255, 0.8378847517658702, 0.8349650895987134, 0.832195221136202, 0.8257570491113541, 0.8198794585504274, 0.8170632016931386, 0.8169522037957349, 0.8168488672254801, 0.8224839554274542, 0.8277773071362535, 0.8312046299407523, 0.832924896120847, 0.8345569037869973, 0.8347880057508652, 0.8350083548141528, 0.8381071614360578, 0.8439015220480752, 0.8494593110549161, 0.8620985209858882, 0.8659787163104777, 0.8690536448522258, 0.8649731696879183, 0.8607944161115274, 0.8564544999373845, 0.8585000380163414, 0.8639075295473256, 0.8639996869785381, 0.8640808992911826, 0.8676581859365654, 0.8653514794289309, 0.8659400099950524, 0.8658508848376814, 0.8637958249184655, 0.8606244209148295, 0.854686846727022, 0.8502168157395237, 0.8469379501245717, 0.8471602031577969, 0.8388582348773796, 0.8329785027146948, 0.8235861763604481, 0.8043912561154009, 0.7772100228597301], "DerrasEtAl2014": [0.7480035478517366, 0.7562896733768881, 0.7717061638741622, 0.7799919911635539, 0.7780012184339148, 0.7768452564218975, 0.7799919911635539, 0.7768452564218975, 0.7717061638741622, 0.7697146252705663, 0.7665672007584541, 0.7582815111034834, 0.7551355809244937, 0.7551355809244937, 0.7511511145682411, 0.7480035478517366, 0.7417112320434819, 0.7417112320434819, 0.7499961841469494, 0.7551355809244937, 0.7582815111034834, 0.7614283696954255, 0.7582815111034834, 0.7562896733768881, 0.7531424628511735, 0.7531424628511735, 0.7551355809244937, 0.7531424628511735, 0.7582815111034834, 0.7614283696954255, 0.7634206899176481, 0.7634206899176481, 0.7645761452367758, 0.7634206899176481, 0.7582815111034834, 0.7614283696954255, 0.7665672007584541, 0.7717061638741622, 0.7799919911635539, 0.7902698805645967, 0.7965646616362811, 0.811980441655112, 0.8202666515897504, 0.8254052987450918, 0.8325365697570533, 0.8408219808864074, 0.8491077178141273, 0.8479549021314452, 0.8676713813383503, null, null, null, null], "AbrahamsonEtAl2014": [0.6236438603076121, 0.6302319614251205, 0.6350189325721672, 0.634475450736619, 0.6341401214397439, 0.6339556005112779, 0.632752589662888, 0.6316335963198918, 0.6307122441818889, 0.6298473588311825, 0.629032450599311, 0.6282620864501357, 0.627531672507452, 0.6271818699386394, 0.6268626088928201, 0.6277698101361632, 0.6297693213254887, 0.6316335963198918, 0.6325555955447529, 0.6334222675796857, 0.6342399062788446, 0.6350137875617644, 0.6357483778980486, 0.6371908778118839, 0.6385676875068271, 0.6398845786502456, 0.6411465918983973, 0.6423581555487562, 0.6454764688678786, 0.6483292207527576, 0.650958451002553, 0.653396918171413, 0.6556706490304413, 0.6588614747478271, 0.6618647999712471, 0.6647016659159679, 0.6673897455044938, 0.6699440275127467, 0.6721261259749473, 0.6741207183316315, 0.6759576476480108, 0.6776601429465261, 0.6792466415080755, 0.6813405337296999, 0.6833097164079293, 0.6851683107132496, 0.6869281616366653, 0.6885993029331354, 0.6792466415080755, 0.6699468617287286, 0.6724760218773603, 0.6783988502348747, 0.6868951885113186], "BooreEtAl2014": [0.6815423684555495, 0.7147866814651768, 0.7088335488674333, 0.70356307464221, 0.696420849774043, 0.688726360755852, 0.671400029788501, 0.6625050943200362, 0.652441568264929, 0.6440069875397316, 0.6352771048920306, 0.6271722251503171, 0.6212905922352278, 0.6157247761784481, 0.6118300417599646, 0.6062384019509157, 0.6053527897020051, 0.6059389408182974, 0.6083461185871082, 0.6102655159846408, 0.6137752031485143, 0.6149666657632753, 0.6168468205316454, 0.6196684597427885, 0.6218890576300566, 0.6301745789858553, 0.6340236588645568, 0.639513096034788, 0.6450193795538239, 0.650902450448606, 0.6575484773003433, 0.6706153890271234, 0.6764909459852364, 0.6815071533006826, 0.6852634529872434, 0.6890718395058675, 0.6916010410634154, 0.6924081166479781, 0.693238775603327, 0.6940929332589405, 0.6945250175479643, 0.6940778054368256, 0.6945401356293242, 0.6950165465656195, 0.6963942848702881, 0.6973184351499679, 0.6987131027825368, 0.7001178472228801, 0.7081645289055362, 0.7079950564799163, 0.7064764681148269, 0.6890979611056762, 0.6495667787071626], "ChiouYoungs2014": [0.584798969948667, 0.5974332546763479, 0.6068879310364075, 0.6101591086657273, 0.6131426341016599, 0.615926850049237, 0.6185027751534058, 0.620899330353305, 0.6230978713334111, 0.6251610487101994, 0.6271593760066418, 0.6290467452739523, 0.630834770291116, 0.6341077441670997, 0.6370847352712813, 0.6398288096416739, 0.6423747845110996, 0.6447379134797383, 0.646884679703696, 0.6488958092114125, 0.6507873945546917, 0.6525728305939892, 0.6542633844188711, 0.6558447770650667, 0.6573501016503327, 0.6587863310458268, 0.6601595240224909, 0.6614749780491616, 0.6645322596546382, 0.6673140081711642, 0.6698660249546448, 0.6722235629657082, 0.6744143397923535, 0.6763974051480889, 0.6782580607902625, 0.6800105949253259, 0.6816669337980995, 0.6832371361448973, 0.6860483599339549, 0.6886149926791355, 0.6909761820895016, 0.693162353614327, 0.6951976168504536, 0.6954800230355804, 0.6957373639848268, 0.6959721474934053, 0.6961868031824886, 0.6963838144271242, 0.6907898208699663, 0.6870228749735131, 0.6838260560990639, 0.6778451939786843, 0.6735783933589319], "CampbellBozorgnia2014": [0.6364581285259849, 0.6671212421002933, 0.6841178899377897, 0.6792206375152069, 0.6748893840623776, 0.6710234344965625, 0.6675458468888162, 0.664396610138378, 0.6605980419603074, 0.6572140241357033, 0.6540437857018426, 0.6505084859679864, 0.6472619253439832, 0.6398376467596227, 0.633117902859703, 0.6325623027986392, 0.6375594066379565, 0.6423581555487562, 0.6436196011056469, 0.6449388595936285, 0.6463011266697495, 0.6476948480621363, 0.6491109304271497, 0.6526199615856915, 0.6559702990386298, 0.6591757934325532, 0.662248551643364, 0.665199218279757, 0.6759031376738889, 0.685842460976842, 0.6951207792960601, 0.7038219403320863, 0.7120147470382899, 0.7138152098219914, 0.7155506654430743, 0.7172258101397948, 0.7188448775373711, 0.7204116878563257, 0.7206922940056525, 0.7211317835502621, 0.7216903091988284, 0.722338888378088, 0.7230560144276513, 0.720376354017737, 0.7178645211342529, 0.7155010730440174, 0.7132697470726926, 0.7111568040875373, 0.7127222460397878, 0.6833334731688543, 0.6934277179346093, 0.6999714279883145, 0.6976338581232996], "KothaEtAl2016Italy": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Other": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Turkey": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "ZhaoEtAl2016Asc": [0.7278021709228408, 0.7771923607729061, 0.7889746510503364, 0.7888959212336364, 0.7890614678211072, 0.7851281052125924, 0.7816425014032949, 0.7779203044014215, 0.7731086598919974, 0.7761173983202411, 0.7789736837660179, 0.7791911134846302, 0.7795800151363553, 0.7766382892032334, 0.7740180644188175, 0.7720311021061312, 0.7705648785799881, 0.7692073842599275, 0.766046367881938, 0.7631174300150125, 0.7612176286655891, 0.7602584084081757, 0.7593800102715372, 0.7578610029858904, 0.7564140577504519, 0.7557303288152079, 0.755759754366926, 0.7557889917166034, 0.7583354500048901, 0.7606608968522045, 0.7631020746294933, 0.7653757247260983, 0.7691875558842282, 0.7727612826740222, 0.7743360885814617, 0.7758382563395544, 0.7755282571597322, 0.7752418977325723, 0.7735036933590107, 0.7719507714502052, 0.7702744781684243, 0.768462553483211, 0.7667757168820619, 0.7601190589317046, 0.7538661239670975, 0.7479707310064135, 0.7423941959549901, 0.7371037918773719, 0.6935776813018135, 0.6711784838363779, 0.6674346409949068, null, null], "BindiEtAl2017Rjb": [0.8956331632638443, 0.9102791622310158, 0.8915155151364446, 0.8806585598045363, 0.8721652361020817, 0.8619419154403619, 0.8550128842654946, 0.8491152000035095, 0.8447656795449257, 0.8366782265626375, 0.8275006067816506, 0.8172995224775309, 0.8080404663938557, 0.7924747477522548, 0.7795574303237702, 0.7710831262483961, 0.769626786282806, 0.76591816967415, 0.7607563726975937, 0.7551967045809985, 0.754068674194201, 0.7529532354190398, 0.753290637075757, 0.7502801781021541, 0.7481368979070608, 0.7452829309228811, 0.744935586376433, 0.7429570035129893, 0.7427907895019971, 0.749116576052753, 0.752806138934188, 0.7550676921627624, 0.7578875529852697, 0.7608282259360519, 0.7662748560588426, 0.7730108730438402, 0.7813574041608615, 0.7846822749227867, 0.789886878445262, 0.7944460849485006, 0.8013772027584762, 0.8038704516730292, 0.8107071945782892, 0.81029164015927, 0.8135451438297693, 0.8173261525859796, 0.8122649177017311, 0.8089673416900092, 0.7905637556402394, null, null, null, null]}}, {"ylabel": "Sa (g)", "magnitude": 7.0, "distance": 150.0, "row": 3, "column": 3, "yvalues": {"AkkarBommer2010": [0.6844817131851617, 0.6837362987816263, 0.683207418845582, 0.68672541913679, 0.6899371017735907, 0.6928915634006979, 0.6956269676162063, 0.6981735680158769, 0.6976000490734018, 0.6970613108380154, 0.6965533749187963, 0.6960729087565891, 0.6956170929827741, 0.6971778901534045, 0.6986027863323532, 0.7005012687446854, 0.7028253341764217, 0.7049889873300449, 0.7148224968535273, 0.7240596591789342, 0.7299358053141418, 0.732736803570049, 0.735394096191045, 0.7396101101089319, 0.7436299578941521, 0.7480893213112024, 0.7529640884143824, 0.7576398289888938, 0.7653446494262519, 0.766693379434133, 0.777923934283979, 0.7812641010612377, 0.7776172138314966, 0.7663280282574274, 0.7598439394252159, 0.7570802432466689, 0.752561463750785, 0.7489709391989503, 0.7433871979794608, 0.7409032244431811, 0.7378155982911665, 0.7422539024380507, 0.7359252519151268, 0.7357897954392761, 0.7435592056910777, 0.7473398109449241, 0.7490163484795692, 0.7561064684979164, 0.7794038310516823, null, null, null, null], "CauzziFaccioli2008": [0.8219379128089427, 0.8393387142592592, 0.8516847793668235, 0.8518298896882702, 0.8519623650325663, 0.8520842305359557, 0.8521970603688558, 0.8523021024302553, 0.8540729263581883, 0.85573635974715, 0.8573046864631392, 0.8587881962717722, 0.8601955943875482, 0.8525571104939933, 0.8455837210506426, 0.8381755704576738, 0.8303595392994786, 0.8230829883756888, 0.8232713592759195, 0.8234483065375926, 0.8233005200716469, 0.8228544967873165, 0.8224313567943714, 0.8196750153732449, 0.8170469232528611, 0.8178450428198889, 0.8218488981437654, 0.8256892844424486, 0.8260503297850302, 0.8211780597282549, 0.817439812829779, 0.8174315235234442, 0.8120846906790027, 0.8051021013844982, 0.8068610461370364, 0.8163400981893651, 0.8162896715758283, 0.8194244109214306, 0.8192920122785835, 0.8136785400803733, 0.8135348587705703, 0.8118129856380293, 0.8051582844607673, 0.7942350510381128, 0.7824361445045926, 0.7735861586996702, 0.7667493230415523, 0.7595645667758829, 0.6982775803896976, 0.6704283771676394, 0.6462004738584699, 0.6007518190344441, 0.5626092667104884], "ChiouYoungs2008": [0.5632431364799422, 0.5760044793220611, 0.5833169292029221, 0.5850240732625944, 0.5865867803037899, 0.5880278653971015, 0.5893651102539174, 0.5906126459067323, 0.5913695821498989, 0.5920858616792557, 0.5927658254582502, 0.5934131433726815, 0.5940309469121888, 0.5955112229958441, 0.5968700384415365, 0.5979065017949092, 0.5986625304206259, 0.5993743349571703, 0.6005510329621435, 0.6016577367375379, 0.6027023958852703, 0.603691673452904, 0.604631209749907, 0.6062719433501049, 0.6078360391353979, 0.6093303414563014, 0.6107608166608411, 0.6121326970909386, 0.6162107623455835, 0.619938633940305, 0.6233721490431289, 0.6265547427660542, 0.6295208747936909, 0.6333935596213558, 0.6370464104667053, 0.6405035367320502, 0.6437852586568822, 0.6469088658925644, 0.6504599867224835, 0.6537444980228533, 0.6568012583551246, 0.6596610438299898, 0.6623486526718735, 0.6663591997285523, 0.6701685863154901, 0.6737959903628835, 0.6772580243680382, 0.6805692640076015, 0.7038531759068705, 0.7284006453751994, 0.7477927741025585, 0.7652549333392108, 0.78030565357429], "ZhaoEtAl2006Asc": [0.7182450835195463, 0.7506639297268827, 0.773692445355388, 0.7742426949440069, 0.7747562131314576, 0.7752380083676326, 0.7756921005392341, 0.7761217687966238, 0.7722802122118468, 0.7686816302832236, 0.7652978000089461, 0.7621051205205831, 0.7590836581036374, 0.7527411427191135, 0.7469669808073841, 0.7420715684469914, 0.737937653530582, 0.7340980860893183, 0.7361369393640627, 0.7381859520934553, 0.7402355419892188, 0.742278578508789, 0.7443097473498517, 0.742335679184848, 0.7404545736561577, 0.738658122565803, 0.7369390821527303, 0.7352910988173323, 0.7379520988250339, 0.740412047443854, 0.7404445155327583, 0.740476198131986, 0.7394343405313084, 0.7384747795287256, 0.7392130426477722, 0.739941213881211, 0.7393596516299581, 0.7388457213789629, 0.7351693539973224, 0.7319349648403927, 0.7305923515994256, 0.7308572357662626, 0.731116953708502, 0.7299943092840001, 0.7289730120917091, 0.7280397460331555, 0.7271835291354093, 0.7263952092353033, 0.722615388709651, 0.7022345940403416, 0.6993382586416962, null, null], "AkkarEtAlRjb2014": [0.7514019230744622, 0.7618002165922506, 0.7812130887280371, 0.7843878186203557, 0.7872884350731948, 0.7888397175599109, 0.7880527203176194, 0.7832053689805758, 0.7820091303814809, 0.7802584764038133, 0.7777611201390823, 0.7722903145838357, 0.7675740290030663, 0.7659554099293248, 0.7656047609569836, 0.763642691315775, 0.7585720071291848, 0.7622903449473829, 0.7695561837838741, 0.7700516995630878, 0.7731754005398775, 0.7773430967082682, 0.7781211538057553, 0.7743934142281944, 0.7716211635252107, 0.7700825020736414, 0.7677765560369761, 0.7653403491257991, 0.7721667501259039, 0.7774348847331203, 0.7826651902314297, 0.7869856478996297, 0.7863039170702382, 0.7803674262807232, 0.7799564731444953, 0.782871892457508, 0.7834978621540712, 0.7849243148227731, 0.7890588064269988, 0.7979061912280165, 0.7981296761805065, 0.8073204877866038, 0.8108963990547745, 0.8147434749662007, 0.8129160596273148, 0.8136103551455082, 0.8174336731503052, 0.8150865291488997, 0.8082581580163606, null, null, null, null], "BindiEtAl2014Rjb": [0.767508805710641, 0.7836029248110283, 0.7975671219261845, 0.7951428431878028, 0.7929296500990229, 0.7908937098167379, 0.789008723537143, 0.7872538432946641, 0.7839643806847408, 0.7808744055320594, 0.7779610994653116, 0.7752053483316296, 0.7725909814224782, 0.7747507465976511, 0.7767224577228621, 0.7785362561325888, 0.7768990288937333, 0.7753748067999079, 0.776151571674347, 0.7768812301158964, 0.7775691703935314, 0.775896019519639, 0.7743087099018517, 0.776729817038814, 0.7790382729291059, 0.7812440962019498, 0.7840965122991578, 0.7868324702226462, 0.790047543272952, 0.7929826750060335, 0.7946565385529079, 0.796206294136225, 0.7955067520351479, 0.7948523741015445, 0.8011539424069896, 0.807095219040994, 0.8136531197119701, 0.8198745663071109, 0.8202401036353644, 0.8205738130705763, 0.8208807959927493, 0.828430166458295, 0.8354584622164946, 0.8372393974217929, 0.8389123288958596, 0.8404896106446865, 0.8450234241355936, 0.8493246296465048, 0.8297894977175432, null, null, null, null], "CauzziEtAl2014": [0.8227964012485014, 0.8511727469660871, 0.8522195907509933, 0.8511643031364848, 0.8502009010251153, 0.849314656993124, 0.8484941231811982, 0.8477302244778377, 0.844245105878018, 0.8409713401738255, 0.8378847517658702, 0.8349650895987134, 0.832195221136202, 0.8257570491113541, 0.8198794585504274, 0.8170632016931386, 0.8169522037957349, 0.8168488672254801, 0.8224839554274542, 0.8277773071362535, 0.8312046299407523, 0.832924896120847, 0.8345569037869973, 0.8347880057508652, 0.8350083548141528, 0.8381071614360578, 0.8439015220480752, 0.8494593110549161, 0.8620985209858882, 0.8659787163104777, 0.8690536448522258, 0.8649731696879183, 0.8607944161115274, 0.8564544999373845, 0.8585000380163414, 0.8639075295473256, 0.8639996869785381, 0.8640808992911826, 0.8676581859365654, 0.8653514794289309, 0.8659400099950524, 0.8658508848376814, 0.8637958249184655, 0.8606244209148295, 0.854686846727022, 0.8502168157395237, 0.8469379501245717, 0.8471602031577969, 0.8388582348773796, 0.8329785027146948, 0.8235861763604481, 0.8043912561154009, 0.7772100228597301], "DerrasEtAl2014": [0.7480035478517366, 0.7562896733768881, 0.7717061638741622, 0.7799919911635539, 0.7780012184339148, 0.7768452564218975, 0.7799919911635539, 0.7768452564218975, 0.7717061638741622, 0.7697146252705663, 0.7665672007584541, 0.7582815111034834, 0.7551355809244937, 0.7551355809244937, 0.7511511145682411, 0.7480035478517366, 0.7417112320434819, 0.7417112320434819, 0.7499961841469494, 0.7551355809244937, 0.7582815111034834, 0.7614283696954255, 0.7582815111034834, 0.7562896733768881, 0.7531424628511735, 0.7531424628511735, 0.7551355809244937, 0.7531424628511735, 0.7582815111034834, 0.7614283696954255, 0.7634206899176481, 0.7634206899176481, 0.7645761452367758, 0.7634206899176481, 0.7582815111034834, 0.7614283696954255, 0.7665672007584541, 0.7717061638741622, 0.7799919911635539, 0.7902698805645967, 0.7965646616362811, 0.811980441655112, 0.8202666515897504, 0.8254052987450918, 0.8325365697570533, 0.8408219808864074, 0.8491077178141273, 0.8479549021314452, 0.8676713813383503, null, null, null, null], "AbrahamsonEtAl2014": [0.625415803068403, 0.6333373430165452, 0.6376247597529137, 0.6362617101641, 0.6350482567392217, 0.6339556005112779, 0.632752589662888, 0.6316335963198918, 0.6307122441818889, 0.6298473588311825, 0.629032450599311, 0.6282620864501357, 0.627531672507452, 0.6271818699386394, 0.6268626088928201, 0.6277698101361632, 0.6297693213254887, 0.6316335963198918, 0.6325555955447529, 0.6334222675796857, 0.6342399062788446, 0.6350137875617644, 0.6357483778980486, 0.6371908778118839, 0.6385676875068271, 0.6398845786502456, 0.6411465918983973, 0.6423581555487562, 0.6454764688678786, 0.6483292207527576, 0.650958451002553, 0.653396918171413, 0.6556706490304413, 0.6588614747478271, 0.6618647999712471, 0.6647016659159679, 0.6673897455044938, 0.6699440275127467, 0.6721261259749473, 0.6741207183316315, 0.6759576476480108, 0.6776601429465261, 0.6792466415080755, 0.6813405337296999, 0.6833097164079293, 0.6851683107132496, 0.6869281616366653, 0.6885993029331354, 0.6792466415080755, 0.6699468617287286, 0.6724760218773603, 0.6783988502348747, 0.6868951885113186], "BooreEtAl2014": [0.7020790180654833, 0.7383682376254541, 0.7434663155881833, 0.741019549586944, 0.7367296302343117, 0.7314177354967588, 0.7191402718708569, 0.712435097340163, 0.7043112101127486, 0.6967278370984812, 0.6887716890253178, 0.6813601987959392, 0.6755334416615938, 0.6699778694799168, 0.6660507544991239, 0.6590364145775295, 0.6569611968512516, 0.6553348970828141, 0.6562774991780589, 0.6571737372554478, 0.6584811867968422, 0.6585584681530077, 0.6593629229770772, 0.6615651219016355, 0.6628672191041941, 0.6699058419210356, 0.6731213329502003, 0.6778995719120002, 0.6829774404548595, 0.6879120240775412, 0.6937910721038724, 0.7047182990868018, 0.7091409575220882, 0.7128424054235665, 0.7154765728331454, 0.7177652322140007, 0.7189948871125559, 0.7184733896248044, 0.7182279639603867, 0.7180744308050722, 0.7176000656527375, 0.7163252900347145, 0.7162773903901859, 0.7161250296813444, 0.7171226392896806, 0.7177439980781638, 0.7190563080898584, 0.7204551982125146, 0.7338167693595834, 0.7278499090404651, 0.7192219083042654, 0.6998535446287524, 0.6654580977536082], "ChiouYoungs2014": [0.5856019240811645, 0.5989580718072185, 0.6086711874040799, 0.6119220858647003, 0.6148886496500664, 0.6176306395959406, 0.6201685714397448, 0.6225306855369431, 0.6246723598060094, 0.6266836796045924, 0.6286137360505787, 0.6304389605664208, 0.6321701481967121, 0.635316308512892, 0.6381869478550322, 0.6408346448119018, 0.6432928576857695, 0.6455804677369394, 0.6476588619621918, 0.6496103828660279, 0.6514496099938427, 0.6531887475968318, 0.6548381137983703, 0.6563814742865672, 0.6578526366706593, 0.6592580388786773, 0.6606032959117534, 0.6618933341984383, 0.6648873551543086, 0.6676186099415359, 0.6701295513399788, 0.6724531138736368, 0.6746153634471848, 0.6765774267421084, 0.6784199465318954, 0.6801566709088341, 0.6817991057786895, 0.683356977797142, 0.6861641312061032, 0.6887268836581156, 0.6910843502822722, 0.6932669219039638, 0.6952986694181136, 0.695603232353561, 0.6958849208342094, 0.6961459038817841, 0.6963881113688113, 0.6966133376192344, 0.6909952426935175, 0.6870489102991804, 0.6838260560990639, 0.6778451939786843, 0.6735783933589319], "CampbellBozorgnia2014": [0.6409687395445264, 0.6723287409079269, 0.6887983272906969, 0.6833427801446069, 0.6784455198000084, 0.6740117619891298, 0.6699685136308349, 0.6662584189067766, 0.6617933342336424, 0.6577507453851087, 0.6540437857018426, 0.6505084859679864, 0.6472619253439832, 0.6398376467596227, 0.633117902859703, 0.6325623027986392, 0.6375594066379565, 0.6423581555487562, 0.6436196011056469, 0.6449388595936285, 0.6463011266697495, 0.6476948480621363, 0.6491109304271497, 0.6526199615856915, 0.6559702990386298, 0.6591757934325532, 0.662248551643364, 0.665199218279757, 0.6759031376738889, 0.685842460976842, 0.6951207792960601, 0.7038219403320863, 0.7120147470382899, 0.7138152098219914, 0.7155506654430743, 0.7172258101397948, 0.7188448775373711, 0.7204116878563257, 0.7206922940056525, 0.7211317835502621, 0.7216903091988284, 0.722338888378088, 0.7230560144276513, 0.720376354017737, 0.7178645211342529, 0.7155010730440174, 0.7132697470726926, 0.7111568040875373, 0.7127222460397878, 0.6833334731688543, 0.6934277179346093, 0.6999714279883145, 0.6976338581232996], "KothaEtAl2016Italy": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Other": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "KothaEtAl2016Turkey": [0.683260026821434, 0.6994130427012402, 0.710873789857342, 0.7106577258464449, 0.7104604748587261, 0.7102790215396944, 0.7101110220066346, 0.709954618183167, 0.7068294614621754, 0.7038938279678265, 0.7011260390872545, 0.6985079354034411, 0.696024153921133, 0.693762005050663, 0.697939598218566, 0.696747129016816, 0.696222239882294, 0.700173363190729, 0.7058320592334233, 0.7111475870998154, 0.7161592000791916, 0.7208997792813309, 0.7253971423577, 0.7277161029627517, 0.7299271650782445, 0.7320399246473435, 0.7340627518069457, 0.736002991171244, 0.7431827740844048, 0.7497374023417779, 0.75576707583581, 0.7613496815269405, 0.766546963085415, 0.766788120630275, 0.7670146533226518, 0.7672282340261878, 0.7674302640403424, 0.767621928874371, 0.7719191878498749, 0.7758422779280522, 0.7794511709621427, 0.7827924840217527, 0.785903172060027, 0.7904113707999049, 0.7946461725719478, 0.7986388498862822, 0.8024155986326592, 0.805998580719113, 0.793032477575311, null, null, null, null], "ZhaoEtAl2016Asc": [0.7278021709228408, 0.7771923607729061, 0.7889746510503364, 0.7888959212336364, 0.7890614678211072, 0.7851281052125924, 0.7816425014032949, 0.7779203044014215, 0.7731086598919974, 0.7761173983202411, 0.7789736837660179, 0.7791911134846302, 0.7795800151363553, 0.7766382892032334, 0.7740180644188175, 0.7720311021061312, 0.7705648785799881, 0.7692073842599275, 0.766046367881938, 0.7631174300150125, 0.7612176286655891, 0.7602584084081757, 0.7593800102715372, 0.7578610029858904, 0.7564140577504519, 0.7557303288152079, 0.755759754366926, 0.7557889917166034, 0.7583354500048901, 0.7606608968522045, 0.7631020746294933, 0.7653757247260983, 0.7691875558842282, 0.7727612826740222, 0.7743360885814617, 0.7758382563395544, 0.7755282571597322, 0.7752418977325723, 0.7735036933590107, 0.7719507714502052, 0.7702744781684243, 0.768462553483211, 0.7667757168820619, 0.7601190589317046, 0.7538661239670975, 0.7479707310064135, 0.7423941959549901, 0.7371037918773719, 0.6935776813018135, 0.6711784838363779, 0.6674346409949068, null, null], "BindiEtAl2017Rjb": [0.8956331632638443, 0.9102791622310158, 0.8915155151364446, 0.8806585598045363, 0.8721652361020817, 0.8619419154403619, 0.8550128842654946, 0.8491152000035095, 0.8447656795449257, 0.8366782265626375, 0.8275006067816506, 0.8172995224775309, 0.8080404663938557, 0.7924747477522548, 0.7795574303237702, 0.7710831262483961, 0.769626786282806, 0.76591816967415, 0.7607563726975937, 0.7551967045809985, 0.754068674194201, 0.7529532354190398, 0.753290637075757, 0.7502801781021541, 0.7481368979070608, 0.7452829309228811, 0.744935586376433, 0.7429570035129893, 0.7427907895019971, 0.749116576052753, 0.752806138934188, 0.7550676921627624, 0.7578875529852697, 0.7608282259360519, 0.7662748560588426, 0.7730108730438402, 0.7813574041608615, 0.7846822749227867, 0.789886878445262, 0.7944460849485006, 0.8013772027584762, 0.8038704516730292, 0.8107071945782892, 0.81029164015927, 0.8135451438297693, 0.8173261525859796, 0.8122649177017311, 0.8089673416900092, 0.7905637556402394, null, null, null, null]}}]}
\ No newline at end of file
diff --git a/tests/trellis/data/test_magnitude_distance_spectra_trellis.json b/tests/trellis/data/test_magnitude_distance_spectra_trellis.json
new file mode 100644
index 0000000..dde25a9
--- /dev/null
+++ b/tests/trellis/data/test_magnitude_distance_spectra_trellis.json
@@ -0,0 +1 @@
+{"xlabel": "Period (s)", "xvalues": [0.05, 0.075, 0.1, 0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.22, 0.24, 0.26, 0.28, 0.3, 0.32, 0.34, 0.36, 0.38, 0.4, 0.42, 0.44, 0.46, 0.48, 0.5, 0.55, 0.6, 0.65, 0.7, 0.75, 0.8, 0.85, 0.9, 0.95, 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2.0, 3.0, 4.001, 5.0, 7.5, 10.0], "figures": [{"ylabel": "Sa (g)", "magnitude": 4.0, "distance": 5.0, "row": 0, "column": 0, "yvalues": {"AkkarBommer2010": [0.08735512963194245, 0.0993733999916388, 0.1090280616130993, 0.10918608555765381, 0.10934651334104487, 0.10950775037749819, 0.1096687320696212, 0.10982874170161688, 0.10360110075400275, 0.0980641779325338, 0.09310755162748822, 0.08864331416099173, 0.08460058714451102, 0.0731816916977192, 0.06402968309641877, 0.05555049389435533, 0.047819317512047856, 0.04155581143717427, 0.03692708142222898, 0.033041714608336936, 0.02922809416548266, 0.025582910586536545, 0.022545608090682324, 0.020004637597379585, 0.017847954467400437, 0.015509426274325116, 0.013149917892408752, 0.01122707375658281, 0.008427848345207333, 0.00699300252855883, 0.005706260011142701, 0.004990272410900872, 0.004035586188038766, 0.003247239621841735, 0.002571926131989835, 0.0022791804543701027, 0.0019850895989870785, 0.0016701932919238763, 0.0011503197635606183, 0.0009559620869481211, 0.000913288113555624, 0.0007629883840483946, 0.0006510421753562609, 0.0005572537079109218, 0.00046985541005054515, 0.0003786380217846269, 0.0003312740548027552, 0.0002952570246809216, 0.0001711236667635626, null, null, null, null], "CauzziFaccioli2008": [0.020101291045619078, 0.027758903634721662, 0.03490281350154393, 0.032167577207059955, 0.02985810656624407, 0.027880306758446705, 0.026166143890550744, 0.024665163933229886, 0.02261180963964287, 0.020838952323540084, 0.019294957759172855, 0.017939892105536606, 0.016742422440314812, 0.014676169335693613, 0.013013320011801024, 0.011920900922263564, 0.011237100201794158, 0.010635800509396592, 0.009845501797088586, 0.00915670190972107, 0.008452564350384694, 0.007748171043802883, 0.0071342561443169215, 0.006737608499855059, 0.0063799717821230425, 0.006002468709425616, 0.005612996588465127, 0.005263191571633436, 0.004658541447335177, 0.004026289206502622, 0.0037964095080996172, 0.003399152675087582, 0.0029476854705292204, 0.002655475358851677, 0.0023381964585244244, 0.0021708380381169875, 0.0019764875079063115, 0.0018203517285988687, 0.0015524178018740565, 0.0013395433285823726, 0.001158561727463168, 0.001001294630052265, 0.0008659314419587925, 0.0007513249944970949, 0.0006627249148824654, 0.0005831719875664494, 0.0005358969647791085, 0.0004894739144571671, 0.00020175650979116966, 9.329141469507853e-05, 5.220932137910639e-05, 1.9903908803293978e-05, 1.0004068033017833e-05], "ChiouYoungs2008": [0.050095430028239456, 0.06473838652879528, 0.0723639769630842, 0.07185814449161629, 0.07135372750118169, 0.07085501448218512, 0.07036456531522312, 0.06988385820260502, 0.0669219662481934, 0.06421954846341771, 0.061742789748968546, 0.05946357252819196, 0.05735832050455049, 0.051958048479470935, 0.047410565439846106, 0.043081785173564875, 0.03899207846199442, 0.03550073065547312, 0.032025359069634184, 0.029048356683334234, 0.026477162988950163, 0.024239926225122874, 0.022280159913257477, 0.02042683181469579, 0.018795452555341298, 0.01735169052973882, 0.016067629722825445, 0.014920380273728225, 0.012506850958930454, 0.010631236123032501, 0.0091443565663256, 0.007945469585891202, 0.006964534311036206, 0.006148775523222767, 0.005466394260236563, 0.004889833098503381, 0.0043983040090088184, 0.0039758859305070345, 0.003268016036911761, 0.002730186084525635, 0.0023123994104704893, 0.0019816979193481308, 0.0017156574829384167, 0.0014743180760120847, 0.001278176148583637, 0.001116874053947333, 0.0009828194673623546, 0.0008703522373117516, 0.00031865291521865856, 0.00015128466495339447, 8.268616395456814e-05, 2.4615305109006854e-05, 9.380130023673884e-06], "ZhaoEtAl2006Asc": [0.07120078706178531, 0.09598583820871767, 0.11855477223308136, 0.11644169178112755, 0.11455322892581463, 0.11284914498934852, 0.11129888576231294, 0.1098787390990025, 0.10513822771159496, 0.10089138961845871, 0.09706040460913405, 0.09358339698646953, 0.09041049748002747, 0.08351289380499227, 0.0777109672696271, 0.07151480715146873, 0.06513886819934674, 0.059716597523222545, 0.05536547289116902, 0.05158483712847377, 0.04827226240198559, 0.045348136738353986, 0.04274969710129815, 0.039029543143712646, 0.03580223970326239, 0.03298426458573325, 0.03050910121126132, 0.02832324533341929, 0.022876546008332967, 0.018908782517816997, 0.01585267731341056, 0.013464779091187982, 0.01137190563785399, 0.009710008054125996, 0.00839812275591683, 0.007324534882420256, 0.006299736762122305, 0.005460358053264386, 0.004227009560509025, 0.003345736775713152, 0.0027239794915081563, 0.0022726192647747126, 0.0019198976691906645, 0.001630491823197586, 0.0013985953386221974, 0.0012103188273615815, 0.0010556610717605097, 0.0009272857051062601, 0.00034703090877181736, 0.0001804358902269231, 0.00013225859320175736, null, null], "AkkarEtAlRjb2014": [0.08760217196592138, 0.1262849366405112, 0.13744838038333915, 0.13941826689103684, 0.13922012640976328, 0.13640188007872467, 0.13299851419070324, 0.12786698002305857, 0.12193005109046139, 0.11496806602779841, 0.10773529801823706, 0.10021399840737825, 0.0944598426213148, 0.08444723037250151, 0.07482500574873176, 0.06523198385075932, 0.05705640241199498, 0.049943602643851996, 0.04393105176942436, 0.03819292735808528, 0.03406823990861839, 0.030576840875538268, 0.027720771352266593, 0.025087745000439584, 0.022792100367669578, 0.0207518201280364, 0.018723640649023123, 0.01697879331427328, 0.01339518352713351, 0.011009428572130645, 0.00900427185155371, 0.007464220142149336, 0.006211423428085303, 0.005434123179120107, 0.004688946609161736, 0.004040297345888987, 0.0035279021751196005, 0.003115630024877753, 0.002444576634346032, 0.0020033487888701726, 0.0016373628072544675, 0.0013623045112013475, 0.0011667537935277127, 0.000985281474324952, 0.0008701747358449713, 0.0007481187949264081, 0.0006602846267906736, 0.0005809990974453131, 0.00020575415199083652, null, null, null, null], "BindiEtAl2014Rjb": [0.06459304853045969, 0.08756739777672316, 0.08828048819393253, 0.08436049904020651, 0.08089164379723637, 0.0777920644937738, 0.07499953546484836, 0.07246575213442605, 0.0668655201437337, 0.06196492997695847, 0.05764496648417615, 0.053811817112967376, 0.05039057482499176, 0.04227283164021636, 0.03600149531576503, 0.03105163481858996, 0.026802574251358315, 0.02337113980810994, 0.02050426618720289, 0.018130448473881074, 0.01614305968092715, 0.014313718930460649, 0.01277055505406874, 0.011540315282690443, 0.010476589223438557, 0.009550789784023737, 0.008742188979638243, 0.008030357464212197, 0.006640219265105325, 0.00558227246992281, 0.004649162176151001, 0.003924753786334103, 0.0033425364330144573, 0.0028762844590932784, 0.002428618395086837, 0.002071084988132249, 0.0018326524196996719, 0.0016318212310228375, 0.0012825250758357386, 0.0010290580233015896, 0.000840165402792397, 0.0007361704261109881, 0.0006507625566753901, 0.000596961110256364, 0.0005503600995294902, 0.0005096611917714738, 0.0004342672620948226, 0.0003730678006470753, 0.00018161527857987606, null, null, null, null], "CauzziEtAl2014": [0.08322393503183392, 0.10734718775319681, 0.1270353800655252, 0.13432788851927782, 0.1383770823804822, 0.13832275089102103, 0.1326100971192496, 0.1173540467850857, 0.11647046607144007, 0.11298355166910777, 0.10681148887507738, 0.0978544718652293, 0.08594141740240212, 0.07648495295387749, 0.06657331153815764, 0.05907039365552577, 0.05428751434865901, 0.049670698624308576, 0.04512020997229306, 0.041069573911050504, 0.03753566789755517, 0.03446140001399861, 0.03171074936763574, 0.02965190943051389, 0.027786932747154644, 0.025844342806895543, 0.023878839819679677, 0.022129163109308753, 0.017705657982306527, 0.014195161386749571, 0.012507967791536187, 0.010793395875560243, 0.009694684100957472, 0.008534648846122707, 0.007628813550905746, 0.0069735828178872404, 0.006228511674310808, 0.005657963035986148, 0.0046843972710258214, 0.004097138780832191, 0.003487098496169152, 0.002924179508977978, 0.0023359679764464983, 0.0018840883387237293, 0.0015284211066387541, 0.001235170540859493, 0.0010281423810730868, 0.0008494664189762772, 0.000282813014575133, 0.00014349197175903434, 8.744156567707414e-05, 3.7727779391811316e-05, 2.5348502043503438e-05], "DerrasEtAl2014": [0.07448724664824334, 0.13333179363486047, 0.1712670189861731, 0.17636724328803227, 0.18102426302817587, 0.1789602821856224, 0.1661766611657595, 0.1667368939637582, 0.154803021918271, 0.14166049374036402, 0.13003461988874052, 0.12164331029638925, 0.11549339297004507, 0.0933719998749523, 0.07227605657365546, 0.06019595339226918, 0.05068201747727368, 0.04705088066795715, 0.03818905887394637, 0.03465016286988113, 0.032654541037873186, 0.029068672364206592, 0.026228462103200446, 0.023389529561461966, 0.021277056299290567, 0.019337131226061215, 0.01828221625042438, 0.0160699144070969, 0.012912394523550863, 0.012146989467529479, 0.0106985617828837, 0.008189695344991137, 0.006281785136807585, 0.005351634618672441, 0.004614277919648308, 0.004009649420132888, 0.003712228044294849, 0.0035779267782206975, 0.0028675194379496247, 0.0024697533417384634, 0.0021339217865421973, 0.00177231716574553, 0.0015716772711396334, 0.001473890989530158, 0.0012168693745301033, 0.0010603611347774996, 0.0009161957407929849, 0.0008125504134617245, 0.00033552020237644136, null, null, null, null], "AbrahamsonEtAl2014": [0.03173282762030259, 0.044434654508668986, 0.05244397542233771, 0.052785466392042985, 0.05286062976282203, 0.05271295947404325, 0.052301467575132855, 0.05173799992429833, 0.049965691768018454, 0.04821656385893832, 0.04649401196631707, 0.044800464000979, 0.04313762375806812, 0.038611163392891085, 0.03466423152681473, 0.031332393744624425, 0.028511657228619654, 0.025995627872407077, 0.023451793789429992, 0.021251259055908907, 0.019333069853100546, 0.017649576435594762, 0.016163029671849242, 0.014945040395492626, 0.013866088880435697, 0.012905177969540358, 0.012045201533120393, 0.011272099701902355, 0.009391401218372971, 0.00794952280967037, 0.006819215667183646, 0.005916344203177846, 0.005183445597875348, 0.004614640497568061, 0.004137314839864472, 0.003732591507938547, 0.0033862593881828847, 0.0030874482554699417, 0.002643745553593095, 0.0022945974321118365, 0.0020142802273797377, 0.0017853726129058137, 0.0015957101032981007, 0.0014191400131706978, 0.0012711155710893932, 0.0011457242159025388, 0.001038519063829648, 0.0009461016936851319, 0.0004097269794239771, 0.0002325559914923523, 0.00014095139632193, 5.383925368918788e-05, 2.4931069145416876e-05], "BooreEtAl2014": [0.02558394917088587, 0.03240773080931587, 0.03346149589720832, 0.03320296852758488, 0.03219839882850621, 0.031622839808149956, 0.030939626131794365, 0.03012601873898509, 0.029136434279607534, 0.02797812366462849, 0.027136238776214416, 0.025770960827481766, 0.024680662705972294, 0.022638510933107987, 0.020011739966668107, 0.017988935264636102, 0.015999013550690878, 0.014341533795989549, 0.012964444209160344, 0.011644081077297367, 0.010597628204276075, 0.00980376400772957, 0.00889345012591442, 0.008218304683382919, 0.007590206955145601, 0.006997350568562777, 0.0064883172955843196, 0.005997125255145977, 0.005003510140370528, 0.004200323213999987, 0.0035623571531236344, 0.0030596118914591568, 0.0026393617191605183, 0.0022942419112493913, 0.0020073061542455525, 0.0017604572929597892, 0.0015497861905866273, 0.0013795164107651904, 0.0011041991305270637, 0.0008950438165574666, 0.0007387884539293058, 0.0006207924552787896, 0.0005289128526354286, 0.0004563878161888723, 0.00039901232414864805, 0.0003514050221912058, 0.00031161475137391967, 0.0002807680264327451, 0.0001378970862965256, 8.334875444151028e-05, 5.2310116205193585e-05, 1.668665706624984e-05, 9.149402125041765e-06], "ChiouYoungs2014": [0.026180206170947733, 0.03482890990847866, 0.04013350895380295, 0.04099440745941825, 0.041782342917534535, 0.04156848458784897, 0.041352836907334475, 0.041136859818146056, 0.040139241230773, 0.03920661292251924, 0.03777979221199215, 0.03646128486891876, 0.03523852277386801, 0.032373108584132566, 0.02991621611675077, 0.027580508172586702, 0.02536808476635032, 0.02344305318673845, 0.0214988445949892, 0.01980241342752556, 0.01831162025278106, 0.016993131053540753, 0.015820239727755078, 0.014703169475116951, 0.013704801873206867, 0.012808370869954065, 0.012000013105174644, 0.011268172361428944, 0.009617237802658222, 0.008308815085293299, 0.007252864531302189, 0.00638732474865864, 0.005668204501618911, 0.0049907157120613185, 0.0044253661437549194, 0.003948813914120522, 0.003543482826785803, 0.0031959336015937533, 0.0026178333989117365, 0.002179444847315568, 0.0018395493710377134, 0.0015710137897635092, 0.0013553983044744173, 0.001181963122070528, 0.0010388422773560345, 0.0009194391662737268, 0.0008188488069251481, 0.0007333643472665662, 0.0002962599644207716, 0.00015047545016399913, 8.628268395951866e-05, 2.882677516231429e-05, 1.2420789297605944e-05], "CampbellBozorgnia2014": [0.039295222512902885, 0.04524290407662288, 0.04572579971655309, 0.044484610825297026, 0.043331566592890725, 0.04225289884031316, 0.04123794734180549, 0.04027828673501407, 0.038544201200267664, 0.03691569908340316, 0.03537720362367817, 0.0339021192377056, 0.03250822793575094, 0.03136822551189973, 0.03018498333401556, 0.028791966781894055, 0.0272790964332501, 0.025854295855110107, 0.023598595223127995, 0.021623537084813522, 0.019882261003546328, 0.018337654608204582, 0.016959955080690654, 0.015728826457773955, 0.014627009037232488, 0.01363644023263503, 0.01274218648443184, 0.01193180224103693, 0.010325847764364512, 0.009038905458773836, 0.007988716806217704, 0.007118470354940622, 0.006387787526625031, 0.005605135324117395, 0.004957204417522896, 0.004414823184062811, 0.003956300829356241, 0.0035652393156517075, 0.0028047323225975497, 0.002253195863067545, 0.0018422539087584913, 0.0015289987491532572, 0.0012854987337049344, 0.0011048090918508464, 0.0009581118768818111, 0.000837572491725861, 0.0007374597058906044, 0.0006535088355999498, 0.0002765397876940875, 0.0001332933719100303, 7.30867321232948e-05, 3.100253218664722e-05, 2.065244818700617e-05], "KothaEtAl2016Italy": [0.07026593465797176, 0.0771206947065596, 0.08262373790643868, 0.0798675157665409, 0.07740790886391936, 0.07519271714511311, 0.07318203359499888, 0.07134471228654636, 0.06862518987055327, 0.06603558392987813, 0.0635670947352095, 0.06121173359327988, 0.058962249567353416, 0.054330148608513464, 0.049226817996495226, 0.043744424671135436, 0.03838027734528479, 0.03429237616449138, 0.031027861524663955, 0.0282393884878228, 0.025835703142476935, 0.02374682320226474, 0.02191828243526028, 0.020570738496929968, 0.019363863850932438, 0.01827749205008369, 0.01729506645590057, 0.016402875855775628, 0.013376329520047012, 0.011104021181044752, 0.00935643984734164, 0.007984813544957161, 0.006889365803903633, 0.005866156805588745, 0.005044259021590967, 0.004375495208544428, 0.0038250489210450446, 0.0033673021420045565, 0.0027775587548978385, 0.0023290180303055497, 0.0019800296810224883, 0.001703231747246569, 0.0014800492971814828, 0.0012768506138071067, 0.0011114443100001038, 0.0009751575219974714, 0.0008616465771952211, 0.0007661892769556778, 0.00037131842756152046, null, null, null, null], "KothaEtAl2016Other": [0.07563705873088769, 0.08254383907219795, 0.08805446521614449, 0.08616645897759931, 0.0844519458764471, 0.08288306773028085, 0.08143812135062894, 0.08009987401936733, 0.07697672799843389, 0.07400734966708737, 0.07118119001239825, 0.06848864985410992, 0.0659210019436725, 0.061432211386817655, 0.05626152205679427, 0.04973847515355311, 0.04363674186803326, 0.03914009248493816, 0.03540921050110015, 0.03222320773743006, 0.029477488203421935, 0.027091867989109963, 0.025003962659369744, 0.02358650433297135, 0.02231096888162052, 0.02115756272208748, 0.020109964159128444, 0.019154599819615724, 0.01577913922049438, 0.013220023248859793, 0.011234221815222387, 0.009662754632771184, 0.008398100095085041, 0.007103140575459575, 0.006069735506802841, 0.005234014757718252, 0.004550113290882323, 0.0039844842416491295, 0.0032193655085411763, 0.002649644885543342, 0.002214786475462062, 0.0018758547413468567, 0.0016069219661460873, 0.0013633737513966408, 0.001168309940550306, 0.0010100193908448493, 0.0008800667820920507, 0.0007722633073725928, 0.000399023533728308, null, null, null, null], "KothaEtAl2016Turkey": [0.055395653581656414, 0.06279209081617904, 0.06881389580247725, 0.06821660585007978, 0.06765417822956318, 0.06712269398031685, 0.06661885320285701, 0.0661398558541742, 0.06348011408737338, 0.06095708434977633, 0.05856084932346647, 0.056282458801671376, 0.05411383148932045, 0.050583147122564606, 0.04504983781185416, 0.03959495511831982, 0.03461567270175363, 0.030590627883550554, 0.027340402202017004, 0.02459797186164226, 0.02226107177671359, 0.02025219836691452, 0.018511701262070038, 0.01715078160076138, 0.015947057086466074, 0.014876363638333506, 0.013919097018120675, 0.013059205688067845, 0.010456492719739632, 0.00853627809780379, 0.007082967657386056, 0.005959057683438591, 0.005073695218195815, 0.004239660056011742, 0.0035817997805335975, 0.0030555921822166187, 0.0026294184335580654, 0.002280392015768707, 0.0018833045784991274, 0.0015811891668553468, 0.0013460140590647422, 0.0011593767295144718, 0.0010087904662783817, 0.0008662470103068946, 0.000750738914977456, 0.0006559703601859377, 0.0005773560614972011, 0.0005114965507833675, 0.00028436359873706567, null, null, null, null], "ZhaoEtAl2016Asc": [0.24504588250265402, 0.33010024399993815, 0.3543604216912789, 0.3425626578336578, 0.3321039332545101, 0.31013205884810396, 0.29112123240853305, 0.27313289721758083, 0.2567151460397476, 0.24182935267362957, 0.22861050491253057, 0.21576812026189474, 0.2042626335747137, 0.18178314563194678, 0.16341974854407404, 0.1476496123779897, 0.13395584727947782, 0.12234849240256586, 0.11190364616205857, 0.10290440959526773, 0.09491131159988514, 0.08776821827269275, 0.08148888958823705, 0.07571236044975706, 0.07058641357406795, 0.06592993511427751, 0.06168391899593684, 0.05786862035352443, 0.049462464132347575, 0.04286053770517842, 0.03725185526279213, 0.03271705733317547, 0.028789463172695942, 0.025544331516545463, 0.022695618590056924, 0.020302188629067266, 0.018175591127821352, 0.016365067075247226, 0.013338304835665329, 0.01106808796207085, 0.009266631736695532, 0.007815917584788456, 0.0066709712146538185, 0.005737004720895217, 0.004979403186194393, 0.0043571945841287905, 0.0038405229999705502, 0.003407241596036814, 0.0012766168149759944, 0.0006770639702588709, 0.0004989297188334276, null, null], "BindiEtAl2017Rjb": [0.029302850468411412, 0.03498269833449795, 0.02977601407932106, 0.028584184516578508, 0.027059795020124396, 0.025507914897026085, 0.024095199701876274, 0.022921779699471744, 0.022109604106022154, 0.021386357524482424, 0.02028868013142088, 0.01960364613091965, 0.018699606831427792, 0.01681770725460997, 0.015156125397244303, 0.013783941875320838, 0.012500417372410646, 0.011458132006844757, 0.010585350878228917, 0.009862925855457144, 0.009094523125559884, 0.008438688829710377, 0.0077764306272135346, 0.007237517696065692, 0.006806191954398225, 0.006291754028850033, 0.005862527070301687, 0.0054585368553334845, 0.004667681256761805, 0.004018952203876264, 0.003475984726618477, 0.003063800063363638, 0.0027147621341777166, 0.0023951758432044683, 0.0021330154422418463, 0.0018898526743000741, 0.001683040229840503, 0.0015081949518150237, 0.001252503273499224, 0.001008417923840927, 0.0008451580555739548, 0.0007028244312635808, 0.0006210805918362762, 0.000539809597098814, 0.00046711286331171416, 0.00040817045353986513, 0.0003510413927000127, 0.00031260749501136736, 0.0001284048669953849, null, null, null, null]}}, {"ylabel": "Sa (g)", "magnitude": 4.0, "distance": 20.0, "row": 0, "column": 1, "yvalues": {"AkkarBommer2010": [0.016758804267281508, 0.02028340578179929, 0.02322570113445533, 0.02404632456598268, 0.0248214369727355, 0.025557081937923717, 0.026258104568827625, 0.026928456686332754, 0.02587963908790278, 0.024931164256480003, 0.02406834983564672, 0.02327932751724962, 0.022554388893631313, 0.019113669663531396, 0.01641842247104554, 0.014066611135069485, 0.012020915327069259, 0.010380796872125925, 0.009214031997699747, 0.00823705046349456, 0.007327785891019616, 0.006488602230523018, 0.005781150202381346, 0.005150029379411783, 0.004612389704931979, 0.004057768103938302, 0.003510202103190833, 0.0030543876958007963, 0.0022609827411153214, 0.001877343590965521, 0.0014711590490436347, 0.001203164377951938, 0.0009545540373904543, 0.0007891540560701288, 0.0006395975122245178, 0.0005728416569374503, 0.0005007085540627414, 0.00042481970907458296, 0.0003070983870594435, 0.0002675500978504226, 0.0002686816841897867, 0.00022677269220130805, 0.00020170828947495867, 0.00017938009425460833, 0.0001526071373397599, 0.0001275321125223493, 0.00011540963178956922, 0.00010354799372843864, 5.6894778730101935e-05, null, null, null, null], "CauzziFaccioli2008": [0.011965463487378604, 0.016520728514021945, 0.020769760626334337, 0.01929668168415055, 0.01804328505178767, 0.016962292595977965, 0.01601927545073239, 0.015188532580662497, 0.01400511741203946, 0.012977592591496988, 0.012077959973039723, 0.011284450021523035, 0.01057989572576302, 0.009320516659237575, 0.008302160507548015, 0.007629597856801588, 0.0072064428717541025, 0.006833617541484449, 0.006332481105970059, 0.0058952612646060235, 0.005456439856232616, 0.005022821896618402, 0.004643347643300456, 0.004391267421423562, 0.004163671819059189, 0.003924213413308651, 0.0036775806657721884, 0.003455594328491343, 0.0030642477060361805, 0.0026604839622565786, 0.002510473757602926, 0.0022511299245815313, 0.0019519322494790973, 0.0017585489610690607, 0.0015446303584024654, 0.0014313029360595948, 0.001304463918747332, 0.0012025250835923911, 0.001026556065675865, 0.0008858339349280142, 0.0007686338502768346, 0.0006631501481494997, 0.0005724811432891127, 0.000496086582217546, 0.00043783099989281053, 0.00038513108212125243, 0.0003537909444854796, 0.00032333367196303266, 0.00013747931828519904, 6.497518136536785e-05, 3.7113962477455e-05, 1.4795692395598516e-05, 7.494982646002345e-06], "ChiouYoungs2008": [0.007592825147848859, 0.00961940019015079, 0.010703028533491329, 0.010666002543060582, 0.01062549720513202, 0.01058271135574677, 0.010538472191120054, 0.010493360070609758, 0.010086572752523304, 0.00971357356077106, 0.00937013523881345, 0.009052716915924438, 0.008758329786801777, 0.007976625420011419, 0.007314290425494101, 0.006675812674719858, 0.0060661622430412425, 0.00554340796402942, 0.005017558738466714, 0.0045654848664206694, 0.004173704793692474, 0.0038317145771645813, 0.0035312277282720664, 0.0032452879063001616, 0.002992952531947905, 0.0027690957017798695, 0.0025695388928762266, 0.0023908476298089474, 0.0020131366699064415, 0.0017182743994018982, 0.0014835483797278383, 0.0012935551908685654, 0.0011375433421079019, 0.0010073222365672924, 0.0008980604997206559, 0.0008054774861791514, 0.0007263345624121153, 0.0006581444383308304, 0.0005431383564140133, 0.00045541320130290956, 0.0003870220860807079, 0.00033270651229524816, 0.0002888762464619348, 0.0002487953257017212, 0.000216148788828081, 0.00018924542166695655, 0.0001668428682015253, 0.0001480130633832283, 5.477542494772643e-05, 2.6112217391059615e-05, 1.4292351574188861e-05, 4.2612601453348625e-06, 1.6250525360994289e-06], "ZhaoEtAl2006Asc": [0.01732058613404099, 0.023396931695812712, 0.028954354690411733, 0.02849750285660162, 0.028087246841394308, 0.027715474717925705, 0.027375984168707932, 0.02706393206489354, 0.025971266276927436, 0.024986418772125697, 0.024093185288338242, 0.023278542096054858, 0.022531890585180316, 0.020880827818288983, 0.019481765786458292, 0.01797089873385443, 0.01640594016906353, 0.015071833372136077, 0.013958444433182464, 0.012988708855750373, 0.012137150764116972, 0.011383911366373376, 0.010713292482883273, 0.009778988311561924, 0.008965303028437881, 0.00825217391780461, 0.007623559183400017, 0.007066505958342917, 0.005698636101241101, 0.0046878406039043904, 0.003925289548749385, 0.003330281910225573, 0.0028119598883295295, 0.0024004047650276476, 0.002077459355190429, 0.00181291058221437, 0.0015611715538127785, 0.001354738236656596, 0.0010482239113761725, 0.0008293607373465068, 0.0006748574363216607, 0.0005626140303752079, 0.00047496481199075293, 0.00040388685824647015, 0.0003468446709311254, 0.00030046739839326516, 0.0002623230031450132, 0.00023062427517893608, 8.729925906976382e-05, 4.549778847353588e-05, 3.3574688717210365e-05, null, null], "AkkarEtAlRjb2014": [0.015106291412030941, 0.021199606866545116, 0.022585401157600524, 0.022876650248857405, 0.022913355818827863, 0.02252184777384147, 0.022050201049888505, 0.021327907196116002, 0.020584182662956058, 0.019684148557117063, 0.018687104207725767, 0.01761204640781435, 0.016829365027900858, 0.015409781635975742, 0.013956975754454386, 0.012350703656670662, 0.011024698500152258, 0.009859884101043864, 0.008919489190080381, 0.007939734272849127, 0.007184411458996289, 0.0065425489902348425, 0.0059979114720490724, 0.005479365652390495, 0.005026641890459545, 0.004607011308792979, 0.004187502931451593, 0.0038242721865585643, 0.003084954256866754, 0.002600741925949702, 0.0021848297551729525, 0.0018458789464377012, 0.0015734924372610374, 0.0013947630822205663, 0.0012186829229263625, 0.001063999219687174, 0.000939302757847266, 0.0008355428458126468, 0.0006679328451484213, 0.0005563862177639402, 0.0004624159694693171, 0.00038815208512512104, 0.00032990157360804963, 0.0002808466685306681, 0.0002503261852015073, 0.0002166594415708922, 0.0001924178570267395, 0.0001696752324790969, 6.164845397281618e-05, null, null, null, null], "BindiEtAl2014Rjb": [0.010398476673269806, 0.015223760870895092, 0.017027441699949693, 0.016626106674960117, 0.016266462106209998, 0.01594125352796409, 0.015644926641920003, 0.015373139947779403, 0.014507581520799293, 0.013737541055478458, 0.013047824089970825, 0.012426319815343867, 0.011863253071960313, 0.010092697758952206, 0.008707688588758917, 0.007601791006480909, 0.006573401344457607, 0.005741445615516873, 0.005043128186141463, 0.004464555128896989, 0.003979861804761512, 0.0035644022953143133, 0.003210430591128849, 0.0028860852581905046, 0.0026072944422676843, 0.002366012204395445, 0.0021443632175104877, 0.0019512143129247045, 0.0015945969879196163, 0.0013262103865212043, 0.001114653286656268, 0.0009489864472502771, 0.0008027413594307764, 0.0006864091055317417, 0.0005971175564954278, 0.000523587166126197, 0.00046431161370162784, 0.0004142901465146653, 0.0003339978125982687, 0.0002743552494678574, 0.00022893477542463908, 0.0002020607947528175, 0.00017987050780222556, 0.00016039883718235696, 0.0001440284755370596, 0.00013012421769177882, 0.0001105574536249669, 9.472072240054088e-05, 4.946303698910193e-05, null, null, null, null], "CauzziEtAl2014": [0.018769027784175454, 0.02543465523556807, 0.030828903344291374, 0.03240018245599594, 0.033179832873657424, 0.032976168754945495, 0.03143670797246772, 0.027666946434482923, 0.027529234207598265, 0.02677130044964668, 0.025369537567609932, 0.02329609321897889, 0.020506092502357777, 0.017918640547983946, 0.015314140845971528, 0.01337668200302143, 0.01213684548309517, 0.010966340004682275, 0.009866128091347019, 0.008897106832699965, 0.008008907080610942, 0.007195470161670335, 0.0064759290572195755, 0.005990793507258517, 0.005554994117891383, 0.00512615659310667, 0.004711600505279191, 0.004343908170836926, 0.003525458471550115, 0.0028419243387621967, 0.0024663640226417712, 0.0021100345390917576, 0.0018602642316122877, 0.0016395592815696362, 0.0014591060021147866, 0.0013284725677091909, 0.0011887807409478124, 0.0010680684698334468, 0.0008803773616509906, 0.0007733146223750359, 0.0006630058034228345, 0.0005617641113231671, 0.0004610291092046571, 0.00037991425346822137, 0.0003152103572289317, 0.00026447098156766097, 0.00023123955131925392, 0.00019941130352758914, 7.997654062706842e-05, 4.2334182640301745e-05, 2.7850292815094853e-05, 1.2511286928651377e-05, 7.564884135497154e-06], "DerrasEtAl2014": [0.007823052445865727, 0.012394885631951789, 0.015840601134226875, 0.0165518248104745, 0.01720767898395172, 0.0172726031877468, 0.01657098897281654, 0.017160496879430165, 0.01634305352480396, 0.01550371621385353, 0.014600897576942282, 0.014012319293243345, 0.013779637222059169, 0.012228740938960316, 0.010161674018132871, 0.008811274985088643, 0.007722619781692734, 0.0070528700290897976, 0.006099005314022865, 0.005820821700855629, 0.0054969845741325435, 0.004998150871812316, 0.004589064246121303, 0.004175441099239479, 0.003818295159649177, 0.0034934185918791467, 0.0032746459798495137, 0.002931846510018342, 0.0024029395738786605, 0.002218330256451502, 0.0019522687472392655, 0.0015618440607300232, 0.001258949171327192, 0.001081495209230754, 0.0009403947590463428, 0.0008221881619705242, 0.0007732894613848509, 0.0007638945129023519, 0.000625056716396675, 0.0005465577474227158, 0.00046758874730847596, 0.00038986527469027886, 0.0003385429324487068, 0.0003070958909733457, 0.0002566561194725586, 0.0002243429824123553, 0.00019511736933780033, 0.00017352412434884517, 6.482711829338199e-05, null, null, null, null], "AbrahamsonEtAl2014": [0.004957436909131777, 0.006863646066452862, 0.008021881760088823, 0.008063506907252327, 0.008064336999396668, 0.008031439517062644, 0.007968743885270468, 0.007882892959755132, 0.007635952227403491, 0.0073896368125337545, 0.007144778291540224, 0.006902018892661383, 0.006661855600196853, 0.006008843099706593, 0.005432600922920632, 0.004942552451541884, 0.004525099055515641, 0.004149264241033584, 0.003769779015830814, 0.003438803934670774, 0.0031480502961349927, 0.002890987573474812, 0.002662403603906575, 0.002470671652756253, 0.0023002012415109033, 0.0021478470323094286, 0.00201103742875647, 0.0018876515819326017, 0.0015765920323942756, 0.001337545537167874, 0.0011497466500578612, 0.0009994351607284686, 0.0008771940419160034, 0.0007809352048973417, 0.0007001574258920302, 0.0006316661320824964, 0.0005730563779648242, 0.0005224885962982423, 0.0004478743346377289, 0.0003891010637892439, 0.00034187048565146, 0.0003032688377667081, 0.0002712598126895237, 0.00024148777102019043, 0.00021650442779583566, 0.00019532153792924497, 0.00017719514372797765, 0.00016155619536653072, 6.855670057728148e-05, 3.775762145433004e-05, 2.2978768543500598e-05, 9.923753439134158e-06, 5.109281165928297e-06], "BooreEtAl2014": [0.0055188721241374835, 0.007076144905339489, 0.007620435113064537, 0.0076957266155194826, 0.007577727252735923, 0.0075443118080988246, 0.00747043299343962, 0.0073543728267912315, 0.007185281542811856, 0.006963098260636202, 0.006801795972205402, 0.006498732559407091, 0.006256972420621077, 0.005788518260251581, 0.005157584635119733, 0.004669486625290487, 0.004176751198873895, 0.0037605633695431493, 0.0034141480142216123, 0.003079217679696664, 0.002813326599706828, 0.0026090947610208654, 0.002372612725542586, 0.00219823895120084, 0.0020353387434922047, 0.0018789165676630702, 0.0017450835106712862, 0.0016171369354690192, 0.0013547586990704525, 0.0011429437482875825, 0.0009728877878793494, 0.0008372871554191422, 0.0007244921093510446, 0.0006311972226074048, 0.0005537215244920407, 0.0004870568878446043, 0.0004301747745660305, 0.00038381333207853084, 0.00031004707433741267, 0.00025417264507875717, 0.00021198625836795854, 0.0001798990453032262, 0.0001545129386883391, 0.00013436839644513282, 0.00011827061277489394, 0.00010486848711956696, 9.369302066699885e-05, 8.485241440846453e-05, 4.3296262127307605e-05, 2.7191329307642347e-05, 1.7808480810783165e-05, 6.384849438750327e-06, 3.3449783855620394e-06], "ChiouYoungs2014": [0.004112861302421117, 0.005448209630632862, 0.0064688716586053475, 0.006696968547594002, 0.006910562393162148, 0.006941571795811097, 0.006967793248920152, 0.006990009583970634, 0.006866648292392563, 0.006750087554905669, 0.006538589330049721, 0.006342032281217679, 0.006158756515356632, 0.005699359674004154, 0.005302707615610643, 0.004916892152706784, 0.004544411060405986, 0.004218893604709864, 0.003886196542977185, 0.003594718089841428, 0.0033375686476552614, 0.003109281566537434, 0.002905463544488636, 0.002708681448895855, 0.0025322879924129993, 0.0023734503256999102, 0.0022298201436190663, 0.002099435041022873, 0.0018012179393729459, 0.001563660379994052, 0.0013710311137597809, 0.0012124370114270527, 0.0010801229196581773, 0.0009539228100914044, 0.0008482906430164378, 0.0007589936893006992, 0.0006828355004461247, 0.0006173652582238583, 0.0005076799759694898, 0.00042417993248711444, 0.000359209689282424, 0.00030771128221415044, 0.0002662356391126253, 0.00023243737404876434, 0.0002045179744800673, 0.00018120296949274348, 0.00016154363093320991, 0.0001448222443165086, 5.923419982637216e-05, 3.025623468175554e-05, 1.7364267489109345e-05, 5.805713210254409e-06, 2.503371723774291e-06], "CampbellBozorgnia2014": [0.006845716923309127, 0.00842219442667291, 0.00951038531576217, 0.00959938283395637, 0.009663422451425003, 0.009706697337694912, 0.009732503191063004, 0.009743474482743635, 0.009467335666112053, 0.009196595656194732, 0.008931379820122914, 0.00867102608942445, 0.008416911815415614, 0.007930486150223041, 0.007466144590180757, 0.006998947599875145, 0.006543341406454249, 0.006125426267931414, 0.005631964317569806, 0.005196081930550468, 0.004808596134962559, 0.004462169985623519, 0.004150870364306383, 0.0038464808326528492, 0.003574317966395586, 0.003329853117104259, 0.0031093458394159603, 0.002909681801980793, 0.002452228505982999, 0.0020950674617113466, 0.0018106579703273372, 0.0015803635854757785, 0.0013911914060942292, 0.001226951574133564, 0.0010902969900525982, 0.0009753618623085169, 0.0008777633629204491, 0.0007941728970174153, 0.0006351365018996542, 0.0005179311121840229, 0.00042931377136804194, 0.0003608463166285836, 0.00030695833917897356, 0.0002674821550525591, 0.0002350057645124936, 0.00020798187252945693, 0.0001852661641223781, 0.00016599799091040836, 7.217216004273757e-05, 4.030256419747038e-05, 2.2768667573039192e-05, 9.304566312421605e-06, 4.956044011025624e-06], "KothaEtAl2016Italy": [0.011087628876356132, 0.013813922741645694, 0.016112088298957203, 0.016040138062164595, 0.015973852084984384, 0.0159123804943974, 0.01585505357406441, 0.015801333873957654, 0.015183095373783713, 0.014614231226607901, 0.014088871196639255, 0.013602063961877613, 0.013149600482661821, 0.012135393245105644, 0.011011566858366998, 0.009911184632882321, 0.008911077774379095, 0.00814909509434241, 0.007422536367642802, 0.006798799455173022, 0.006258522479409861, 0.0057868026625977195, 0.005372000435780538, 0.004994188417738713, 0.004658724663722612, 0.004359246037648223, 0.0040905683433194425, 0.00384842988186239, 0.003191868563577911, 0.0026908132486041588, 0.0022996655461121913, 0.001988412457498223, 0.0017366402785362483, 0.0015120989481209846, 0.0013276375142186997, 0.0011743410735556438, 0.0010456294890966822, 0.0009365626991327418, 0.0007688263860064601, 0.0006419575266891832, 0.0005437434076238822, 0.0004662034911427314, 0.0004039466579042229, 0.00034675819279007667, 0.0003004323421973858, 0.00026243668632992806, 0.00023092743484791022, 0.00020453804264694588, 0.00010651644578331707, null, null, null, null], "KothaEtAl2016Other": [0.013168938775545936, 0.01616895458183965, 0.018664276707101364, 0.01882968391624756, 0.01898089227904072, 0.019120153210149732, 0.019249220890770677, 0.019369488848373896, 0.018637301162320565, 0.01796242712906167, 0.017338184128336268, 0.016758914642060037, 0.016219793399403364, 0.015099274538255651, 0.01387940146672653, 0.01240385139997552, 0.011125608468826521, 0.010226167628029546, 0.00930505503085078, 0.00851511787181336, 0.007831543549108262, 0.007235253908664692, 0.006711362932789305, 0.006255720933960141, 0.005850133552068742, 0.0054871830339801786, 0.005160811722116273, 0.004866028646652207, 0.0040539117090318995, 0.00343147332507117, 0.002943652529548056, 0.0025540621241441305, 0.0022378612981664193, 0.0019354182717722865, 0.0016885948345905463, 0.0014847412868439814, 0.0013145796167587957, 0.0011711856777567146, 0.000929869898762998, 0.0007531923307850312, 0.0006204217591426712, 0.0005184237762910866, 0.00043857374141099384, 0.00037025554361611973, 0.00031580357980507724, 0.0002718187944849615, 0.0002358641812805885, 0.0002061595353117741, 0.00011446393564616999, null, null, null, null], "KothaEtAl2016Turkey": [0.009173869260930334, 0.011736437489290805, 0.013948100823351454, 0.014278417351175132, 0.014585911694214394, 0.014873865071775115, 0.01514487722890619, 0.015401045567083353, 0.014797089600879177, 0.014241349266919123, 0.013728117353913955, 0.013252573388676645, 0.012810614873109713, 0.012031639046692702, 0.010763210057506032, 0.009583255716989073, 0.00856509816961606, 0.007751781541572692, 0.006967488243244216, 0.006302889795169738, 0.0057342192621961125, 0.005243409350752951, 0.0048165133870518035, 0.00442282609344399, 0.004077458393285081, 0.003772668182190912, 0.003502220270543785, 0.0032610453151678213, 0.002640801795217478, 0.0021781825303758147, 0.0018245389566636197, 0.0015485248579903473, 0.001329233386778486, 0.0011350380005361973, 0.000978502414823108, 0.0008507137031362953, 0.0007452108271785214, 0.0006572249894289024, 0.000535780509230304, 0.0004445637106955652, 0.0003743945212479641, 0.00031931538974717824, 0.00027532700306321425, 0.00023524932717712872, 0.00020293077086820497, 0.00017653628647115458, 0.00015473554680555914, 0.0001365465511780403, 8.157257383248821e-05, null, null, null, null], "ZhaoEtAl2016Asc": [0.0518240336201938, 0.07286756988430211, 0.07717646939503353, 0.0735179101598327, 0.07033024114139308, 0.06420440776491103, 0.05901406095947244, 0.054059763961575004, 0.049592233470289605, 0.045472806978439195, 0.041905236441022585, 0.03857652731869095, 0.03566421772190185, 0.030367269551226945, 0.026220890551066897, 0.022801927711308508, 0.01994559649303958, 0.01760879077115822, 0.01560883438785881, 0.013937468729752345, 0.012513442977620536, 0.011289669990012212, 0.010239487155302854, 0.009325846135173215, 0.008530752164414741, 0.007832707561143985, 0.007216424115858026, 0.006670927602641953, 0.005552502742682136, 0.004696115281795085, 0.004029377319966674, 0.003496865198321017, 0.0030661819554403265, 0.002711508040507339, 0.0024172184407112033, 0.002169117151909014, 0.0019584337698546634, 0.001777547247102688, 0.0014850755389776078, 0.0012603862904390628, 0.00108327769401928, 0.0009411050361360717, 0.0008256177801173175, 0.0007284321556598808, 0.0006476048623198976, 0.0005796456918707202, 0.0005219500024687133, 0.00047254179052974934, 0.00020883235075034863, 0.00012482989623660882, 0.00010125841266640971, null, null], "BindiEtAl2017Rjb": [0.007090238901357685, 0.009081110612614416, 0.008688411375450254, 0.008566680577956455, 0.008390935840467325, 0.008086963228315706, 0.007791325382025164, 0.007545898507049847, 0.007258377750114878, 0.006979091907277865, 0.0066247864384905136, 0.006353520998505437, 0.0060608212685863945, 0.005461936466586478, 0.004918869087711831, 0.004427796157221182, 0.004002192101620528, 0.0036572376499924716, 0.0033769844266944567, 0.003099396323803457, 0.002831530074166805, 0.0026015883628162364, 0.0023888553073382526, 0.002208738040187584, 0.0020588229358918892, 0.0019140124657198848, 0.001785906484344922, 0.0016658659621820713, 0.0014014982545230692, 0.0011970406773484789, 0.0010306305387299119, 0.000889462893804068, 0.0007735266264779107, 0.0006781128297387146, 0.0005994558478017299, 0.0005349169147919873, 0.0004787405654700756, 0.0004301965656610431, 0.0003537245616772697, 0.0002870830230393054, 0.00024169400116170548, 0.00020310805376535124, 0.0001780109508398898, 0.00015436035859488453, 0.0001363581080230543, 0.00012123602853896236, 0.00010667422940392919, 9.548107396401936e-05, 4.6151526296485775e-05, null, null, null, null]}}, {"ylabel": "Sa (g)", "magnitude": 4.0, "distance": 50.0, "row": 0, "column": 2, "yvalues": {"AkkarBommer2010": [0.003156690754500706, 0.003941200246014364, 0.0046134057386317045, 0.004931741178713258, 0.005241525663350727, 0.005543677005521817, 0.005838951911442319, 0.006127983701625095, 0.006020035681344108, 0.005920344738284389, 0.005827846868291292, 0.005741664951357514, 0.005661068071196215, 0.0049029512572186535, 0.004299074111503127, 0.003757326399977786, 0.003273199625271057, 0.0028785189352950025, 0.002582453013575981, 0.0023321009957204407, 0.0020828819910645928, 0.0018412072044695891, 0.0016378860251697836, 0.0014526356451398928, 0.001295544105278157, 0.001139928345988096, 0.0009902763747915062, 0.0008652180830851801, 0.000656507571152182, 0.0005787362700246712, 0.0004733548273312527, 0.00038908649878439396, 0.0003085633526304234, 0.0002587184663142545, 0.00020932944539894883, 0.00018860285264523348, 0.0001627959450057236, 0.0001375940173286965, 0.00010323260704857561, 9.33479285988676e-05, 9.688412406316208e-05, 8.130322953930327e-05, 7.586993336883958e-05, 6.777402196357533e-05, 5.468215898046549e-05, 4.463150275166039e-05, 4.127628079831385e-05, 3.7272793391306664e-05, 1.9504184304786647e-05, null, null, null, null], "CauzziFaccioli2008": [0.002527371068481868, 0.003487649470043853, 0.0043829628382705465, 0.004171468348229104, 0.003987312845756568, 0.003825093988821012, 0.0036807925855633244, 0.0035513486001366216, 0.0033320855615035436, 0.003138466152352531, 0.002966232760404581, 0.00281202161164513, 0.0026731397973958648, 0.002390379376171245, 0.002158438796060303, 0.0020026962284081943, 0.0019030681488211847, 0.0018147766633763382, 0.0016869874163235933, 0.0015751561577127735, 0.0014695942759460404, 0.0013699789182548734, 0.0012817233036651798, 0.0012171837287297557, 0.0011586760119024605, 0.001097819569007038, 0.0010355524359970353, 0.0009791485180844852, 0.0008730688018758846, 0.0007684667563911852, 0.0007267751795975864, 0.0006546134751713006, 0.0005674274935582292, 0.0005113117702565986, 0.00044581326238759086, 0.00041071826300464917, 0.0003754437665369282, 0.00034706304447069866, 0.00029716754426573435, 0.0002564693204640892, 0.00022470517544191068, 0.00019286635755133842, 0.00016561169721866567, 0.00014296993435219886, 0.00012639321745487115, 0.00011105609375567993, 0.0001019157821381243, 9.330670588655432e-05, 4.354389771879098e-05, 2.1973498409548013e-05, 1.3344885086577256e-05, 6.082499674280035e-06, 3.154272907106245e-06], "ChiouYoungs2008": [0.0014156386634644781, 0.001728235026421748, 0.0019171331505378718, 0.001932784758219492, 0.0019459396017043884, 0.0019570751512035627, 0.001966551588958925, 0.001974646273377495, 0.0019221623763080193, 0.0018731218920419385, 0.0018271747005884809, 0.0017840157587547761, 0.0017433785689827945, 0.0016202108207610962, 0.0015133637896031604, 0.0014051295960054854, 0.0012974115484272524, 0.0012034081854262425, 0.0011039789422981718, 0.001017265311205622, 0.0009410985571198716, 0.0008737624525501765, 0.0008138833623668445, 0.0007547467302608227, 0.0007020653754566138, 0.0006549070821104937, 0.000612504473453056, 0.000574220939476363, 0.000490429606772529, 0.00042406754028747695, 0.00037053735678703687, 0.00032667698050317217, 0.00029025073807497585, 0.0002590205510878371, 0.00023260986142675268, 0.00021006429375842065, 0.0001906561980309524, 0.00017382266455784616, 0.00014473383487133303, 0.00012234952166331257, 0.00010475775868748018, 9.068266844545073e-05, 7.924638040139005e-05, 6.854987027413658e-05, 5.9799706543404154e-05, 5.255954718500022e-05, 4.650750545777639e-05, 4.1402170366195666e-05, 1.5591163679474393e-05, 7.479886669749623e-06, 4.1061546639093705e-06, 1.2282359212477297e-06, 4.6909693360956173e-07], "ZhaoEtAl2006Asc": [0.005752550184908258, 0.007634518230964139, 0.00933150409818501, 0.00922602546853446, 0.009130841402152175, 0.009044202450906768, 0.008964764215479218, 0.008891472058436971, 0.008570226047559429, 0.00827922246502242, 0.008014058737597248, 0.007771175263298056, 0.007547659267660225, 0.007054868797230018, 0.006633463700202071, 0.006167582040665067, 0.0056762300493376295, 0.005254054911888728, 0.004893363308948917, 0.004577287130349139, 0.004298138418204654, 0.0040498881426525605, 0.0038277433484537036, 0.0035109834541457207, 0.0032335745744109744, 0.002989154254176059, 0.0027726072030598184, 0.0025797813976449315, 0.0020961204917308235, 0.001735008872822304, 0.0014572801855678146, 0.0012399349827440782, 0.0010492305629656357, 0.0008974845986433843, 0.0007779208147597772, 0.0006798248892358269, 0.000586543952601457, 0.0005099085992337522, 0.00039508991823624724, 0.0003129990898666659, 0.0002545728612503779, 0.0002118049939805972, 0.00017847331924189392, 0.00015201604723943027, 0.00013074784440989825, 0.000113429121750535, 9.916401787560387e-05, 8.72931614772787e-05, 3.360603628659324e-05, 1.7298234786128994e-05, 1.2640095878127517e-05, null, null], "AkkarEtAlRjb2014": [0.0026398237219890926, 0.003607168222380877, 0.003762258040611119, 0.00380541852943532, 0.0038229857519618982, 0.0037696794215588713, 0.0037057965774363647, 0.0036059648228921487, 0.0035220889886056175, 0.003415494595332654, 0.003284587696161416, 0.00313619472809329, 0.0030377713916101483, 0.0028483661011600193, 0.00263664722891953, 0.0023680446633702534, 0.00215689662748485, 0.0019705772145164643, 0.001832930365148199, 0.0016702790034366353, 0.0015330124895799669, 0.0014163369934517755, 0.0013128751387695115, 0.0012105890916439235, 0.001121340228494775, 0.0010344905230805874, 0.0009471960685274899, 0.0008711389426989373, 0.000718410043421738, 0.0006211119649898934, 0.0005358444558184798, 0.0004613300322717831, 0.00040276232400728414, 0.0003616920531349558, 0.0003199871507471805, 0.0002830430246844495, 0.00025260492491581453, 0.00022631587469824934, 0.00018429946557723713, 0.00015602876002048915, 0.0001318482130554608, 0.00011164881780762355, 9.417576601006289e-05, 8.081674260750222e-05, 7.26940743447625e-05, 6.333672473747361e-05, 5.6599163483948965e-05, 5.001552982559799e-05, 1.864039044555684e-05, null, null, null, null], "BindiEtAl2014Rjb": [0.002151561843557811, 0.003146940677572523, 0.003573098985233636, 0.0035757492194510607, 0.0035781183842497986, 0.003580255869619576, 0.0035821994174583824, 0.0035839784760269976, 0.0034840612679623763, 0.0033926765596356194, 0.0033086572951537556, 0.0032310497447345923, 0.003159065678786004, 0.002754497652969877, 0.002430544377405085, 0.002166270509016303, 0.0018957197993120366, 0.0016743048593685153, 0.0014918565137638216, 0.0013386098744295227, 0.0012085611904010416, 0.0010938249082456117, 0.000995061728768093, 0.0008979603203469983, 0.0008142092431683602, 0.0007414853481600748, 0.0006740711348502482, 0.0006151698900224605, 0.0005059508655958515, 0.0004232609768130791, 0.00036160065837951877, 0.00031254982644533216, 0.000263631771254098, 0.000224827144311121, 0.00019796443013502205, 0.0001755834265235543, 0.00015636997030959331, 0.00014008929203696837, 0.00011573199931403847, 9.72124764891921e-05, 8.280443584184923e-05, 7.266252649459968e-05, 6.433950085537388e-05, 5.592278625304154e-05, 4.9021941879101673e-05, 4.329729442067009e-05, 3.684842659728394e-05, 3.1620590017059426e-05, 1.5926704622390142e-05, null, null, null, null], "CauzziEtAl2014": [0.003519627321455499, 0.004819150217850742, 0.006125047844524927, 0.0065132935740376706, 0.0067439864428544515, 0.0067727361338534384, 0.0065206370651679935, 0.005792943463059011, 0.005867568952382429, 0.005804281793537998, 0.005591481735642131, 0.005216508273304927, 0.0046626431228186304, 0.004117874133415255, 0.0035549349462061243, 0.0031268733886631495, 0.0028485790419001994, 0.0025837596700392157, 0.0023268365263062617, 0.0021002626678001866, 0.0018977252170613872, 0.0017160858781672295, 0.0015542711007822613, 0.0014402015463535248, 0.0013375490037492437, 0.0012381792564233063, 0.0011433287684493683, 0.0010588380204849847, 0.0008667556168201119, 0.0007035521200597213, 0.000605080740122286, 0.0005146730502415237, 0.0004481745761780927, 0.00039452131401936314, 0.0003497529904938082, 0.00031683939107594996, 0.0002839686325431344, 0.0002547263933032586, 0.0002081459555698466, 0.00018161000576350539, 0.00015523487837852698, 0.00013094985326570684, 0.00010789946333212748, 8.912636290414746e-05, 7.40438658012545e-05, 6.260694646853801e-05, 5.555032964177397e-05, 4.856427638243995e-05, 2.1444422946921928e-05, 1.1583245764784714e-05, 7.992777833675618e-06, 3.883348591334191e-06, 2.2902978803791e-06], "DerrasEtAl2014": [0.001872745876535258, 0.0027046101193095987, 0.003380741261035083, 0.003541981581812952, 0.0037006391487133675, 0.0037394291462826326, 0.0036455040913607865, 0.003820202618338484, 0.0036710687285356537, 0.0035473058799410954, 0.0033795084255194064, 0.003291749677444392, 0.0033056938279964034, 0.003092709054390403, 0.0026761258971750774, 0.0023881976944948747, 0.0021540042861240383, 0.001952896226972802, 0.0017678276105759087, 0.0017445527967384564, 0.0016500709993719329, 0.001523399188325487, 0.001415327986460731, 0.0013136368677226292, 0.001209212504077674, 0.0011128164826307901, 0.0010392014948004636, 0.0009437834771316939, 0.0007889665046357916, 0.0007224861654834748, 0.0006400336841235917, 0.0005290850138726846, 0.0004428413553756791, 0.00038553050202955424, 0.00033855273484544555, 0.00029865884582954577, 0.00028556757786089387, 0.00028830009346617687, 0.00024070513860016647, 0.00021341870914900652, 0.00018303242253142174, 0.0001546475361307019, 0.00013338679830815871, 0.00011905091066066887, 0.0001009033397689332, 8.912677202155125e-05, 7.82236963880768e-05, 6.987617388589378e-05, 2.579187747333212e-05, null, null, null, null], "AbrahamsonEtAl2014": [0.0012186517011431937, 0.0016427985922893857, 0.0018855552205154671, 0.0018949893527920845, 0.0018948338262864328, 0.0018867634280073848, 0.001872034832354019, 0.0018518665441936213, 0.0018047533479582723, 0.0017565026676775084, 0.0017074353141849183, 0.0016578125850666638, 0.0016078488654716284, 0.001472715310729999, 0.0013503060471111944, 0.0012446253443253068, 0.0011534831518064557, 0.0010697555315282582, 0.0009857513943804658, 0.0009112231473113436, 0.0008446857184383144, 0.0007849497955331641, 0.0007310513701107554, 0.0006833176751395009, 0.0006405621474942859, 0.0006020793958718854, 0.0005672885578011697, 0.0005357072928901341, 0.00044964407537137913, 0.0003831909856954215, 0.00033075717384050226, 0.00028862149039062944, 0.0002542269461760403, 0.000226329367067706, 0.00020291848293704253, 0.0001830684479016803, 0.0001660822645790955, 0.0001514267925926329, 0.0001300771059487639, 0.00011322592846638261, 9.96590370750614e-05, 8.855177265282243e-05, 7.932681467030975e-05, 7.076305381173274e-05, 6.356263538436247e-05, 5.744627093713848e-05, 5.220331923276738e-05, 4.767237909812607e-05, 2.0116530378587097e-05, 1.0967123420780481e-05, 6.692771083371445e-06, 3.1378299767685475e-06, 1.7342762770219467e-06], "BooreEtAl2014": [0.0013882285579469786, 0.001792945564834654, 0.0019956477901236073, 0.0020431049521664885, 0.0020376364950042527, 0.0020523094201038918, 0.0020534479901192933, 0.0020412120175588985, 0.0020124062251624768, 0.0019664382079958294, 0.0019352110077748555, 0.0018611531245076758, 0.0018025954325026072, 0.001685771840195698, 0.0015171229126779567, 0.0013858532055310688, 0.0012495653879593994, 0.0011329587880490495, 0.0010349961411356449, 0.0009384691520074685, 0.0008612816237857587, 0.0008016102442523875, 0.0007311365473369969, 0.0006792362911096949, 0.0006303122430036415, 0.000582887889186638, 0.0005423086616253671, 0.0005033236948175345, 0.00042324904628412833, 0.000358437834406848, 0.0003062335014878076, 0.0002644453645626525, 0.00022950723292089405, 0.00020049824801760167, 0.0001763601442685596, 0.00015553718814018228, 0.00013774228776729336, 0.00012320865667774354, 0.00010006191801768592, 8.245274133368392e-05, 6.909817494012396e-05, 5.887478004844952e-05, 5.0712483837148086e-05, 4.420394521526888e-05, 3.898296110789125e-05, 3.462455632992855e-05, 3.097497293339723e-05, 2.80673387929059e-05, 1.4377052936979657e-05, 9.069372450304011e-06, 5.978868862571449e-06, 2.1299407900020736e-06, 1.0442199621188267e-06], "ChiouYoungs2014": [0.0008245112965254422, 0.0010837411054516809, 0.001320861225982433, 0.0013841741083429396, 0.0014443647711819235, 0.00146857219127039, 0.0014908422481675933, 0.0015114348735124875, 0.001500626979350512, 0.0014899911080290364, 0.0014570648136059967, 0.0014260321853553103, 0.0013967126756804203, 0.001311607521123457, 0.0012368275792488195, 0.0011613342288496773, 0.0010861253356176763, 0.0010195271751782505, 0.0009486043726951971, 0.0008857932521540518, 0.000829812521425153, 0.0007796339640913088, 0.0007344221703791587, 0.0006890244209175747, 0.0006480565225773416, 0.0006109286458780381, 0.0005771484143776727, 0.0005463015553952762, 0.00047310907995145614, 0.0004142432010441002, 0.00036608840980190035, 0.00032611751626146295, 0.0002925155568588213, 0.00025974336738488233, 0.00023216107845432563, 0.00020872315090715912, 0.00018863576511665638, 0.00017128717978685186, 0.0001417198310617173, 0.00011907416789978853, 0.0001013557185217067, 8.723908760622659e-05, 7.581565345979504e-05, 6.621858360451169e-05, 5.828947442469606e-05, 5.16670489243204e-05, 4.6082244595752584e-05, 4.133144956444465e-05, 1.699944328346529e-05, 8.709117282809526e-06, 5.004113630617824e-06, 1.6756595705306977e-06, 7.235837611160862e-07], "CampbellBozorgnia2014": [0.0013761852533042543, 0.0017035632425683265, 0.002020798712587174, 0.002075944611132031, 0.002123628316473667, 0.0021648561048343436, 0.002200445349279649, 0.0022310699727413315, 0.0021855363612461637, 0.0021392896425703914, 0.0020926161631183403, 0.0020457076665690065, 0.001998814634687812, 0.0019059707131774536, 0.0018148932005111668, 0.0017189852431294637, 0.0016221101346713968, 0.0015319943750239822, 0.0014178044243774034, 0.0013161206080384825, 0.001225035532116216, 0.0011430128635540827, 0.0010688006810015368, 0.0009920155498819873, 0.0009232389078210309, 0.0008613574014005869, 0.0008054498890305489, 0.0007547481662329147, 0.0006404650303441713, 0.0005507880308927835, 0.0004790263875340386, 0.000420639917721445, 0.00037245439038129986, 0.0003290251774571612, 0.0002928323690747969, 0.0002623460556800261, 0.0002364213844274513, 0.00021418764102529276, 0.00017321553784231414, 0.00014269487813510333, 0.00011939113683255845, 0.00010122262685427529, 8.680243803058033e-05, 7.525574617329418e-05, 6.581061851006135e-05, 5.7992597842469143e-05, 5.145299270015301e-05, 4.593107556116115e-05, 2.0244215647844228e-05, 1.1705065654489504e-05, 6.495087911546336e-06, 2.5661816139314845e-06, 1.3088031941661764e-06], "KothaEtAl2016Italy": [0.0018584497893194209, 0.002315203044867564, 0.002704424183470288, 0.0027638600840992947, 0.0028192411827221635, 0.0028711496498076724, 0.002920046704355953, 0.002966304431892826, 0.0029277930897362464, 0.0028916917187616254, 0.0028577360933617663, 0.00282570253190917, 0.0027954000452115307, 0.0026517376713484516, 0.002508327399302858, 0.0023496689162677644, 0.002145577246353595, 0.002016221057043922, 0.0018736130566125832, 0.0017488306575710417, 0.0016387843303106127, 0.0015410537411650568, 0.0014537167168269713, 0.00134857216214395, 0.0012554092146672784, 0.0011724066605962452, 0.0010980836900159033, 0.001031225329691668, 0.0008811226633741075, 0.000763254220859075, 0.0006688031609045359, 0.0005918100050708563, 0.0005281210396452537, 0.0004645603982723653, 0.00041183771821313753, 0.00036762027379438433, 0.0003301710353838206, 0.00029817498021431484, 0.0002509697658965615, 0.00021442136387103612, 0.00018551202558908148, 0.00016222784734685892, 0.0001431816149840303, 0.00012292267358083371, 0.00010651092409110531, 9.304953850371541e-05, 8.188555578378092e-05, 7.253502191791533e-05, 3.9812706892854776e-05, null, null, null, null], "KothaEtAl2016Other": [0.002755190418030539, 0.003335276184285169, 0.0038175104699544695, 0.003962302625306097, 0.00409924667034671, 0.0042293720572179816, 0.004353505750275988, 0.004472323478136973, 0.004434426768259346, 0.004398565157357117, 0.004364544590182767, 0.004332196941356226, 0.004301375670142372, 0.00408396070671452, 0.003921078682217046, 0.0036237670453569716, 0.0032880215825177037, 0.003113327741889137, 0.002883238486693209, 0.002682584691450283, 0.002506184757695669, 0.0023499924629863415, 0.0022108041199254487, 0.0020448841848880513, 0.0018982956680074934, 0.001768053691065288, 0.0016517380441840035, 0.0015473682842993774, 0.0013121382132152408, 0.0011287607777152933, 0.0009827906864955738, 0.0008645297117037071, 0.0007672601009397848, 0.0006706793365918599, 0.0005910570653403282, 0.0005246638163931192, 0.0004687386626215695, 0.0004212029153412254, 0.0003332307225704781, 0.0002690623626916319, 0.0002210020280100502, 0.00018419253205705256, 0.00015545541807577884, 0.00013125227399305147, 0.00011196041967485144, 9.637605830636316e-05, 8.363609800787684e-05, 7.311004945050041e-05, 4.278324427904735e-05, null, null, null, null], "KothaEtAl2016Turkey": [0.0017145761219875026, 0.0021712739721331084, 0.0025659314697766005, 0.002713210814931448, 0.0028550091972521707, 0.0029919629853600227, 0.003124591930038896, 0.0032533272723187017, 0.0032225119757125723, 0.0031934042102032285, 0.0031658363924611087, 0.003139664016086486, 0.003114761650686595, 0.0030247759230778, 0.0028338823052075444, 0.0026231766365184326, 0.0023705833230840655, 0.0022073278813318454, 0.002019052728560125, 0.0018568271391304276, 0.0017158157146307828, 0.0015922854133821258, 0.0014833121666119953, 0.001360601424728113, 0.0012530654484168141, 0.0011582596728994098, 0.0010742173276800234, 0.0009993409297968355, 0.000823779629031874, 0.0006905813314771593, 0.000587156532891026, 0.0005052634760756324, 0.0004393242865439883, 0.00037858660451984383, 0.0003292017201489064, 0.0002885545839349994, 0.0002547344947688167, 0.00022632058211523589, 0.00018572566064407252, 0.00015505452037688233, 0.00013133066491737938, 0.00011261276973492974, 9.759151159173886e-05, 8.3393779457754e-05, 7.194413149264772e-05, 6.259269698539611e-05, 5.486834536583048e-05, 4.842330040094765e-05, 3.0489423005111775e-05, null, null, null, null], "ZhaoEtAl2016Asc": [0.01520020825702393, 0.022089520646032482, 0.02373234659803149, 0.022651247737889776, 0.021708041976067377, 0.01976042868181591, 0.018114666310340324, 0.016515491518057587, 0.015071808037273912, 0.013722736581262003, 0.012562190949661076, 0.01148042400258255, 0.01054058413995404, 0.008845040560761045, 0.007536306756208791, 0.006466245863974375, 0.005580031713753552, 0.004864477471559704, 0.004258017753675484, 0.0037573691730244775, 0.00333618695529099, 0.0029785543049617273, 0.002674772729458334, 0.0024142115212211017, 0.0021894516631662457, 0.001994306879676852, 0.001823829554039397, 0.0016740245228047295, 0.0013738815560239126, 0.0011471367090426692, 0.0009759691270277059, 0.0008403673831363144, 0.0007334914245243962, 0.0006458648413621645, 0.0005748862633199998, 0.0005151340362852066, 0.00046549630466920705, 0.0004228413110052029, 0.00035534210162239727, 0.00030319041520697715, 0.00026253277014064353, 0.0002302166891990537, 0.00020372622617317784, 0.00018145212605989833, 0.00016275569796090077, 0.00014689903321742545, 0.00013332659375973508, 0.00012161341778763903, 5.77981902195583e-05, 3.6535913848285945e-05, 3.089686528352608e-05, null, null], "BindiEtAl2017Rjb": [0.0019042638397228407, 0.002576025161680957, 0.0027217411702960643, 0.002750218418731679, 0.0027570278938740416, 0.002717375619522489, 0.002655290387431924, 0.002592575332118744, 0.0024939331694776843, 0.0023954554312586, 0.002281804028434805, 0.0021912468668675474, 0.002103314894217948, 0.0019083284589518803, 0.0017286070175945628, 0.0015589622048080597, 0.001413058249731251, 0.0012906004534252303, 0.0011858793305172546, 0.0010870632879325902, 0.0009939683245905916, 0.0009149130441918838, 0.0008419978862581824, 0.0007775328677411424, 0.0007229111896882678, 0.0006728252369195201, 0.0006260982248260597, 0.0005849491493409402, 0.0004929841051422706, 0.0004198809924037205, 0.00036106362164674825, 0.00031225730914562536, 0.0002723436883540352, 0.00023967883350498994, 0.00021166556840923113, 0.00018885747926600482, 0.00017014733017118935, 0.00015319496386143004, 0.0001262282317890473, 0.00010446170290101566, 8.842619753080104e-05, 7.46614756449259e-05, 6.46394422168188e-05, 5.599538097608826e-05, 4.974488071519833e-05, 4.422469018077754e-05, 3.9023190797513804e-05, 3.45653850601377e-05, 1.736932676776509e-05, null, null, null, null]}}, {"ylabel": "Sa (g)", "magnitude": 4.0, "distance": 150.0, "row": 0, "column": 3, "yvalues": {"AkkarBommer2010": [0.0003810669724862741, 0.0004910629176778108, 0.0005878676260945887, 0.0006541358810545944, 0.0007211365673660797, 0.0007888156511541719, 0.0008571269701242371, 0.0009260306014064708, 0.0009361308866309531, 0.000945718567402486, 0.0009548476306790934, 0.0009635637501687578, 0.0009719059295092762, 0.0008745283399761267, 0.0007941575501508368, 0.000716742524251535, 0.0006431531604283005, 0.0005814460186613335, 0.0005298698331231, 0.0004855954369372962, 0.0004357380701751232, 0.00038344372099447335, 0.0003396454807167974, 0.00029907997548137536, 0.00026492239901407326, 0.00023258959071152175, 0.00020248692442009338, 0.00017728037239044848, 0.00013988011719640023, 0.0001344087094035745, 0.00011748699044153221, 9.806719471598152e-05, 7.789665832810671e-05, 6.637789589372617e-05, 5.343790398507764e-05, 4.8480595965576426e-05, 4.1111899055941355e-05, 3.4527207580916144e-05, 2.7101528130318097e-05, 2.5643932304882148e-05, 2.7676973259197807e-05, 2.3008189891767814e-05, 2.2823694558427114e-05, 2.040566930674574e-05, 1.5246635667251386e-05, 1.1939935069149532e-05, 1.1320701805012386e-05, 1.0305572050971441e-05, 5.075183690233149e-06, null, null, null, null], "CauzziFaccioli2008": [0.0003875906808876896, 0.0005345061861424631, 0.0006714070589358953, 0.0006578590482735991, 0.0006457295341698213, 0.0006347690530940503, 0.0006247871639711207, 0.000615635388804421, 0.0005898658390926088, 0.0005666424427671503, 0.0005455848774628433, 0.0005263868212050952, 0.000508798546081729, 0.00046324757926267983, 0.00042523315053163876, 0.00039913958840432306, 0.000382052874903872, 0.0003668036546798813, 0.0003422700303541216, 0.00032072096717026784, 0.0003021222201872148, 0.0002859598388527668, 0.00027142663643054657, 0.000259053082795856, 0.00024778094834883557, 0.00023626629861688836, 0.0002246246692925552, 0.000213997679815509, 0.0001920886260937717, 0.00017188623929618085, 0.00016300384406444282, 0.00014761215403260767, 0.0001279028553197308, 0.00011528133289562094, 9.962396003015397e-05, 9.114247808241054e-05, 8.361608622376205e-05, 7.75536205621819e-05, 6.664508771375753e-05, 5.752807692959207e-05, 5.099585756135522e-05, 4.349769901192182e-05, 3.7111577585488414e-05, 3.1892042606874747e-05, 2.8251513743683406e-05, 2.479004814255087e-05, 2.2722018786168314e-05, 2.0846996238604717e-05, 1.0884538225178631e-05, 5.944343912112336e-06, 3.8871167316471775e-06, 2.0822894446547728e-06, 1.1108016783176604e-06], "ChiouYoungs2008": [0.00010043070244778633, 0.00010866895815127884, 0.00011993963371500356, 0.00012611692152944703, 0.0001319493501977136, 0.0001374792266200048, 0.00014274092377386635, 0.00014776280306090007, 0.00015058812900573817, 0.0001532087266611999, 0.00015564832232891848, 0.00015792679103971837, 0.00016006093322691397, 0.00016027039811649564, 0.00016024851755901012, 0.000158518921781778, 0.0001553167914664815, 0.00015224777458104662, 0.00014678603204392308, 0.00014172139644285137, 0.00013701070204560144, 0.00013261641224167347, 0.00012850586839277688, 0.00012317421342210468, 0.00011824586705190581, 0.00011367617091324691, 0.00010942678181736899, 0.000105464606186759, 9.480571427104964e-05, 8.589891496765451e-05, 7.835275570257578e-05, 7.188302423128571e-05, 6.627865711894298e-05, 6.077219863848549e-05, 5.598290695259804e-05, 5.17850064630339e-05, 4.807988928936732e-05, 4.478924938561369e-05, 3.845295726664899e-05, 3.3426959946526784e-05, 2.936593736978965e-05, 2.6032588636317445e-05, 2.325918701426156e-05, 2.041873360415175e-05, 1.806091498031481e-05, 1.6082988179029106e-05, 1.4408067566681557e-05, 1.297770767826026e-05, 5.178410356447781e-06, 2.537039274082249e-06, 1.4066703201888436e-06, 4.2540683731920517e-07, 1.6328892789555896e-07], "ZhaoEtAl2006Asc": [0.0009870094039147266, 0.0012254735639792192, 0.0014287975984657304, 0.00143436582126253, 0.0014394718127094892, 0.0014441878443514427, 0.0014485703623150776, 0.0014526643079365079, 0.0014202219628054206, 0.0013904175323465274, 0.001362898599237131, 0.0013373762703527972, 0.0013136110653087908, 0.0012644189514625574, 0.0012211407219701136, 0.0011670320376047437, 0.0011048323454028969, 0.0010499100467866768, 0.00099912607758434, 0.0009536723255902965, 0.0009127223886454547, 0.0008756149874537334, 0.000841814323927886, 0.000786235819671553, 0.0007366770148114119, 0.0006922547146264751, 0.0006522464170409314, 0.00061605586407307, 0.0005151346309500519, 0.00043757652306183225, 0.00037203293710258705, 0.00032013491921648187, 0.000273108775035362, 0.00023539291615105634, 0.0002050843637847191, 0.00018009237173575546, 0.00015634545226116193, 0.0001367180237195807, 0.00010650936739059738, 8.479894723929564e-05, 6.887940525047686e-05, 5.691465277517183e-05, 4.76516864905823e-05, 4.079957967779307e-05, 3.5263297088471436e-05, 3.073350141180616e-05, 2.6985540645801508e-05, 2.3853306446430982e-05, 9.695498216010273e-06, 4.760758555241152e-06, 3.3399656741816284e-06, null, null], "AkkarEtAlRjb2014": [0.0002920055614867485, 0.00038580584782542453, 0.00039175695243294663, 0.00039554843723202415, 0.0003988832028479002, 0.0003949092974425859, 0.00039021753689192946, 0.00038258999845660187, 0.0003793738334553882, 0.00037444000935169983, 0.00036599902686687227, 0.0003552537939720918, 0.00035005002076904336, 0.00033820971922699265, 0.00032179848005410447, 0.0002944739802566878, 0.0002751366149783788, 0.00025822531429716745, 0.0002487731906790672, 0.00023350255111413666, 0.0002181913809367623, 0.00020528916151930508, 0.0001929682740909233, 0.0001800371983564681, 0.00016880879492641273, 0.0001570285109392781, 0.00014511168914635328, 0.00013464938817702593, 0.00011417922913452717, 0.00010190696252107139, 9.091774470319295e-05, 8.015956226498314e-05, 7.212537798247764e-05, 6.584379682655431e-05, 5.917362913387975e-05, 5.321127626914854e-05, 4.814561974453904e-05, 4.352666290117524e-05, 3.628427165823779e-05, 3.135312022776556e-05, 2.705542849334975e-05, 2.3165627961796927e-05, 1.9353844834616055e-05, 1.67771543673412e-05, 1.526563677688807e-05, 1.3412605111663521e-05, 1.207976583008019e-05, 1.0703277966403378e-05, 4.1191646281164724e-06, null, null, null, null], "BindiEtAl2014Rjb": [0.0002540901943165406, 0.00034271332540212785, 0.00037839400957922613, 0.00038544814321924656, 0.0003920024976391282, 0.0003981300134939056, 0.00040388832159454926, 0.0004093237999680486, 0.00041506004013419054, 0.00042052049250477223, 0.00042573353198551925, 0.0004307232276608281, 0.00043551018495309755, 0.0004013865558534539, 0.00037257329208155633, 0.00034789703970967794, 0.0003200262904251883, 0.0002960899286386847, 0.0002751201538428389, 0.0002567762058042691, 0.00024060223037032354, 0.0002238037097438872, 0.00020895256505243525, 0.00018953539504592366, 0.00017270440614229867, 0.00015801989152395887, 0.00014525005323325917, 0.0001339720748871063, 0.0001137826593797461, 9.801971398419304e-05, 8.760385229175942e-05, 7.894966276206389e-05, 6.715759826429881e-05, 5.772659133457153e-05, 5.150377623474943e-05, 4.625240361162213e-05, 4.142116219400381e-05, 3.730511106491726e-05, 3.177109008104645e-05, 2.743895918277869e-05, 2.3977380641636914e-05, 2.085840378810125e-05, 1.832048526362675e-05, 1.5426027175703437e-05, 1.3125023445141169e-05, 1.1270856874374289e-05, 9.617557236069012e-06, 8.273839087369443e-06, 3.92574592532192e-06, null, null, null, null], "CauzziEtAl2014": [0.00027591509186077317, 0.00036533616526504857, 0.0005106808584293445, 0.0005640087320328147, 0.0006048146177688208, 0.0006275518129755777, 0.0006229589063787882, 0.0005696033680979216, 0.0006007284427950338, 0.0006174714000880432, 0.0006169374641309239, 0.0005959618840985115, 0.0005507349098465021, 0.0005060946405161788, 0.0004533272981725223, 0.0004096331696284772, 0.0003799307467764603, 0.0003504652778043701, 0.00031833897878594106, 0.00028968104350395615, 0.0002663643074585008, 0.0002473010530679913, 0.0002297238375743985, 0.00021482180475172624, 0.00020126769110614262, 0.0001882258719566185, 0.00017582756517616388, 0.00016465657717574034, 0.00013602533264859456, 0.00011156540865684608, 9.503960225787742e-05, 8.030171221825028e-05, 6.894442888392094e-05, 6.051692460404611e-05, 5.3377873803998885e-05, 4.799133978484483e-05, 4.3099902812167854e-05, 3.875451503640719e-05, 3.122098176042212e-05, 2.683925894825366e-05, 2.2724892340555886e-05, 1.8905157083587924e-05, 1.5471515855327484e-05, 1.2685005056316388e-05, 1.0427368562631405e-05, 8.750918536894897e-06, 7.74923472137107e-06, 6.766743716899364e-06, 3.1831855989747917e-06, 1.733027832518107e-06, 1.242270911274512e-06, 7.002083355688334e-07, 4.2701813468856603e-07], "DerrasEtAl2014": [0.0005879247404620168, 0.0007688262199447634, 0.0009102251508003672, 0.0009434111015025333, 0.000984012847000949, 0.0009940075596842472, 0.0009736840855237096, 0.0010145516918206813, 0.0009689588501835124, 0.0009430642687576615, 0.0008992034488552966, 0.0008840485276010392, 0.0008993609707830175, 0.0008667561425790578, 0.0007685363605303382, 0.0007059807093203344, 0.0006553729893886518, 0.0005944780523249766, 0.0005640730813816699, 0.0005724938258542707, 0.000542039738958237, 0.0005078001520168678, 0.0004761612048345311, 0.0004547493300985913, 0.00042352709949821293, 0.00039275061054695265, 0.0003667494231654334, 0.0003384668077773386, 0.00029092735156150686, 0.00026581877394516216, 0.00023959591776613387, 0.00020500567684144424, 0.00017866518594793803, 0.0001594334686280996, 0.00014222185621496643, 0.00012750193076578478, 0.00012502833827046224, 0.00012984810179509376, 0.00011153719746894041, 0.00010069537781547233, 8.784662396849707e-05, 7.658642436619186e-05, 6.6479241866459e-05, 5.9115466975713685e-05, 5.1289479571479916e-05, 4.647465912072935e-05, 4.149499007782975e-05, 3.737756431009734e-05, 1.5033455841104018e-05, null, null, null, null], "AbrahamsonEtAl2014": [0.00013553358689533912, 0.000166994337008666, 0.00018050280913981526, 0.00018139660127723648, 0.00018137236814435274, 0.00018059079709279469, 0.0001791810555270976, 0.00017725065599697245, 0.00017626442867736387, 0.00017483666814619247, 0.00017301904493458874, 0.00017085631485818826, 0.00016838751702423632, 0.00016234661330490112, 0.0001559833396307634, 0.0001501623721307355, 0.00014493939327980978, 0.00013960275798737118, 0.00013484568544245263, 0.00013029081477596347, 0.00012592290718074854, 0.00012172843131651134, 0.00011769532049581388, 0.00011268843614396444, 0.0001080879683206745, 0.00010384520399370739, 9.991903070739114e-05, 9.627449586745478e-05, 8.214831402299458e-05, 7.10671546047571e-05, 6.219626269233476e-05, 5.49718161751908e-05, 4.9001106776616134e-05, 4.36239731829569e-05, 3.911162997828624e-05, 3.528562450987368e-05, 3.201161364974716e-05, 2.9186836974921022e-05, 2.524920930056237e-05, 2.212018470218659e-05, 1.9585360150882824e-05, 1.7498203011749102e-05, 1.5755535161601978e-05, 1.4149548942816295e-05, 1.279038310622707e-05, 1.1628726264395873e-05, 1.0627156433458293e-05, 9.756831486972958e-06, 4.195500140968969e-06, 2.3330337088985934e-06, 1.4284458518794772e-06, 7.39097800441227e-07, 4.4479683522332677e-07], "BooreEtAl2014": [0.00013832408155299127, 0.00017202333136673504, 0.0002040006290997743, 0.00021543102759679736, 0.00022148936807063997, 0.00022970243164811596, 0.0002363324730330748, 0.00024140644265860644, 0.0002443929013828394, 0.00024501754336663374, 0.0002471580350902432, 0.0002433702187656184, 0.00024112287334578176, 0.00023557824699236004, 0.00022104143191474952, 0.00020992906613206863, 0.0001962583964527856, 0.0001838761449782987, 0.00017298857410750132, 0.00016096505573867634, 0.00015111700239403366, 0.00014345858213053945, 0.000133129977091901, 0.0001256099932870372, 0.00011816379700336344, 0.00011060193280491958, 0.00010406550437415303, 9.757830142708715e-05, 8.40602201805673e-05, 7.276553178261436e-05, 6.341955441554365e-05, 5.5760600287207876e-05, 4.91640684326324e-05, 4.356156805487522e-05, 3.881145414762858e-05, 3.4633548816407716e-05, 3.101005060705612e-05, 2.802536570281729e-05, 2.3199209972500588e-05, 1.944357546780092e-05, 1.654401870877318e-05, 1.427729853679275e-05, 1.2424383786475705e-05, 1.092053737543794e-05, 9.696757742913183e-06, 8.660555215113519e-06, 7.778139636356537e-06, 7.064507406538218e-06, 3.612466070408499e-06, 2.2684131676782533e-06, 1.4999695364991297e-06, 5.115614900671227e-07, 2.2907949768824406e-07], "ChiouYoungs2014": [7.527659143441251e-05, 9.66778987850111e-05, 0.00012534053184083528, 0.00013526335324234596, 0.00014498703412762346, 0.00015266530441245197, 0.0001600858378413391, 0.00016727235344703097, 0.00017168360902537088, 0.00017587023377759156, 0.00017736875292529176, 0.00017873011725392347, 0.00017996988673806848, 0.00017749565463606848, 0.0001750425573333503, 0.00017142617853039218, 0.00016684269738960272, 0.00016253527617337304, 0.0001564605447398307, 0.0001508459315322441, 0.0001456379666707868, 0.00014079119693726343, 0.00013626654351250693, 0.00013059053160573904, 0.00012534197434837776, 0.00012047348653909526, 0.00011594435767243556, 0.00011171935550989984, 9.97678354800156e-05, 8.983814565449522e-05, 8.146956593881349e-05, 7.432919299953668e-05, 6.817044161819334e-05, 6.161544385354379e-05, 5.5997178689395765e-05, 5.1140612762900054e-05, 4.691044204619123e-05, 4.320061461302606e-05, 3.644444736090615e-05, 3.116876986928116e-05, 2.6967152751565805e-05, 2.356446198897579e-05, 2.0768839714365118e-05, 1.8145299668874455e-05, 1.5978846474014815e-05, 1.4170387190802555e-05, 1.2646085614073091e-05, 1.1350061688692049e-05, 4.703043256847886e-06, 2.4218683104889037e-06, 1.3965653407338257e-06, 4.700272050288793e-07, 2.039561810496062e-07], "CampbellBozorgnia2014": [0.00012001256525449438, 0.00014189580754854508, 0.00017198848143664346, 0.00018106367211136916, 0.00018941184643678528, 0.00019710281911765947, 0.0002041958752677366, 0.00021074194292050933, 0.00021114510777558648, 0.00021109781311359863, 0.00021065471879181942, 0.00020986243340199068, 0.0002087622671644781, 0.00020712291061222136, 0.00020452240357597736, 0.00020061191610841572, 0.00019582837556726421, 0.00019088202064906584, 0.0001814768147234475, 0.00017277784663524153, 0.00016470255257729324, 0.00015718161466753836, 0.0001501562964850022, 0.0001418767353131634, 0.00013430510306335788, 0.00012735598668039803, 0.00012095723250754005, 0.00011504745458101492, 0.00010093588087953751, 8.949083682291324e-05, 8.004991540611615e-05, 7.214969474049916e-05, 6.545690875297239e-05, 5.883106016213716e-05, 5.3215401092013055e-05, 4.8409551073189465e-05, 4.4261141303797915e-05, 4.0652523367786964e-05, 3.364351296221212e-05, 2.830553001243531e-05, 2.4146288318539242e-05, 2.084236694962606e-05, 1.8174165540907987e-05, 1.5607722708102383e-05, 1.3527976837533289e-05, 1.1821592439456883e-05, 1.0406026344167784e-05, 9.220081998319272e-06, 4.123593066900221e-06, 2.4291054982226456e-06, 1.3006836937060087e-06, 4.929679363545627e-07, 2.481781369797304e-07], "KothaEtAl2016Italy": [0.00012520102248487808, 0.0001475520008174583, 0.00016577438300991533, 0.00016996083060820917, 0.00017387508485986776, 0.000177555473184953, 0.00018103245362015863, 0.00018433066782888612, 0.00018619700445423468, 0.0001879646743632924, 0.00018964424443900955, 0.00019124463799112263, 0.00019277346189540767, 0.00019040677289548053, 0.0001915933699931084, 0.00019043781209380874, 0.0001830166005060052, 0.00018138323860291105, 0.00017763868252178365, 0.0001741910876893943, 0.0001710014264135689, 0.00016803761767416266, 0.00016527299993138343, 0.0001543659053972178, 0.0001446373005514786, 0.00013591456714334222, 0.00012805645551080053, 0.00012094636633386399, 0.00011397140582268496, 0.00010795573129215444, 0.00010270275124703032, 9.806749648051582e-05, 9.394049022256043e-05, 8.47920167172229e-05, 7.701155081753085e-05, 7.033101198781234e-05, 6.45460085143859e-05, 5.949831815983656e-05, 5.430070571277009e-05, 4.995256934829126e-05, 4.6260371387438985e-05, 4.3085352392522835e-05, 4.032540601178553e-05, 3.464446489004312e-05, 3.003918094663628e-05, 2.6259351764081622e-05, 2.3122693448723868e-05, 2.0494021003478762e-05, 1.1986620528306453e-05, null, null, null, null], "KothaEtAl2016Other": [0.0003930508009286529, 0.00043066877994308797, 0.0004594791165251196, 0.0004819343537844666, 0.0005033913991110098, 0.0005239727038059733, 0.0005437775561431215, 0.0005628877878847703, 0.0005766347840316073, 0.000589846440370156, 0.0006025733215788424, 0.0006148587152427582, 0.0006267400021115068, 0.0006028933710171734, 0.0006189264648662785, 0.0005934051744347436, 0.0005594250333629744, 0.0005633383445715415, 0.0005452343303041069, 0.0005287571794125238, 0.000513677289689121, 0.0004998079841697722, 0.0004869957177392423, 0.00044508008062420093, 0.0004084791489099443, 0.00037632112243594836, 0.00034790700930993363, 0.0003226709299787742, 0.00028979458608713456, 0.00026271483717562965, 0.00024004433120634918, 0.00022080276052008493, 0.00020427835487047443, 0.00018354637183377512, 0.0001659924576981068, 0.00015098282785269598, 0.00013803629575846998, 0.0001267818434575096, 9.874468237146507e-05, 7.859983438877778e-05, 6.371855179137738e-05, 5.24649137832054e-05, 4.3782177281188185e-05, 3.699207530741166e-05, 3.1576097326856864e-05, 2.719812325131928e-05, 2.3617008359691775e-05, 2.0656489091566102e-05, 1.288097580310009e-05, null, null, null, null], "KothaEtAl2016Turkey": [0.00016697434474930654, 0.0001936316148263381, 0.00021506623271207363, 0.00023299095299114463, 0.0002506562480811936, 0.0002680870867344924, 0.00028530430187227187, 0.0003023255221569257, 0.0003100624649256006, 0.0003175057198735628, 0.00032468275261523366, 0.0003316171002211056, 0.0003383291076939152, 0.00034878937387550484, 0.0003527474529105863, 0.0003449645178067943, 0.0003233528704401288, 0.00031882680096941615, 0.0003047063943221707, 0.00029201169601653527, 0.00028052695654206796, 0.0002700787907754898, 0.00026052614349405157, 0.0002414589107542407, 0.00022457986585522268, 0.000209554740135827, 0.00019611198238030694, 0.0001840289779053127, 0.000160705585844046, 0.00014200402715284542, 0.0001267283653313691, 0.00011405437996722542, 0.00010339722680935239, 9.111419697589897e-05, 8.09085161060651e-05, 7.233565950582195e-05, 6.506411502397964e-05, 5.884254830647995e-05, 4.9202282640707314e-05, 4.178720829464131e-05, 3.595686096177011e-05, 3.128656160523995e-05, 2.748549336225654e-05, 2.3503661125400632e-05, 2.0290339252973536e-05, 1.7664178398224493e-05, 1.5493622993569515e-05, 1.3681503213686544e-05, 9.179610536727464e-06, null, null, null, null], "ZhaoEtAl2016Asc": [0.002461167982251029, 0.0035262819155083597, 0.003964382034892431, 0.0038825849641869014, 0.0038095865473067045, 0.003557133058036574, 0.003338621432317787, 0.0031131695317607407, 0.00290645638406866, 0.0027031007239325003, 0.0025245532206539406, 0.002350796756903065, 0.0021970616717863775, 0.0019057218918177978, 0.0016735875658402545, 0.0014747431049149634, 0.0013029596195479347, 0.0011610601906240814, 0.0010349813836725928, 0.0009290438490028739, 0.0008375472289940378, 0.0007579284612060766, 0.0006894021542846578, 0.0006286232261836172, 0.0005756704235083441, 0.0005288088956550726, 0.0004871282379843822, 0.0004502405114484584, 0.00037401767721240305, 0.0003157624671351759, 0.00027035670025745383, 0.000234164999928927, 0.00020480687317325349, 0.0001806883298911615, 0.000160760589446057, 0.00014399192935482915, 0.00012985314046972665, 0.00011772732886781585, 9.834174418303128e-05, 8.344982890954851e-05, 7.1819429780003e-05, 6.25598907025897e-05, 5.501829122789768e-05, 4.880381385436091e-05, 4.3608055303726835e-05, 3.921780424691025e-05, 3.547314235542402e-05, 3.2252169866416196e-05, 1.5204027466734459e-05, 9.6355948454593e-06, 8.13221491341679e-06, null, null], "BindiEtAl2017Rjb": [0.000172141332187792, 0.00022681658838363453, 0.00027220216100084735, 0.00028754008000188557, 0.00030170815771369717, 0.0003120380422002118, 0.000317259715959162, 0.00032014230213860134, 0.00031665597455434315, 0.0003119925663817091, 0.00030521130956564114, 0.0003011170733615397, 0.0002974048109009218, 0.00028361102959202216, 0.00026518998534980716, 0.0002465759909313443, 0.00023179983350702025, 0.00021804531553775875, 0.0002046685262080849, 0.00019272171202254786, 0.00018019850572533911, 0.0001684064720928263, 0.0001576241779655806, 0.0001476457727568117, 0.00013886563640573603, 0.00013078402402970425, 0.00012301256537314753, 0.00011684581688817949, 0.00010245489325386915, 8.942135870835021e-05, 7.812427138028077e-05, 6.871708183847935e-05, 6.0814858083428996e-05, 5.410469888239502e-05, 4.839962185745585e-05, 4.370082814400753e-05, 3.997320622825138e-05, 3.638490717008449e-05, 3.072964030702627e-05, 2.6328996660760648e-05, 2.282858527534118e-05, 1.9771180700527154e-05, 1.7212783261069262e-05, 1.5077015151872791e-05, 1.3604998424557054e-05, 1.2178288990098239e-05, 1.0880348205900106e-05, 9.612276777724351e-06, 4.9030865356819865e-06, null, null, null, null]}}, {"ylabel": "Sa (g)", "magnitude": 5.0, "distance": 5.0, "row": 1, "column": 0, "yvalues": {"AkkarBommer2010": [0.2073433281852101, 0.24563073054049342, 0.2773364387103528, 0.28205610139119425, 0.28646696633997976, 0.2906127975821158, 0.29452833148823954, 0.2982416403236707, 0.2902976011176839, 0.2830094090889266, 0.2762892965106167, 0.27006528584994816, 0.26427769328865086, 0.2433999245298459, 0.2256466830418987, 0.20930518881657742, 0.1942146510208095, 0.18106924832009938, 0.16754945843691973, 0.1557440641884401, 0.1430511530657033, 0.1299558541082147, 0.11864084867681654, 0.10842106833354852, 0.09949645219245024, 0.09098856339101646, 0.08294190691768065, 0.07590596039227171, 0.06594747044862, 0.05811751637839239, 0.05221812747863734, 0.047284041114480715, 0.04129433541436324, 0.03590310429977573, 0.03108440870518761, 0.02792799290682466, 0.024919955946579652, 0.02221105810147594, 0.01761683351391598, 0.01490070862746937, 0.01295034502725673, 0.011166210608926962, 0.009643841136681496, 0.008456398491842185, 0.007475686609694316, 0.006506215928726265, 0.005799012825806286, 0.005294903761337553, 0.0027821084982282657, null, null, null, null], "CauzziFaccioli2008": [0.06720490194091028, 0.08838595352059246, 0.10735012060012608, 0.10076913191030774, 0.09511407523972583, 0.09019260219887121, 0.08586335380679122, 0.08201991337614917, 0.07659317864919242, 0.07182304117568969, 0.06759805054862648, 0.06383053562315441, 0.060450597208125, 0.05480782667192387, 0.050117587547788466, 0.04709411547302955, 0.04532598053860947, 0.04373960763409227, 0.041120836705131, 0.03880387145941633, 0.03645473226553644, 0.03410477209696988, 0.032015559650618586, 0.03058804630455755, 0.029286271618899812, 0.02782724363688444, 0.02625199422836529, 0.02482490972770503, 0.022364513936471417, 0.019915332738402684, 0.019027917177950715, 0.017440979500360634, 0.01573398170155629, 0.014604909688358375, 0.013311251788222981, 0.01252518712264242, 0.011602171312935798, 0.010898469434603247, 0.009527740371788822, 0.008539590900236137, 0.007560316513827769, 0.006723931602648485, 0.005989568128282879, 0.005363370968324441, 0.0048121227613164294, 0.004273914744350034, 0.003951560151841639, 0.0036161726058961973, 0.0016122153670903056, 0.000860104863166514, 0.0005423761053912401, 0.00023726368603369495, 0.0001223359887787847], "ChiouYoungs2008": [0.19450487392811, 0.2497288733045572, 0.2900322324352959, 0.2961538237918641, 0.30171409780053265, 0.30679014686033285, 0.3114436883743256, 0.3157250149854351, 0.3108125311226652, 0.30611270711770144, 0.30160239000095057, 0.29726252790514757, 0.2930772515286537, 0.2783682920427097, 0.2651099525157374, 0.25106739971881575, 0.2365000424791317, 0.22331377052762003, 0.20881931240935314, 0.19574220472366086, 0.18388607113138528, 0.17309067888851937, 0.16322361887619735, 0.1532938070759808, 0.14423553751217835, 0.1359457874044796, 0.12833705105295845, 0.12133448132680458, 0.10597729798903316, 0.09330616940955201, 0.08272182848682258, 0.07378616009686098, 0.06617188451346248, 0.05969049880573756, 0.05408962058202744, 0.04921652466328291, 0.04495043675802486, 0.04119476697132422, 0.034868252497889815, 0.029871676081004373, 0.02585759015939491, 0.02258518882349743, 0.019883207169112262, 0.01742428366109394, 0.01537770433484621, 0.013657601406355966, 0.012199194617436676, 0.010952889421027154, 0.004481622070397421, 0.00230247884161002, 0.00134180453703956, 0.0004440167759690191, 0.00017972105576287184], "ZhaoEtAl2006Asc": [0.17728943734830008, 0.23835316614948654, 0.2935406771571765, 0.29009875323932455, 0.2870334159200904, 0.2842744670978448, 0.28176922209613486, 0.27947720545062354, 0.268474872824364, 0.2586560483458185, 0.24982352809431485, 0.24182301155508393, 0.23453185557674688, 0.21848074309412788, 0.2049575161209647, 0.19058944790043894, 0.17573591487287096, 0.16294033507896458, 0.1532122775334173, 0.14473900743478366, 0.13730184195008763, 0.13072994895268605, 0.12488801490898764, 0.11680031849197624, 0.10972629439630673, 0.1035100899109652, 0.09802595382538293, 0.09317156107224639, 0.08044642266146677, 0.0713130975073015, 0.06361197616852864, 0.057220526201642, 0.05115448843650991, 0.04606987624084244, 0.041794143571572205, 0.038134687913056055, 0.034287204564168054, 0.030995991553934978, 0.025827040749769683, 0.021857357100203693, 0.018925931851247788, 0.016719189102432103, 0.0148964052487278, 0.013190477581315075, 0.011768867425525624, 0.010571005045100442, 0.009551736588407295, 0.008676825258700177, 0.004059080802773971, 0.0024760770594169246, 0.0019221263634380953, null, null], "AkkarEtAlRjb2014": [0.1831564435673117, 0.24968646658722604, 0.2807533386899989, 0.2879367912618028, 0.29279711792872704, 0.29381204661765215, 0.2927670552185577, 0.288839910079638, 0.2805009199415841, 0.2703410920756886, 0.2591235505352308, 0.24665900502339902, 0.23535989008612054, 0.21571794585844278, 0.19687412227519452, 0.1798598930504706, 0.16239002229266272, 0.14770946649167666, 0.13334533644276966, 0.12044239276680248, 0.11143205710447093, 0.10295471415441863, 0.09584029329438322, 0.0889850331001851, 0.08267125550626679, 0.07723904086015468, 0.07219934401999663, 0.06768314300335754, 0.05679224026297294, 0.04840886040043057, 0.04119938043253002, 0.035719178770773595, 0.030927725406580616, 0.027764337900619166, 0.02482879313696713, 0.022106324714881633, 0.019928548823600786, 0.018147675120672287, 0.015051581583314225, 0.012802674890632979, 0.010950249368478536, 0.009514613673855535, 0.008507244994602486, 0.007498637313015215, 0.006715414423774462, 0.006021412337944085, 0.005443073011484873, 0.004900561157635095, 0.0020937924403628644, null, null, null, null], "BindiEtAl2014Rjb": [0.18661607853389567, 0.23233076666410918, 0.2540183332590862, 0.257107287929806, 0.2598513452586188, 0.26230788168149466, 0.26452145539603517, 0.26652733010496793, 0.2548816095180096, 0.2443110295480067, 0.2346646514114608, 0.22581942727911508, 0.2176739181139521, 0.19906400107800332, 0.1834405970180467, 0.17013256888797618, 0.15674655309056756, 0.14523341110012428, 0.13450943001114643, 0.12515012769292005, 0.11691635835004273, 0.10865587488043556, 0.10136194036871024, 0.09446954791530927, 0.08832084338624002, 0.08280743716567407, 0.07791657184095929, 0.07349210109206157, 0.06352445014492404, 0.05560616359649575, 0.048058290254194565, 0.04198577277832147, 0.036543527408106964, 0.03209299398019475, 0.028004802001142106, 0.024632603494190837, 0.022373297845618458, 0.020421895375226956, 0.016737792138735896, 0.01395323216567938, 0.01179926411198827, 0.01027356701100238, 0.009029586839785365, 0.008198470310348345, 0.007486968289105013, 0.006872307263304641, 0.006161371695347424, 0.005554926281429646, 0.0023739447203223983, null, null, null, null], "CauzziEtAl2014": [0.24168095739041306, 0.30189842183195076, 0.35133849146686386, 0.37000753708338846, 0.3798294851377618, 0.3785223673764471, 0.36191630614119263, 0.31951976892372036, 0.3181209382728654, 0.30962540618925855, 0.2937246618272375, 0.2700540829131247, 0.23804496334149633, 0.21397727271791242, 0.18794637004414957, 0.16872890530545048, 0.15726570773251228, 0.14578241726074467, 0.13506444078474486, 0.12523806157573147, 0.1165852337207113, 0.10900315778958791, 0.10203944930840284, 0.09659239188413042, 0.09157603005863142, 0.08628476107811305, 0.08086570353977982, 0.07596836944349546, 0.06437658045672419, 0.05460305244258427, 0.05041189330339992, 0.04550623554389653, 0.041825654389095905, 0.037837056813086745, 0.03475795157236456, 0.03276827551767032, 0.030497372347731706, 0.028602863556850454, 0.024946946136807938, 0.022230691828649566, 0.019531920849552308, 0.01722467844869331, 0.014635212728351985, 0.012557611297233687, 0.010817249281588179, 0.009246534388513325, 0.008066511201525399, 0.007067851522639311, 0.0028083715678214045, 0.0015227909451348528, 0.0009330588467615112, 0.00042322751543600587, 0.0002559305650651948], "DerrasEtAl2014": [0.18925475284107277, 0.33963879961942983, 0.45448005636097943, 0.4731104018713745, 0.48924651836122673, 0.49298818159751134, 0.4637637358870928, 0.4765945930598654, 0.45403193110358253, 0.4267843083834677, 0.4007166740738568, 0.38028328264386746, 0.3645316639085424, 0.29953364243877, 0.23766231968525792, 0.2049107948293828, 0.17664130388607296, 0.1724714810619893, 0.14022538198913273, 0.12957079087490483, 0.1275915738383798, 0.11611457747150515, 0.10688240746006189, 0.09514213458072082, 0.08788911477488637, 0.08153474684117025, 0.07981243955929065, 0.07112003767177708, 0.059857599415489376, 0.06052132506933818, 0.05574677100537198, 0.04297228637674992, 0.032811799094496864, 0.02889338832978687, 0.025773696033626555, 0.02298705513510865, 0.02140140748869429, 0.02064942824063177, 0.01716568980744079, 0.015425878067679654, 0.014016242141936372, 0.011745941980605704, 0.010906348200201808, 0.010945992657046925, 0.00900444016391666, 0.007847938260048674, 0.00682872364575378, 0.006121927390426116, 0.0028725691515947196, null, null, null, null], "AbrahamsonEtAl2014": [0.16053131438955137, 0.2108363804089616, 0.25265881627003933, 0.260491507927022, 0.26685817304181303, 0.27189380721252, 0.2737448562546818, 0.2745071115749977, 0.2713008237400317, 0.2675482579243801, 0.2633240869739792, 0.2586920682658219, 0.2537070479469999, 0.2357832971957953, 0.21907066157929797, 0.20235636735431045, 0.18609532841413023, 0.17135084084587088, 0.15919347780281234, 0.1482938442041227, 0.1384659685114805, 0.12955941064959048, 0.12145106225462686, 0.11453069050529031, 0.108274791860051, 0.10259440717189605, 0.0974156280238496, 0.09267655766404734, 0.07947895756231996, 0.06907584264243907, 0.06071064268268394, 0.05387003215377922, 0.04819498536735035, 0.04369311133255684, 0.03984803101972368, 0.03653323311720219, 0.033651871595103876, 0.031128690299542853, 0.027116470577741754, 0.023906911316266294, 0.021290969264645538, 0.01912489010609762, 0.017306875077606913, 0.01560389829435981, 0.01415714512750704, 0.012916186948398823, 0.011842615447205227, 0.010906727269580417, 0.004740711968902766, 0.0026253629382761577, 0.0016069266242746793, 0.0005536499944020987, 0.00025496262421945154], "BooreEtAl2014": [0.14157984478231797, 0.17875388896763342, 0.18894838761182864, 0.18898511897140655, 0.18459006198927846, 0.18273804343364566, 0.18017620092616662, 0.1768218321074236, 0.17238880709987134, 0.16693575348152667, 0.16316548287754917, 0.15653583547175057, 0.15129895307930444, 0.14144826081085393, 0.12847808976460331, 0.11848746129055113, 0.10847717695586184, 0.10000121405624982, 0.09277333286898237, 0.08559754496072011, 0.07978018287050095, 0.07530281463631981, 0.06997029659225736, 0.0659247728374103, 0.062051548643444684, 0.058322719093802634, 0.055029533313826595, 0.0517547312435453, 0.0449077407332811, 0.03907922757155429, 0.03424873842803767, 0.03029730412067539, 0.02684942549547958, 0.023928671756689293, 0.021423185011597397, 0.01920654653479521, 0.017259450297043104, 0.015642691087575197, 0.012905387274810587, 0.010719154516550703, 0.009021046499856559, 0.007694174120280224, 0.006635250062466056, 0.00578233578160085, 0.005097791772698595, 0.004522013706480519, 0.004032150295894009, 0.0036472350721403917, 0.0017625288228253653, 0.0010474056153078784, 0.00067692161436764, 0.0002558250407777732, 0.00014999331954712074], "ChiouYoungs2014": [0.14384547568419456, 0.19150041189922454, 0.22104822133671423, 0.22796043815057865, 0.23445260580343735, 0.23764781103164576, 0.24053452260223102, 0.24314479614330115, 0.2424225639237767, 0.24160328726242017, 0.2380893025516851, 0.23466629614004916, 0.2313335708699337, 0.22093788983455545, 0.21138569369961632, 0.20118840512099434, 0.1905406745535357, 0.1807694774736198, 0.16986025886211137, 0.15994842711539947, 0.15088985393535106, 0.14256270787215128, 0.13486275397935427, 0.1272082562662398, 0.12019366787708917, 0.11374220889184072, 0.1077862167496964, 0.10226744503708135, 0.0892070848219274, 0.07851389685540353, 0.06962274679095964, 0.062129246849095904, 0.05573726070207384, 0.04972579250608106, 0.044625015616675374, 0.04025886055142816, 0.03649200774996817, 0.03321904004943537, 0.027636876049220587, 0.023324947400961176, 0.019926989725621975, 0.01720319495429854, 0.014987384409615473, 0.013152008464860098, 0.01162465051756331, 0.010340641593385467, 0.009251366503110502, 0.00831972045424653, 0.003572998542666448, 0.0018632284156097582, 0.0010828346972573263, 0.0003791329525995867, 0.00017126020014721817], "CampbellBozorgnia2014": [0.1507783557295639, 0.17488117080760882, 0.19360535676271437, 0.19566728587791984, 0.1973475929985811, 0.1987004026526656, 0.19976897144579633, 0.20058849162442113, 0.19698337516557246, 0.19332766397498358, 0.18952490746529405, 0.18518434062436478, 0.1808714792126817, 0.17856711692900834, 0.17540928570771638, 0.17156274148238002, 0.16735995884432428, 0.16296470813370045, 0.15166093570502076, 0.14152370045128784, 0.13238226186737828, 0.12409812136634807, 0.11655766328620237, 0.11023592681592037, 0.10444712360156588, 0.09912764683852586, 0.09422368073405396, 0.08968937316160824, 0.08108341354138598, 0.07386054783768287, 0.06771073171519515, 0.0624104525040121, 0.057794455661320084, 0.05197429364969724, 0.04703817797875426, 0.04281126068603232, 0.03916048787006936, 0.03598305298037883, 0.0293038303583766, 0.024296328042594587, 0.02045013900506212, 0.017434901556594593, 0.015029350190808649, 0.01312966102177313, 0.011562277084954884, 0.010254706281043833, 0.009153081052725153, 0.00821672175998682, 0.003526137244350759, 0.0018252185234534973, 0.0010846992184794302, 0.0004176857612680623, 0.0002666130377441305], "KothaEtAl2016Italy": [0.18642323023033675, 0.21953266654610437, 0.24745946106236585, 0.24572230372052625, 0.2440887663198929, 0.24254655694439084, 0.24108547943831904, 0.2396969840604186, 0.23617838964090482, 0.23256844533811716, 0.22888997961064558, 0.2251614203196181, 0.2213977909374793, 0.20877231186449532, 0.1959733444140865, 0.18396486660434105, 0.17004890839869025, 0.15675197218742806, 0.14616338400223947, 0.1368513896730104, 0.12860063499063712, 0.12124142676752603, 0.11463826525155849, 0.10761829190913154, 0.10132707460163524, 0.09566066883631567, 0.09053365267635764, 0.08587522016643673, 0.07233737322540777, 0.06185153888044475, 0.05355378119975819, 0.04686757130464609, 0.0413957741701768, 0.03659627446449621, 0.032598186710395376, 0.02923177972921738, 0.026370035846182586, 0.023916373788992203, 0.020153043144540386, 0.017230650082118045, 0.014913203873789317, 0.013042609664550465, 0.011509597632195848, 0.010232455318715713, 0.00916157354367935, 0.008254309318141584, 0.007478569343215231, 0.0068098128551853, 0.00283650531761098, null, null, null, null], "KothaEtAl2016Other": [0.1999786828611066, 0.23427374281615715, 0.2630238260156961, 0.26438670142066395, 0.26557240724983916, 0.2666128284733471, 0.26753234019766353, 0.26834995427637165, 0.2641363370600228, 0.2598384418034821, 0.2554815679982134, 0.2510859241851781, 0.2466678009388343, 0.23524922526756875, 0.2231624166781504, 0.20840674084952432, 0.19265699625724805, 0.1782710582148587, 0.16620765712782984, 0.15560197807454904, 0.1462076198790261, 0.13783051458499904, 0.13031576473956094, 0.12297087047577501, 0.1163564246434846, 0.11037115444764184, 0.10493146037557353, 0.09996774932104431, 0.0850838721645119, 0.07343966695444824, 0.06414063197238426, 0.05658422569152554, 0.05035180636422998, 0.04421842261767911, 0.03914235218044645, 0.034894318742336644, 0.03130383844827302, 0.028242054758315985, 0.023321296388093892, 0.019579717947026953, 0.01666855523348286, 0.01435907853662648, 0.012496222451440853, 0.01092583646279508, 0.009630313769083295, 0.008549400769915753, 0.007638445542208077, 0.006863798223631389, 0.0030481449108386805, null, null, null, null], "KothaEtAl2016Turkey": [0.14672062156923243, 0.17849240239969505, 0.20584463588124086, 0.20959947466421258, 0.21303321334912412, 0.21619522623727, 0.21912427331019904, 0.2218513508250593, 0.21809652352475736, 0.21429304236567942, 0.21046012458169133, 0.20661295708344632, 0.20276364386516565, 0.19393314303449977, 0.1789046662386838, 0.16609472736471426, 0.15300162579903268, 0.13949198287098255, 0.1284833220717244, 0.11892075845716069, 0.11054582660328705, 0.10315727432853114, 0.09659619661062994, 0.08951551139980922, 0.08324923679775688, 0.0776726884913606, 0.072684623805368, 0.06820208132458776, 0.05642124227152239, 0.04745242997575049, 0.040466512740176964, 0.03491895543013838, 0.030440139302093962, 0.02641064651818363, 0.023114250839782805, 0.020385536157758014, 0.018102858069484876, 0.01617522761066995, 0.013650562099226783, 0.011689186419866385, 0.010132914367085834, 0.00887585396569365, 0.00784485515730473, 0.006941950555599946, 0.006188299062566042, 0.005552520628068859, 0.005011100207334984, 0.004546129646642146, 0.002172256478757825, null, null, null, null], "ZhaoEtAl2016Asc": [0.5471264867777141, 0.7397899647420462, 0.8186226609563846, 0.8085565855922979, 0.7992252365164711, 0.7672058228991006, 0.7388173579615311, 0.7094076062931881, 0.6810521245927016, 0.6544170917836433, 0.6303710266569071, 0.60494828226732, 0.5818385593295178, 0.5309718302080849, 0.4883950241315184, 0.45044875279754637, 0.41635121114692025, 0.38691861987758136, 0.3594938538820289, 0.33549748073041064, 0.31374606967546864, 0.2939293962928174, 0.2762851334748044, 0.2596918144336353, 0.24479771722713897, 0.2310801232204839, 0.21840503979314682, 0.20690098113720606, 0.18096517693545155, 0.16013948034075082, 0.14195384066643474, 0.12696712843191388, 0.11369434384937059, 0.10254038880161333, 0.09255071424983491, 0.08402808779323734, 0.07631772898860921, 0.06966056991732741, 0.058296292468259854, 0.04955423039892138, 0.04244265284716644, 0.03657936590720548, 0.03185455683918475, 0.027947047272155596, 0.02471553966219698, 0.022012831599418706, 0.019729677093453423, 0.017783627374087122, 0.00761438263991945, 0.004346989059261928, 0.003204438750728326, null, null], "BindiEtAl2017Rjb": [0.12712057904386648, 0.1535643737401161, 0.1441683305664269, 0.14340804376559238, 0.13901061282861074, 0.13490880931465649, 0.13083982016293444, 0.12728739118342755, 0.12504457992861315, 0.12289067056378217, 0.11894606172832611, 0.1159405306789911, 0.1123191505319536, 0.10545572074266346, 0.09821951954739343, 0.09141702936055142, 0.08499963370270887, 0.07990109556377012, 0.07578927708557258, 0.07281276753866439, 0.06898418691135581, 0.06559987959260599, 0.061872629801406995, 0.058775706494644454, 0.056401891127195576, 0.05316531364804657, 0.05022069803873099, 0.04717528836257896, 0.04144946550494429, 0.03653840784189084, 0.032665854940704064, 0.029540335154281675, 0.026839360640495327, 0.024208635204010252, 0.022005805896508735, 0.019944007822140005, 0.01815370310531263, 0.01661667559006499, 0.014265585538873466, 0.011758195618829176, 0.010141341098689572, 0.008585370626042192, 0.007619072458058465, 0.006805168227223719, 0.005866152239555981, 0.00523853579996155, 0.004689424005039307, 0.004222983973725705, 0.0017306591246569276, null, null, null, null]}}, {"ylabel": "Sa (g)", "magnitude": 5.0, "distance": 20.0, "row": 1, "column": 1, "yvalues": {"AkkarBommer2010": [0.04905210388325224, 0.06132205110423246, 0.07184773177714218, 0.07489925653875627, 0.07779953310756373, 0.08056784675594128, 0.08321974989065214, 0.08576799662812215, 0.0845479874814148, 0.08341659418971242, 0.08236272426240368, 0.08137719503304772, 0.0804523241559747, 0.07239057161871952, 0.06568911984850656, 0.05990377781479819, 0.054863797902133554, 0.05053815987722248, 0.046619258762633564, 0.043212097459426974, 0.03984515401507181, 0.036560075584560606, 0.033692266677371505, 0.03097335797361838, 0.02858477167413905, 0.026442490243253274, 0.024512001304942504, 0.022791463439566284, 0.019326118905109737, 0.016748430108969696, 0.014328052509452372, 0.012157878321357944, 0.010453997354791614, 0.009283958654503334, 0.008223466712804378, 0.007469521707899333, 0.0067285282711704, 0.006055036554741832, 0.004977097794306177, 0.004328032669646416, 0.0038666197501258564, 0.0033804015356848276, 0.002986732698183176, 0.0027168259285620766, 0.002476666164827119, 0.0022544453339046347, 0.0020572593132634465, 0.0018834054714973786, 0.0009962588841938898, null, null, null, null], "CauzziFaccioli2008": [0.038757287331237206, 0.05096267079807355, 0.061888823416505354, 0.05859272251253965, 0.0557371416863973, 0.05323332122818705, 0.051015534614386515, 0.04903395573125972, 0.046072433433606653, 0.04345363910581269, 0.041121055674589936, 0.039029972455293424, 0.03714455135459736, 0.033855824660180084, 0.031108375023394207, 0.029331089264207987, 0.028290214603104723, 0.027354412157056023, 0.025745291707399857, 0.024320079393243772, 0.022912441751475672, 0.021531380574330097, 0.020298203113697087, 0.019421670068068986, 0.01862119530888794, 0.017726595634974467, 0.01676176834710467, 0.01588571158213112, 0.014339289959141365, 0.012830940771996027, 0.012268998122935172, 0.01126355507860808, 0.010160010097325457, 0.009431585578360862, 0.008573751215586003, 0.008050920352450251, 0.0074655347976684255, 0.007019601632337544, 0.006143256715807324, 0.005506410894407711, 0.004891725339319964, 0.004342593956057435, 0.0038610194833053942, 0.003452731705734204, 0.0030997033201044886, 0.0027519348260126113, 0.00254346311505599, 0.0023290434529388035, 0.001073157169583144, 0.0005859591931572292, 0.0003776089371598508, 0.00017320697552731084, 9.005188155307856e-05], "ChiouYoungs2008": [0.034699518772894934, 0.04375377088790626, 0.05056292532736029, 0.051780793523648234, 0.05289223086403401, 0.053911546669724655, 0.05485023831856063, 0.05571770496016948, 0.05503600914655414, 0.05437343216622312, 0.053728319085101714, 0.05309931417701461, 0.052485290353444, 0.05009152701699589, 0.04790933357024128, 0.04554152314469402, 0.04304092413095413, 0.04076294333375472, 0.03822045827623314, 0.03591649207196831, 0.03381916346711119, 0.03190231027565729, 0.030144192546964897, 0.028364297880148107, 0.026736391842125125, 0.02524292091190344, 0.023868927913601578, 0.022601579740745288, 0.01981790788974936, 0.017510628691560056, 0.015575236376099852, 0.013934969692572848, 0.0125322295613483, 0.011338770900456464, 0.010303909955239787, 0.009400619275744884, 0.00860744372032992, 0.007907162415547038, 0.006725188151275731, 0.00578686625427729, 0.0050295104241411814, 0.004409434438559127, 0.0038954117846196237, 0.0034262422657776017, 0.0030342865252474824, 0.0027036968090795484, 0.0024224710899893157, 0.0021813874474246645, 0.0009169751535102237, 0.00047625158476349014, 0.0002779901341232197, 9.210519147218263e-05, 3.7302731276398515e-05], "ZhaoEtAl2006Asc": [0.04848003296912674, 0.06651578776700488, 0.0831831987538357, 0.08224386183276837, 0.08139921782406603, 0.0806326803905793, 0.07993160591420329, 0.07928614520314228, 0.07632858663991958, 0.07366188829420174, 0.07124167307411682, 0.06903246618738297, 0.06700552831857988, 0.0623014875896603, 0.058310058940027984, 0.05409269477911013, 0.04976917653327326, 0.04605367708134332, 0.043091315278059296, 0.04049268401204356, 0.03819537758181752, 0.036150420796565025, 0.03431885195171521, 0.03201949783608936, 0.02998225437320679, 0.028167609449446043, 0.026543390256853573, 0.02508316544816599, 0.021533352973830053, 0.018802820992874704, 0.016661202997746115, 0.014895774878471607, 0.013281525369326076, 0.011930612194090737, 0.010836173757017528, 0.009896962258614184, 0.00891604258638602, 0.008075429994562868, 0.006703288157633874, 0.0056547137692760634, 0.004889164310055458, 0.004318929347883751, 0.0038479793590382567, 0.0034130034389792748, 0.0030494709545498297, 0.0027423890111337806, 0.00248052392020358, 0.0022553201528591775, 0.001070667265752067, 0.000665521399200593, 0.00053170165095939, null, null], "AkkarEtAlRjb2014": [0.036806533119205224, 0.04878922738214471, 0.05364906100890358, 0.05494044589568858, 0.056044479953569905, 0.056427829500602975, 0.05646840295570008, 0.05606329460736369, 0.05513357748721508, 0.05392328159814931, 0.05239152451373898, 0.050558732953896554, 0.04893604399083928, 0.04598591422903152, 0.04294128219315216, 0.03984640677013309, 0.0367476193202015, 0.03418324404037594, 0.03177520889763166, 0.029416450698164356, 0.02762547684824453, 0.025913919477037767, 0.024405389251110955, 0.02288260912995008, 0.021475914666033567, 0.020203574117680378, 0.01903116952351077, 0.01797312628552281, 0.0154351176412957, 0.013510073145781936, 0.011824037042464557, 0.010456464736094911, 0.00928411500497111, 0.008449381279730373, 0.007655512873347498, 0.006910286300934498, 0.006301198683031263, 0.005781472608670064, 0.004889429841319884, 0.0042303433379408005, 0.003681992448824576, 0.0032289160298070137, 0.0028640959777109696, 0.0025458748313189243, 0.0023019284226774507, 0.0020785044479249386, 0.0018911306702606915, 0.0017064452774865394, 0.0007488494426214248, null, null, null, null], "BindiEtAl2014Rjb": [0.035266786173580755, 0.046976723209604464, 0.05642866725085736, 0.05795363264392673, 0.05937743096517072, 0.06071436275568947, 0.061975790063475644, 0.06317090289451942, 0.06115396559718315, 0.05931351575217304, 0.057625199689832776, 0.05606913233789575, 0.054628893766145055, 0.05033806052565269, 0.046714115655765796, 0.043609934156075045, 0.04007106588039652, 0.03703506856237256, 0.03425885340420406, 0.03183979894635724, 0.02971484375142767, 0.027877645101456187, 0.026239882333466163, 0.024391049024671287, 0.022748689582192606, 0.021281927656008094, 0.01984364762936233, 0.01855467351570869, 0.015924519232789633, 0.013849677562568446, 0.012028824019160519, 0.010557065089136867, 0.009208650634917614, 0.008103644974883953, 0.007234823411176857, 0.006500940453446743, 0.005877202681481366, 0.005340866261572745, 0.004499938206870156, 0.0038482553511972536, 0.0033323399632282035, 0.002933428292609394, 0.0026049111589188326, 0.0023488969433106046, 0.0021313504066808693, 0.001944709456534405, 0.0017377347243536943, 0.0015617670229921593, 0.0007665126989468387, null, null, null, null], "CauzziEtAl2014": [0.0681532753335001, 0.08860175626772414, 0.10473842889906612, 0.10966748262579433, 0.11194930885461583, 0.11095723161276615, 0.10552597308318219, 0.09267951015789412, 0.09227514499210482, 0.08980942547825223, 0.08519335400301671, 0.07832200379402202, 0.06903162069331333, 0.06109093549994699, 0.05282930420743529, 0.04679839925034579, 0.0431465283371389, 0.039572704731066485, 0.036339033519058456, 0.03340711576564882, 0.030682777261890903, 0.028150974737807682, 0.025848047348122266, 0.024261287947124684, 0.022809844823374184, 0.021362458503610078, 0.019945361886270562, 0.018667747484925154, 0.015997373100497, 0.01364934787352347, 0.012449995194284294, 0.011181683818523015, 0.010161474263061444, 0.009206696835848774, 0.008429110997161511, 0.007918526568620235, 0.007366892695382141, 0.0068503686854159505, 0.005975089892452342, 0.00535470492009398, 0.004738016610856379, 0.00421178246426789, 0.0036457971264148127, 0.003175003564143653, 0.0027875015824686696, 0.002451190045174889, 0.002220130925255229, 0.00201165651806412, 0.0009326973312516307, 0.000534051391563492, 0.00035096564549641, 0.00016632748918665792, 9.330231745320781e-05], "DerrasEtAl2014": [0.032782925268897874, 0.052954862444376374, 0.06940363722190326, 0.07262502978366553, 0.07571012783763513, 0.07708234254598675, 0.07422603579057038, 0.07774678952523668, 0.07519285675933744, 0.07261786863163855, 0.06941371151660325, 0.06719236103787399, 0.06604349593225035, 0.05807256831046088, 0.048637104757414965, 0.04350318334968428, 0.038872953058424725, 0.037711669789204656, 0.03241041742890643, 0.031184313666307167, 0.030809421550341075, 0.028552974003251887, 0.026631062461166866, 0.024214564030590125, 0.02255940706287057, 0.021092700691426193, 0.020574448948354362, 0.01865544381017985, 0.016061426883863084, 0.01604846666178103, 0.014879595039202604, 0.011921495763531192, 0.009500556937595267, 0.008486171765546679, 0.007660000475361105, 0.0069016932008366455, 0.006546130769315962, 0.00647193531013159, 0.005509424573392861, 0.005034526419461833, 0.004580091091738285, 0.0038935597702796153, 0.0035837833556845154, 0.0035336816044239843, 0.002953344186122841, 0.002605812097488712, 0.0022928389257343275, 0.0020657346184904044, 0.0009448610360996828, null, null, null, null], "AbrahamsonEtAl2014": [0.034926661505489835, 0.04563019056564139, 0.05401741984448222, 0.05540051146034754, 0.056442832667516395, 0.057186921749189046, 0.05757624947170423, 0.057736573223843735, 0.05723528082017462, 0.05660442316480447, 0.055860359037226005, 0.05501715695606117, 0.05408700401591785, 0.05065384329847095, 0.04739492371368465, 0.04406522192918089, 0.040772042686151186, 0.03775534003759123, 0.03532534839069113, 0.03312586470046858, 0.031124704327150195, 0.029295589387697985, 0.027616826586951464, 0.026137325574773974, 0.024794795880131105, 0.023571344705554196, 0.02245205188350716, 0.021424378170793977, 0.01841884567307452, 0.016044087439826375, 0.014130380845064724, 0.012562316592754409, 0.011259012136371222, 0.010207312379481314, 0.009309048678859075, 0.008534666250279882, 0.0078615405277736, 0.007272090637656371, 0.006341485281594484, 0.005596296159542092, 0.004988367666416738, 0.004484553083550482, 0.004061359402845789, 0.003665424759965615, 0.003328731207870152, 0.003039664587917869, 0.002789370908972898, 0.0025709968687344566, 0.0011003744298378403, 0.0005954380954313676, 0.0003656735287477985, 0.00013924091493408152, 6.990590314887944e-05], "BooreEtAl2014": [0.034660369626680836, 0.04411434687582079, 0.04814223158736256, 0.04879032057627416, 0.04817932966754656, 0.04816429589323959, 0.047908651772242156, 0.047404186155673586, 0.04657069051532155, 0.04541485741030888, 0.044621445263597216, 0.042997971958003416, 0.04172402779906581, 0.039244008949809596, 0.03583811149896209, 0.03320761861274706, 0.03050202688880984, 0.028172551902979452, 0.02618684981071303, 0.02420908806706372, 0.022606284950567088, 0.021352279599010173, 0.019858532962906485, 0.018734038786510893, 0.017656412490620936, 0.016598982534711152, 0.015672841233063783, 0.014766431057873921, 0.012842518896919185, 0.011211097471074499, 0.009839812573041652, 0.00870220634792528, 0.007719439408414358, 0.006882295923771685, 0.006167663603346415, 0.00553681648032296, 0.004983998272676391, 0.004521332933246208, 0.003757060646488445, 0.0031524065303665787, 0.002679057745142626, 0.0023074243255868736, 0.002006180849280283, 0.0017624800679238244, 0.0015647276094899417, 0.0013978432155303709, 0.001256299175064818, 0.001142604309320968, 0.000575312346725537, 0.00035720147167264964, 0.00024140457862670633, 0.00010416759030191936, 5.93867881041286e-05], "ChiouYoungs2014": [0.02729148891125537, 0.03588098847719087, 0.041831213953919165, 0.04340277047242901, 0.0449025403140543, 0.04575676741579683, 0.04655234148898829, 0.04728783316475208, 0.047333296239797255, 0.047349863091094485, 0.046786092205114406, 0.046232383083808684, 0.04568923466191503, 0.043754458237963555, 0.04197353586525621, 0.040010628439617855, 0.03791555649337916, 0.03599582590268126, 0.03385405297727635, 0.03190927502845539, 0.030132474797025587, 0.028499233222972747, 0.02698873036948289, 0.025480272133522542, 0.024097987087324607, 0.022827613835943027, 0.021655336718585164, 0.020569237000718468, 0.01800536404243917, 0.01590178587280709, 0.014148438944016406, 0.012666731108893164, 0.011399193575160062, 0.01019827518014638, 0.009176575461293739, 0.00829978748893504, 0.007541488780298654, 0.006881053279852007, 0.005755044152622156, 0.00488089704992285, 0.0041888292420238955, 0.00363165659485368, 0.0031765452461965664, 0.0027969857820748655, 0.0024801701780048264, 0.002213058815427772, 0.001985824655429519, 0.0017909493632857303, 0.0007936300275795237, 0.0004191567260881481, 0.00024408140358662942, 8.557785283789041e-05, 3.869745548244339e-05], "CampbellBozorgnia2014": [0.03346279142723734, 0.040772715255263776, 0.049094964568808803, 0.05097115147418727, 0.052650704535878196, 0.05415681742349356, 0.05550865569343595, 0.05672227751804139, 0.056380043377491404, 0.055950167623561406, 0.05543709331717843, 0.054821200745719036, 0.054152317849505194, 0.05257971386934553, 0.05087828329926489, 0.04920492154718895, 0.04762037245412148, 0.04603731168008272, 0.04306738624118663, 0.04038533763852086, 0.037950841992853084, 0.03573095069963093, 0.03369844807395425, 0.03186275865088047, 0.030182484178478554, 0.02863900986751011, 0.027216594546445563, 0.025901833066010457, 0.022915458773693113, 0.020465672336554414, 0.01842442455731984, 0.01670089346184708, 0.015228954239700073, 0.013705154547484921, 0.012411995152188401, 0.01130396475551162, 0.010346412692957739, 0.0095125521643495, 0.007850958805549672, 0.006588854892751402, 0.005607828938336061, 0.0048302804012807996, 0.004203639332704321, 0.003713997968514375, 0.0033057233976831195, 0.00296166401486486, 0.0026689727163365855, 0.0024178702500196564, 0.001054608649900271, 0.0006170745721460623, 0.00037581956507632357, 0.00014286560076662787, 7.572785921850773e-05], "KothaEtAl2016Italy": [0.036532293613162334, 0.048283172236492325, 0.058735867589225464, 0.059545455027390705, 0.06029191993636766, 0.060984849775915645, 0.0616317703834419, 0.0622387016309828, 0.0610337447409866, 0.059887877560061274, 0.058796992782106434, 0.05775727370531092, 0.05676519575581481, 0.05326217405373506, 0.049385128045613666, 0.04655744182123851, 0.04394448887895733, 0.041024076569458154, 0.03836517929312849, 0.03602312951013087, 0.033944779350548134, 0.032088211598202306, 0.030419925515042388, 0.02842116535841512, 0.02663773024069726, 0.025038150463118348, 0.023596664959955185, 0.02229200046934847, 0.019007530246623095, 0.0164335908196589, 0.014374828744805723, 0.012699450054370702, 0.011315754785084972, 0.010197934445071928, 0.009248262592779749, 0.008433693204987627, 0.007729042390556487, 0.00711482426494811, 0.0059816642024597385, 0.005104604499373623, 0.00441116000441386, 0.0038529304834234055, 0.0033965640438103463, 0.003021909433532492, 0.002707671218464448, 0.002441361548106174, 0.002213582783396199, 0.0020171491782916256, 0.0009059014475501607, null, null, null, null], "KothaEtAl2016Other": [0.043334291139835536, 0.056447268890908515, 0.06796304987996483, 0.06982131850157625, 0.07155919127899014, 0.0731935426631227, 0.07473779536579729, 0.07620281812650563, 0.07482889327782896, 0.07351833411043358, 0.07226730006700846, 0.07107210005889833, 0.06992923812329083, 0.06618862681282876, 0.06216890982951384, 0.058195642133638585, 0.0547998109406187, 0.05141821597432537, 0.048037933847237056, 0.04506359361574133, 0.0424267403397136, 0.04007344252168671, 0.037960641089916744, 0.03556059522574782, 0.033413656368823465, 0.03148336386356723, 0.029739799950965453, 0.028158202445296075, 0.02411851067908257, 0.02093886179736811, 0.018385432112386225, 0.01629982855921172, 0.014571429321187535, 0.013043717232110364, 0.01175438462955703, 0.010655343759059301, 0.009710179805710371, 0.008890885324024999, 0.007230689412776811, 0.005986753320936622, 0.0050319507671949025, 0.004283982665088554, 0.003687724038526788, 0.0032266828681640127, 0.0028462057629083356, 0.0025286401919962097, 0.0022609045618439006, 0.002033140299327776, 0.0009734932876477423, null, null, null, null], "KothaEtAl2016Turkey": [0.03020765886390517, 0.04099856962369679, 0.05082056441961511, 0.052975857119078894, 0.05502072603799587, 0.056969304227554626, 0.058832987785500584, 0.06062112083250664, 0.059440575933045664, 0.05831787459460958, 0.05724909236341072, 0.05623055400836535, 0.05525884613855646, 0.052763841387730936, 0.04823058357620962, 0.0449792425516599, 0.0422040114188017, 0.03899195501552854, 0.03598415950432781, 0.0333691349591842, 0.03107684938590748, 0.02905275504074291, 0.027253767370390376, 0.02515044541242785, 0.023296243285876334, 0.021652253141082635, 0.020186991602051153, 0.018874746128612587, 0.0157146901858437, 0.013294142944533028, 0.011398137649166694, 0.009884690201866941, 0.008656919590523116, 0.007651275669337838, 0.006812974479191083, 0.006106661129471917, 0.005505874997008628, 0.004990488572055566, 0.004167048747507511, 0.0035341107856805914, 0.0030368114932217485, 0.0026387696087292376, 0.002315072499291001, 0.002050138038004797, 0.0018289302796156257, 0.0016422585868741896, 0.0014832362495767015, 0.0013466187509321615, 0.0006937587165231659, null, null, null, null], "ZhaoEtAl2016Asc": [0.13158768471590462, 0.18276498967935095, 0.1979063766194019, 0.192178153556711, 0.18709054986625578, 0.17539336014614434, 0.16522959785678754, 0.1548301464710472, 0.14505630788939056, 0.13566154635861527, 0.12737171650530646, 0.11928980225058293, 0.11210172296871779, 0.09822772878835526, 0.08706393800855235, 0.07754296882649564, 0.06933594900082006, 0.0624771794089555, 0.05644121038577046, 0.0513029977931864, 0.04683960733085359, 0.04293278631307905, 0.03952792020803176, 0.03651673881629863, 0.03385947789458173, 0.03149463681287851, 0.029379430844610862, 0.02748420018884823, 0.023524138746521185, 0.020409521068032604, 0.017929745587668695, 0.015903600317053714, 0.014233641204167835, 0.01283082468586226, 0.011647722052676135, 0.010632562047033738, 0.009757693680114863, 0.0089945330489848, 0.00773658006021675, 0.006742866846460231, 0.00593992794340655, 0.005280415975419294, 0.004732683306879055, 0.004261819298600456, 0.003862379837616974, 0.003520217564767968, 0.003224574943954863, 0.002967145192030357, 0.0014951781808699156, 0.0009595452788710707, 0.0007784249938526178, null, null], "BindiEtAl2017Rjb": [0.034317851315310274, 0.04382576803602619, 0.04455839217219413, 0.04503451895615082, 0.04470828078418977, 0.04392223295853143, 0.04313110037501782, 0.04245123886787787, 0.0414949192053949, 0.04052385018271723, 0.03916912495574782, 0.037914067969163724, 0.03664433324733042, 0.03434534788801874, 0.031949395087170714, 0.029443801868274635, 0.027222709913397113, 0.025536057916592293, 0.024256378011513244, 0.02290059173799437, 0.021504015577196955, 0.02028596165074788, 0.019070766914861485, 0.018022915422816633, 0.01717912633824528, 0.016300533741063737, 0.01546244180687863, 0.014563522640496325, 0.012629129491521077, 0.011092242763912732, 0.009904744443272644, 0.008790678057666267, 0.007875359824143557, 0.007066114755269957, 0.006386698547459344, 0.0058338465297331854, 0.0053272317966101155, 0.004885437687589898, 0.004168833891484885, 0.0034562259401235557, 0.0029931765249424235, 0.0025544320946584817, 0.0022627919909209127, 0.002016225305489485, 0.001772812017899525, 0.001612719733103477, 0.0014739298701505307, 0.001336643199433322, 0.0006342985741203217, null, null, null, null]}}, {"ylabel": "Sa (g)", "magnitude": 5.0, "distance": 50.0, "row": 1, "column": 2, "yvalues": {"AkkarBommer2010": [0.011982159837058184, 0.015342887640381081, 0.018284643803769568, 0.019495478670065007, 0.02067083293212559, 0.021814589019788954, 0.022929940681843456, 0.024019555373266492, 0.024037523531024816, 0.024054351438742926, 0.02407017240290648, 0.02408509778365976, 0.024099221548350296, 0.02205348583469607, 0.02033480307209731, 0.018814554408856397, 0.01745763720933489, 0.01628153629589355, 0.015148898864951096, 0.014156629849352198, 0.01308260622468555, 0.01196544965999111, 0.010993796805646291, 0.010080608503726492, 0.00928059482929202, 0.008579348597788377, 0.007961062448089772, 0.007409830862428036, 0.006376054030265838, 0.005772764749533774, 0.005130004421443553, 0.004401750250610206, 0.003798647133856942, 0.0034014502470438453, 0.003002104825946351, 0.00274229694829159, 0.0024491356344490643, 0.0021964186719168753, 0.0018512807735936321, 0.0016421200510444533, 0.0014859991040652078, 0.0012938671410058717, 0.0011803688663380868, 0.0010734331575392578, 0.0009421314341175874, 0.0008417281570257358, 0.0007764193932767068, 0.0007125402331210629, 0.0003804928971826268, null, null, null, null], "CauzziFaccioli2008": [0.008317268370381157, 0.010930652277883165, 0.013269070285208762, 0.012865751876269491, 0.012508264908356461, 0.012188186997749106, 0.011899147947017264, 0.01163622354334104, 0.01112323590233597, 0.010661976282287971, 0.010244621548862848, 0.009864884187737613, 0.009517648651502775, 0.008804168487071376, 0.008199618325448473, 0.007804890958851216, 0.007573002951535108, 0.007363317295217805, 0.006951770745001279, 0.006586158043205642, 0.006254184435540739, 0.005951046399530839, 0.005677053898584237, 0.00545427178201803, 0.005250002294087235, 0.00502396625593626, 0.004781276554462715, 0.004559517968568741, 0.004138226125782034, 0.0037533954500123634, 0.0035970368638025196, 0.0033168930325854565, 0.0029909750434381375, 0.0027770786258900847, 0.0025061329477756127, 0.002339852370942195, 0.0021761606925849745, 0.002051784052609237, 0.00180098052100852, 0.0016145173490906075, 0.0014481170856209338, 0.0012789831295115994, 0.0011311661779375719, 0.0010077699888842281, 0.0009062359671936578, 0.0008036756386220652, 0.0007420505440494094, 0.0006806831552848064, 0.0003439112431923354, 0.0002003650049236161, 0.00013719901085481538, 7.185384893510711e-05, 3.823450090109952e-05], "ChiouYoungs2008": [0.007759926476198542, 0.009485854136443973, 0.010922182688297656, 0.011283272903884927, 0.011617671856574864, 0.011928721786240042, 0.012219132439114495, 0.012491137769519852, 0.012455754217970448, 0.012415859619993494, 0.012372031937081692, 0.012324769400429097, 0.01227450429511419, 0.011892454646365524, 0.0115320493810169, 0.011103045323431024, 0.010619386739536052, 0.010169846968191705, 0.009631732168079925, 0.009136965174728432, 0.008680398644057412, 0.00825774557775514, 0.007865389553262216, 0.007451667911215567, 0.007069898387103125, 0.006716682973382402, 0.006389095501675749, 0.006084599390354021, 0.005394417953558779, 0.004814714365896161, 0.004322536905980064, 0.003900760760588401, 0.0035363491706687554, 0.003219507670039201, 0.0029427933532852626, 0.002699630812000186, 0.002484755957029572, 0.002293910041179429, 0.0019654179885362933, 0.001702592398036391, 0.0014889368603646458, 0.001312858747357248, 0.0011660085322470035, 0.0010294287470505295, 0.0009148852141832467, 0.0008179240125004101, 0.0007351586273012976, 0.0006639772544941014, 0.0002836823439100474, 0.00014821124508990544, 8.672201065569692e-05, 2.8811316673913626e-05, 1.1682438590319764e-05], "ZhaoEtAl2006Asc": [0.016550095308346304, 0.022424909681607985, 0.027808482298647606, 0.02760697143153621, 0.02742479575494497, 0.027258667825025167, 0.027106064881420002, 0.026965009918444548, 0.026069644745025676, 0.025257260673503753, 0.024515778118118108, 0.023835444822033872, 0.02320828932913724, 0.021734178966172274, 0.020472372389490668, 0.019117363816549306, 0.017710629154366515, 0.016493924625866015, 0.015502609895730938, 0.01462725606430803, 0.013848593487091214, 0.013151401574093701, 0.012523497925824176, 0.011734359552258095, 0.011030030834162943, 0.010398181620670202, 0.00982870843256365, 0.00931326018818751, 0.008046873141683964, 0.007052393910628157, 0.006260621933823011, 0.005606912962521321, 0.005007438513497156, 0.004504881387408911, 0.004098324729814612, 0.003748758943313537, 0.0033842301241761405, 0.003071218084629669, 0.0025510449028738795, 0.0021534049915878824, 0.001860645436872544, 0.001640584509461188, 0.0014591695598967598, 0.0012964814722512758, 0.0011602463963512621, 0.0010449586260052575, 0.0009464831108365094, 0.000861663783363307, 0.00041633643161237557, 0.00025657157108747693, 0.0002040645846043967, null, null], "AkkarEtAlRjb2014": [0.007907632191773647, 0.010204192259915874, 0.010983193627405095, 0.011231642165312885, 0.01149205933468954, 0.011607945587648006, 0.01166405731903653, 0.011650561444667442, 0.011596248339232777, 0.011502553241920392, 0.011322012190896626, 0.011070220402713755, 0.010862457523284455, 0.01045477605085064, 0.009979264039942476, 0.009399381803734773, 0.008846483161405011, 0.008407839864195337, 0.008037780534340651, 0.007618908395665096, 0.007258231437224287, 0.006908234537965118, 0.006579003712435831, 0.00622664198233931, 0.005900991794495115, 0.00558818872083269, 0.005302859433572302, 0.0050436558334680795, 0.004428839640490566, 0.0039762186144456, 0.0035744974074242235, 0.0032216914646765473, 0.0029301809704774706, 0.002701944001508284, 0.002478964228397927, 0.0022672771767972845, 0.0020902242571747905, 0.0019317103115508727, 0.0016644399574467469, 0.0014637815238765445, 0.0012955426818052485, 0.0011462133206650005, 0.0010089593463312924, 0.0009041218824582497, 0.0008250355150265909, 0.0007499616600008151, 0.0006866205625703593, 0.0006208925527928029, 0.00027954344022993697, null, null, null, null], "BindiEtAl2014Rjb": [0.008939808409599752, 0.011780050957015568, 0.014218727905591077, 0.014858648355977968, 0.015467798012582308, 0.016050045896309827, 0.016608518821947728, 0.017145786008078718, 0.016936451448837812, 0.01674189633965226, 0.016560301271030343, 0.01639015640103168, 0.01623019568245307, 0.015243860993943797, 0.014395708220757978, 0.01365711355829802, 0.012656789592938688, 0.011791478904326321, 0.011048053462379121, 0.010392366888149157, 0.009809772202954193, 0.009292242267149666, 0.008826534142491418, 0.008257688901274342, 0.007749427359347882, 0.007292967006379524, 0.006831461395132267, 0.0064162032281333825, 0.005567546484635445, 0.004891131241326479, 0.0043041474858579185, 0.0038236743152550022, 0.0033488199475226713, 0.0029581548620930143, 0.0026544618459620386, 0.0023967296691290115, 0.00216500976408709, 0.001965921168249631, 0.001698556670499082, 0.001486343333793044, 0.0013146134126842558, 0.0011526138890187217, 0.0010197798595262455, 0.0009119529710010623, 0.0008210714489914123, 0.0007436959513559246, 0.0006655055711014027, 0.000598938926914657, 0.00029953584981033774, null, null, null, null], "CauzziEtAl2014": [0.016429128853902727, 0.021496178237706554, 0.026316310458480686, 0.027815035258069467, 0.028645432194966233, 0.028629057079806, 0.02744365092594157, 0.024284761817678923, 0.024492652596603142, 0.024135023667248505, 0.023168765281239612, 0.021546086575014476, 0.01920228256316749, 0.01715386005838437, 0.014966553774431417, 0.013340489334252121, 0.01234486362444648, 0.01136192629066776, 0.010436789075273255, 0.009597570860609755, 0.008840769513392719, 0.008155686845573759, 0.007528409307944638, 0.00708128568166129, 0.006671283065985614, 0.0062690838905098524, 0.005880437299701048, 0.005528531038370076, 0.004768403378876807, 0.0040972021697732765, 0.003711357360035387, 0.003323436602017618, 0.0030003648773555573, 0.0027169266651275647, 0.0024801651902905822, 0.002319658030427136, 0.002157219273906996, 0.0020047335880376935, 0.0017413766023464021, 0.001554328459941371, 0.001372763256551477, 0.00121477551558631, 0.0010509680854798756, 0.0009141712982765845, 0.0008032780149567895, 0.0007084767193852755, 0.0006468634562262078, 0.0005910981649160246, 0.0002957026851165069, 0.00017556338143166398, 0.00012076820882457244, 6.180693396781044e-05, 3.442451546427379e-05], "DerrasEtAl2014": [0.005433022775450012, 0.007752741770667326, 0.009868475882649724, 0.01035992227467415, 0.010864128768226598, 0.011157768476634659, 0.010958198466405663, 0.011646414549973417, 0.011390360585294808, 0.011259190601442126, 0.010918875676085278, 0.010774984439637718, 0.010892525649078484, 0.010250966383542623, 0.0090410965340708, 0.00840467021890141, 0.007801890297983568, 0.00751012260428426, 0.006851013499106466, 0.0068929172920917155, 0.0068367221708990865, 0.006472504094519107, 0.006141234802239744, 0.005737784545190892, 0.005394790783872018, 0.005086736311994288, 0.004944871485465114, 0.0045710456301992506, 0.0040513847789273635, 0.00402671316980057, 0.003777935887557425, 0.0031615867728954855, 0.0026491565321268215, 0.0024146465671637325, 0.0022122408021034707, 0.0020203122919099743, 0.0019597730541558093, 0.0019953342145363246, 0.0017481131712978081, 0.001630771814723218, 0.0014940211893375716, 0.001293972540272013, 0.0011841537872808873, 0.0011466816493321448, 0.0009763889147548476, 0.0008734600881784456, 0.0007779530300061178, 0.0007055595450993606, 0.00032176463271261114, null, null, null, null], "AbrahamsonEtAl2014": [0.008821085777444688, 0.011238088698415647, 0.013057298848659325, 0.013376028639119228, 0.01361111685298069, 0.013773598935886974, 0.013867369394945159, 0.01390598373183062, 0.013868999421071096, 0.013794397901586647, 0.013686294719537594, 0.013548277916875618, 0.01338349682167229, 0.012728200602250512, 0.01207766318045957, 0.011376534691751223, 0.010655462861239742, 0.009979723803435307, 0.009470320009337382, 0.008999352223251326, 0.008562201133440424, 0.008155011950113382, 0.007774536124230633, 0.007411318584589933, 0.007079175681520221, 0.0067742542622603475, 0.006493317319352463, 0.006233624953515403, 0.0053856568676745415, 0.004712468413082522, 0.004167616154713434, 0.0037193795800930882, 0.0033454375197947564, 0.003032941558013826, 0.002766036695461663, 0.0025359411950873637, 0.00233593252466974, 0.002160786805440357, 0.0018882626722949933, 0.0016695940640810228, 0.0014908716754645761, 0.0013425033336162302, 0.0012176787109417619, 0.0011011905238009195, 0.0010019373658175328, 0.0009165667630041614, 0.0008425182241284597, 0.0007778063626053117, 0.00033115730752027633, 0.00017748006828296727, 0.0001092879020444105, 4.509779311499502e-05, 2.4268742462223337e-05], "BooreEtAl2014": [0.010228732108633587, 0.01306139188878381, 0.014597614296568098, 0.014938967039092397, 0.014885082883274989, 0.015003543409122702, 0.015037397529905757, 0.014986729398018043, 0.014824075621366867, 0.014548619709058682, 0.014377321175337932, 0.0139258548470257, 0.0135777518319725, 0.012882469605528364, 0.011857460547058357, 0.01106310987493695, 0.010222938966786527, 0.009489559167505728, 0.008858448806753717, 0.008218452226572196, 0.007696016540401306, 0.0072842924493189765, 0.00678640940030984, 0.006412060498270426, 0.006050444144516533, 0.00569263887850826, 0.0053800788366410845, 0.0050729571644226165, 0.004421574808349403, 0.0038682037564361075, 0.0034011345467811257, 0.0030123138990313194, 0.0026752630239483127, 0.0023877060064502196, 0.0021423135242850375, 0.0019254492765330828, 0.0017353647617453702, 0.0015762523092891852, 0.001314019977735825, 0.0011064896883909582, 0.0009438690099657112, 0.0008156855661616208, 0.0007109994059224334, 0.0006259851341786632, 0.0005567393128714965, 0.0004981570001892621, 0.0004482805929292442, 0.0004079431403019791, 0.00020635342004219346, 0.00012915112710079458, 8.791371120369519e-05, 3.829111977855056e-05, 2.0874386922491446e-05], "ChiouYoungs2014": [0.006224629282279307, 0.007975843552158761, 0.00936787375115852, 0.009789876862208821, 0.010202702108433107, 0.010498136612415134, 0.010782102260104124, 0.011050616498917296, 0.01116377532032951, 0.01126510540715401, 0.011222334067792834, 0.011175843216492596, 0.011126316897067395, 0.010786425513959533, 0.010464565651329381, 0.010080381543014535, 0.00964705873609167, 0.00924354720694353, 0.008765619138815023, 0.008326842111821248, 0.007921659196524076, 0.007545296493152231, 0.007193595572858773, 0.006826556067689218, 0.006488321158442378, 0.006176349385530472, 0.005887344713526367, 0.005618414982102477, 0.004961561179594412, 0.004418616902651505, 0.003962618741862406, 0.0035742831782949757, 0.003239485670737707, 0.002914600054297965, 0.0026366309330002214, 0.002396801419305235, 0.002188316815993568, 0.002005846951368868, 0.0016903739072465875, 0.001443739471822818, 0.0012471939761531346, 0.0010879823891215027, 0.0009571784408795758, 0.0008450757204877838, 0.0007513207830736381, 0.0006721202798878651, 0.0006046127970947561, 0.0005466070420055998, 0.0002473472102082864, 0.00013166490344455775, 7.688956575163635e-05, 2.7035155362962175e-05, 1.2250734012351915e-05], "CampbellBozorgnia2014": [0.008330305504997786, 0.01010642269182574, 0.012554735435188001, 0.013181354702874527, 0.013755120209807223, 0.014281338556492352, 0.014764490078290645, 0.015208403447494192, 0.015226022432351091, 0.01521202492114897, 0.015169701274271398, 0.015100162330795475, 0.01500923180805246, 0.014800564449910578, 0.01453185061719325, 0.014241210651393691, 0.013948631097608825, 0.013638561515240438, 0.012817147417202968, 0.012070638980504315, 0.011388980989350971, 0.01076390180110704, 0.010188525425916625, 0.009651380577910911, 0.009158605214993988, 0.00870497415025713, 0.008286058974654672, 0.007898080400326924, 0.007040842293176814, 0.006333766402075093, 0.0057414569636382185, 0.0052387398866371795, 0.0048072358087745464, 0.004318507605827973, 0.003904487826615743, 0.003550329946145638, 0.0032447497180921043, 0.002979037900910903, 0.002480403552304354, 0.002098436568176371, 0.0017992280807537587, 0.001560380121147144, 0.0013666088710355719, 0.0012009037355464802, 0.0010635708291035003, 0.0009484863820095304, 0.0008510936596562456, 0.0007679453090541104, 0.0003365301441182214, 0.00020114459611092432, 0.0001201941706326315, 4.531939239870633e-05, 2.3404172559043285e-05], "KothaEtAl2016Italy": [0.007894457901059441, 0.010367163651278495, 0.01257224853740374, 0.012953350450369955, 0.013311295330963691, 0.013649255912661643, 0.013969764307245853, 0.014274877166050094, 0.014293250703775195, 0.014308957236498965, 0.014322413491115942, 0.0143339562814845, 0.01434386074959764, 0.01374059492634645, 0.01311395759349585, 0.012766201653697391, 0.012196963758559259, 0.011592607140623901, 0.011026478103324588, 0.0105197617972412, 0.010063255816529351, 0.009649594439447382, 0.00927280816916399, 0.008680439674169472, 0.008150899203848892, 0.007675101387858376, 0.007245595891791176, 0.006856219953608939, 0.005999066959406399, 0.00531048686955081, 0.004747083276184999, 0.004278896686134534, 0.0038846350061179447, 0.0035248620756831825, 0.0032172976520988103, 0.0029519248425955414, 0.002721068275975237, 0.002518758342470252, 0.002177013424779848, 0.0019055862833902342, 0.0016858186255942975, 0.001504959490899727, 0.001354031670070291, 0.0012103248214341703, 0.00108925396900457, 0.0009862172837489522, 0.0008977373750012458, 0.0008211449181016093, 0.00038836711106170945, null, null, null, null], "KothaEtAl2016Other": [0.011698015472253642, 0.014928098529457767, 0.017739004272276235, 0.018561902995477123, 0.01934635065256916, 0.02009713838168136, 0.020818142908179973, 0.021512553201158944, 0.02163851340956123, 0.021755231724300682, 0.02186388072635526, 0.021965430863017242, 0.022060693594369248, 0.02115211622206651, 0.02049041826420584, 0.019679645511144137, 0.018683054301264566, 0.01789250285582837, 0.016960673779083214, 0.01612944435919078, 0.015382951974615991, 0.014708541063392103, 0.014095986303162342, 0.013156950645352175, 0.012319926095180941, 0.0115699143547266, 0.010894650464438256, 0.010284016054760214, 0.008930508974865145, 0.007851031793657214, 0.006973629071798422, 0.006248957410251473, 0.00564216472778357, 0.0050874575362652745, 0.004616151201150826, 0.004211841626636141, 0.0038620325644721657, 0.003557058356878709, 0.0028899891432522347, 0.0023908360852262227, 0.002008140832674695, 0.0017086444939656638, 0.0014701018659560394, 0.0012923399764731296, 0.0011449842590599921, 0.0010214745389364507, 0.0009169291258057271, 0.0008276546140204324, 0.00041734426717624277, null, null, null, null], "KothaEtAl2016Turkey": [0.007281563892380068, 0.009720558154625518, 0.011926018894443802, 0.012713232439805098, 0.013477104395662238, 0.014220189815710315, 0.014944590597096756, 0.015652062307021417, 0.015727836585892968, 0.01579758026694866, 0.01586208527711603, 0.01592200434560558, 0.015977881099534054, 0.01566877192057775, 0.014811325360338093, 0.014247749969895454, 0.013471956032213262, 0.012687513958217858, 0.011878831054678206, 0.011166087454463632, 0.010533213728508706, 0.009967534939575027, 0.009458919904121083, 0.008755378966753175, 0.008133350783322389, 0.0075803001675203196, 0.007086055815906, 0.006642288777423658, 0.005607155897106132, 0.00480368535581711, 0.004166645431972887, 0.003652416789647279, 0.0032308968581973977, 0.0028720189676090394, 0.002571285275548955, 0.002316635659820486, 0.002099002568550906, 0.0019114585384898018, 0.0016108482271890811, 0.001377856467345711, 0.0011933796037358801, 0.001044658531162072, 0.0009228977996929608, 0.000821114268756552, 0.0007357501725167877, 0.0006634100565796331, 0.0006015391098943831, 0.0005481841183827488, 0.0002974198454352981, null, null, null, null], "ZhaoEtAl2016Asc": [0.04022382006583249, 0.057426059003537505, 0.06289299339441175, 0.061144972412996074, 0.05959302703076291, 0.05568117005263191, 0.052292408681006416, 0.04875595863186845, 0.04543306102465441, 0.04218575652140599, 0.03933916860705253, 0.036579204702007144, 0.03414090737984013, 0.029514279701504238, 0.02583965602350764, 0.02273000790814256, 0.020071063613518805, 0.017875831774728006, 0.015962577058504686, 0.014352205381650709, 0.01297038146954437, 0.011774835372383755, 0.010742637882086356, 0.009843042876834952, 0.009055553436065606, 0.008362232816193678, 0.007748431253008226, 0.007202074186691, 0.006087323171777449, 0.005221067694321535, 0.004553446194117576, 0.004011755428329135, 0.0035773842356090478, 0.0032137800484037414, 0.002915140751204131, 0.002659080461575055, 0.002443805449130511, 0.0022557453551307963, 0.001953283173347285, 0.0017128000675824119, 0.0015210125739157892, 0.0013654217364869048, 0.0012349648355238227, 0.0011228311098453556, 0.0010268116088470633, 0.0009438331527999561, 0.0008715379720317714, 0.0008080900522084067, 0.0004376408119205915, 0.0002967850933284134, 0.00025098706206699704, null, null], "BindiEtAl2017Rjb": [0.010606812373871273, 0.01410465529108367, 0.01535843358306158, 0.015774012307604404, 0.01588474910453191, 0.015837111927107288, 0.015673101706686135, 0.015457225459011757, 0.015083662328749964, 0.0147135693397095, 0.0142492396249501, 0.013822635379947127, 0.01342216896526899, 0.012626023977751756, 0.0118107581365734, 0.010917044655944506, 0.010104814434544099, 0.009478173746650788, 0.008964568929405519, 0.008447408115907249, 0.007947142633790726, 0.007528632625402054, 0.007097651854675918, 0.0067085820566590805, 0.006391491844512099, 0.006071498621332332, 0.005752668401934693, 0.005428874330322857, 0.004733278713207349, 0.004160421757069988, 0.0037204254954030435, 0.0033211124473895375, 0.0029996824992794147, 0.0027062920566578792, 0.002447804543730617, 0.002235020258721805, 0.002051605032898734, 0.0018835103631900376, 0.0016165552590832117, 0.0013648725793642688, 0.0011877589250767803, 0.001015713589804443, 0.0008928847178761615, 0.0007947791827265727, 0.000701260512578816, 0.0006375230745298816, 0.0005823746517256342, 0.0005230146457456951, 0.0002521073542246134, null, null, null, null]}}, {"ylabel": "Sa (g)", "magnitude": 5.0, "distance": 150.0, "row": 1, "column": 3, "yvalues": {"AkkarBommer2010": [0.0020334399878050757, 0.002665945424359759, 0.0032307517170214583, 0.003542259690752497, 0.0038528005329275883, 0.004162457782801415, 0.004471301874908452, 0.0047793929877278435, 0.004877824782355465, 0.004972131522081583, 0.005062714250136277, 0.005149915243315558, 0.005234029222728553, 0.0049384925120878375, 0.004683201467153935, 0.004439914480479153, 0.004207602851263892, 0.00400223819066599, 0.003771509137577125, 0.0035668973061570852, 0.003304657484697761, 0.0030040451083331635, 0.0027441695457118445, 0.002504531534548336, 0.0022955580205008515, 0.0021158523585700873, 0.0019603168160452463, 0.001821882344820892, 0.001608278848212913, 0.0015534125461242197, 0.0014644066521968624, 0.0012843329616133445, 0.0011153723036685281, 0.001007847344301536, 0.0008833067167755254, 0.0008121292413069021, 0.0007162531922131622, 0.0006386973010275034, 0.0005548272991245367, 0.0005040554721158251, 0.0004627400253269126, 0.0004000271245877203, 0.0003802561570471728, 0.0003441642423704632, 0.00028524350694371603, 0.0002462208120061923, 0.00022966356878135861, 0.00021140878104712122, 0.00011430826032251753, null, null, null, null], "CauzziFaccioli2008": [0.001288239955764203, 0.0016919176650875259, 0.002052924212190048, 0.002048927186229076, 0.002045284983069602, 0.0020419401986246535, 0.002038848288746496, 0.002035973997869895, 0.0019872382009284125, 0.0019425211025763643, 0.0019012826764682692, 0.0018630805071830905, 0.0018275480793552726, 0.0017211083228168506, 0.0016293588167806204, 0.0015688654305845901, 0.0015333089006366299, 0.0015009312784284561, 0.0014223961819906526, 0.0013523708519631282, 0.0012965631530556664, 0.0012525275645647142, 0.001212134504336573, 0.0011703816385948988, 0.001131911594160645, 0.0010900589958482455, 0.0010455471447083388, 0.0010045613920063577, 0.0009178022960563096, 0.0008462217066967822, 0.0008131678575930713, 0.0007538654005674046, 0.0006795301157967757, 0.0006310835824491235, 0.0005644960167525824, 0.0005233922637343151, 0.0004885281794841063, 0.00046213770656627185, 0.0004071116253516415, 0.00036502655549853374, 0.00033123477510435296, 0.0002907363977490676, 0.0002554961640235708, 0.00022659435786728796, 0.00020417597567678897, 0.00018082740873965865, 0.000166759368878167, 0.00015329289195446756, 8.659988607439206e-05, 5.457994513690638e-05, 4.022538537979447e-05, 2.473854203903008e-05, 1.353919159886075e-05], "ChiouYoungs2008": [0.0007955459884515512, 0.0008797629472117444, 0.0010079549167804915, 0.0010775232953697113, 0.0011446632496565925, 0.0012095779479222104, 0.0012724388033067107, 0.0013333925586427868, 0.001380113305683583, 0.001424720568869595, 0.0014673499717817939, 0.0015081229059073116, 0.0015471487863283398, 0.0015925119409296552, 0.001631986987438154, 0.0016542515724279649, 0.001660402961855481, 0.0016631827741297196, 0.0016400198107566033, 0.0016158673599290954, 0.0015909752943689972, 0.0015655528045309375, 0.0015397747363319375, 0.0014985627788335887, 0.0014587352844202587, 0.0014202525899387791, 0.0013830731170569868, 0.0013471540526548858, 0.0012453318320023068, 0.0011547497014035696, 0.001073759674971622, 0.0010010122592687405, 0.0009353913526373586, 0.0008707459205233803, 0.00081271803259335, 0.0007604032384949158, 0.0007130502861006091, 0.0006700303416792936, 0.0005887141133017172, 0.0005218430997177226, 0.00046610752036579115, 0.0004191097992349687, 0.00037907481974412384, 0.0003387659777636443, 0.0003045302291732263, 0.0002752033297541113, 0.0002498883366580089, 0.00022788489439310857, 0.0001021787606109514, 5.4310953999595406e-05, 3.2039750757677e-05, 1.0742897883102179e-05, 4.3732547522461904e-06], "ZhaoEtAl2006Asc": [0.0028760593704104734, 0.0036549458930843414, 0.0043318424781279355, 0.0043656105667296925, 0.0043966962857333045, 0.004425509662301442, 0.0044523723157471285, 0.004477541311212905, 0.004390497417701416, 0.004310366547846065, 0.004236231103731988, 0.004167338876197908, 0.004103066194113794, 0.00395420042013167, 0.0038231466868623846, 0.0036673143047353256, 0.0034927416464293603, 0.0033376766314989047, 0.0032036279946852687, 0.0030827229811009388, 0.002973007947544464, 0.002872908022273069, 0.002781138258070509, 0.002652650980840952, 0.0025358089316326157, 0.002429101562257786, 0.0023312689333520958, 0.0022412517838411414, 0.001991865939511171, 0.0017894156554927976, 0.0016070402454494788, 0.0014547903580724832, 0.0013095258451814513, 0.001186804358159735, 0.0010853137426968457, 0.0009975953871285315, 0.0009062469082845242, 0.0008273288062076761, 0.0006907136015456723, 0.0005857829899011366, 0.0005054347955202506, 0.00044263084647681373, 0.0003911967183432898, 0.0003494096245759871, 0.0003142339333359335, 0.0002843208919102292, 0.00025865226269672473, 0.00023644709752612938, 0.00012066359371465385, 7.105965948344356e-05, 5.439836370545624e-05, null, null], "AkkarEtAlRjb2014": [0.0011494902417283266, 0.001434190513277634, 0.0015028276555865304, 0.0015340941727836305, 0.0015756303624936494, 0.0015979520054153788, 0.0016139603116536335, 0.0016243543101834472, 0.0016413979551761493, 0.0016571470668479437, 0.001657940668699632, 0.0016479593242523423, 0.0016450011066349065, 0.0016314849855837141, 0.0016007455338359876, 0.0015362344814813175, 0.00148321337539439, 0.001448162065351675, 0.0014339654787395317, 0.0014000872293663893, 0.0013579738731897269, 0.0013162679497348475, 0.0012711810574571865, 0.0012173348491202603, 0.0011678294998510531, 0.0011151260560532006, 0.0010680169559326676, 0.0010248784472651372, 0.0009253980061492258, 0.0008577170086188744, 0.0007974096576801017, 0.0007360309016648089, 0.0006899494632518044, 0.0006467613149206053, 0.0006027893515778246, 0.0005604846477696551, 0.0005238688859993038, 0.0004885416853736098, 0.00043091680865257073, 0.0003868063257170858, 0.00034960978072235614, 0.00031276101859020527, 0.00027268056648474813, 0.00024683197595057083, 0.00022785144923701185, 0.0002088642110214918, 0.0001927243742937268, 0.00017474351092453192, 8.12441654413425e-05, null, null, null, null], "BindiEtAl2014Rjb": [0.0013694518378165159, 0.0016454136177389612, 0.0019096035357659832, 0.0020122924301257316, 0.0021108535417973784, 0.002205777698939541, 0.00229746453116586, 0.002386244662441038, 0.0024291748000343583, 0.0024701994805931453, 0.0025095082782056258, 0.0025472625930724867, 0.0025836010803151842, 0.0025472454163899044, 0.002514496711716852, 0.002484738263148552, 0.0024106042527117988, 0.0023435764011816382, 0.0022853210289437943, 0.002231913104085862, 0.0021826980808628644, 0.0021226019625602416, 0.0020671199793508787, 0.0019498527999789487, 0.0018442412202848391, 0.001748672491140817, 0.0016591757961070823, 0.0015776373687476915, 0.0014214523443799758, 0.001292404246686175, 0.001185042172080199, 0.0010936079106884534, 0.0009740756588989046, 0.0008741164233400949, 0.0007880794943434173, 0.0007147321012692319, 0.0006452132627226674, 0.0005855220656459442, 0.0005218415643665845, 0.00046977266932233765, 0.0004264741596117881, 0.0003715481666357245, 0.0003267907891191695, 0.00028919139388859123, 0.00025782207774308096, 0.00023136933785410357, 0.00020751620644563257, 0.0001871640921078005, 9.452295248925415e-05, null, null, null, null], "CauzziEtAl2014": [0.0018871197477084213, 0.002391026601314793, 0.0031479045783154203, 0.0034332736293900628, 0.0036399971866744674, 0.003737720648207115, 0.003674963434845881, 0.003330501224529988, 0.0034653106758246403, 0.0035171558654446106, 0.0034726835968602564, 0.003317359556033663, 0.0030334403116556307, 0.0028052630526040046, 0.002527515816159831, 0.002306579629423891, 0.002168308607249986, 0.0020253885362482454, 0.0018729385250627814, 0.001733229162174106, 0.0016201564851860799, 0.0015287249030959875, 0.0014420716087313013, 0.0013684848873357302, 0.0013002313204538824, 0.0012337345580813307, 0.0011698461863389553, 0.0011113630020648758, 0.0009649444161154226, 0.0008377518123051829, 0.0007534988807740941, 0.0006726711719436997, 0.0006031364804103683, 0.0005451658849891047, 0.0004957288539397443, 0.000460597971808025, 0.0004281100324395604, 0.00039906407447717836, 0.0003439434345519384, 0.00030382010753025467, 0.0002664193648057265, 0.00023274288408300998, 0.00019913286931322528, 0.00017137152990434883, 0.00014916433993188215, 0.00013006648781579286, 0.0001177973924098381, 0.0001070275602590516, 5.5956901417224166e-05, 3.4375483745974466e-05, 2.460458009948485e-05, 1.4504980217667006e-05, 8.475285289090043e-06], "DerrasEtAl2014": [0.0008789881051250833, 0.001087688705921815, 0.001311667781956373, 0.001369564454948707, 0.001439297516914009, 0.001485614010937487, 0.0014802183217319479, 0.001580218710485048, 0.001549006390314696, 0.0015595458882879728, 0.0015259072480773004, 0.001532744027935058, 0.0015901459037737996, 0.001589263565245572, 0.0014688551383050647, 0.0014254625413011874, 0.0013807010265454985, 0.0013243785717235944, 0.0012922305048570781, 0.001361520116151159, 0.001355742603763794, 0.001313755838612742, 0.001268352012871487, 0.0012285257460797566, 0.0011709027263793414, 0.0011157508390318843, 0.0010831618818478877, 0.001024239807831119, 0.0009426379634946372, 0.0009349604020713266, 0.0008951987049761488, 0.0007872630790082465, 0.0006988553957397193, 0.0006564400669841749, 0.000613828144080594, 0.0005717737691323216, 0.0005720201656032661, 0.0006044126834585198, 0.0005497504505327484, 0.0005262208358371574, 0.000490619434601185, 0.00043910218460432583, 0.00040274590442741396, 0.0003854038050652182, 0.00033714912958313363, 0.0003093736157333642, 0.00028080695249858996, 0.0002572309128493636, 0.00012480930156774558, null, null, null, null], "AbrahamsonEtAl2014": [0.0009859383756386881, 0.0011485902639865044, 0.001256525033033289, 0.0012867576567797527, 0.001308906839781827, 0.0013240558604628706, 0.0013330700132948362, 0.0013367820089242336, 0.0013604189159380897, 0.0013790092144479289, 0.0013928881720209477, 0.001402362894171139, 0.0014077157923106857, 0.001409198453256369, 0.0014012306637783073, 0.0013785203892329725, 0.0013447087268975803, 0.0013080028823071023, 0.0013011130501828525, 0.0012923526316256802, 0.0012819637430748463, 0.0012701513515340243, 0.0012570904175856646, 0.0012275322481532431, 0.0011997189087150804, 0.0011734778705489242, 0.0011486601333862694, 0.001125136199419876, 0.0009882098847852725, 0.0008777742383248609, 0.000787088315210626, 0.0007114799387781428, 0.0006476165945322702, 0.0005871229911168137, 0.0005354550053519074, 0.0004909126507307567, 0.00045219456580273957, 0.00041828950149856573, 0.0003681205491896545, 0.0003275929050913073, 0.0002942631478955373, 0.00026643562986701746, 0.00024289948519402193, 0.00022114607323470167, 0.00020248971499963294, 0.0001863438861398972, 0.00017225784043523778, 0.000159880025356128, 6.937040422884576e-05, 3.7925190536953836e-05, 2.3430166159216592e-05, 1.0666955414862626e-05, 6.248686101215325e-06], "BooreEtAl2014": [0.001248705630426709, 0.0015272928847052227, 0.001798396590436972, 0.0018894471911984783, 0.0019319104431221744, 0.0019969503916884607, 0.0020511123162738876, 0.0020943851578020378, 0.0021216535888792963, 0.002131446202707035, 0.0021547920066156316, 0.002133370463683921, 0.0021248285844151075, 0.0021009647963848785, 0.002011153364139906, 0.0019462655645002503, 0.0018603650106380285, 0.0017802655674030539, 0.0017075396280496814, 0.0016222167109997826, 0.0015509376916398579, 0.0014947017257545354, 0.001414746517826098, 0.0013557394373433951, 0.0012952751177266997, 0.0012321294579375444, 0.0011765587905973247, 0.0011198474334612228, 0.0009980727570386917, 0.0008907843682782662, 0.0007971968141890841, 0.0007172260124275741, 0.0006457073907237481, 0.0005833529651233183, 0.0005292009596673685, 0.00048040510600667235, 0.00043700146364349893, 0.0004004269245172001, 0.0003393820436904889, 0.0002901342527339652, 0.0002509786392151742, 0.00021952555373047413, 0.00019325396461840406, 0.00017154970152080773, 0.00015360373175546402, 0.0001381969097247283, 0.00012485368477046087, 0.00011389687650726283, 5.7589606735909826e-05, 3.605396732769165e-05, 2.464991198260668e-05, 1.0515348796705821e-05, 5.389182722458214e-06], "ChiouYoungs2014": [0.0006775372099186774, 0.0007987337204644191, 0.0009520626719675681, 0.0010150468230141778, 0.0010802325064721392, 0.0011474482883112353, 0.001215605326181427, 0.0012828727210047746, 0.001338649286068886, 0.0013925209825464712, 0.0014295361217777308, 0.001464663334673059, 0.001498049493977976, 0.0015230208351103402, 0.0015432126615202884, 0.0015485169584003309, 0.0015403204702505331, 0.001529995994614318, 0.0014994369186544772, 0.0014691531471900672, 0.0014390892463132495, 0.001409150557954607, 0.0013792084370223563, 0.0013359932166996217, 0.001295051585415266, 0.0012567119544967347, 0.001220592791136384, 0.0011863161746419827, 0.0010824916644754836, 0.0009941902053709956, 0.0009178185041494787, 0.0008507917415314314, 0.0007912088029732733, 0.0007260641296989081, 0.0006691846062330129, 0.0006191552223149546, 0.0005748596978128242, 0.0005354066008937601, 0.0004625301037521659, 0.00040424510199104627, 0.00035680001183794723, 0.000317592590270198, 0.0002847684394665696, 0.0002533651393805, 0.00022696724003221235, 0.00020455200147051738, 0.00018534670722363024, 0.00016875852013440657, 8.078145401222592e-05, 4.3884977865995136e-05, 2.5865300729252492e-05, 9.181805903413933e-06, 4.189884689972259e-06], "CampbellBozorgnia2014": [0.0009450964787139415, 0.0010818050613899284, 0.00134482204790644, 0.001436645276450986, 0.0015230906571170812, 0.001604530313169323, 0.0016812929209086773, 0.0017536709550580291, 0.0017948864225175787, 0.001830786148275524, 0.0018617624418907068, 0.0018881418610067048, 0.001910298886511529, 0.0019667393821992158, 0.0020087683135502545, 0.0020446776793276336, 0.0020774021679123606, 0.002101780951027053, 0.0020241571678250797, 0.0019506176239888998, 0.0018808086821249638, 0.0018144206721635871, 0.0017511809054787174, 0.0016891305565895408, 0.001630767333242376, 0.001575746300261394, 0.0015237669787144877, 0.0014745661175480818, 0.0013592648163254836, 0.00126077945061689, 0.0011755844922718632, 0.001101090758117484, 0.0010353509640767778, 0.0009423362150229117, 0.0008625257820452725, 0.0007934283217569778, 0.0007331271095890134, 0.0006801257434681529, 0.0005778626999595413, 0.0004979912643456916, 0.0004343029839386271, 0.0003826222860006513, 0.0003400521426692888, 0.0002959785426514193, 0.0002597943790394969, 0.00022973971549507475, 0.00020451683348554444, 0.00018315233414046742, 8.055568246916963e-05, 4.834350979062545e-05, 2.7869803213490863e-05, 1.0414570367385768e-05, 5.400965197000226e-06], "KothaEtAl2016Italy": [0.0007371508092412559, 0.0009115835805930345, 0.0010597466753428032, 0.0010811279463438972, 0.0011010248430236454, 0.0011196521539045784, 0.0011371798220954155, 0.0011537447847203934, 0.001171928939243899, 0.001189257268221174, 0.0012058167866323471, 0.0012216814112297968, 0.0012369145068610045, 0.00122248458302463, 0.001220527460033623, 0.0012476269643886104, 0.0012497057522753662, 0.0012383765110244491, 0.0012364543038281511, 0.0012346475618243101, 0.0012329432106393818, 0.001231330280344426, 0.0012297994763434265, 0.0011648842578790024, 0.0011061827801092982, 0.0010528565990557744, 0.001004210549905221, 0.0009596635223263755, 0.0009216329263420414, 0.0008882323082802099, 0.0008585775717629806, 0.0008320057151992263, 0.0008080082420810295, 0.0007493332482412827, 0.0006981037020284252, 0.0006530155083368283, 0.0006130493253471693, 0.0005773973117523742, 0.0005427208441751003, 0.0005128793528309622, 0.00048687436183302853, 0.000463970923823803, 0.00044361497036113823, 0.0003990012594820814, 0.00036118841710417414, 0.00032882553932683014, 0.00030088600091140994, 0.0002765775088014143, 0.00013920336331600612, null, null, null, null], "KothaEtAl2016Other": [0.0023141291661671675, 0.002660637934025755, 0.002937256094031854, 0.003065543160478594, 0.0031875482736259046, 0.0033040670919062026, 0.0034157419412063563, 0.0035231000795858287, 0.0036292785808685834, 0.003731894077364106, 0.003831265255073375, 0.0039276664074585155, 0.004021335605007067, 0.003870725064359236, 0.003942728623850518, 0.0038875316769952126, 0.003819885866345615, 0.0038460592174918806, 0.003795027496035547, 0.0037476986011097586, 0.003703608805349361, 0.0036623742781131765, 0.0036236739420973446, 0.0033586238393326466, 0.0031239820018394196, 0.002915104148193663, 0.0027282172662321347, 0.002560228188217302, 0.0023433951771003893, 0.0021615193159734867, 0.0020067025671902322, 0.0018732692783960873, 0.0017570340758794399, 0.0016220367278349803, 0.0015046907369732044, 0.0014018417317131025, 0.0013110344556720034, 0.0012303307926487942, 0.0009869172484831248, 0.0008070048286991084, 0.000670612800478067, 0.0005649749442566714, 0.00048164249781549586, 0.00042603875353131233, 0.00037966816179426706, 0.00034058104812114136, 0.0003073183154288271, 0.00027877010043852145, 0.00014958971549564547, null, null, null, null], "KothaEtAl2016Turkey": [0.0009830905539220081, 0.0011962539234419503, 0.001374842280296967, 0.0014820506546335001, 0.0015872078183702125, 0.0016905196448972544, 0.0017921571515881064, 0.001892264465689531, 0.0019515177455578206, 0.002008841691983466, 0.0020644070309358883, 0.002118360860480944, 0.0021708309789599816, 0.0022393305696216535, 0.0022471121322539945, 0.0022599552092628246, 0.002207943857015656, 0.0021767289081994104, 0.0021208803817394394, 0.002069719551042126, 0.002022610332122092, 0.0019790323695937796, 0.0019385551707145892, 0.0018220867289365315, 0.0017175594451311676, 0.0016232859821352509, 0.00153787743761978, 0.0014601807922581193, 0.0012995345085001586, 0.0011683602105522994, 0.001059417054126601, 0.0009676298392981589, 0.0008893409577247227, 0.0008051977784582743, 0.0007334235097790418, 0.0006716231107456377, 0.0006179653852290639, 0.0005710290060704787, 0.0004917605666208816, 0.0004290410896596709, 0.0003784324518707672, 0.0003369134731231646, 0.0003023646264019063, 0.00027069231466669743, 0.00024396921907782087, 0.00022119483530078877, 0.00020161207743821396, 0.00018463902593139988, 0.00010660491484033421, null, null, null, null], "ZhaoEtAl2016Asc": [0.006652643703849884, 0.00933691428695169, 0.010683623197886552, 0.010653581925128785, 0.010626762983119844, 0.010182300549866954, 0.009788210366981026, 0.009332439198582097, 0.008895726670082607, 0.008436389693815428, 0.008025500226806257, 0.00760385505598291, 0.007224484181702804, 0.006459286956499893, 0.005831599460772491, 0.005271038444233041, 0.004767840697123857, 0.004342616173694438, 0.003951047311475929, 0.0036154297336628343, 0.0033189230910476296, 0.0030552890537736276, 0.0028245630132836532, 0.002615632112654491, 0.0024308348431177603, 0.0022646013914719406, 0.0021144051709884753, 0.001979713410702082, 0.0016949644279525998, 0.0014709490655206456, 0.0012918009424978743, 0.0011454713465252004, 0.0010240373500928453, 0.0009221387543874004, 0.0008363947229038237, 0.0007628812028446562, 0.0006999059138593173, 0.0006449850451571844, 0.0005553921182956216, 0.0004845381841007, 0.00042779247154285584, 0.0003815622966546975, 0.0003430404172806951, 0.00031064982505038064, 0.00028302100112226943, 0.00025923135824873326, 0.00023857566672248932, 0.00022050665241258886, 0.0001184170263161181, 8.047986081333955e-05, 6.792385151902381e-05, null, null], "BindiEtAl2017Rjb": [0.001145797090770159, 0.0014569999136623067, 0.0017351770393303613, 0.0018439457511979112, 0.00192273626488113, 0.001992822070730299, 0.0020364970948506733, 0.002060839332578201, 0.002063778817899237, 0.0020650247728201863, 0.002050117199376207, 0.0020453970372349534, 0.0020398745957483037, 0.0020095426232569114, 0.0019399094289102201, 0.0018512470220382897, 0.0017737496828135126, 0.0017147220348148438, 0.0016583141269030787, 0.001603989262061546, 0.0015450483106536543, 0.0014903691342615126, 0.0014299766474929782, 0.0013733950936445365, 0.0013270764155174843, 0.0012757570722688144, 0.0012242457935411266, 0.0011752164627174422, 0.0010708253983604706, 0.0009688520284250278, 0.0008831935835979037, 0.0008053530548408617, 0.0007427089661531805, 0.0006786397804719412, 0.0006230769293626569, 0.0005755949689797715, 0.0005354996256101749, 0.0004965047075122165, 0.0004387381171676822, 0.00038283873930974925, 0.0003410178109052079, 0.0002981896414632738, 0.0002651413998463977, 0.00023864983221616858, 0.00021335376000918143, 0.0001952030819502361, 0.00017986159072440656, 0.00016130390136306997, 7.676231489689265e-05, null, null, null, null]}}, {"ylabel": "Sa (g)", "magnitude": 6.0, "distance": 5.0, "row": 2, "column": 0, "yvalues": {"AkkarBommer2010": [0.39341174472701984, 0.465466141781221, 0.5251581134508364, 0.5417214214650246, 0.557343425982045, 0.5721507143655009, 0.5862445590526267, 0.5997074044510506, 0.6003349623140221, 0.6009015113214661, 0.6014151757789732, 0.6018826483931856, 0.6023095004059724, 0.5836363577486713, 0.567507193012433, 0.5529259795052814, 0.5395870280172632, 0.5277463445967259, 0.5046019920010025, 0.4837911246966559, 0.4569666656635913, 0.4257518921185862, 0.39815060134149116, 0.37148607650053606, 0.3477620316617146, 0.3282951110188508, 0.3123889137286514, 0.29793403358209286, 0.28464989425589604, 0.26845719596727813, 0.2617597229221696, 0.2531276901590436, 0.23527834925297034, 0.21416848986198134, 0.1920801940709772, 0.17544563122566964, 0.15859997546786758, 0.14543893296798163, 0.12535803951151675, 0.11154446777484782, 0.09742795847333792, 0.08629995640284431, 0.07805793953539333, 0.0692829861575067, 0.06101720302569377, 0.05456765415464861, 0.04976917618492515, 0.04616143188775756, 0.02342157088908807, null, null, null, null], "CauzziFaccioli2008": [0.22468700316996323, 0.28142598434517246, 0.33017534223571554, 0.3156724511949993, 0.3029893167752275, 0.2917724529318285, 0.2817578148996039, 0.272743623697054, 0.2594447374659469, 0.24754359833616096, 0.2368233449903413, 0.22711046721854952, 0.21826439488348373, 0.20467860487231704, 0.19301550867361014, 0.18604765920375657, 0.18282692820149288, 0.17987863483280797, 0.1717457622962473, 0.16444135181908254, 0.15722418067026742, 0.15011742425543795, 0.14367245007859972, 0.13886656916172593, 0.13443409071796367, 0.12900616828048822, 0.12278061996018028, 0.11709171794357501, 0.10736654149567272, 0.09850769722173339, 0.09536948829110642, 0.08948929189365169, 0.08398391981097703, 0.08032587698247141, 0.07578038343334494, 0.07226716581458427, 0.06810585882088525, 0.06524927801090628, 0.05847513245637149, 0.054439905889846506, 0.04933564128206889, 0.045152800025238415, 0.04142929177186437, 0.03828669131807611, 0.03494138359667151, 0.03132240167810062, 0.029137742252485024, 0.026715834959532694, 0.01288304596750064, 0.007929779798716197, 0.005634469706344331, 0.002828291531409119, 0.0014960008369683429], "ChiouYoungs2008": [0.4570367473532422, 0.594972615347545, 0.6988443491564109, 0.7153044055804514, 0.7306873052687447, 0.7451417906399218, 0.7587857061241771, 0.7717141944184618, 0.761332550159165, 0.7517684133141074, 0.7429076393796408, 0.7346568884185907, 0.7269390169585687, 0.6956661842135579, 0.668392541239509, 0.6396553140865179, 0.609860572608071, 0.5832929479943825, 0.5532843520638574, 0.5263487194254265, 0.5019945900296156, 0.4798317145583946, 0.4595462140096134, 0.4382149706129569, 0.41863958473153995, 0.4005989049113511, 0.38390816509495834, 0.36841177557509147, 0.33317902194299986, 0.30334107584635883, 0.2777131560667158, 0.25544095482319473, 0.23589208762146202, 0.21846269617573782, 0.2029899707628103, 0.1891644944182818, 0.1767399302417451, 0.16551752617322119, 0.1450778587496674, 0.12834275597529937, 0.11443123883756305, 0.10271778333204072, 0.09274629601542131, 0.08299264732069804, 0.07470057361108726, 0.06758857506635954, 0.06144072855940619, 0.05608901349138917, 0.02574856028325153, 0.014692999762022865, 0.009530033757591655, 0.003898077260105507, 0.0018303519501235122], "ZhaoEtAl2006Asc": [0.362130872588151, 0.4748978177169293, 0.5745671066241164, 0.5735395039555576, 0.5727431600176193, 0.5721197800056596, 0.5716282867795984, 0.5712389942422469, 0.5528664187726605, 0.5366086145633421, 0.5220806834419177, 0.5089885880324986, 0.497103518117469, 0.4720102851570156, 0.45077050796756246, 0.42718603404088223, 0.4017134619312972, 0.379274229681827, 0.3623905849725995, 0.3479478845547956, 0.335549765804445, 0.3248878671390286, 0.31571961045610214, 0.3007906906759459, 0.28808731536210996, 0.27733116814088943, 0.2683054904741738, 0.26084387189588315, 0.23501493917439512, 0.22103915294421303, 0.20806280543369038, 0.19675664127701, 0.18408728639275104, 0.17305756009798845, 0.16203685199323675, 0.15236228475662478, 0.141208358617549, 0.1313748638036954, 0.11632827124402174, 0.10399384840444235, 0.09429190795931425, 0.08659804625699935, 0.07999598830497495, 0.07283071274599366, 0.06672303931820556, 0.061462358095062807, 0.0568896463176082, 0.05288272229549772, 0.028209879028960858, 0.018374909873743003, 0.01385823740327291, null, null], "AkkarEtAlRjb2014": [0.40359243678665757, 0.5288851214319129, 0.6105600150298026, 0.6314657008134646, 0.6507547690772097, 0.6646355535064306, 0.672893634173656, 0.6764944862679467, 0.6652990135071041, 0.6510001482700201, 0.6339158322341899, 0.6132349722146767, 0.5898189288823608, 0.5496104145182866, 0.5118414165114973, 0.4836708177875764, 0.44639669279520156, 0.4171004662022974, 0.38298298561322786, 0.3552274590023888, 0.33734879128593315, 0.31812333310296376, 0.3017737175826799, 0.28537785819293615, 0.26938047181807717, 0.256448214873449, 0.24599790781224337, 0.23627976251874505, 0.20722693154050853, 0.1811173942228387, 0.15843340557030236, 0.14181622100004154, 0.12623135631048105, 0.11539786555889012, 0.10588172015820718, 0.09650241501180608, 0.08901504970706008, 0.08289254335101304, 0.07155321101784351, 0.06249392389589151, 0.05522201554305516, 0.04952955073587797, 0.04576978734410221, 0.041631127180197756, 0.0376430625445904, 0.034813410705652324, 0.03202131231495641, 0.029324171225718378, 0.014389777341296046, null, null, null, null], "BindiEtAl2014Rjb": [0.4429079569426743, 0.5200967164801048, 0.5653370009701291, 0.5896215410369808, 0.6125321303262172, 0.6342428340589487, 0.6548944467040679, 0.6746027231976105, 0.6689412597148059, 0.663599420843845, 0.6585426017709447, 0.6537415720996307, 0.6491714116363477, 0.6256203324398422, 0.6048709828781229, 0.5863957526400392, 0.5622962430619372, 0.5407567173468384, 0.5195244496122435, 0.5003883157245949, 0.4830354075209033, 0.458090556962079, 0.4356361263903941, 0.41738341409811114, 0.40065652028662563, 0.3852679448447754, 0.3761587133476887, 0.3677051808506355, 0.3343485732295519, 0.3065741230555406, 0.27702410582975046, 0.2522158141743318, 0.2259745834056194, 0.20391409759292792, 0.18383656567587675, 0.16680708202977068, 0.15844821787517063, 0.15092280538180863, 0.12835908700953796, 0.11066446765338164, 0.09650865277319426, 0.08469759206243209, 0.07504730582512747, 0.06741504371902574, 0.060965665197469134, 0.0554603730581625, 0.050916241376623705, 0.04695180477161546, 0.01972534275343601, null, null, null, null], "CauzziEtAl2014": [0.4689620434847378, 0.5651523905245242, 0.6592221797882395, 0.7007481334627412, 0.7256328770614303, 0.7290642648685175, 0.7024692726719148, 0.6247193135308775, 0.6300129750788233, 0.62083718119347, 0.5960687778124206, 0.5544562048308069, 0.4943045336346873, 0.4529863062849942, 0.40493734754713756, 0.3699198432055491, 0.35081217739417575, 0.3304664896968422, 0.3124531451073013, 0.29530271761412896, 0.2799429147146623, 0.2663059597618229, 0.25339294889987385, 0.24219952105257023, 0.23173452262913039, 0.2204051692525882, 0.20856379707888426, 0.1977469754257828, 0.17462994060925055, 0.15380163229831628, 0.14619069294551257, 0.1362166392546379, 0.12707684295902252, 0.11756748493381557, 0.11040646871893797, 0.10636620029396715, 0.10183979467653757, 0.097567807461854, 0.08765844705118246, 0.08039162289436955, 0.07251332888118037, 0.06627682485511796, 0.05910880936399635, 0.05317444129332077, 0.04750517359844436, 0.04206174981755027, 0.03801315479487512, 0.034562242829587045, 0.01637756488369047, 0.009609350429626497, 0.006259288539397668, 0.003082982538510339, 0.0017342852335823276], "DerrasEtAl2014": [0.3578455099464868, 0.6335513505950777, 0.8992134719851105, 0.9550029291437286, 0.9999058833469939, 1.0340441344667688, 0.9949384914141229, 1.0616741335731055, 1.0505386855163177, 1.0259749846081632, 0.9949068621998661, 0.9646253018166543, 0.9431485733047387, 0.806867297140446, 0.6681376472823656, 0.6015991604383051, 0.5350528088215334, 0.5490594772723986, 0.4506516795025519, 0.429117219893646, 0.44404726766245844, 0.415701658349496, 0.39308429012792795, 0.3491165648797956, 0.3274323006598771, 0.3107793290976289, 0.3153046269667332, 0.28575776342821174, 0.25328002172310415, 0.2767385515603093, 0.2669072587773796, 0.2085133111534127, 0.15945100792228287, 0.14524365754559276, 0.13440855208020533, 0.12315986892264244, 0.11520443489592914, 0.1114013869555737, 0.09641847833227125, 0.09091429002502865, 0.08678143395112083, 0.0728986903054527, 0.07066513405366709, 0.07569718031407532, 0.061856086799907346, 0.05354152296577286, 0.04680242484246816, 0.04241562951987328, 0.021730348513929975, null, null, null, null], "AbrahamsonEtAl2014": [0.3341007411984818, 0.4347073187633782, 0.5231595400139173, 0.5479863276379542, 0.5701901803766645, 0.5898693987000165, 0.598461697407879, 0.6044323851676171, 0.6038399665230804, 0.6015418892928956, 0.5977177750964724, 0.5925248079148336, 0.5861014457495167, 0.555977481367494, 0.5263286525862562, 0.49491100183682696, 0.462977451775487, 0.4331247526849027, 0.40713708705354784, 0.3834586610311567, 0.36178054709371854, 0.34184885789337344, 0.3234526987249669, 0.3085253790857979, 0.2948663168120942, 0.28231896057504446, 0.2707517106351156, 0.26005311056425057, 0.23202242762784547, 0.20907074207888307, 0.18996107752686944, 0.17382396207839296, 0.1600311627478695, 0.14765515877921961, 0.1369028756579318, 0.12748348144783866, 0.11917071339986908, 0.11178604796678285, 0.0985965871593676, 0.08791921464087951, 0.07912111576508482, 0.0717622738860447, 0.06552790190246593, 0.05983768770107337, 0.05494344070360125, 0.050696239399938454, 0.046981322568955174, 0.043708951942057414, 0.021978765549970445, 0.013085937208832332, 0.009083878854131052, 0.0039077247209214905, 0.002154458782243084], "BooreEtAl2014": [0.4553322688170026, 0.5719991399161898, 0.6343777918651977, 0.6555230170314686, 0.6801785105488155, 0.7022588619942544, 0.7216394440626553, 0.738182159696527, 0.7502222219485636, 0.7571704012557937, 0.7595278783236736, 0.7587261856018159, 0.7527486281372638, 0.7320466648694209, 0.6800641429531973, 0.6205754157978794, 0.5679190803681526, 0.5261471627182135, 0.4920781345588815, 0.45980443294784484, 0.4334870672560489, 0.4131706585803333, 0.38995521462002625, 0.37202292372749346, 0.3549158472235573, 0.33875016475215847, 0.3243554637497383, 0.30979056993497567, 0.27965353584346636, 0.25358613426844484, 0.23166220248517136, 0.2133180599880756, 0.19629864272669653, 0.18131261567415302, 0.16780286747620676, 0.1553430267541729, 0.14394174964860515, 0.13417386301929496, 0.11616621499959742, 0.10044157251830557, 0.0874753847814466, 0.07680433436308208, 0.06790804987023641, 0.06045682534790049, 0.05434273823775009, 0.049131261660877064, 0.04461276383976032, 0.04104608113319601, 0.02221250733468887, 0.013630328969832151, 0.009000711729880487, 0.0034573274548905294, 0.0018834927783707859], "ChiouYoungs2014": [0.39085486544240206, 0.5173755080549556, 0.5830537679088464, 0.5967497381580049, 0.6098471515041288, 0.614782159012016, 0.6194698826603382, 0.6239378423429071, 0.6212510985721825, 0.618729515006731, 0.6106287517090347, 0.6030155720580498, 0.5958384554090802, 0.5725271657761142, 0.5518327697432421, 0.5308661809628703, 0.5097372983170616, 0.4906487858005501, 0.46926804194880084, 0.4498694156008386, 0.4321572733668665, 0.41588291505043595, 0.4008313402538153, 0.3850534682327409, 0.3704443944654689, 0.35685085134640504, 0.344140723946639, 0.3321989872966727, 0.3012315033646338, 0.2749110104329385, 0.2521404420960717, 0.23213541746934072, 0.21432264041063784, 0.19707909071190208, 0.18191633047194986, 0.1684818798546349, 0.15649957011762244, 0.145749871982351, 0.12663004064426392, 0.11105437361217249, 0.0981673708033278, 0.08736598366230099, 0.07821276262802856, 0.07032217597987993, 0.0635158706357487, 0.0576035665128632, 0.052435798528973725, 0.047893599306401004, 0.022277211353865685, 0.012135822115977904, 0.007352519904227656, 0.0028984220403658377, 0.0014576734583901113], "CampbellBozorgnia2014": [0.4706442185244327, 0.5384605228886384, 0.6142655878378581, 0.622557959272334, 0.6297559256831817, 0.6359945273829173, 0.6413832841336524, 0.6460125552902266, 0.6433807499037646, 0.6400613351014535, 0.6350594906219158, 0.6245555274582651, 0.6137739580998595, 0.6005427351278054, 0.5849235123330964, 0.5706011146690221, 0.558121462741769, 0.5447550365265356, 0.5147101270621551, 0.48719112989235713, 0.4618776516948241, 0.43850386626872173, 0.4168470112674044, 0.39794476578409704, 0.3804260571351193, 0.3641413152155946, 0.34896237764775395, 0.3347787144174979, 0.3134499030159191, 0.2947837222752869, 0.27826806123954473, 0.2635190861016211, 0.2502426796527346, 0.22718955051818032, 0.20762401164706698, 0.1908481184329563, 0.17633345889008567, 0.16367351418814857, 0.1408864740018161, 0.12287058742309817, 0.10834310204320555, 0.09643168824279412, 0.08652490452119613, 0.07844605619772872, 0.0715309272412336, 0.06555940457504236, 0.060361902430706056, 0.055805923391354685, 0.02896326069533106, 0.017215680678736092, 0.011378406103408166, 0.00419602730935475, 0.0027718434372799223], "KothaEtAl2016Italy": [0.38628645813969603, 0.4429019657690719, 0.49216375132518, 0.5035624305646743, 0.5141100108630469, 0.5239307343209804, 0.5331229019376338, 0.5417657070765978, 0.5476326591396662, 0.5528189106653959, 0.5573991156623813, 0.5614365428136293, 0.564985216825824, 0.557906233416788, 0.5562676675745096, 0.5477735864108633, 0.5219916766425806, 0.5046144716140059, 0.48480863390554774, 0.46693381582286736, 0.4507043841622041, 0.4358898541712449, 0.42230200004544205, 0.4040464887247122, 0.3873740911183463, 0.3720846237428547, 0.3580105092111447, 0.34501037224749526, 0.3034009480691153, 0.26980851585298987, 0.2421981962340197, 0.21915849275166027, 0.19968188732703737, 0.18170123345054165, 0.16635919129897786, 0.15313800820483287, 0.14164419368879577, 0.13157383961125277, 0.1164127579606627, 0.10410043290039597, 0.09392749555530748, 0.08539852931509992, 0.07815774838981907, 0.07060232854005422, 0.06416339878901058, 0.05862457292185172, 0.053820371499962404, 0.049622338991474904, 0.02230074949618952, null, null, null, null], "KothaEtAl2016Other": [0.41102959207054857, 0.46944097542604296, 0.5199793033225516, 0.5385080376267003, 0.5559000981648389, 0.5723079600033131, 0.5878538621719638, 0.6026374885261961, 0.6083272197862996, 0.613265562426353, 0.6175384908959936, 0.6212186584706998, 0.6243679300473165, 0.6235593863074825, 0.6279335067995518, 0.6150649111493001, 0.5863897611581034, 0.5689577220564092, 0.546555845547343, 0.5263473785529164, 0.5080068291944666, 0.49127171170031164, 0.4759277889152778, 0.457808462937432, 0.44117864202353085, 0.42585609360867493, 0.4116875783297181, 0.398543257372639, 0.3543236447851327, 0.3182429337062305, 0.28829813416328254, 0.2630859252510363, 0.2415953861498034, 0.21840382872288255, 0.1987362417447271, 0.18188479245152261, 0.16731449361133124, 0.15461430573250282, 0.13419724133812264, 0.11795716110219252, 0.10478743285865859, 0.09393175995058303, 0.08485758072470413, 0.07538654912181722, 0.06744623725203784, 0.060720400648482754, 0.054970938677841606, 0.05001572428863054, 0.023964670773806422, null, null, null, null], "KothaEtAl2016Turkey": [0.30281106146555115, 0.3589418347969162, 0.40825613814898054, 0.42825109383320475, 0.44727431691729336, 0.4654444928521343, 0.48285805204236387, 0.4995946068909324, 0.5037278117615304, 0.507257574773753, 0.510254677178171, 0.5127787881385821, 0.5148805955552794, 0.5154833085379155, 0.5048423804224478, 0.49155003735003466, 0.4669584244346901, 0.4464334877289457, 0.4236965621982903, 0.40341804895645506, 0.38520971582218966, 0.36876191648125334, 0.35382453704883354, 0.33415170218500256, 0.31641165179518765, 0.30033914756838603, 0.2857148366618907, 0.272355802869789, 0.2353503455465881, 0.2059691021025032, 0.18218662355345117, 0.16261942659613005, 0.14629390363524047, 0.13066350025783297, 0.11755445449321335, 0.10643945266403784, 0.09692385792071509, 0.08870728464045301, 0.0786567496426989, 0.07049225317075429, 0.06374327226538608, 0.05808159449284689, 0.05327173330751973, 0.047898364426652025, 0.04333996760316594, 0.039435661775465994, 0.03606295033247051, 0.033127134507535926, 0.017078391242027927, null, null, null, null], "ZhaoEtAl2016Asc": [1.000561562550177, 1.3791817984554462, 1.5758536111075336, 1.5886169612330605, 1.5989780525881048, 1.5721951823601177, 1.5481847354975713, 1.5148539178212908, 1.4781637914665817, 1.4411993514149792, 1.4075734210918722, 1.3661710835191498, 1.328201803830928, 1.2331339245402655, 1.1521914161348628, 1.0768711392532855, 1.0065386267126382, 0.9451475250058288, 0.8856808485255816, 0.8331977520839633, 0.7849106472087362, 0.7403012240850423, 0.7003125203837467, 0.6620647841496938, 0.6275296189198969, 0.5955164226768467, 0.5657526124995877, 0.5385975269092372, 0.476862870974896, 0.42669538970152737, 0.38249261359316167, 0.3456623093360632, 0.3128937836893941, 0.2850631386300658, 0.2600018364785754, 0.23840024311180605, 0.21875628170293415, 0.20162425552706975, 0.17223917086455892, 0.14918346529512663, 0.13018013242010276, 0.1143050806967054, 0.10128052930006133, 0.09056214425706784, 0.0815334358276883, 0.07385031460371469, 0.06725292922375463, 0.06154191953934686, 0.030287417471420337, 0.01873062676108875, 0.013826565211325869, null, null], "BindiEtAl2017Rjb": [0.4989222905620296, 0.6290173924860664, 0.6592504189862736, 0.6752309387515111, 0.660783167529934, 0.6586226204326945, 0.6441974852175932, 0.6303322408608455, 0.6257239763975022, 0.6163229035040572, 0.6073115764306676, 0.590811510353669, 0.5765063056530032, 0.5494414382788374, 0.5221001857228406, 0.49492308319867667, 0.4714682912367106, 0.4454098856644052, 0.4223408484553449, 0.4154856834629138, 0.403016905733858, 0.39106111911663355, 0.3750443856116561, 0.3593231669263037, 0.34589665702332195, 0.32736025633820803, 0.30847220855601304, 0.29271773339577706, 0.2598386858967204, 0.2359467868379968, 0.21915308900925284, 0.20836578366885541, 0.196506176124266, 0.18337402278348836, 0.17211310013657025, 0.16061649323459304, 0.15137600240965293, 0.14100457469938746, 0.12567876429090274, 0.11118465492576848, 0.1005437356288447, 0.08811779254039735, 0.0783026480586751, 0.07133937274934378, 0.06234898797123198, 0.056119911592059084, 0.050352316748021, 0.046384643782956834, 0.021248994258826703, null, null, null, null]}}, {"ylabel": "Sa (g)", "magnitude": 6.0, "distance": 20.0, "row": 2, "column": 1, "yvalues": {"AkkarBommer2010": [0.1151448882264993, 0.14300538925223086, 0.1667701887609564, 0.1747736819974299, 0.18241726001556421, 0.18974531836692599, 0.19679382532262032, 0.2035924033033493, 0.20503863861999813, 0.2064046980379727, 0.20769936039693238, 0.20893001944047832, 0.2101029624011488, 0.19734924044991192, 0.18626156678586156, 0.1766795377728569, 0.16834230360164745, 0.16089502138703388, 0.1526640680769388, 0.14530666623068517, 0.13755582291829513, 0.12955945657845072, 0.12239548798179956, 0.11532407206630993, 0.10896018967751428, 0.10418177416806755, 0.10072044548551698, 0.09750093472159642, 0.08926246161237482, 0.08012167733785518, 0.07180016017903842, 0.0632648738087698, 0.057612899395467654, 0.053489191848783056, 0.04966910672132684, 0.04597639735321584, 0.0425855768721542, 0.03968705036955643, 0.03502727203780569, 0.03137543018755378, 0.027566338036544253, 0.025026631139171866, 0.02255402695757319, 0.020999120864817224, 0.01994286400164052, 0.019090712623478685, 0.017668337220119665, 0.016358968019526625, 0.008931652893874556, null, null, null, null], "CauzziFaccioli2008": [0.12571715379725784, 0.15743188728443128, 0.18467608132366325, 0.17816108166826078, 0.17241424949074363, 0.16729151566266096, 0.16268440146467905, 0.15850939707282283, 0.1517628991502836, 0.14568731883695404, 0.1401820450072459, 0.135166097380584, 0.13057349908853513, 0.12313090516226634, 0.11670739576046184, 0.11289787822153165, 0.11119370081384516, 0.10963027993249892, 0.10479652994314344, 0.10045022606552602, 0.09632836828887881, 0.09240847353698893, 0.08883723997828231, 0.08599885708196181, 0.08337703917587273, 0.08016850989602751, 0.07648576691276665, 0.0731124396403093, 0.06717843972992778, 0.06195115588324984, 0.060028110977748454, 0.05642100297987453, 0.05294367156691044, 0.05064136377978277, 0.047644256535809386, 0.04533724898972582, 0.04277443228682007, 0.0410226930274132, 0.03680500159813793, 0.03426707582067453, 0.031166849225161584, 0.028469307960389247, 0.026069652991832754, 0.02405814493551882, 0.02196984706281123, 0.019686179704390714, 0.018306204228798414, 0.01679568321092285, 0.008385824327191732, 0.005289537398001095, 0.003845504388360493, 0.0020293099804095, 0.0010828257415140348], "ChiouYoungs2008": [0.08503121362094021, 0.10824952973232438, 0.1264787782156186, 0.13018685023593599, 0.13365773167980835, 0.13692348748327668, 0.14000967592286986, 0.1429370347153416, 0.14208753835918467, 0.14128081084024816, 0.14051148272744263, 0.1397750652548991, 0.13906777042491694, 0.1347411581847851, 0.13085390083947557, 0.12642850472010672, 0.12157687061941076, 0.11717072517082935, 0.11188978900790243, 0.10709108524861653, 0.10270278291591738, 0.09866705823949609, 0.09493681390424207, 0.09089900749631556, 0.0871695276611597, 0.08371133664113178, 0.08049328863366327, 0.07748899436252094, 0.07058083855775088, 0.06467497550609642, 0.0595580874947827, 0.055075257612468155, 0.05111103246038763, 0.047578006720804596, 0.0444209389538991, 0.04158245336011841, 0.039016610578515964, 0.03668614058875301, 0.032453370588162805, 0.028951130979192472, 0.02601172004678441, 0.023514815438017245, 0.021371831289352567, 0.019290844289049643, 0.01750575514185655, 0.015961705231626353, 0.014616230457054147, 0.01343600022342615, 0.006667100755609521, 0.003928306616391397, 0.0025550346529649146, 0.0010460967268647548, 0.0004914034955548868], "ZhaoEtAl2006Asc": [0.12562905141564706, 0.17257123237255304, 0.21572769531865876, 0.21471943672753982, 0.21382132113044783, 0.21301197678100064, 0.21227556620215526, 0.2116000575424508, 0.20468510460398123, 0.19846475367249014, 0.1928269298784749, 0.18768352528796955, 0.18296418018823013, 0.1716611681319517, 0.16200693566713087, 0.15183244815246705, 0.14135121020293206, 0.13221753569506303, 0.12520927112331665, 0.1190472302838578, 0.11359034890347951, 0.10872736305566298, 0.10436934157673129, 0.09903457415433081, 0.09429931175921114, 0.09008148375630004, 0.08631365561761957, 0.08294001224789792, 0.07419792339264394, 0.06775897235358577, 0.06265140269142082, 0.0582596357347262, 0.05409837430323493, 0.05048094819516705, 0.047432896117500824, 0.0447342072667078, 0.04162505876511933, 0.038874583729459004, 0.033989855678847825, 0.030057052976698667, 0.027146519685454694, 0.024978503062997637, 0.023115577985175474, 0.021081116021752614, 0.0193366664882703, 0.017826799257420648, 0.01650908686304815, 0.015350546569951795, 0.008342484027518807, 0.005734223811767027, 0.004644046142317018, null, null], "AkkarEtAlRjb2014": [0.09370844562985163, 0.11919858890546986, 0.13438399920327876, 0.13876729213188932, 0.1434863027875684, 0.14707011183151217, 0.14957593366116712, 0.15138639844122778, 0.15088196408373936, 0.1499609726951094, 0.14814349192359286, 0.14540866082381132, 0.1419914421542283, 0.1358658973721359, 0.1296442920082939, 0.12455309450151802, 0.11757365142124522, 0.11250356646878709, 0.1065603827943865, 0.10145752672992298, 0.0978918548186267, 0.09381173306110291, 0.0900960712468478, 0.08609111635262047, 0.08214575498568963, 0.07877672008367388, 0.0761863107527817, 0.07375327803978979, 0.06629816531148473, 0.059598956455825115, 0.05370537299437039, 0.04909497948458061, 0.044880902411907876, 0.04162981584546855, 0.03873109827723154, 0.03581839488931773, 0.033443085262139675, 0.03139282373340156, 0.027664656316614814, 0.024603104520046118, 0.02214710403068354, 0.02005964992732986, 0.01838047280728205, 0.01686855657946835, 0.015408710549903008, 0.01435651242626538, 0.013296606808116365, 0.012205526079884847, 0.006161930175387729, null, null, null, null], "BindiEtAl2014Rjb": [0.09211558234189815, 0.11655578772794704, 0.14040170204850597, 0.14721028821035986, 0.15370505644459398, 0.15992468000739757, 0.1659005108979753, 0.1716583830998348, 0.16993674457531824, 0.16832628906031283, 0.16681408473743892, 0.16538931063883847, 0.16404282256262384, 0.15775135497559511, 0.15221436148548123, 0.1472891551137933, 0.13997207961776958, 0.1334871720924398, 0.12731591869415668, 0.12177523855170792, 0.11676916459975133, 0.11185096127789385, 0.10737695306722812, 0.10252408635502425, 0.09809613821851898, 0.0940392789584843, 0.09056729670357577, 0.08735314474234097, 0.07882944358835631, 0.07177201641755254, 0.06474391830137642, 0.058851769114777755, 0.05347847964151514, 0.04889722029438114, 0.045101169782561186, 0.041790061848168636, 0.039108239907135696, 0.03672335127551281, 0.032185276323002006, 0.028532641818426196, 0.025538863182994045, 0.022942549103316497, 0.020761891727092942, 0.01903554448074811, 0.017544968529057854, 0.016246764172221814, 0.014828779990726114, 0.013598019610345865, 0.007387711756269478, null, null, null, null], "CauzziEtAl2014": [0.1653604806484511, 0.20544351358174043, 0.24141160377404178, 0.25521977820946967, 0.26288839618238985, 0.2627763874204541, 0.25192324396358984, 0.222942405235414, 0.22426166189083113, 0.22044132249724874, 0.2111209141942158, 0.19589788780615794, 0.17421725217344095, 0.15760609962698968, 0.13908360033189157, 0.12566395250498086, 0.11811117718068195, 0.1102924213388786, 0.10343617051428944, 0.09699348607269911, 0.09087428283785462, 0.08506710146235469, 0.07961894458986736, 0.07562782533976624, 0.07191622636529955, 0.06811264303410813, 0.06430382778277859, 0.06082896551375776, 0.05415701829126077, 0.04800392626893124, 0.04521886428490837, 0.04206968640150704, 0.039088709369323016, 0.036234034403902306, 0.03394828260568494, 0.03260517497471681, 0.031134494722372123, 0.029646560928488094, 0.02675658217856546, 0.024711454840372026, 0.0224422266770418, 0.0206271570171475, 0.018585565769946626, 0.016857422396515807, 0.015296014934778529, 0.013804815713944275, 0.012802927146660972, 0.011926961586260816, 0.00638789021514322, 0.004006037691822219, 0.002780503402065978, 0.0014358520780395727, 0.0007723424616492566], "DerrasEtAl2014": [0.09818815671148176, 0.1584154710192361, 0.21318519294385826, 0.2241055076891549, 0.2347706878193204, 0.2431477887962556, 0.2362608491703151, 0.25176429069276657, 0.2484861647058058, 0.24578976623068455, 0.23954205822373859, 0.23491728037249757, 0.232311500861839, 0.20565019315327132, 0.1756568412920524, 0.16318217206124827, 0.1496636872780302, 0.15389422806125327, 0.13273889698198094, 0.12991848753110113, 0.13448317815818717, 0.12756987933814765, 0.12134727863608906, 0.11062344921335508, 0.10508499953238261, 0.10055034860658651, 0.1019836282860515, 0.09394843800866137, 0.0853459025485032, 0.09227310192863242, 0.09022189398944501, 0.07292958360758896, 0.05793655650485141, 0.053919728804192095, 0.05062509103286081, 0.047074464480939375, 0.04513148504603819, 0.044828175194256394, 0.03985643783269872, 0.038191075645887175, 0.03692275393509833, 0.03199760917766491, 0.03113129669517771, 0.0332114022223803, 0.02779181301177762, 0.02473304909359682, 0.022027166954527392, 0.020115529534144413, 0.011077553027621785, null, null, null, null], "AbrahamsonEtAl2014": [0.07902704435911985, 0.10294444071633622, 0.1220116409679972, 0.12660513696140122, 0.13041020772484, 0.1335027944766831, 0.1354474552626233, 0.13679877727157894, 0.13707922534844827, 0.1369465810336734, 0.13644146699050116, 0.13559967193527048, 0.13445292424982613, 0.1285267785057493, 0.12252978340484143, 0.1159693518218971, 0.1091500312981044, 0.10269331345301684, 0.09738588036687953, 0.09248429965638624, 0.0879393616790414, 0.08371005101975515, 0.0797618421494161, 0.07648566273430522, 0.07347029952971097, 0.07068487556659711, 0.06810328888484349, 0.0657033136053527, 0.058927375455049696, 0.053351343085458594, 0.04868736865754817, 0.04473217990231663, 0.041338272668415846, 0.038241251800654893, 0.03554372022217901, 0.03317493387583138, 0.031079722514431585, 0.02921445741845815, 0.02598392956959823, 0.02334764958986177, 0.021159362511612483, 0.019316612864818977, 0.017745600277873152, 0.016320281974576627, 0.015085851749386162, 0.01400764039056638, 0.01305875600650829, 0.012218040177523537, 0.006412635824150704, 0.0040321640539237045, 0.0028083737282585267, 0.0013351852526702298, 0.0008025302915752674], "BooreEtAl2014": [0.11709030015213591, 0.14684268754292676, 0.16698802798247825, 0.17442931966909034, 0.18244199293771665, 0.18974677911485754, 0.19635624214756198, 0.202240617404258, 0.20689854001871047, 0.21013246866785437, 0.21169393181574647, 0.21226537324067885, 0.21134279702655487, 0.20656796939919997, 0.19272095101779452, 0.17651193399971313, 0.16183174648251641, 0.14993420046781356, 0.14025892251610805, 0.1311318051808992, 0.12371685025350553, 0.11784845273240166, 0.11123048916037846, 0.10618095127940398, 0.10138438472946683, 0.09671873000524393, 0.09263649153456262, 0.08864150900879407, 0.08016361226041169, 0.07288893074546289, 0.06658719830539134, 0.0611632719925836, 0.056249046005375725, 0.05188879154824023, 0.04800489715594456, 0.044444388634567504, 0.04120560782322901, 0.03839728904336748, 0.033474282836236914, 0.029274787127510287, 0.025786734979940093, 0.02291049301549933, 0.020464043987388148, 0.01840624186856007, 0.016691589553769377, 0.015226128796432535, 0.013965805308677654, 0.012940732549265359, 0.007376830943397319, 0.004790100971211845, 0.003336139588422949, 0.001510970282121883, 0.0008165083845767655], "ChiouYoungs2014": [0.0919549338333922, 0.1197573163438208, 0.1344217615394158, 0.13762083871897898, 0.14068149497578833, 0.14185479582074698, 0.14299852723479345, 0.14411585612662287, 0.14360299804037194, 0.14314383913956474, 0.1413271497419926, 0.13963143529906868, 0.13804295052377327, 0.1325865707530231, 0.1277694712392449, 0.12268830086116798, 0.11741298782243664, 0.11267892487924745, 0.10757416826392954, 0.10296047039978422, 0.09876275189911393, 0.09491842137301137, 0.09137388839856952, 0.0877691810561702, 0.08443290795634018, 0.08132950175307455, 0.07842845430739119, 0.07570330072828468, 0.06890664674804531, 0.06311024485503333, 0.05807753953574314, 0.05363945084692173, 0.04967240557746793, 0.04581945034750891, 0.04242007945046428, 0.03939842719359076, 0.03669494957699062, 0.0342622326110727, 0.030024885192596645, 0.026540172705390764, 0.023631649031202635, 0.02117393954441682, 0.01907539474892891, 0.017282798738539325, 0.015723472006546727, 0.0143581339840534, 0.013155663631790155, 0.012091082427156025, 0.006034571119398929, 0.0033801088145544852, 0.0020536369207552405, 0.0008103246812861767, 0.0004077651599476721], "CampbellBozorgnia2014": [0.11427083231676838, 0.1360201519071815, 0.16335085234168456, 0.16888365006097714, 0.17380499627264373, 0.17818962143124556, 0.18209886497452202, 0.1855838184652851, 0.18588133526267164, 0.1858146201216237, 0.1853357055990331, 0.18414819388126322, 0.18272183793693467, 0.17770029319805916, 0.17219977005583006, 0.16719115663795428, 0.16280257961951922, 0.1582912429646393, 0.15001731610586805, 0.1424032528640318, 0.13536846381276138, 0.12884571071274953, 0.122778352055933, 0.11732592509673899, 0.11226715620766611, 0.10755979892086663, 0.10316762844836881, 0.09905938240140708, 0.09093124781115419, 0.08399439853309014, 0.07800069609839133, 0.07276731427461441, 0.06815638837881124, 0.06265818731689987, 0.05790659217886348, 0.0537633333476337, 0.05012182131041137, 0.04689864378916745, 0.04090402593159035, 0.03610311734870161, 0.03218600183701169, 0.028939332209673544, 0.026211880920021583, 0.024043063857994956, 0.02216701849175439, 0.020530452510730223, 0.019092030548698114, 0.017819234191135402, 0.009598986209401765, 0.006397573282171066, 0.004384523747935069, 0.0016356682576505644, 0.0009318649289075011], "KothaEtAl2016Italy": [0.09205750098015726, 0.1192984239555641, 0.14312356461591924, 0.14808988352300873, 0.15277015779596598, 0.15720269527794675, 0.16141817844859954, 0.165441610286287, 0.165117446696281, 0.16472773681584452, 0.16428608960834098, 0.16380336842595603, 0.16328831304841293, 0.15832496568229504, 0.15177803419014557, 0.14730665120307468, 0.14351429080119138, 0.1386840504873351, 0.13268591779475442, 0.1272832100099138, 0.1223869536215887, 0.11792547196978174, 0.11384032198706051, 0.10883619962850143, 0.10426908200929735, 0.10008346790413478, 0.09623292473237566, 0.09267830307435086, 0.08205068659241994, 0.07341654997808571, 0.06627880876968134, 0.06029068931278107, 0.055203359974168746, 0.05133205749724218, 0.047940382748150615, 0.04494583347767321, 0.04228366309477515, 0.03990236761123451, 0.03511577269997833, 0.031242929634501752, 0.028054005116437856, 0.02538899411843508, 0.02313332590093715, 0.021021235741666446, 0.019212846655088864, 0.01765027769094935, 0.016289107492951233, 0.015094735356583965, 0.007406167037677981, null, null, null, null], "KothaEtAl2016Other": [0.10823446702207068, 0.1383279653440331, 0.1643250423610679, 0.17228556898808278, 0.1798842846148625, 0.1871657205590485, 0.19416597538658883, 0.2009147932835305, 0.20076231482765516, 0.20051679501552672, 0.2001961974924049, 0.19981493325474778, 0.19938465812293366, 0.19507410574333334, 0.189418851755034, 0.1825841015694192, 0.17749405150018085, 0.17237495023296678, 0.16477117732170132, 0.15792919372659597, 0.151734478499498, 0.14609487367168097, 0.14093531231645196, 0.13512802828349987, 0.12981338627721872, 0.12492995069810983, 0.12042619338300527, 0.11625856264776119, 0.10344521158037288, 0.09298475162957927, 0.08429876157623636, 0.07698189504644519, 0.07074207679291614, 0.06533806458694019, 0.060635211376582926, 0.05650909738118973, 0.05286270789343586, 0.04961933877681353, 0.04228900059483685, 0.036542963604496735, 0.03194639848958275, 0.028205681243280163, 0.025116359036839543, 0.022445696248409037, 0.020195847449528903, 0.01828127489099275, 0.016637334603170056, 0.015214400150191444, 0.007958761869599795, null, null, null, null], "KothaEtAl2016Turkey": [0.0757895266565887, 0.1009039434814723, 0.12339040290603598, 0.1312448700467836, 0.13884679773179925, 0.14622422604732596, 0.15340018770043642, 0.16039389350137045, 0.16003541726336115, 0.15961514066904722, 0.15914640839556915, 0.15863982770189508, 0.15810389490121762, 0.15596451180794804, 0.14736817971956997, 0.14149012599664634, 0.13705861937180452, 0.13106985045524736, 0.12376033437559684, 0.11726194840394931, 0.11144469053849018, 0.10620513950813988, 0.10145996191090241, 0.09580493450345817, 0.0907060725173941, 0.086087000481834, 0.08188456250297863, 0.07804609892148039, 0.06750164687436838, 0.059124346441103225, 0.05233923882055499, 0.04675345091504594, 0.04209040024051681, 0.03838562664451493, 0.03520106727027834, 0.032439299937356864, 0.030025245840500023, 0.027900197037571114, 0.024403821152708016, 0.021592947617030362, 0.019291804699281302, 0.017378830200713728, 0.015767500897853275, 0.014261325809979141, 0.012977556789568976, 0.01187301410606756, 0.010914701220131561, 0.01007702052495193, 0.0056718012233125965, null, null, null, null], "ZhaoEtAl2016Asc": [0.30303534820150146, 0.41952477591719256, 0.4654895182938258, 0.4606504332946973, 0.45625123911459353, 0.43880993701718224, 0.4233058974645208, 0.4052035573565725, 0.3870407557040069, 0.3685393762170964, 0.351948819941813, 0.334667407280164, 0.31907742316609705, 0.2866884990503669, 0.2599874584902877, 0.23636971589884165, 0.2153186781861184, 0.19740448619686535, 0.18115372307809285, 0.16710578823337177, 0.154688202781728, 0.14363786930695266, 0.1338838542404082, 0.1251237432505267, 0.11730440305444773, 0.11026973379089726, 0.10391212401361032, 0.09815837083058643, 0.08596888888106613, 0.07616699761953621, 0.06824228102236604, 0.06164254610597574, 0.05614087198132083, 0.05144027416445191, 0.04743718555826385, 0.04394930854283681, 0.04091759771875445, 0.038235589164374216, 0.033767593375059836, 0.030147766382049527, 0.027168005488499007, 0.024678315414946105, 0.022567146593227255, 0.020731503960302423, 0.019143938461851227, 0.017759081513178933, 0.01654179881303797, 0.01546448831686597, 0.00890540871223186, 0.0061520496617152925, 0.004992587832352758, null, null], "BindiEtAl2017Rjb": [0.13790885863544722, 0.17752603542421988, 0.19106202409170983, 0.19606049111493687, 0.19603238574297902, 0.19534811867569954, 0.19341725565667342, 0.19251210250603037, 0.19046278296955985, 0.18683667459412087, 0.18382122474401918, 0.17753430206036513, 0.17218051205716983, 0.1637727736094242, 0.15533136613157394, 0.14546292978429615, 0.13766935732967558, 0.13049751368007, 0.12518556105721904, 0.12024014457396247, 0.11536679204084171, 0.11077363087112932, 0.1057996087518151, 0.10099243129431186, 0.09673166696689181, 0.0926824051303062, 0.08844178684088197, 0.08443004069470265, 0.07396292698022554, 0.06739840194011767, 0.0628477483838101, 0.058217595113669134, 0.05387486512805028, 0.04980357158233601, 0.04652065204955931, 0.04409383325343397, 0.041585611111908366, 0.03883589223375461, 0.034461050518387756, 0.0303735860995392, 0.027627292491360946, 0.02449657426965499, 0.022053477275698674, 0.020065375652835796, 0.01802655376621279, 0.016704099780791046, 0.01540462068209423, 0.01442352576035966, 0.007765611045182217, null, null, null, null]}}, {"ylabel": "Sa (g)", "magnitude": 6.0, "distance": 50.0, "row": 2, "column": 2, "yvalues": {"AkkarBommer2010": [0.03475950972974614, 0.04394805459984725, 0.051905267540879325, 0.05513653959215655, 0.05826189718100534, 0.06129324859782682, 0.06424035800346828, 0.06711135613384825, 0.06816004057170606, 0.06915994508863488, 0.07011601706205965, 0.0710324598201887, 0.07191287723376198, 0.06836111828861371, 0.06526388361661078, 0.06246920148541436, 0.05992646683416742, 0.05764980066487975, 0.055067073412319645, 0.05274586899156208, 0.0499570840168204, 0.046825490856009414, 0.04403571873894131, 0.04146488974016564, 0.03915342757092374, 0.03738265690970298, 0.036061836378245934, 0.03483830618942681, 0.03202961753774366, 0.02956713638340175, 0.02741231589904083, 0.024582815663228025, 0.022566409977878437, 0.02100343225316895, 0.019394533964158054, 0.018053431551629695, 0.016644762514881117, 0.015463944063621391, 0.013833273380831514, 0.01241985775217536, 0.01082612319244627, 0.009805993764216736, 0.008983423642793175, 0.008322576535712384, 0.0077246425592681495, 0.007294800556068171, 0.006749690642075133, 0.006238927109318654, 0.0036597196399772197, null, null, null, null], "CauzziFaccioli2008": [0.026917060726423317, 0.03368930140091354, 0.0395042732910201, 0.03903236879239719, 0.03860647776861853, 0.038218800840301076, 0.03786333962711076, 0.03753538541677134, 0.03656263362690628, 0.03567184847040885, 0.03485187982945942, 0.03409360998962024, 0.03338949871981773, 0.031955960547678464, 0.03070105253160273, 0.02998258928493996, 0.029707125709129634, 0.029452950550856796, 0.028242211020298846, 0.027150268776478803, 0.026243072189897056, 0.02549191619234917, 0.024799182200335394, 0.024105848103237702, 0.023462834197718673, 0.022678306890011983, 0.02177681019885348, 0.020945809195017033, 0.019351455031295647, 0.01808927343114636, 0.01756700783448835, 0.016584675070377433, 0.015557603079021992, 0.014883976196633312, 0.013901100240095875, 0.013152241615493146, 0.012445658889533983, 0.011968747967902081, 0.010770217757773181, 0.0100290208095167, 0.009209755470798947, 0.00836956289526826, 0.007623712932970629, 0.007009147074396804, 0.006411412545451468, 0.005738639136923253, 0.005331022450380345, 0.004899710052705413, 0.002682832895640924, 0.0018058385417946347, 0.0013951084123689274, 0.0008407456481033428, 0.00045916394181276456], "ChiouYoungs2008": [0.023414476756824884, 0.02902976748475102, 0.03372919367988376, 0.03490634029553461, 0.03601465724438558, 0.03706312571104503, 0.03805894201093394, 0.039007973050211996, 0.039015392349749003, 0.039019102373567746, 0.039019385595146436, 0.03901647894734653, 0.03901058371557769, 0.038167220705090134, 0.03739891553626149, 0.03643613571518426, 0.035312430427617184, 0.034281701700940366, 0.03295488733895944, 0.03173965396329511, 0.030619781261778584, 0.029582161723186954, 0.028616081712821238, 0.027528336456063993, 0.02651791203847362, 0.025575787116367946, 0.024694352300011414, 0.02386714155533928, 0.02191744615519322, 0.020234120892916693, 0.01876211241449291, 0.017461215950280332, 0.016301307750413246, 0.015251152096402437, 0.014306781535911809, 0.013452593560656747, 0.012676034515127983, 0.011966871021958658, 0.010657481279941915, 0.009565820016258948, 0.008643193215553, 0.007854409648166059, 0.007173383884537503, 0.0065024954204509385, 0.005924457824687899, 0.005422390829384946, 0.004983169956782085, 0.004596450079865625, 0.0023417362512615325, 0.0013937300900245387, 0.000908466303655242, 0.0003727421835398811, 0.0001752424894366205], "ZhaoEtAl2006Asc": [0.0460081950093367, 0.06318963725771883, 0.07905384161080838, 0.07888584389956711, 0.07873564600107445, 0.07859981701053843, 0.07847581284091856, 0.07836169943380251, 0.07604644207514533, 0.07394572825345669, 0.07202741302652484, 0.07026579016301443, 0.06864001510548606, 0.06458149971978172, 0.06109381522409971, 0.05742494986225582, 0.053653498049803, 0.0503598212981991, 0.04781114499270771, 0.045548032983609335, 0.04352456164936014, 0.04170422877967083, 0.040057645491494855, 0.03814104053575239, 0.036415239826667334, 0.03485494664148335, 0.033439155185495825, 0.03215028483288061, 0.028920365735803907, 0.026377635774000843, 0.024351704799892324, 0.022613461675934803, 0.0210029710023822, 0.01960130567384228, 0.018459068120434605, 0.01744419644954264, 0.016274489450713928, 0.01523723726938647, 0.013299255196497852, 0.011744134240332714, 0.010593076354081788, 0.009733926091991736, 0.008996749002310964, 0.008219546696410318, 0.007551269036816796, 0.006971435686717496, 0.006464294807583179, 0.006017548945438343, 0.0033325131538211924, 0.00229424618489504, 0.0018760631668490405, null, null], "AkkarEtAlRjb2014": [0.023363404757375184, 0.02888902125042336, 0.03184347668115608, 0.032833064745021276, 0.034058029035423404, 0.03502722947556932, 0.035778428667269865, 0.03644281630787269, 0.03678557555272987, 0.03710776150252432, 0.03716361636076964, 0.03698539465699478, 0.03664050175097274, 0.035955093575021115, 0.03511161507126148, 0.034267953568437606, 0.03304844043291658, 0.032347433033448066, 0.0315574700621588, 0.030803363946965673, 0.030172698472175713, 0.02936148070182345, 0.028531720699861554, 0.027534296935491136, 0.026543212673160184, 0.02563246879723862, 0.024982956749846828, 0.02436639367634789, 0.022422818251954666, 0.020704012608568825, 0.01919099340626465, 0.017898281044360753, 0.01678240459070573, 0.015783440870169446, 0.014879728130330444, 0.013952814245868571, 0.01317891879277674, 0.01246540954838628, 0.011203268943682313, 0.01013636650814597, 0.009286867990957742, 0.008490289683561317, 0.007717100458853655, 0.007142793287615287, 0.006588134490685764, 0.006181716494443718, 0.005763071864958454, 0.005302108265632252, 0.0027500431067836997, null, null, null, null], "BindiEtAl2014Rjb": [0.027197585081083907, 0.03371493779185206, 0.040420411581841696, 0.04283083776434421, 0.045156360243750214, 0.0474066911946666, 0.04958977771153476, 0.051712224847114394, 0.05175286198307401, 0.051790550215179025, 0.05182565846214757, 0.051858492217268105, 0.05188930712424556, 0.05059320709418929, 0.049437874680694424, 0.04839807859096264, 0.04622062087797292, 0.04428159628924712, 0.042720341431007, 0.041303594389534924, 0.04001061266262519, 0.038671193655330074, 0.037442000715412656, 0.03609034606119409, 0.03484675199748497, 0.03369824503124181, 0.032659964884997894, 0.031693846592021395, 0.029064528789238382, 0.0268547313755967, 0.024467932401584947, 0.022447619169664264, 0.020633060339435707, 0.019068682722164047, 0.01755203492177274, 0.016232603575416307, 0.015095723607434025, 0.014090865890928462, 0.012688757106426266, 0.011530845441962041, 0.010559158476976806, 0.009464831690040039, 0.008548139957086556, 0.007914465503828556, 0.0073620788251239555, 0.0068766378349348406, 0.006284216242106307, 0.0057694299201244805, 0.0033920018260194425, null, null, null, null], "CauzziEtAl2014": [0.05124259968098655, 0.06382405909515562, 0.07670848128045095, 0.08167015284491462, 0.08468287706101095, 0.08517732531138482, 0.08214460942706546, 0.07310609930940297, 0.07412964011899406, 0.07342845056663447, 0.0708451299807881, 0.06620654537939337, 0.0592857375799797, 0.054072187608784614, 0.04808720047531796, 0.043684673426846385, 0.04119534740634527, 0.03858926177000199, 0.0361775468882557, 0.03391260751700258, 0.03183980882666703, 0.02993744443179005, 0.028141121871493334, 0.026800193565291872, 0.025548980817487802, 0.024285133219861574, 0.023033942395213516, 0.021887488272507704, 0.019571361349103065, 0.017472003647897038, 0.01637907620507445, 0.015236545696058743, 0.014145300483704108, 0.013113548230957115, 0.012261387257624896, 0.011731616242698084, 0.011176139746130933, 0.010645930449045436, 0.00961228780867221, 0.008866005475340685, 0.008046200042863829, 0.007361177096550551, 0.0065989924379520415, 0.00595711554941932, 0.005407417970919163, 0.004871717042986554, 0.00452430177428114, 0.004228370190511457, 0.002394603611766426, 0.0015822556679250396, 0.001147177198708547, 0.0006387791521923696, 0.0003472722663866924], "DerrasEtAl2014": [0.019959041534661087, 0.028495176040717104, 0.03666402890630062, 0.03839364390562148, 0.04029938162616238, 0.04191238880160582, 0.04123519129366806, 0.0441278529105788, 0.043649413583501266, 0.04384657104084735, 0.04305412126836632, 0.04286454634636477, 0.04336647033973087, 0.04046315306693762, 0.035977814526027885, 0.03463740155429868, 0.032919960703605845, 0.033677727199469654, 0.030758797897474145, 0.031320329898463166, 0.03249791060836682, 0.03143727303526252, 0.030353511036283393, 0.028527617485752114, 0.02739224733628332, 0.026429594679496654, 0.026743909934432646, 0.025107158702753426, 0.023520919165002988, 0.02534812227617676, 0.02517841763268035, 0.0212313052496766, 0.01772395724424002, 0.016900949232425456, 0.01612848737126179, 0.015236651906895238, 0.014986832084984605, 0.015359845980707389, 0.014080790228390669, 0.013775821608625437, 0.013491500116033618, 0.012004197063613619, 0.011677845710502118, 0.012297745890525992, 0.01052365770421593, 0.009556934940646196, 0.008641470087942528, 0.007954906202135802, 0.0045724780432528315, null, null, null, null], "AbrahamsonEtAl2014": [0.025596896192761957, 0.03257482494743475, 0.03786640456703935, 0.03920251759503268, 0.040282531719468224, 0.041134440693564034, 0.04173362316073202, 0.04214998804098179, 0.04249300922651263, 0.04269412475723299, 0.04276545447756785, 0.04271782611055499, 0.04256096675653134, 0.041315480300730005, 0.03994453241743402, 0.0383020367650618, 0.03649205602977744, 0.03472537420864778, 0.03339941367566662, 0.03214228154008009, 0.030947685622885676, 0.02981018411602471, 0.028725036624228702, 0.027744639066139214, 0.026834819690263474, 0.025987730699582105, 0.025196685077087236, 0.024455945394432264, 0.022042361197627067, 0.020046729906231738, 0.01837024311053912, 0.01694281583283328, 0.015713384029870936, 0.014536153461143429, 0.013510775599680898, 0.012610359420140946, 0.01181393376855396, 0.011104914622890955, 0.009897853352905198, 0.008910829556210483, 0.008090011836364657, 0.007397618846984083, 0.006806388866066518, 0.006272354412966859, 0.005808934221931149, 0.0054034135065992635, 0.005045911456001391, 0.004728640264457511, 0.002468852828804857, 0.0015375028069163634, 0.001073737757722301, 0.0005532161135547838, 0.00035641816389877113], "BooreEtAl2014": [0.03890608908118539, 0.04877780916652099, 0.0563043396266205, 0.059159657183803206, 0.06220125265805246, 0.06500881071568838, 0.06759451900493374, 0.06995170707375425, 0.07189375967453253, 0.07334342024284847, 0.07419345734977516, 0.07467173262304375, 0.07461184309288535, 0.07340425543460018, 0.06887171043063346, 0.06337879304016998, 0.0583326650741497, 0.054197321776982, 0.05080964506711666, 0.047577530252071565, 0.04493202897526036, 0.04281945363804336, 0.040427501467350385, 0.038602394026645954, 0.036859379364704875, 0.035153320610829486, 0.03367109036626972, 0.03221746567424014, 0.02914683320414097, 0.02651013435707668, 0.024210538432256134, 0.022223315046770938, 0.020420667761836535, 0.01882368002896342, 0.0174069187148182, 0.016109147111406222, 0.014930637402726007, 0.013911487790229462, 0.012139940227372189, 0.010638253633431209, 0.009396488221098087, 0.00837205701121822, 0.007495151856413827, 0.006755514922448429, 0.006136711439104145, 0.0056067413274698335, 0.005149445846515546, 0.0047746110964161275, 0.002738173546308216, 0.0018005858385860315, 0.0012649563945270205, 0.0005893558082743757, 0.0003110380968916899], "ChiouYoungs2014": [0.02634350919198834, 0.03324309570927568, 0.03688719185867677, 0.03771504149505179, 0.038518535207160226, 0.03888832809557772, 0.03926493067691269, 0.03964740270780047, 0.039645721759198484, 0.03966155797780096, 0.039330701369379314, 0.03902581927025125, 0.0387437295657018, 0.03749200860823891, 0.03638456823604554, 0.03518545873029566, 0.03391142778869492, 0.03276107027063648, 0.03146066887242698, 0.030277643262264932, 0.029194420477854564, 0.028196154763605655, 0.027269915872016538, 0.026311553407494102, 0.025418256901790896, 0.024581434104974917, 0.023793693101567245, 0.023048580024487293, 0.021146858616514698, 0.019509620653947766, 0.01807474651845947, 0.016797657875210762, 0.015645655179173552, 0.01450723715736023, 0.013496837658689892, 0.012593569311120215, 0.011780979380592208, 0.011045920794875163, 0.009766483575972729, 0.008703983714043108, 0.007809084290196445, 0.007046463333367404, 0.006390107975838718, 0.005817173094755735, 0.0053162756634495415, 0.004875578474565447, 0.004485661915306155, 0.004138932284163289, 0.002139561766193135, 0.0012123867343881072, 0.0007386244396674718, 0.0002920376920421303, 0.00014712782412511287], "CampbellBozorgnia2014": [0.03516692530747843, 0.041266711475354094, 0.050198531741806746, 0.0521136454299028, 0.053828682727340704, 0.055367122021648923, 0.05674837883046037, 0.05798873273186555, 0.058413994118546746, 0.05870057273708839, 0.058853711101713425, 0.05885078614607668, 0.05874917399400891, 0.05821961406835975, 0.05742137059198134, 0.05665543355507958, 0.0559816690051025, 0.05518727806069746, 0.05244728307345245, 0.04991467605228595, 0.04756507008299649, 0.045378007660062, 0.04333616755340669, 0.04151420415492998, 0.0398178878651367, 0.03823416517525632, 0.03675179912355815, 0.03536105568800311, 0.03272522256166951, 0.03046224344580267, 0.028495581377665922, 0.026768705507902425, 0.02523887931909779, 0.02311591006171581, 0.021283071544607297, 0.019687040976231595, 0.01828655310299879, 0.01704921316254436, 0.014966329792969623, 0.013287821243521106, 0.011910498707627821, 0.010762914790946406, 0.009794154994063577, 0.008932354777208072, 0.008191841910137112, 0.007549839991633035, 0.006988810588660703, 0.006495049474928149, 0.0034842453563552005, 0.0023403948163694785, 0.0015721057796178341, 0.0005967817409140287, 0.00033704483788839045], "KothaEtAl2016Italy": [0.024388735974203702, 0.031228685234079248, 0.037199638702931734, 0.038744255001682264, 0.0402102747267011, 0.041607783592120064, 0.04294490880471144, 0.04422831040361717, 0.044821624159940086, 0.04538214101705839, 0.04591344640320395, 0.04641856304891417, 0.046900063407383535, 0.04612686951108131, 0.04494964972939719, 0.04472770250456031, 0.04396321934618702, 0.04285415763253986, 0.04158134323557392, 0.04041973742762228, 0.03935391184749733, 0.03837128739589641, 0.03746149031509161, 0.03604015103380146, 0.034735129464653555, 0.03353224373243843, 0.03241956213116269, 0.03138697005573448, 0.02840989003344956, 0.025939371460690905, 0.023856942048090978, 0.02207830918541631, 0.02054188047002878, 0.019167289238277697, 0.01795984046319241, 0.016891080511436844, 0.015938638611685804, 0.015084687958365714, 0.013694268054874949, 0.012536515686717983, 0.011557661842042046, 0.010719306552678151, 0.009993296101473498, 0.009169917859244706, 0.008458347719739972, 0.007838089312631769, 0.007293276078940907, 0.006811447937341966, 0.003525554226167897, null, null, null, null], "KothaEtAl2016Other": [0.03601501547868876, 0.04482218050280301, 0.05232555248353796, 0.055346723061940675, 0.05825680394903602, 0.061068666469349386, 0.06379282536466244, 0.06643800650016322, 0.06763334939567642, 0.06877000456566522, 0.06985408492536169, 0.07089077232429916, 0.07188449962942509, 0.0707725488652218, 0.06999946653384943, 0.06872708072156256, 0.06712856614195443, 0.06593074275069136, 0.06375678389336906, 0.06177946939338231, 0.059970954572802625, 0.05830861118045141, 0.05677383556448636, 0.05446488402168828, 0.052350844284684284, 0.05040747826300072, 0.04861444916121655, 0.04695456218902323, 0.04218842666956135, 0.03826105568251344, 0.03497194466445906, 0.032179364239694135, 0.029780374274526105, 0.02761280058046592, 0.02572049003487813, 0.0240552140039498, 0.022579276075633474, 0.021262802555269494, 0.018152906877018354, 0.015712533877902165, 0.013758258576588247, 0.012166168126855132, 0.010849940640653368, 0.009791298352812788, 0.008891108292778335, 0.008118300904571584, 0.007449191094794089, 0.006865446268040396, 0.003788605685192416, null, null, null, null], "KothaEtAl2016Turkey": [0.022457277155329667, 0.029235890853266878, 0.03523703432149636, 0.037967971595929656, 0.04064538840025593, 0.04327467080715552, 0.045860291849471504, 0.048406020343309764, 0.04922681534549797, 0.05000592884614849, 0.050747765348080745, 0.05145605264020706, 0.05213397493724426, 0.052485420108629895, 0.05065377853987668, 0.04980750541678751, 0.048454189511399695, 0.046799714500958746, 0.04469998432677863, 0.04281310130494934, 0.04110679060115176, 0.039555122702298585, 0.03813700919292733, 0.03627805704017241, 0.0345899797776732, 0.03305033127239439, 0.03164042560014514, 0.030344582015862428, 0.02650376828146721, 0.023423522353910434, 0.020907134734170753, 0.018819014875165487, 0.017062937349796404, 0.015597449550991528, 0.01433559699242739, 0.013239462597658217, 0.01227979452085017, 0.011433695372160078, 0.010123442351348263, 0.009058605570544297, 0.008178076317370605, 0.0074392002750156595, 0.006811355441377053, 0.006221098885363056, 0.0057132964130420846, 0.00527253715794025, 0.0048869423540865925, 0.004547221203139393, 0.0026999448798691013, null, null, null, null], "ZhaoEtAl2016Asc": [0.10150030187692277, 0.14301910867592058, 0.15988200383647513, 0.15831942109417924, 0.15691055689916059, 0.15043480773459272, 0.14469025709134126, 0.137884638708402, 0.13110503854602967, 0.12405340449636479, 0.11776156410412739, 0.11131287407088426, 0.10552550927667467, 0.09382075187365334, 0.0842701660286377, 0.07587893677383459, 0.06845157674654612, 0.06219097112996578, 0.05656619126884972, 0.051746215343358784, 0.047530496849133956, 0.043816325433754126, 0.04056117947452035, 0.037679963237810775, 0.035123477647089604, 0.03284418497470914, 0.030801909558254337, 0.028962407415582727, 0.02515166112297798, 0.022112346019685262, 0.019731896223174512, 0.017757227631947696, 0.016154088536818233, 0.014785888207931358, 0.0136518908777838, 0.01266266537713159, 0.011824999188948158, 0.011081748489982024, 0.009874711203248914, 0.00888835416444036, 0.008087322585176639, 0.007427128756017315, 0.006861320688607565, 0.006366608459851787, 0.005934562152525787, 0.005554210599626533, 0.005216978273025765, 0.004916068865304551, 0.00303688881973091, 0.0022120446811084295, 0.001870930402729929, null, null], "BindiEtAl2017Rjb": [0.04722325613068151, 0.06253705104891714, 0.06999071583664436, 0.07237351438092336, 0.07274384485491946, 0.07299870322815241, 0.07235721209360658, 0.0716882354569671, 0.07064633275482789, 0.06918650007594658, 0.06807667471482812, 0.06593672449588635, 0.06413852568065875, 0.06100743786069833, 0.058167790885468945, 0.05468650612271274, 0.0517040265253243, 0.04901457559531994, 0.04682582228868668, 0.04483647463636449, 0.0431379524933242, 0.04170108518065232, 0.039963173847028, 0.038201945238246875, 0.036646384070091804, 0.035151295372033785, 0.033553523152192725, 0.03210493095604105, 0.02837986094561618, 0.02597192670696262, 0.02431994095545465, 0.022747999893022623, 0.02134617277829652, 0.019878953746297716, 0.018612657458265597, 0.017627122160607734, 0.016688952607391786, 0.015587255541480294, 0.013965816894329275, 0.012527438966918238, 0.01144321742062699, 0.01013690641717718, 0.00909565725917824, 0.008265500490918344, 0.007435484773104531, 0.006881480002294817, 0.006320760406577683, 0.0058627332948178795, 0.003134688978007007, null, null, null, null]}}, {"ylabel": "Sa (g)", "magnitude": 6.0, "distance": 150.0, "row": 2, "column": 3, "yvalues": {"AkkarBommer2010": [0.008222080234277456, 0.01055952418517125, 0.012610761152091844, 0.013609781136312444, 0.014590767672866257, 0.015555513759976098, 0.016505510325318985, 0.017442015033880008, 0.017905185618828243, 0.018351461630225465, 0.01878240160688744, 0.019199342835335868, 0.019603442622568846, 0.019070558051119, 0.018596466560416292, 0.018099289383159224, 0.017584001940390413, 0.017117390031715956, 0.016512464358702305, 0.01596369042851854, 0.015125520089593357, 0.014067788982597583, 0.013132763805317601, 0.012339385826902362, 0.01162759648449268, 0.011060415146801502, 0.01061336146601547, 0.010201530669198098, 0.009492679736752873, 0.00915159419954387, 0.008936964952861962, 0.008247075847916403, 0.007655019291239555, 0.007138895846689549, 0.006532526632152234, 0.0061182647489117815, 0.005599038927955771, 0.005175567440159933, 0.004700968165591817, 0.004230943092080465, 0.003649588408913625, 0.0032893200734020857, 0.0030780159344751903, 0.0028219412132504907, 0.0025215929961180843, 0.0023163952098526047, 0.0021376518020312426, 0.0019718808073778287, 0.0012610315334522495, null, null, null, null], "CauzziFaccioli2008": [0.004246298087615873, 0.005311225338921131, 0.006225124619780378, 0.0063294254078146974, 0.006426169751367253, 0.006516471210759028, 0.006601208202647734, 0.006681086581222552, 0.006643748758588645, 0.006608865354699819, 0.00657614417225931, 0.0065453417029163715, 0.0065162529340362894, 0.006348104957046338, 0.006198389444175021, 0.006122677005271716, 0.006110047888821471, 0.006098313878640616, 0.005869503867050285, 0.005662395728380919, 0.005525342277804288, 0.00544820358882657, 0.0053760182147224184, 0.005251549245910483, 0.0051355564149558235, 0.00499506201076804, 0.004833787802923634, 0.004683992720119323, 0.004355938731370356, 0.004138510854531099, 0.004029811068603121, 0.003824705494259475, 0.0035864842731628244, 0.0034319976856486962, 0.003177408493007787, 0.002985626009178759, 0.0028352933233086334, 0.0027356198447115385, 0.002470477205956614, 0.002300866363790222, 0.0021373802417858673, 0.0019304801626848056, 0.0017473495580111018, 0.0015992910613104785, 0.0014658283628946089, 0.0013102800469901295, 0.0012157497916045277, 0.0011197350709870094, 0.0006847869596559657, 0.0004982476492464828, 0.0004139979339372697, 0.00029251179853898436, 0.00016426296348059742], "ChiouYoungs2008": [0.0036991742416562705, 0.004240756804788273, 0.00490064959120772, 0.005201959183181971, 0.005492886243440131, 0.005774558594548728, 0.00604789974589179, 0.006313677703360136, 0.006491872178825187, 0.006663333770046315, 0.006828621994702107, 0.00698821723864595, 0.007142535498040932, 0.007308094211811625, 0.007459930463966243, 0.007550488744468198, 0.007584520676036013, 0.007612985246671373, 0.007540357410522179, 0.007469172709599526, 0.007399088621781754, 0.007329832079643458, 0.0072611849822826315, 0.007126744337695261, 0.006997799609743611, 0.0068737683485870895, 0.006754156148254676, 0.006638540849290945, 0.006291126362085735, 0.005977299910562751, 0.005691012994571179, 0.005427769145339869, 0.005184142676474583, 0.004933246849401215, 0.0047022054691767765, 0.004488485553705064, 0.004290014364063866, 0.0041050736487883745, 0.0037274744408275114, 0.003405407759874944, 0.003127465506602232, 0.00288522151775888, 0.002672300774743488, 0.0024455667045354024, 0.002248211018578068, 0.002075141191866253, 0.0019223575284695441, 0.0017866769857587375, 0.0009470808343073353, 0.000571503107097136, 0.00037486310864799877, 0.00015493021607213304, 7.304355339693812e-05], "ZhaoEtAl2006Asc": [0.008280366012216924, 0.010741731829328891, 0.012914276383191372, 0.013070556135293484, 0.013215042922170184, 0.013349487490682843, 0.013475271185492129, 0.013593503878830212, 0.013372283605946642, 0.013168506360587657, 0.012979807900054168, 0.012804263288541432, 0.012640285658520854, 0.012208860163975328, 0.01182832670316527, 0.011397513497255232, 0.010927871147001732, 0.010507616735480767, 0.01017606556221838, 0.009875149342448649, 0.009600496648436964, 0.009348559021082245, 0.009116422276739759, 0.008831923918955023, 0.00857024812524936, 0.00832874968339921, 0.008105189681462153, 0.007897659337116758, 0.007303516152435737, 0.006811010365698849, 0.006350566764151972, 0.005951906976109276, 0.005567935558457597, 0.005231284626194463, 0.004953491971776398, 0.004705200369856886, 0.004418447199954681, 0.004162563459599303, 0.003647449193950641, 0.003232870383611921, 0.002911024412966014, 0.002657409596088688, 0.002441193635005933, 0.002242089900088365, 0.002069926151095441, 0.0019197686170718702, 0.0017877983973212826, 0.0016710165441116522, 0.0009779699251710845, 0.0006466262996025541, 0.0005126182261834958, null, null], "AkkarEtAlRjb2014": [0.004417946901526906, 0.0052804884322541785, 0.005665321057368182, 0.005830929112126286, 0.0060716431252325325, 0.006269860341292716, 0.0064376203609492555, 0.006607421825857634, 0.006771900647705586, 0.006953879598440677, 0.007079675677612688, 0.007163502778593802, 0.007220407835919553, 0.007302829427966919, 0.007332108595953792, 0.007292278053867448, 0.00721582380449115, 0.0072571228484751395, 0.007335235113339017, 0.00737681105244587, 0.007357713556456447, 0.007292629813282587, 0.0071870537429205164, 0.007018512440549258, 0.006849574163385736, 0.0066700126180871695, 0.006561846319009901, 0.0064574644715269264, 0.006111752578709325, 0.0058273568887334554, 0.0055875248976391895, 0.005337752953538052, 0.005159562302295106, 0.0049335569225361945, 0.004725345428654371, 0.004505253620368466, 0.004314731060704584, 0.004118514690316959, 0.0037898555215835784, 0.0035004232676819013, 0.00327560964433733, 0.0030282917623365856, 0.0027260303127601194, 0.0025490145093136412, 0.002378536766975849, 0.0022507659746073324, 0.002114931290441305, 0.0019510326658684664, 0.001045252050455001, null, null, null, null], "BindiEtAl2014Rjb": [0.005356536568213319, 0.005985001804433924, 0.0068207610536877876, 0.00722055476296026, 0.007605965427187339, 0.007978649899946783, 0.008339962655061678, 0.008691028473311168, 0.008856757741820872, 0.009015299739312817, 0.009167362803385294, 0.009313550610464412, 0.009454382259683324, 0.009610933061917615, 0.009756095840507968, 0.009891551756888611, 0.009848875878701762, 0.009809310196834458, 0.009830881608901575, 0.009851166370442609, 0.009870310769409217, 0.009783975865899299, 0.009702771769808468, 0.009459421876793238, 0.009233071925557388, 0.00902183959138253, 0.008873175796316668, 0.00873287018080879, 0.00836269234448057, 0.008038441764672725, 0.007601765460121596, 0.007218640507596466, 0.006805711310386979, 0.006440852186352114, 0.00590605263312618, 0.005442560433509228, 0.0050264694821113435, 0.004661170015705174, 0.00433326105048302, 0.004054085451200255, 0.003813177588385248, 0.003404186201251136, 0.003062951090096212, 0.002867054570908562, 0.002694465562979469, 0.0025412709717688026, 0.0023268099803850557, 0.0021401059852700294, 0.0013630180905517988, null, null, null, null], "CauzziEtAl2014": [0.00862427788477256, 0.010416194011501782, 0.013164274359668821, 0.014369323043367561, 0.015246910483899406, 0.015668904958515934, 0.015418156558265297, 0.013984029333059271, 0.014493893753977133, 0.014658321330298606, 0.014425167781659576, 0.013737606763468824, 0.012525798874625738, 0.01176627940430939, 0.010754589562867763, 0.009968689470208703, 0.009528883142468594, 0.009040381267416846, 0.008515865579030049, 0.008018708662094268, 0.007618367703174108, 0.007299040188686691, 0.006986017959289108, 0.006710254522614707, 0.006449589808795336, 0.006187003425387064, 0.005927766456090972, 0.005687731565141812, 0.0051068944210901504, 0.004606443439841018, 0.004298314121753674, 0.004000592592847882, 0.0037157254127099014, 0.0034420382915578453, 0.0032097211508050104, 0.0030537297994093775, 0.0029000700085627575, 0.002772729774257062, 0.0024999836821573075, 0.002292160508031797, 0.0020702316023098253, 0.0018716865203881295, 0.0016522328802621037, 0.0014708694227552072, 0.0013240455828850786, 0.0011747108529860998, 0.0010755383608144228, 0.0009949073242491579, 0.0005776745393341443, 0.0004054446221831936, 0.0003063648782097054, 0.00019511472454608538, 0.00011289872233604108], "DerrasEtAl2014": [0.002091591644159097, 0.002526249171472698, 0.0030843514597471765, 0.0032252717069407213, 0.0034001034331158533, 0.003563063745460095, 0.003575483320097204, 0.003866414982880555, 0.0038514064273978753, 0.0039619010116234655, 0.003940912307233999, 0.004011253830855838, 0.0041984104954148355, 0.004237842776942157, 0.003997594090259579, 0.004040971523543579, 0.004032354295742666, 0.00408584102155248, 0.0040345884144702, 0.004345402561043033, 0.004524594892978193, 0.0044982478011485515, 0.004438621781460773, 0.004340747978406826, 0.004223111270373249, 0.004119256222697374, 0.004150390170839149, 0.003996870151690294, 0.0038986781490025534, 0.004180205724948107, 0.00423184244420006, 0.003780493658981252, 0.003377223395917543, 0.0033202003594112865, 0.0032350841939962007, 0.003117495218366791, 0.0031685130942692534, 0.0033845953647007954, 0.0032289842083389727, 0.0032475179023375694, 0.0032253857839672556, 0.0029600984468239402, 0.0028689950963932996, 0.002956968450643482, 0.002602164402444503, 0.0024183806977096036, 0.002227091300042753, 0.00207064526907082, 0.0012286514243463789, null, null, null, null], "AbrahamsonEtAl2014": [0.003871387064445317, 0.004509372793730159, 0.004933605719443613, 0.005102966546624437, 0.005238384174708373, 0.005343745065667698, 0.0054215844211658315, 0.005475674077834, 0.005632825118447525, 0.005767847534527586, 0.005881724559492217, 0.005975395804175327, 0.006049759038354297, 0.00618157488148934, 0.006262752038778699, 0.006272002171869833, 0.006223509361700879, 0.006150610187918111, 0.006201122138187491, 0.006237743642687218, 0.00626180458650505, 0.006274462479229682, 0.0062767321471992555, 0.006210083917664244, 0.0061457719965713085, 0.0060836287785778756, 0.0060235047212698865, 0.005965265789004832, 0.005465747111436606, 0.005046134416983239, 0.004688474366295063, 0.004379843872522807, 0.004110698705516322, 0.003802729386764672, 0.0035344854846385307, 0.0032989321743761113, 0.003090583298742763, 0.0029051003958414745, 0.0026076514469393327, 0.0023627762727420976, 0.002157871779765749, 0.001984036888745777, 0.0018348116916501265, 0.0017022690880044852, 0.0015864986514952193, 0.0014845680074277985, 0.0013941842311402525, 0.0013135295168092344, 0.0006989014084264071, 0.00044399176984362176, 0.00031108732848290265, 0.0001768319685970214, 0.00012401722088725895], "BooreEtAl2014": [0.0057701167081962755, 0.006892414237829177, 0.008289937038991505, 0.008900326267768627, 0.009559429094627142, 0.010204728742319254, 0.010837480303835627, 0.011457194815461966, 0.012027947779952643, 0.012532193191386373, 0.012944017492301296, 0.01329447963292215, 0.013551501658055432, 0.013860616077357831, 0.013492132674364818, 0.012848361468008778, 0.012204418190706444, 0.011662454221311819, 0.011208631596588579, 0.010724992203195421, 0.010320985597360815, 0.009997561557672235, 0.009575534998035012, 0.009261008987067242, 0.008942554026226542, 0.008613274435958922, 0.008328053529185267, 0.008036723692313112, 0.007421154909713024, 0.006872828421448089, 0.006374239232416706, 0.005929804113862005, 0.005511471354659304, 0.005132424174430501, 0.004790130909634707, 0.0044696167207845605, 0.004173846906277249, 0.003917132490473417, 0.0034665674277331577, 0.0030783858592277036, 0.002754046183489953, 0.002481874150534327, 0.002243295727096459, 0.0020383658036043405, 0.0018639924386822649, 0.0017122942350180036, 0.0015789452765489487, 0.0014677485447425673, 0.0008425008776204677, 0.0005569158258196534, 0.00039351023211751566, 0.0001837292073541351, 9.381163520217297e-05], "ChiouYoungs2014": [0.0043057357728061765, 0.004906212847265944, 0.005230296566727649, 0.005325212055080284, 0.005424761171764224, 0.005514237713796199, 0.005611461378449543, 0.005715679296668654, 0.0058086248944545895, 0.005905390399784372, 0.005977060943696949, 0.006048714320668894, 0.006120273472086803, 0.00615136732286607, 0.006181949564566283, 0.0061899645159202675, 0.006175617973688509, 0.006161006724413552, 0.0060976367297174636, 0.006035815299289247, 0.005975278258351874, 0.0059156655897747235, 0.005856491075631805, 0.005776892361607569, 0.005697955362580206, 0.005619349002640253, 0.005540786190572715, 0.005461993327199647, 0.005184190793907187, 0.004932527744767288, 0.004700524463792208, 0.00448344332271189, 0.004277755472852847, 0.00404448650363031, 0.0038323003429357075, 0.0036381010114528035, 0.003459420538422961, 0.0032942637348105895, 0.0029962783175318326, 0.0027406683904087304, 0.002518778836045452, 0.0023242768850252012, 0.0021523937258280923, 0.0019841309839466457, 0.0018350395571455117, 0.0017021720515770734, 0.001583159244071406, 0.001476071211166988, 0.0008290729209822834, 0.0004816951981363982, 0.0002959494424377829, 0.0001178214267197273, 5.95885785568578e-05], "CampbellBozorgnia2014": [0.005204593380482686, 0.005695051950552778, 0.006787633939954376, 0.007116200286273993, 0.007416242739755207, 0.007690689834953864, 0.007942007398394638, 0.008172297353395468, 0.008408582486733884, 0.008619405134093903, 0.008806178748070895, 0.008969493547931215, 0.009111896102693183, 0.009460088839638385, 0.009736487360466818, 0.01000722290412964, 0.010285590066195206, 0.010518880905964437, 0.010219379040180361, 0.009929337424909986, 0.009648428914375682, 0.009376308705274948, 0.009112627248313885, 0.008891030928052546, 0.008678120464213929, 0.008473323485398655, 0.008276121930724889, 0.008086045457220838, 0.007739124863358103, 0.007428864409378585, 0.007148912743564204, 0.006894397954351048, 0.0066615059227218216, 0.006155711273457881, 0.005715213558541602, 0.0053284669703724434, 0.004986462126441724, 0.0046820707934529205, 0.004182209759861455, 0.0037726192295353977, 0.0034313512329158975, 0.0031429719407570084, 0.0028963250395325248, 0.002616197211981204, 0.002377780047768625, 0.002172924407504297, 0.001995412704051147, 0.0018404285590930178, 0.000980118634342229, 0.0006514432264682557, 0.000422081639690134, 0.00016405865627576224, 9.465749609244776e-05], "KothaEtAl2016Italy": [0.003125428921916089, 0.003750478100141422, 0.004268016760306049, 0.004344253286551965, 0.004415045212589802, 0.004481189956256775, 0.004543317191263538, 0.004601933369523474, 0.0046901950888268975, 0.004774601221211984, 0.004855531590537074, 0.0049333099519027375, 0.005008214740903488, 0.005036053993090486, 0.005049183090074636, 0.005221821740747128, 0.005360884189836836, 0.0053862207157516625, 0.005464947081779886, 0.005539930721597916, 0.005611554888818824, 0.005680144850965418, 0.00574597920672452, 0.005621818941826785, 0.005505932485971203, 0.005397428553799498, 0.005295545411758982, 0.005199627565852481, 0.0051421597320504995, 0.005090256477564897, 0.005042977910303099, 0.004999600674627389, 0.004959556576887619, 0.0047110172810195736, 0.004488908658929853, 0.004289100125251595, 0.004108291074666656, 0.00394381076898722, 0.0039061825360614724, 0.0038720986565464843, 0.003840970775888607, 0.00381234439010828, 0.0037858612790971644, 0.0035151157999158346, 0.003278451074136344, 0.0030699294352474447, 0.002884904653207174, 0.0027196907300081345, 0.0014965992337884074, null, null, null, null], "KothaEtAl2016Other": [0.009803914953226595, 0.010938417738242338, 0.011821119094574891, 0.012309343654134022, 0.012772655646397573, 0.013214255765469052, 0.013636722703180428, 0.014042169279214806, 0.014513906669998305, 0.014971351002313607, 0.015415737407312783, 0.015848132388224818, 0.016269464423099952, 0.015933510531867003, 0.01629822639942261, 0.01625891006833982, 0.01637438746388052, 0.01671589501257671, 0.016761345137705042, 0.016804114455030193, 0.01684450604811476, 0.01688277414703535, 0.0169191341122041, 0.01619806979490797, 0.01553919379913671, 0.014934665982882166, 0.014377920787072666, 0.013863417230961298, 0.013067420842052943, 0.012380716517377604, 0.011780929076357523, 0.011251554589762949, 0.010780126845816985, 0.01019333274748579, 0.009671261839583825, 0.009203563805102663, 0.008782002824811138, 0.008399941177183854, 0.007100905819492627, 0.00609122204394098, 0.00528968662504854, 0.004641931542862941, 0.004110392580671717, 0.003753310342574537, 0.003446188841905144, 0.003179679373004246, 0.0029465778916628656, 0.0027412513087261073, 0.0016082646874356573, null, null, null, null], "KothaEtAl2016Turkey": [0.004166574523823541, 0.004919948849015599, 0.0055352144234429345, 0.0059531802344751136, 0.006362254335924582, 0.006763346028150984, 0.007157209122747469, 0.0075444777135556815, 0.0078068105613032365, 0.00806145746456354, 0.00830907519830643, 0.008550231469405815, 0.008785421004311676, 0.009220399296647652, 0.00929129439701527, 0.00945403141032743, 0.009466800116311309, 0.009462817755498815, 0.009369419703498591, 0.009282504317378435, 0.009201278537784281, 0.00912508381983707, 0.00905336760421745, 0.00878949166811301, 0.008545055112564629, 0.008317836038797828, 0.008105949213328174, 0.007907783533540515, 0.00724750590319613, 0.006692983192285411, 0.006220420190439849, 0.005812697434528057, 0.005457177089013542, 0.005060769017740978, 0.004714670774750148, 0.004410069340440393, 0.004140076238042368, 0.0038992324030577593, 0.00353865042046243, 0.0032386486904924685, 0.002985176299557512, 0.002768211423057281, 0.0025804145661084653, 0.002384741425217046, 0.002214470648739535, 0.0020650845345065168, 0.0019330630823051094, 0.001815625028222799, 0.00114612772326441, null, null, null, null], "ZhaoEtAl2016Asc": [0.017670327235765053, 0.02433603335606001, 0.02835656327232489, 0.028791068366919036, 0.02919512264930035, 0.028703291280870787, 0.02825784530509401, 0.02754282275345262, 0.026798756874955296, 0.025909443346093797, 0.02509957772458995, 0.024189436034232695, 0.023357076634294826, 0.02151241196999015, 0.019955443022407926, 0.018491071654699914, 0.01711380506675613, 0.015923812936990217, 0.014779059647259299, 0.013778716247310542, 0.012873292682461408, 0.012049488990359418, 0.011316715339078728, 0.01063785690462313, 0.010028542630462964, 0.009471203432995347, 0.008959468952970433, 0.008494635497706281, 0.007489350286368487, 0.006675925886941447, 0.006009489795714372, 0.00545202446826162, 0.004979317530423585, 0.004574366832014461, 0.004227944725699658, 0.003925453847425441, 0.0036626552220528573, 0.0034296778428307916, 0.0030428947495313107, 0.0027281448630470714, 0.0024701012596590427, 0.002255360361418639, 0.002072346428346531, 0.0019157054419898275, 0.0017794039539754363, 0.0016598217115761623, 0.0015541387225098363, 0.0014601273425938466, 0.0008935623347148472, 0.0006515334672792777, 0.0005499053457993367, null, null], "BindiEtAl2017Rjb": [0.00604470361032511, 0.0075158527400822185, 0.008860444382414415, 0.009383123690571591, 0.009661143806333235, 0.009985370009868856, 0.010142908685767142, 0.010236989347485449, 0.010332510719308984, 0.010379847081484624, 0.010451256061686768, 0.010423087417825746, 0.010394248350817576, 0.010316741677491236, 0.010149035197993922, 0.009865197194140063, 0.009636717619318485, 0.009422154097458906, 0.009212703685539595, 0.009047959512386955, 0.008924868461037535, 0.008810786742812196, 0.00859974162864261, 0.008368245391593226, 0.008162894283770502, 0.00792455916288769, 0.007676772392669889, 0.007475752684430962, 0.006938037121735703, 0.006565554713200591, 0.00628858207167447, 0.006035432835000108, 0.005819507433878204, 0.005499453984848124, 0.005237988195031593, 0.005017819929084395, 0.004806713586333072, 0.004529372898258253, 0.004197356090031804, 0.003884866832310013, 0.003630036487773998, 0.003277745943975244, 0.002992327393326707, 0.00274979310978823, 0.0025001613733081768, 0.0023275726993239603, 0.0021481490954628627, 0.0019920031027173594, 0.0010224691477666403, null, null, null, null]}}, {"ylabel": "Sa (g)", "magnitude": 7.0, "distance": 5.0, "row": 3, "column": 0, "yvalues": {"AkkarBommer2010": [0.4840172964812483, 0.5566653344651267, 0.6153022090908432, 0.6450921027070439, 0.6735619027953021, 0.7008739141986913, 0.7271596803031424, 0.7525275736872521, 0.7727210412275826, 0.7921822916595461, 0.8109787128201168, 0.8291681401498475, 0.8468006367253146, 0.841414964983624, 0.8374469553523038, 0.8308057644259659, 0.8218637888786645, 0.8144445172373588, 0.7938620677675606, 0.7750649020942811, 0.7463948413237572, 0.7097197474841346, 0.6766090466665613, 0.6419102462172692, 0.6105762026422926, 0.5872921736206482, 0.5707931459428659, 0.5554533770211382, 0.5439671598208122, 0.5357704460553457, 0.5253818513592328, 0.5203327026554502, 0.4967121605763585, 0.46504732682327643, 0.42134473080809887, 0.39459400436138625, 0.3640928290288788, 0.33773210050971053, 0.30126358170400835, 0.2929271540664734, 0.2868872768453131, 0.2639282524709288, 0.2565236467219463, 0.23471298275550995, 0.20489927038079608, 0.18530968151939328, 0.17486746390957425, 0.16335351740773188, 0.08600260700980965, null, null, null, null], "CauzziFaccioli2008": [0.7511989145953547, 0.896076599390839, 1.015515921277351, 0.9888851333179544, 0.9651833952918089, 0.943881895126444, 0.9245791450871622, 0.9069637019274407, 0.8788194064522447, 0.8531779227688236, 0.8296880794227851, 0.8080640999903744, 0.788070726742965, 0.7643676795149881, 0.7433515540429544, 0.7349905852891581, 0.7374509117816276, 0.7397488230803181, 0.7173153376774195, 0.6968623792182295, 0.678085983662707, 0.6607650390101668, 0.6447419047753207, 0.6304398731041285, 0.617098857182716, 0.5980682697712181, 0.5742451604502328, 0.5522868184159643, 0.5154404099944774, 0.48725103112221496, 0.4779997312289681, 0.45916763811697664, 0.44828441526145707, 0.4417861288212034, 0.4314144608387275, 0.4169632919440835, 0.39978792595130624, 0.3906482746491754, 0.35888269226087444, 0.34705448866565547, 0.3219449207266917, 0.3032117919397214, 0.2865626001670226, 0.27331145668329393, 0.25371345416710633, 0.229553677499358, 0.21485387820214963, 0.19737327704469573, 0.10294708559953661, 0.07310900141248679, 0.05853364216480603, 0.033714527159055166, 0.01829403208778493], "ChiouYoungs2008": [0.7613758690296997, 0.9986674462013274, 1.1790085196757834, 1.2076892688835046, 1.234612909649779, 1.2600251291870115, 1.2841205604994121, 1.3070563412209586, 1.2897886364276516, 1.2740449147777033, 1.2596103580494349, 1.2463098536989365, 1.23399909413069, 1.1821847026786412, 1.1375386267506173, 1.0907052879113779, 1.042310824806722, 0.9995529494615784, 0.950815771047259, 0.9073686907258753, 0.8683530489630493, 0.8330877465269424, 0.8010253803704931, 0.7667096331721156, 0.7353542427663018, 0.7065780174360571, 0.6800626491521699, 0.655540241785032, 0.5987697808129416, 0.550979055925842, 0.5101325889470606, 0.4747681759900858, 0.4438084106671124, 0.4154126426848914, 0.390209555800615, 0.36767405467454417, 0.3473909952755845, 0.3290278248390655, 0.2931631898013707, 0.2636093103949825, 0.23885857770630012, 0.21784594935529586, 0.19979812345505807, 0.18073204591649816, 0.16441366737934082, 0.15032148955683494, 0.13805529470215258, 0.12730344011170544, 0.06266919067364977, 0.038318425224910614, 0.026773684290588087, 0.013076165041801473, 0.007205276079548241], "ZhaoEtAl2006Asc": [0.5660937074105232, 0.7186457185910315, 0.8516896120274469, 0.861396527027581, 0.8706616786026667, 0.8795137752272105, 0.8879823556026224, 0.8960958767847543, 0.8773715362516694, 0.8611891946254036, 0.8470362764129039, 0.8345296112753945, 0.8233770025552799, 0.8043796501530535, 0.7888477437894551, 0.7675716101660223, 0.7408536070613232, 0.7166062141191971, 0.6947340808695609, 0.6772377070038283, 0.663552551769896, 0.6532633296584518, 0.646071464971233, 0.6214773714203204, 0.6020194845418805, 0.58727816161296, 0.5770042073481338, 0.5711115789097058, 0.5181438513709399, 0.5053972775660789, 0.49821835831597183, 0.4924144165457276, 0.47682549860228224, 0.4632974717712567, 0.43914107003181607, 0.4178938703602162, 0.3931876898793495, 0.3710607936914633, 0.3465800228690971, 0.3249960610979593, 0.30434031243894766, 0.2849185177754356, 0.2679221193981478, 0.2477893516798339, 0.2305259993829385, 0.2155530397511797, 0.20243811477765755, 0.1908517649377763, 0.10653065237056855, 0.06697223419447046, 0.04514070077597053, null, null], "AkkarEtAlRjb2014": [0.6405897105428472, 0.8162166910520117, 0.9576238167713015, 0.9958850731306444, 1.0356841246928652, 1.0705157298066583, 1.095666263324869, 1.1158903271028007, 1.107551192659162, 1.0957603631628463, 1.0792015683596863, 1.0561788647740749, 1.0221592919577767, 0.9645324966669799, 0.9117328205677092, 0.8820269028480072, 0.827160153294339, 0.7879429047408103, 0.7330540169068692, 0.6931251169482876, 0.6704227251830939, 0.6414969876589448, 0.6166665170024663, 0.5906996945295808, 0.56388695875123, 0.5438083127444101, 0.5309766473363745, 0.5185635197219559, 0.46908910745149834, 0.41757718056811, 0.37267055417316386, 0.34118093033604513, 0.309813654305743, 0.28692032314500315, 0.26802430225900864, 0.24833196462381427, 0.23276125372252382, 0.22010862173197945, 0.1953640727501775, 0.17384940232586146, 0.1571639943313393, 0.14406025127261232, 0.13601528407148333, 0.1264012673240701, 0.11509625476466265, 0.10870980424270339, 0.10119707940846262, 0.09374284648104715, 0.050533790800258126, null, null, null, null], "BindiEtAl2014Rjb": [0.6266970945024457, 0.7406845575527654, 0.7877049975183342, 0.828393696933851, 0.8672975452232332, 0.9046305315449439, 0.9405667921967646, 0.9752503161125001, 0.9955834893582548, 1.0152949513674425, 1.0344473417811089, 1.0530940604818175, 1.0712810421202152, 1.0503448902824948, 1.0317490445235127, 1.0150697222942993, 0.9863640908219731, 0.9603845968099004, 0.9371626734604613, 0.9160177995441614, 0.8966607025095545, 0.8525182329721545, 0.8126822731905613, 0.7851933965206791, 0.7597129167941846, 0.736016059595327, 0.7278671378136461, 0.7202901378913432, 0.6705763126290301, 0.6281493899824189, 0.5868995471533826, 0.5511620998675028, 0.5006060344810931, 0.4575668774179698, 0.43132880319304173, 0.40804413848626875, 0.40469164070599345, 0.4016195843053867, 0.3519768554056149, 0.31186451369072227, 0.27888395102693186, 0.2512709641928905, 0.22822197134764785, 0.20146669944387308, 0.1792909248868484, 0.16069639862413565, 0.14695707429446273, 0.13501702513683272, 0.06767118117996652, null, null, null, null], "CauzziEtAl2014": [0.6080389597535371, 0.7042102811045953, 0.8391516641717645, 0.912468388376334, 0.9648203906042746, 0.9883570280003744, 0.9696869571094927, 0.8771160467522189, 0.9046589958495157, 0.9108271595683849, 0.8926540968061416, 0.8468909929347088, 0.7694964583268716, 0.7256472081098013, 0.6658233265218834, 0.6224742486267849, 0.6025857971076244, 0.578580926278318, 0.5585984243916265, 0.5384066913166976, 0.5196594314329912, 0.502522036032499, 0.48560420711205765, 0.4674556083219557, 0.4502606266555482, 0.43074978146482634, 0.409669286282791, 0.39029465954400977, 0.3534117636219192, 0.31722611681808477, 0.3050305880437987, 0.2894891725547463, 0.2718949223252283, 0.2560305115928026, 0.24449751744491943, 0.23850777996411107, 0.23192415158475704, 0.2245678456786674, 0.20322598793882413, 0.19375393684758743, 0.17843470213091492, 0.16658359818550283, 0.15389446312224986, 0.14304926582826347, 0.12945296370568257, 0.11626496056510988, 0.10759567581565141, 0.09933147421278779, 0.056089469028755744, 0.036056752103972155, 0.026397553624714694, 0.014583129418554584, 0.007887603567149567], "DerrasEtAl2014": [0.3109611409285411, 0.5614070115231109, 0.7212326298682668, 0.7370888633493261, 0.7444089034115233, 0.723788947535355, 0.6445848836823975, 0.622138854245227, 0.5587573084468395, 0.4879502748543755, 0.43226550209182774, 0.3951163167624358, 0.3732945201171318, 0.2838692142388115, 0.2055479907204582, 0.166162672772577, 0.1359879941330142, 0.12504419814233014, 0.09788800846862401, 0.08734889365334347, 0.0820476647530583, 0.07284559574688403, 0.06636462388273072, 0.05945373181360651, 0.05343411760126558, 0.04813034269879232, 0.04549725899145775, 0.039566573910650375, 0.03186426313891839, 0.03125514105406079, 0.02787745771265061, 0.020955594103793315, 0.015980644607122896, 0.013768100387535126, 0.011876301811892908, 0.010347711108171493, 0.009557953078053513, 0.009236407600303293, 0.007405852919207663, 0.006403084200785901, 0.005673134338366625, 0.004720227166492572, 0.00428110098693822, 0.0040613783621303075, 0.0033459497655442074, 0.0028888334913542346, 0.002473784299038881, 0.0022022305921907525, 0.0010214444084023272, null, null, null, null], "AbrahamsonEtAl2014": [0.5620545697994608, 0.7242585915843595, 0.8761080676986613, 0.9296898311386924, 0.9802022937065414, 1.0275645270079197, 1.0478814648245554, 1.0633902628654763, 1.07000190897933, 1.0731421281954985, 1.0731211739205466, 1.070214978634313, 1.0646703752907254, 1.023848068784127, 0.9814188881509498, 0.9338622090137083, 0.8836052547083982, 0.8354357395824895, 0.7916165879708628, 0.751201173993101, 0.7137725034684086, 0.6789835142404177, 0.6465424521750646, 0.6215315967983397, 0.5984473985112071, 0.5770664540580438, 0.5571993997067166, 0.5386845758489701, 0.49361465490314915, 0.45575155062709855, 0.42347643259641893, 0.3956239609648148, 0.3713334292713903, 0.34675231929912614, 0.3251460994805204, 0.30600973086458677, 0.28894594352941605, 0.273638008532601, 0.24355366099804102, 0.21898639492666236, 0.19858110642255014, 0.18138790405615854, 0.16672216359781986, 0.1536446385752989, 0.14229606771952222, 0.13236516752242886, 0.12361003064178198, 0.11583998791958128, 0.06601428997665387, 0.04290712485483994, 0.033204291951679725, 0.016562368243825863, 0.010295608087680612], "BooreEtAl2014": [0.5221468147445419, 0.6381086559117447, 0.6975114268354115, 0.7188977328776681, 0.7447190234383093, 0.7683615433386504, 0.789380980446541, 0.8077021976998187, 0.8218100216097765, 0.831165156245707, 0.8361492918372053, 0.8384566772419753, 0.835471354066757, 0.8201358138397684, 0.797490817088578, 0.769038418347543, 0.7424882214756231, 0.7170854875143594, 0.6914988422844488, 0.6666004493628623, 0.6418752771726044, 0.6185920076153252, 0.5968402424528444, 0.5757801880920217, 0.5552198493328419, 0.5354961218528601, 0.5175043151874835, 0.4989031149597522, 0.46010488055445203, 0.42585444041299503, 0.3968125909404734, 0.37243393615507203, 0.3492666934488076, 0.32843291628435745, 0.3091565316046445, 0.2910879396250824, 0.2744209618727748, 0.2601613802245873, 0.23330473886974648, 0.20916922587192313, 0.1887889945636004, 0.17137860140253336, 0.1562874499980432, 0.1431669099215857, 0.13204881461822704, 0.12224718958181455, 0.11344230703709174, 0.1063899636611031, 0.06956694555215984, 0.04881355822640795, 0.03561916168395868, 0.01597103245575989, 0.009249047905949584], "ChiouYoungs2014": [0.6097109849911103, 0.8080846574259211, 0.914703912407943, 0.9380187821337101, 0.9604594021023652, 0.9695930260026041, 0.9782722534983687, 0.9865471669108069, 0.9839558596720686, 0.9815075704878043, 0.9708288049729272, 0.9607545674016451, 0.9512237261591424, 0.918749184352207, 0.8897222199969468, 0.8607043617268483, 0.8317214960288257, 0.8053344400366994, 0.7754493480551627, 0.7481421078593932, 0.7230690147651564, 0.699946923273456, 0.678540064228659, 0.6556495258102447, 0.6344271351362388, 0.6146881596761528, 0.5962744160988684, 0.5790494079283355, 0.5304688739501322, 0.48948457375947635, 0.4544154818218917, 0.424035504644815, 0.39742580561383156, 0.36926035567863114, 0.34456731514845124, 0.32274595796324546, 0.30332481453886384, 0.2859288615471069, 0.2530209023704087, 0.22620303423586538, 0.20395984263867156, 0.185233717492012, 0.16926554083887177, 0.15520908384404242, 0.14298352339432008, 0.13225899683215234, 0.12278001322734786, 0.11434591744999989, 0.060965004129847344, 0.03774246514512962, 0.025566466011393604, 0.012243816766805318, 0.007074271508061535], "CampbellBozorgnia2014": [0.9536700772660901, 1.073366481324112, 1.1945096576656518, 1.2059829832285884, 1.2161014905431606, 1.2250032873984353, 1.2328032170832102, 1.2395981517669392, 1.2416926777863864, 1.2425607689899867, 1.2386632317747184, 1.2168208587391358, 1.1945419464169562, 1.1520445080933581, 1.1072055844784696, 1.0716286476583314, 1.044990047726212, 1.016909967764015, 0.9784792930311859, 0.9421404474017494, 0.9077060601577733, 0.8750128602991587, 0.84391770264516, 0.8111208463914453, 0.7804250461116662, 0.7516240045048065, 0.7245389008196678, 0.699013813412805, 0.6620595279504666, 0.6291157759212003, 0.5994787842527982, 0.5726098859113952, 0.5480883472159956, 0.5096345849468208, 0.47499988066791665, 0.44371719316920766, 0.4153828178293979, 0.38964816101538596, 0.3491733994713666, 0.31591395922854015, 0.2881297547183353, 0.26459417787161577, 0.24441857197079173, 0.22579122913623534, 0.2095426625736037, 0.19525983566654387, 0.18261843488411386, 0.17136051813569408, 0.09972705263992834, 0.06258218192843613, 0.04180688624285428, 0.01857716805968909, 0.011981712973494353], "KothaEtAl2016Italy": [0.46579844950141824, 0.5288248235638593, 0.5822048632266408, 0.6117081501206842, 0.6399063901439109, 0.6669574105322862, 0.6929894805648453, 0.7181085389697502, 0.7343395250053522, 0.7496805444824532, 0.7642225953382882, 0.778044669585511, 0.7912160049223034, 0.8001812068111096, 0.8269467101288706, 0.8412651163589417, 0.8193952657433121, 0.8257319724306053, 0.8086566426532011, 0.7930648282741775, 0.7787545858085152, 0.7655607517087761, 0.75334672078258, 0.7296420643030214, 0.7076851636886732, 0.6872772877461505, 0.6682496379525681, 0.6504578206407449, 0.5970333841244404, 0.5520690565776954, 0.5136773052232239, 0.4804966158074098, 0.45151955574196717, 0.4233152215212836, 0.3985293667124038, 0.3765697982474027, 0.3569744324243695, 0.33937727530760264, 0.3147784129498495, 0.29382853365014056, 0.2757532632993166, 0.2599858344971745, 0.24610132857615108, 0.22119000790542823, 0.20004080979876196, 0.18191513602964282, 0.16624965444573506, 0.1526082047014779, 0.09200907760970009, null, null, null, null], "KothaEtAl2016Other": [0.4950023017178496, 0.5599252770314819, 0.6145446824864346, 0.6535483486167653, 0.6912666673344238, 0.7278415033830613, 0.7633894917488551, 0.7980079927450788, 0.8148778993633727, 0.8307384205723057, 0.8456954879535279, 0.8598407975604008, 0.8732544879830757, 0.8931863152124861, 0.9321685509085759, 0.9432379212824639, 0.9192146911526451, 0.9297148640970591, 0.9103669540438287, 0.8927128380754059, 0.8765208113173217, 0.8616015260942907, 0.8477984954540545, 0.8255725164361427, 0.804877028100914, 0.785544744787943, 0.7674329020247374, 0.7504188195579865, 0.6964100659201656, 0.6504556275033911, 0.6108253331716479, 0.5762582177601548, 0.545812345694754, 0.50838583282103, 0.4756932083941405, 0.44689285954765745, 0.4213313726049061, 0.398493694868568, 0.3626412732011108, 0.3327853932903183, 0.3075414646328692, 0.28592057696862033, 0.2671976072282553, 0.23617849072439254, 0.21027564269378893, 0.1884185997988888, 0.1698037249660241, 0.15381801917566446, 0.09887413216738856, null, null, null, null], "KothaEtAl2016Turkey": [0.36491186504271556, 0.4283627981268096, 0.4827407988340583, 0.5199851447105197, 0.5564463965683607, 0.5922014575707237, 0.6273143939078297, 0.6618393385200304, 0.6750589118860202, 0.6874507376297891, 0.6991032697993038, 0.7100929256905082, 0.7204863622203335, 0.738706276440333, 0.7497856987699772, 0.7541625238515107, 0.7323195491634402, 0.7298323508305872, 0.706052181012438, 0.684538379062508, 0.6649610744923832, 0.6470534189630189, 0.6305969682477962, 0.6028481685949529, 0.5774860706776701, 0.5542117288344981, 0.5327744666470162, 0.512962470250148, 0.4627001124320877, 0.42109498990263433, 0.38610914587382833, 0.3562949715455916, 0.33059638786098483, 0.3042326053383925, 0.28145452184817416, 0.261595215290112, 0.24414163445291837, 0.2286929056314339, 0.21260137888280897, 0.19890839462833762, 0.18710111129294768, 0.17680523318059568, 0.1677408140923717, 0.1500607674742297, 0.13512005878146088, 0.12237093455445656, 0.11139746649781337, 0.10187896473336254, 0.07046252080025678, null, null, null, null], "ZhaoEtAl2016Asc": [1.4250997355213213, 2.0300147093179466, 2.3837986963739355, 2.4411329444673253, 2.490328776985897, 2.4873279651782014, 2.485150806253513, 2.4546137003507535, 2.409439206530415, 2.3567264059805173, 2.3083950490646323, 2.2420603638015946, 2.180843494890284, 2.0363751025614136, 1.9126241825497237, 1.7922563468601767, 1.6757290198172303, 1.5739515903861876, 1.472104992522294, 1.382358324422122, 1.2994830153974775, 1.2226854233775422, 1.1539909229906276, 1.088140542927752, 1.0288161775179399, 0.9740948700438096, 0.9234600378693035, 0.8773505149305437, 0.7740977754756969, 0.69044433094118, 0.6182726204841896, 0.5581822578248902, 0.5058988332994023, 0.46143308473032324, 0.4221199754735919, 0.38813142514262505, 0.35772103307103914, 0.331082553622732, 0.2863662487665408, 0.2508580393581009, 0.22178669175220564, 0.19762329103358922, 0.17751526292116365, 0.16159864099859847, 0.14795695042699872, 0.13615765226770957, 0.12586870451038684, 0.11683139439863036, 0.06679059315067527, 0.04521728999720113, 0.033508454555117674, null, null], "BindiEtAl2017Rjb": [0.7408012854212943, 0.9765123581153394, 1.1117414422079444, 1.160199787879277, 1.1856795493784151, 1.2118957482467656, 1.2018217666748165, 1.2024228396406569, 1.2061194507079993, 1.1940883729889147, 1.1837540308714147, 1.1553646015060797, 1.140471335509742, 1.1055123311901918, 1.0507232724827174, 1.0179196116934817, 0.9898389262786709, 0.9438193691395507, 0.8984215034000542, 0.8821556105813687, 0.8502836013136197, 0.8200027866853508, 0.7934804111341995, 0.7665374739754635, 0.73978808734096, 0.7067334047009517, 0.6672209509928055, 0.6406673089395788, 0.5785749291942835, 0.5295315832774409, 0.4967020605999344, 0.4801015888131413, 0.4497746136514172, 0.4303353383341944, 0.407527534098302, 0.3830555337994154, 0.363489844486988, 0.3436437693075772, 0.31042121394828176, 0.28734105438699953, 0.26606914370078333, 0.2448846619791194, 0.22220584864521614, 0.2065496460770403, 0.18520685560018071, 0.16814233410873053, 0.15312377193425672, 0.1431284373165962, 0.08649838711067748, null, null, null, null]}}, {"ylabel": "Sa (g)", "magnitude": 7.0, "distance": 20.0, "row": 3, "column": 1, "yvalues": {"AkkarBommer2010": [0.26340128101965077, 0.31131609997559184, 0.35050912334755074, 0.3688746985788634, 0.3864818598040619, 0.40342160492181545, 0.41976793430924486, 0.4355820023809124, 0.4468728313119824, 0.457743946015638, 0.4682343025201892, 0.4783773073090819, 0.4882018550085551, 0.47218175381285626, 0.457675838983437, 0.4426964401615106, 0.42749787085728475, 0.4137192617419, 0.3997576100206974, 0.387037605476414, 0.3727941094530399, 0.3573441443930333, 0.3432387640044461, 0.32872002706931264, 0.3154436948886709, 0.3063251392883228, 0.30075657800769645, 0.2954663818462594, 0.2773441787051219, 0.2574615956372492, 0.2320942000972146, 0.21204203357992943, 0.19923768157147181, 0.18848781990430422, 0.17612748400899797, 0.16666043067561856, 0.15804109281983506, 0.14887335134197122, 0.13345941279285387, 0.12806278063617801, 0.12370311199398262, 0.1167052594258318, 0.11066819032776659, 0.1055601569445955, 0.10066899317283975, 0.09724734151680216, 0.09213890328022772, 0.08571251425929233, 0.049488638893955085, null, null, null, null], "CauzziFaccioli2008": [0.4590148929149802, 0.547447203959022, 0.6203414896940791, 0.6087050860063473, 0.5982725813598957, 0.588833574486329, 0.5802272381680916, 0.5723280345469217, 0.5576314478269271, 0.54417005848286, 0.5317760844106558, 0.520312295585081, 0.509665180645061, 0.4966804669687389, 0.4851154258020444, 0.48111849984656857, 0.48365248408225897, 0.4860235616772431, 0.4717541565999693, 0.45873194227381414, 0.44750229758344984, 0.43781742556107844, 0.42882325553186196, 0.4198627679153768, 0.41149362710063964, 0.39947124157968567, 0.384352009515474, 0.3703880103556082, 0.34628259210538237, 0.32876589094994446, 0.3227543462888725, 0.3104776338421886, 0.30308799425725486, 0.2987131325157642, 0.2910195941616666, 0.28075550225626883, 0.26944622092836856, 0.26351718797645735, 0.2423197539654037, 0.23434428955636483, 0.21805808628734438, 0.20503321234651178, 0.1934480225395743, 0.18428171180399278, 0.17115877787263695, 0.15480563897947427, 0.14484603457493833, 0.13313578953329513, 0.07152015607500631, 0.05185637774487386, 0.042332327958008134, 0.02543971215663327, 0.013906897264560328], "ChiouYoungs2008": [0.2162709035944651, 0.27990764668381113, 0.3307608165004303, 0.3412732127551551, 0.35114748076800356, 0.36047057592284054, 0.3693119053336348, 0.377727852290732, 0.37575497248663364, 0.3738899460540532, 0.3721210026811049, 0.37043818457638417, 0.36883298804209297, 0.3576347073502782, 0.34763540003823123, 0.3362226255670211, 0.32370360811866855, 0.31241270767285056, 0.2987588005360457, 0.2864316565681799, 0.2752338584780448, 0.2650058970766391, 0.25561738164369857, 0.24528097717950192, 0.23578561175027501, 0.22702785569653222, 0.21892068476849058, 0.21139033570090832, 0.19379519667068534, 0.17889987832955734, 0.16610452094166525, 0.15497565930001117, 0.1451921812109457, 0.13624590300104392, 0.12827941259596637, 0.12113412541336707, 0.11468427916211327, 0.10882884236495849, 0.09737964993901456, 0.08789889227355425, 0.07992357878791266, 0.07312508347130987, 0.06726376377615104, 0.061073100255214084, 0.05575536581056469, 0.051147265166099985, 0.0471229818895172, 0.0435841699031259, 0.022086281273224838, 0.013649932650487496, 0.009547079337570206, 0.004666706065556155, 0.002572351901167391], "ZhaoEtAl2006Asc": [0.2757620156277208, 0.370404276349606, 0.4552816910962658, 0.4581509007496632, 0.4608499049350421, 0.4633927926405209, 0.46579311562112724, 0.4680633959566121, 0.4567244910440091, 0.44661991398478285, 0.43752544999838106, 0.4292700545255748, 0.4217208008482357, 0.4038812343401088, 0.388380053232683, 0.37105104280315265, 0.3522363822186821, 0.33538578381370654, 0.3220676658373862, 0.3105447415934233, 0.3005351666899181, 0.2918170529119089, 0.2842136813585864, 0.27265632737719936, 0.2626994651246742, 0.25416371513437885, 0.24690693976776748, 0.24081796791642898, 0.21872006764186921, 0.20594363075750857, 0.19684108250074472, 0.18875818460943344, 0.1803404536876695, 0.17287206745257527, 0.165312584889147, 0.15853799005773908, 0.15025641787802257, 0.14279040183477265, 0.12978182475768557, 0.11880167340741521, 0.11033706480589256, 0.10384418912468116, 0.09813696087130434, 0.09078258628609767, 0.08441416855389393, 0.07884719167484311, 0.07394039749518845, 0.06958381796356967, 0.03956353852925166, 0.027476134117093216, 0.020749653151677924, null, null], "AkkarEtAlRjb2014": [0.28783942806964513, 0.359646944066134, 0.41543139291914327, 0.43158390940074404, 0.44982186037004707, 0.4660408881674167, 0.4784180440969909, 0.48939830056707245, 0.4900237336008259, 0.4898069013630572, 0.48699450498371083, 0.4811823114673782, 0.4703460386671215, 0.45163281068788524, 0.4337919917729443, 0.42424950244737053, 0.4037967502824225, 0.39071919750085854, 0.3710024132774214, 0.3568807168093286, 0.34881122072548865, 0.33731478795088976, 0.3269018853860033, 0.31528384942361304, 0.30311328731722015, 0.29373063124958476, 0.28834428291984415, 0.2830607429770256, 0.26023704572397127, 0.2359868734570851, 0.21476009362545548, 0.19935326979675558, 0.18422800137573564, 0.17225311564351395, 0.1623851629917067, 0.1519030474751708, 0.14352021766353795, 0.1364339544648054, 0.12275401290106439, 0.11054264904896327, 0.10115903339755487, 0.09332396097562709, 0.08762260511543424, 0.0819091564999112, 0.07508438441923392, 0.07126480894824046, 0.06664177963160674, 0.061829167221270374, 0.033958302432019444, null, null, null, null], "BindiEtAl2014Rjb": [0.2523135794968912, 0.3141858355149463, 0.3591124168176997, 0.37625197600662674, 0.39258548383075426, 0.4082126345568997, 0.4232142178450985, 0.43765677975421724, 0.4413918716286755, 0.4449144611222312, 0.44824776884975465, 0.4514113689712548, 0.4544219191418987, 0.4412339051894251, 0.4295190892680994, 0.419009457823679, 0.4025593528917155, 0.3878262932877122, 0.3746385600089487, 0.3626442619425036, 0.3516746799874655, 0.33657050200552224, 0.322842161270391, 0.310994783167599, 0.300067787196315, 0.2899540334816081, 0.2832019000853666, 0.2768453604479803, 0.2564659116561222, 0.23914230241863305, 0.221849195942357, 0.20695487730681358, 0.19162936340245115, 0.17832415320075812, 0.1703459583888232, 0.1631253686179918, 0.1588690672992735, 0.15493624975189627, 0.13869813254964078, 0.12535316505629931, 0.11420518255336279, 0.10548055416946245, 0.09794838294182504, 0.08965630321604691, 0.08251213533483298, 0.07630236067995887, 0.06939967760043318, 0.06342853469424489, 0.04093448924052375, null, null, null, null], "CauzziEtAl2014": [0.2680855709362887, 0.31708295528709685, 0.37749492827357667, 0.4083697876698108, 0.42965610817273736, 0.4380151906020963, 0.4277209153649197, 0.3851100871772531, 0.39518627396366957, 0.3958945947312292, 0.38608775098113923, 0.3645170501062871, 0.32961658502260244, 0.30767390763827973, 0.27944259711097336, 0.2589908514652063, 0.24896489270863525, 0.2374151221241629, 0.22753110979467162, 0.21774912096179658, 0.20806981454534498, 0.1985457528444304, 0.18926265741127324, 0.18146148178798893, 0.17409812882649192, 0.16615682834099135, 0.15788832015947743, 0.15029101238235096, 0.1367825421931224, 0.12362433124457387, 0.11816950827295415, 0.11237575224840611, 0.10589008540411456, 0.09994533044400797, 0.09532170023903663, 0.0927418765779431, 0.08973688871622955, 0.08657191594478268, 0.07905407350306408, 0.0760048562964865, 0.0704566900637071, 0.06598893583270982, 0.061076624109503104, 0.0568621478967167, 0.052081902704034504, 0.04724281533769126, 0.04434565507468764, 0.0415599176738981, 0.02569271067472135, 0.017868349665162507, 0.013848530944259127, 0.0080489018709182, 0.004290938644732508], "DerrasEtAl2014": [0.1975236493917378, 0.3198554123113368, 0.4359322912499658, 0.4590612435750892, 0.48066521423056713, 0.5001655037900451, 0.4850724877566578, 0.5184587805957823, 0.5143378980075057, 0.5103675311233327, 0.4991259539252948, 0.49055554547002217, 0.4862682023823582, 0.42824910691748164, 0.3653641819472767, 0.34265669356683887, 0.31602684706379397, 0.33219485540302707, 0.2847578934052863, 0.279874189920425, 0.29536439312165447, 0.28275866258393495, 0.2716706670308665, 0.2479056291253441, 0.23693598865650453, 0.22860510910090462, 0.23559797739054666, 0.21803225192160897, 0.20253070026649114, 0.22796305474175127, 0.22820974108159195, 0.18463883372541814, 0.1462371617021693, 0.1384411799707892, 0.13197114420712439, 0.12424659202951008, 0.11938878692445754, 0.11855614622199236, 0.10702378432317224, 0.10444394345628075, 0.10365887350248516, 0.09021900536387695, 0.0898385243518493, 0.09889681972257737, 0.08251516554071654, 0.07329268383868769, 0.06535428017857177, 0.05997309226137627, 0.035645489394739834, null, null, null, null], "AbrahamsonEtAl2014": [0.19549604664522593, 0.25288932828155186, 0.30064382536429307, 0.31539763386506064, 0.3284050754113525, 0.339770206477244, 0.34648812051135713, 0.3516161950741501, 0.35487551974894993, 0.3569309979585909, 0.35788267720471517, 0.3578201811084981, 0.35682422896216326, 0.3457909682906052, 0.3337957308093424, 0.31969852928383247, 0.3043435013959134, 0.28939027606712486, 0.2764877882452855, 0.26441725125815935, 0.25308883209623834, 0.24242649302391597, 0.23236529641490222, 0.22444615903420978, 0.21709666846552197, 0.21025351434104, 0.20386274747308716, 0.19787807712633987, 0.1821135247079277, 0.16881408167800105, 0.15743375692807088, 0.14757797579806822, 0.13895426228467236, 0.12998969702671254, 0.1220962794247191, 0.11509367520187502, 0.10883979633380167, 0.1032211842235517, 0.09243378563394458, 0.08357313349900063, 0.07617415738174754, 0.06990908561293098, 0.06454049966973201, 0.059788667013338, 0.055644164791736284, 0.0520001024822435, 0.04877301364043027, 0.04589681283540737, 0.026808639435347267, 0.017961690211828283, 0.013946403264445522, 0.007688196160987268, 0.0052102639485951474], "BooreEtAl2014": [0.23460294011486582, 0.28484577302694974, 0.31376911863873186, 0.3245504625417052, 0.336720783212022, 0.347962997270104, 0.35822087368424077, 0.3674169079270275, 0.3747816392927631, 0.38006545137951986, 0.3828663238799006, 0.38441173921777716, 0.38358173956544495, 0.37708696695360633, 0.3670271260650447, 0.3541978487843845, 0.3417496257778229, 0.3293870151613405, 0.3170994757784668, 0.3053180293033889, 0.29376266701025117, 0.28263356452773436, 0.2724483981590933, 0.2627555548291727, 0.2533822847453701, 0.24413690069783875, 0.2358790154431, 0.22767036425930912, 0.21009398473682458, 0.19470687421933502, 0.18120435278816063, 0.16949541006822622, 0.1586885942641124, 0.1489054335719175, 0.13998612363304558, 0.1316878882126367, 0.12408634900143209, 0.11750113158173071, 0.10583722533892978, 0.09570956532737557, 0.08714982169620802, 0.07987055735588097, 0.0734522909526651, 0.06786603837094764, 0.06306028220858137, 0.05881742966661679, 0.055048506359021525, 0.05194200165050948, 0.03548246664776003, 0.026110161400406347, 0.019882251143932463, 0.01019321674796973, 0.005955806801981775], "ChiouYoungs2014": [0.21296221181018354, 0.27946732703303034, 0.31421273991144105, 0.3217127740713086, 0.32887870207707365, 0.3314497803224996, 0.3339098253302636, 0.3362724307473762, 0.3349194352217349, 0.333667651495984, 0.32949486226527364, 0.3255831347412146, 0.3219042897655549, 0.30977691715206945, 0.29901630126786194, 0.28764822742018226, 0.27582483665213803, 0.2651766040415735, 0.2539208629031356, 0.2437130083220953, 0.23440601793501614, 0.2258797993652113, 0.21803515912301236, 0.21007873017614595, 0.20272469363860154, 0.19590512103664617, 0.1895619399671023, 0.1836451339567912, 0.16810465250387682, 0.1550155580591083, 0.14383121125356374, 0.13415402666480514, 0.12568678668050662, 0.11692538621736219, 0.10923652334191829, 0.1024352496840555, 0.09637633182852705, 0.09094418137081146, 0.08101114720742031, 0.07286372494893328, 0.06606542920994152, 0.06030991832650791, 0.05537617035162471, 0.051089630029679534, 0.047338979835950395, 0.04402979964112532, 0.04108856134381523, 0.03845721649820724, 0.021636112781987273, 0.013662296390744882, 0.009273908688116795, 0.004444470396880651, 0.0025688392441955894], "CampbellBozorgnia2014": [0.27122723869625254, 0.3110038179321067, 0.35404374593174975, 0.36078875660776005, 0.3665345009842081, 0.3714197226988186, 0.375556013326691, 0.3790346172417479, 0.3802242853758732, 0.380707497447859, 0.38016006887160353, 0.37717718361362146, 0.37374311383790926, 0.36249021798824255, 0.3504057531635428, 0.33986644969864527, 0.33101735325300435, 0.32189913068843395, 0.30984138773203845, 0.298431470415305, 0.2876120977815327, 0.27733326258824, 0.2675510483188937, 0.25787209176049847, 0.24877613651551708, 0.2402083130566457, 0.23212084158979404, 0.22447187815113442, 0.20950331811014403, 0.19649093049655614, 0.18505541210371762, 0.17491238876253212, 0.16584394424413326, 0.1549542607408661, 0.14520085631184648, 0.13641869222753952, 0.1284733249828294, 0.12125407035150995, 0.11006967849597456, 0.10076255303908646, 0.09289750388737715, 0.08616409207808384, 0.08033493947167802, 0.07510524530387497, 0.07049598164270221, 0.0664035480478, 0.0627461516016421, 0.05945835987568495, 0.03665168561144375, 0.025572362349887384, 0.01791670683299729, 0.008253036781875072, 0.004767728441766486], "KothaEtAl2016Italy": [0.22117970587360974, 0.27266411507804267, 0.31554416733092144, 0.3317174486683952, 0.3471983308152952, 0.3620704601744175, 0.37640180932098255, 0.39024851247197984, 0.3933319089488365, 0.395978278605572, 0.3982443411651761, 0.4001779360923518, 0.40181972065719324, 0.39766766598995335, 0.3927323317473676, 0.3903285689631051, 0.3854345095469628, 0.38411986513665736, 0.3729456280905793, 0.36272998218682373, 0.3533416007539661, 0.3446731819996363, 0.3366360601918443, 0.32701681632073104, 0.3180941026073726, 0.3097893382816093, 0.3020357259425338, 0.2947760816659425, 0.2701577357132747, 0.2494821255537935, 0.23186221756911704, 0.21665980979559915, 0.2034037560578763, 0.1935431833351947, 0.18469161874727924, 0.1766962749500558, 0.16943428196753169, 0.16280562758153996, 0.14999685483646, 0.13913548835920136, 0.12980129709397664, 0.12168798307496342, 0.11456679285714143, 0.10385898137275199, 0.09470893543092695, 0.08681762169914009, 0.07995588934443154, 0.07394550759151029, 0.047603573390017244, null, null, null, null], "KothaEtAl2016Other": [0.24839719400659308, 0.30308944265150395, 0.3481928786252005, 0.37072573105879153, 0.3925587119828594, 0.4137689681343196, 0.43441991901673427, 0.4545644994191063, 0.45829192331328256, 0.46150751104661, 0.46427823801928003, 0.466660507943831, 0.4687021861297315, 0.46871273429094934, 0.46851956285876195, 0.46299065212653173, 0.456620295720864, 0.45708224831319516, 0.44358634315574963, 0.4312572334329096, 0.41993422509809103, 0.4094861382957664, 0.3998046662352721, 0.38994730136640376, 0.3807685117434401, 0.372193965928191, 0.3641602533014823, 0.3566129038174271, 0.3293192715594549, 0.30622775506978084, 0.28641616508161105, 0.2692164339722377, 0.25413224095037895, 0.24017566329016923, 0.2277356538665327, 0.21657349031381376, 0.20649853130923185, 0.19735661964834245, 0.17713503126013258, 0.1604537964078925, 0.1464723375058794, 0.13459487471570364, 0.12438767842641331, 0.11089677016186485, 0.09955459731750183, 0.08992135055631699, 0.08166517932876227, 0.0745317168687918, 0.05115540911050644, null, null, null, null], "KothaEtAl2016Turkey": [0.1780405703075394, 0.22603666963195457, 0.26707883628399764, 0.2882618082408847, 0.3090552471758163, 0.3294974583168715, 0.349620339657907, 0.3694508338211139, 0.3719368392382548, 0.37402493913161117, 0.37576904020604773, 0.37721439057077377, 0.3783992629011579, 0.3804835814014545, 0.3699271723302295, 0.36373976985455525, 0.3574855882547929, 0.3524711909541128, 0.3379061023964509, 0.3247615607712982, 0.3128274332447239, 0.3019341604779577, 0.2919432728968638, 0.2800392861891864, 0.26913532374486226, 0.2591076592859364, 0.24985238864133053, 0.24128158797861307, 0.21657782770116313, 0.19623873201382405, 0.17921838908281978, 0.16477800911020055, 0.1523813544481044, 0.14224254701373001, 0.1333160585343697, 0.12539878512976926, 0.11833043596014532, 0.1119828339220745, 0.10293518311984307, 0.09528957347473936, 0.08873885661629913, 0.08306019786652781, 0.07808786410457165, 0.07046049955633824, 0.06397233112298481, 0.05840060225328298, 0.05357535048264687, 0.04936491963091099, 0.03645583530778722, null, null, null, null], "ZhaoEtAl2016Asc": [0.5825708956302333, 0.8139025288449027, 0.9242668999658917, 0.9294303733716822, 0.9339509669948295, 0.9172062689311057, 0.9020825862537492, 0.8772082598753163, 0.8489099914995225, 0.8174788707518954, 0.7889642173508253, 0.7566982550194371, 0.7272943589296607, 0.6647812317913411, 0.6123710081829571, 0.5641541350914202, 0.5196588558528257, 0.48137429632264966, 0.4455107175317974, 0.4142436625250293, 0.38626544525625545, 0.36107961903355107, 0.3386990018602384, 0.3183585620837275, 0.30009569585828977, 0.28358996566254563, 0.26860805614767896, 0.2549788436106478, 0.2260390815952032, 0.2024890351181, 0.18345098441442095, 0.16742070533660938, 0.15412955638232892, 0.14265274465562053, 0.13293250860549732, 0.12437573207421768, 0.11698623322690227, 0.11038290532155183, 0.09950680337830758, 0.09051938499322419, 0.08310649202705273, 0.07690801884342231, 0.07155666702145833, 0.0669974286561879, 0.06298123096439877, 0.05941675529445937, 0.05623204230033013, 0.05336962452949208, 0.03532709400828251, 0.026438058215145437, 0.021485123240777972, null, null], "BindiEtAl2017Rjb": [0.3436779448438351, 0.4497240980915566, 0.49611282319493094, 0.510998299569862, 0.5260240989376942, 0.5307348915795915, 0.5286902915659754, 0.53553312884278, 0.5360759598745297, 0.5299247087977201, 0.5243407297717433, 0.5091223046100964, 0.49876366800047006, 0.4821603623022188, 0.45727287711010883, 0.4386088632990342, 0.424114332325253, 0.40692217104619205, 0.39343850661789886, 0.3782490614456596, 0.36136247121031545, 0.34542642562018727, 0.3330867087399179, 0.32137825087080635, 0.30959183787441347, 0.29945425351190547, 0.2869562147635652, 0.2773119823051621, 0.24821953162056504, 0.22898818305034935, 0.21621384128672724, 0.20433788691745217, 0.1885167978812631, 0.17875806817195813, 0.16888724039986902, 0.16123346135046535, 0.15271449305525273, 0.14464425072407638, 0.13048425916074774, 0.11958462200350359, 0.11124375496515944, 0.10334770886831895, 0.09568709727521012, 0.0889226551429345, 0.08162031046752025, 0.07612744558812201, 0.07094730222405837, 0.06754512175771811, 0.04613089286613523, null, null, null, null]}}, {"ylabel": "Sa (g)", "magnitude": 7.0, "distance": 50.0, "row": 3, "column": 2, "yvalues": {"AkkarBommer2010": [0.08037019129403405, 0.09657844574059953, 0.11002308638477673, 0.11631793328379288, 0.12237867838158475, 0.1282325423317464, 0.1339017517068395, 0.13940474381182238, 0.1431661411875932, 0.14679176343110736, 0.15029408802563446, 0.15368382520757887, 0.15697024709641094, 0.1523237295732619, 0.1481860881042452, 0.14336826451210583, 0.13802214052316467, 0.13321995943552475, 0.1292880262700701, 0.1256990607089663, 0.12087219726039894, 0.11505525670715772, 0.10979433393113949, 0.10544484734186339, 0.10145802091955555, 0.09837029666683826, 0.09605627356004377, 0.09388620600537691, 0.08692783191624211, 0.0811891814448815, 0.07527656537227742, 0.07052331004780302, 0.06726097546288501, 0.06335635075329486, 0.058735675568096585, 0.055986648415892265, 0.05316487135472122, 0.049966159457008295, 0.0448305074346347, 0.042093924191189916, 0.03913113677682396, 0.03696933778800526, 0.034950134475165456, 0.03303441621661163, 0.0315299556850859, 0.0304107065839101, 0.028416093508295513, 0.026228988568062706, 0.018034276482425317, null, null, null, null], "CauzziFaccioli2008": [0.08740624493541563, 0.10418527769901703, 0.11800935733836099, 0.11881209970076415, 0.11954971317759325, 0.12023229496973753, 0.12086774105309717, 0.12146234555705891, 0.12055891673126956, 0.11971639745558688, 0.1189274424351549, 0.1181859407694984, 0.11748675590301758, 0.11633223966659362, 0.11528815817225338, 0.11551388396334765, 0.11687192617889705, 0.11815058025724152, 0.11506698535782818, 0.1122437375893119, 0.11043255725283675, 0.10950606734677741, 0.10863429714195312, 0.10683643662738715, 0.1051499451351433, 0.10265430294716196, 0.09945832207694218, 0.09648635745671848, 0.09073991626402637, 0.08741588397609662, 0.08602427100259948, 0.08314737649822085, 0.08114074091410241, 0.07998636405929302, 0.07731564873563448, 0.0741292710662302, 0.07137081050585213, 0.07000659987903798, 0.06458182422471616, 0.06246612475608713, 0.058729132216197355, 0.05491698553758796, 0.05152021205917615, 0.04888138234951947, 0.045481954343322896, 0.04108762571287568, 0.038402766156424004, 0.03536462548195417, 0.020981005249421418, 0.016313964534090893, 0.014217741172893029, 0.009856402671909499, 0.0055245538395660276], "ChiouYoungs2008": [0.06003912433095872, 0.07509901178644515, 0.08767647695080148, 0.09078391895403949, 0.09371444602634785, 0.09649160956176603, 0.09913427468823142, 0.10165781607138323, 0.1017134419824014, 0.10176237543350929, 0.10180546317705762, 0.10184339530846366, 0.10187673998891042, 0.09980232337449624, 0.09793299441532405, 0.09557314972820874, 0.09280987846897408, 0.09029809248680126, 0.08700713364181108, 0.08401501569718285, 0.08127854523110747, 0.07876265246574898, 0.0764385334177703, 0.0737658548409311, 0.07129675937436197, 0.06900698158645023, 0.06687601863944623, 0.06488642086189818, 0.06012988086370103, 0.05605909024074535, 0.052526089095859985, 0.04942313346327946, 0.04666983031261352, 0.04412267957719252, 0.041835639590392715, 0.03976805738564379, 0.03788749631574061, 0.036167747956235875, 0.032764362523205255, 0.029909130432990285, 0.027478205785590317, 0.02538268950876828, 0.023557075626068846, 0.02161842203034984, 0.019935243096119885, 0.018461887396441726, 0.017162819879258464, 0.016009992890175528, 0.008900867828197784, 0.005716807406270318, 0.004014295861709257, 0.0019658944232679005, 0.0010843750682292773], "ZhaoEtAl2006Asc": [0.11728119331450766, 0.16055708653045192, 0.20008596794802885, 0.2012860735289286, 0.20239815685746904, 0.20343309470310506, 0.2044000155244883, 0.20530661271389491, 0.20048357850694892, 0.1961241056530857, 0.1921519203014226, 0.1885076000946202, 0.18514405636394232, 0.17632585071349888, 0.16863630955101505, 0.16045758149516953, 0.15192731027911582, 0.14433535793663874, 0.13862215024032834, 0.1335644418797691, 0.1290603406186782, 0.12502852854202404, 0.12140329745856136, 0.11682103209469302, 0.11274190558424557, 0.10910768529965856, 0.10587012219986747, 0.10298908937467079, 0.09423304227560654, 0.08802524667022762, 0.08338662948298889, 0.07929767519283211, 0.07555096388799964, 0.07221740722139658, 0.06936134234179075, 0.06678115270656992, 0.06355372017014578, 0.06063408838923814, 0.05465552225711269, 0.04968382896386843, 0.04600213885617203, 0.04329684936007518, 0.040920158480284054, 0.03790516352723643, 0.0352825878470137, 0.032981506739463234, 0.030947025409495208, 0.02913600423994442, 0.016895216582005507, 0.012024660115530463, 0.009439099095275193, null, null], "AkkarEtAlRjb2014": [0.0633882965310261, 0.0763236366142455, 0.08560192484321655, 0.08875675892910623, 0.0928939140075608, 0.09667088572152177, 0.09980099417760056, 0.10294508084084221, 0.10480236855652637, 0.1068088252715466, 0.10811457030888572, 0.10877286902585426, 0.10834581792322791, 0.10752210955181962, 0.10644627155696897, 0.10626943672522518, 0.10402046736963959, 0.10367556781903305, 0.10232149542200489, 0.10168187859116545, 0.10136304589287995, 0.10000538326628054, 0.09841814847652579, 0.09615527713200753, 0.09369105161380886, 0.091621284067993, 0.09085949277906102, 0.0900697062347545, 0.08538400929541308, 0.08018577773269464, 0.07571772907531112, 0.07214979453199014, 0.06892447230680651, 0.06561991434309486, 0.06293860411902187, 0.05995271047039317, 0.05750636711461774, 0.05521327338703114, 0.05097142400721188, 0.046945229828925135, 0.043962393517844145, 0.041054511932076196, 0.03814218598588818, 0.036053705735001065, 0.033470812686040755, 0.03206252940123181, 0.030241235147256705, 0.02814013536509268, 0.016010913128257594, null, null, null, null], "BindiEtAl2014Rjb": [0.06826066174568451, 0.08260484257869889, 0.09349970724067429, 0.09836786765729483, 0.10303272268515495, 0.10751871309060648, 0.11184571044636965, 0.11603013367749866, 0.11693355465382592, 0.11778794050461569, 0.11859861197585003, 0.1193700549828672, 0.120106087859753, 0.11743623550805857, 0.11504998916459369, 0.11289710962801626, 0.10820897971742383, 0.10401957650064873, 0.10144200924116231, 0.09907813730421283, 0.09689918469575018, 0.09360121353614138, 0.09057634669049824, 0.08860658998851399, 0.08676747978509199, 0.08504501029678908, 0.0838028192203728, 0.0826275089053992, 0.07843845942927206, 0.07479868525366193, 0.0697752007780482, 0.06542539091359952, 0.062057768292177705, 0.05906472311795464, 0.05576702001146019, 0.05282595869585582, 0.05062733725227584, 0.04862621524897418, 0.04515977939415256, 0.04221110192078563, 0.03966866906537936, 0.036675694621471765, 0.034092311492988886, 0.032431658789337806, 0.030945595350129834, 0.029607025035979267, 0.026953091915907796, 0.024655538201320673, 0.019294489028679154, null, null, null, null], "CauzziEtAl2014": [0.10679422832887706, 0.12613663029040584, 0.15169311845711794, 0.16487436941855443, 0.17423627890796836, 0.17836770764100404, 0.1748649544571126, 0.15803736355740905, 0.16267754040773613, 0.16345551402143504, 0.15986353814089066, 0.1513486842078261, 0.13722253975751222, 0.12897645836206104, 0.11791141207768119, 0.10979521580790223, 0.10585588471131346, 0.10122708450251687, 0.09691334918532796, 0.09265615747176781, 0.08864935425748642, 0.08487946909628598, 0.08117875808785983, 0.07807316594915863, 0.07512827269654646, 0.07197701124831779, 0.06871446042951208, 0.065703589057493, 0.05992966522856743, 0.0545586054247839, 0.05200968847997523, 0.04959407757515527, 0.0469637265392171, 0.04436070053881773, 0.04226097006733824, 0.040986595448494055, 0.03948789621961431, 0.03814660109226726, 0.035008312798992886, 0.03370515905143827, 0.03125905646980723, 0.029138001069691916, 0.0267106612846525, 0.024662243080137317, 0.022587196483442477, 0.020356027141203572, 0.019006606502692702, 0.017776989073488556, 0.011388081015730498, 0.008479288950399583, 0.00685065869052152, 0.004286943998473525, 0.002351253946646959], "DerrasEtAl2014": [0.0520859441120603, 0.0744465552793657, 0.0942805106926784, 0.097704776943088, 0.1018682849304959, 0.10571332105191676, 0.10269644263676823, 0.10843695987676807, 0.10628521797360976, 0.10590667289371165, 0.10327441933906678, 0.10245176752653747, 0.10306745436889714, 0.09354287003365686, 0.08174368231874177, 0.07929640428585343, 0.0756661624136141, 0.07957313812585767, 0.07218657754435547, 0.07334044753135617, 0.0774433161493403, 0.07547322757251096, 0.07336626535251484, 0.06949937352626855, 0.0673974972581682, 0.06562174951412322, 0.06763052100190141, 0.06382507922872216, 0.061445145739674877, 0.06916612116242707, 0.0708936791173187, 0.05984349283414801, 0.04986679666492264, 0.04877996676161696, 0.047439140869782695, 0.04560980514554353, 0.04527285214025466, 0.04661358697287277, 0.04361987577572288, 0.04354250145111557, 0.04426689558729013, 0.0401528332989536, 0.040390188335290914, 0.044305211974822574, 0.038094200363370995, 0.034969250994235174, 0.031863395216297385, 0.029560297177959726, 0.01990021591434945, null, null, null, null], "AbrahamsonEtAl2014": [0.06655809850191331, 0.08448394718822594, 0.09832290157545179, 0.1026297544455659, 0.10627987563659677, 0.10933127746927108, 0.1114929682510894, 0.11314308039223547, 0.11488564441694302, 0.1162104152430871, 0.11714701991483348, 0.11772242032890878, 0.11796126072390403, 0.11608514225176204, 0.11364235781766562, 0.11027143716945975, 0.10626303985976004, 0.10219565105783242, 0.09917940077844524, 0.09625430315048858, 0.09341640266208572, 0.09066182745103243, 0.08798684510885428, 0.08573034038980847, 0.0836133710286989, 0.08162176445146117, 0.07974331668406572, 0.07796745082239834, 0.07228320757731643, 0.06745382787838533, 0.06329450769341534, 0.05967081502024872, 0.056482499417085004, 0.05295896047167976, 0.04984957853447082, 0.047085368126130234, 0.04461186077228163, 0.04238547697193319, 0.03827892474303868, 0.034878350660543816, 0.03201754699327838, 0.029578488003999658, 0.027475087524377478, 0.025639465408913625, 0.024027025273842144, 0.022599763258461646, 0.0213278031044146, 0.020187339123265688, 0.01234031494032798, 0.008761782535582362, 0.006821393184940085, 0.004075164773102336, 0.0029602299055758122], "BooreEtAl2014": [0.07271221780821395, 0.08814288921839838, 0.09752527969377703, 0.10095838649517294, 0.10474924073564482, 0.1082683980727235, 0.11154997220683427, 0.11456018956189291, 0.11702729906471059, 0.11887586006552543, 0.11993856643985559, 0.12059228639111409, 0.12051415525438827, 0.11878484752539027, 0.11579531184544134, 0.1118217392751741, 0.10785726998214312, 0.10379782033116638, 0.0997232941223739, 0.0957930285265214, 0.09192570390392006, 0.08817997899871563, 0.08477948277570518, 0.08157071880935679, 0.0784743153934081, 0.07541454312351759, 0.07272889177064376, 0.07007629123252541, 0.06444804202195883, 0.059533056848684505, 0.05516092794387623, 0.05134268006665361, 0.04784417353755062, 0.04470363315260497, 0.0418791160989119, 0.039266904145203604, 0.03688845726445333, 0.03484131240733724, 0.031310447963154665, 0.028321600260669877, 0.025841152234572458, 0.02375180494168934, 0.02190098901340959, 0.02029121851700202, 0.01889813922871146, 0.01766709578659735, 0.016573014044919124, 0.01565923971666448, 0.010846206456399799, 0.00819753369133148, 0.006353139273504391, 0.003524763476995475, 0.002062740160856521], "ChiouYoungs2014": [0.06982650246880234, 0.08871736401685636, 0.0986807872736202, 0.1008719104685298, 0.10296063112373896, 0.10373026322925505, 0.10448162328395627, 0.10521766856125714, 0.10491257927614547, 0.10464556139779561, 0.10352956446620257, 0.10248928952237252, 0.10151621397639023, 0.09803405617058839, 0.09494712733455753, 0.09171067905053236, 0.08835591997861585, 0.08532581977091991, 0.08195419410665396, 0.07888870938242204, 0.07608701116272494, 0.07351443048219053, 0.07114227216579751, 0.06872404632374654, 0.0664803934424565, 0.06439260229230669, 0.06244451908943225, 0.06062210413639946, 0.05592853022088789, 0.051946912865777774, 0.04852193293108662, 0.04553981473588156, 0.042914872079278986, 0.0401492791588143, 0.03770914092046682, 0.0355395965155724, 0.03359736327694251, 0.031847839042281216, 0.028713254059660544, 0.026111721212309768, 0.023917136093457244, 0.022040102767090435, 0.02041552657716315, 0.018998083018600037, 0.017746971507402513, 0.016633851390398642, 0.01563649746355682, 0.014737245842404276, 0.008902675966381982, 0.005768930182218494, 0.003929692710518364, 0.001886253596423786, 0.0010909905893225324], "CampbellBozorgnia2014": [0.08648255934265757, 0.09704594046041029, 0.10969436715563328, 0.11189431142646034, 0.11374709460596792, 0.1153024037749516, 0.11660017900217541, 0.11767304163527728, 0.11826447128577788, 0.11859689516782464, 0.11865388328014592, 0.11829414898901626, 0.11775577516896918, 0.11741858379745908, 0.116462177212652, 0.11535554051219604, 0.11425186293833746, 0.11287623756156197, 0.10874760077275772, 0.10483306282230287, 0.101114359315121, 0.09757546198432218, 0.09420222958824043, 0.09099907360406194, 0.08797898878725484, 0.08512533154219538, 0.08242355752259994, 0.07986088617657221, 0.07484634766252593, 0.07047915787987914, 0.06663360346748179, 0.06321558758772577, 0.06015309463055996, 0.05595813094643135, 0.05227465883029438, 0.04901619233385258, 0.0461145533730495, 0.04351528982567202, 0.03987162265526192, 0.036812288865456885, 0.03420570774905998, 0.0319572343551536, 0.029997014561836514, 0.028019076166857584, 0.02627953927690749, 0.024738060989218748, 0.023362884913243818, 0.02212867638080823, 0.014251477740203824, 0.010183028559955388, 0.007202375461788231, 0.0034633855414062903, 0.0020181165329212925], "KothaEtAl2016Italy": [0.0581848826503441, 0.07097251890443027, 0.08168040634250232, 0.08561905081653899, 0.08938053271925404, 0.09298667155273571, 0.09645514974388664, 0.09980053353592114, 0.10156396703870159, 0.10324091837952967, 0.10484030416580362, 0.10636969251329999, 0.10783556544943751, 0.10738822783148301, 0.10594425192041683, 0.10724217718338486, 0.10638162960406962, 0.10557133683400802, 0.10357728464486675, 0.10173746457891202, 0.1000319037365815, 0.09844414742248918, 0.09696049185639992, 0.09541672382690683, 0.09396742435623287, 0.09260290259031528, 0.09131482928203856, 0.09009599801216453, 0.08398233622637548, 0.0787641895926103, 0.07425093013432425, 0.07030334032175732, 0.06681721983671222, 0.06353484122165669, 0.060598010557038576, 0.057953087311093034, 0.055557155510746914, 0.05337544818801376, 0.051072868673168466, 0.04905497586864274, 0.047267105492828636, 0.045668296031723954, 0.04422715770377869, 0.04087259341317168, 0.03795342963027519, 0.03539225397867242, 0.03312874517440081, 0.031115238030955287, 0.021500507302013704, null, null, null, null], "KothaEtAl2016Other": [0.0838609819589173, 0.0995688622087259, 0.11241911173308665, 0.11964625880478581, 0.12664923760468103, 0.13345289922537296, 0.1400776550635438, 0.1465405287133596, 0.14975506618922219, 0.1528280419998571, 0.1557734793978975, 0.15860333175211044, 0.16132787843717422, 0.1609652858997377, 0.16115016348148395, 0.161069820632516, 0.15884203256415014, 0.15878301700770456, 0.15530026409436148, 0.15209716839789317, 0.14913674118202835, 0.14638860467429837, 0.14382753434876228, 0.1412221102876071, 0.13878170921210234, 0.13648906572092942, 0.13432937368352033, 0.1322898504595642, 0.12256733677485725, 0.11431678850229746, 0.10721845749981924, 0.10104007408612552, 0.09560864544711846, 0.09033524716372024, 0.08564634990517743, 0.081448221781436, 0.07766631549403336, 0.07424057667268738, 0.0670148324441894, 0.061033232844965375, 0.05600264756273032, 0.051714958624634565, 0.048018394623577626, 0.04364224006195597, 0.03989526845031299, 0.036657526602412435, 0.03383696858088577, 0.031361906717027876, 0.02310472027187336, null, null, null, null], "KothaEtAl2016Turkey": [0.05294184044481411, 0.06572636782494565, 0.07659408226163779, 0.08300455852187438, 0.08932417625586457, 0.09556165436349835, 0.10172426975615977, 0.1078181818281954, 0.11006434937145503, 0.11220806302894674, 0.11425961503721842, 0.11622776581617428, 0.11812003861750167, 0.12033172085991177, 0.11751422073446613, 0.11756253982861473, 0.11547832785304644, 0.11353535983632025, 0.10968040891991641, 0.10617770408662988, 0.10297706533549739, 0.10003775350642513, 0.09732630623447566, 0.09469031147234033, 0.09224321823538907, 0.0899637966770909, 0.08783399515586056, 0.08583835537533778, 0.07731026251793756, 0.07026681544460119, 0.06435561415607473, 0.059327027562967524, 0.05499938821890554, 0.05124011734880154, 0.04794279787289755, 0.04502824078038357, 0.042434273448342885, 0.040111417205088346, 0.03750851559067008, 0.035279016288017544, 0.03334451139489336, 0.03164752636826967, 0.03014489796193026, 0.02772897742679708, 0.025636117189086486, 0.02380771215570044, 0.022198291436957538, 0.02077206952422248, 0.016465548643044926, null, null, null, null], "ZhaoEtAl2016Asc": [0.23078582819733676, 0.32342199286412243, 0.36895066847117686, 0.37150623263255844, 0.37386112562634827, 0.3668906592494364, 0.36058649745517146, 0.3501839331530018, 0.33859984003941623, 0.32532739740175176, 0.31330676024590515, 0.29996681302967143, 0.28783473928363223, 0.2620070293438729, 0.2404463479755236, 0.22069090762648352, 0.20253234485773117, 0.18696779778490324, 0.17250701413290567, 0.15993995514684883, 0.14876437221399913, 0.1387622088041682, 0.12989410475824004, 0.1219331544571304, 0.11479585763999917, 0.10837466523170022, 0.10257157033725055, 0.09729694737550765, 0.08627823129885868, 0.07731082674833509, 0.07024231248472454, 0.06427499544538386, 0.0594243976249696, 0.055218974739083854, 0.05173884127773469, 0.04865908479902531, 0.04606126190327787, 0.043725417377095, 0.03995893224688481, 0.03680565726574951, 0.03423055873159787, 0.03210286423391618, 0.030242137485130167, 0.028621617508718392, 0.027179096876528534, 0.025886161166270436, 0.024720195694839967, 0.023662969759772473, 0.016722139585859087, 0.013126792828018855, 0.011108191407505904, null, null], "BindiEtAl2017Rjb": [0.10987619379764213, 0.14761921669307462, 0.16384143487666122, 0.16809666665540265, 0.17173476574663027, 0.1725181477043979, 0.17016343806037282, 0.16952160563109792, 0.16792133618012908, 0.16515239902544254, 0.16269524116447937, 0.15831126899642434, 0.15497429577355953, 0.14853079828269106, 0.1414127834931015, 0.13609806977679825, 0.13065888107092957, 0.12512195273223323, 0.12021624854007766, 0.11456876121098367, 0.1097204254419012, 0.10596623370043626, 0.10254673504004723, 0.09915811074608605, 0.09584229156555092, 0.09280022333977372, 0.08910434130711795, 0.08631619787663677, 0.07823533735634333, 0.07276840580230415, 0.06924634765045938, 0.0664293006184518, 0.06273655075359731, 0.060132195065149864, 0.057036319514854494, 0.05434420758377523, 0.05158824307723913, 0.048773118760029044, 0.044679055379473774, 0.04174810265304092, 0.038957288576024915, 0.03595714651133913, 0.0333285749637033, 0.03088562997119174, 0.028324187844936895, 0.026380816242859872, 0.024367101680867087, 0.022957143862571437, 0.015288273301506044, null, null, null, null]}}, {"ylabel": "Sa (g)", "magnitude": 7.0, "distance": 150.0, "row": 3, "column": 3, "yvalues": {"AkkarBommer2010": [0.02529455672495032, 0.030639698412310512, 0.03510395369109246, 0.03725176516318562, 0.039327111129872944, 0.04133819690706237, 0.043291744670896554, 0.04519334764815439, 0.04649177066052058, 0.047745409361312094, 0.048958313912555035, 0.0501339662640577, 0.05127538527317864, 0.050565338844077413, 0.04992516008596164, 0.04874867512374137, 0.0471303575806588, 0.04567191373636796, 0.044646201590563844, 0.043703641858661234, 0.04194663710547178, 0.03953656971264435, 0.03737822891896393, 0.035912303913314854, 0.03456815117211188, 0.03335878752500931, 0.03226703997399817, 0.03125339666213627, 0.028883698531922748, 0.02759604282135097, 0.026809298533612413, 0.02606328861346697, 0.025275684577280962, 0.023678419609808845, 0.021697087275314803, 0.020807029152705315, 0.019712486098165245, 0.01844128280456425, 0.016547608766341947, 0.015225353918472514, 0.013634260363497602, 0.012844840154796635, 0.012155696359692545, 0.011296477606659536, 0.010578342470212393, 0.00998542751681469, 0.009169621666792329, 0.008400515187672689, 0.006839096847413325, null, null, null, null], "CauzziFaccioli2008": [0.01377059775627809, 0.016403493914808335, 0.01857152478256259, 0.019241373484668728, 0.019873972112854767, 0.02047425657207926, 0.02104618585459636, 0.021592990402897097, 0.02187995265081726, 0.02215298503334104, 0.02241352651794326, 0.022662797160666368, 0.02290184100042606, 0.023082947290927816, 0.023249534647084305, 0.023562094870685994, 0.024010649233264864, 0.02443591544147346, 0.023887262473364184, 0.023383108167342532, 0.023225154664443824, 0.02337817726867467, 0.023524280871173957, 0.02324941207351644, 0.0229903241576781, 0.02258595039620361, 0.022053006220212175, 0.02155364068539111, 0.02040347801216828, 0.01997818624801237, 0.019712942311490057, 0.019155116058694247, 0.0186857399055486, 0.01842422100243527, 0.01765361801453358, 0.01680992079742234, 0.01624209863307985, 0.015984109297342782, 0.014798244994959651, 0.014315977904619139, 0.013615526413569428, 0.012653611945910187, 0.011795984534567597, 0.011141603943311413, 0.010387499961515948, 0.009371483976185438, 0.008748587445984843, 0.008073397776988001, 0.005350135917126808, 0.004497038953239634, 0.0042154524003154255, 0.0034266510911515357, 0.0019749240977428636], "ChiouYoungs2008": [0.012124065999027158, 0.0141212609228423, 0.016357888414053463, 0.0172925441160717, 0.018192114845241785, 0.019060667208660762, 0.019901520690650622, 0.020717427884234012, 0.021209843648598205, 0.021682653040544026, 0.02213769394020192, 0.022576537854331603, 0.023000540162061826, 0.023386679138326347, 0.02374302621174374, 0.023919773544878824, 0.02393404784067136, 0.02394525315937179, 0.023657366559631188, 0.02338789737819404, 0.023134393954415522, 0.02289481323888554, 0.022667434865452956, 0.02225026110524306, 0.021857491520412865, 0.021486477906188347, 0.021134947661879608, 0.020800937729355845, 0.019808591205662005, 0.018933242212810925, 0.01815150433542787, 0.01744597318090416, 0.016803404891175863, 0.016129193114916604, 0.015512768592999443, 0.014945728650253395, 0.014421287634731007, 0.013933901186894413, 0.012853565165904579, 0.011929195666565771, 0.011127713843648074, 0.010424986697014395, 0.00980296235004383, 0.0090851137829205, 0.008455592680783025, 0.007899318820866244, 0.007404442375426779, 0.006961526004133057, 0.00407074146620909, 0.002663137128533519, 0.0018809526379518846, 0.0009270952318131836, 0.000512556425268809], "ZhaoEtAl2006Asc": [0.02306318519455091, 0.030313943160135595, 0.036751332484890105, 0.03740453693463401, 0.03801146821299487, 0.038578717669304305, 0.03911153158117931, 0.03961415754747186, 0.039135860523395, 0.03869697440882958, 0.03829155940342542, 0.03791490962911148, 0.03756323811220444, 0.03647894891630294, 0.035513938524952854, 0.0344572673459608, 0.03332604802433787, 0.03230045705432768, 0.031583069497507596, 0.030932325390946997, 0.030339094309087686, 0.029795918950726873, 0.029296639805658744, 0.028671339848958283, 0.028099311803489416, 0.02757537541595237, 0.027095116793191574, 0.026654754003943574, 0.025093209293844357, 0.0238590311101302, 0.022725768984204944, 0.021722839549219896, 0.020809686913509973, 0.019991249709527415, 0.01932851600027785, 0.018724685655548745, 0.017951519861349383, 0.017247329926045253, 0.015550784190294663, 0.014144925870422542, 0.013061717125522862, 0.012222346650427204, 0.011489330614606176, 0.01069681067627937, 0.010002907426551544, 0.009390470211498459, 0.008846090963208042, 0.008359138313165286, 0.0051254874837497865, 0.0035504724085205185, 0.0027529304562163986, null, null], "AkkarEtAlRjb2014": [0.014664492379588275, 0.017035873017259114, 0.01856979787190863, 0.019217844202448865, 0.020194916029479176, 0.021106332457525016, 0.021909255445076378, 0.022782240398984254, 0.023568826322105628, 0.024475287078369247, 0.025207485684118534, 0.025808395057753904, 0.026180009732371407, 0.02682296713174187, 0.02734313750858117, 0.02784667352191874, 0.028006344062071833, 0.028724408867352096, 0.02942887452769503, 0.030180089973125858, 0.030665236297028473, 0.030846476739362475, 0.030811294960998006, 0.030481667187315396, 0.030088176425374598, 0.029683791052790138, 0.029727710337003554, 0.029748972058012465, 0.02904990446485866, 0.028221009556440958, 0.027617548708868456, 0.026991076598191055, 0.026625361505228744, 0.025796027667514217, 0.025158930085452214, 0.02438928835387721, 0.02373849132647768, 0.023012205334085833, 0.02177949523861637, 0.020500520068953212, 0.019631056129431758, 0.01854991833035201, 0.017059153004914614, 0.016299437319587988, 0.015318246755831582, 0.014805263969374467, 0.014080779898619462, 0.013139884153070125, 0.007736051528168411, null, null, null, null], "BindiEtAl2014Rjb": [0.016410589033830327, 0.01765174060790863, 0.018748780689538336, 0.01952292673429646, 0.02025755349658816, 0.020957738552032493, 0.02162757271891184, 0.022270407747351322, 0.022578777596752468, 0.02287231086386414, 0.02315253425965613, 0.023420742801551646, 0.023678045132261155, 0.023985294633939686, 0.024269227866406725, 0.024533351733464655, 0.024420621474956893, 0.024316135636353632, 0.024604329964332174, 0.024878104475266987, 0.02513896879428442, 0.024891372298924852, 0.02465874138397111, 0.024493894624236495, 0.024337718607479904, 0.024189393515605798, 0.02424618235975691, 0.02430073922122834, 0.024259725395578198, 0.024222269237222933, 0.023370945866545267, 0.022609432380126047, 0.022212490942333116, 0.02184749239433777, 0.020360730822524556, 0.019051736965280546, 0.018006257604991846, 0.017067500856146313, 0.016402936990216898, 0.015818847420916236, 0.015299912783006478, 0.014120732313686416, 0.013104765123653814, 0.0129003947565782, 0.012711327308854454, 0.01253561274451541, 0.011430538936215406, 0.010472347705505522, 0.00960356664678851, null, null, null, null], "CauzziEtAl2014": [0.026335642493354603, 0.030204051929893942, 0.0373485986913869, 0.04134929971607954, 0.04444914050536973, 0.046232109459529484, 0.046004085991054204, 0.04216377360568367, 0.04395473298241551, 0.04469855636574366, 0.044218796433877466, 0.04232265549660775, 0.0387749623220831, 0.03734455578089362, 0.03492292700646216, 0.03306761466147894, 0.03224527466880797, 0.03116586056593748, 0.02992296172199335, 0.028685627679274673, 0.02769426730303299, 0.026917466204369217, 0.026117623636623816, 0.0253264496937198, 0.02456447431517963, 0.02373855069577995, 0.022875623316576634, 0.022071282597575653, 0.0201642728152486, 0.01854725700836727, 0.01764209887933539, 0.016892283454229124, 0.016120638682226372, 0.015231299119556844, 0.014488706185419626, 0.013985810638551468, 0.01339783214049338, 0.012999183108422477, 0.011989360404634402, 0.011525374882119238, 0.010662530030858765, 0.009832170043600798, 0.008837242496012577, 0.00802039858960453, 0.007292685160126872, 0.006446875693797089, 0.00589832150678919, 0.005435502129967188, 0.0035022699393700554, 0.0028434964046419866, 0.002398194260033467, 0.0017042961961073802, 0.001009368045021635], "DerrasEtAl2014": [0.006654518430542114, 0.008141702000579319, 0.009765777011855421, 0.010083844676420182, 0.010542452408829547, 0.010999707194671688, 0.01085904812503647, 0.011538329296110757, 0.011348759508575336, 0.011530237463969643, 0.011352700115516647, 0.011480065510922238, 0.011899952253468281, 0.011566410946987264, 0.010639895106735955, 0.01078647085503695, 0.010759251976325023, 0.011214430832756195, 0.010933289776574632, 0.011683739110539245, 0.012363638312901616, 0.012349663584070308, 0.012238672501504172, 0.012043711951373574, 0.011826498944249988, 0.011628396282865484, 0.011933889362675008, 0.011529329343094754, 0.01152322917015491, 0.012903056913553292, 0.013468112195957503, 0.011992068586843787, 0.01064361268071503, 0.010719645985548205, 0.010628000110931495, 0.010412186722648209, 0.010664995823084942, 0.011419084921051228, 0.011090130442613077, 0.011351891331303128, 0.01170359999693298, 0.010950521093761949, 0.010987559255454154, 0.011818256544379834, 0.01044198968724041, 0.009812955051040838, 0.009102346460545894, 0.008525048399110854, 0.005980353269077115, null, null, null, null], "AbrahamsonEtAl2014": [0.013643062321774665, 0.01588326908626084, 0.017383237907732114, 0.018104941735164068, 0.018704418581136067, 0.019193913536381446, 0.019573414324436118, 0.01986310370240386, 0.02058038670766592, 0.021216302769315288, 0.02177317876839623, 0.022253366803003737, 0.022659223086460123, 0.023471562749722615, 0.024078374856593966, 0.02440205747144822, 0.024490539223509897, 0.024461483840539793, 0.024884679851510702, 0.025243532609370282, 0.025543102517314936, 0.02578787330565484, 0.025981843237200344, 0.025931769682989575, 0.0258781201049252, 0.025821386883772453, 0.02576198893084314, 0.025700284685822795, 0.02422189398284606, 0.0229456912776041, 0.021830412630154544, 0.0208455947761935, 0.019968209078120455, 0.018722535407817726, 0.017623278305764996, 0.016646049395229828, 0.01577159248366163, 0.014984500947835393, 0.013628483917678529, 0.012497976311141103, 0.011541010332979995, 0.010720451088754026, 0.010009056162166824, 0.009403421258664285, 0.008867936202816167, 0.008391026485526027, 0.007963536503668963, 0.007578128287407467, 0.004720915972752412, 0.0034192494169733053, 0.0026707700110480256, 0.0017603155745682093, 0.0013919610391295416], "BooreEtAl2014": [0.012456121549722652, 0.014302373849216687, 0.01631055320576282, 0.0171733277413704, 0.018120368944595962, 0.019054632942270715, 0.019986797028491494, 0.02091007729863537, 0.021764702854613772, 0.02253258349355106, 0.023171032788854646, 0.023739969293878938, 0.024173917398398664, 0.024719903945189737, 0.02494668132629442, 0.024876896852554824, 0.024711228154175622, 0.024404600887416906, 0.023983735866723695, 0.023492711733570128, 0.022927762552642596, 0.022316021128341596, 0.021732940552792623, 0.021150635787485387, 0.020551352361477072, 0.019922931546546917, 0.019376681989609287, 0.018812986542508264, 0.017626922073308588, 0.016546581879308412, 0.015532950036356385, 0.014616452447151252, 0.013745048161441406, 0.012946770365642062, 0.01221788033118319, 0.011528775002700968, 0.010891921384986304, 0.010345236149221894, 0.009403399094840833, 0.00860372187845558, 0.007942290716142783, 0.007379439588296969, 0.006868365585679672, 0.00641515899657941, 0.006014465170920027, 0.005653384226108153, 0.005325055356656317, 0.005044943556613547, 0.003502874647975173, 0.0026765821973428927, 0.0020899173710084845, 0.0011912272757595931, 0.0006942944977352424], "ChiouYoungs2014": [0.015236926096223149, 0.017683155706136842, 0.01894851662409094, 0.019249082406687743, 0.01954156155583252, 0.019701877359095916, 0.019868588165704942, 0.0200414176603965, 0.020134045958374258, 0.020233637477143667, 0.02025912709034884, 0.0202882963054981, 0.02032065149110392, 0.020140439913490762, 0.019980007063603155, 0.01979712024971052, 0.01959000340290093, 0.019395860045484863, 0.01904673442427957, 0.018718216258455572, 0.018408315658414113, 0.018115295336595356, 0.017837629115888754, 0.017525485652030017, 0.01722555839717663, 0.016937500606696933, 0.01666087425358141, 0.016395181313911024, 0.01558317625122032, 0.014871805300449188, 0.014241563851165973, 0.013677532686190567, 0.013167956599481999, 0.012550292580186043, 0.011995126714665452, 0.011492752883149838, 0.011035380913796114, 0.010616680665946333, 0.009862570928863938, 0.00921807777555251, 0.008659291388008137, 0.008168859006429588, 0.007733869965976609, 0.007306551449996114, 0.006923470449930615, 0.006577490076104857, 0.006262956698924029, 0.00597533439333184, 0.003990707112823385, 0.002662858528578818, 0.0018283982955699094, 0.0008824110874391131, 0.0005115702273544047], "CampbellBozorgnia2014": [0.01622583759687675, 0.016781243314532603, 0.01820352819256971, 0.018617117409458657, 0.0189681362904161, 0.0192654277337039, 0.01951612374205038, 0.019726066162151105, 0.02022293219442342, 0.020659816062565613, 0.021039286910346327, 0.02135862351059737, 0.02162966103640531, 0.022681339966641723, 0.023557609074757024, 0.024386300194880143, 0.025201076031992894, 0.025903249459058555, 0.02545772121558489, 0.02500470568590404, 0.02454683167030657, 0.024086190999594595, 0.023624458901045635, 0.023252015601872168, 0.02288484765750749, 0.02252316065961664, 0.02216708750546776, 0.021816704835164336, 0.02112935252821816, 0.020502687259756888, 0.019927219662220223, 0.01939552187727014, 0.018901669935999624, 0.017688864865208848, 0.016619385226347202, 0.015669331011319405, 0.014819830292704565, 0.014055783630256304, 0.013077196148275698, 0.0122434293616357, 0.011523462835130421, 0.010894678763651777, 0.010340173678984188, 0.009572197903827623, 0.008902810173968125, 0.008314608794979807, 0.007794013575168039, 0.007330278301091295, 0.004672157281747304, 0.003268761304607999, 0.002238994178908501, 0.0011389618049198994, 0.0006897650735373112], "KothaEtAl2016Italy": [0.009681136501824748, 0.010994683495094911, 0.012032403259279796, 0.012159187357590162, 0.012276116416922202, 0.012384688700558045, 0.01248607985862138, 0.012581229996133978, 0.012770837593325656, 0.012951459938530412, 0.01312401187237744, 0.013289270433405146, 0.013447901658710716, 0.013573587375036182, 0.01355144795341539, 0.01412369200330986, 0.014583392237838957, 0.014744934062145117, 0.01507917606413231, 0.01540000362556229, 0.015708699079269715, 0.016006358787457816, 0.016293928358051935, 0.016401053120266892, 0.016503840515508912, 0.016602651829276626, 0.016697804104817103, 0.016789577152100017, 0.017041218083137497, 0.017274259909904423, 0.017491467877214548, 0.01769502005881372, 0.017886664250482402, 0.017245028973028043, 0.016663290211023557, 0.01613280186628873, 0.015646560005537467, 0.015198823665500403, 0.015953424127229773, 0.016674789731102046, 0.017366985506797748, 0.01803330911477454, 0.018676479595358238, 0.017578177711907606, 0.016605376919481545, 0.01573755012840735, 0.014958432877617656, 0.014254969011797323, 0.010492110313648058, null, null, null, null], "KothaEtAl2016Other": [0.0301599627807352, 0.031859536057726304, 0.0331205369090162, 0.034237960056958575, 0.035291018906010135, 0.03628835604370008, 0.037236889852611414, 0.03814225531511376, 0.03926132531107702, 0.040342220448367314, 0.04138837274655164, 0.042402734582194145, 0.043387867173619, 0.04266270307638584, 0.043452798991010906, 0.04369387445507312, 0.044263019664723686, 0.04546833048437016, 0.04595731483770646, 0.04642133886519399, 0.04686303896490979, 0.04728464480237037, 0.04768805981498398, 0.046978881899651055, 0.046312522173412744, 0.04568461842816992, 0.04509141862267127, 0.044529674227440634, 0.04309407389226319, 0.04182395085092425, 0.04068865622087538, 0.039665048636696836, 0.03873526782317836, 0.03717530785407533, 0.03576725879504892, 0.034488629230011704, 0.03332127650617086, 0.032250388766997005, 0.02891773336596004, 0.02617691059577619, 0.023885602504036593, 0.02194339131225296, 0.020277463304237724, 0.018769326521560322, 0.01745496985054796, 0.016300167342733655, 0.015278212942708966, 0.014367976486548039, 0.011274956002353084, null, null, null, null], "KothaEtAl2016Turkey": [0.012862623878184386, 0.014378684276157057, 0.015560176501624208, 0.016611485991467036, 0.01763317166855479, 0.018628443242979145, 0.01959994418705614, 0.02054988475452321, 0.021176467497247588, 0.021782280408246944, 0.022369171686812208, 0.022938732833403683, 0.02349234579738033, 0.02474397502791581, 0.024825520741588485, 0.025457652529850102, 0.02564237399426535, 0.02579265313706159, 0.025742791167643435, 0.025695986030313495, 0.02565188725210111, 0.025610201282518612, 0.025570679804407064, 0.025539650284090897, 0.02551008496527315, 0.025481852879667057, 0.025454839845439402, 0.02542894571823434, 0.023928180345160362, 0.022635577371164912, 0.021508261481016984, 0.020514655496693693, 0.019630940755403344, 0.01847846677928836, 0.017457592389147153, 0.016546802799432752, 0.015729049427596477, 0.014990645524033943, 0.01442559573139863, 0.013928309313355324, 0.013485959478340014, 0.013088907721334718, 0.012729747985637451, 0.011925470156748967, 0.011216308850708052, 0.010586357786616528, 0.010023067602153152, 0.009516405019434784, 0.008035082629021743, null, null, null, null], "ZhaoEtAl2016Asc": [0.04498194778871637, 0.06098952698845353, 0.0723669337394275, 0.07476288398845347, 0.07702436558848433, 0.0776292115857142, 0.0782006711333457, 0.07783273918991628, 0.07719868586715366, 0.07598344812394069, 0.07485921885896987, 0.07327900403832925, 0.07181125382839014, 0.06800860397448617, 0.06471128179117251, 0.06136738935277065, 0.0580142663548672, 0.05505665581171765, 0.052038672313041434, 0.049354010443547404, 0.046859117616844796, 0.0445315949157125, 0.04243024244722612, 0.04043231736515583, 0.038614855475957485, 0.03692489144199373, 0.03534846418004025, 0.033899629108424034, 0.030700278166040096, 0.028043960599174238, 0.025824223588223356, 0.023926260959767878, 0.02228906381733216, 0.02085934591578118, 0.01962204909336054, 0.018523020285816993, 0.017559567676809697, 0.016692142595189145, 0.015237823177352096, 0.014021696707014766, 0.013006488173217791, 0.012148142891874728, 0.011400502794565096, 0.010755222076278485, 0.010182596069433813, 0.009670842821611087, 0.009210612776130469, 0.008794389730395242, 0.006139638701185811, 0.004809009199744171, 0.004059444581541048, null, null], "BindiEtAl2017Rjb": [0.015835442309823047, 0.019614062323019224, 0.022080450824014195, 0.022959634241964073, 0.023763407523342595, 0.024356408127597085, 0.024424123994429725, 0.024592144198019035, 0.024895009509357795, 0.025116044282217354, 0.025272689575908596, 0.025359078444456933, 0.025407239992774684, 0.025316428603373103, 0.024873119587120487, 0.024796718467543107, 0.024547808127841537, 0.024266568674949734, 0.02388241626682075, 0.023325964053017668, 0.022940334800449644, 0.02270704254710691, 0.022403898459211678, 0.022097243631868716, 0.021782258310909228, 0.021349823434454386, 0.020849944217944984, 0.02057137823497727, 0.019684819214073748, 0.01903096273836422, 0.0185968165938284, 0.01840438143608618, 0.017996872456929228, 0.017548262182069698, 0.016973898964628028, 0.016354934727977728, 0.015683626439749753, 0.014944133805717264, 0.0142370677618423, 0.013717121404237932, 0.013088757763332046, 0.01227291998696685, 0.011644731825776966, 0.010912862413931043, 0.010088883408188625, 0.009446436884056712, 0.00872896235296893, 0.008227333075426578, 0.005099917509162536, null, null, null, null]}}]}
\ No newline at end of file
diff --git a/tests/trellis/data/test_magnitude_imt_trellis.json b/tests/trellis/data/test_magnitude_imt_trellis.json
new file mode 100644
index 0000000..5311888
--- /dev/null
+++ b/tests/trellis/data/test_magnitude_imt_trellis.json
@@ -0,0 +1 @@
+{"xvalues": [4.0, 4.1, 4.199999999999999, 4.299999999999999, 4.399999999999999, 4.499999999999998, 4.599999999999998, 4.6999999999999975, 4.799999999999997, 4.899999999999997, 4.9999999999999964, 5.099999999999996, 5.199999999999996, 5.299999999999995, 5.399999999999995, 5.499999999999995, 5.599999999999994, 5.699999999999994, 5.799999999999994, 5.899999999999993, 5.999999999999993, 6.0999999999999925, 6.199999999999992, 6.299999999999992, 6.3999999999999915, 6.499999999999991, 6.599999999999991, 6.69999999999999, 6.79999999999999, 6.89999999999999, 6.999999999999989, 7.099999999999989, 7.199999999999989, 7.299999999999988, 7.399999999999988, 7.499999999999988, 7.599999999999987, 7.699999999999987, 7.7999999999999865, 7.899999999999986, 7.999999999999986], "xlabel": "Magnitude", "figures": [{"column": 0, "row": 0, "yvalues": {"AkkarBommer2010": [0.011032251104918732, 0.012536431547490443, 0.014202988291591992, 0.01604285005682974, 0.018066720247329936, 0.02028491140281627, 0.022707164730974366, 0.025342456282747672, 0.028198791822940616, 0.03128299294731948, 0.03460047749106992, 0.0381550377473335, 0.0419486204529022, 0.04598111288461601, 0.05025013972808515, 0.054750875613912675, 0.059475878350521115, 0.06441494790348591, 0.06955501606771487, 0.07488007154245424, 0.08037112474496538, 0.08600621618561217, 0.09176047157811298, 0.09760620608137084, 0.10351307917566656, 0.10944830068266688, 0.11537688736645496, 0.12126196842625701, 0.12706513703859507, 0.13274684395758016, 0.13826682806897153, 0.1435845777490302, 0.14865981593528985, 0.1534530010037472, 0.1579258348936023, 0.16204176945087626, 0.1657665016955845, 0.16906844866779802, 0.17191919268392175, 0.1742938882371875, 0.1761716224003949], "CauzziFaccioli2008": [0.006424766320336083, 0.007302260742143207, 0.00829960332992416, 0.009433162943161473, 0.010721544099752527, 0.012185892322179369, 0.0138502411878507, 0.015741906779570852, 0.017891936010043887, 0.020335616178527, 0.023113054122719013, 0.026269834471198864, 0.02985776779996585, 0.033935740972181105, 0.03857068361728927, 0.04383866661183473, 0.04982615059075947, 0.05663140498034262, 0.06436612084262343, 0.07315724400207418, 0.08314905854066819, 0.0945055548566514, 0.10741312115272202, 0.12208360252759587, 0.13875777787822252, 0.15770931167721708, 0.17924924548395535, 0.20373110290613783, 0.2315566917968784, 0.2631826989157248, 0.2991281852883116, 0.33998310528204734, 0.3864179892169478, 0.4391949484272023, 0.49918018339378417, 0.5673582002374836, 0.6448479689002098, 0.7329212882102876, 0.8330236592478978, 0.9467980095942533, 1.0761116578381311], "ChiouYoungs2008": [0.004742401589392745, 0.006012305054829614, 0.00749173028356776, 0.009171803030179112, 0.011035799442260795, 0.013063422438517552, 0.01523532128404994, 0.01753648051744254, 0.01995784561091955, 0.022496342022492986, 0.025153874840949164, 0.027935928681575975, 0.03085020146244956, 0.03390548544584046, 0.037110848464060556, 0.04047508302994857, 0.04400636094314083, 0.047712030967356905, 0.05159850914734802, 0.055671225516439736, 0.05993460315309647, 0.06439205467766022, 0.06904598756724865, 0.07389781374611239, 0.07894796142556262, 0.08419588863901176, 0.08964009871610272, 0.0952781583175454, 0.10110671877355124, 0.10712154143817754, 0.1133175276550495, 0.11968875376762264, 0.12622851142491975, 0.1329293532476252, 0.13978314373989686, 0.14678111516608, 0.15391392796319073, 0.1611717351326155, 0.16854424994980552, 0.17602081624991814, 0.18359048049056578], "ZhaoEtAl2006Asc": [0.01108424508969395, 0.012345813615218516, 0.013747436656510896, 0.015303827621984857, 0.017031049473344752, 0.018946592078968184, 0.021069442248038056, 0.023420142682082735, 0.02602083527957528, 0.0288952833494118, 0.03206886635053192, 0.03556853981131562, 0.03942275214465417, 0.043661309234856345, 0.04831517702758297, 0.05341621202768349, 0.05899680975353637, 0.06508946198626976, 0.0717262152808229, 0.07893802586843893, 0.08675400995225642, 0.09520059360383472, 0.10430057304336213, 0.11407210392986954, 0.12452764711982717, 0.1356729076754254, 0.14750581298414067, 0.16001558373293506, 0.1731819570423172, 0.18697462312910154, 0.20135293435449075, 0.21626593764322544, 0.23165276774315935, 0.24744342001037756, 0.2635598984849099, 0.27991770982393893, 0.2964276485985809, 0.3129977972112767, 0.32953564680052055, 0.3459502359843482, 0.36215420330237835], "AkkarEtAlRjb2014": [0.008518984789911718, 0.00944005382741947, 0.010454837466663258, 0.011572209503990051, 0.012801812928168317, 0.014154119330417247, 0.01564049219749707, 0.017273254276139866, 0.019065759200219988, 0.021032467574608454, 0.023189027711553126, 0.02555236121659743, 0.028140753621414927, 0.030973950260406054, 0.03407325758639311, 0.03746165011816239, 0.04116388320884594, 0.045206611819112244, 0.04961851547274009, 0.05443042956428781, 0.059675483179126555, 0.06538924357499024, 0.07160986746128145, 0.07837825919758026, 0.08573823601600138, 0.09373670035315453, 0.10242381935636824, 0.11185321160544286, 0.1189935280619449, 0.1233177564782578, 0.12772740119156534, 0.1322204782940455, 0.13679479057619373, 0.14144792504312853, 0.14617725096016404, 0.15097991845265005, 0.15585285768371818, 0.16079277863206773, 0.16579617149025788, 0.1708593077021671, 0.17597824165632375], "BindiEtAl2014Rjb": [0.005620414434536419, 0.006603575787832012, 0.007725715559815603, 0.009000092739863687, 0.010440083606446311, 0.012058955447452965, 0.01386960608343556, 0.015884270882484557, 0.018114200259587713, 0.020569312049963307, 0.023257824591898176, 0.026185877798267167, 0.02935715087797828, 0.03277248662440249, 0.03642953324969519, 0.04032241554399938, 0.04444144761228899, 0.048772899531355, 0.05329882992793016, 0.05799699567295429, 0.06284084860041542, 0.06779962739567576, 0.0728385505828394, 0.07791911392095976, 0.08299949256417206, 0.0880350451411534, 0.09297891357247323, 0.0977827090922339, 0.10346537117769575, 0.11050242024727537, 0.11801808413303942, 0.12604491513638683, 0.1346176795568848, 0.14377350827418386, 0.1535520575715467, 0.1639956808975588, 0.1751496123099659, 0.1870621623961806, 0.19978492751904292, 0.2133730132941315, 0.22788527326656316], "CauzziEtAl2014": [0.011878444981568812, 0.013521974703096502, 0.015349765759879093, 0.017375787251612353, 0.0196140976502617, 0.022078688920342978, 0.02478331132755343, 0.027741279578333645, 0.03096526140280012, 0.03446705019586573, 0.03825732385687889, 0.04234539250556436, 0.04673893828853759, 0.05144375101184401, 0.056463463825300486, 0.0617992936275854, 0.0674497912403402, 0.07341060669850062, 0.07967427520681605, 0.08623002940450326, 0.0930636435485117, 0.10015731506069644, 0.10748958857806959, 0.11503532719443457, 0.12276573498624375, 0.1306484341797828, 0.13864759944949995, 0.14672415085164753, 0.15483600581086632, 0.16293838941157238, 0.17098420102619816, 0.17892443406692077, 0.18670864440717433, 0.1942854618163244, 0.20160313761826087, 0.20861012075488067, 0.21525565353956894, 0.22149037765244117, 0.22726694038346845, 0.23254059079235764, 0.2372697553408309], "DerrasEtAl2014": [0.0057372281034543905, 0.006631051253834599, 0.007698986165868282, 0.008973982656461765, 0.010493440188713739, 0.012298757971682563, 0.01443427115499898, 0.016945397406645288, 0.01987587591617718, 0.023264105194512632, 0.02713877609238729, 0.0315142234883084, 0.03638612477969633, 0.0417282792527926, 0.047491145837356044, 0.05360258027984282, 0.05997084336430508, 0.06648954869614723, 0.07304389437432117, 0.07951735869736347, 0.08579805816067736, 0.09178413151255203, 0.09738775852299879, 0.10253767538546132, 0.10718025823876655, 0.11127938701811005, 0.11481537209445303, 0.11778323897680619, 0.12019064039957761, 0.12205561830820796, 0.12340438451731946, 0.12426923729848063, 0.12468668683146586, 0.12469582723714273, 0.12433696678188823, 0.12365050974581412, 0.12267607190292354, 0.12145180504761834, 0.12001390314701375, 0.11839626236295321, 0.11663026847857584], "AbrahamsonEtAl2014": [0.0035770997559480865, 0.004387018950829215, 0.0053782527553358165, 0.006590941732098717, 0.008074021792691065, 0.009887134401404752, 0.01210294879678062, 0.014809984681693623, 0.018116042769694904, 0.02215237356189046, 0.02707874263085562, 0.029434302088017138, 0.03198517289953557, 0.03474668476942179, 0.03773529569311365, 0.04096866877523273, 0.04446575378224615, 0.04824687368425557, 0.05233381645103949, 0.05674993237864941, 0.06152023723430003, 0.06667152151898376, 0.07223246615917425, 0.07823376495114458, 0.08470825409380299, 0.09169104915852, 0.09921968985717304, 0.10733429298254275, 0.11429238141319548, 0.11979376399777238, 0.12552228938892185, 0.13148530076349588, 0.1376902752778883, 0.14414482125018604, 0.15085667500760772, 0.15783369738924316, 0.16508386989437576, 0.17261529046697963, 0.18043616890732522, 0.18855482190201425, 0.19697966766418148], "BooreEtAl2014": [0.003386179383194544, 0.00407969573993938, 0.004920219601537749, 0.005939913172497099, 0.007178184297469513, 0.00868336407294046, 0.010514782996994303, 0.012745342660543042, 0.015464704143241663, 0.018783244587573116, 0.022836971484033537, 0.02779363203173091, 0.03386031510336062, 0.04129291908753569, 0.050407954322249836, 0.06159726919794205, 0.06419153768388919, 0.06689506797745828, 0.06971246181616068, 0.07264851474711538, 0.07570822428965404, 0.07889679844170733, 0.08221966454445073, 0.08568247852029977, 0.0892911344999781, 0.09305177485504523, 0.0969708006529601, 0.10105488255247694, 0.1053109721579182, 0.10974631385165048, 0.11436845712490541, 0.11918526942793177, 0.12420494956135357, 0.12943604163152553, 0.13488744959364274, 0.14056845240735497, 0.1464887198306852, 0.15265832887913483, 0.15908778097798928, 0.16578801983702235, 0.1727704500780215], "ChiouYoungs2014": [0.0028759424052704234, 0.0034584531969675176, 0.004153641254156031, 0.004982866606832281, 0.005976706721668987, 0.007168492844020639, 0.008627995117030612, 0.010448122754355138, 0.012689870320742282, 0.01534517669370848, 0.018385715256352183, 0.021769440257221037, 0.02502608882349464, 0.028352457076434644, 0.031837237100431064, 0.03550716102893943, 0.03937347995057304, 0.04344437768683251, 0.04772698117920329, 0.05222717103136435, 0.05694912128865217, 0.06189493352050232, 0.06706439336804229, 0.07245482168897574, 0.07806099366156422, 0.08387510817211466, 0.08988679699391779, 0.09608316781486292, 0.10244887775958175, 0.10896623537985098, 0.11561532964806706, 0.122374184597718, 0.12921893810605029, 0.13612404302707956, 0.14310121514261082, 0.15022038371723542, 0.15747453376879086, 0.16485291971983645, 0.17234441955325547, 0.1799376018342291, 0.18762079523963865], "CampbellBozorgnia2014": [0.004366411408555421, 0.0051962347801069635, 0.006183710079812837, 0.0073587662927675195, 0.008757005080468163, 0.01042077224552351, 0.012241353763254642, 0.014379755892479758, 0.01689136821227906, 0.019841199241581932, 0.02330553435644365, 0.027373875032211132, 0.032151205648760325, 0.037760641233631466, 0.04434651764013478, 0.052077994891106844, 0.05628112506045185, 0.06082245383627396, 0.0657290315292408, 0.07103164832578601, 0.07676844243480405, 0.08296453503107304, 0.08965778917574467, 0.0968882663325552, 0.10469894602230506, 0.11313609247633989, 0.11636068688767807, 0.11967633338754548, 0.12308567755885892, 0.12659140662851331, 0.13019626306488757, 0.1339030530307497, 0.13771465219046908, 0.14163401009005538, 0.145664153740573, 0.14980819074821644, 0.15406931218639439, 0.1584507953254745, 0.16295600629117615, 0.1675884026967063, 0.17235153627826522], "KothaEtAl2016Italy": [0.006724409842282473, 0.00782511255269429, 0.009070579345846473, 0.01047339483973739, 0.012046140996039281, 0.013801186471699508, 0.015750448369614804, 0.017905128203966333, 0.020275424913972367, 0.02287022883183977, 0.02569680160431065, 0.02876044814470075, 0.032064187711537975, 0.03560843212548875, 0.03939067990135014, 0.04340523564002105, 0.04764296435263965, 0.05209109043638593, 0.05673305075681432, 0.06154841069233351, 0.06651285105120723, 0.07159823248175919, 0.076772742377949, 0.08200112736544848, 0.08724501228266983, 0.0924633042055976, 0.09761267757574496, 0.10264813395819217, 0.10734738432745224, 0.11196864892733072, 0.11678885723353122, 0.12181657369793283, 0.12706073146885272, 0.13253064826329033, 0.13823604292246378, 0.14418705268005774, 0.15039425117386168, 0.1568686672328029, 0.16362180447275404, 0.17066566173593284, 0.17801275441021047], "KothaEtAl2016Other": [0.008092155597355556, 0.009416741368894444, 0.010915536254678187, 0.012603684585490414, 0.014496327495491563, 0.01660834942791096, 0.01895409142578018, 0.02154703339258608, 0.024399448732986898, 0.027522036073809004, 0.030923534081598366, 0.03461032668966488, 0.03858604727407714, 0.04285119141987371, 0.04740274883946632, 0.052233865688904924, 0.05733354892151572, 0.06268642437535821, 0.06827255997248695, 0.07406736468686867, 0.08004157280029944, 0.08616132141365299, 0.09238832723306793, 0.09868016634371958, 0.10499065807162673, 0.11127035118718229, 0.11746710770819285, 0.1235267765127684, 0.12918185496141862, 0.13474308532599652, 0.14054372457022804, 0.14659407915651454, 0.15290489923659473, 0.15948739775220472, 0.16635327035801267, 0.17351471620223052, 0.18098445960182127, 0.18877577265081688, 0.1969024988019153, 0.20537907746325668, 0.21422056965408148], "KothaEtAl2016Turkey": [0.00563475351511728, 0.0065570929637917665, 0.007600738213750827, 0.008776234609815196, 0.010094125270923574, 0.011564774576232784, 0.013198168522880483, 0.015003693476791313, 0.016989895691087626, 0.019164224864974, 0.021532765932365118, 0.024099964172423674, 0.02686834958822833, 0.029838267267006377, 0.033007621076476965, 0.03637163852792247, 0.0399226649108468, 0.04364999484372409, 0.04753974916359025, 0.05157480457508667, 0.05573478268749433, 0.059996103987593495, 0.0643321109399401, 0.06871326279975881, 0.07310740290472212, 0.07748009722961842, 0.08179504090179654, 0.08601452725326843, 0.08995228806167516, 0.09382470029697901, 0.09786381842540967, 0.10207681907308941, 0.10647118781720069, 0.11105473248621428, 0.11583559703268527, 0.1208222760032695, 0.12602362963166772, 0.13144889958131553, 0.13710772536579022, 0.14301016147611048, 0.1491666952453589], "ZhaoEtAl2016Asc": [0.027952492457389278, 0.03089111206455337, 0.034116702366237664, 0.03765291214883824, 0.041524478508875196, 0.045757099453575506, 0.050377262597239535, 0.05541202440902709, 0.06088873479564098, 0.06683470247046161, 0.07327679763997663, 0.08024099009478017, 0.08775182287901352, 0.09583182435908297, 0.10450086471583087, 0.11377546659367001, 0.12366808374724601, 0.1341863658555797, 0.14533243197853007, 0.15710217909522545, 0.16948465541686694, 0.18246153030211643, 0.19600669321942063, 0.2100860129415471, 0.22465728476631652, 0.239670387926772, 0.255067667569883, 0.27078454605132224, 0.28675035734296084, 0.302889386802044, 0.319122087265335, 0.3353664323186782, 0.34212693077844225, 0.34902311809538705, 0.35605768135914456, 0.3632333586597588, 0.3705529399209278, 0.37801926773849376, 0.38563523822365725, 0.3934038018503039, 0.40132796430581497], "BindiEtAl2017Rjb": [0.003954900170468174, 0.004731488975951627, 0.005645666922300138, 0.006718739227677495, 0.007974719769939867, 0.009440569407899817, 0.011146436879466877, 0.013125898613694497, 0.015416193137652369, 0.018058445081400188, 0.02109787309867537, 0.024583975343396063, 0.028570685491532397, 0.03311649169562464, 0.03828451032881602, 0.044142505942227066, 0.05076284855077606, 0.058222399205946414, 0.06660231483740797, 0.0759877635759951, 0.0864675422337824, 0.09813358833562931, 0.11108038008944407, 0.1254042189634602, 0.14120239111576297, 0.1585722057947109, 0.16034523895716082, 0.16213809682078814, 0.163951001050245, 0.16578417578866692, 0.1676378476853864, 0.16951224592395586, 0.17140760225048252, 0.1733241510022816, 0.1752621291368489, 0.1772217762611581, 0.17920333466128432, 0.18120704933236073, 0.1832331680088685, 0.18528194119526667, 0.18735362219696333]}, "ylabel": "Mean PGA (g)"}, {"column": 1, "row": 0, "yvalues": {"AkkarBommer2010": [0.022554388893631313, 0.02600802048200986, 0.02988153701756021, 0.03420723463428357, 0.039016867662991506, 0.04434107670862267, 0.050208756863704754, 0.05664637234234819, 0.0636772261384617, 0.07132069568103386, 0.07959144780280393, 0.08849864857192626, 0.09804518556824811, 0.10822692192192818, 0.1190320027777238, 0.1304402357127064, 0.14242256693607006, 0.15494067476725584, 0.1679467008698947, 0.18138313798188122, 0.195182890418194, 0.209269520451512, 0.22355768984330585, 0.23795380138065872, 0.2523568403755452, 0.2666594108333903, 0.28074895554879126, 0.29450914390834154, 0.3078214058557442, 0.32056658549011385, 0.3326266833099364, 0.34388665235808824, 0.3542362106257969, 0.3635716301689479, 0.37179746258106394, 0.37882816081946213, 0.38458955891990637, 0.38902017384310994, 0.39207229751293604, 0.3937128519285897, 0.3939239859200373], "CauzziFaccioli2008": [0.01057989572576302, 0.01202927954266971, 0.01367722046289412, 0.015550919647935375, 0.017681304659278037, 0.020103539953388764, 0.022857607311541045, 0.02598896578512998, 0.029549302049634373, 0.03359738355268142, 0.03820002853840519, 0.04343320895946693, 0.04938330448156981, 0.056148528279255296, 0.06384054815738233, 0.07258632975676461, 0.08253023226819696, 0.09383639124704156, 0.1066914278594726, 0.12130752927960581, 0.13792595108301306, 0.1568209994476571, 0.17830455889305746, 0.202731240293232, 0.23050423413729382, 0.262081965652504, 0.29798566164024864, 0.33880795392427376, 0.38522266142099576, 0.43799591229621165, 0.49799878979221157, 0.5662217104592191, 0.6437907721204228, 0.7319863414125674, 0.8322641877108689, 0.946279512277985, 1.0759142692658346, 1.223308229534797, 1.3908943000344307, 1.5814386817327004, 1.7980865289465535], "ChiouYoungs2008": [0.008758329786801777, 0.011214436492204478, 0.014133916285880172, 0.01752072045974415, 0.021358864308434183, 0.025617501969526703, 0.03025885953437666, 0.0352464784994278, 0.040551534186557624, 0.046156175726593536, 0.052054063068754874, 0.058248985383407066, 0.06475256403365591, 0.07158180648823766, 0.07875694783317985, 0.08629974749988746, 0.0942322441714808, 0.10257589559573771, 0.11135100967612296, 0.12057638082963212, 0.13026906338295674, 0.14044423248246882, 0.15111509881929705, 0.1622928554891009, 0.17398664384208182, 0.18620353095542191, 0.19894849511241727, 0.212224418007244, 0.22603208376698988, 0.24037018561641094, 0.2552353413275507, 0.2706221186449518, 0.28652307175699493, 0.3029287896609677, 0.31982795698808986, 0.3372074275450274, 0.35505231051153263, 0.37334606892466105, 0.3920706297896711, 0.4112065048942066, 0.43073292117188067], "ZhaoEtAl2006Asc": [0.022531890585180316, 0.025180363942571633, 0.02812985280951599, 0.03141220523587693, 0.03506210225037461, 0.03911718775648696, 0.043618174357578185, 0.048608916282210576, 0.054136439147402654, 0.06025091486431776, 0.06700556864371404, 0.07445650391332746, 0.08266243016452719, 0.0916842784825249, 0.10158468999464866, 0.11242736392823137, 0.124276254644148, 0.137194611128871, 0.15124385816452846, 0.16648232584292358, 0.18296384320243797, 0.2007362223222302, 0.21983967076007274, 0.2403051820748312, 0.2621529653919832, 0.2853909844037401, 0.3100136825754287, 0.336000973398345, 0.3633175712092819, 0.39191272868365185, 0.42172043145054644, 0.45266007890764787, 0.4846376545002094, 0.517547360413602, 0.5512736632492031, 0.5856936714558065, 0.6206797445871733, 0.6561022208837511, 0.6918321444985052, 0.7277438772304635, 0.7637174912593295], "AkkarEtAlRjb2014": [0.016829365027900858, 0.01875798040519328, 0.02089314026365835, 0.02325523092190671, 0.025866453491695546, 0.02875096413343441, 0.03193502297129684, 0.03544715198766137, 0.039318302206495424, 0.0435820304622522, 0.04827468603463099, 0.05343560740991524, 0.0591073294063023, 0.06533580087343004, 0.07217061314494233, 0.07966523938717976, 0.08787728494670104, 0.09686874875410786, 0.10670629579134752, 0.11746154057411128, 0.1292113415399419, 0.14203810616606102, 0.1560301065685835, 0.17128180525659267, 0.1878941906304501, 0.205975121723626, 0.2256396815913145, 0.24701053864712647, 0.2633819360064707, 0.2735438700692984, 0.2839012356881001, 0.2944468232538796, 0.305172754714132, 0.3160704809593636, 0.32713078147765984, 0.33834376636135366, 0.3496988807412734, 0.3611849117147703, 0.3727899978237128, 0.38450164112800644, 0.3963067219089119], "BindiEtAl2014Rjb": [0.011863253071960313, 0.014109932376458844, 0.016700996678222998, 0.019672346575819136, 0.023060369630288183, 0.026901263691146975, 0.031230246982116735, 0.03608066024234829, 0.04148297105046883, 0.04746369567098078, 0.054044259174060805, 0.061239819969920985, 0.06905809001386977, 0.0774981865006489, 0.08654955458772728, 0.09619100328145, 0.10638989782153084, 0.11710155147984405, 0.12826885747505745, 0.13982219759248052, 0.15167965807045636, 0.16374757544742907, 0.17592142553459733, 0.18808705776533852, 0.20012226524618873, 0.21189866834898585, 0.2232838771576226, 0.23414388607378087, 0.2484770740334393, 0.26782161935710486, 0.28867218464351696, 0.31114601721434987, 0.3353694923807989, 0.36147882407979454, 0.38962083083497623, 0.41995376134959145, 0.4526481843738162, 0.4878879478504084, 0.5258712127321898, 0.5668115672847381, 0.6109392281402487], "CauzziEtAl2014": [0.020506092502357777, 0.023454707352593824, 0.026750129534597576, 0.03042079255608159, 0.0344956175460698, 0.0390037252140105, 0.0439741057477359, 0.049435247085835785, 0.05541472294811786, 0.06193874304578474, 0.06903166900386831, 0.07671550069104162, 0.08500933884067866, 0.09392883103261152, 0.10348560925471072, 0.11368672834184436, 0.12453411555981542, 0.1360240424256641, 0.14814663049584767, 0.16088540327456127, 0.17421689656326597, 0.18811033946115535, 0.20252741781251035, 0.21742213116537085, 0.23274075324956728, 0.24842190460297636, 0.2643967442845823, 0.28058928563359475, 0.29691683879750047, 0.31329058030065515, 0.32961624730993727, 0.34579495153456097, 0.36172410493925605, 0.3772984467248519, 0.39241115841167773, 0.40695505142383837, 0.4208238093893121, 0.43391326551087167, 0.44612269388842823, 0.45735609263816507, 0.46752343610049923], "DerrasEtAl2014": [0.013779637222059169, 0.015849077380092735, 0.018331343880602122, 0.021309661846953598, 0.024880154435427817, 0.0291510704428561, 0.03424022450778126, 0.04026999725402059, 0.047359370109199765, 0.055612836801978684, 0.06510667085777305, 0.07587386479939011, 0.08788988871514616, 0.10106193832009405, 0.11522425973572442, 0.13014131720848054, 0.14551915109076505, 0.16102365170396873, 0.17630314359600988, 0.1910120139131576, 0.20483224711970108, 0.21749049419339087, 0.22876939321437695, 0.23851294077335264, 0.24662655613427478, 0.25307298340976864, 0.25786535589488774, 0.2610586816804148, 0.26274080002543077, 0.26302359063815367, 0.2620349540936961, 0.25991185563654473, 0.2567945502149991, 0.2528219838637191, 0.24812828840807036, 0.24284024317383607, 0.23707555925590973, 0.23094184060738662, 0.22453608524459107, 0.21794460447569736, 0.2112432549966315], "AbrahamsonEtAl2014": [0.006661855600196853, 0.008227610713724659, 0.010157468737550449, 0.012535215932798981, 0.01546373241304518, 0.019069306881135704, 0.023506919896169126, 0.028966712048768984, 0.03568190162357106, 0.043938475250873535, 0.05408704707903137, 0.05940369609583548, 0.06520382708791869, 0.07152734910198505, 0.07841706724340164, 0.08591885589208569, 0.09408183901509459, 0.10295857757982055, 0.11260526404085965, 0.1230819238399754, 0.13445262382204118, 0.14678568743034773, 0.16015391650215188, 0.17463481943977652, 0.19031084548392707, 0.20726962476414937, 0.22560421374653938, 0.2454133456409448, 0.2626981437501217, 0.2767092586581581, 0.291292834071661, 0.30646108465554145, 0.3222257855105554, 0.3385982203123233, 0.35558912827815636, 0.3732086500970661, 0.3914662729697207, 0.41037077491634466, 0.4299301685215812, 0.4501516442960821, 0.4710415138449631], "BooreEtAl2014": [0.006256972420621077, 0.0076327238864370706, 0.009290328638926787, 0.011282850037045183, 0.013672337435395487, 0.016531144968553752, 0.01994340525017754, 0.024006669175158053, 0.028833722529207163, 0.034554589316798126, 0.04131873056847307, 0.04929744583439068, 0.05868648256489768, 0.06970885607455168, 0.08261787973997814, 0.09770040145541663, 0.11528023813056701, 0.13572179513981053, 0.15943385210741698, 0.18687349024061342, 0.19720660950957292, 0.2027876287519585, 0.20852659288199935, 0.21442797179783651, 0.22049636189736457, 0.22673648965822168, 0.23315321531909278, 0.2397515366651973, 0.2465365929209057, 0.2535136687525194, 0.26068819838433116, 0.2680657698311702, 0.2756521292507312, 0.28345318541907516, 0.2914750143327888, 0.2997238639413862, 0.3082061590136404, 0.3169285061416324, 0.3258976988864175, 0.3351207230693163, 0.34460476221294956], "ChiouYoungs2014": [0.006158756515356632, 0.0075782431322911105, 0.009311221189325123, 0.011423628029146838, 0.013994462464752883, 0.017118079333264882, 0.020910702971513054, 0.025509369954841384, 0.0310562275022927, 0.037645807991743614, 0.04550591289282393, 0.05453308690509013, 0.06282062900000136, 0.07043627649354628, 0.0780286952680209, 0.08596644505666634, 0.09439232841402122, 0.10336282822045521, 0.11290401488303753, 0.12302851963553871, 0.13374036887413765, 0.1450364198761328, 0.15690689257869572, 0.16933566786285076, 0.18230052327991922, 0.19577335027395196, 0.20972036952931472, 0.22410235716581967, 0.2388748941464518, 0.25398865006054416, 0.26938971007701623, 0.28501995084531156, 0.3008174679617258, 0.31671705464530003, 0.33273987643912956, 0.34904169494523946, 0.36560147601753473, 0.382389807324184, 0.3993766376252487, 0.41653145145132997, 0.4338234495603399], "CampbellBozorgnia2014": [0.008416911815415614, 0.010204602516294698, 0.01237198568777284, 0.014999705242221864, 0.018185533271016914, 0.022048007944873133, 0.02638875856582482, 0.031584104123443986, 0.03780229489736025, 0.045244705815362114, 0.05415235794220551, 0.06481372390104201, 0.07757407000455749, 0.09284663763896506, 0.11112602600785096, 0.1330042096334894, 0.14155334344129455, 0.15065199135143545, 0.1603354745736936, 0.17064775725074938, 0.18163867079497067, 0.19333340888796202, 0.20577975140562496, 0.21902698746742155, 0.2331271180374823, 0.2481353201640587, 0.2524466992402468, 0.2568322095840082, 0.26129333895623214, 0.2658315322223763, 0.2704482176620509, 0.2751448219076661, 0.2799227789284009, 0.2847835357223721, 0.28972855610467235, 0.29475932335094895, 0.2998773421303575, 0.30508413998489914, 0.3103812685124162, 0.3157703043522442, 0.3212528500374683], "KothaEtAl2016Italy": [0.013149600482661821, 0.015522575316917787, 0.01823927170559791, 0.02133259604760822, 0.02483547244051941, 0.028780189003111183, 0.03319765115208037, 0.03811654884433585, 0.04356244891061999, 0.049556827931535506, 0.05611606548405998, 0.06325042182902232, 0.07096302801066687, 0.07924891967847988, 0.0880941484964082, 0.09747500656189718, 0.10735739962479904, 0.1176964039166306, 0.12843603896332106, 0.13950928480715216, 0.15083836662099137, 0.1623353228485862, 0.1739028649130707, 0.1854355274408479, 0.19682109815704177, 0.20794230648718484, 0.21867873985662434, 0.2289089471484959, 0.23978488444711601, 0.25222567450142164, 0.26531193166901995, 0.2790771448033137, 0.29355654026420136, 0.308787172065351, 0.3248080166985956, 0.34166007287811584, 0.35938646645966327, 0.3780325608033184, 0.397646072862219, 0.41827719529432983, 0.43997872490975537], "KothaEtAl2016Other": [0.016219793399403364, 0.019146814764376727, 0.022497810424769362, 0.02631336982605364, 0.03063410424468335, 0.03549984048882297, 0.04094869982872746, 0.047016070805236086, 0.053733489639777386, 0.0611274473045114, 0.06921814771018785, 0.07801824670221347, 0.087531606366804, 0.09775210326775316, 0.10866253238584031, 0.12023365045379834, 0.1324234028332196, 0.14517637687149287, 0.15842352167045412, 0.17208216932933607, 0.1860563860112571, 0.2002376727339565, 0.21450602580462455, 0.2287313556001744, 0.2427752503173149, 0.2564930588320669, 0.26973625442028115, 0.28235502933485107, 0.29577030048632663, 0.31111578909430776, 0.3272574496648912, 0.3442365900905933, 0.3620966614466409, 0.3808833691859943, 0.40064479010351933, 0.42143149536862295, 0.443296679941212, 0.4662962987021502, 0.49048920964659565, 0.5159373245066522, 0.542705767188797], "KothaEtAl2016Turkey": [0.012810614873109713, 0.015122416417599002, 0.017769078664747664, 0.02078265971425253, 0.024195234908218375, 0.02803826000495586, 0.032341843705586175, 0.03713393636412735, 0.04243944571998928, 0.04827929470564094, 0.054669440646380615, 0.06161987930216696, 0.06913366100156451, 0.07720594937082866, 0.0858231556502451, 0.09496218310699096, 0.10458981641193073, 0.11466228989344227, 0.12512506620686023, 0.13591285311244902, 0.14694988075252124, 0.1581504551455544, 0.169419795732137, 0.1806551559470499, 0.19174721625321905, 0.2025817292126761, 0.2130413863853822, 0.2230078675618291, 0.2336034323700846, 0.2457235093498425, 0.2584724138451248, 0.2718827713949394, 0.2859889002533377, 0.3008268992127684, 0.31643473998397936, 0.3328523643688795, 0.3501217864750328, 0.36828720023335887, 0.3873950924941895, 0.40749436199110173, 0.4286364444769664], "ZhaoEtAl2016Asc": [0.03566421772190185, 0.04008153619153176, 0.04502958858287074, 0.050567959523941636, 0.056761863398005284, 0.0636824050440418, 0.07140677642388694, 0.080018363906751, 0.08960673593257575, 0.10026747572937417, 0.11210181876400423, 0.12521605012283127, 0.13972061363016913, 0.1557288829773908, 0.1733555463934223, 0.19271456153423625, 0.21391664749694494, 0.23706629734859652, 0.26225831828521057, 0.2895739380569105, 0.31907655543777047, 0.35080725806321306, 0.38478028033878015, 0.4209786232471815, 0.4593501011416395, 0.4998041112287073, 0.5422094321558936, 0.5863933422860564, 0.632142301197145, 0.6792043584222915, 0.7272933447027649, 0.7760947713518188, 0.7917729257208881, 0.8077677998173547, 0.8240857918041291, 0.8407334290955837, 0.8577173709686037, 0.8750444112263951, 0.8927214809160915, 0.910755651101266, 0.9291541356904534], "BindiEtAl2017Rjb": [0.0060608212685863945, 0.007347711178558341, 0.008881275704772906, 0.010702895943946732, 0.012859673124678254, 0.015404983287630191, 0.018399041923129945, 0.021909469498267258, 0.026011846977646927, 0.030790248537141393, 0.036337736729047276, 0.042756803429817566, 0.05015973804689599, 0.05866890274663747, 0.06841689296621355, 0.07954656027070361, 0.09221087379903602, 0.10657259619843958, 0.12280375016587153, 0.14108485258248316, 0.16160389482270487, 0.18455505021136437, 0.21013709284395524, 0.23855151611130837, 0.27000034429198794, 0.3046836364784119, 0.3115714941174022, 0.3186150627207308, 0.3258178623821197, 0.3331834927725997, 0.34071563493948265, 0.3484180531460038, 0.35629459675254893, 0.36434920214040967, 0.3725858946790314, 0.38100879073772986, 0.3896220997428896, 0.39843012628166513, 0.407437272253242, 0.4166480390687306, 0.42606702990079015]}, "ylabel": "Mean SA(0.2) (g)"}, {"column": 0, "row": 1, "yvalues": {"AkkarBommer2010": [0.00010354799372843864, 0.00014327015337182208, 0.00019667255639439126, 0.00026785872665052783, 0.0003619443795036583, 0.0004852347263869171, 0.0006454103285466403, 0.0008517143181882884, 0.0011151312469952644, 0.001448545103377614, 0.0018668613282756695, 0.0023870751765604353, 0.0030282667885369106, 0.003811502163977825, 0.004759619199747699, 0.005896879385396898, 0.007248468933607797, 0.008839838260882799, 0.010695875917304806, 0.01283992222542383, 0.015292638772753908, 0.01807076204868546, 0.0211857822544197, 0.024642600783002563, 0.028438231056495258, 0.03256061622686533, 0.03698764260804943, 0.04168642862583776, 0.04661296478044491, 0.051712170162583046, 0.05691841540287427, 0.06215654098928689, 0.0673433745705587, 0.0723897225547313, 0.07720278178560801, 0.08168888838752504, 0.08575649518139268, 0.08931924850021812, 0.09229902162233568, 0.09462875681007231, 0.09625497191643273], "CauzziFaccioli2008": [0.00032333367196303266, 0.0003949143312749602, 0.0004823417496219811, 0.0005891241340299915, 0.000719546349799886, 0.0008788418596410492, 0.0010734027272491051, 0.0013110361121583538, 0.001601277548258367, 0.001955773576926934, 0.0023887490887297444, 0.0029175781267446557, 0.0035634810561813316, 0.0043523760756774355, 0.005315919238933469, 0.0064927747197178, 0.007930166292267503, 0.009685772283463595, 0.01183004003567835, 0.014449012752931166, 0.017647782163435086, 0.02155470554380106, 0.0263265563217681, 0.03215481493610816, 0.03927335238754559, 0.0479678147991548, 0.05858708556124386, 0.07155728500313066, 0.08739886935776356, 0.10674751515071083, 0.13037962704307035, 0.159243492683557, 0.19449733472301584, 0.2375557869075995, 0.29014665920052246, 0.3543802697509913, 0.4328341257997819, 0.5286563515189528, 0.6456920130429131, 0.7886374097454923, 0.9632285230214621], "ChiouYoungs2008": [0.0001480130633832283, 0.00019966145622718517, 0.00026787700247815735, 0.0003572747532775369, 0.00047343867315816426, 0.000622994299744563, 0.0008136355236015936, 0.0010540881711512378, 0.0013539958262568604, 0.0017237196519332874, 0.002174053794932714, 0.002715870209925028, 0.0033597193470325266, 0.004115423359127636, 0.004991703601238513, 0.005995882428135311, 0.007133690470960592, 0.008409196315705822, 0.009824858815691574, 0.011381686622002351, 0.013079477849168875, 0.014917106774430144, 0.016892824254509865, 0.01900454303698944, 0.021250086546430996, 0.023627388138809095, 0.026134635689472826, 0.028770362724128872, 0.03153349170892202, 0.034423337625012845, 0.03743958088200002, 0.040582218404948876, 0.04385150079093003, 0.047247862132363976, 0.05077184771022623, 0.0544240434408674, 0.058205009809170566, 0.06211522207490807, 0.06615501779876475, 0.07032455217908137, 0.0746237612901933], "ZhaoEtAl2006Asc": [0.00023062427517893608, 0.00029426833771993175, 0.00037418373294900107, 0.0004741592552152631, 0.0005987645968764072, 0.0007534849257878741, 0.0009448720124353788, 0.0011807122355332407, 0.0014702112625147163, 0.00182419449615445, 0.002255321473428804, 0.0027783112712681775, 0.0034101745924998705, 0.004170446555915325, 0.005081412287931542, 0.00616831521416858, 0.007459535500885925, 0.008986723447702837, 0.010784869866680749, 0.012892292722483215, 0.01535051672775486, 0.01820402041864817, 0.02149982377270918, 0.025286889035669953, 0.02961530851661542, 0.034535256161130144, 0.04009568520854347, 0.04634276264924714, 0.05331804290468455, 0.06105639837501778, 0.06958374319426862, 0.07891460828589092, 0.08904964973334521, 0.09997319712188513, 0.11165097182871098, 0.12402812465062335, 0.13702775467661352, 0.15055007383226726, 0.1644723712174991, 0.17864990617612875, 0.19291781822029136], "AkkarEtAlRjb2014": [0.0001696752324790969, 0.0002172234434966699, 0.0002770397566977505, 0.0003519854101999528, 0.0004455068536706124, 0.000561734734380873, 0.0007055947330416823, 0.0008829305495902642, 0.0011006390551204276, 0.001366817267747217, 0.0016909203719028883, 0.0020839294789109287, 0.0025585272208750766, 0.0031292785825095797, 0.003812813613143117, 0.004628007835092409, 0.005596155291563331, 0.006741128279587894, 0.008089516919641849, 0.009670740857930184, 0.011517124620038708, 0.013663927480998355, 0.01614931823616275, 0.01901428500169013, 0.02230247019570549, 0.026059921202834718, 0.0303347479531674, 0.035176679792332854, 0.03960843345892312, 0.04330508074260105, 0.047166885635894974, 0.051177929539641065, 0.05531913553249603, 0.0595683018581686, 0.0639001998641487, 0.0682867392809132, 0.07269720210305368, 0.07709854454190378, 0.08145576461405186, 0.08573233097074406, 0.08989066662491489], "BindiEtAl2014Rjb": [9.472072240054088e-05, 0.00012915604368334495, 0.00017491168551218814, 0.00023526497494858197, 0.0003142896563144193, 0.00041700115671859433, 0.0005495140377453233, 0.0007192082870414779, 0.0009348995150490893, 0.0012070063255761381, 0.0015477061835397349, 0.001971069098568642, 0.002493156500787161, 0.0031320709580125784, 0.0039079410524817575, 0.00484282500114423, 0.0059605166766895454, 0.0072862387709436965, 0.008846210117575545, 0.010667077791004368, 0.012775209588974322, 0.015195848864347094, 0.017952141266899518, 0.021064051538127876, 0.024547197696708743, 0.028411639265974634, 0.03266066503248533, 0.0372896335191288, 0.04073511266034798, 0.04279486624999717, 0.0449587704009925, 0.047232091442026475, 0.04962036199145477, 0.05212939442211946, 0.05476529500701505, 0.0575344787802245, 0.060443685149291985, 0.06349999429702802, 0.06671084441266607, 0.0700840497943041, 0.07362781986668908], "CauzziEtAl2014": [0.00019941130352758914, 0.0002573460678480813, 0.00033035204972202853, 0.00042182098307939404, 0.0005357609523061905, 0.0006768705845538407, 0.0008506128293550413, 0.0010632855725272224, 0.001322085731488021, 0.0016351628812247571, 0.002011657896653926, 0.0024617216066230184, 0.0029965080813000736, 0.003628136965887163, 0.004369619278790874, 0.005234741359673963, 0.006237902225706876, 0.007393900507974149, 0.008717668417112419, 0.010223951834205566, 0.011926937625993667, 0.013839831605713079, 0.015974393140405416, 0.018340435154587456, 0.0209453010862665, 0.023793333080037025, 0.02688534820195149, 0.03021814157028715, 0.03378403685168264, 0.037570505417939694, 0.041559875458404436, 0.04572915138931251, 0.05004996192786714, 0.05448865218716406, 0.05900653113605237, 0.06356028085271163, 0.06810252833882414, 0.07258257446526004, 0.07694726815085433, 0.08114200743028555, 0.08511184296396825], "DerrasEtAl2014": [0.00017352412434884517, 0.00021201576605706083, 0.0002623474740737837, 0.00032872655155101997, 0.0004169130917878009, 0.0005347360609222605, 0.0006927111898918532, 0.0009047222416669256, 0.0011886762939189567, 0.001566977424066061, 0.00206659709197099, 0.0027184843483713124, 0.0035560952038520403, 0.0046129595751282495, 0.005919441509773886, 0.007499124208647825, 0.009365461787724138, 0.01151938256808132, 0.013948361718861388, 0.016627152548242555, 0.019519993059744938, 0.0225838144752259, 0.025771849369591, 0.02903707452632088, 0.03233507658873516, 0.03562612509091126, 0.03887641663484478, 0.042058581659000324, 0.04515161357165512, 0.048140398498626814, 0.051015009108467166, 0.05376989420180483, 0.056403059283110304, 0.05891529971283713, 0.06130952082187054, 0.06359015941157789, 0.06576270770187619, 0.06783333272403375, 0.06980857997238084, 0.0716951485799161, 0.07349972538013412], "AbrahamsonEtAl2014": [0.00016155619536653072, 0.0002134175627090506, 0.0002818187821201494, 0.0003720011458548342, 0.000490856789692811, 0.0006474457780406037, 0.0008536743672963006, 0.0011251844840024948, 0.0014825199378553644, 0.001952655152992672, 0.00257099871723812, 0.0030421854220016586, 0.0035898049249390614, 0.004224325398961086, 0.004957300288026834, 0.0058014217243019936, 0.006770566280554846, 0.007879830910742142, 0.009145556768005892, 0.010585338452774751, 0.01221801614257225, 0.014063647998029378, 0.01614346023512392, 0.018479772310295007, 0.021095894790801813, 0.02401599768469265, 0.027264947289042187, 0.030868109986181478, 0.03431509443332021, 0.037456754153132585, 0.04077335325424046, 0.04426128991079545, 0.047915171869103365, 0.05172772534436858, 0.05568972324166002, 0.059789935527391126, 0.06401510436281369, 0.0683499463194868, 0.07277718362990153, 0.07727760598819534, 0.0818301639122456], "BooreEtAl2014": [8.485241440846453e-05, 0.0001110628185411, 0.00014504312351771074, 0.00018899467300716793, 0.00024571176383935496, 0.0003187324655737687, 0.00041252533114874857, 0.0005327198842251628, 0.0006863903355839745, 0.0008824038190487143, 0.0011318465846987455, 0.0014485440846451934, 0.001849693778384279, 0.002356632817378745, 0.0029957665907819377, 0.003799688476150131, 0.004808526090899288, 0.006071554931411808, 0.007649126563628055, 0.009614965533459615, 0.012058896932036406, 0.015090075104183543, 0.018840793339751857, 0.02029056105653868, 0.021851885988286173, 0.02353335227717523, 0.0253442046008526, 0.027294398999536746, 0.029394657614184957, 0.03165652763667102, 0.03409244479608147, 0.03671580173017639, 0.03954102161792067, 0.042583637477915874, 0.045860377568714986, 0.04938925736054876, 0.05318967858412395, 0.05728253590106179, 0.06169033178244909, 0.06643730022710302, 0.07154953999975049], "ChiouYoungs2014": [0.0001448222443165086, 0.00019185320040825357, 0.0002538155855801573, 0.000335264452704447, 0.0004420348190489982, 0.0005815382672201693, 0.0007547330812894382, 0.0009572113584391334, 0.0011920313852623386, 0.0014662171952913603, 0.001787967218537299, 0.002175728548511215, 0.0026591270113788127, 0.003258920427710426, 0.003995123471355109, 0.0048855608264165955, 0.005944173260108173, 0.007179426557083228, 0.008593284223772039, 0.010181129527899596, 0.01193276167347945, 0.01383424628514879, 0.015870136215923966, 0.018025518135804348, 0.020287485523088154, 0.02264588527582247, 0.025093407337582804, 0.027625211632284995, 0.030238310472169082, 0.03293088416284693, 0.03570164467217756, 0.03854930480374782, 0.041472169674741835, 0.04446784385717852, 0.04754567371461582, 0.05073479802758812, 0.054039956315820585, 0.057464190801931554, 0.061009903892024014, 0.06467887799695789, 0.06847230318137087], "CampbellBozorgnia2014": [0.00016599799091040836, 0.00021859756179927809, 0.0002878642913839819, 0.00037907948090515017, 0.0004991979107670406, 0.0006573781137379213, 0.0008529800039249828, 0.0011067829486424425, 0.001436104586003161, 0.001863415391851671, 0.002417871899047109, 0.0031373061238870606, 0.004070806943435801, 0.005282069557877058, 0.006853741580460089, 0.008893062300112331, 0.010218790103109448, 0.011742149964482747, 0.013492603762009739, 0.015504005384811018, 0.01781581008785132, 0.020472989268714083, 0.02352638255052845, 0.027035179568727155, 0.031067364138586993, 0.03570105185687252, 0.037991746748395935, 0.040429344376827575, 0.0430232856395458, 0.045783611362397454, 0.04872100310538584, 0.05184682555286916, 0.05517317108876175, 0.058712906939007985, 0.06247972517073287, 0.0664881957988957, 0.07075382323801804, 0.0752931063360411, 0.0801236022337458, 0.08526399430368292, 0.09073416443579282], "KothaEtAl2016Italy": [0.00020453804264694588, 0.000260614639498593, 0.0003310139014928537, 0.00041909875612756466, 0.0005289434261522835, 0.0006654643421167047, 0.0008345705746022195, 0.0010433356817776116, 0.0013001928273326142, 0.0016151549201496352, 0.0020000613474620093, 0.0024688526043441543, 0.003037873750631727, 0.0037262071385245872, 0.004556034237816002, 0.00555302563012813, 0.006746757340293074, 0.008171150616914933, 0.009864931064171611, 0.011872101667205056, 0.014242422754268692, 0.017031890317468414, 0.020303202395658478, 0.024126201441616594, 0.02857827879384956, 0.03374472560332257, 0.039719012888186196, 0.04660298187482346, 0.051093092308541255, 0.05246586764437069, 0.053875526872670026, 0.05532306099428858, 0.05680948763640538, 0.058335851767928666, 0.05990322643411674, 0.06151271351093663, 0.06316544447969111, 0.06486258122245837, 0.06660531683890372, 0.06839487648503753, 0.07023251823450875], "KothaEtAl2016Other": [0.0002061595353117741, 0.00026268068413667163, 0.00033363804224574676, 0.0004224211970295365, 0.0005331366699836791, 0.0006707398670776505, 0.0008411867035505874, 0.0010516068138030428, 0.00131050021614449, 0.0016279591976409613, 0.0020159170032713006, 0.002488424642565897, 0.003061956752207266, 0.0037557469613592924, 0.004592152585296609, 0.0055970477113524, 0.0068002428308017795, 0.008235928105821511, 0.009943136141098072, 0.011966218759166763, 0.014355330767499718, 0.01716691207117515, 0.02046415775306312, 0.024317463947903885, 0.028804835520598104, 0.034012239774937475, 0.04003388872848933, 0.04697243096258846, 0.05149813712724375, 0.05288179525587153, 0.05430262967715215, 0.05576163924817815, 0.05725984966345422, 0.058798314175968244, 0.06037811433763565, 0.0620003607596386, 0.06366619389319376, 0.06537678483129798, 0.06713333613201525, 0.06893708266388396, 0.07078929247403859], "KothaEtAl2016Turkey": [0.0001365465511780403, 0.00017398245211266823, 0.0002209799509954958, 0.0002797840881415124, 0.000353114753982756, 0.000444254084336014, 0.0005571468867202932, 0.0006965153632257537, 0.000867989368340348, 0.0010782533709162239, 0.0013352111695516871, 0.001648169231148897, 0.0020280392742345146, 0.0024875603929522786, 0.0030415406061975224, 0.0037071172119607755, 0.004504034723957515, 0.005454938462581941, 0.0065856810644602205, 0.007925638267156454, 0.00950802932475444, 0.011370236327660955, 0.013554115552881418, 0.01610629278175798, 0.0190784333193234, 0.022527476267759295, 0.02651582148676116, 0.03111145666238673, 0.03410898751874185, 0.03502543188881603, 0.03596649939620789, 0.03693285161832592, 0.037925167907919756, 0.038944145870670306, 0.03999050185561162, 0.041064971458729546, 0.042168310040091174, 0.04330129325486853, 0.04446471759862986, 0.04565940096728197, 0.04688618323205702], "ZhaoEtAl2016Asc": [0.00047254179052974934, 0.0005702508106742026, 0.0006876909483290456, 0.0008286826994755128, 0.0009977300438066153, 0.0012001235690475894, 0.0014420525901166267, 0.0017307246182417244, 0.002074489395806562, 0.0024829632458611968, 0.002967147659575671, 0.003539533853231799, 0.004214182501652993, 0.005006765090625482, 0.0059345505036152105, 0.007016317851285483, 0.008272174574417387, 0.009723258041658535, 0.011391299878377338, 0.013298035823029316, 0.015464450706386919, 0.017909858709406225, 0.02065083354171427, 0.0237000211907438, 0.0270648882593243, 0.030746479609125712, 0.03473827721148883, 0.039025264372319464, 0.04358330238790681, 0.04837891739848747, 0.053369572360503825, 0.05850446337087914, 0.05881536017552047, 0.05912790910749585, 0.059442118946325964, 0.05975799851818573, 0.06007555669615332, 0.060394802400458705, 0.06071574459873473, 0.06103839230626884, 0.061362754586256354], "BindiEtAl2017Rjb": [9.548107396401936e-05, 0.00012593737861455004, 0.00016559885490662334, 0.00021708276056818813, 0.0002836995639392577, 0.0003696215866835803, 0.00048008850984687077, 0.000621656706299936, 0.0008025004053155454, 0.0010327738285227813, 0.001325044652328154, 0.0016948104362660176, 0.0021611109893650967, 0.0027472509996550884, 0.003481648588875104, 0.0043988267290272125, 0.005540565612675961, 0.0069572350363602525, 0.008709326555656887, 0.010869205508609895, 0.013523102876785842, 0.01677336624442688, 0.020740987700795105, 0.02556842427633145, 0.03142272327312818, 0.03849896050794435, 0.0398834192531199, 0.041317664433871415, 0.04280348641713965, 0.044342739953139906, 0.04593734649064565, 0.04758929657553132, 0.04930065233556864, 0.051073550054579135, 0.052910202839155075, 0.0548129033812784, 0.05678402682028611, 0.05882603370775452, 0.06094147307900335, 0.06313298563505435, 0.06540330703901592]}, "ylabel": "Mean SA(2.0) (g)"}, {"column": 1, "row": 1, "yvalues": {"AkkarBommer2010": [5.6894778730101935e-05, 7.81599694375121e-05, 0.00010660897039100818, 0.00014437783236299185, 0.00019413537784762448, 0.00025918284545160326, 0.00034356207860322587, 0.00045216983843799106, 0.0005908746498082436, 0.00076663126367767, 0.000987586385351302, 0.0012631678466004373, 0.001604147986509859, 0.0020226707710113995, 0.0025322312659346174, 0.003147595639180764, 0.0038846500657345254, 0.004760167898621641, 0.005791486380662653, 0.00699608709691055, 0.00839107833908005, 0.009992582529747095, 0.01181503770645104, 0.013870428568859493, 0.016167469423612434, 0.018710768109862545, 0.021500006170762382, 0.024529175625025094, 0.027785916153521793, 0.03125099785010492, 0.0348979934784124, 0.038693180143144705, 0.04259570331424211, 0.04655802633051836, 0.050526676175116164, 0.05444328200321963, 0.05824588736320262, 0.06187050120231587, 0.06525283761125528, 0.06833018089696365, 0.07104330199009046], "CauzziFaccioli2008": [0.00013747931828519904, 0.00016923762419183316, 0.00020833223352679129, 0.00025645786351304707, 0.00031570071824348127, 0.0003886289238090746, 0.0004784038543254656, 0.0005889171747440521, 0.0007249595411339783, 0.0008924282714451381, 0.0010985829890986577, 0.0013523603213315852, 0.0016647612941946164, 0.002049328217438147, 0.0025227317318306463, 0.0031054934668986616, 0.0038228756356713045, 0.004705976129585661, 0.005793076584962231, 0.007131301858556688, 0.008778662849005936, 0.010806571218696675, 0.01330293502705684, 0.016375969468273115, 0.020158887905592063, 0.024815676554450713, 0.03054820314191471, 0.03760496769661195, 0.04629187480827365, 0.05698549432494133, 0.0701493853274987, 0.08635419101159034, 0.10630237557253507, 0.13085867541562168, 0.16108758472520243, 0.19829950035931285, 0.24410752641076086, 0.3004974008628759, 0.36991357559945903, 0.4553651812623106, 0.5605564704404977], "ChiouYoungs2008": [5.477542494772643e-05, 7.451748187871452e-05, 0.00010092022340519509, 0.00013600335727145137, 0.00018228953650543006, 0.0002428805588905172, 0.00032152454440711927, 0.00042266437677164584, 0.0005514561493476038, 0.0007137460518138646, 0.0009159957169832528, 0.0011651499703935193, 0.001468447208160429, 0.0018331806580878852, 0.0022664272641221878, 0.0027747680993017846, 0.003364028233496349, 0.004039063551758052, 0.004803616829388529, 0.005660256302644883, 0.0066103988889159694, 0.007654409399060402, 0.0087917586064803, 0.010021218187769548, 0.01134106963532644, 0.01274930668785726, 0.014243815504951693, 0.015822522448923574, 0.01748350482451239, 0.01922506451091721, 0.021045767736245953, 0.02294445625181575, 0.02492023603725163, 0.02697244968456016, 0.02910063806457527, 0.031304496029881175, 0.03358382595115122, 0.03593849195135319, 0.03836837687156188, 0.0408733433082085, 0.0434531995110768], "ZhaoEtAl2006Asc": [8.729925906976382e-05, 0.0001144102186423685, 0.00014928850627885076, 0.0001939501808780134, 0.00025087114224570806, 0.00032307384726249037, 0.00041422540648743876, 0.0005287471890346385, 0.0006719356049477849, 0.0008500931315124536, 0.0010706678845473741, 0.001342399092394551, 0.0016754646991567824, 0.0020816260029654326, 0.0025743627344880925, 0.0031689903257014233, 0.0038827493540751147, 0.004734855341942144, 0.005746495342977457, 0.0069407561881959685, 0.008342468059197873, 0.009977946409480931, 0.011874615402539278, 0.014060497242402065, 0.01656355431671585, 0.01941087522671862, 0.022627701779263102, 0.02623630202598821, 0.0302547044945616, 0.03469532073139867, 0.03956349679730771, 0.0448560487781785, 0.05055985172832776, 0.05665056447295152, 0.0630915828013086, 0.06983331905099789, 0.07681290517255256, 0.0839544075459278, 0.09116962405964607, 0.09835950699769133, 0.10541621986912475], "AkkarEtAlRjb2014": [6.164845397281618e-05, 8.060165287025957e-05, 0.0001049319202132808, 0.0001360232688407361, 0.0001755742043035476, 0.00022565768314909712, 0.00028878953760396787, 0.0003680058312383424, 0.0004669494409745197, 0.0005899659320476557, 0.0007422084974106333, 0.0009297513660604383, 0.0011597106422550376, 0.0014403710186474403, 0.0017813162134556082, 0.0021935603215452863, 0.00268967655323447, 0.003283919079727045, 0.003992332933279586, 0.004832846152589217, 0.005825337654633796, 0.006991673694118312, 0.008355705286394623, 0.009943218668320607, 0.011781830804796785, 0.013900822166887816, 0.016330899557475968, 0.01910388268298198, 0.021689337943606248, 0.023899238711764748, 0.02622187562565366, 0.02864740933619735, 0.03116368950241191, 0.033756258043722204, 0.03640840404014769, 0.039101273343390565, 0.04181403452475164, 0.04452410117190881, 0.04720740880585326, 0.04983874288112426, 0.05239211252369278], "BindiEtAl2014Rjb": [4.946303698910193e-05, 6.65204804391276e-05, 8.900226852874587e-05, 0.00011847258792642105, 0.00015689379730903107, 0.00020671156425459573, 0.0002709535668693614, 0.00035334265790407153, 0.0004584250812263965, 0.0005917138975756927, 0.0007598472022172524, 0.000970759988327824, 0.0012338676186016875, 0.0015602578126338227, 0.0019628868472557305, 0.0024567743205929833, 0.003059189380805465, 0.003789819814625926, 0.00467091389197399, 0.005727383449926807, 0.006986855465857552, 0.008479658421950666, 0.010238729216979882, 0.012299426355616993, 0.014699235757571772, 0.01747735688521865, 0.020674159076649698, 0.02433050105044343, 0.027267647070934264, 0.029213888225034564, 0.031299043258284774, 0.033533027214244504, 0.035926462827377964, 0.03849073103482557, 0.04123802509347706, 0.044181408559676366, 0.047334877407255074, 0.050713426579269714, 0.054333121289900956, 0.058211173415558974, 0.062366023338440435], "CauzziEtAl2014": [7.997654062706842e-05, 0.00010472316955015299, 0.0001363990400162362, 0.00017671288687970088, 0.0002277264637751492, 0.00029190877823207504, 0.00037219383956308625, 0.000472040844103768, 0.0005954953141855942, 0.0007472492555803504, 0.000932697915329663, 0.0011579902253477737, 0.001430069529922124, 0.0017567007456235754, 0.0021464797235359987, 0.002608820313531433, 0.003153914508571375, 0.0037926611143725237, 0.00453655868507633, 0.005397559022920684, 0.006387878385498685, 0.007519764692890568, 0.008805220479104965, 0.010255683070752255, 0.011881665463861409, 0.01369236354936192, 0.015695237629920006, 0.01789557847660329, 0.020296070377316403, 0.022896365601679486, 0.025692686314187804, 0.02867747107528671, 0.03183908355407418, 0.035161600830807015, 0.0386246976136956, 0.04220364078972414, 0.04586940597297063, 0.04958892415295122, 0.05332546227617544, 0.057039136761259566, 0.0606875537409319], "DerrasEtAl2014": [6.482711829338199e-05, 8.06588676814981e-05, 0.00010170658814982796, 0.00012995169697290049, 0.00016816451204091387, 0.0002201963989683183, 0.000291347963500115, 0.0003888045273539474, 0.0005221040117057292, 0.0007035639485307558, 0.0009485491479901288, 0.0012754245127504823, 0.0017050324176028759, 0.002259585470942472, 0.0029609828663555346, 0.0038287210230653615, 0.004877723567730801, 0.006116496303367879, 0.007545975938165482, 0.009159291979397919, 0.010942452623494622, 0.012875771581663087, 0.014935732146074077, 0.017096958637869798, 0.019334018183804726, 0.021622871849611817, 0.02394189682635918, 0.026272485264969985, 0.028599279667292407, 0.030910130121002483, 0.03319586197047162, 0.03544993224541831, 0.037668036691287, 0.03984771171605635, 0.04198795994485771, 0.04408891562450142, 0.04615155703104964, 0.04817746691708619, 0.0501686382795319, 0.052127320703977686, 0.05405590170057782], "AbrahamsonEtAl2014": [6.855670057728148e-05, 9.064393421690512e-05, 0.00011980040870191487, 0.0001582741220635184, 0.00020902355379940585, 0.00027594095621704637, 0.0003641454777806318, 0.00048036786802650375, 0.0006334552655588246, 0.0008350334135540991, 0.0011003752275323886, 0.0013329478980319543, 0.0016091316260628814, 0.0019358691280140599, 0.002320953526432185, 0.002773083340959991, 0.0033019114802867603, 0.003918085939596428, 0.004633279674917264, 0.005460206923182131, 0.006412623077380916, 0.007505305123403798, 0.00875400961291119, 0.01017540519859583, 0.011786976907617935, 0.013606899587553805, 0.015653878336614867, 0.01794695423310116, 0.02050527431146556, 0.0227759203563864, 0.02505530470435585, 0.027468153700575756, 0.030009950289156078, 0.032674361539145456, 0.03545316168594992, 0.03833618210828098, 0.04131129170137432, 0.04436441064740168, 0.0474795599995471, 0.05063894879552297, 0.053823099612573366], "BooreEtAl2014": [4.3296262127307605e-05, 5.624481946274607e-05, 7.300260829134322e-05, 9.467121580851699e-05, 0.00012266516833663144, 0.0001587991929949831, 0.00020539934303643112, 0.00026544438104720506, 0.0003427454910979466, 0.00044217449772711775, 0.0005699534139243943, 0.0007340214558985306, 0.0009444998156718341, 0.0012142796798887672, 0.0015597654806608272, 0.0020018134789117842, 0.0025669159049488814, 0.0032886934999388794, 0.004209775014592902, 0.005384161766513445, 0.006880199645755979, 0.008784311109850578, 0.011205677102757335, 0.01229145820406523, 0.013482446745239981, 0.01478883686706205, 0.016221810477967558, 0.01779363296441411, 0.019517758175162294, 0.021408943578074834, 0.02348337657510612, 0.025758813056661473, 0.02825472938126807, 0.03099248908141122, 0.033995525722436935, 0.037289543479682614, 0.040902737150654116, 0.044866033485420946, 0.049213355900870906, 0.05398191484461822, 0.05921252629390479], "ChiouYoungs2014": [5.923419982637216e-05, 7.877618712359717e-05, 0.00010462931529647939, 0.0001387533610517709, 0.00018367210503035303, 0.0002426125778754999, 0.000316864603267787, 0.00040611087815397293, 0.0005127202976413442, 0.0006406876674098776, 0.0007932104908849623, 0.0009756055721880524, 0.001204099334799292, 0.001489596460155265, 0.0018437065693804417, 0.0022783381252848255, 0.002805088892012203, 0.0034344610008043438, 0.0041749953572501825, 0.0050324730144177925, 0.006009351989105791, 0.007104580429745588, 0.00831385028526431, 0.00963025142616528, 0.011045191710411573, 0.012549397972299045, 0.014133820044635538, 0.015790313190129017, 0.017512046778795858, 0.019293651915695337, 0.021131162309180072, 0.023021818435560816, 0.02496380122887862, 0.02695594714995786, 0.02900095461177223, 0.031107534532718594, 0.03327806774428478, 0.03551458721607954, 0.037818960713352466, 0.040192818817824195, 0.04263750846581616], "CampbellBozorgnia2014": [7.217216004273757e-05, 9.361508262004388e-05, 0.00012142886798410963, 0.00015750635012253182, 0.00020430273905022343, 0.00026500270719848615, 0.00034931607620651626, 0.0004604546209594875, 0.0006069530502730119, 0.0008000614793876214, 0.0010546093647803326, 0.0013901443088269634, 0.001832433187018511, 0.002415440874422753, 0.003183938524560907, 0.004196941699351577, 0.004952008373278668, 0.00584291817368123, 0.006894110472137784, 0.008134421497827525, 0.009598028866687107, 0.011325167490599362, 0.01336307164131561, 0.01576768977637878, 0.018605029964215085, 0.02195297729436267, 0.023697187522147178, 0.02557995433245163, 0.027612290623268136, 0.029806082540657346, 0.032174159538443804, 0.03473036970104215, 0.037489660893359665, 0.04046816827166256, 0.04368330869740043, 0.04715388262230501, 0.050900184049618706, 0.0549441192197228, 0.0593093347173398, 0.06402135575136252, 0.06910773541712946], "KothaEtAl2016Italy": [0.00010651644578331707, 0.00013229780457641444, 0.00016419176920314413, 0.00020361646911044634, 0.0002523115875399926, 0.0003124095236463117, 0.0003865219016571852, 0.00047784464664067937, 0.0005902855020543659, 0.0007286186491271942, 0.0008986720268645333, 0.0011075540731758982, 0.0013639279466974986, 0.0016783428859237408, 0.002063634265161387, 0.002535406171995605, 0.0031126130248071097, 0.0038182599494657383, 0.004680245433326034, 0.005732374279618654, 0.00701557422231511, 0.008579355878103281, 0.010483563180811175, 0.012800470266040443, 0.015617291185152603, 0.019039181102286612, 0.023192822085049875, 0.02823070361026126, 0.03198296270144394, 0.03374407153524956, 0.03560215400947303, 0.0375625498775444, 0.03963089292090545, 0.041813127139358884, 0.04411552383292216, 0.04654469962427605, 0.0491076354736006, 0.05181169674044378, 0.054664654350275635, 0.057674707126557485, 0.06085050535250317], "KothaEtAl2016Other": [0.00011446393564616999, 0.00014216891370906094, 0.0001764425762189961, 0.00021880886322634714, 0.00027113726060397765, 0.0003357192717699826, 0.00041536138153844347, 0.0005134979718832508, 0.0006343283539282396, 0.0007829829239134912, 0.0009657244596697404, 0.0011901917795356567, 0.0014656944246373579, 0.0018035687416512642, 0.002217607788051641, 0.0027245799160307794, 0.0033448537861254235, 0.004103151000973852, 0.005029451632082322, 0.006160082753576048, 0.007539025832100932, 0.0092194856098983, 0.011265771144035612, 0.01375554914546584, 0.01678254094979188, 0.020459747641985618, 0.02492330339294904, 0.030337075345759936, 0.0343693009798616, 0.03626181106819765, 0.03825853027142235, 0.04036519675690026, 0.0425878646582598, 0.04493292147374966, 0.04740710642261751, 0.05001752981226383, 0.05277169347182799, 0.05567751231092895, 0.05874333706551526, 0.06197797829619237, 0.06539073170799278], "KothaEtAl2016Turkey": [8.157257383248821e-05, 0.00010131649016565214, 0.00012574157086743575, 0.00015593384981893446, 0.00019322561367910313, 0.0002392498993578194, 0.0002960067445823727, 0.0003659436571686761, 0.0004520532706895738, 0.0005579917553066233, 0.0006882222714389569, 0.0008481886129715782, 0.001044525212195932, 0.0012853109017245152, 0.0015803752859025171, 0.0019416683089593899, 0.0023837056701511684, 0.002924105187221796, 0.003584232118867313, 0.004389974906887916, 0.005372676885889225, 0.00657025434575083, 0.008028537051770592, 0.009802874083794249, 0.011960055828898647, 0.01458061236229904, 0.017761559522602933, 0.021619677014718865, 0.0244932373321254, 0.025841932168084298, 0.027264891493292892, 0.02876620460520864, 0.030350185974233123, 0.032021387642628046, 0.0337846123061643, 0.03564492711609897, 0.03760767824114357, 0.039678506231272434, 0.04186336222752291, 0.04416852506437184, 0.04660061931383669], "ZhaoEtAl2016Asc": [0.00020883235075034863, 0.00025533050699158897, 0.0003119698330487867, 0.0003808848558724558, 0.00046463155755859995, 0.0005662606777421503, 0.0006894002423152258, 0.0008383471807375374, 0.0010181672955378858, 0.0012348020191514002, 0.0014951792931212288, 0.001807324498799137, 0.002180465640375745, 0.0026251249445668253, 0.0031531867585517137, 0.003777929228098859, 0.004514004937671598, 0.005377353813191044, 0.00638503055415083, 0.007554929198452597, 0.008905389708303393, 0.010454676253137262, 0.012220324570241413, 0.014218366530783509, 0.01646245350257848, 0.018962915367343184, 0.021725807554251898, 0.0247520120415962, 0.0280364674477789, 0.03156760562386066, 0.03532706568901712, 0.03928974044997035, 0.03933211762737062, 0.039374540511999484, 0.03941700915315631, 0.039459523600193315, 0.03950208390251571, 0.03954469010958222, 0.03958734227090484, 0.039630040436048966, 0.03967278465463347], "BindiEtAl2017Rjb": [4.6151526296485775e-05, 6.036778055547712e-05, 7.883507588655472e-05, 0.00010278480373201617, 0.00013379302464837476, 0.00017387341054729812, 0.0002255942437567837, 0.00029222542247841815, 0.00037792281982298363, 0.000487959050584816, 0.0006290117800742543, 0.0008095232385303393, 0.0010401476728252848, 0.0013343071806815225, 0.0017088808567997187, 0.002185057582472859, 0.002789389283087541, 0.0035550892630935994, 0.00452362954047153, 0.005746702215165174, 0.007288623133955979, 0.00922927182179029, 0.011667680254938419, 0.014726405033634454, 0.018556843417689747, 0.023345684139444652, 0.024780980132524028, 0.02630451832812084, 0.02792172386944121, 0.029638355438269638, 0.03146052576096859, 0.03339472337518987, 0.03544783573480616, 0.037627173735337374, 0.03994049774720343, 0.04239604524950531, 0.04500256016273494, 0.04776932398486415, 0.05070618884168471, 0.053823612569088464, 0.057132695952210426]}, "ylabel": "Mean SA(3.0) (g)"}]}
\ No newline at end of file
diff --git a/tests/trellis/data/test_magnitude_sigma_imt_trellis.json b/tests/trellis/data/test_magnitude_sigma_imt_trellis.json
new file mode 100644
index 0000000..2d015b7
--- /dev/null
+++ b/tests/trellis/data/test_magnitude_sigma_imt_trellis.json
@@ -0,0 +1 @@
+{"xvalues": [4.0, 4.1, 4.199999999999999, 4.299999999999999, 4.399999999999999, 4.499999999999998, 4.599999999999998, 4.6999999999999975, 4.799999999999997, 4.899999999999997, 4.9999999999999964, 5.099999999999996, 5.199999999999996, 5.299999999999995, 5.399999999999995, 5.499999999999995, 5.599999999999994, 5.699999999999994, 5.799999999999994, 5.899999999999993, 5.999999999999993, 6.0999999999999925, 6.199999999999992, 6.299999999999992, 6.3999999999999915, 6.499999999999991, 6.599999999999991, 6.69999999999999, 6.79999999999999, 6.89999999999999, 6.999999999999989, 7.099999999999989, 7.199999999999989, 7.299999999999988, 7.399999999999988, 7.499999999999988, 7.599999999999987, 7.699999999999987, 7.7999999999999865, 7.899999999999986, 7.999999999999986], "xlabel": "Magnitude", "figures": [{"column": 0, "row": 0, "yvalues": {"AkkarBommer2010": [0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326, 0.6485142932641326], "CauzziFaccioli2008": [0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697, 0.7851815167109697], "ChiouYoungs2008": [0.6751606090816367, 0.675133831314116, 0.6751033102570232, 0.6750695001899482, 0.6750330065837737, 0.6749944742287329, 0.6749544860465649, 0.674913500561338, 0.6748718343437922, 0.6748296783672451, 0.6747871311044097, 0.6671083010186701, 0.659430147655438, 0.6517526914577625, 0.6440759594221962, 0.6363999911050988, 0.6287248400436477, 0.6210505724394129, 0.6133772644125474, 0.6057049986791886, 0.5980338611719493, 0.590363937899628, 0.5826953121995904, 0.5750280624485926, 0.5673622602453802, 0.5596979690477976, 0.5520352432298279, 0.5443741275147348, 0.5367146567362022, 0.529056855878246, 0.5214007403456211, 0.521371754569385, 0.5213435696049099, 0.5213162094764001, 0.5212896920516679, 0.5212640294107733, 0.5212392282650042, 0.5212152904087483, 0.5211922131891835, 0.5211699899810502, 0.5211486106560154], "ZhaoEtAl2006Asc": [0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494, 0.6757403347440494], "AkkarEtAlRjb2014": [0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058, 0.7121053433306058], "BindiEtAl2014Rjb": [0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251, 0.7362584912401251], "CauzziEtAl2014": [0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568, 0.7767364049164568], "DerrasEtAl2014": [0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044, 0.710876301829044], "AbrahamsonEtAl2014": [0.8774856124176624, 0.867375927726842, 0.8573149946198304, 0.8473045497340376, 0.8373464038258003, 0.8274424451283607, 0.8175946428395923, 0.8078050507393478, 0.7980758109352772, 0.7884091577347389, 0.7788074216390086, 0.7659250942487787, 0.753053782939838, 0.7401940623917492, 0.7273465473898951, 0.7145118963320352, 0.701690815103063, 0.6888840613630142, 0.676092449299651, 0.6633168549042012, 0.6505582218372167, 0.6470635594746472, 0.6435969235476505, 0.6401587693689749, 0.6367495583037339, 0.6333697577245068, 0.6300198409574101, 0.6267002872186994, 0.6234115815414407, 0.6201542146917978, 0.6169286830744705, 0.6169286830744701, 0.6169286830744701, 0.6169286830744701, 0.6169286830744701, 0.6169286830744701, 0.6169286830744701, 0.6169286830744701, 0.6169286830744701, 0.6169286830744701, 0.6169286830744701], "BooreEtAl2014": [0.8008926270106373, 0.8008926270106373, 0.8008926270106373, 0.8008926270106373, 0.8008926270106373, 0.8008926270106373, 0.7810723397995863, 0.7612942926359035, 0.7415618652546805, 0.7218787986913046, 0.7022492435026192, 0.682677815664169, 0.6631696615497433, 0.6437305336862631, 0.6243668793265712, 0.6050859443087413, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403, 0.6050859443087403], "ChiouYoungs2014": [0.7550257643223476, 0.755011708791177, 0.7549951031744373, 0.7549755320518268, 0.7549524076621166, 0.7549251436746502, 0.7548924286067451, 0.754852634024376, 0.7548050905578882, 0.7547507726363972, 0.7546910840676037, 0.7412189199132471, 0.7277637641535872, 0.7143222927498936, 0.7008936852195506, 0.6874783592445216, 0.6740770514434298, 0.6606905950892791, 0.6473198871633704, 0.6339658906425238, 0.6206296401770663, 0.6073122468421815, 0.5940149026824514, 0.580738886205358, 0.5674855696771319, 0.5542564287789414, 0.5542193601603279, 0.554183289314177, 0.5541483049217105, 0.5541144836650495, 0.5540818897993358, 0.5540505751666381, 0.5540205795721506, 0.5539919314424685, 0.553964500421322, 0.5539379609533527, 0.553912309710591, 0.5538875508208893, 0.5538636832146592, 0.5538407012382631, 0.5538185952401448], "CampbellBozorgnia2014": [0.8400834361764962, 0.840050033319998, 0.8400103539440821, 0.8399632352005533, 0.8399073056470074, 0.8398409506728318, 0.8144241375689488, 0.789024607040569, 0.7636443806203617, 0.7382858864041155, 0.7129520577983087, 0.6876464567345753, 0.6623734271814276, 0.6371382860536337, 0.6119475601194981, 0.5868092792651388, 0.5867180281281305, 0.5866202603700513, 0.5865155846031624, 0.586403564462435, 0.5862836507771453, 0.5861556123872464, 0.586019001339853, 0.5858733840120756, 0.5857183346914292, 0.5855534378371564, 0.5854911168510718, 0.5854274363741275, 0.585362376760211, 0.5852959194068795, 0.5852280465693395, 0.5851587412816145, 0.5850879873344534, 0.5850157692854027, 0.58494207248835, 0.5848668831356404, 0.584790188308852, 0.5847119760359168, 0.5846322353531724, 0.5845509563714351, 0.5844681303454996], "KothaEtAl2016Italy": [0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143], "KothaEtAl2016Other": [0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143], "KothaEtAl2016Turkey": [0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143, 0.659257340221143], "ZhaoEtAl2016Asc": [0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705, 0.679718324013705], "BindiEtAl2017Rjb": [0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061, 0.8024611445204061]}, "ylabel": "Total Std. Dev. (PGA)"}, {"column": 1, "row": 0, "yvalues": {"AkkarBommer2010": [0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741, 0.6956170929827741], "CauzziFaccioli2008": [0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482, 0.8601955943875482], "ChiouYoungs2008": [0.7236225498070687, 0.7235593229342848, 0.7234853950563009, 0.7234012603017272, 0.7233079624101091, 0.7232069057121284, 0.7230996092281746, 0.7229874822058623, 0.7228716771414503, 0.7227530355214983, 0.7226321079368891, 0.7160461465797536, 0.7094611655550227, 0.7028773091304831, 0.696294688875053, 0.6897134204545274, 0.6831336448170757, 0.6765555377622042, 0.6699793116005572, 0.6634052118511484, 0.6568335111201857, 0.6502645016345212, 0.6436984874001341, 0.6371357766023086, 0.6305766746238695, 0.6240214778973813, 0.6174704687003827, 0.6109239109310813, 0.6043820468532817, 0.5978450947659432, 0.5913132475299584, 0.5912097500174508, 0.5911084075925631, 0.5910093654657826, 0.5909127474957411, 0.5908186564707555, 0.5907271747276588, 0.5906383650442977, 0.5905522717453862, 0.5904689219659551, 0.5903883270220457], "ZhaoEtAl2006Asc": [0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374, 0.7590836581036374], "AkkarEtAlRjb2014": [0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663, 0.7675740290030663], "BindiEtAl2014Rjb": [0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782, 0.7725909814224782], "CauzziEtAl2014": [0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202, 0.832195221136202], "DerrasEtAl2014": [0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937, 0.7551355809244937], "AbrahamsonEtAl2014": [0.8876423829448435, 0.8775278357408385, 0.8674599760219488, 0.8574404483694481, 0.8474709670543293, 0.8375533191982468, 0.8276893680602646, 0.8178810564501421, 0.8081304102680461, 0.7984395421696, 0.788810655353996, 0.7759411398424502, 0.7630813587029898, 0.7502318125086412, 0.7373930363110306, 0.7245656026199429, 0.7117501246926489, 0.698947260170609, 0.6861577151063748, 0.673382248429524, 0.6606216769074424, 0.6571805307523956, 0.6537675427856604, 0.6503831563009611, 0.6470278201128606, 0.6437019885008903, 0.6404061211450125, 0.6371406830520245, 0.6339061444725081, 0.6307029808079239, 0.6275316725074523, 0.627531672507452, 0.627531672507452, 0.627531672507452, 0.627531672507452, 0.627531672507452, 0.627531672507452, 0.627531672507452, 0.627531672507452, 0.627531672507452, 0.627531672507452], "BooreEtAl2014": [0.7898461875580587, 0.7898461875580587, 0.7898461875580587, 0.7898461875580587, 0.7898461875580587, 0.7898461875580587, 0.7728510141029773, 0.7558813134348544, 0.7389388405003493, 0.7220255120146384, 0.7051434251271161, 0.6882948786675671, 0.6714823973865592, 0.6547087596786841, 0.6379770293670464, 0.6212905922352285, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278, 0.6212905922352278], "ChiouYoungs2014": [0.8200497158761942, 0.820008165670266, 0.8199579158383531, 0.8198973617939527, 0.8198246814198276, 0.8197378388353788, 0.8196344992053477, 0.8195121895964538, 0.8193688565082686, 0.8192042685744866, 0.8190155947449229, 0.8062717053691032, 0.7935652483427018, 0.7808914160585405, 0.76823551094785, 0.7555907143911573, 0.7429554463239485, 0.7303299864031022, 0.7177152120194966, 0.7051122118629174, 0.6925221588586759, 0.6799462561877914, 0.6673857066077704, 0.654841692461738, 0.642315363117096, 0.6298078286653449, 0.6296867632754618, 0.6295684018691242, 0.6294531523121885, 0.6293413677977353, 0.6292333471001491, 0.6291293362511974, 0.6290295312955183, 0.6289340818232328, 0.6288425984581603, 0.6287540226163965, 0.6286683628826051, 0.6285856503368035, 0.6285058965704767, 0.628429095940019, 0.6283552277088912], "CampbellBozorgnia2014": [0.8330918316728355, 0.8330918316728355, 0.8330918316728355, 0.8330918316728355, 0.8330918316728355, 0.8330918316728355, 0.8140032063818919, 0.7950057106713138, 0.7761060365697465, 0.7573115079014718, 0.7386301510228248, 0.7200707742993053, 0.7016430574016971, 0.6833576515998055, 0.6652262923246504, 0.6472619253439841, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832, 0.6472619253439832], "KothaEtAl2016Italy": [0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133], "KothaEtAl2016Other": [0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133], "KothaEtAl2016Turkey": [0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133, 0.696024153921133], "ZhaoEtAl2016Asc": [0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553, 0.7795800151363553], "BindiEtAl2017Rjb": [0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557, 0.8080404663938557]}, "ylabel": "Total Std. Dev. (SA(0.2))"}, {"column": 0, "row": 1, "yvalues": {"AkkarBommer2010": [0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164, 0.7561064684979164], "CauzziFaccioli2008": [0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829, 0.7595645667758829], "ChiouYoungs2008": [0.7069931002056496, 0.7069902531342813, 0.7069865095434412, 0.7069816321046146, 0.7069753423265775, 0.7069673233633392, 0.7069572279696595, 0.7069446928040394, 0.7069293596300898, 0.7069109028343077, 0.7068890611527928, 0.7055456448806041, 0.704199890821519, 0.7028519197275607, 0.7015019978996134, 0.7001505250624942, 0.698798007958739, 0.6974450237361938, 0.6960921789262071, 0.6947400700342002, 0.6933892506121955, 0.6920402077025929, 0.6906933484218529, 0.6893489957400137, 0.68800739147477, 0.6866687041559403, 0.6853330395592511, 0.6840004521373638, 0.6826709560995365, 0.6813445353812434, 0.6800211521372436, 0.6799929233291367, 0.6799662317651437, 0.6799410077650376, 0.6799171790360616, 0.6798946728505615, 0.6798734175528222, 0.6798533435571025, 0.6798343839697483, 0.6798164749406318, 0.679799555824923], "ZhaoEtAl2006Asc": [0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033, 0.7263952092353033], "AkkarEtAlRjb2014": [0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997, 0.8150865291488997], "BindiEtAl2014Rjb": [0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048, 0.8493246296465048], "CauzziEtAl2014": [0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969, 0.8471602031577969], "DerrasEtAl2014": [0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452, 0.8479549021314452], "AbrahamsonEtAl2014": [0.6717886572427373, 0.6756216563284513, 0.6794751577504508, 0.6833488146620289, 0.6872422862426321, 0.6911552376275535, 0.6950873398357935, 0.699038269696302, 0.7030077097728017, 0.7069953482873843, 0.711000879043057, 0.7114208125294057, 0.7119231981049641, 0.7125078613601397, 0.7131745999402951, 0.7139231838930572, 0.7147533560606762, 0.7156648325158921, 0.7166573030396047, 0.7177304316385086, 0.718883857100714, 0.7157228863184412, 0.7125903451493012, 0.7094866101625881, 0.7064120610521881, 0.7033670805489836, 0.7003520543269651, 0.6973673709028838, 0.6944134215292792, 0.6914906000807244, 0.6885993029331356, 0.6885993029331354, 0.6885993029331354, 0.6885993029331354, 0.6885993029331354, 0.6885993029331354, 0.6885993029331354, 0.6885993029331354, 0.6885993029331354, 0.6885993029331354, 0.6885993029331354], "BooreEtAl2014": [0.7481310045707236, 0.7481310045707236, 0.7481310045707236, 0.7481310045707236, 0.7481310045707236, 0.7481310045707236, 0.7404565686115562, 0.7333793834026153, 0.7269168934616943, 0.721085625983489, 0.7159010057263507, 0.711377171407686, 0.7075267980790553, 0.7043609302055305, 0.7018888302288335, 0.7001178472228802, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801, 0.7001178472228801], "ChiouYoungs2014": [0.7603021416916436, 0.7602995636185452, 0.7602961795337296, 0.7602917526341555, 0.7602859860455005, 0.7602785134249929, 0.760269332254543, 0.7602587315149792, 0.7602466131855637, 0.7602326965600761, 0.7602166776932983, 0.7555695767936519, 0.7509715366025258, 0.7464231067501725, 0.7419250863821005, 0.7374785830197966, 0.7330850421991596, 0.7287462275529634, 0.7244641432406991, 0.7202409113512821, 0.7160786348396074, 0.7119792811824204, 0.7079446111648662, 0.7039761585184365, 0.7000752500449984, 0.6962430485278834, 0.6962077731991885, 0.6961744735317967, 0.6961430736599141, 0.6961134768336541, 0.6960855802900289, 0.6960592838326354, 0.6960344940524112, 0.6960111258021351, 0.6959890149528111, 0.6959678993442672, 0.6959477216823697, 0.6959284394167614, 0.6959100151043066, 0.6958924149833591, 0.6958756078713721], "CampbellBozorgnia2014": [0.7272152363640355, 0.7272152363640355, 0.7272152363640355, 0.7272152363640355, 0.7272152363640355, 0.7272152363640355, 0.7248012279239048, 0.7225629937936208, 0.7205021720994325, 0.7186202891652865, 0.716918754113742, 0.7153988537871725, 0.7140617480302387, 0.7129084653726592, 0.7119398991487976, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373, 0.7111568040875373], "KothaEtAl2016Italy": [0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113], "KothaEtAl2016Other": [0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113], "KothaEtAl2016Turkey": [0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113, 0.805998580719113], "ZhaoEtAl2016Asc": [0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719, 0.7371037918773719], "BindiEtAl2017Rjb": [0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092, 0.8089673416900092]}, "ylabel": "Total Std. Dev. (SA(2.0))"}, {"column": 1, "row": 1, "yvalues": {"AkkarBommer2010": [0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823, 0.7794038310516823], "CauzziFaccioli2008": [0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976, 0.6982775803896976], "ChiouYoungs2008": [0.7267704081163687, 0.7267683253853964, 0.7267655496202244, 0.7267618782508618, 0.72675706391752, 0.726750811737899, 0.7267427801799763, 0.7267325873502549, 0.7267198245060944, 0.7267040781267649, 0.7266849607538826, 0.7255221617468708, 0.7243565446876818, 0.7231880512797502, 0.7220167952388279, 0.7208430731589099, 0.7196673544666858, 0.7184902505863882, 0.717312467926233, 0.7161347526169531, 0.7149578360316314, 0.7137823888495165, 0.7126089885257966, 0.7114381016478961, 0.7102700798217505, 0.7091051659933497, 0.7079435075202807, 0.7067851725818145, 0.705630167262332, 0.7044784515218228, 0.7033299530597904, 0.7033020077120418, 0.7032758868172352, 0.7032514791497557, 0.7032286724706329, 0.7032073568118545, 0.7031874266103294, 0.7031687819838411, 0.7031513293881145, 0.7031349818427467, 0.7031196588686283], "ZhaoEtAl2006Asc": [0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651, 0.722615388709651], "AkkarEtAlRjb2014": [0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606, 0.8082581580163606], "BindiEtAl2014Rjb": [0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432, 0.8297894977175432], "CauzziEtAl2014": [0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796, 0.8388582348773796], "DerrasEtAl2014": [0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503, 0.8676713813383503], "AbrahamsonEtAl2014": [0.6660960891643186, 0.6697908927419064, 0.6735055753295587, 0.6772398098162865, 0.6809932745629723, 0.6847656533442663, 0.6885566352886303, 0.6923659148167245, 0.6961931915783146, 0.7000381703878723, 0.7039005611590318, 0.7041398227624964, 0.7044603324531481, 0.7048619793973853, 0.705344624988381, 0.705908103084247, 0.7065522202923149, 0.7072767562984097, 0.7080814642398147, 0.7089660711204732, 0.7099302782668168, 0.7067292621647984, 0.7035566785981072, 0.7004129139300619, 0.6972983579501678, 0.6942134037887775, 0.6911584478250992, 0.6881338895883564, 0.6851401316519128, 0.6821775795201719, 0.6792466415080757, 0.6792466415080755, 0.6792466415080755, 0.6792466415080755, 0.6792466415080755, 0.6792466415080755, 0.6792466415080755, 0.6792466415080755, 0.6792466415080755, 0.6792466415080755, 0.6792466415080755], "BooreEtAl2014": [0.7573143336818603, 0.7573143336818603, 0.7573143336818603, 0.7573143336818603, 0.7573143336818603, 0.7573143336818603, 0.7498796836826561, 0.74296942063587, 0.7365983030118928, 0.7307804321408724, 0.7255291172654619, 0.7208567402750703, 0.7167746228766755, 0.7132928991655533, 0.7104203966666499, 0.7081645289055363, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362, 0.7081645289055362], "ChiouYoungs2014": [0.7550684240471404, 0.7550664624816358, 0.7550638755375294, 0.7550604750537036, 0.755056023110894, 0.7550502228597233, 0.7550429818963617, 0.7550343747420323, 0.7550242279691257, 0.75501223822346, 0.7549982114247873, 0.7503398843414477, 0.7457296457241546, 0.7411679952980821, 0.7366555901193783, 0.7321933054424536, 0.7277822877409625, 0.723423983333852, 0.7191201268819064, 0.7148726828413862, 0.7106837471358407, 0.706555429666096, 0.7024897442363457, 0.6984885282824068, 0.6945534032657623, 0.6906857738308853, 0.6906488628073658, 0.6906144198307423, 0.6905824144118291, 0.6905527437297437, 0.6905252629856794, 0.6904998081245233, 0.6904762114047074, 0.6904543111212209, 0.6904339239674189, 0.6904148417145558, 0.6903969466157075, 0.690380138014122, 0.6903643277989788, 0.6903494387323884, 0.6903354028311479], "CampbellBozorgnia2014": [0.726449585312016, 0.726449585312016, 0.726449585312016, 0.726449585312016, 0.726449585312016, 0.726449585312016, 0.7244993443751347, 0.7226751690766744, 0.7209780163084032, 0.7194087850450536, 0.7179683140640678, 0.7166573797847895, 0.7154766942395818, 0.7144269031888427, 0.7135085843912461, 0.712722246039788, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878, 0.7127222460397878], "KothaEtAl2016Italy": [0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311], "KothaEtAl2016Other": [0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311], "KothaEtAl2016Turkey": [0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311, 0.793032477575311], "ZhaoEtAl2016Asc": [0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135, 0.6935776813018135], "BindiEtAl2017Rjb": [0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394, 0.7905637556402394]}, "ylabel": "Total Std. Dev. (SA(3.0))"}]}
\ No newline at end of file
diff --git a/tests/trellis/trellis_test.py b/tests/trellis/trellis_test.py
new file mode 100644
index 0000000..a2a5421
--- /dev/null
+++ b/tests/trellis/trellis_test.py
@@ -0,0 +1,236 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+#
+# Copyright (C) 2014-2017 GEM Foundation and G. Weatherill
+#
+# OpenQuake is free software: you can redistribute it and/or modify it
+# under the terms of the GNU Affero General Public License as published
+# by the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# OpenQuake is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with OpenQuake. If not, see .
+"""
+Tests for generation of data for trellis plots
+"""
+import unittest
+import os
+import json
+import numpy as np
+import smtk.trellis.trellis_plots as trpl
+import smtk.trellis.configure as rcfg
+
+
+BASE_DATA_PATH = os.path.join(os.path.dirname(__file__), "data")
+
+
+class BaseTrellisTest(unittest.TestCase):
+ """
+ This core test is designed to run a series of trellis plot calculations
+ and ensure compatibility with previously generated results
+ """
+
+ TEST_FILE = None
+
+ def setUp(self):
+ self.imts = ["PGA", "SA(0.2)", "SA(2.0)", "SA(3.0)"]
+ self.periods = [0.05, 0.075, 0.1, 0.11, 0.12, 0.13, 0.14, 0.15, 0.16,
+ 0.17, 0.18, 0.19, 0.20, 0.22, 0.24, 0.26, 0.28, 0.30,
+ 0.32, 0.34, 0.36, 0.38, 0.40, 0.42, 0.44, 0.46, 0.48,
+ 0.5, 0.55, 0.6, 0.65, 0.7, 0.75, 0.8, 0.85, 0.9, 0.95,
+ 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2.0,
+ 3.0, 4.001, 5.0, 7.5, 10.0]
+
+ self.gsims = ["AkkarBommer2010", "CauzziFaccioli2008",
+ "ChiouYoungs2008", "ZhaoEtAl2006Asc", "AkkarEtAlRjb2014",
+ "BindiEtAl2014Rjb", "CauzziEtAl2014", "DerrasEtAl2014",
+ "AbrahamsonEtAl2014", "BooreEtAl2014", "ChiouYoungs2014",
+ "CampbellBozorgnia2014", "KothaEtAl2016Italy",
+ "KothaEtAl2016Other", "KothaEtAl2016Turkey",
+ "ZhaoEtAl2016Asc", "BindiEtAl2017Rjb"]
+
+ def compare_jsons(self, old, new):
+ """
+ Compares the json data from file with the new data from trellis plot
+
+ This version works with the magnitude IMT and distance IMT trellis
+ plots. Magnitude-distance Spectra has a slightly different means of
+ comparison, so this will be over-ridden in that test
+ """
+ # Check x-labels are the same
+ self.assertEqual(old["xlabel"], new["xlabel"])
+ # Check x-values are the same
+ np.testing.assert_array_almost_equal(old["xvalues"], new["xvalues"], 7)
+ for i in range(len(old["figures"])):
+ self.assertEqual(old["figures"][i]["ylabel"],
+ new["figures"][i]["ylabel"])
+ self.assertEqual(old["figures"][i]["column"],
+ new["figures"][i]["column"])
+ self.assertEqual(old["figures"][i]["row"],
+ new["figures"][i]["row"])
+
+ for gsim in old["figures"][i]["yvalues"]:
+ np.testing.assert_array_almost_equal(
+ old["figures"][i]["yvalues"][gsim],
+ new["figures"][i]["yvalues"][gsim], 7)
+
+
+class DistanceTrellisTest(BaseTrellisTest):
+ TEST_FILE = "test_distance_imt_trellis.json"
+
+ def _run_trellis(self, rupture):
+ """
+ Executes the trellis plotting - for mean
+ """
+ return trpl.DistanceIMTTrellis.from_rupture_model(rupture,
+ self.gsims,
+ self.imts,
+ distance_type="rrup")
+
+ def test_distance_imt_trellis(self):
+ """
+ Tests the DistanceIMT trellis data generation
+ """
+ reference = json.load(open(
+ os.path.join(BASE_DATA_PATH, self.TEST_FILE), "r"))
+ # Setup rupture
+ rupture = rcfg.GSIMRupture(6.5, 60., 1.5,
+ hypocentre_location=(0.5, 0.5))
+ _ = rupture.get_target_sites_line(250.0, 1.0, 800.0)
+ # Get trellis calculations
+ trl = self._run_trellis(rupture)
+ # Parse the json formatted string to a dictionary string
+ results = json.loads(trl.to_json())
+ # Compare the two dictionaries
+ self.compare_jsons(reference, results)
+
+
+class DistanceSigmaTrellisTest(DistanceTrellisTest):
+ TEST_FILE = "test_distance_sigma_imt_trellis.json"
+
+ def _run_trellis(self, rupture):
+ """
+ Executes the trellis plotting - for standard deviation
+ """
+ return trpl.DistanceSigmaIMTTrellis.from_rupture_model(
+ rupture,
+ self.gsims,
+ self.imts,
+ distance_type="rrup")
+
+
+class MagnitudeTrellisTest(BaseTrellisTest):
+ TEST_FILE = "test_magnitude_imt_trellis.json"
+
+ def _run_trellis(self, magnitudes, distance, properties):
+ """
+ Executes the trellis plotting - for mean
+ """
+ return trpl.MagnitudeIMTTrellis.from_rupture_model(properties,
+ magnitudes,
+ distance,
+ self.gsims,
+ self.imts)
+
+ def test_magnitude_imt_trellis(self):
+ """
+ Tests the MagnitudeIMT trellis data generation
+ """
+ reference = json.load(open(
+ os.path.join(BASE_DATA_PATH, self.TEST_FILE), "r"))
+ magnitudes = np.arange(4., 8.1, 0.1)
+ distance = 20.
+ properties = {"dip": 60.0, "rake": -90.0, "aspect": 1.5, "ztor": 0.0,
+ "vs30": 800.0, "backarc": False, "z1pt0": 50.0,
+ "z2pt5": 1.0, "line_azimuth": 90.0}
+ trl = self._run_trellis(magnitudes, distance, properties)
+ results = json.loads(trl.to_json())
+ self.compare_jsons(reference, results)
+
+
+class MagnitudeSigmaTrellisTest(MagnitudeTrellisTest):
+ TEST_FILE = "test_magnitude_sigma_imt_trellis.json"
+
+ def _run_trellis(self, magnitudes, distance, properties):
+ """
+ Executes the trellis plotting - for standard deviation
+ """
+ return trpl.MagnitudeSigmaIMTTrellis.from_rupture_model(properties,
+ magnitudes,
+ distance,
+ self.gsims,
+ self.imts)
+
+
+class MagnitudeDistanceSpectraTrellisTest(BaseTrellisTest):
+ TEST_FILE = "test_magnitude_distance_spectra_trellis.json"
+
+ def compare_jsons(self, old, new):
+ """
+ Compares the MagnitudeDistanceSpectra jsons
+ """
+ self.assertEqual(old["xlabel"], new["xlabel"])
+ np.testing.assert_array_almost_equal(old["xvalues"], new["xvalues"], 7)
+ for i in range(len(old["figures"])):
+ self.assertAlmostEqual(old["figures"][i]["magnitude"],
+ new["figures"][i]["magnitude"], 7)
+ self.assertAlmostEqual(old["figures"][i]["distance"],
+ new["figures"][i]["distance"], 7)
+ self.assertEqual(old["figures"][i]["row"],
+ new["figures"][i]["row"])
+ self.assertEqual(old["figures"][i]["column"],
+ new["figures"][i]["column"])
+ for gsim in old["figures"][i]["yvalues"]:
+ old_vals = np.array(old["figures"][i]["yvalues"][gsim])
+ new_vals = np.array(new["figures"][i]["yvalues"][gsim])
+ if old_vals.dtype == "O":
+ # Has None Values - compare element by element
+ for old_val, new_val in zip(old_vals, new_vals):
+ if old_val and new_val:
+ self.assertAlmostEqual(old_val, new_val, 7)
+ else:
+ self.assertEqual(old_val, new_val)
+ else:
+ np.testing.assert_array_almost_equal(old_vals, new_vals, 7)
+
+ def _run_trellis(self, magnitudes, distances, properties):
+ """
+ Executes the trellis plotting - for mean
+ """
+ return trpl.MagnitudeDistanceSpectraTrellis.from_rupture_model(
+ properties, magnitudes, distances, self.gsims, self.periods,
+ distance_type="rrup")
+
+ def test_magnitude_distance_spectra_trellis(self):
+ """
+ Tests the MagnitudeDistanceSpectra Trellis data generation
+ """
+ reference = json.load(open(
+ os.path.join(BASE_DATA_PATH, self.TEST_FILE), "r"))
+ properties = {"dip": 60.0, "rake": -90.0, "aspect": 1.5, "ztor": 0.0,
+ "vs30": 800.0, "backarc": False, "z1pt0": 50.0,
+ "z2pt5": 1.0}
+ magnitudes = [4.0, 5.0, 6.0, 7.0]
+ distances = [5., 20., 50., 150.0]
+ trl = self._run_trellis(magnitudes, distances, properties)
+ results = json.loads(trl.to_json())
+ self.compare_jsons(reference, results)
+
+
+class MagnitudeDistanceSpectraSigmaTrellisTest(
+ MagnitudeDistanceSpectraTrellisTest):
+ TEST_FILE = "test_magnitude_distance_spectra_sigma_trellis.json"
+
+ def _run_trellis(self, magnitudes, distances, properties):
+ """
+ Executes the trellis plotting - for standard deviation
+ """
+ return trpl.MagnitudeDistanceSpectraSigmaTrellis.from_rupture_model(
+ properties, magnitudes, distances, self.gsims, self.periods,
+ distance_type="rrup")