БПФ и спектральный анализ с EngeeDSP
Продолжаем знакомиться с функционалом библиотеки EngeeDSP на примере задачи спектрального анализа и применения функции быстрого преобразования Фурье (БПФ).
Пример основан на данных ранее опубликованных проектов (БПФ , Спектральный анализ ) которые выполнялись с применением подключаемых библиотек Julia, таких как DSP.jl
, FFTW.jl
, Statistics.jl
и проч. В данном случае нет необходимости в подключении этих библиотек, так как их функционал покрывается EngeeDSP .
Ниже рассматриваются особенности применения функции fft
для оценки амплитудного и фазового спектров тестового сигнала, а также практическая задача спектрального анализа для определения характеристик записанного аудиосигнала.
Функция FFT
Информацию о частотном и фазовом составе сигнала можно узнать при помощи перехода от временной области анализа к частотной методом преобразования Фурье. В качестве базового тестового сигнала сгенерируем сумму четырёх синусоид с разными амплитудами, основными частотами и начальными фазами:
Применим к сигналу функцию fft
напрямую и визуализируем результат:
График отрисовывается на комплексной плоскости, так как комплексный вектор на выходе БПФ содержит информацию как об амплитуде составляющих, так и о фазе. Также стоит отметить, что количество комплексных отсчётов на выходе алгоритма соответствует количеству отсчётов сигнала во временной области на его входе.
Отобразим модуль комплексного вектора на выходе БПФ:
Функция fftshift
из состава EngeeDSP позволяет представить выход БПФ в привычном виде спектра, в нашем случае симметричного относительно центра - нулевой частоты. Но нам также придётся отложить по оси абсцисс вектор дискретных частот в пределах от до :
Разрешение по частоте = 1.0 Гц
Наконец, чтобы получить амплитудный спектр сигнала, нам необходимо учитывать количество отсчётов на выходе функции БПФ, а также принять во внимание, что энергетика вещественного сигнала также распространяется и на область отрицательных частот, которая, в нашем случае, неинформативна. Отобразим амплитудный спектр сигнала в области положительных частот линейчатым графиком, убедимся в корректности расчёта амплитуд синусоид на синтезируемых частотах:
Построим фазовый спектр тестового сигнала, определив "угол" отсчётов БПФ функцией angle
. Отметим маркерами интересующие нас частотные компоненты, убедимся, что фаза рассчитана правильно:
Постановка задачи для анализа
В качестве сигнала для анализа возьмём аудиозапись гитарной струны. Основная задача - определить, что за нота проигрывается, анализируя спектр сигнала. Загрузим численные отсчёты сигнала функцией wavread
, которая также позволяет выделить частоту дискретизации сигнала fs
- в нашем случае она равна 8000 Гц:
Подсчитаем количество отсчётов сигнала во временной области, вычислим временной шаг, сформируем вектор времени и численный вектор отсчётов сигнала sig
:
Для прослушивания аудио воспользуемся дополнительной функцией audioplayer
:
Out[0]:
audioplayer (generic function with 1 method)
Прослушаем звук колеблющейся струны:
Your browser does not support the audio element.
Отобразим колебания во временной области:
Узнать основную частоту колебания по форме периодического сигнала во временной области можно, но всё же весьма затруднительно.
Оценка спектра сигнала
Построим спектр мощности аудиосигнала при помощи последовательности операций, применённых выше. Мы также будем оценивать спектр методом БПФ, но в этот раз ограничим число точек на выходе функции fft
8000 отсчётами.
Дальнейшие действия повторяют стандартный алгоритм - вычисление комплексного БПФ, сдвиг, нормировка по уровню. Но для отображения по оси ординат уже берётся квадрат амплитуды, т.е. мощность, и переводится в децибеллы:
Мы наблюдаем спектр мощности аудиосигнала в пределах от -4000 Гц до 4000 Гц.
На спектре явно прослеживается гармоническая структура - равнорасположенные пики. Гармоники - это синусоидальные колебания, частоты которых кратны основной частоте .
- самая низкая частота в сигнале (первая гармоника), а высшие гармоники - частоты вида , где (вторая, третья и т. д.).
Определение основной частоты
Анализируя гармоники, можно определить основную частоту в спектре сигнала. Но для начала напишем пользовательскую функцию оценки спектра на основе применяемого алгоритма. В качестве дополнительных входных аргументов она будет принимать частоту дискретизации сигнала, количество отсчётов БПФ и флаг "одностороннего" спектра:
Out[0]:
fftspectrum (generic function with 1 method)
Проанализируем область низких частот (от 0 до 1500 Гц). Найдём пики в спектре - они соответствуют гармоникам сигнала. В этом нам поможет функция findpeaks
из набора функций EngeeDSP . Выделим первые шесть гармоник - это пики не ниже -50 дБ и с выраженностью не менее 30 - и отобразим их на графике:
Самый первый пик находится на частоте 219 Гц. Но мы также можем программно определить частоты первых шести гармоник и найти среднее расстояние между ними в Гц. Именно эту оценку мы и примем за основную частоту:
Out[0]:
6-element Vector{Float32}:
219.0
441.0
661.0
881.0
1101.0
1321.0
Основную частоту вычислим статистически, как среднее арифметическое от разницы между частотами соседних пиков:
Судя по таблице, сыгранная нота - это Ля малой октавы.
Заключение
Мы познакомились с функционалом EngeeDSP для задач вычисления быстрого преобразования Фурье и реализации алгоритма оценки спектра сигнала на его основе, решили практическую задачу определения характеристик аудиосигнала при помощи спектрального анализа.
{"id": "1764a0fa_c98f_472c_ada9_a6f2c7b8aec5", "data": [{"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 0.001, 0.002, 0.003, 0.004, 0.005, 0.006, 0.007, 0.008, 0.009, 0.01, 0.011, 0.012, 0.013, 0.014, 0.015, 0.016, 0.017, 0.018, 0.019, 0.02, 0.021, 0.022, 0.023, 0.024, 0.025, 0.026, 0.027, 0.028, 0.029, 0.03, 0.031, 0.032, 0.033, 0.034, 0.035, 0.036, 0.037, 0.038, 0.039, 0.04, 0.041, 0.042, 0.043, 0.044, 0.045, 0.046, 0.047, 0.048, 0.049, 0.05, 0.051, 0.052, 0.053, 0.054, 0.055, 0.056, 0.057, 0.058, 0.059, 0.06, 0.061, 0.062, 0.063, 0.064, 0.065, 0.066, 0.067, 0.068, 0.069, 0.07, 0.071, 0.072, 0.073, 0.074, 0.075, 0.076, 0.077, 0.078, 0.079, 0.08, 0.081, 0.082, 0.083, 0.084, 0.085, 0.086, 0.087, 0.088, 0.089, 0.09, 0.091, 0.092, 0.093, 0.094, 0.095, 0.096, 0.097, 0.098, 0.099, 0.1, 0.101, 0.102, 0.103, 0.104, 0.105, 0.106, 0.107, 0.108, 0.109, 0.11, 0.111, 0.112, 0.113, 0.114, 0.115, 0.116, 0.117, 0.118, 0.119, 0.12, 0.121, 0.122, 0.123, 0.124, 0.125, 0.126, 0.127, 0.128, 0.129, 0.13, 0.131, 0.132, 0.133, 0.134, 0.135, 0.136, 0.137, 0.138, 0.139, 0.14, 0.141, 0.142, 0.143, 0.144, 0.145, 0.146, 0.147, 0.148, 0.149, 0.15, 0.151, 0.152, 0.153, 0.154, 0.155, 0.156, 0.157, 0.158, 0.159, 0.16, 0.161, 0.162, 0.163, 0.164, 0.165, 0.166, 0.167, 0.168, 0.169, 0.17, 0.171, 0.172, 0.173, 0.174, 0.175, 0.176, 0.177, 0.178, 0.179, 0.18, 0.181, 0.182, 0.183, 0.184, 0.185, 0.186, 0.187, 0.188, 0.189, 0.19, 0.191, 0.192, 0.193, 0.194, 0.195, 0.196, 0.197, 0.198, 0.199, 0.2, 0.201, 0.202, 0.203, 0.204, 0.205, 0.206, 0.207, 0.208, 0.209, 0.21, 0.211, 0.212, 0.213, 0.214, 0.215, 0.216, 0.217, 0.218, 0.219, 0.22, 0.221, 0.222, 0.223, 0.224, 0.225, 0.226, 0.227, 0.228, 0.229, 0.23, 0.231, 0.232, 0.233, 0.234, 0.235, 0.236, 0.237, 0.238, 0.239, 0.24, 0.241, 0.242, 0.243, 0.244, 0.245, 0.246, 0.247, 0.248, 0.249, 0.25, 0.251, 0.252, 0.253, 0.254, 0.255, 0.256, 0.257, 0.258, 0.259, 0.26, 0.261, 0.262, 0.263, 0.264, 0.265, 0.266, 0.267, 0.268, 0.269, 0.27, 0.271, 0.272, 0.273, 0.274, 0.275, 0.276, 0.277, 0.278, 0.279, 0.28, 0.281, 0.282, 0.283, 0.284, 0.285, 0.286, 0.287, 0.288, 0.289, 0.29, 0.291, 0.292, 0.293, 0.294, 0.295, 0.296, 0.297, 0.298, 0.299, 0.3, 0.301, 0.302, 0.303, 0.304, 0.305, 0.306, 0.307, 0.308, 0.309, 0.31, 0.311, 0.312, 0.313, 0.314, 0.315, 0.316, 0.317, 0.318, 0.319, 0.32, 0.321, 0.322, 0.323, 0.324, 0.325, 0.326, 0.327, 0.328, 0.329, 0.33, 0.331, 0.332, 0.333, 0.334, 0.335, 0.336, 0.337, 0.338, 0.339, 0.34, 0.341, 0.342, 0.343, 0.344, 0.345, 0.346, 0.347, 0.348, 0.349, 0.35, 0.351, 0.352, 0.353, 0.354, 0.355, 0.356, 0.357, 0.358, 0.359, 0.36, 0.361, 0.362, 0.363, 0.364, 0.365, 0.366, 0.367, 0.368, 0.369, 0.37, 0.371, 0.372, 0.373, 0.374, 0.375, 0.376, 0.377, 0.378, 0.379, 0.38, 0.381, 0.382, 0.383, 0.384, 0.385, 0.386, 0.387, 0.388, 0.389, 0.39, 0.391, 0.392, 0.393, 0.394, 0.395, 0.396, 0.397, 0.398, 0.399, 0.4, 0.401, 0.402, 0.403, 0.404, 0.405, 0.406, 0.407, 0.408, 0.409, 0.41, 0.411, 0.412, 0.413, 0.414, 0.415, 0.416, 0.417, 0.418, 0.419, 0.42, 0.421, 0.422, 0.423, 0.424, 0.425, 0.426, 0.427, 0.428, 0.429, 0.43, 0.431, 0.432, 0.433, 0.434, 0.435, 0.436, 0.437, 0.438, 0.439, 0.44, 0.441, 0.442, 0.443, 0.444, 0.445, 0.446, 0.447, 0.448, 0.449, 0.45, 0.451, 0.452, 0.453, 0.454, 0.455, 0.456, 0.457, 0.458, 0.459, 0.46, 0.461, 0.462, 0.463, 0.464, 0.465, 0.466, 0.467, 0.468, 0.469, 0.47, 0.471, 0.472, 0.473, 0.474, 0.475, 0.476, 0.477, 0.478, 0.479, 0.48, 0.481, 0.482, 0.483, 0.484, 0.485, 0.486, 0.487, 0.488, 0.489, 0.49, 0.491, 0.492, 0.493, 0.494, 0.495, 0.496, 0.497, 0.498, 0.499, 0.5, 0.501, 0.502, 0.503, 0.504, 0.505, 0.506, 0.507, 0.508, 0.509, 0.51, 0.511, 0.512, 0.513, 0.514, 0.515, 0.516, 0.517, 0.518, 0.519, 0.52, 0.521, 0.522, 0.523, 0.524, 0.525, 0.526, 0.527, 0.528, 0.529, 0.53, 0.531, 0.532, 0.533, 0.534, 0.535, 0.536, 0.537, 0.538, 0.539, 0.54, 0.541, 0.542, 0.543, 0.544, 0.545, 0.546, 0.547, 0.548, 0.549, 0.55, 0.551, 0.552, 0.553, 0.554, 0.555, 0.556, 0.557, 0.558, 0.559, 0.56, 0.561, 0.562, 0.563, 0.564, 0.565, 0.566, 0.567, 0.568, 0.569, 0.57, 0.571, 0.572, 0.573, 0.574, 0.575, 0.576, 0.577, 0.578, 0.579, 0.58, 0.581, 0.582, 0.583, 0.584, 0.585, 0.586, 0.587, 0.588, 0.589, 0.59, 0.591, 0.592, 0.593, 0.594, 0.595, 0.596, 0.597, 0.598, 0.599, 0.6, 0.601, 0.602, 0.603, 0.604, 0.605, 0.606, 0.607, 0.608, 0.609, 0.61, 0.611, 0.612, 0.613, 0.614, 0.615, 0.616, 0.617, 0.618, 0.619, 0.62, 0.621, 0.622, 0.623, 0.624, 0.625, 0.626, 0.627, 0.628, 0.629, 0.63, 0.631, 0.632, 0.633, 0.634, 0.635, 0.636, 0.637, 0.638, 0.639, 0.64, 0.641, 0.642, 0.643, 0.644, 0.645, 0.646, 0.647, 0.648, 0.649, 0.65, 0.651, 0.652, 0.653, 0.654, 0.655, 0.656, 0.657, 0.658, 0.659, 0.66, 0.661, 0.662, 0.663, 0.664, 0.665, 0.666, 0.667, 0.668, 0.669, 0.67, 0.671, 0.672, 0.673, 0.674, 0.675, 0.676, 0.677, 0.678, 0.679, 0.68, 0.681, 0.682, 0.683, 0.684, 0.685, 0.686, 0.687, 0.688, 0.689, 0.69, 0.691, 0.692, 0.693, 0.694, 0.695, 0.696, 0.697, 0.698, 0.699, 0.7, 0.701, 0.702, 0.703, 0.704, 0.705, 0.706, 0.707, 0.708, 0.709, 0.71, 0.711, 0.712, 0.713, 0.714, 0.715, 0.716, 0.717, 0.718, 0.719, 0.72, 0.721, 0.722, 0.723, 0.724, 0.725, 0.726, 0.727, 0.728, 0.729, 0.73, 0.731, 0.732, 0.733, 0.734, 0.735, 0.736, 0.737, 0.738, 0.739, 0.74, 0.741, 0.742, 0.743, 0.744, 0.745, 0.746, 0.747, 0.748, 0.749, 0.75, 0.751, 0.752, 0.753, 0.754, 0.755, 0.756, 0.757, 0.758, 0.759, 0.76, 0.761, 0.762, 0.763, 0.764, 0.765, 0.766, 0.767, 0.768, 0.769, 0.77, 0.771, 0.772, 0.773, 0.774, 0.775, 0.776, 0.777, 0.778, 0.779, 0.78, 0.781, 0.782, 0.783, 0.784, 0.785, 0.786, 0.787, 0.788, 0.789, 0.79, 0.791, 0.792, 0.793, 0.794, 0.795, 0.796, 0.797, 0.798, 0.799, 0.8, 0.801, 0.802, 0.803, 0.804, 0.805, 0.806, 0.807, 0.808, 0.809, 0.81, 0.811, 0.812, 0.813, 0.814, 0.815, 0.816, 0.817, 0.818, 0.819, 0.82, 0.821, 0.822, 0.823, 0.824, 0.825, 0.826, 0.827, 0.828, 0.829, 0.83, 0.831, 0.832, 0.833, 0.834, 0.835, 0.836, 0.837, 0.838, 0.839, 0.84, 0.841, 0.842, 0.843, 0.844, 0.845, 0.846, 0.847, 0.848, 0.849, 0.85, 0.851, 0.852, 0.853, 0.854, 0.855, 0.856, 0.857, 0.858, 0.859, 0.86, 0.861, 0.862, 0.863, 0.864, 0.865, 0.866, 0.867, 0.868, 0.869, 0.87, 0.871, 0.872, 0.873, 0.874, 0.875, 0.876, 0.877, 0.878, 0.879, 0.88, 0.881, 0.882, 0.883, 0.884, 0.885, 0.886, 0.887, 0.888, 0.889, 0.89, 0.891, 0.892, 0.893, 0.894, 0.895, 0.896, 0.897, 0.898, 0.899, 0.9, 0.901, 0.902, 0.903, 0.904, 0.905, 0.906, 0.907, 0.908, 0.909, 0.91, 0.911, 0.912, 0.913, 0.914, 0.915, 0.916, 0.917, 0.918, 0.919, 0.92, 0.921, 0.922, 0.923, 0.924, 0.925, 0.926, 0.927, 0.928, 0.929, 0.93, 0.931, 0.932, 0.933, 0.934, 0.935, 0.936, 0.937, 0.938, 0.939, 0.94, 0.941, 0.942, 0.943, 0.944, 0.945, 0.946, 0.947, 0.948, 0.949, 0.95, 0.951, 0.952, 0.953, 0.954, 0.955, 0.956, 0.957, 0.958, 0.959, 0.96, 0.961, 0.962, 0.963, 0.964, 0.965, 0.966, 0.967, 0.968, 0.969, 0.97, 0.971, 0.972, 0.973, 0.974, 0.975, 0.976, 0.977, 0.978, 0.979, 0.98, 0.981, 0.982, 0.983, 0.984, 0.985, 0.986, 0.987, 0.988, 0.989, 0.99, 0.991, 0.992, 0.993, 0.994, 0.995, 0.996, 0.997, 0.998, 0.999], "showlegend": true, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.24269552621700466, -0.6688773871192181, 1.0097391002586347, 2.0272886459808723, 0.2836605430771886, -1.3273131127554558, -1.0765186696069784, -0.9433250144893588, -1.3670038658994352, -0.7944121832110873, 0.5462524008666281, 1.0763033655238279, 0.1649342195426947, -1.1947715312226428, -1.2332054982987977, -0.12995223185166832, 0.1343901468773705, 0.08004269670643932, 1.5215752823035644, 2.4499787550253513, 0.6329130079018793, -1.0801170807802727, -0.3307696845529147, 0.38929790991206586, -0.15119226326882887, 0.20236483826376597, 1.3560196680749215, 1.0293993878132492, -0.6614830761289888, -1.818953961374881, -1.595190008623616, -0.6513400434433794, -0.2514768044933847, -0.2620335124461206, 0.5495147743601839, 1.0624836911667148, -0.5351893175531319, -1.9572509734732857, -0.6552509402621243, 0.8905999415689443, 0.583140802007456, 0.7458419585167333, 1.9588308927860256, 1.4803932108062774, -0.49619902402618665, -1.1444981045134484, -0.2321826420074264, 0.5577713868727231, 0.6420978480290063, 0.4729428193687233, 0.5266691943476116, 0.22913516756797725, -1.3116023489688, -2.476150508508436, -1.1712549983653604, 0.5447544495020544, 0.1683352705943778, -0.24547821495473876, 0.7221775186402287, 0.4094820125463623, -1.4424734240525718, -1.4772296535200908, 0.41542387997529895, 1.3983370103545845, 1.1890746810028607, 1.1280520767594857, 1.1031812487324255, 0.43479364989084457, -0.7417058297016565, -1.2139972545698945, 0.05618313187458321, 1.4542288872938536, 0.7917651750642261, -0.36719527660935014, -0.07985214674960597, -0.3937749588627882, -2.1512572053004435, -2.1054007535874493, 0.1494317618381689, 1.0344764601599188, 0.1460870002900081, -0.07178304678232597, 0.1739849925261214, -0.4556037043093145, -1.1216719994324817, -0.54311012582237, 1.0419123454950248, 2.1218281795499614, 1.4505785339866075, 0.21173070576447317, 0.2105664478638942, 0.18598780853692307, -1.0448396638621715, -0.9828430869788581, 1.1198316092675142, 1.659358903638028, -0.12466307950766553, -0.9544141403558282, -0.6008689430752192, -1.2352998673032776, -1.9106377835468131, -0.8416680646818293, 0.7860297665095798, 1.1477279885774014, 0.23781764625020607, -0.6854188735812544, -0.5618101350225488, -0.1258520498845288, -0.41327064019640325, 0.03128823875990036, 1.965854728241244, 2.4289335300696315, 0.39035384296122744, -0.6916972660238134, 0.04826109521426711, -0.1815952194517558, -0.9627615446540028, 0.07658661035982972, 1.4745861401059273, 0.8371074790868998, -0.7880615641052883, -1.5358371466005094, -1.3398719867834332, -0.9637965135920789, -0.811881821614471, -0.22026825313668746, 1.1381012423330552, 1.3142415433709167, -0.5438163592892323, -1.445751169725939, -0.11932787043962902, 0.5098797855912591, -0.0003689606746778151, 0.9957287642334686, 2.426672653597145, 1.3848982541959893, -0.6326957378148547, -0.9213163300011058, -0.26619648633633514, -0.09603164512207282, -0.030030678360866314, 0.4301406675187729, 0.8706243066069749, 0.247333851516794, -1.5489775163425592, -2.314008689734217, -0.9165622983785181, 0.10886951704524833, -0.3309230894533884, 0.22614443984558202, 1.5022643963654307, 0.5099866579037313, -1.4520735158709484, -1.0347750829165023, 0.5699341295954722, 0.900335350523982, 0.8685273150157746, 1.4698095208787467, 1.5378635224598551, 0.3820993765650551, -1.0651289201600345, -1.313708994448851, -0.03960975301294134, 0.8367508082571267, 0.18342769064578807, -0.0813052751224071, 0.49521379816839795, -0.5622580757628217, -2.5023691851958643, -1.8679052780675491, 0.2667295983523471, 0.5739492991960797, 0.06399691266224478, 0.6608968513683943, 0.8249509594105435, -0.42003145622125226, -1.2238485186941381, -0.41478293935350113, 1.0872481225182529, 1.7867460879956534, 1.2022418579330802, 0.6260456860743479, 0.7113596923657458, -0.13927294899674247, -1.6855898966080347, -1.0575294524943122, 1.0425960461379677, 1.0199233064220434, -0.3875285272621967, -0.3502591484973201, -0.20299468325662834, -1.5789633647968089, -2.194792205598268, -0.6844953970107629, 0.8757515310600186, 1.017978296370954, 0.40380738611188216, 0.013807210482443797, 0.04058325518711545, -0.27971466911730547, -0.8398154973343458, 0.13328933358249342, 2.1514803646447995, 2.07148731161034, 0.24272144494492592, -0.11263722628086364, 0.26895335546831434, -0.8939063238803595, -1.5681747323268702, 0.08058854638923832, 1.3652757566591107, 0.4790574587874902, -0.7212137837827661, -1.0180288273991482, -1.1051456107869144, -1.3309955426967761, -1.190424762565257, -0.011236617190622578, 1.5408529764996035, 1.3358536229514701, -0.3844787760695945, -0.6954092387451536, 0.26586428653084204, -0.06096504031630991, -0.43795073786165184, 1.2996199539962145, 2.5626877760256397, 1.070078992879959, -0.5837359498551945, -0.5414390636484432, -0.43575821618556715, -0.8513074280530615, -0.560334225285677, 0.4814151030111852, 1.0391886211819834, 0.13915773839845375, -1.5376737033833452, -1.8566038065462034, -0.7367358120360019, -0.4569303409482602, -0.6367786574813006, 0.8200543192371313, 2.0167259147138403, 0.46009610134371554, -1.199100451589095, -0.4357079129289928, 0.5032882122353963, 0.23988151051098972, 0.6390416273452582, 1.7922489208162005, 1.711433041447306, 0.19913252632034634, -1.1849388725642886, -1.2293977627021389, -0.2804787913462476, 0.05622069729652629, -0.26901591703058647, 0.33974162249138334, 0.8803437014938873, -0.791933409305998, -2.495481538724288, -1.3991473086277333, 0.19057516845754469, 0.002866298158005237, 0.16817032847110353, 1.4259277921614992, 1.2471141781006134, -0.4346062372706817, -1.0976494910644916, -0.19934994287297486, 0.8931702985985148, 1.2383759262130645, 1.020858032671841, 1.0824446890948787, 0.9888843877377853, -0.5613655171393563, -2.041359559892264, -0.9709653113751222, 0.7116704812182842, 0.24540608387608145, -0.4145326012886776, 0.3559388617730901, 0.028717043515636906, -1.8609319121669472, -2.142712563665917, -0.42353993022888947, 0.746862097729459, 0.7752138094826545, 0.7091042901806279, 0.77152527258738, 0.4666402035380252, -0.5012898318004869, -1.0530040201139483, 0.2891765713357198, 1.9976171338884314, 1.4956237611259804, 0.26762725287444344, 0.5248137598432789, 0.2607997633390312, -1.5973264293310336, -1.8699137712125693, 0.11931780186417046, 0.9888018252249993, 0.0764578329305006, -0.4143550249260572, -0.3887902008690795, -0.9567239508362165, -1.642161642140913, -1.3122253844144205, 0.25740147185401746, 1.6707466751848206, 1.2160457064102004, -0.013819327959582905, 0.14197125709874353, 0.41706975432397886, -0.6834866871463874, -0.6531003398683642, 1.5314538927071433, 2.3155449719388317, 0.663838109597771, -0.30954714996088073, -0.12619636886375696, -0.7629795986182653, -1.5583275243473957, -0.8721593748546179, 0.5322818838075496, 0.9823583861237462, 0.008946964751085473, -1.232383631372358, -1.2331614359174738, -0.691792161771967, -1.0153130909774908, -0.6897408224588114, 1.3846623179657627, 2.1892656151805667, 0.37010002519217017, -0.6705833588357436, 0.1685878173201782, 0.18963387922421948, -0.43579677195716615, 0.5410999120939597, 1.9745764809004769, 1.5890565213797083, 0.000554269452502705, -1.0591464309164453, -1.0612699591505752, -0.6799335312606745, -0.7309192953834736, -0.4989411946298886, 0.7638272535479191, 1.020137148543624, -0.9553356630591171, -2.1046306655330067, -0.846178966774173, -0.09905016940840408, -0.5330866550485753, 0.4634071408113872, 2.0602608592931535, 1.3959638755681225, -0.3967276254225178, -0.7397183541533348, -0.014557876544356925, 0.4539304672466611, 0.6141022181642808, 0.9405924146275895, 1.4501663498262811, 1.0074519417667667, -0.9390747690450989, -2.064514918502272, -0.8387630346844278, 0.13628261351037288, -0.4950299981258144, -0.19226545459531708, 1.0046764775408068, 0.07551547316416066, -1.9526798670436978, -1.7593448750530234, -0.18645562880659, 0.40153345787674655, 0.5339289279568384, 1.1342870398323117, 1.4324308223238809, 0.6779910383711438, -0.6734078013413495, -1.0313011276533641, 0.3783226827234015, 1.5068294259482933, 0.8551131018475273, 0.47052302636616067, 1.0670574840129565, 0.031567329059890625, -2.1259993399353423, -1.8527645372162393, 0.08117842127048808, 0.3833276510165897, -0.23530143727798328, 0.10266816779864138, 0.20750359238422345, -0.89737742244093, -1.7776703523764028, -1.1785105357249366, 0.4589729675291029, 1.5178568793258866, 1.0673739656256638, 0.5365325881227575, 0.8960805720261084, 0.33085974905748733, -1.2028893818221125, -0.6467665776673832, 1.561961196299007, 1.7238409487312212, 0.30776723392516947, 0.15312536727199763, 0.19572063541957052, -1.198599704982, -2.065204686036517, -0.9634792079041538, 0.48084779225930985, 0.7230843251372159, -0.031560203814013865, -0.6688418302858053, -0.5924403380211779, -0.7714889870637649, -1.4234457036240127, -0.5115054551887467, 1.7651815383291505, 2.0309210582513098, 0.35562764608837627, 0.06474496628246947, 0.6277257869219276, -0.31609432197277154, -0.9786170438930679, 0.5462452100522759, 1.907742066008679, 1.2161784338581731, -0.09817193626363757, -0.7211981597023472, -0.915011477057164, -1.1807454190662938, -1.3680547247607953, -0.5177312103327099, 1.0575197673491679, 0.9378273018574421, -0.9327139139407274, -1.394865030724456, -0.357733756767022, -0.5443116124817063, -0.8980489588190682, 0.8785818511490511, 2.418025471662872, 1.3067674682258204, -0.2149952326714081, -0.22036769943309767, 0.033321753000321266, -0.1595600820756194, 0.05034178188626329, 0.9299361437178858, 1.6115563270445052, 0.8103318191161616, -1.1409768752081295, -1.7922354751803242, -0.7708941290713082, -0.5951955169970894, -1.0471514545893852, 0.21126872323186574, 1.4527125884682652, -0.008168480115229318, -1.7545874206089391, -1.1324638266222689, -0.08409346948498322, -0.08557821885066696, 0.39321656037252806, 1.5943036026844477, 1.8623403388667126, 0.709855787047669, -0.6943661372281282, -0.8269615780389098, 0.29987289369174525, 0.7662292064208565, 0.29305377372689245, 0.7835424576717483, 1.3853530826253428, -0.3342324070304566, -2.3461851661508506, -1.5835064656174187, -0.11903777584536618, -0.34058378085193647, -0.35089948016109146, 0.7279967362776668, 0.6494940763629382, -0.8690565481992965, -1.6511216665825528, -0.8639500141365156, 0.4912754758172318, 1.1481957419987514, 0.9838591508256929, 1.1649559145202066, 1.4254447335545577, 0.08057345140027927, -1.4943148075770647, -0.4926955262169762, 1.3031912029324357, 0.9077569878731937, 0.1119446588971934, 0.6993506121592679, 0.33114057135856134, -1.63219048169588, -2.262414103163965, -0.9007955463304806, 0.2582757644567055, 0.34936658655436825, 0.09521077634494984, 0.044769874164144935, -0.058143942573555735, -0.9022936933996286, -1.5772159613427599, -0.19573426390886245, 1.8497203039767358, 1.6312436073123886, 0.49494536030723457, 0.8706704252109236, 0.8371775989037618, -0.8919356545825419, -1.2834151417501114, 0.5693880382546326, 1.5347340597933137, 0.7047420590196047, -0.021790715142938816, -0.2679890385379349, -0.8621122965940251, -1.6691460326725749, -1.7424738952103722, -0.4037619134518037, 1.128797650709123, 0.7225337031120838, -0.6541926340100942, -0.5055681487791073, -0.039945012961583204, -1.0262072827218385, -1.0081227136414905, 1.2857671381908133, 2.413279542839649, 1.078149296995473, 0.15291083712663425, 0.3354519706198094, -0.1118364304400806, -0.8184444738322565, -0.3581898647516537, 0.9074333651020599, 1.5014542304968783, 0.5023367445649076, -1.086984756857844, -1.3296038249893323, -0.8320052804347364, -1.3371176222644297, -1.3145393017988762, 0.6679355869508758, 1.6144998224373763, -0.11588595199452173, -1.2334611316401312, -0.4085752857123114, -0.17246861280197617, -0.5897509710126816, 0.4008298989065498, 1.9620655011479098, 1.987014155394517, 0.6513956223485304, -0.5145811618707267, -0.5448905901866223, 0.009812964961689583, -0.07670927195763366, -0.09854492225730585, 1.0888648394509168, 1.41445151235639, -0.7016203848966166, -2.195427527806067, -1.1857222277384185, -0.5056178266440927, -1.0287913411653897, -0.23029258035826755, 1.3158551667818754, 0.8745737994012366, -0.7775690625577112, -1.2421819592325483, -0.4904850960668992, 0.3114527901707375, 0.6788067945104392, 1.0070179767630525, 1.7282755712799034, 1.6552144445797023, -0.21088479596628387, -1.4992618992968274, -0.30921754497669224, 0.7417285820794575, 0.036642192178373834, 0.12061945818674374, 1.1870831503186723, 0.25387908938780906, -1.9243175388860825, -2.1153583868023222, -0.7907156101540058, -0.14191019781405714, -0.01548523505749768, 0.4025991236204574, 0.7590569590123705, 0.30482656996216645, -0.9763520206588182, -1.443270104186905, 0.12386584585087629, 1.6024991143473881, 1.1264230688220433, 0.7991499597561206, 1.5796446836439464, 0.7691163534448922, -1.3844173990943165, -1.317927580626311, 0.501595767914689, 0.876251996530305, 0.19839780946516655, 0.2374567066323667, 0.1728039210353603, -0.9135098996247364, -2.009242539569961, -1.8152421123342644, -0.27020629593693946, 0.955659305570629, 0.4956030446301173, -0.1266071746036945, 0.38778108723720484, 0.07279450529948026, -1.401569760561193, -0.8573313289671227, 1.5390063331350827, 2.045811992754272, 0.8358903069327417, 0.6784762110244552, 0.7858958631057357, -0.4337225808138683, -1.373673575768643, -0.5836302794184589, 0.7757636177678591, 1.1300691247156964, 0.213136266769381, -0.7732207337951598, -0.812952766860549, -1.0183332695993623, -1.9272347650079948, -1.2834387893371395, 1.029682071816318, 1.4854705480012484, -0.1280934572016082, -0.4409376221656046, 0.2491065937257132, -0.4330274138440118, -0.9756044168895512, 0.5352421645512697, 2.108280455767314, 1.8123612044041613, 0.6088959133366502, -0.15528217883439213, -0.30459739078399023, -0.4606946554576672, -0.8559797964534851, -0.3006274023814519, 1.2588093485862573, 1.1713907875654181, -0.9279087577491697, -1.7009807692608874, -0.7980366079299412, -1.0275083632046862, -1.5274652357966159, 0.08673230745346067, 1.7196195980426747, 0.8947023923997312, -0.5313299064996738, -0.6089744826912811, -0.18631999479250755, -0.04914134358724084, 0.23770963359878688, 1.111572041824058, 2.0846131667614354, 1.5938441510590202, -0.41327955465547805, -1.2407599624068637, -0.21685752607381942, -0.05041529038215792, -0.7176120469755696, 0.29973860172325373, 1.4811471539022076, 0.01428008258555745, -1.9506362951099423, -1.6744791814870907, -0.7389438564813134, -0.6558401904384884, -0.2545610735812708, 0.8313063699328175, 1.3272451941145862, 0.5028373864299369, -0.8924812414590637, -1.068623562069214, 0.31774814678241414, 1.0738793366235908, 0.6548964650616722, 1.2051468791442095, 2.0398312205165094, 0.47945358543002886, -1.6547379402165148, -1.1294416134256346, 0.2524368218093368, 0.03270287390727894, -0.1721831672201558, 0.6153845174459542, 0.48515316337115666, -1.015490460759053, -2.0865138067167597, -1.627679561842114, -0.22272768845046947, 0.5915524812716736, 0.3673632735925807, 0.5638332702812124, 1.1215705866426569, 0.022934677124290564, -1.5485272683887836, -0.51897893462156, 1.5205908891907962, 1.4017334397045, 0.6889085892466702, 1.2645069325669387, 1.0166068704835085, -0.8453810508039796, -1.7007196525931203, -0.6666911109442752, 0.46235463416413625, 0.5817310360922089, 0.053450567486269834, -0.2724420828205721, -0.36569551928261906, -1.2587295371670029, -2.2334688112863184, -1.0220744714108712, 1.1748662037719846, 1.139977132705104, 0.043959052455473796, 0.49385195642282886, 0.7075300979992798, -0.7777929702217028, -1.1406777112732271, 0.7119584044149252, 1.9446387491059405, 1.4196499595679657, 0.6644457433395621, 0.29697394954921413, -0.19805374567783798, -1.0118415766732414, -1.4333010894905014, -0.3640815925167604, 1.1994612925357868, 0.7485530123858448, -0.9083608844222191, -0.9717638760209599, -0.5293281802835196, -1.5692139329021793, -1.7283217935438537, 0.4916689468387472, 1.8362058632290477, 0.7873327210729227, -0.08089742855943272, 0.12458700865226678, -0.043565371849915074, -0.4948804686025058, -0.07789851166282136, 1.2154756279832752, 2.13690927244624, 1.323926785441289, -0.4324812728082244, -0.8128054220244085, -0.2957075786223993, -0.9311982233786917, -1.2270660172838401, 0.5502097126080029, 1.4960252586111067, -0.2765859378773071, -1.6437860236056019, -1.0595688683873223, -0.8105311758403695, -1.1657272114684318, -0.2971727149826313, 1.265710557091959, 1.6475578398449546, 0.6013988044195432, -0.5952904621936638, -0.5648808838217346, 0.30271929107803763, 0.3842972144523522, 0.31480267525435307, 1.5938704025390484, 2.1584276857389626, 0.0888443408793039, -1.6210407576320152, -0.8261053864125433, -0.2123501270957062, -0.8389600512101725, -0.3295192928092563, 0.9958590223798393, 0.6027734403695578, -1.0693062976045689, -1.8461597184265022, -1.2828505029070538, -0.32126527824148027, 0.14618027562471597, 0.398633321479, 1.274131410666321, 1.5869429557154253, -0.09025506663045824, -1.4058049555718168, -0.12187578712841905, 1.1801163443766487, 0.6285408246147013, 0.6918923607033094, 1.7711321276020218, 0.9773326560549973, -1.2149107021725143, -1.7368630311201232, -0.694904946279642, -0.0475204967354618, -0.010214533255605104, 0.07849104644654864, 0.28980666244142506, -0.06105252655616222, -1.439336738733831, -2.1920943697748965, -0.6550630189531701, 1.0459870145718384, 0.7048169373096441, 0.4238695062985391, 1.3958008380102052, 0.9008556497619714, -1.0778620140164608, -1.0489001269673337, 0.8122950732217903, 1.4561399386575478, 0.9374416453182425, 0.8441511885988291, 0.7181614877928625, -0.2575466301867496, -1.5045803776431959, -1.7343284523814753, -0.383692334186286, 0.8835269200925239, 0.2833433579556889, -0.6102207050236315, -0.1664499393805306, -0.4253135093888837, -1.9839665652813656, -1.6008662614022267, 0.8408059976062662, 1.6375852303151914, 0.6646507391660335, 0.5544135593880973, 0.8029541119572686, -0.0884325552119044, -0.8972340170284705, -0.23138265943476477, 1.2107675880495845, 1.8631266648909965, 0.9707395565245323, -0.24105685193341886, -0.3478688533663289, -0.5565348844570919, -1.7258273064043481, -1.439851902757459, 0.7424739879734737, 1.2236235724954372, -0.4832263970929076, -1.019396250771723, -0.4231989177430879, -1.0047797035928112, -1.5356822098502072, -0.14349215132753965, 1.5697964620697784, 1.6906440277855626, 0.6932844968497635, -0.0991839280554667, -0.0723163604882488, 0.06857187120472147, -0.3125064163569995, 0.1368175484217492, 1.827968340346739, 1.9277272645383283, -0.2562725594739115, -1.283392588506964, -0.5390830848087614, -0.8507398082248152, -1.5668955656936576, -0.2720910716707189, 1.2487881765630156, 0.5302168232681281, -0.9679962860747376, -1.3136358026201123, -0.9085435253859622, -0.5585883623320915, -0.25171659184732575, 0.5796649049027399, 1.8452961818671727, 1.7545881606562168, -0.1488147031275041, -0.9932065050825566, 0.19102635457436248, 0.5537437841622272, -0.10758313199567526, 0.826861446753294, 2.057704499566834, 0.6987358020550211, -1.407047948336764, -1.4990386391844635, -0.765138507949261, -0.6967766182492213, -0.5043044079814569, 0.27054363426744044, 0.7753010893498344, 0.09641783901858314, -1.4436690914020225, -1.8253671464849812, -0.32144375898223776, 0.6669191681558863, 0.31708235997916673, 0.9567392938710618, 2.0902202783948134, 0.8461362112335474, -1.2060897115552451, -0.7428793519513683, 0.7253400184770445, 0.7116651898027364, 0.4994899414051391, 1.1066663604385363, 0.9877853922412503, -0.4442646902144394, -1.80344696780674, -1.7637563073033249, -0.4583711902305961, 0.361658430820125, -0.08567009665446043, -0.08429844511980986, 0.5522085886362249, -0.4571113743457632, -2.138810275547731, -1.2013178617451894, 1.0006169771298978, 1.1792923700030056, 0.6314651627599646, 1.2824350184431077, 1.283956562933906, -0.273744177234265, -1.13716020649921, -0.2546782885360934, 1.0047862234394582, 1.3234337983419577, 0.6591294881800882, 0.11371249966774988, 0.02670742893196623, -0.9351006418093437, -2.2745392780938243, -1.3883158222080514, 0.7610828852240694, 0.7369472426629928, -0.4909589865783926, -0.1774231043277012, 0.0951210553883699, -1.2533536758158474, -1.6553741640903847, 0.13435838324661478, 1.6310999140793725, 1.5035060597112253, 0.858204392569752, 0.5109917042251426, 0.2844496937081554, -0.3192709222978778, -0.8750591756688981, 0.08071829280859219, 1.796808166273605, 1.425808372168295, -0.43018475907326303, -0.7235774462357173, -0.37793361356313465, -1.549146562692825, -2.011804767430665, -0.07233859273496573, 1.2736864894573037, 0.3399189934096672, -0.6380520396423909, -0.590414104363986, -0.6141390984537527, -0.8626299375115192, -0.49715768019555073, 0.8334007669605102, 2.1484686646420967, 1.6743366408951785, -0.059528240027164295, -0.4066652823730822, 0.30838482235196685], "type": "scatter"}], "config": {"showlegend": false, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [0, 0.05000000000000001, 0.10000000000000002, 0.15], "range": [0, 0.15], "domain": [0.061654272382618835, 0.9934383202099737], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["0.00", "0.05", "0.10", "0.15"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Время (с)", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [{"yanchor": "top", "xanchor": "center", "rotation": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "paper", "showarrow": false, "text": "Сумма четырёх синусоид", "xref": "paper", "x": 0.5275462962962963}], "height": 400, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [-2, -1, 0, 1, 2], "range": [-2.6543208940325096, 2.7146394848622855], "domain": [0.07581474190726165, 0.9415463692038496], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["-2", "-1", "0", "1", "2"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Амплитуда", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "width": 827.5}}
{"id": "0e827cf9_c566_41cb_a67f_b2f2f77dae70", "data": [{"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099738}, "yaxis": "y", "x": [-7.48179296294893e-13, -4.475803577819961e-13, 5.970406887050065e-14, 2.9881941294370677e-13, -1.2033982387669978e-13, 3.0821581059220786e-13, 2.1392625903901224e-13, -1.8781560735979016e-13, 2.9606497380503774e-13, -1.295644938377756e-12, 1.152518958504873e-12, -1.1694894963649042e-13, 1.1075658819015911e-13, -1.1752967610188974e-12, 1.2384666686561578e-12, 6.976223715802632e-13, -2.3091196458763367e-13, 2.332003684172758e-12, -1.1350991281748349e-12, 1.3894307972647702e-13, -1.2028503716978058e-12, 6.44459599062958e-13, 2.2602822620020674e-13, -4.85828625056437e-13, 2.515281331796921e-13, -3.5903652652478484e-13, -5.251490585476897e-13, -6.704682887409734e-13, 1.9053799180841526e-12, -1.0704606340947594e-12, -1.7037798662457177e-12, 6.929749901591995e-13, -4.2775855508458255e-15, -1.1495752389410338e-13, 4.511556431481594e-13, 3.096229147104526e-13, -3.8968548106945243e-13, -5.399073272087816e-13, -5.945475867581277e-14, 6.348578494206641e-13, 7.294401212704048e-14, -6.403155845440119e-13, -1.3747532275187957e-13, -7.150798038762266e-13, 205.0609665440998, -2.325136659496904e-13, -3.100965185068243e-13, -7.91118290481596e-13, -9.52290149173861e-13, -6.747800465533192e-13, -5.009476170876763e-13, -4.56458556703949e-13, -8.384667312720623e-13, -2.817257013191817e-12, -3.0013843961921734e-12, 1.8405315136440438e-12, 3.013676733503813e-12, 2.132936271351796e-13, 8.262207032703231e-13, 6.483410082310452e-13, 4.289538947412315e-13, 1.4253036146670016e-13, 1.8762174046664783e-13, 4.362801060239832e-13, 4.2293275900124177e-13, 6.342730818643621e-13, -3.5796140931778366e-13, 1.8263933995309598e-14, -2.271901611554613e-13, 7.471230743124013e-14, 5.143015953388296e-13, -3.9248732604445885e-14, -4.485104179412602e-13, -1.7597346019003078e-13, -4.2520524768977406e-13, 1.3408480301249467e-13, 1.0292379206760985e-12, 2.860416588202907e-13, -1.2320901343479156e-13, 5.032097340295612e-13, 2.7677493884140363e-15, -4.971296053683737e-13, 5.760682356684105e-13, -1.9859971234931837e-12, 7.189790704473512e-13, -2.357259920052626e-13, 6.768159358579996e-13, 4.441681906147424e-13, 9.172283331215018e-13, -3.234519325371021e-13, 1.0003769163432028e-12, 3.370036513398344e-13, 3.957601972696319e-13, 1.4815174768856213e-12, -3.014052226697193e-13, 4.208094325019547e-13, 1.1719879054679827e-13, 3.0256402040153e-13, 6.843475550278445e-14, 3.3104190646998653e-13, 3.836742305938705e-13, 6.303859836304747e-14, 2.3877265521968644e-13, 6.118916359397384e-13, 2.2168501555038286e-13, 6.437599217765065e-13, 3.1199337923906264e-13, -3.9077850350475726e-13, -4.728211140517093e-13, 1.0063623683907089e-12, -7.355974011432621e-13, -1.1706572184423417e-12, -1.0431364834222713e-12, 3.76186090136788e-13, 1.415910532432837e-13, -4.1128009505777436e-13, 7.008516451852527e-13, 9.408484625189012e-14, 1.968828384611291e-14, 1.233053565266678e-12, 2.3207490893725076e-13, 1.40786710948153e-13, 1.098103562071077e-12, 2.8186744367269444e-13, 1.0425751138173863e-12, 2.071004361614611e-12, 8.034758657656169e-13, 1.2467311284277392e-12, 1.1699697665569537e-12, 5.282552656243343e-12, -388.9087296526104, -3.309178624007723e-12, -5.255737197475258e-12, -9.23061782821145e-13, -1.054095079169616e-12, -9.02740945658128e-13, 1.8225757376013672e-12, 8.961038202979234e-13, -1.5213148409668639e-12, -2.4409428087552087e-12, -5.421766211101709e-13, -3.9314734860970435e-13, -3.176058112871148e-13, -2.803530165657807e-13, -4.690816055307379e-13, -2.5303031656518893e-13, -2.114775981164205e-13, -1.0041917874438069e-12, -2.703077651718064e-14, 2.1275854076316462e-13, 4.278327007301334e-14, -5.908641398726145e-13, 5.839768208008703e-13, -5.816566960444118e-13, -5.659412355248223e-13, 5.775113780902946e-14, 2.061459068476351e-13, 4.7495259335431446e-14, 1.214775373295131e-13, 1.3560644713249678e-13, -2.641607167358811e-13, -7.649173217339425e-14, 1.1806255761470835e-13, -4.885972032190754e-13, -5.343561865676701e-13, -4.575276179830832e-13, -9.65199850027216e-13, -1.8662244497303313e-12, 1.3523158958825694e-13, 5.880280607784265e-13, 1.7236791277904755e-13, 3.1940827415568625e-13, -3.7652187169370463e-13, -3.5167498500538943e-13, 6.676674237172067e-14, 6.598010626682036e-14, 2.3758575488207664e-13, 1.0447857754000303e-13, -9.132845010752988e-14, 1.0476398523565636e-13, -8.95400617019714e-13, 4.70157782979658e-13, -2.2201447205166078e-13, -7.96238158735409e-13, 8.099393584520231e-13, -1.3661587613072689e-13, 4.634172899244353e-13, -1.6399115105994595e-12, -3.282460916213955e-12, -2.1360762286589217e-13, 2.144486024984975e-12, -1.2626783676764223e-13, 1.3576364366261986e-14, -7.252363392566413e-14, 1.9296261087395851e-13, -3.055333763768431e-13, 1.4089700649025692e-12, -7.92348954738935e-13, 1.0918669697663442e-12, 1.9750528048582528e-13, -1.7930511765723462e-14, 5.218179712190644e-13, 2.2445580639531968e-13, -6.893115744372707e-13, 2.0606787250578094e-13, -1.7048570047855933e-13, 5.905029373518388e-14, -7.797373213538602e-14, -2.438737312066894e-13, 3.184582064748741e-13, 1.795106362590995e-13, -2.380319182215554e-13, 1.6601285508877882e-13, 4.2636181455056054e-13, 2.999692695103899e-14, -8.610816727133692e-14, 4.08376688058712e-13, -3.1299474138637424e-13, 1.3543367467236692e-13, 2.2443970418177186e-13, 2.611677324042045e-13, 3.177263689443249e-13, -9.14222654513339e-13, -4.1620399151296507e-13, 7.023999447221397e-13, 3.327207981052529e-14, -2.099133766482995e-13, -4.610212744208274e-13, 4.682316074181096e-13, 1.4349744139085283e-13, 6.568667166792182e-14, -3.519271863290303e-13, 5.981559335657033e-13, -1.3288905750734898e-13, -4.3545232135079526e-14, 3.365216613544277e-13, -3.9807030653483535e-13, 2.263830538403136e-14, 3.074945725612684e-14, 2.7547973739592686e-13, 3.5443303896652567e-13, -3.5567217483939684e-13, -1.516110993381424e-12, -7.395193043663718e-13, 4.944535391733403e-13, 1.4438689628959865e-13, -8.461323549753679e-13, 1.8511240538703945e-12, -3.608096824414018e-13, -1.9453327837481993e-12, 8.697043085703625e-12, 1.438539977751134e-11, 7.643863527540351e-12, -4.012050600043043e-12, 1.2126872395899178e-12, 3.8218504787693375e-13, -3.724415936221769e-12, -4.438723267172633e-13, 1.641266554768883e-13, -7.872640247531836e-13, 8.645716381027795e-13, -4.0991914653548744e-13, -8.820237035907413e-13, 9.345388285235632e-14, -4.188799657612371e-13, -4.646886021758341e-13, 6.253659750800884e-13, 5.182028414804492e-13, -8.450963597250825e-14, -1.8754572497879822e-13, 1.2921227092635943e-13, 2.639837603968363e-13, -4.1046535955684167e-13, -4.537898514840242e-13, -7.30421642442905e-15, -6.181315206702314e-13, -9.265803425474438e-13, 4.817317371570856e-13, 3.575253751506945e-13, -6.912671035185145e-13, 1.4496395401352317e-13, 2.24653119411301e-13, -3.517354454050272e-13, 2.8944452473647236e-13, -9.083130790334282e-14, 3.464800325032482e-13, 5.06724713842227e-13, -6.35541041184076e-14, 2.779314915593137e-13, 3.251806501157879e-13, -2.453320709811066e-13, 1.0361414999473038e-14, 3.1251465670326126e-13, -2.696618790705035e-13, -8.570659677289474e-14, 6.815621044358277e-13, 7.350669741994502e-13, 3.2480336508366584e-13, -7.945790999453159e-13, -5.908049204498294e-13, 8.674731702088933e-13, -2.43150955076863e-13, -9.212015324720921e-14, 8.667834019536656e-13, 7.676935322608082e-13, 62.500000000000476, 2.4100294983511727e-12, -1.2411555322205637e-12, 4.000925183998413e-12, 1.8760858179881426e-12, -7.1752494296133105e-12, -4.192340676811927e-12, -4.0731509388949193e-13, -3.75749323172084e-12, -2.331279982702249e-12, 1.3959027777979125e-12, 1.0067647904423069e-12, -1.0804912007906268e-14, 2.718494185940519e-13, -6.545032015118952e-13, 2.0094383992597568e-13, 3.5562812382429935e-14, -6.172199920918047e-14, 3.9934830971159924e-13, 6.091295174378786e-14, 4.545720598826049e-14, 1.541733321654646e-13, -4.4668296982141916e-14, 1.0775380537544287e-13, 4.107761129023607e-13, 2.6437317042978913e-13, -8.281735771310087e-13, 4.029624197774738e-13, 1.0500748832485873e-12, 6.000439024416187e-14, -1.0859284015420576e-12, -1.4595863061553352e-12, 2.1629478789267097e-13, -4.434741175656989e-13, -5.471223106585151e-13, 2.844986875076059e-13, -2.915147474363744e-13, -7.379600958592985e-13, 3.816350955303773e-13, -5.979107651788414e-13, -2.6500518073284414e-13, 1.4556794968819212e-13, -6.355480592670735e-13, -6.778165690167519e-13, 3.54444972642229e-13, -8.675124439158109e-13, 4.0128626602069537e-13, -4.866849700990158e-13, -6.977604899307846e-13, -5.114225473294068e-13, 1.1093627731816064e-12, -7.195450833892854e-13, 1.632278674155827e-13, -4.986233980545705e-13, -2.3592481363725777e-12, 2.7246404795964315e-13, 6.277513937591109e-13, 4.79412874658776e-13, -5.558477610044044e-13, -2.0595463387267983e-13, 3.819989711031917e-13, 2.208461586326132e-13, -8.251788532846906e-13, 1.0659880918047564e-12, 7.683348628372344e-13, -3.410605131648481e-13, -9.179712554506989e-13, 1.6089265010007489e-12, 7.828436799129666e-13, 3.643958103737881e-13, -1.3900559120422586e-13, -4.350868075050937e-13, 1.9872743789771806e-13, 3.751046254565277e-13, 1.3336251650688317e-14, 1.852919788976812e-13, -7.713640174323546e-14, -1.677794538641051e-13, 1.4479297233240122e-13, -2.2136837010852477e-13, 2.753808170344546e-13, 4.925720580947035e-13, 2.3170789579270806e-13, -3.2166513561827377e-13, -1.1063733518299032e-12, 2.6278423222057986e-13, 2.487886782211877e-13, 1.9614693460605776e-13, 3.0574752111782784e-13, 2.614082341843169e-13, -2.5273271180661174e-13, 7.580499147903623e-13, 7.042054467796981e-13, -5.041753044920184e-13, 2.5656077531491783e-13, 3.5862088367050914e-13, -4.2957745100138227e-13, 4.1701986984852736e-13, 8.504694754927996e-14, -1.1068005778876163e-13, 6.523368874057722e-13, 7.849048361638741e-13, 8.078181639090598e-14, -5.084030956164536e-13, -7.884415713925242e-13, 6.405614655852805e-13, 5.913518556276152e-13, -9.954344504257927e-14, -6.637467082598359e-14, 3.99075474015601e-13, -5.453012382172484e-13, 1.1312294323722138e-12, -4.03759325007714e-14, -4.788780243199548e-13, -9.586665545780376e-13, 2.031331446320944e-13, -2.9545395839919555e-13, -5.553797508915879e-13, -8.648071600890365e-15, -1.165452897672916e-12, -1.5714259443145566e-12, -3.2882341217964983e-12, 6.13516039404128e-13, 1.3348519903759879e-12, -1.4183445345554571e-12, 2.178991959141828e-12, 2.744346459375977e-12, -3.6681448746613055e-14, 3.907533094859648e-13, 9.737753641088977e-13, -2.375976363774149e-13, 8.88543253489831e-13, 5.537717817225388e-13, 6.351201249334301e-14, 9.607439082408307e-13, 7.343281475061488e-13, 4.061580310101929e-13, 2.819415869896602e-12, 2.2967668046667154e-12, -2.880613701046942e-12, -2.840047934616612e-12, -7.516936486725953e-13, -5.267991222874028e-14, -6.716380132542201e-13, 1.0261315209673443e-13, 1.4656442762732638e-13, -7.249502987430481e-13, 2.969128747863959e-13, 1.8587045158089503e-13, -4.172363055747398e-14, -2.8905845207937055e-13, -4.831690603168681e-13, -5.21315761603983e-13, 2.235645799310385e-13, 1.1162156404008992e-13, 1.6982399411610925e-13, -1.0805560761599223e-13, 4.1041805073376203e-13, 7.206373704051382e-13, -4.771332193575252e-13, 2.5879672144576636e-13, -1.5145762269931714e-13, -4.993626800601036e-13, -5.977921612738057e-13, -1.70638836232427e-13, 1.1878911460509644e-12, -1.7474314973975396e-12, -1.1797792871618819e-12, -1.119973883956215e-12, 1.6037967192427422e-12, 8.270025379644037e-14, -7.65632766022884e-13, 2.9662827042120294e-13, 3.4316669678423955e-13, 2.396495173779134e-13, 5.06219505230296e-13, -2.8295839467312015e-13, -1.0193013679792083e-12, -7.580530518755098e-13, -2.451225035960413e-13, 2.2691177039082094e-13, 3.455876777123948e-13, 1.7043690659372551e-13, 2.717444878369726e-13, 5.772133665431601e-13, -1.1217351830226273e-12, 3.824591753424346e-13, 8.883103303823529e-13, 7.028598379920864e-13, -3.620879596908649e-14, -2.817179491486313e-13, 4.3993685408996903e-13, 3.898072596969984e-13, 3.097298442125965e-13, -1.0334840204703802e-12, -1.8003376567321538e-12, -1.0334840204703802e-12, 3.097298442125965e-13, 3.898072596969984e-13, 4.3993685408996903e-13, -2.817179491486313e-13, -3.620879596908649e-14, 7.028598379920864e-13, 8.883103303823529e-13, 3.824591753424346e-13, -1.1217351830226273e-12, 5.772133665431601e-13, 2.717444878369726e-13, 1.7043690659372551e-13, 3.455876777123948e-13, 2.2691177039082094e-13, -2.451225035960413e-13, -7.580530518755098e-13, -1.0193013679792083e-12, -2.8295839467312015e-13, 5.06219505230296e-13, 2.396495173779134e-13, 3.4316669678423955e-13, 2.9662827042120294e-13, -7.65632766022884e-13, 8.270025379644037e-14, 1.6037967192427422e-12, -1.119973883956215e-12, -1.1797792871618819e-12, -1.7474314973975396e-12, 1.1878911460509644e-12, -1.70638836232427e-13, -5.977921612738057e-13, -4.993626800601036e-13, -1.5145762269931714e-13, 2.5879672144576636e-13, -4.771332193575252e-13, 7.206373704051382e-13, 4.1041805073376203e-13, -1.0805560761599223e-13, 1.6982399411610925e-13, 1.1162156404008992e-13, 2.235645799310385e-13, -5.21315761603983e-13, -4.831690603168681e-13, -2.8905845207937055e-13, -4.172363055747398e-14, 1.8587045158089503e-13, 2.969128747863959e-13, -7.249502987430481e-13, 1.4656442762732638e-13, 1.0261315209673443e-13, -6.716380132542201e-13, -5.267991222874028e-14, -7.516936486725953e-13, -2.840047934616612e-12, -2.880613701046942e-12, 2.2967668046667154e-12, 2.819415869896602e-12, 4.061580310101929e-13, 7.343281475061488e-13, 9.607439082408307e-13, 6.351201249334301e-14, 5.537717817225388e-13, 8.88543253489831e-13, -2.375976363774149e-13, 9.737753641088977e-13, 3.907533094859648e-13, -3.6681448746613055e-14, 2.744346459375977e-12, 2.178991959141828e-12, -1.4183445345554571e-12, 1.3348519903759879e-12, 6.13516039404128e-13, -3.2882341217964983e-12, -1.5714259443145566e-12, -1.165452897672916e-12, -8.648071600890365e-15, -5.553797508915879e-13, -2.9545395839919555e-13, 2.031331446320944e-13, -9.586665545780376e-13, -4.788780243199548e-13, -4.03759325007714e-14, 1.1312294323722138e-12, -5.453012382172484e-13, 3.99075474015601e-13, -6.637467082598359e-14, -9.954344504257927e-14, 5.913518556276152e-13, 6.405614655852805e-13, -7.884415713925242e-13, -5.084030956164536e-13, 8.078181639090598e-14, 7.849048361638741e-13, 6.523368874057722e-13, -1.1068005778876163e-13, 8.504694754927996e-14, 4.1701986984852736e-13, -4.2957745100138227e-13, 3.5862088367050914e-13, 2.5656077531491783e-13, -5.041753044920184e-13, 7.042054467796981e-13, 7.580499147903623e-13, -2.5273271180661174e-13, 2.614082341843169e-13, 3.0574752111782784e-13, 1.9614693460605776e-13, 2.487886782211877e-13, 2.6278423222057986e-13, -1.1063733518299032e-12, -3.2166513561827377e-13, 2.3170789579270806e-13, 4.925720580947035e-13, 2.753808170344546e-13, -2.2136837010852477e-13, 1.4479297233240122e-13, -1.677794538641051e-13, -7.713640174323546e-14, 1.852919788976812e-13, 1.3336251650688317e-14, 3.751046254565277e-13, 1.9872743789771806e-13, -4.350868075050937e-13, -1.3900559120422586e-13, 3.643958103737881e-13, 7.828436799129666e-13, 1.6089265010007489e-12, -9.179712554506989e-13, -3.410605131648481e-13, 7.683348628372344e-13, 1.0659880918047564e-12, -8.251788532846906e-13, 2.208461586326132e-13, 3.819989711031917e-13, -2.0595463387267983e-13, -5.558477610044044e-13, 4.79412874658776e-13, 6.277513937591109e-13, 2.7246404795964315e-13, -2.3592481363725777e-12, -4.986233980545705e-13, 1.632278674155827e-13, -7.195450833892854e-13, 1.1093627731816064e-12, -5.114225473294068e-13, -6.977604899307846e-13, -4.866849700990158e-13, 4.0128626602069537e-13, -8.675124439158109e-13, 3.54444972642229e-13, -6.778165690167519e-13, -6.355480592670735e-13, 1.4556794968819212e-13, -2.6500518073284414e-13, -5.979107651788414e-13, 3.816350955303773e-13, -7.379600958592985e-13, -2.915147474363744e-13, 2.844986875076059e-13, -5.471223106585151e-13, -4.434741175656989e-13, 2.1629478789267097e-13, -1.4595863061553352e-12, -1.0859284015420576e-12, 6.000439024416187e-14, 1.0500748832485873e-12, 4.029624197774738e-13, -8.281735771310087e-13, 2.6437317042978913e-13, 4.107761129023607e-13, 1.0775380537544287e-13, -4.4668296982141916e-14, 1.541733321654646e-13, 4.545720598826049e-14, 6.091295174378786e-14, 3.9934830971159924e-13, -6.172199920918047e-14, 3.5562812382429935e-14, 2.0094383992597568e-13, -6.545032015118952e-13, 2.718494185940519e-13, -1.0804912007906268e-14, 1.0067647904423069e-12, 1.3959027777979125e-12, -2.331279982702249e-12, -3.75749323172084e-12, -4.0731509388949193e-13, -4.192340676811927e-12, -7.1752494296133105e-12, 1.8760858179881426e-12, 4.000925183998413e-12, -1.2411555322205637e-12, 2.4100294983511727e-12, 62.500000000000476, 7.676935322608082e-13, 8.667834019536656e-13, -9.212015324720921e-14, -2.43150955076863e-13, 8.674731702088933e-13, -5.908049204498294e-13, -7.945790999453159e-13, 3.2480336508366584e-13, 7.350669741994502e-13, 6.815621044358277e-13, -8.570659677289474e-14, -2.696618790705035e-13, 3.1251465670326126e-13, 1.0361414999473038e-14, -2.453320709811066e-13, 3.251806501157879e-13, 2.779314915593137e-13, -6.35541041184076e-14, 5.06724713842227e-13, 3.464800325032482e-13, -9.083130790334282e-14, 2.8944452473647236e-13, -3.517354454050272e-13, 2.24653119411301e-13, 1.4496395401352317e-13, -6.912671035185145e-13, 3.575253751506945e-13, 4.817317371570856e-13, -9.265803425474438e-13, -6.181315206702314e-13, -7.30421642442905e-15, -4.537898514840242e-13, -4.1046535955684167e-13, 2.639837603968363e-13, 1.2921227092635943e-13, -1.8754572497879822e-13, -8.450963597250825e-14, 5.182028414804492e-13, 6.253659750800884e-13, -4.646886021758341e-13, -4.188799657612371e-13, 9.345388285235632e-14, -8.820237035907413e-13, -4.0991914653548744e-13, 8.645716381027795e-13, -7.872640247531836e-13, 1.641266554768883e-13, -4.438723267172633e-13, -3.724415936221769e-12, 3.8218504787693375e-13, 1.2126872395899178e-12, -4.012050600043043e-12, 7.643863527540351e-12, 1.438539977751134e-11, 8.697043085703625e-12, -1.9453327837481993e-12, -3.608096824414018e-13, 1.8511240538703945e-12, -8.461323549753679e-13, 1.4438689628959865e-13, 4.944535391733403e-13, -7.395193043663718e-13, -1.516110993381424e-12, -3.5567217483939684e-13, 3.5443303896652567e-13, 2.7547973739592686e-13, 3.074945725612684e-14, 2.263830538403136e-14, -3.9807030653483535e-13, 3.365216613544277e-13, -4.3545232135079526e-14, -1.3288905750734898e-13, 5.981559335657033e-13, -3.519271863290303e-13, 6.568667166792182e-14, 1.4349744139085283e-13, 4.682316074181096e-13, -4.610212744208274e-13, -2.099133766482995e-13, 3.327207981052529e-14, 7.023999447221397e-13, -4.1620399151296507e-13, -9.14222654513339e-13, 3.177263689443249e-13, 2.611677324042045e-13, 2.2443970418177186e-13, 1.3543367467236692e-13, -3.1299474138637424e-13, 4.08376688058712e-13, -8.610816727133692e-14, 2.999692695103899e-14, 4.2636181455056054e-13, 1.6601285508877882e-13, -2.380319182215554e-13, 1.795106362590995e-13, 3.184582064748741e-13, -2.438737312066894e-13, -7.797373213538602e-14, 5.905029373518388e-14, -1.7048570047855933e-13, 2.0606787250578094e-13, -6.893115744372707e-13, 2.2445580639531968e-13, 5.218179712190644e-13, -1.7930511765723462e-14, 1.9750528048582528e-13, 1.0918669697663442e-12, -7.92348954738935e-13, 1.4089700649025692e-12, -3.055333763768431e-13, 1.9296261087395851e-13, -7.252363392566413e-14, 1.3576364366261986e-14, -1.2626783676764223e-13, 2.144486024984975e-12, -2.1360762286589217e-13, -3.282460916213955e-12, -1.6399115105994595e-12, 4.634172899244353e-13, -1.3661587613072689e-13, 8.099393584520231e-13, -7.96238158735409e-13, -2.2201447205166078e-13, 4.70157782979658e-13, -8.95400617019714e-13, 1.0476398523565636e-13, -9.132845010752988e-14, 1.0447857754000303e-13, 2.3758575488207664e-13, 6.598010626682036e-14, 6.676674237172067e-14, -3.5167498500538943e-13, -3.7652187169370463e-13, 3.1940827415568625e-13, 1.7236791277904755e-13, 5.880280607784265e-13, 1.3523158958825694e-13, -1.8662244497303313e-12, -9.65199850027216e-13, -4.575276179830832e-13, -5.343561865676701e-13, -4.885972032190754e-13, 1.1806255761470835e-13, -7.649173217339425e-14, -2.641607167358811e-13, 1.3560644713249678e-13, 1.214775373295131e-13, 4.7495259335431446e-14, 2.061459068476351e-13, 5.775113780902946e-14, -5.659412355248223e-13, -5.816566960444118e-13, 5.839768208008703e-13, -5.908641398726145e-13, 4.278327007301334e-14, 2.1275854076316462e-13, -2.703077651718064e-14, -1.0041917874438069e-12, -2.114775981164205e-13, -2.5303031656518893e-13, -4.690816055307379e-13, -2.803530165657807e-13, -3.176058112871148e-13, -3.9314734860970435e-13, -5.421766211101709e-13, -2.4409428087552087e-12, -1.5213148409668639e-12, 8.961038202979234e-13, 1.8225757376013672e-12, -9.02740945658128e-13, -1.054095079169616e-12, -9.23061782821145e-13, -5.255737197475258e-12, -3.309178624007723e-12, -388.9087296526104, 5.282552656243343e-12, 1.1699697665569537e-12, 1.2467311284277392e-12, 8.034758657656169e-13, 2.071004361614611e-12, 1.0425751138173863e-12, 2.8186744367269444e-13, 1.098103562071077e-12, 1.40786710948153e-13, 2.3207490893725076e-13, 1.233053565266678e-12, 1.968828384611291e-14, 9.408484625189012e-14, 7.008516451852527e-13, -4.1128009505777436e-13, 1.415910532432837e-13, 3.76186090136788e-13, -1.0431364834222713e-12, -1.1706572184423417e-12, -7.355974011432621e-13, 1.0063623683907089e-12, -4.728211140517093e-13, -3.9077850350475726e-13, 3.1199337923906264e-13, 6.437599217765065e-13, 2.2168501555038286e-13, 6.118916359397384e-13, 2.3877265521968644e-13, 6.303859836304747e-14, 3.836742305938705e-13, 3.3104190646998653e-13, 6.843475550278445e-14, 3.0256402040153e-13, 1.1719879054679827e-13, 4.208094325019547e-13, -3.014052226697193e-13, 1.4815174768856213e-12, 3.957601972696319e-13, 3.370036513398344e-13, 1.0003769163432028e-12, -3.234519325371021e-13, 9.172283331215018e-13, 4.441681906147424e-13, 6.768159358579996e-13, -2.357259920052626e-13, 7.189790704473512e-13, -1.9859971234931837e-12, 5.760682356684105e-13, -4.971296053683737e-13, 2.7677493884140363e-15, 5.032097340295612e-13, -1.2320901343479156e-13, 2.860416588202907e-13, 1.0292379206760985e-12, 1.3408480301249467e-13, -4.2520524768977406e-13, -1.7597346019003078e-13, -4.485104179412602e-13, -3.9248732604445885e-14, 5.143015953388296e-13, 7.471230743124013e-14, -2.271901611554613e-13, 1.8263933995309598e-14, -3.5796140931778366e-13, 6.342730818643621e-13, 4.2293275900124177e-13, 4.362801060239832e-13, 1.8762174046664783e-13, 1.4253036146670016e-13, 4.289538947412315e-13, 6.483410082310452e-13, 8.262207032703231e-13, 2.132936271351796e-13, 3.013676733503813e-12, 1.8405315136440438e-12, -3.0013843961921734e-12, -2.817257013191817e-12, -8.384667312720623e-13, -4.56458556703949e-13, -5.009476170876763e-13, -6.747800465533192e-13, -9.52290149173861e-13, -7.91118290481596e-13, -3.100965185068243e-13, -2.325136659496904e-13, 205.0609665440998, -7.150798038762266e-13, -1.3747532275187957e-13, -6.403155845440119e-13, 7.294401212704048e-14, 6.348578494206641e-13, -5.945475867581277e-14, -5.399073272087816e-13, -3.8968548106945243e-13, 3.096229147104526e-13, 4.511556431481594e-13, -1.1495752389410338e-13, -4.2775855508458255e-15, 6.929749901591995e-13, -1.7037798662457177e-12, -1.0704606340947594e-12, 1.9053799180841526e-12, -6.704682887409734e-13, -5.251490585476897e-13, -3.5903652652478484e-13, 2.515281331796921e-13, -4.85828625056437e-13, 2.2602822620020674e-13, 6.44459599062958e-13, -1.2028503716978058e-12, 1.3894307972647702e-13, -1.1350991281748349e-12, 2.332003684172758e-12, -2.3091196458763367e-13, 6.976223715802632e-13, 1.2384666686561578e-12, -1.1752967610188974e-12, 1.1075658819015911e-13, -1.1694894963649042e-13, 1.152518958504873e-12, -1.295644938377756e-12, 2.9606497380503774e-13, -1.8781560735979016e-13, 2.1392625903901224e-13, 3.0821581059220786e-13, -1.2033982387669978e-13, 2.9881941294370677e-13, 5.970406887050065e-14, -4.475803577819961e-13], "showlegend": true, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -6.177506275677173e-13, -4.88377105578693e-13, -1.2376929201598963e-13, -2.693866771737415e-13, -9.232812212065742e-14, 2.0123370828584826e-13, -2.6696194723263477e-13, 6.518636094411922e-13, 5.215639879819555e-13, -4.821752538045476e-13, -1.3722748071879775e-12, 3.879663527827686e-13, 4.608606174164134e-13, -1.251852142956941e-12, 8.69092632335504e-14, -2.5398479998485977e-13, 1.2561223195110517e-13, 1.904935754984894e-12, 5.529487448830615e-13, -5.094462255931091e-13, 3.8283593729502747e-13, -1.4065576744927352e-13, 1.5211092404398146e-13, 8.146046263837926e-13, -6.563063204987315e-13, -7.618034309456173e-14, 8.038280509255104e-13, -1.6249318940387782e-13, 1.723343646129641e-12, -1.9458114764570078e-12, 3.747910318861361e-13, 3.976175091566971e-13, -7.983494491470074e-13, -1.5222674084921904e-13, 3.765414349024572e-13, 3.826289632535005e-13, 4.1791589670436406e-13, -3.435387881996092e-13, -2.862793723006579e-13, 4.099269963425596e-13, 3.621243366980119e-13, -8.748742749872645e-14, 6.385181575252622e-13, 205.0609665440977, 6.954266951748535e-13, 4.770297228882518e-13, 6.048143388432739e-13, 1.5516220382481568e-13, 2.073130510397586e-13, 2.2115396728855991e-13, -3.872946815972738e-13, 2.411473136214741e-13, 6.859432660849356e-13, -3.8095221379730966e-12, -4.329286614567084e-12, 1.1727841841816787e-13, 3.6165838040083263e-13, -5.515429298374814e-13, 2.2394781413449836e-13, -1.2231026035785476e-13, -1.2294270089543768e-13, 1.732803546066588e-13, 2.822369979497512e-13, -7.281429911431224e-13, 6.200135295179913e-13, 2.522924355532048e-13, 7.118601521878267e-13, 9.5281063952366e-14, -6.175369559365874e-13, -1.4278177345386255e-13, 5.187627805824227e-13, 4.1649395242148585e-13, -3.2221993754162487e-13, -4.98629683868803e-13, -1.3682400131782512e-12, 2.531405144442157e-14, 6.071110212841127e-13, -1.2228838802538652e-13, 6.255452831164559e-13, -4.199042573443527e-13, 9.706432867936377e-13, 4.3203202517092567e-13, -9.603465703645036e-13, -7.210223330729656e-13, -1.4655687560424769e-12, 3.7736207407007244e-13, -5.731373575855218e-13, -3.4730569945721326e-13, 1.0499068176267066e-13, -1.1917418702166446e-13, 2.081602534298426e-13, -1.151111175171433e-12, 6.619458646500218e-13, -1.213021795751408e-13, 9.537286055446082e-13, 2.658547988357389e-13, 1.919740430818532e-13, 3.0656570635184593e-13, 3.690873781692799e-13, 1.2834209807260075e-13, 3.3667072459550765e-13, 1.3736646161960336e-13, 9.506972933760781e-14, 2.8945485364350014e-13, 3.603733750604127e-13, 4.045839206270763e-13, 7.149834311600501e-13, 2.5390643160431465e-13, 1.1632615161688496e-12, 9.490826973745588e-13, 1.0787102190080568e-15, -3.0415260817507593e-13, -4.3776948529620553e-13, -3.625131168621764e-13, -4.5434351684011123e-13, -2.9220334905620966e-13, 2.5670646192908927e-13, -4.820557026713791e-13, 7.680175733731214e-15, 1.4542270209069172e-13, -4.934183130601837e-13, 9.464416584511564e-13, 5.839356615524494e-13, 6.620567392674111e-14, 1.2321087024107346e-12, -1.3761209594978284e-13, 2.933358898575273e-13, 3.431784962078661e-12, 1.6014338422770666e-12, -388.90872965258785, -4.813815718196359e-12, 1.3109061199754704e-12, -2.3781558576163193e-12, -1.0907008199189474e-12, -2.8613685733654e-12, -2.0505771062644204e-12, 3.3043901452271964e-12, -7.403181553324973e-13, 2.00865790447627e-12, -1.815076464081117e-12, -9.815612415614835e-13, 2.6660637050592434e-13, -6.110246380119674e-13, -6.209694759067618e-13, 4.5314804510301396e-13, -4.602629319719036e-13, -7.810485406011266e-13, -5.248675928345385e-13, -1.1110423152462956e-12, 2.387923734370173e-13, 1.0807568595704954e-13, -2.5124084952522507e-13, -2.1674452117735883e-13, -3.2452850015801863e-13, -2.688154432958791e-13, -4.793444653734443e-13, 3.0403972673262565e-13, -2.009984924445563e-14, -4.3973760333273394e-13, 4.559492067504078e-14, 1.0370708065165877e-14, -2.864903083776119e-14, 5.067698561889495e-13, 7.683560546070729e-13, -5.219982434879164e-13, 7.227996724744667e-13, -7.283491283611756e-13, -1.712218212566073e-12, -2.4231394154135896e-13, -5.275976322371304e-13, -3.800844763953568e-13, 1.6225766820290396e-13, -5.621000070538693e-13, -2.7554094744252627e-13, -6.209882157833757e-13, -1.6063970687630057e-13, 1.5621544689014672e-13, 1.9492875357705832e-15, -1.3460700990999244e-14, -1.541990106986086e-13, -6.771944191658973e-13, 8.517756276822265e-13, -8.679183797179683e-13, 2.7497550924828207e-13, -5.557415400916682e-13, 1.5654532519517547e-12, 1.0991083685719748e-12, -9.067434583742542e-13, -4.1737853335708984e-12, -9.067811981820844e-13, 1.2980863176243428e-12, -9.40676868441773e-13, -1.2900393418411628e-12, 2.0734556507790644e-13, -7.620570841027074e-13, -6.451710563684665e-13, -2.856760792441158e-13, -8.973788019779924e-13, 6.340018566550653e-13, -2.684170973403308e-13, -5.134941293587258e-14, 8.439329493777715e-13, -5.3830447922135e-15, -7.945584842579773e-13, 2.9677712334735597e-13, -1.0210614799507654e-12, 1.395150822036683e-13, -3.2125941767225955e-13, -4.4602109738061953e-13, 1.1409006161733155e-13, -6.221047517297526e-13, -5.299210987363713e-13, -6.773560885971786e-14, 1.311230371259276e-13, -4.896479985966432e-14, -2.425456458617129e-13, -4.967123751840905e-13, -5.500020112091959e-13, -2.2703018974308092e-13, -1.2445636443586747e-13, 8.971793292488171e-13, 1.6189868793063773e-13, -1.5209190841247788e-12, -5.663679015171591e-13, -2.879341556821258e-13, -1.0366425053893056e-13, 1.5218501408573495e-13, -3.794412632263072e-14, -1.1117300693893149e-12, 2.390153349811183e-13, 7.521538187425498e-14, -9.11027097793918e-13, -4.735085511648156e-13, -3.950477560209726e-14, -8.018297157649266e-13, -4.951399544731688e-13, 3.5054445930243544e-13, -1.0850617285050014e-12, -1.0642040880340442e-12, 1.3406611980277586e-12, -1.632112533838654e-12, 3.8835788473211005e-13, -2.5493253259911338e-12, -1.4991156708724935e-12, -1.7526014316828996e-12, -1.849103375765941e-12, -2.620118504927885e-12, -2.56572071514666e-12, -3.366767802048809e-12, -9.908185383267211e-12, 370.00000000000284, 9.484842859170232e-12, 3.834387327389173e-12, 2.809902224777931e-12, 4.631115925986267e-12, 8.06084288216469e-13, 5.438563864630457e-13, 1.164901516340668e-12, -5.172624394840566e-13, 1.0522057543861884e-12, 1.7599699973956806e-12, -9.638718983246497e-14, 7.833465269331913e-13, 1.0398312040817075e-12, -4.42817614395905e-13, 6.622904942716014e-13, 5.51477483905855e-13, -5.01834486865454e-14, 8.822198244909058e-13, 7.513133645693578e-14, -2.192274188948212e-13, 7.205055755538742e-13, 6.974467039421175e-13, 3.1176514093611615e-13, 7.629287269149252e-13, -1.7101474737345118e-13, -1.1524722701891876e-12, 4.0894562295597374e-13, 3.062804180338012e-13, -3.6919546813363224e-13, 3.294820496383803e-13, 1.7048142806283212e-13, 7.439034557716498e-14, 1.5870532885733905e-13, -5.1113354719588793e-14, -1.6882181511818804e-13, 5.15925764208101e-13, 4.0245787204828365e-13, -7.295524610195003e-14, 4.2082029681038766e-13, 6.348032476350344e-13, 3.7530865418084483e-13, -1.8572970676858246e-13, -8.182395180794847e-13, 1.1587928271744675e-13, 4.968548747971075e-13, 8.579952537236749e-13, 6.526336035104964e-13, -2.7202879179334885e-13, 2.5792004185335668e-14, 2.440865657125153e-13, -5.117025917840353e-13, 1.2530988784745236e-12, -3.1846163844922633e-13, 108.25317547305478, 1.4683774654555042e-12, -1.3164928944774464e-12, 1.5202678916618869e-12, 8.276850377629794e-12, 4.91710211525909e-12, -2.993129480051366e-12, 6.480256726174729e-13, -1.3721224972517678e-13, -4.001067809983954e-12, -2.046888229032968e-12, 1.5308171218297931e-13, -5.755463503950966e-13, -3.2444188623448506e-13, -4.1342735635682573e-13, -1.0316303180344902e-13, -1.2492144061379501e-14, -3.120528848707118e-13, -1.9688607759555242e-13, 2.1133607630795891e-13, -3.550538055938114e-13, -1.1462154086717204e-14, 5.354310289055136e-14, -8.870206948386877e-14, -3.3645144759935967e-13, 6.008520111949194e-13, 7.661722611756734e-13, -6.225135861032806e-13, 3.2298174337865124e-13, 1.4931976972785578e-12, 1.0700355310510907e-12, -2.2563934826692143e-13, -4.141668708358947e-13, 4.462737093276823e-13, -1.6661608361866173e-13, -1.5848982240394756e-13, 1.653069440148399e-13, -4.82743171505421e-13, -1.1983859311255956e-13, 4.226300007242609e-13, -1.881856684050834e-13, 4.561202491406879e-13, 4.84876803671295e-13, -1.3492468039683674e-12, 5.356728157919954e-13, 3.229089085673827e-14, -7.507196684256881e-13, 2.264119412272211e-13, -1.1724284100873938e-12, 4.467828410835824e-13, 9.742740747532507e-13, -6.364536549882283e-13, -1.2939262823065523e-14, 1.6712248043214225e-12, -2.1152343680444084e-12, 1.4831365375317374e-14, -2.413455766208653e-12, 7.229742109386832e-13, -5.505200059476335e-13, -4.2058120692063295e-13, -5.123682594721516e-13, 1.0655158525563993e-13, -5.574405934286408e-13, -7.741026479015367e-13, -2.70108530239538e-15, -1.1084466677857563e-12, 1.168643420437423e-12, -1.5275330098898629e-12, 6.269302322560602e-13, 2.871522713049955e-13, 4.464777590819579e-14, 2.548260852529168e-13, -3.194044507859889e-13, -3.122169496329075e-14, 7.200977129017751e-14, 1.891593605714782e-15, -1.0047098604139517e-14, -1.9485467824098388e-13, 4.2888866446254673e-13, -8.516985062868856e-14, -5.944724281747418e-14, -3.553748837461375e-13, -2.871800727028488e-13, 9.590739565997806e-13, -2.0982572029056192e-13, -7.589470515063888e-13, -6.041117915673121e-13, 3.4087909163226454e-13, 2.6126763100985706e-13, -1.5454312957023776e-13, -3.6104623590315884e-13, -5.578789881865588e-13, 3.820790846947814e-13, 4.0343321657910656e-13, -2.0197896554715048e-13, 4.301007161657183e-13, -3.0367686909911615e-13, -1.8196572212222932e-14, 2.4432063009146486e-13, -3.1963241271716273e-13, -5.310493168650192e-15, 6.722347552666779e-13, 4.3863554873908735e-13, 5.811934477252514e-13, -3.891499365397474e-13, -6.137082604279003e-13, 9.313772510802898e-13, 1.934036102853919e-13, -5.714450004129567e-13, 1.2023777621978984e-12, 1.8841455813986406e-13, -6.94996878253858e-13, 1.2278530139742277e-12, 5.565191662935415e-13, 5.519096779728356e-13, -1.6278856864801317e-13, -1.7257711690822717e-13, 3.3028879274630206e-13, 8.213834789435626e-15, 1.1242767033671631e-12, 1.8590065310233145e-12, -3.2945588051347347e-12, -2.8453331267994467e-12, 3.2572895838731663e-13, -1.897833508364876e-12, -2.6913044517482598e-12, 5.135182809074898e-13, 8.98719946853605e-13, -5.256594850221943e-13, 8.035515405222443e-13, -2.689733046718537e-14, -5.219946389161433e-13, 6.162685139005756e-13, -2.976618137070917e-13, 4.485833559993013e-14, 6.046086652960076e-13, -5.105202160028335e-13, -4.774698912419275e-13, 4.3635492231137385e-12, 3.6051646023025507e-12, -4.618629536332724e-13, -7.078073171595916e-13, -6.84473322206246e-14, -3.9682133574101965e-13, -7.201938489662742e-13, 8.782949755641902e-13, -5.010852224674008e-13, -6.102300268290715e-13, 8.736234711001874e-13, -2.263233020532516e-13, 3.642679769744801e-13, -1.8474111129762605e-13, -1.1134109214876623e-13, -1.364607125409721e-13, 1.8711977938911018e-13, -5.958872626756539e-13, 9.066311159286259e-15, 1.8865263771522606e-13, 6.634788108089399e-13, 4.3463472839977183e-13, -3.2929285121413305e-15, 3.178034100552712e-13, 7.858152792353193e-14, 3.289280641325115e-13, 4.567131420306308e-13, 1.0975076970058396e-13, -3.2704431756168483e-13, 9.026896023394099e-13, -1.5018738877997558e-12, 4.5430589795687445e-14, -1.0808593213268244e-12, 1.0107227622314948e-13, 2.9108937114558035e-13, -3.1024444493854084e-13, -2.5739172341608894e-13, 7.546249341944763e-13, 8.042481648355342e-13, -2.5973157660557458e-14, -3.999163498547586e-13, -6.524835506706889e-13, -5.714931155801165e-13, -3.095715139974536e-13, 2.7665528031223957e-13, -5.165690025540885e-13, -2.6787590324332305e-13, 6.572146575987239e-13, -7.139620124894807e-13, 4.980315499177736e-13, -7.347713064499556e-13, 3.9593134482567374e-13, 1.147932645636563e-12, -3.175105280551051e-13, 2.8068008904048644e-13, 1.1112634424630334e-12, 1.001177193475745e-12, 0, -1.001177193475745e-12, -1.1112634424630334e-12, -2.8068008904048644e-13, 3.175105280551051e-13, -1.147932645636563e-12, -3.9593134482567374e-13, 7.347713064499556e-13, -4.980315499177736e-13, 7.139620124894807e-13, -6.572146575987239e-13, 2.6787590324332305e-13, 5.165690025540885e-13, -2.7665528031223957e-13, 3.095715139974536e-13, 5.714931155801165e-13, 6.524835506706889e-13, 3.999163498547586e-13, 2.5973157660557458e-14, -8.042481648355342e-13, -7.546249341944763e-13, 2.5739172341608894e-13, 3.1024444493854084e-13, -2.9108937114558035e-13, -1.0107227622314948e-13, 1.0808593213268244e-12, -4.5430589795687445e-14, 1.5018738877997558e-12, -9.026896023394099e-13, 3.2704431756168483e-13, -1.0975076970058396e-13, -4.567131420306308e-13, -3.289280641325115e-13, -7.858152792353193e-14, -3.178034100552712e-13, 3.2929285121413305e-15, -4.3463472839977183e-13, -6.634788108089399e-13, -1.8865263771522606e-13, -9.066311159286259e-15, 5.958872626756539e-13, -1.8711977938911018e-13, 1.364607125409721e-13, 1.1134109214876623e-13, 1.8474111129762605e-13, -3.642679769744801e-13, 2.263233020532516e-13, -8.736234711001874e-13, 6.102300268290715e-13, 5.010852224674008e-13, -8.782949755641902e-13, 7.201938489662742e-13, 3.9682133574101965e-13, 6.84473322206246e-14, 7.078073171595916e-13, 4.618629536332724e-13, -3.6051646023025507e-12, -4.3635492231137385e-12, 4.774698912419275e-13, 5.105202160028335e-13, -6.046086652960076e-13, -4.485833559993013e-14, 2.976618137070917e-13, -6.162685139005756e-13, 5.219946389161433e-13, 2.689733046718537e-14, -8.035515405222443e-13, 5.256594850221943e-13, -8.98719946853605e-13, -5.135182809074898e-13, 2.6913044517482598e-12, 1.897833508364876e-12, -3.2572895838731663e-13, 2.8453331267994467e-12, 3.2945588051347347e-12, -1.8590065310233145e-12, -1.1242767033671631e-12, -8.213834789435626e-15, -3.3028879274630206e-13, 1.7257711690822717e-13, 1.6278856864801317e-13, -5.519096779728356e-13, -5.565191662935415e-13, -1.2278530139742277e-12, 6.94996878253858e-13, -1.8841455813986406e-13, -1.2023777621978984e-12, 5.714450004129567e-13, -1.934036102853919e-13, -9.313772510802898e-13, 6.137082604279003e-13, 3.891499365397474e-13, -5.811934477252514e-13, -4.3863554873908735e-13, -6.722347552666779e-13, 5.310493168650192e-15, 3.1963241271716273e-13, -2.4432063009146486e-13, 1.8196572212222932e-14, 3.0367686909911615e-13, -4.301007161657183e-13, 2.0197896554715048e-13, -4.0343321657910656e-13, -3.820790846947814e-13, 5.578789881865588e-13, 3.6104623590315884e-13, 1.5454312957023776e-13, -2.6126763100985706e-13, -3.4087909163226454e-13, 6.041117915673121e-13, 7.589470515063888e-13, 2.0982572029056192e-13, -9.590739565997806e-13, 2.871800727028488e-13, 3.553748837461375e-13, 5.944724281747418e-14, 8.516985062868856e-14, -4.2888866446254673e-13, 1.9485467824098388e-13, 1.0047098604139517e-14, -1.891593605714782e-15, -7.200977129017751e-14, 3.122169496329075e-14, 3.194044507859889e-13, -2.548260852529168e-13, -4.464777590819579e-14, -2.871522713049955e-13, -6.269302322560602e-13, 1.5275330098898629e-12, -1.168643420437423e-12, 1.1084466677857563e-12, 2.70108530239538e-15, 7.741026479015367e-13, 5.574405934286408e-13, -1.0655158525563993e-13, 5.123682594721516e-13, 4.2058120692063295e-13, 5.505200059476335e-13, -7.229742109386832e-13, 2.413455766208653e-12, -1.4831365375317374e-14, 2.1152343680444084e-12, -1.6712248043214225e-12, 1.2939262823065523e-14, 6.364536549882283e-13, -9.742740747532507e-13, -4.467828410835824e-13, 1.1724284100873938e-12, -2.264119412272211e-13, 7.507196684256881e-13, -3.229089085673827e-14, -5.356728157919954e-13, 1.3492468039683674e-12, -4.84876803671295e-13, -4.561202491406879e-13, 1.881856684050834e-13, -4.226300007242609e-13, 1.1983859311255956e-13, 4.82743171505421e-13, -1.653069440148399e-13, 1.5848982240394756e-13, 1.6661608361866173e-13, -4.462737093276823e-13, 4.141668708358947e-13, 2.2563934826692143e-13, -1.0700355310510907e-12, -1.4931976972785578e-12, -3.2298174337865124e-13, 6.225135861032806e-13, -7.661722611756734e-13, -6.008520111949194e-13, 3.3645144759935967e-13, 8.870206948386877e-14, -5.354310289055136e-14, 1.1462154086717204e-14, 3.550538055938114e-13, -2.1133607630795891e-13, 1.9688607759555242e-13, 3.120528848707118e-13, 1.2492144061379501e-14, 1.0316303180344902e-13, 4.1342735635682573e-13, 3.2444188623448506e-13, 5.755463503950966e-13, -1.5308171218297931e-13, 2.046888229032968e-12, 4.001067809983954e-12, 1.3721224972517678e-13, -6.480256726174729e-13, 2.993129480051366e-12, -4.91710211525909e-12, -8.276850377629794e-12, -1.5202678916618869e-12, 1.3164928944774464e-12, -1.4683774654555042e-12, -108.25317547305478, 3.1846163844922633e-13, -1.2530988784745236e-12, 5.117025917840353e-13, -2.440865657125153e-13, -2.5792004185335668e-14, 2.7202879179334885e-13, -6.526336035104964e-13, -8.579952537236749e-13, -4.968548747971075e-13, -1.1587928271744675e-13, 8.182395180794847e-13, 1.8572970676858246e-13, -3.7530865418084483e-13, -6.348032476350344e-13, -4.2082029681038766e-13, 7.295524610195003e-14, -4.0245787204828365e-13, -5.15925764208101e-13, 1.6882181511818804e-13, 5.1113354719588793e-14, -1.5870532885733905e-13, -7.439034557716498e-14, -1.7048142806283212e-13, -3.294820496383803e-13, 3.6919546813363224e-13, -3.062804180338012e-13, -4.0894562295597374e-13, 1.1524722701891876e-12, 1.7101474737345118e-13, -7.629287269149252e-13, -3.1176514093611615e-13, -6.974467039421175e-13, -7.205055755538742e-13, 2.192274188948212e-13, -7.513133645693578e-14, -8.822198244909058e-13, 5.01834486865454e-14, -5.51477483905855e-13, -6.622904942716014e-13, 4.42817614395905e-13, -1.0398312040817075e-12, -7.833465269331913e-13, 9.638718983246497e-14, -1.7599699973956806e-12, -1.0522057543861884e-12, 5.172624394840566e-13, -1.164901516340668e-12, -5.438563864630457e-13, -8.06084288216469e-13, -4.631115925986267e-12, -2.809902224777931e-12, -3.834387327389173e-12, -9.484842859170232e-12, -370.00000000000284, 9.908185383267211e-12, 3.366767802048809e-12, 2.56572071514666e-12, 2.620118504927885e-12, 1.849103375765941e-12, 1.7526014316828996e-12, 1.4991156708724935e-12, 2.5493253259911338e-12, -3.8835788473211005e-13, 1.632112533838654e-12, -1.3406611980277586e-12, 1.0642040880340442e-12, 1.0850617285050014e-12, -3.5054445930243544e-13, 4.951399544731688e-13, 8.018297157649266e-13, 3.950477560209726e-14, 4.735085511648156e-13, 9.11027097793918e-13, -7.521538187425498e-14, -2.390153349811183e-13, 1.1117300693893149e-12, 3.794412632263072e-14, -1.5218501408573495e-13, 1.0366425053893056e-13, 2.879341556821258e-13, 5.663679015171591e-13, 1.5209190841247788e-12, -1.6189868793063773e-13, -8.971793292488171e-13, 1.2445636443586747e-13, 2.2703018974308092e-13, 5.500020112091959e-13, 4.967123751840905e-13, 2.425456458617129e-13, 4.896479985966432e-14, -1.311230371259276e-13, 6.773560885971786e-14, 5.299210987363713e-13, 6.221047517297526e-13, -1.1409006161733155e-13, 4.4602109738061953e-13, 3.2125941767225955e-13, -1.395150822036683e-13, 1.0210614799507654e-12, -2.9677712334735597e-13, 7.945584842579773e-13, 5.3830447922135e-15, -8.439329493777715e-13, 5.134941293587258e-14, 2.684170973403308e-13, -6.340018566550653e-13, 8.973788019779924e-13, 2.856760792441158e-13, 6.451710563684665e-13, 7.620570841027074e-13, -2.0734556507790644e-13, 1.2900393418411628e-12, 9.40676868441773e-13, -1.2980863176243428e-12, 9.067811981820844e-13, 4.1737853335708984e-12, 9.067434583742542e-13, -1.0991083685719748e-12, -1.5654532519517547e-12, 5.557415400916682e-13, -2.7497550924828207e-13, 8.679183797179683e-13, -8.517756276822265e-13, 6.771944191658973e-13, 1.541990106986086e-13, 1.3460700990999244e-14, -1.9492875357705832e-15, -1.5621544689014672e-13, 1.6063970687630057e-13, 6.209882157833757e-13, 2.7554094744252627e-13, 5.621000070538693e-13, -1.6225766820290396e-13, 3.800844763953568e-13, 5.275976322371304e-13, 2.4231394154135896e-13, 1.712218212566073e-12, 7.283491283611756e-13, -7.227996724744667e-13, 5.219982434879164e-13, -7.683560546070729e-13, -5.067698561889495e-13, 2.864903083776119e-14, -1.0370708065165877e-14, -4.559492067504078e-14, 4.3973760333273394e-13, 2.009984924445563e-14, -3.0403972673262565e-13, 4.793444653734443e-13, 2.688154432958791e-13, 3.2452850015801863e-13, 2.1674452117735883e-13, 2.5124084952522507e-13, -1.0807568595704954e-13, -2.387923734370173e-13, 1.1110423152462956e-12, 5.248675928345385e-13, 7.810485406011266e-13, 4.602629319719036e-13, -4.5314804510301396e-13, 6.209694759067618e-13, 6.110246380119674e-13, -2.6660637050592434e-13, 9.815612415614835e-13, 1.815076464081117e-12, -2.00865790447627e-12, 7.403181553324973e-13, -3.3043901452271964e-12, 2.0505771062644204e-12, 2.8613685733654e-12, 1.0907008199189474e-12, 2.3781558576163193e-12, -1.3109061199754704e-12, 4.813815718196359e-12, 388.90872965258785, -1.6014338422770666e-12, -3.431784962078661e-12, -2.933358898575273e-13, 1.3761209594978284e-13, -1.2321087024107346e-12, -6.620567392674111e-14, -5.839356615524494e-13, -9.464416584511564e-13, 4.934183130601837e-13, -1.4542270209069172e-13, -7.680175733731214e-15, 4.820557026713791e-13, -2.5670646192908927e-13, 2.9220334905620966e-13, 4.5434351684011123e-13, 3.625131168621764e-13, 4.3776948529620553e-13, 3.0415260817507593e-13, -1.0787102190080568e-15, -9.490826973745588e-13, -1.1632615161688496e-12, -2.5390643160431465e-13, -7.149834311600501e-13, -4.045839206270763e-13, -3.603733750604127e-13, -2.8945485364350014e-13, -9.506972933760781e-14, -1.3736646161960336e-13, -3.3667072459550765e-13, -1.2834209807260075e-13, -3.690873781692799e-13, -3.0656570635184593e-13, -1.919740430818532e-13, -2.658547988357389e-13, -9.537286055446082e-13, 1.213021795751408e-13, -6.619458646500218e-13, 1.151111175171433e-12, -2.081602534298426e-13, 1.1917418702166446e-13, -1.0499068176267066e-13, 3.4730569945721326e-13, 5.731373575855218e-13, -3.7736207407007244e-13, 1.4655687560424769e-12, 7.210223330729656e-13, 9.603465703645036e-13, -4.3203202517092567e-13, -9.706432867936377e-13, 4.199042573443527e-13, -6.255452831164559e-13, 1.2228838802538652e-13, -6.071110212841127e-13, -2.531405144442157e-14, 1.3682400131782512e-12, 4.98629683868803e-13, 3.2221993754162487e-13, -4.1649395242148585e-13, -5.187627805824227e-13, 1.4278177345386255e-13, 6.175369559365874e-13, -9.5281063952366e-14, -7.118601521878267e-13, -2.522924355532048e-13, -6.200135295179913e-13, 7.281429911431224e-13, -2.822369979497512e-13, -1.732803546066588e-13, 1.2294270089543768e-13, 1.2231026035785476e-13, -2.2394781413449836e-13, 5.515429298374814e-13, -3.6165838040083263e-13, -1.1727841841816787e-13, 4.329286614567084e-12, 3.8095221379730966e-12, -6.859432660849356e-13, -2.411473136214741e-13, 3.872946815972738e-13, -2.2115396728855991e-13, -2.073130510397586e-13, -1.5516220382481568e-13, -6.048143388432739e-13, -4.770297228882518e-13, -6.954266951748535e-13, -205.0609665440977, -6.385181575252622e-13, 8.748742749872645e-14, -3.621243366980119e-13, -4.099269963425596e-13, 2.862793723006579e-13, 3.435387881996092e-13, -4.1791589670436406e-13, -3.826289632535005e-13, -3.765414349024572e-13, 1.5222674084921904e-13, 7.983494491470074e-13, -3.976175091566971e-13, -3.747910318861361e-13, 1.9458114764570078e-12, -1.723343646129641e-12, 1.6249318940387782e-13, -8.038280509255104e-13, 7.618034309456173e-14, 6.563063204987315e-13, -8.146046263837926e-13, -1.5211092404398146e-13, 1.4065576744927352e-13, -3.8283593729502747e-13, 5.094462255931091e-13, -5.529487448830615e-13, -1.904935754984894e-12, -1.2561223195110517e-13, 2.5398479998485977e-13, -8.69092632335504e-14, 1.251852142956941e-12, -4.608606174164134e-13, -3.879663527827686e-13, 1.3722748071879775e-12, 4.821752538045476e-13, -5.215639879819555e-13, -6.518636094411922e-13, 2.6696194723263477e-13, -2.0123370828584826e-13, 9.232812212065742e-14, 2.693866771737415e-13, 1.2376929201598963e-13, 4.88377105578693e-13, 6.177506275677173e-13], "type": "scatter"}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [-400, -300, -200, -100, 0, 100, 200], "range": [-406.72782053851176, 222.88005743000113], "domain": [0.09128390201224845, 0.9934383202099738], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["-400", "-300", "-200", "-100", "0", "100", "200"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Re(x)", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [], "height": 400, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [-400, -200, 0, 200, 400], "range": [-412.24325343174314, 412.24325343174314], "domain": [0.07581474190726165, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["-400", "-200", "0", "200", "400"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Im(x)", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "legend": {"yanchor": "auto", "xanchor": "auto", "bordercolor": "rgba(0, 0, 0, 1)", "bgcolor": "rgba(255, 255, 255, 1.000)", "borderwidth": 1, "tracegroupgap": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}, "text": ""}, "traceorder": "normal", "x": 1}, "width": 827.5}}
{"id": "68a8f14c_1c0f_4e22_a2ac_3308aff5a5e4", "data": [{"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000], "showlegend": true, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [7.48179296294893e-13, 7.628525509772961e-13, 4.920129806144502e-13, 3.234375970696061e-13, 2.950438188632067e-13, 3.217475221867898e-13, 2.9369959083543246e-13, 3.2640983998367287e-13, 7.159473681967668e-13, 1.3966835002617953e-12, 1.2493169834332025e-12, 1.3772491434972393e-12, 4.0346612338471264e-13, 1.2624242492708023e-12, 1.7609467559236896e-12, 7.030150733555216e-13, 3.432617281507943e-13, 2.3353842544238957e-12, 2.217482866090094e-12, 5.701381357808222e-13, 1.30628652043287e-12, 7.495942433803442e-13, 2.6621946577205043e-13, 5.090846551780381e-13, 8.525532822684687e-13, 7.480943882329062e-13, 5.306458125412185e-13, 1.046741258220939e-12, 1.9122961770711715e-12, 2.028743278929584e-12, 2.586319418505007e-12, 7.878341542281709e-13, 3.9764051771181584e-13, 8.065835823107196e-13, 4.761453506798156e-13, 4.874933861214915e-13, 5.461315754255372e-13, 6.827544351316534e-13, 3.486456185395925e-13, 6.964196780504478e-13, 4.163663906172336e-13, 7.356208826827273e-13, 1.6295249103980697e-13, 9.586681195289213e-13, 289.99999999999994, 7.332672727015592e-13, 5.689615165447445e-13, 9.958255540027828e-13, 9.648480904833404e-13, 7.059085014064594e-13, 5.475925422367351e-13, 5.986247442110842e-13, 8.724554351466385e-13, 2.899561215540335e-12, 4.84982135891756e-12, 4.704283031853692e-12, 3.0159578381484183e-12, 4.198701650399018e-13, 9.933983359993211e-13, 6.859290680600057e-13, 4.4605071864360643e-13, 1.8822808409823773e-13, 2.553977266702732e-13, 5.196133696547712e-13, 8.420595787634362e-13, 8.869718818333944e-13, 4.379358898265154e-13, 7.12094409160654e-13, 2.4636121950043055e-13, 6.220400476087748e-13, 5.337534691209935e-13, 5.202454089452998e-13, 6.120692831743109e-13, 3.671407725118268e-13, 6.553098994353927e-13, 1.374794336641274e-12, 1.0295491724819119e-12, 6.711211684526886e-13, 1.735940979337205e-13, 8.028243504349807e-13, 4.1991337889211087e-13, 1.090544008617383e-12, 7.200738038002818e-13, 2.206003198033508e-12, 1.0182357823860442e-12, 1.4844051071034342e-12, 7.749077015863287e-13, 7.251012427337912e-13, 9.807798244031699e-13, 3.4006498778759397e-13, 1.0074504760059473e-12, 3.961087629986958e-13, 1.2172440475711745e-12, 1.6226725985376108e-12, 3.24898948939917e-13, 1.0424388862262767e-12, 2.9054144380728803e-13, 3.583280894079205e-13, 3.1411120335278097e-13, 4.957965677202257e-13, 4.0457089534403684e-13, 3.4252159301749395e-13, 2.754667414744459e-13, 6.192330963129598e-13, 3.645934152139251e-13, 7.377640587194029e-13, 5.109090109980308e-13, 8.148062012741531e-13, 5.366826640605563e-13, 1.5381620758269942e-12, 1.200775375757052e-12, 1.1706577154347454e-12, 1.0865737582448252e-12, 5.771984898359561e-13, 3.8918348661739537e-13, 6.128452887029257e-13, 7.593259022044095e-13, 2.7340476566876585e-13, 4.824575929538286e-13, 1.2330774833384018e-12, 2.738731926304422e-13, 5.131106407420882e-13, 1.4496838434241318e-12, 6.48405824029424e-13, 1.0446750974400749e-12, 2.4098030874706353e-12, 8.151751687947198e-13, 1.2807749415370413e-12, 3.625738170442892e-12, 5.51995950321865e-12, 549.9999999999972, 5.84153104368572e-12, 5.416756256682981e-12, 2.5510131983233177e-12, 1.5168205940392104e-12, 3.0003951952386e-12, 2.743473854081524e-12, 3.4237401023773908e-12, 1.6918835114927227e-12, 3.1611561765956403e-12, 1.8943225857650677e-12, 1.0573681046137912e-12, 4.146714460361222e-13, 6.722714646295711e-13, 7.78229171038463e-13, 5.190062541836687e-13, 5.065222019343904e-13, 1.2721784343183694e-12, 5.255631768750972e-13, 1.1312299602359903e-12, 2.425947357421927e-13, 6.006669507160282e-13, 6.357286305514709e-13, 6.20727556592829e-13, 6.52386564455596e-13, 2.749489706701909e-13, 5.217923450896794e-13, 3.0772707890432644e-13, 1.2312918425496486e-13, 4.601719985926083e-13, 2.6806674739284185e-13, 7.719155832511204e-14, 1.2148882450031904e-13, 7.039480905118437e-13, 9.3589933260714e-13, 6.941280050694859e-13, 1.2058400047360166e-12, 2.0033187838074505e-12, 1.7175502293282502e-12, 6.359976780839266e-13, 5.550405020338891e-13, 4.964734180153521e-13, 4.099954521142573e-13, 6.630472931914441e-13, 2.835147467142701e-13, 6.244835774980807e-13, 2.867962802202811e-13, 1.8793360266825802e-13, 9.134925024837744e-14, 1.0562520094004988e-13, 9.085810915156193e-13, 8.244031915548267e-13, 8.802341425517579e-13, 1.1778274573462013e-12, 8.553439630090498e-13, 5.722871281047874e-13, 1.6326051171815039e-12, 1.9741704507112724e-12, 3.4053976810024202e-12, 4.179247806397457e-12, 2.328319662918388e-12, 1.3042130403448303e-12, 9.407748341079423e-13, 1.2920763061738127e-12, 2.8324327450580546e-13, 8.210247520698475e-13, 1.5496587804310835e-12, 8.422753043561073e-13, 1.413316027612436e-12, 6.640532283347884e-13, 2.690153181452487e-13, 5.243383996009057e-13, 8.73271568339447e-13, 6.8933259303795e-13, 8.208453892088285e-13, 3.422601861303719e-13, 1.0227675606067386e-12, 1.5982603375363243e-13, 4.033385801231912e-13, 5.480423784524383e-13, 2.126984031204589e-13, 6.660882195452568e-13, 5.553167014782564e-13, 4.317088250365555e-13, 1.3451046982162154e-13, 9.905638846700157e-14, 4.749735883986372e-13, 5.87102113602518e-13, 5.664313661595912e-13, 3.192426786442887e-13, 2.8930601635249074e-13, 9.51777702173098e-13, 9.284472236907588e-13, 1.5768388069191729e-12, 9.022961167015047e-13, 2.8985014973826843e-13, 2.3411514802696774e-13, 4.854903644572971e-13, 4.697665323410497e-13, 1.120952837040922e-12, 2.4787712518694737e-13, 3.5987511465501197e-13, 1.0898444355845777e-12, 4.91802653135782e-13, 5.879468119711188e-14, 8.695847984207216e-13, 6.353137362440934e-13, 3.512746942469632e-13, 1.0854973439800799e-12, 1.0992813228214608e-12, 1.3867210343137772e-12, 1.6704173188362897e-12, 1.5650605071004787e-12, 2.654420543032005e-12, 1.578553799227802e-12, 1.7585389828369154e-12, 2.0335002474563808e-12, 3.2080650309311217e-12, 2.5909663091356772e-12, 3.888373062405161e-12, 1.3183728456843127e-11, 370.00000000000284, 1.2181580098280115e-11, 5.549691540414514e-12, 3.060418411569925e-12, 4.646859168378609e-12, 3.810649018958861e-12, 7.019988686045289e-13, 1.1764068606612325e-12, 9.419899553453735e-13, 1.3618447293928671e-12, 1.8070772253640225e-12, 8.872746497335126e-13, 7.889013940147875e-13, 1.1210304896380601e-12, 6.418901281460956e-13, 9.108849002977225e-13, 7.567440783868375e-13, 9.82866068916869e-14, 9.019341537399433e-13, 1.494674836737148e-13, 3.4314441121565666e-13, 8.292225851967292e-13, 8.320800046567736e-13, 3.1185069292931074e-13, 9.819097815981472e-13, 9.422298949908901e-13, 1.249102798067238e-12, 5.431950997675644e-13, 7.560806192978607e-13, 3.9663565353312193e-13, 3.9878245334409633e-13, 3.90873049555243e-13, 2.988512278961095e-13, 1.8285980395687841e-13, 3.502299072811208e-13, 5.341074244740346e-13, 5.198254690990106e-13, 4.890994303554416e-13, 3.3326404418047046e-13, 4.871114320763386e-13, 6.348878027878454e-13, 4.883871379934101e-13, 3.274340437403821e-13, 8.227159471393142e-13, 6.913428312827898e-13, 8.872362837307684e-13, 9.174165255662372e-13, 1.0282444099050597e-12, 6.504230297216407e-13, 8.678565137810304e-13, 3.44529590189465e-13, 5.199285191954645e-13, 1.5236699987649815e-12, 8.311264492475512e-13, 125.0000000000002, 2.8221223509940767e-12, 1.809314952232285e-12, 4.280025325902969e-12, 8.486810364920776e-12, 8.698396265349811e-12, 5.151169229874364e-12, 7.654037222809501e-13, 3.759997684560799e-12, 4.6307029679993505e-12, 2.477558473016863e-12, 1.018336562183257e-12, 5.756477634600988e-13, 4.232784472818272e-13, 7.74142506114678e-13, 2.2587836978133957e-13, 3.769306683991329e-14, 3.1809842524368424e-13, 4.452451010628565e-13, 2.1993936627940087e-13, 3.579518996218726e-13, 1.5459882705670934e-13, 6.972890808289628e-14, 1.39566972108769e-13, 5.30977016002461e-13, 6.564421624180441e-13, 1.1282248923211255e-12, 7.415536910002427e-13, 1.0986238969663127e-12, 1.4944028539876927e-12, 1.5245381369409812e-12, 1.4769242704358599e-12, 4.672447240660211e-13, 6.291498363567808e-13, 5.719298402258214e-13, 3.256662816430114e-13, 3.351227144083471e-13, 8.818310908080852e-13, 4.000082930886281e-13, 7.321976513407677e-13, 3.250255245489428e-13, 4.787856614943551e-13, 7.99391550103349e-13, 1.5099345148888065e-12, 6.423212624612979e-13, 8.681132080443799e-13, 8.512406756364544e-13, 5.367724166260395e-13, 1.3643526223409044e-12, 6.790934611698282e-13, 1.476446997104023e-12, 9.606343643538725e-13, 1.6373991945595738e-13, 1.7440234057106756e-12, 3.1686382249688445e-12, 2.728674162106038e-13, 2.493760322848269e-12, 8.674839560885278e-13, 7.823292212120111e-13, 4.683010386796573e-13, 6.390965867835778e-13, 2.4520657842576585e-13, 9.958213469846446e-13, 1.3174086387137881e-12, 7.683396106624483e-13, 1.1597311278764644e-12, 1.4860681915596644e-12, 2.218558446813087e-12, 1.0029385540980627e-12, 4.63940441795698e-13, 1.4599992561499757e-13, 5.042190632952123e-13, 3.761805387779791e-13, 3.7640174584513115e-13, 7.32343004974729e-14, 1.853016340192064e-13, 7.778797249096495e-14, 2.571347716107931e-13, 4.526704003370648e-13, 2.3718739161392606e-13, 2.817242784517577e-13, 6.073866482013189e-13, 3.689999229407751e-13, 1.0115786245765973e-12, 1.1260945016004599e-12, 8.031538953986346e-13, 6.533351843592331e-13, 3.9328383524801897e-13, 4.021720050963262e-13, 3.0367391029972587e-13, 4.4071329464512785e-13, 9.412059491810143e-13, 8.011802158287461e-13, 6.457175062664662e-13, 3.265255486997744e-13, 5.599960394957098e-13, 5.260764461888469e-13, 4.1741668281078244e-13, 2.5869973632715664e-13, 3.3825279666474047e-13, 6.523585026716103e-13, 1.0334288403281034e-12, 4.460121595618827e-13, 7.72178432301212e-13, 8.792484203049797e-13, 8.871058674759185e-13, 1.1032500174412421e-12, 2.175174795789266e-13, 5.752868722856638e-13, 1.2668754938780696e-12, 5.769345596515297e-13, 1.327667386602446e-12, 1.2285166827727256e-12, 7.341918990486355e-13, 1.1061852717816327e-12, 2.603136426132758e-13, 3.421635614937825e-13, 6.461713041556487e-13, 1.19271213778627e-14, 1.6193451029438822e-12, 2.4341907856312813e-12, 4.654739666215244e-12, 2.910725430724864e-12, 1.3740193559563936e-12, 2.3692769454362802e-12, 3.4628204703687343e-12, 2.79197752747325e-12, 8.994682159780283e-13, 6.549855288997099e-13, 1.26251080709081e-12, 2.391152508695237e-13, 1.03052778535054e-12, 8.285228225325958e-13, 3.043621708924253e-13, 9.617905840122691e-13, 9.512042190669845e-13, 6.523766068013603e-13, 2.8595599914090613e-12, 4.93109517019855e-12, 4.614666521467686e-12, 2.8773581040355293e-12, 1.0324894864740162e-12, 8.637250975019966e-14, 7.801056296088133e-13, 7.274672769768302e-13, 8.904398887892587e-13, 8.812714314119341e-13, 6.786294576996575e-13, 8.93177358662895e-13, 2.3013712955362925e-13, 4.650225239357789e-13, 5.17282919736354e-13, 5.330731301591001e-13, 2.619210710632719e-13, 2.1788342157535795e-13, 6.19614249994811e-13, 1.0843529100481208e-13, 4.5169989382887087e-13, 9.795521180707424e-13, 6.454172728906623e-13, 2.588176702029127e-13, 3.520488871115595e-13, 5.055078068315129e-13, 6.823116146266083e-13, 4.875494913690795e-13, 1.1929503788155415e-12, 1.7777724330595285e-12, 1.485505868244175e-12, 1.8734905058736546e-12, 1.604440044109772e-12, 1.0840185443418756e-12, 7.722752989891499e-13, 4.1559758517946625e-13, 4.626175498152113e-13, 3.516850728458222e-13, 9.086897043455612e-13, 8.52572908176957e-13, 1.0196322296216148e-12, 8.5707497708131e-13, 6.970077658570389e-13, 6.148929440946326e-13, 4.639669872580609e-13, 3.2494135356073435e-13, 5.836853613630415e-13, 6.363432800419242e-13, 1.3000849691437152e-12, 8.099486255816751e-13, 1.0183961251779706e-12, 1.016809138749469e-12, 3.975835845718451e-13, 1.1819959229162635e-12, 5.42547114094629e-13, 4.803446805120866e-13, 1.1536199612310594e-12, 1.4389040945468154e-12, 1.8003376567321538e-12, 1.4389040945468154e-12, 1.1536199612310594e-12, 4.803446805120866e-13, 5.42547114094629e-13, 1.1819959229162635e-12, 3.975835845718451e-13, 1.016809138749469e-12, 1.0183961251779706e-12, 8.099486255816751e-13, 1.3000849691437152e-12, 6.363432800419242e-13, 5.836853613630415e-13, 3.2494135356073435e-13, 4.639669872580609e-13, 6.148929440946326e-13, 6.970077658570389e-13, 8.5707497708131e-13, 1.0196322296216148e-12, 8.52572908176957e-13, 9.086897043455612e-13, 3.516850728458222e-13, 4.626175498152113e-13, 4.1559758517946625e-13, 7.722752989891499e-13, 1.0840185443418756e-12, 1.604440044109772e-12, 1.8734905058736546e-12, 1.485505868244175e-12, 1.7777724330595285e-12, 1.1929503788155415e-12, 4.875494913690795e-13, 6.823116146266083e-13, 5.055078068315129e-13, 3.520488871115595e-13, 2.588176702029127e-13, 6.454172728906623e-13, 9.795521180707424e-13, 4.5169989382887087e-13, 1.0843529100481208e-13, 6.19614249994811e-13, 2.1788342157535795e-13, 2.619210710632719e-13, 5.330731301591001e-13, 5.17282919736354e-13, 4.650225239357789e-13, 2.3013712955362925e-13, 8.93177358662895e-13, 6.786294576996575e-13, 8.812714314119341e-13, 8.904398887892587e-13, 7.274672769768302e-13, 7.801056296088133e-13, 8.637250975019966e-14, 1.0324894864740162e-12, 2.8773581040355293e-12, 4.614666521467686e-12, 4.93109517019855e-12, 2.8595599914090613e-12, 6.523766068013603e-13, 9.512042190669845e-13, 9.617905840122691e-13, 3.043621708924253e-13, 8.285228225325958e-13, 1.03052778535054e-12, 2.391152508695237e-13, 1.26251080709081e-12, 6.549855288997099e-13, 8.994682159780283e-13, 2.79197752747325e-12, 3.4628204703687343e-12, 2.3692769454362802e-12, 1.3740193559563936e-12, 2.910725430724864e-12, 4.654739666215244e-12, 2.4341907856312813e-12, 1.6193451029438822e-12, 1.19271213778627e-14, 6.461713041556487e-13, 3.421635614937825e-13, 2.603136426132758e-13, 1.1061852717816327e-12, 7.341918990486355e-13, 1.2285166827727256e-12, 1.327667386602446e-12, 5.769345596515297e-13, 1.2668754938780696e-12, 5.752868722856638e-13, 2.175174795789266e-13, 1.1032500174412421e-12, 8.871058674759185e-13, 8.792484203049797e-13, 7.72178432301212e-13, 4.460121595618827e-13, 1.0334288403281034e-12, 6.523585026716103e-13, 3.3825279666474047e-13, 2.5869973632715664e-13, 4.1741668281078244e-13, 5.260764461888469e-13, 5.599960394957098e-13, 3.265255486997744e-13, 6.457175062664662e-13, 8.011802158287461e-13, 9.412059491810143e-13, 4.4071329464512785e-13, 3.0367391029972587e-13, 4.021720050963262e-13, 3.9328383524801897e-13, 6.533351843592331e-13, 8.031538953986346e-13, 1.1260945016004599e-12, 1.0115786245765973e-12, 3.689999229407751e-13, 6.073866482013189e-13, 2.817242784517577e-13, 2.3718739161392606e-13, 4.526704003370648e-13, 2.571347716107931e-13, 7.778797249096495e-14, 1.853016340192064e-13, 7.32343004974729e-14, 3.7640174584513115e-13, 3.761805387779791e-13, 5.042190632952123e-13, 1.4599992561499757e-13, 4.63940441795698e-13, 1.0029385540980627e-12, 2.218558446813087e-12, 1.4860681915596644e-12, 1.1597311278764644e-12, 7.683396106624483e-13, 1.3174086387137881e-12, 9.958213469846446e-13, 2.4520657842576585e-13, 6.390965867835778e-13, 4.683010386796573e-13, 7.823292212120111e-13, 8.674839560885278e-13, 2.493760322848269e-12, 2.728674162106038e-13, 3.1686382249688445e-12, 1.7440234057106756e-12, 1.6373991945595738e-13, 9.606343643538725e-13, 1.476446997104023e-12, 6.790934611698282e-13, 1.3643526223409044e-12, 5.367724166260395e-13, 8.512406756364544e-13, 8.681132080443799e-13, 6.423212624612979e-13, 1.5099345148888065e-12, 7.99391550103349e-13, 4.787856614943551e-13, 3.250255245489428e-13, 7.321976513407677e-13, 4.000082930886281e-13, 8.818310908080852e-13, 3.351227144083471e-13, 3.256662816430114e-13, 5.719298402258214e-13, 6.291498363567808e-13, 4.672447240660211e-13, 1.4769242704358599e-12, 1.5245381369409812e-12, 1.4944028539876927e-12, 1.0986238969663127e-12, 7.415536910002427e-13, 1.1282248923211255e-12, 6.564421624180441e-13, 5.30977016002461e-13, 1.39566972108769e-13, 6.972890808289628e-14, 1.5459882705670934e-13, 3.579518996218726e-13, 2.1993936627940087e-13, 4.452451010628565e-13, 3.1809842524368424e-13, 3.769306683991329e-14, 2.2587836978133957e-13, 7.74142506114678e-13, 4.232784472818272e-13, 5.756477634600988e-13, 1.018336562183257e-12, 2.477558473016863e-12, 4.6307029679993505e-12, 3.759997684560799e-12, 7.654037222809501e-13, 5.151169229874364e-12, 8.698396265349811e-12, 8.486810364920776e-12, 4.280025325902969e-12, 1.809314952232285e-12, 2.8221223509940767e-12, 125.0000000000002, 8.311264492475512e-13, 1.5236699987649815e-12, 5.199285191954645e-13, 3.44529590189465e-13, 8.678565137810304e-13, 6.504230297216407e-13, 1.0282444099050597e-12, 9.174165255662372e-13, 8.872362837307684e-13, 6.913428312827898e-13, 8.227159471393142e-13, 3.274340437403821e-13, 4.883871379934101e-13, 6.348878027878454e-13, 4.871114320763386e-13, 3.3326404418047046e-13, 4.890994303554416e-13, 5.198254690990106e-13, 5.341074244740346e-13, 3.502299072811208e-13, 1.8285980395687841e-13, 2.988512278961095e-13, 3.90873049555243e-13, 3.9878245334409633e-13, 3.9663565353312193e-13, 7.560806192978607e-13, 5.431950997675644e-13, 1.249102798067238e-12, 9.422298949908901e-13, 9.819097815981472e-13, 3.1185069292931074e-13, 8.320800046567736e-13, 8.292225851967292e-13, 3.4314441121565666e-13, 1.494674836737148e-13, 9.019341537399433e-13, 9.82866068916869e-14, 7.567440783868375e-13, 9.108849002977225e-13, 6.418901281460956e-13, 1.1210304896380601e-12, 7.889013940147875e-13, 8.872746497335126e-13, 1.8070772253640225e-12, 1.3618447293928671e-12, 9.419899553453735e-13, 1.1764068606612325e-12, 7.019988686045289e-13, 3.810649018958861e-12, 4.646859168378609e-12, 3.060418411569925e-12, 5.549691540414514e-12, 1.2181580098280115e-11, 370.00000000000284, 1.3183728456843127e-11, 3.888373062405161e-12, 2.5909663091356772e-12, 3.2080650309311217e-12, 2.0335002474563808e-12, 1.7585389828369154e-12, 1.578553799227802e-12, 2.654420543032005e-12, 1.5650605071004787e-12, 1.6704173188362897e-12, 1.3867210343137772e-12, 1.0992813228214608e-12, 1.0854973439800799e-12, 3.512746942469632e-13, 6.353137362440934e-13, 8.695847984207216e-13, 5.879468119711188e-14, 4.91802653135782e-13, 1.0898444355845777e-12, 3.5987511465501197e-13, 2.4787712518694737e-13, 1.120952837040922e-12, 4.697665323410497e-13, 4.854903644572971e-13, 2.3411514802696774e-13, 2.8985014973826843e-13, 9.022961167015047e-13, 1.5768388069191729e-12, 9.284472236907588e-13, 9.51777702173098e-13, 2.8930601635249074e-13, 3.192426786442887e-13, 5.664313661595912e-13, 5.87102113602518e-13, 4.749735883986372e-13, 9.905638846700157e-14, 1.3451046982162154e-13, 4.317088250365555e-13, 5.553167014782564e-13, 6.660882195452568e-13, 2.126984031204589e-13, 5.480423784524383e-13, 4.033385801231912e-13, 1.5982603375363243e-13, 1.0227675606067386e-12, 3.422601861303719e-13, 8.208453892088285e-13, 6.8933259303795e-13, 8.73271568339447e-13, 5.243383996009057e-13, 2.690153181452487e-13, 6.640532283347884e-13, 1.413316027612436e-12, 8.422753043561073e-13, 1.5496587804310835e-12, 8.210247520698475e-13, 2.8324327450580546e-13, 1.2920763061738127e-12, 9.407748341079423e-13, 1.3042130403448303e-12, 2.328319662918388e-12, 4.179247806397457e-12, 3.4053976810024202e-12, 1.9741704507112724e-12, 1.6326051171815039e-12, 5.722871281047874e-13, 8.553439630090498e-13, 1.1778274573462013e-12, 8.802341425517579e-13, 8.244031915548267e-13, 9.085810915156193e-13, 1.0562520094004988e-13, 9.134925024837744e-14, 1.8793360266825802e-13, 2.867962802202811e-13, 6.244835774980807e-13, 2.835147467142701e-13, 6.630472931914441e-13, 4.099954521142573e-13, 4.964734180153521e-13, 5.550405020338891e-13, 6.359976780839266e-13, 1.7175502293282502e-12, 2.0033187838074505e-12, 1.2058400047360166e-12, 6.941280050694859e-13, 9.3589933260714e-13, 7.039480905118437e-13, 1.2148882450031904e-13, 7.719155832511204e-14, 2.6806674739284185e-13, 4.601719985926083e-13, 1.2312918425496486e-13, 3.0772707890432644e-13, 5.217923450896794e-13, 2.749489706701909e-13, 6.52386564455596e-13, 6.20727556592829e-13, 6.357286305514709e-13, 6.006669507160282e-13, 2.425947357421927e-13, 1.1312299602359903e-12, 5.255631768750972e-13, 1.2721784343183694e-12, 5.065222019343904e-13, 5.190062541836687e-13, 7.78229171038463e-13, 6.722714646295711e-13, 4.146714460361222e-13, 1.0573681046137912e-12, 1.8943225857650677e-12, 3.1611561765956403e-12, 1.6918835114927227e-12, 3.4237401023773908e-12, 2.743473854081524e-12, 3.0003951952386e-12, 1.5168205940392104e-12, 2.5510131983233177e-12, 5.416756256682981e-12, 5.84153104368572e-12, 549.9999999999972, 5.51995950321865e-12, 3.625738170442892e-12, 1.2807749415370413e-12, 8.151751687947198e-13, 2.4098030874706353e-12, 1.0446750974400749e-12, 6.48405824029424e-13, 1.4496838434241318e-12, 5.131106407420882e-13, 2.738731926304422e-13, 1.2330774833384018e-12, 4.824575929538286e-13, 2.7340476566876585e-13, 7.593259022044095e-13, 6.128452887029257e-13, 3.8918348661739537e-13, 5.771984898359561e-13, 1.0865737582448252e-12, 1.1706577154347454e-12, 1.200775375757052e-12, 1.5381620758269942e-12, 5.366826640605563e-13, 8.148062012741531e-13, 5.109090109980308e-13, 7.377640587194029e-13, 3.645934152139251e-13, 6.192330963129598e-13, 2.754667414744459e-13, 3.4252159301749395e-13, 4.0457089534403684e-13, 4.957965677202257e-13, 3.1411120335278097e-13, 3.583280894079205e-13, 2.9054144380728803e-13, 1.0424388862262767e-12, 3.24898948939917e-13, 1.6226725985376108e-12, 1.2172440475711745e-12, 3.961087629986958e-13, 1.0074504760059473e-12, 3.4006498778759397e-13, 9.807798244031699e-13, 7.251012427337912e-13, 7.749077015863287e-13, 1.4844051071034342e-12, 1.0182357823860442e-12, 2.206003198033508e-12, 7.200738038002818e-13, 1.090544008617383e-12, 4.1991337889211087e-13, 8.028243504349807e-13, 1.735940979337205e-13, 6.711211684526886e-13, 1.0295491724819119e-12, 1.374794336641274e-12, 6.553098994353927e-13, 3.671407725118268e-13, 6.120692831743109e-13, 5.202454089452998e-13, 5.337534691209935e-13, 6.220400476087748e-13, 2.4636121950043055e-13, 7.12094409160654e-13, 4.379358898265154e-13, 8.869718818333944e-13, 8.420595787634362e-13, 5.196133696547712e-13, 2.553977266702732e-13, 1.8822808409823773e-13, 4.4605071864360643e-13, 6.859290680600057e-13, 9.933983359993211e-13, 4.198701650399018e-13, 3.0159578381484183e-12, 4.704283031853692e-12, 4.84982135891756e-12, 2.899561215540335e-12, 8.724554351466385e-13, 5.986247442110842e-13, 5.475925422367351e-13, 7.059085014064594e-13, 9.648480904833404e-13, 9.958255540027828e-13, 5.689615165447445e-13, 7.332672727015592e-13, 289.99999999999994, 9.586681195289213e-13, 1.6295249103980697e-13, 7.356208826827273e-13, 4.163663906172336e-13, 6.964196780504478e-13, 3.486456185395925e-13, 6.827544351316534e-13, 5.461315754255372e-13, 4.874933861214915e-13, 4.761453506798156e-13, 8.065835823107196e-13, 3.9764051771181584e-13, 7.878341542281709e-13, 2.586319418505007e-12, 2.028743278929584e-12, 1.9122961770711715e-12, 1.046741258220939e-12, 5.306458125412185e-13, 7.480943882329062e-13, 8.525532822684687e-13, 5.090846551780381e-13, 2.6621946577205043e-13, 7.495942433803442e-13, 1.30628652043287e-12, 5.701381357808222e-13, 2.217482866090094e-12, 2.3353842544238957e-12, 3.432617281507943e-13, 7.030150733555216e-13, 1.7609467559236896e-12, 1.2624242492708023e-12, 4.0346612338471264e-13, 1.3772491434972393e-12, 1.2493169834332025e-12, 1.3966835002617953e-12, 7.159473681967668e-13, 3.2640983998367287e-13, 2.9369959083543246e-13, 3.217475221867898e-13, 2.950438188632067e-13, 3.234375970696061e-13, 4.920129806144502e-13, 7.628525509772961e-13], "type": "scatter"}], "config": {"showlegend": false, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [0, 250, 500, 750, 1000], "range": [-28.970000000000027, 1029.97], "domain": [0.07646908719743364, 0.9934383202099737], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["0", "250", "500", "750", "1000"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Номер отсчёт БПФ", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [], "height": 400, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [0, 100, 200, 300, 400, 500], "range": [-16.499999999999943, 566.499999999997], "domain": [0.07581474190726165, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["0", "100", "200", "300", "400", "500"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Модуль БПФ", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "width": 827.5}}
{"id": "062c16f1_2ee2_400e_a2ea_6239c8437225", "data": [{"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [-500, -499, -498, -497, -496, -495, -494, -493, -492, -491, -490, -489, -488, -487, -486, -485, -484, -483, -482, -481, -480, -479, -478, -477, -476, -475, -474, -473, -472, -471, -470, -469, -468, -467, -466, -465, -464, -463, -462, -461, -460, -459, -458, -457, -456, -455, -454, -453, -452, -451, -450, -449, -448, -447, -446, -445, -444, -443, -442, -441, -440, -439, -438, -437, -436, -435, -434, -433, -432, -431, -430, -429, -428, -427, -426, -425, -424, -423, -422, -421, -420, -419, -418, -417, -416, -415, -414, -413, -412, -411, -410, -409, -408, -407, -406, -405, -404, -403, -402, -401, -400, -399, -398, -397, -396, -395, -394, -393, -392, -391, -390, -389, -388, -387, -386, -385, -384, -383, -382, -381, -380, -379, -378, -377, -376, -375, -374, -373, -372, -371, -370, -369, -368, -367, -366, -365, -364, -363, -362, -361, -360, -359, -358, -357, -356, -355, -354, -353, -352, -351, -350, -349, -348, -347, -346, -345, -344, -343, -342, -341, -340, -339, -338, -337, -336, -335, -334, -333, -332, -331, -330, -329, -328, -327, -326, -325, -324, -323, -322, -321, -320, -319, -318, -317, -316, -315, -314, -313, -312, -311, -310, -309, -308, -307, -306, -305, -304, -303, -302, -301, -300, -299, -298, -297, -296, -295, -294, -293, -292, -291, -290, -289, -288, -287, -286, -285, -284, -283, -282, -281, -280, -279, -278, -277, -276, -275, -274, -273, -272, -271, -270, -269, -268, -267, -266, -265, -264, -263, -262, -261, -260, -259, -258, -257, -256, -255, -254, -253, -252, -251, -250, -249, -248, -247, -246, -245, -244, -243, -242, -241, -240, -239, -238, -237, -236, -235, -234, -233, -232, -231, -230, -229, -228, -227, -226, -225, -224, -223, -222, -221, -220, -219, -218, -217, -216, -215, -214, -213, -212, -211, -210, -209, -208, -207, -206, -205, -204, -203, -202, -201, -200, -199, -198, -197, -196, -195, -194, -193, -192, -191, -190, -189, -188, -187, -186, -185, -184, -183, -182, -181, -180, -179, -178, -177, -176, -175, -174, -173, -172, -171, -170, -169, -168, -167, -166, -165, -164, -163, -162, -161, -160, -159, -158, -157, -156, -155, -154, -153, -152, -151, -150, -149, -148, -147, -146, -145, -144, -143, -142, -141, -140, -139, -138, -137, -136, -135, -134, -133, -132, -131, -130, -129, -128, -127, -126, -125, -124, -123, -122, -121, -120, -119, -118, -117, -116, -115, -114, -113, -112, -111, -110, -109, -108, -107, -106, -105, -104, -103, -102, -101, -100, -99, -98, -97, -96, -95, -94, -93, -92, -91, -90, -89, -88, -87, -86, -85, -84, -83, -82, -81, -80, -79, -78, -77, -76, -75, -74, -73, -72, -71, -70, -69, -68, -67, -66, -65, -64, -63, -62, -61, -60, -59, -58, -57, -56, -55, -54, -53, -52, -51, -50, -49, -48, -47, -46, -45, -44, -43, -42, -41, -40, -39, -38, -37, -36, -35, -34, -33, -32, -31, -30, -29, -28, -27, -26, -25, -24, -23, -22, -21, -20, -19, -18, -17, -16, -15, -14, -13, -12, -11, -10, -9, -8, -7, -6, -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499], "showlegend": true, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [1.8003376567321538e-12, 1.4389040945468154e-12, 1.1536199612310594e-12, 4.803446805120866e-13, 5.42547114094629e-13, 1.1819959229162635e-12, 3.975835845718451e-13, 1.016809138749469e-12, 1.0183961251779706e-12, 8.099486255816751e-13, 1.3000849691437152e-12, 6.363432800419242e-13, 5.836853613630415e-13, 3.2494135356073435e-13, 4.639669872580609e-13, 6.148929440946326e-13, 6.970077658570389e-13, 8.5707497708131e-13, 1.0196322296216148e-12, 8.52572908176957e-13, 9.086897043455612e-13, 3.516850728458222e-13, 4.626175498152113e-13, 4.1559758517946625e-13, 7.722752989891499e-13, 1.0840185443418756e-12, 1.604440044109772e-12, 1.8734905058736546e-12, 1.485505868244175e-12, 1.7777724330595285e-12, 1.1929503788155415e-12, 4.875494913690795e-13, 6.823116146266083e-13, 5.055078068315129e-13, 3.520488871115595e-13, 2.588176702029127e-13, 6.454172728906623e-13, 9.795521180707424e-13, 4.5169989382887087e-13, 1.0843529100481208e-13, 6.19614249994811e-13, 2.1788342157535795e-13, 2.619210710632719e-13, 5.330731301591001e-13, 5.17282919736354e-13, 4.650225239357789e-13, 2.3013712955362925e-13, 8.93177358662895e-13, 6.786294576996575e-13, 8.812714314119341e-13, 8.904398887892587e-13, 7.274672769768302e-13, 7.801056296088133e-13, 8.637250975019966e-14, 1.0324894864740162e-12, 2.8773581040355293e-12, 4.614666521467686e-12, 4.93109517019855e-12, 2.8595599914090613e-12, 6.523766068013603e-13, 9.512042190669845e-13, 9.617905840122691e-13, 3.043621708924253e-13, 8.285228225325958e-13, 1.03052778535054e-12, 2.391152508695237e-13, 1.26251080709081e-12, 6.549855288997099e-13, 8.994682159780283e-13, 2.79197752747325e-12, 3.4628204703687343e-12, 2.3692769454362802e-12, 1.3740193559563936e-12, 2.910725430724864e-12, 4.654739666215244e-12, 2.4341907856312813e-12, 1.6193451029438822e-12, 1.19271213778627e-14, 6.461713041556487e-13, 3.421635614937825e-13, 2.603136426132758e-13, 1.1061852717816327e-12, 7.341918990486355e-13, 1.2285166827727256e-12, 1.327667386602446e-12, 5.769345596515297e-13, 1.2668754938780696e-12, 5.752868722856638e-13, 2.175174795789266e-13, 1.1032500174412421e-12, 8.871058674759185e-13, 8.792484203049797e-13, 7.72178432301212e-13, 4.460121595618827e-13, 1.0334288403281034e-12, 6.523585026716103e-13, 3.3825279666474047e-13, 2.5869973632715664e-13, 4.1741668281078244e-13, 5.260764461888469e-13, 5.599960394957098e-13, 3.265255486997744e-13, 6.457175062664662e-13, 8.011802158287461e-13, 9.412059491810143e-13, 4.4071329464512785e-13, 3.0367391029972587e-13, 4.021720050963262e-13, 3.9328383524801897e-13, 6.533351843592331e-13, 8.031538953986346e-13, 1.1260945016004599e-12, 1.0115786245765973e-12, 3.689999229407751e-13, 6.073866482013189e-13, 2.817242784517577e-13, 2.3718739161392606e-13, 4.526704003370648e-13, 2.571347716107931e-13, 7.778797249096495e-14, 1.853016340192064e-13, 7.32343004974729e-14, 3.7640174584513115e-13, 3.761805387779791e-13, 5.042190632952123e-13, 1.4599992561499757e-13, 4.63940441795698e-13, 1.0029385540980627e-12, 2.218558446813087e-12, 1.4860681915596644e-12, 1.1597311278764644e-12, 7.683396106624483e-13, 1.3174086387137881e-12, 9.958213469846446e-13, 2.4520657842576585e-13, 6.390965867835778e-13, 4.683010386796573e-13, 7.823292212120111e-13, 8.674839560885278e-13, 2.493760322848269e-12, 2.728674162106038e-13, 3.1686382249688445e-12, 1.7440234057106756e-12, 1.6373991945595738e-13, 9.606343643538725e-13, 1.476446997104023e-12, 6.790934611698282e-13, 1.3643526223409044e-12, 5.367724166260395e-13, 8.512406756364544e-13, 8.681132080443799e-13, 6.423212624612979e-13, 1.5099345148888065e-12, 7.99391550103349e-13, 4.787856614943551e-13, 3.250255245489428e-13, 7.321976513407677e-13, 4.000082930886281e-13, 8.818310908080852e-13, 3.351227144083471e-13, 3.256662816430114e-13, 5.719298402258214e-13, 6.291498363567808e-13, 4.672447240660211e-13, 1.4769242704358599e-12, 1.5245381369409812e-12, 1.4944028539876927e-12, 1.0986238969663127e-12, 7.415536910002427e-13, 1.1282248923211255e-12, 6.564421624180441e-13, 5.30977016002461e-13, 1.39566972108769e-13, 6.972890808289628e-14, 1.5459882705670934e-13, 3.579518996218726e-13, 2.1993936627940087e-13, 4.452451010628565e-13, 3.1809842524368424e-13, 3.769306683991329e-14, 2.2587836978133957e-13, 7.74142506114678e-13, 4.232784472818272e-13, 5.756477634600988e-13, 1.018336562183257e-12, 2.477558473016863e-12, 4.6307029679993505e-12, 3.759997684560799e-12, 7.654037222809501e-13, 5.151169229874364e-12, 8.698396265349811e-12, 8.486810364920776e-12, 4.280025325902969e-12, 1.809314952232285e-12, 2.8221223509940767e-12, 125.0000000000002, 8.311264492475512e-13, 1.5236699987649815e-12, 5.199285191954645e-13, 3.44529590189465e-13, 8.678565137810304e-13, 6.504230297216407e-13, 1.0282444099050597e-12, 9.174165255662372e-13, 8.872362837307684e-13, 6.913428312827898e-13, 8.227159471393142e-13, 3.274340437403821e-13, 4.883871379934101e-13, 6.348878027878454e-13, 4.871114320763386e-13, 3.3326404418047046e-13, 4.890994303554416e-13, 5.198254690990106e-13, 5.341074244740346e-13, 3.502299072811208e-13, 1.8285980395687841e-13, 2.988512278961095e-13, 3.90873049555243e-13, 3.9878245334409633e-13, 3.9663565353312193e-13, 7.560806192978607e-13, 5.431950997675644e-13, 1.249102798067238e-12, 9.422298949908901e-13, 9.819097815981472e-13, 3.1185069292931074e-13, 8.320800046567736e-13, 8.292225851967292e-13, 3.4314441121565666e-13, 1.494674836737148e-13, 9.019341537399433e-13, 9.82866068916869e-14, 7.567440783868375e-13, 9.108849002977225e-13, 6.418901281460956e-13, 1.1210304896380601e-12, 7.889013940147875e-13, 8.872746497335126e-13, 1.8070772253640225e-12, 1.3618447293928671e-12, 9.419899553453735e-13, 1.1764068606612325e-12, 7.019988686045289e-13, 3.810649018958861e-12, 4.646859168378609e-12, 3.060418411569925e-12, 5.549691540414514e-12, 1.2181580098280115e-11, 370.00000000000284, 1.3183728456843127e-11, 3.888373062405161e-12, 2.5909663091356772e-12, 3.2080650309311217e-12, 2.0335002474563808e-12, 1.7585389828369154e-12, 1.578553799227802e-12, 2.654420543032005e-12, 1.5650605071004787e-12, 1.6704173188362897e-12, 1.3867210343137772e-12, 1.0992813228214608e-12, 1.0854973439800799e-12, 3.512746942469632e-13, 6.353137362440934e-13, 8.695847984207216e-13, 5.879468119711188e-14, 4.91802653135782e-13, 1.0898444355845777e-12, 3.5987511465501197e-13, 2.4787712518694737e-13, 1.120952837040922e-12, 4.697665323410497e-13, 4.854903644572971e-13, 2.3411514802696774e-13, 2.8985014973826843e-13, 9.022961167015047e-13, 1.5768388069191729e-12, 9.284472236907588e-13, 9.51777702173098e-13, 2.8930601635249074e-13, 3.192426786442887e-13, 5.664313661595912e-13, 5.87102113602518e-13, 4.749735883986372e-13, 9.905638846700157e-14, 1.3451046982162154e-13, 4.317088250365555e-13, 5.553167014782564e-13, 6.660882195452568e-13, 2.126984031204589e-13, 5.480423784524383e-13, 4.033385801231912e-13, 1.5982603375363243e-13, 1.0227675606067386e-12, 3.422601861303719e-13, 8.208453892088285e-13, 6.8933259303795e-13, 8.73271568339447e-13, 5.243383996009057e-13, 2.690153181452487e-13, 6.640532283347884e-13, 1.413316027612436e-12, 8.422753043561073e-13, 1.5496587804310835e-12, 8.210247520698475e-13, 2.8324327450580546e-13, 1.2920763061738127e-12, 9.407748341079423e-13, 1.3042130403448303e-12, 2.328319662918388e-12, 4.179247806397457e-12, 3.4053976810024202e-12, 1.9741704507112724e-12, 1.6326051171815039e-12, 5.722871281047874e-13, 8.553439630090498e-13, 1.1778274573462013e-12, 8.802341425517579e-13, 8.244031915548267e-13, 9.085810915156193e-13, 1.0562520094004988e-13, 9.134925024837744e-14, 1.8793360266825802e-13, 2.867962802202811e-13, 6.244835774980807e-13, 2.835147467142701e-13, 6.630472931914441e-13, 4.099954521142573e-13, 4.964734180153521e-13, 5.550405020338891e-13, 6.359976780839266e-13, 1.7175502293282502e-12, 2.0033187838074505e-12, 1.2058400047360166e-12, 6.941280050694859e-13, 9.3589933260714e-13, 7.039480905118437e-13, 1.2148882450031904e-13, 7.719155832511204e-14, 2.6806674739284185e-13, 4.601719985926083e-13, 1.2312918425496486e-13, 3.0772707890432644e-13, 5.217923450896794e-13, 2.749489706701909e-13, 6.52386564455596e-13, 6.20727556592829e-13, 6.357286305514709e-13, 6.006669507160282e-13, 2.425947357421927e-13, 1.1312299602359903e-12, 5.255631768750972e-13, 1.2721784343183694e-12, 5.065222019343904e-13, 5.190062541836687e-13, 7.78229171038463e-13, 6.722714646295711e-13, 4.146714460361222e-13, 1.0573681046137912e-12, 1.8943225857650677e-12, 3.1611561765956403e-12, 1.6918835114927227e-12, 3.4237401023773908e-12, 2.743473854081524e-12, 3.0003951952386e-12, 1.5168205940392104e-12, 2.5510131983233177e-12, 5.416756256682981e-12, 5.84153104368572e-12, 549.9999999999972, 5.51995950321865e-12, 3.625738170442892e-12, 1.2807749415370413e-12, 8.151751687947198e-13, 2.4098030874706353e-12, 1.0446750974400749e-12, 6.48405824029424e-13, 1.4496838434241318e-12, 5.131106407420882e-13, 2.738731926304422e-13, 1.2330774833384018e-12, 4.824575929538286e-13, 2.7340476566876585e-13, 7.593259022044095e-13, 6.128452887029257e-13, 3.8918348661739537e-13, 5.771984898359561e-13, 1.0865737582448252e-12, 1.1706577154347454e-12, 1.200775375757052e-12, 1.5381620758269942e-12, 5.366826640605563e-13, 8.148062012741531e-13, 5.109090109980308e-13, 7.377640587194029e-13, 3.645934152139251e-13, 6.192330963129598e-13, 2.754667414744459e-13, 3.4252159301749395e-13, 4.0457089534403684e-13, 4.957965677202257e-13, 3.1411120335278097e-13, 3.583280894079205e-13, 2.9054144380728803e-13, 1.0424388862262767e-12, 3.24898948939917e-13, 1.6226725985376108e-12, 1.2172440475711745e-12, 3.961087629986958e-13, 1.0074504760059473e-12, 3.4006498778759397e-13, 9.807798244031699e-13, 7.251012427337912e-13, 7.749077015863287e-13, 1.4844051071034342e-12, 1.0182357823860442e-12, 2.206003198033508e-12, 7.200738038002818e-13, 1.090544008617383e-12, 4.1991337889211087e-13, 8.028243504349807e-13, 1.735940979337205e-13, 6.711211684526886e-13, 1.0295491724819119e-12, 1.374794336641274e-12, 6.553098994353927e-13, 3.671407725118268e-13, 6.120692831743109e-13, 5.202454089452998e-13, 5.337534691209935e-13, 6.220400476087748e-13, 2.4636121950043055e-13, 7.12094409160654e-13, 4.379358898265154e-13, 8.869718818333944e-13, 8.420595787634362e-13, 5.196133696547712e-13, 2.553977266702732e-13, 1.8822808409823773e-13, 4.4605071864360643e-13, 6.859290680600057e-13, 9.933983359993211e-13, 4.198701650399018e-13, 3.0159578381484183e-12, 4.704283031853692e-12, 4.84982135891756e-12, 2.899561215540335e-12, 8.724554351466385e-13, 5.986247442110842e-13, 5.475925422367351e-13, 7.059085014064594e-13, 9.648480904833404e-13, 9.958255540027828e-13, 5.689615165447445e-13, 7.332672727015592e-13, 289.99999999999994, 9.586681195289213e-13, 1.6295249103980697e-13, 7.356208826827273e-13, 4.163663906172336e-13, 6.964196780504478e-13, 3.486456185395925e-13, 6.827544351316534e-13, 5.461315754255372e-13, 4.874933861214915e-13, 4.761453506798156e-13, 8.065835823107196e-13, 3.9764051771181584e-13, 7.878341542281709e-13, 2.586319418505007e-12, 2.028743278929584e-12, 1.9122961770711715e-12, 1.046741258220939e-12, 5.306458125412185e-13, 7.480943882329062e-13, 8.525532822684687e-13, 5.090846551780381e-13, 2.6621946577205043e-13, 7.495942433803442e-13, 1.30628652043287e-12, 5.701381357808222e-13, 2.217482866090094e-12, 2.3353842544238957e-12, 3.432617281507943e-13, 7.030150733555216e-13, 1.7609467559236896e-12, 1.2624242492708023e-12, 4.0346612338471264e-13, 1.3772491434972393e-12, 1.2493169834332025e-12, 1.3966835002617953e-12, 7.159473681967668e-13, 3.2640983998367287e-13, 2.9369959083543246e-13, 3.217475221867898e-13, 2.950438188632067e-13, 3.234375970696061e-13, 4.920129806144502e-13, 7.628525509772961e-13, 7.48179296294893e-13, 7.628525509772961e-13, 4.920129806144502e-13, 3.234375970696061e-13, 2.950438188632067e-13, 3.217475221867898e-13, 2.9369959083543246e-13, 3.2640983998367287e-13, 7.159473681967668e-13, 1.3966835002617953e-12, 1.2493169834332025e-12, 1.3772491434972393e-12, 4.0346612338471264e-13, 1.2624242492708023e-12, 1.7609467559236896e-12, 7.030150733555216e-13, 3.432617281507943e-13, 2.3353842544238957e-12, 2.217482866090094e-12, 5.701381357808222e-13, 1.30628652043287e-12, 7.495942433803442e-13, 2.6621946577205043e-13, 5.090846551780381e-13, 8.525532822684687e-13, 7.480943882329062e-13, 5.306458125412185e-13, 1.046741258220939e-12, 1.9122961770711715e-12, 2.028743278929584e-12, 2.586319418505007e-12, 7.878341542281709e-13, 3.9764051771181584e-13, 8.065835823107196e-13, 4.761453506798156e-13, 4.874933861214915e-13, 5.461315754255372e-13, 6.827544351316534e-13, 3.486456185395925e-13, 6.964196780504478e-13, 4.163663906172336e-13, 7.356208826827273e-13, 1.6295249103980697e-13, 9.586681195289213e-13, 289.99999999999994, 7.332672727015592e-13, 5.689615165447445e-13, 9.958255540027828e-13, 9.648480904833404e-13, 7.059085014064594e-13, 5.475925422367351e-13, 5.986247442110842e-13, 8.724554351466385e-13, 2.899561215540335e-12, 4.84982135891756e-12, 4.704283031853692e-12, 3.0159578381484183e-12, 4.198701650399018e-13, 9.933983359993211e-13, 6.859290680600057e-13, 4.4605071864360643e-13, 1.8822808409823773e-13, 2.553977266702732e-13, 5.196133696547712e-13, 8.420595787634362e-13, 8.869718818333944e-13, 4.379358898265154e-13, 7.12094409160654e-13, 2.4636121950043055e-13, 6.220400476087748e-13, 5.337534691209935e-13, 5.202454089452998e-13, 6.120692831743109e-13, 3.671407725118268e-13, 6.553098994353927e-13, 1.374794336641274e-12, 1.0295491724819119e-12, 6.711211684526886e-13, 1.735940979337205e-13, 8.028243504349807e-13, 4.1991337889211087e-13, 1.090544008617383e-12, 7.200738038002818e-13, 2.206003198033508e-12, 1.0182357823860442e-12, 1.4844051071034342e-12, 7.749077015863287e-13, 7.251012427337912e-13, 9.807798244031699e-13, 3.4006498778759397e-13, 1.0074504760059473e-12, 3.961087629986958e-13, 1.2172440475711745e-12, 1.6226725985376108e-12, 3.24898948939917e-13, 1.0424388862262767e-12, 2.9054144380728803e-13, 3.583280894079205e-13, 3.1411120335278097e-13, 4.957965677202257e-13, 4.0457089534403684e-13, 3.4252159301749395e-13, 2.754667414744459e-13, 6.192330963129598e-13, 3.645934152139251e-13, 7.377640587194029e-13, 5.109090109980308e-13, 8.148062012741531e-13, 5.366826640605563e-13, 1.5381620758269942e-12, 1.200775375757052e-12, 1.1706577154347454e-12, 1.0865737582448252e-12, 5.771984898359561e-13, 3.8918348661739537e-13, 6.128452887029257e-13, 7.593259022044095e-13, 2.7340476566876585e-13, 4.824575929538286e-13, 1.2330774833384018e-12, 2.738731926304422e-13, 5.131106407420882e-13, 1.4496838434241318e-12, 6.48405824029424e-13, 1.0446750974400749e-12, 2.4098030874706353e-12, 8.151751687947198e-13, 1.2807749415370413e-12, 3.625738170442892e-12, 5.51995950321865e-12, 549.9999999999972, 5.84153104368572e-12, 5.416756256682981e-12, 2.5510131983233177e-12, 1.5168205940392104e-12, 3.0003951952386e-12, 2.743473854081524e-12, 3.4237401023773908e-12, 1.6918835114927227e-12, 3.1611561765956403e-12, 1.8943225857650677e-12, 1.0573681046137912e-12, 4.146714460361222e-13, 6.722714646295711e-13, 7.78229171038463e-13, 5.190062541836687e-13, 5.065222019343904e-13, 1.2721784343183694e-12, 5.255631768750972e-13, 1.1312299602359903e-12, 2.425947357421927e-13, 6.006669507160282e-13, 6.357286305514709e-13, 6.20727556592829e-13, 6.52386564455596e-13, 2.749489706701909e-13, 5.217923450896794e-13, 3.0772707890432644e-13, 1.2312918425496486e-13, 4.601719985926083e-13, 2.6806674739284185e-13, 7.719155832511204e-14, 1.2148882450031904e-13, 7.039480905118437e-13, 9.3589933260714e-13, 6.941280050694859e-13, 1.2058400047360166e-12, 2.0033187838074505e-12, 1.7175502293282502e-12, 6.359976780839266e-13, 5.550405020338891e-13, 4.964734180153521e-13, 4.099954521142573e-13, 6.630472931914441e-13, 2.835147467142701e-13, 6.244835774980807e-13, 2.867962802202811e-13, 1.8793360266825802e-13, 9.134925024837744e-14, 1.0562520094004988e-13, 9.085810915156193e-13, 8.244031915548267e-13, 8.802341425517579e-13, 1.1778274573462013e-12, 8.553439630090498e-13, 5.722871281047874e-13, 1.6326051171815039e-12, 1.9741704507112724e-12, 3.4053976810024202e-12, 4.179247806397457e-12, 2.328319662918388e-12, 1.3042130403448303e-12, 9.407748341079423e-13, 1.2920763061738127e-12, 2.8324327450580546e-13, 8.210247520698475e-13, 1.5496587804310835e-12, 8.422753043561073e-13, 1.413316027612436e-12, 6.640532283347884e-13, 2.690153181452487e-13, 5.243383996009057e-13, 8.73271568339447e-13, 6.8933259303795e-13, 8.208453892088285e-13, 3.422601861303719e-13, 1.0227675606067386e-12, 1.5982603375363243e-13, 4.033385801231912e-13, 5.480423784524383e-13, 2.126984031204589e-13, 6.660882195452568e-13, 5.553167014782564e-13, 4.317088250365555e-13, 1.3451046982162154e-13, 9.905638846700157e-14, 4.749735883986372e-13, 5.87102113602518e-13, 5.664313661595912e-13, 3.192426786442887e-13, 2.8930601635249074e-13, 9.51777702173098e-13, 9.284472236907588e-13, 1.5768388069191729e-12, 9.022961167015047e-13, 2.8985014973826843e-13, 2.3411514802696774e-13, 4.854903644572971e-13, 4.697665323410497e-13, 1.120952837040922e-12, 2.4787712518694737e-13, 3.5987511465501197e-13, 1.0898444355845777e-12, 4.91802653135782e-13, 5.879468119711188e-14, 8.695847984207216e-13, 6.353137362440934e-13, 3.512746942469632e-13, 1.0854973439800799e-12, 1.0992813228214608e-12, 1.3867210343137772e-12, 1.6704173188362897e-12, 1.5650605071004787e-12, 2.654420543032005e-12, 1.578553799227802e-12, 1.7585389828369154e-12, 2.0335002474563808e-12, 3.2080650309311217e-12, 2.5909663091356772e-12, 3.888373062405161e-12, 1.3183728456843127e-11, 370.00000000000284, 1.2181580098280115e-11, 5.549691540414514e-12, 3.060418411569925e-12, 4.646859168378609e-12, 3.810649018958861e-12, 7.019988686045289e-13, 1.1764068606612325e-12, 9.419899553453735e-13, 1.3618447293928671e-12, 1.8070772253640225e-12, 8.872746497335126e-13, 7.889013940147875e-13, 1.1210304896380601e-12, 6.418901281460956e-13, 9.108849002977225e-13, 7.567440783868375e-13, 9.82866068916869e-14, 9.019341537399433e-13, 1.494674836737148e-13, 3.4314441121565666e-13, 8.292225851967292e-13, 8.320800046567736e-13, 3.1185069292931074e-13, 9.819097815981472e-13, 9.422298949908901e-13, 1.249102798067238e-12, 5.431950997675644e-13, 7.560806192978607e-13, 3.9663565353312193e-13, 3.9878245334409633e-13, 3.90873049555243e-13, 2.988512278961095e-13, 1.8285980395687841e-13, 3.502299072811208e-13, 5.341074244740346e-13, 5.198254690990106e-13, 4.890994303554416e-13, 3.3326404418047046e-13, 4.871114320763386e-13, 6.348878027878454e-13, 4.883871379934101e-13, 3.274340437403821e-13, 8.227159471393142e-13, 6.913428312827898e-13, 8.872362837307684e-13, 9.174165255662372e-13, 1.0282444099050597e-12, 6.504230297216407e-13, 8.678565137810304e-13, 3.44529590189465e-13, 5.199285191954645e-13, 1.5236699987649815e-12, 8.311264492475512e-13, 125.0000000000002, 2.8221223509940767e-12, 1.809314952232285e-12, 4.280025325902969e-12, 8.486810364920776e-12, 8.698396265349811e-12, 5.151169229874364e-12, 7.654037222809501e-13, 3.759997684560799e-12, 4.6307029679993505e-12, 2.477558473016863e-12, 1.018336562183257e-12, 5.756477634600988e-13, 4.232784472818272e-13, 7.74142506114678e-13, 2.2587836978133957e-13, 3.769306683991329e-14, 3.1809842524368424e-13, 4.452451010628565e-13, 2.1993936627940087e-13, 3.579518996218726e-13, 1.5459882705670934e-13, 6.972890808289628e-14, 1.39566972108769e-13, 5.30977016002461e-13, 6.564421624180441e-13, 1.1282248923211255e-12, 7.415536910002427e-13, 1.0986238969663127e-12, 1.4944028539876927e-12, 1.5245381369409812e-12, 1.4769242704358599e-12, 4.672447240660211e-13, 6.291498363567808e-13, 5.719298402258214e-13, 3.256662816430114e-13, 3.351227144083471e-13, 8.818310908080852e-13, 4.000082930886281e-13, 7.321976513407677e-13, 3.250255245489428e-13, 4.787856614943551e-13, 7.99391550103349e-13, 1.5099345148888065e-12, 6.423212624612979e-13, 8.681132080443799e-13, 8.512406756364544e-13, 5.367724166260395e-13, 1.3643526223409044e-12, 6.790934611698282e-13, 1.476446997104023e-12, 9.606343643538725e-13, 1.6373991945595738e-13, 1.7440234057106756e-12, 3.1686382249688445e-12, 2.728674162106038e-13, 2.493760322848269e-12, 8.674839560885278e-13, 7.823292212120111e-13, 4.683010386796573e-13, 6.390965867835778e-13, 2.4520657842576585e-13, 9.958213469846446e-13, 1.3174086387137881e-12, 7.683396106624483e-13, 1.1597311278764644e-12, 1.4860681915596644e-12, 2.218558446813087e-12, 1.0029385540980627e-12, 4.63940441795698e-13, 1.4599992561499757e-13, 5.042190632952123e-13, 3.761805387779791e-13, 3.7640174584513115e-13, 7.32343004974729e-14, 1.853016340192064e-13, 7.778797249096495e-14, 2.571347716107931e-13, 4.526704003370648e-13, 2.3718739161392606e-13, 2.817242784517577e-13, 6.073866482013189e-13, 3.689999229407751e-13, 1.0115786245765973e-12, 1.1260945016004599e-12, 8.031538953986346e-13, 6.533351843592331e-13, 3.9328383524801897e-13, 4.021720050963262e-13, 3.0367391029972587e-13, 4.4071329464512785e-13, 9.412059491810143e-13, 8.011802158287461e-13, 6.457175062664662e-13, 3.265255486997744e-13, 5.599960394957098e-13, 5.260764461888469e-13, 4.1741668281078244e-13, 2.5869973632715664e-13, 3.3825279666474047e-13, 6.523585026716103e-13, 1.0334288403281034e-12, 4.460121595618827e-13, 7.72178432301212e-13, 8.792484203049797e-13, 8.871058674759185e-13, 1.1032500174412421e-12, 2.175174795789266e-13, 5.752868722856638e-13, 1.2668754938780696e-12, 5.769345596515297e-13, 1.327667386602446e-12, 1.2285166827727256e-12, 7.341918990486355e-13, 1.1061852717816327e-12, 2.603136426132758e-13, 3.421635614937825e-13, 6.461713041556487e-13, 1.19271213778627e-14, 1.6193451029438822e-12, 2.4341907856312813e-12, 4.654739666215244e-12, 2.910725430724864e-12, 1.3740193559563936e-12, 2.3692769454362802e-12, 3.4628204703687343e-12, 2.79197752747325e-12, 8.994682159780283e-13, 6.549855288997099e-13, 1.26251080709081e-12, 2.391152508695237e-13, 1.03052778535054e-12, 8.285228225325958e-13, 3.043621708924253e-13, 9.617905840122691e-13, 9.512042190669845e-13, 6.523766068013603e-13, 2.8595599914090613e-12, 4.93109517019855e-12, 4.614666521467686e-12, 2.8773581040355293e-12, 1.0324894864740162e-12, 8.637250975019966e-14, 7.801056296088133e-13, 7.274672769768302e-13, 8.904398887892587e-13, 8.812714314119341e-13, 6.786294576996575e-13, 8.93177358662895e-13, 2.3013712955362925e-13, 4.650225239357789e-13, 5.17282919736354e-13, 5.330731301591001e-13, 2.619210710632719e-13, 2.1788342157535795e-13, 6.19614249994811e-13, 1.0843529100481208e-13, 4.5169989382887087e-13, 9.795521180707424e-13, 6.454172728906623e-13, 2.588176702029127e-13, 3.520488871115595e-13, 5.055078068315129e-13, 6.823116146266083e-13, 4.875494913690795e-13, 1.1929503788155415e-12, 1.7777724330595285e-12, 1.485505868244175e-12, 1.8734905058736546e-12, 1.604440044109772e-12, 1.0840185443418756e-12, 7.722752989891499e-13, 4.1559758517946625e-13, 4.626175498152113e-13, 3.516850728458222e-13, 9.086897043455612e-13, 8.52572908176957e-13, 1.0196322296216148e-12, 8.5707497708131e-13, 6.970077658570389e-13, 6.148929440946326e-13, 4.639669872580609e-13, 3.2494135356073435e-13, 5.836853613630415e-13, 6.363432800419242e-13, 1.3000849691437152e-12, 8.099486255816751e-13, 1.0183961251779706e-12, 1.016809138749469e-12, 3.975835845718451e-13, 1.1819959229162635e-12, 5.42547114094629e-13, 4.803446805120866e-13, 1.1536199612310594e-12, 1.4389040945468154e-12], "type": "scatter"}], "config": {"showlegend": false, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [-400, -200, 0, 200, 400], "range": [-529.97, 528.97], "domain": [0.07646908719743364, 0.9934383202099737], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["-400", "-200", "0", "200", "400"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Частота (Гц)", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [], "height": 400, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [0, 100, 200, 300, 400, 500], "range": [-16.499999999999943, 566.499999999997], "domain": [0.07581474190726165, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["0", "100", "200", "300", "400", "500"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Модуль БПФ", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "width": 827.5}}
{"id": "e28830ef_8715_48c8_b6b2_d748ab79e086", "data": [{"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-500, -499, -498, -497, -496, -495, -494, -493, -492, -491, -490, -489, -488, -487, -486, -485, -484, -483, -482, -481, -480, -479, -478, -477, -476, -475, -474, -473, -472, -471, -470, -469, -468, -467, -466, -465, -464, -463, -462, -461, -460, -459, -458, -457, -456, -455, -454, -453, -452, -451, -450, -449, -448, -447, -446, -445, -444, -443, -442, -441, -440, -439, -438, -437, -436, -435, -434, -433, -432, -431, -430, -429, -428, -427, -426, -425, -424, -423, -422, -421, -420, -419, -418, -417, -416, -415, -414, -413, -412, -411, -410, -409, -408, -407, -406, -405, -404, -403, -402, -401, -400, -399, -398, -397, -396, -395, -394, -393, -392, -391, -390, -389, -388, -387, -386, -385, -384, -383, -382, -381, -380, -379, -378, -377, -376, -375, -374, -373, -372, -371, -370, -369, -368, -367, -366, -365, -364, -363, -362, -361, -360, -359, -358, -357, -356, -355, -354, -353, -352, -351, -350, -349, -348, -347, -346, -345, -344, -343, -342, -341, -340, -339, -338, -337, -336, -335, -334, -333, -332, -331, -330, -329, -328, -327, -326, -325, -324, -323, -322, -321, -320, -319, -318, -317, -316, -315, -314, -313, -312, -311, -310, -309, -308, -307, -306, -305, -304, -303, -302, -301, -300, -299, -298, -297, -296, -295, -294, -293, -292, -291, -290, -289, -288, -287, -286, -285, -284, -283, -282, -281, -280, -279, -278, -277, -276, -275, -274, -273, -272, -271, -270, -269, -268, -267, -266, -265, -264, -263, -262, -261, -260, -259, -258, -257, -256, -255, -254, -253, -252, -251, -250, -249, -248, -247, -246, -245, -244, -243, -242, -241, -240, -239, -238, -237, -236, -235, -234, -233, -232, -231, -230, -229, -228, -227, -226, -225, -224, -223, -222, -221, -220, -219, -218, -217, -216, -215, -214, -213, -212, -211, -210, -209, -208, -207, -206, -205, -204, -203, -202, -201, -200, -199, -198, -197, -196, -195, -194, -193, -192, -191, -190, -189, -188, -187, -186, -185, -184, -183, -182, -181, -180, -179, -178, -177, -176, -175, -174, -173, -172, -171, -170, -169, -168, -167, -166, -165, -164, -163, -162, -161, -160, -159, -158, -157, -156, -155, -154, -153, -152, -151, -150, -149, -148, -147, -146, -145, -144, -143, -142, -141, -140, -139, -138, -137, -136, -135, -134, -133, -132, -131, -130, -129, -128, -127, -126, -125, -124, -123, -122, -121, -120, -119, -118, -117, -116, -115, -114, -113, -112, -111, -110, -109, -108, -107, -106, -105, -104, -103, -102, -101, -100, -99, -98, -97, -96, -95, -94, -93, -92, -91, -90, -89, -88, -87, -86, -85, -84, -83, -82, -81, -80, -79, -78, -77, -76, -75, -74, -73, -72, -71, -70, -69, -68, -67, -66, -65, -64, -63, -62, -61, -60, -59, -58, -57, -56, -55, -54, -53, -52, -51, -50, -49, -48, -47, -46, -45, -44, -43, -42, -41, -40, -39, -38, -37, -36, -35, -34, -33, -32, -31, -30, -29, -28, -27, -26, -25, -24, -23, -22, -21, -20, -19, -18, -17, -16, -15, -14, -13, -12, -11, -10, -9, -8, -7, -6, -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499], "showlegend": true, "mode": "markers", "name": "y1", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 154, 250, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "y": [3.600675313464308e-15, 2.877808189093631e-15, 2.3072399224621185e-15, 9.606893610241731e-16, 1.085094228189258e-15, 2.363991845832527e-15, 7.951671691436902e-16, 2.033618277498938e-15, 2.0367922503559412e-15, 1.6198972511633502e-15, 2.6001699382874305e-15, 1.2726865600838482e-15, 1.1673707227260831e-15, 6.498827071214687e-16, 9.27933974516122e-16, 1.2297858881892652e-15, 1.3940155317140777e-15, 1.7141499541626199e-15, 2.03926445924323e-15, 1.705145816353914e-15, 1.8173794086911224e-15, 7.033701456916444e-16, 9.252350996304225e-16, 8.311951703589325e-16, 1.5445505979782997e-15, 2.1680370886837514e-15, 3.2088800882195443e-15, 3.746981011747309e-15, 2.97101173648835e-15, 3.555544866119057e-15, 2.3859007576310833e-15, 9.75098982738159e-16, 1.3646232292532166e-15, 1.0110156136630257e-15, 7.04097774223119e-16, 5.176353404058253e-16, 1.2908345457813246e-15, 1.9591042361414847e-15, 9.033997876577417e-16, 2.1687058200962415e-16, 1.2392284999896218e-15, 4.3576684315071593e-16, 5.238421421265438e-16, 1.0661462603182003e-15, 1.034565839472708e-15, 9.30045047871558e-16, 4.602742591072585e-16, 1.78635471732579e-15, 1.3572589153993152e-15, 1.7625428628238681e-15, 1.7808797775785172e-15, 1.4549345539536605e-15, 1.5602112592176266e-15, 1.727450195003993e-16, 2.064978972948033e-15, 5.754716208071058e-15, 9.229333042935371e-15, 9.8621903403971e-15, 5.7191199828181225e-15, 1.3047532136027204e-15, 1.9024084381339692e-15, 1.9235811680245382e-15, 6.087243417848506e-16, 1.6570456450651914e-15, 2.06105557070108e-15, 4.782305017390473e-16, 2.5250216141816198e-15, 1.30997105779942e-15, 1.7989364319560566e-15, 5.5839550549465005e-15, 6.925640940737469e-15, 4.73855389087256e-15, 2.748038711912787e-15, 5.821450861449728e-15, 9.309479332430488e-15, 4.868381571262562e-15, 3.2386902058877645e-15, 2.3854242755725402e-17, 1.2923426083112974e-15, 6.84327122987565e-16, 5.206272852265516e-16, 2.2123705435632654e-15, 1.468383798097271e-15, 2.4570333655454514e-15, 2.655334773204892e-15, 1.1538691193030594e-15, 2.5337509877561392e-15, 1.1505737445713279e-15, 4.350349591578532e-16, 2.2065000348824844e-15, 1.774211734951837e-15, 1.7584968406099595e-15, 1.5443568646024239e-15, 8.920243191237655e-16, 2.0668576806562063e-15, 1.3047170053432207e-15, 6.76505593329481e-16, 5.173994726543133e-16, 8.348333656215649e-16, 1.0521528923776938e-15, 1.1199920789914197e-15, 6.5305109739954885e-16, 1.2914350125329324e-15, 1.6023604316574922e-15, 1.8824118983620287e-15, 8.814265892902557e-16, 6.0734782059945175e-16, 8.043440101926523e-16, 7.865676704960379e-16, 1.3066703687184662e-15, 1.6063077907972692e-15, 2.2521890032009193e-15, 2.0231572491531945e-15, 7.379998458815502e-16, 1.2147732964026377e-15, 5.634485569035154e-16, 4.743747832278522e-16, 9.053408006741297e-16, 5.142695432215862e-16, 1.555759449819299e-16, 3.706032680384128e-16, 1.464686009949458e-16, 7.528034916902623e-16, 7.523610775559581e-16, 1.0084381265904245e-15, 2.9199985122999517e-16, 9.278808835913962e-16, 2.005877108196126e-15, 4.437116893626174e-15, 2.972136383119329e-15, 2.3194622557529287e-15, 1.5366792213248965e-15, 2.6348172774275764e-15, 1.9916426939692894e-15, 4.904131568515317e-16, 1.2781931735671556e-15, 9.366020773593146e-16, 1.5646584424240224e-15, 1.7349679121770556e-15, 4.987520645696538e-15, 5.457348324212076e-16, 6.337276449937689e-15, 3.488046811421351e-15, 3.2747983891191476e-16, 1.921268728707745e-15, 2.952893994208046e-15, 1.3581869223396566e-15, 2.7287052446818088e-15, 1.073544833252079e-15, 1.7024813512729089e-15, 1.7362264160887597e-15, 1.2846425249225956e-15, 3.0198690297776127e-15, 1.5987831002066979e-15, 9.575713229887102e-16, 6.500510490978856e-16, 1.4643953026815354e-15, 8.000165861772562e-16, 1.7636621816161704e-15, 6.702454288166943e-16, 6.513325632860228e-16, 1.1438596804516429e-15, 1.2582996727135614e-15, 9.344894481320423e-16, 2.95384854087172e-15, 3.049076273881962e-15, 2.9888057079753855e-15, 2.197247793932625e-15, 1.4831073820004856e-15, 2.256449784642251e-15, 1.3128843248360883e-15, 1.0619540320049218e-15, 2.7913394421753803e-16, 1.3945781616579258e-16, 3.091976541134187e-16, 7.159037992437451e-16, 4.3987873255880173e-16, 8.904902021257129e-16, 6.361968504873686e-16, 7.538613367982659e-17, 4.517567395626791e-16, 1.548285012229356e-15, 8.465568945636544e-16, 1.1512955269201977e-15, 2.036673124366514e-15, 4.9551169460337254e-15, 9.2614059359987e-15, 7.519995369121597e-15, 1.5308074445619002e-15, 1.0302338459748728e-14, 1.7396792530699624e-14, 1.697362072984155e-14, 8.560050651805938e-15, 3.61862990446457e-15, 5.644244701988153e-15, 0.2500000000000004, 1.6622528984951025e-15, 3.0473399975299632e-15, 1.0398570383909287e-15, 6.8905918037893e-16, 1.735713027562061e-15, 1.3008460594432815e-15, 2.056488819810119e-15, 1.8348330511324742e-15, 1.7744725674615369e-15, 1.3826856625655798e-15, 1.6454318942786284e-15, 6.548680874807642e-16, 9.767742759868203e-16, 1.2697756055756909e-15, 9.742228641526774e-16, 6.66528088360941e-16, 9.781988607108834e-16, 1.039650938198021e-15, 1.0682148489480691e-15, 7.004598145622415e-16, 3.657196079137568e-16, 5.97702455792219e-16, 7.817460991104861e-16, 7.975649066881927e-16, 7.932713070662439e-16, 1.5121612385957216e-15, 1.0863901995351289e-15, 2.498205596134476e-15, 1.88445978998178e-15, 1.9638195631962945e-15, 6.237013858586216e-16, 1.6641600093135472e-15, 1.6584451703934584e-15, 6.862888224313134e-16, 2.9893496734742957e-16, 1.8038683074798866e-15, 1.965732137833738e-16, 1.513488156773675e-15, 1.821769800595445e-15, 1.2837802562921911e-15, 2.24206097927612e-15, 1.5778027880295748e-15, 1.7745492994670252e-15, 3.614154450728045e-15, 2.723689458785734e-15, 1.883979910690747e-15, 2.352813721322465e-15, 1.4039977372090578e-15, 7.621298037917721e-15, 9.293718336757217e-15, 6.1208368231398495e-15, 1.1099383080829028e-14, 2.436316019656023e-14, 0.7400000000000057, 2.6367456913686253e-14, 7.77674612481032e-15, 5.181932618271355e-15, 6.416130061862244e-15, 4.067000494912761e-15, 3.5170779656738307e-15, 3.157107598455604e-15, 5.3088410860640096e-15, 3.130121014200957e-15, 3.3408346376725793e-15, 2.773442068627554e-15, 2.1985626456429215e-15, 2.1709946879601593e-15, 7.025493884939264e-16, 1.2706274724881868e-15, 1.7391695968414432e-15, 1.1758936239422376e-16, 9.836053062715642e-16, 2.1796888711691557e-15, 7.19750229310024e-16, 4.957542503738947e-16, 2.2419056740818446e-15, 9.395330646820995e-16, 9.709807289145942e-16, 4.682302960539355e-16, 5.797002994765368e-16, 1.8045922334030095e-15, 3.1536776138383456e-15, 1.8568944473815175e-15, 1.903555404346196e-15, 5.786120327049814e-16, 6.384853572885775e-16, 1.1328627323191826e-15, 1.1742042272050359e-15, 9.499471767972743e-16, 1.9811277693400314e-16, 2.690209396432431e-16, 8.63417650073111e-16, 1.1106334029565127e-15, 1.3321764390905137e-15, 4.253968062409178e-16, 1.0960847569048766e-15, 8.066771602463824e-16, 3.1965206750726487e-16, 2.0455351212134773e-15, 6.845203722607437e-16, 1.6416907784176572e-15, 1.3786651860759e-15, 1.7465431366788938e-15, 1.0486767992018113e-15, 5.380306362904974e-16, 1.3281064566695768e-15, 2.826632055224872e-15, 1.6845506087122146e-15, 3.0993175608621667e-15, 1.642049504139695e-15, 5.664865490116109e-16, 2.5841526123476255e-15, 1.8815496682158846e-15, 2.608426080689661e-15, 4.656639325836776e-15, 8.358495612794913e-15, 6.8107953620048405e-15, 3.948340901422545e-15, 3.265210234363008e-15, 1.144574256209575e-15, 1.7106879260180997e-15, 2.355654914692403e-15, 1.760468285103516e-15, 1.6488063831096533e-15, 1.8171621830312388e-15, 2.1125040188009975e-16, 1.8269850049675487e-16, 3.7586720533651607e-16, 5.735925604405621e-16, 1.2489671549961614e-15, 5.670294934285402e-16, 1.3260945863828881e-15, 8.199909042285146e-16, 9.929468360307042e-16, 1.1100810040677781e-15, 1.2719953561678534e-15, 3.4351004586565e-15, 4.006637567614901e-15, 2.4116800094720333e-15, 1.3882560101389718e-15, 1.87179866521428e-15, 1.4078961810236876e-15, 2.429776490006381e-16, 1.5438311665022408e-16, 5.361334947856837e-16, 9.203439971852166e-16, 2.4625836850992974e-16, 6.15454157808653e-16, 1.0435846901793586e-15, 5.498979413403819e-16, 1.304773128911192e-15, 1.2414551131856581e-15, 1.2714572611029418e-15, 1.2013339014320563e-15, 4.851894714843854e-16, 2.2624599204719803e-15, 1.0511263537501945e-15, 2.5443568686367387e-15, 1.0130444038687807e-15, 1.0380125083673372e-15, 1.5564583420769258e-15, 1.344542929259142e-15, 8.293428920722444e-16, 2.114736209227582e-15, 3.788645171530135e-15, 6.322312353191281e-15, 3.383767022985445e-15, 6.847480204754781e-15, 5.4869477081630484e-15, 6.0007903904772e-15, 3.033641188078421e-15, 5.1020263966466356e-15, 1.0833512513365962e-14, 1.168306208737144e-14, 1.0999999999999943, 1.10399190064373e-14, 7.251476340885783e-15, 2.5615498830740825e-15, 1.6303503375894398e-15, 4.819606174941271e-15, 2.08935019488015e-15, 1.296811648058848e-15, 2.8993676868482637e-15, 1.0262212814841762e-15, 5.477463852608844e-16, 2.4661549666768035e-15, 9.649151859076572e-16, 5.468095313375317e-16, 1.518651804408819e-15, 1.2256905774058513e-15, 7.783669732347907e-16, 1.154396979671912e-15, 2.1731475164896505e-15, 2.3413154308694908e-15, 2.401550751514104e-15, 3.0763241516539884e-15, 1.0733653281211128e-15, 1.6296124025483061e-15, 1.0218180219960615e-15, 1.4755281174388058e-15, 7.291868304278502e-16, 1.2384661926259196e-15, 5.509334829488918e-16, 6.85043186034988e-16, 8.091417906880736e-16, 9.915931354404514e-16, 6.28222406705562e-16, 7.166561788158411e-16, 5.810828876145761e-16, 2.0848777724525532e-15, 6.49797897879834e-16, 3.2453451970752215e-15, 2.4344880951423486e-15, 7.922175259973916e-16, 2.014900952011895e-15, 6.801299755751879e-16, 1.9615596488063398e-15, 1.4502024854675824e-15, 1.5498154031726576e-15, 2.9688102142068684e-15, 2.0364715647720885e-15, 4.412006396067016e-15, 1.4401476076005636e-15, 2.181088017234766e-15, 8.398267577842217e-16, 1.6056487008699613e-15, 3.47188195867441e-16, 1.342242336905377e-15, 2.0590983449638238e-15, 2.7495886732825477e-15, 1.3106197988707855e-15, 7.342815450236537e-16, 1.2241385663486219e-15, 1.0404908178905997e-15, 1.0675069382419872e-15, 1.2440800952175496e-15, 4.927224390008611e-16, 1.424188818321308e-15, 8.758717796530308e-16, 1.7739437636667887e-15, 1.6841191575268725e-15, 1.0392267393095423e-15, 5.1079545334054635e-16, 3.764561681964755e-16, 8.921014372872128e-16, 1.3718581361200116e-15, 1.9867966719986423e-15, 8.397403300798037e-16, 6.0319156762968364e-15, 9.408566063707382e-15, 9.699642717835121e-15, 5.799122431080671e-15, 1.744910870293277e-15, 1.1972494884221683e-15, 1.0951850844734703e-15, 1.4118170028129187e-15, 1.929696180966681e-15, 1.9916511080055657e-15, 1.137923033089489e-15, 1.4665345454031185e-15, 0.58, 1.917336239057843e-15, 3.259049820796139e-16, 1.4712417653654545e-15, 8.3273278123446705e-16, 1.3928393561008955e-15, 6.97291237079185e-16, 1.3655088702633066e-15, 1.0922631508510744e-15, 9.74986772242983e-16, 9.522907013596314e-16, 1.6131671646214393e-15, 7.952810354236317e-16, 1.5756683084563417e-15, 5.1726388370100134e-15, 4.057486557859168e-15, 3.824592354142342e-15, 2.0934825164418778e-15, 1.061291625082437e-15, 1.4961887764658124e-15, 1.7051065645369373e-15, 1.018169310356076e-15, 5.324389315441009e-16, 1.4991884867606885e-15, 2.6125730408657398e-15, 1.1402762715616442e-15, 4.434965732180188e-15, 4.6707685088477916e-15, 6.865234563015886e-16, 1.4060301467110431e-15, 3.5218935118473792e-15, 2.5248484985416047e-15, 8.069322467694252e-16, 2.7544982869944786e-15, 2.4986339668664053e-15, 2.7933670005235907e-15, 1.4318947363935337e-15, 6.528196799673458e-16, 5.87399181670865e-16, 6.434950443735796e-16, 5.900876377264135e-16, 6.468751941392122e-16, 9.840259612289002e-16, 1.5257051019545922e-15, 1.496358592589786e-15, 1.5257051019545922e-15, 9.840259612289002e-16, 6.468751941392122e-16, 5.900876377264135e-16, 6.434950443735796e-16, 5.87399181670865e-16, 6.528196799673458e-16, 1.4318947363935337e-15, 2.7933670005235907e-15, 2.4986339668664053e-15, 2.7544982869944786e-15, 8.069322467694252e-16, 2.5248484985416047e-15, 3.5218935118473792e-15, 1.4060301467110431e-15, 6.865234563015886e-16, 4.6707685088477916e-15, 4.434965732180188e-15, 1.1402762715616442e-15, 2.6125730408657398e-15, 1.4991884867606885e-15, 5.324389315441009e-16, 1.018169310356076e-15, 1.7051065645369373e-15, 1.4961887764658124e-15, 1.061291625082437e-15, 2.0934825164418778e-15, 3.824592354142342e-15, 4.057486557859168e-15, 5.1726388370100134e-15, 1.5756683084563417e-15, 7.952810354236317e-16, 1.6131671646214393e-15, 9.522907013596314e-16, 9.74986772242983e-16, 1.0922631508510744e-15, 1.3655088702633066e-15, 6.97291237079185e-16, 1.3928393561008955e-15, 8.3273278123446705e-16, 1.4712417653654545e-15, 3.259049820796139e-16, 1.917336239057843e-15, 0.58, 1.4665345454031185e-15, 1.137923033089489e-15, 1.9916511080055657e-15, 1.929696180966681e-15, 1.4118170028129187e-15, 1.0951850844734703e-15, 1.1972494884221683e-15, 1.744910870293277e-15, 5.799122431080671e-15, 9.699642717835121e-15, 9.408566063707382e-15, 6.0319156762968364e-15, 8.397403300798037e-16, 1.9867966719986423e-15, 1.3718581361200116e-15, 8.921014372872128e-16, 3.764561681964755e-16, 5.1079545334054635e-16, 1.0392267393095423e-15, 1.6841191575268725e-15, 1.7739437636667887e-15, 8.758717796530308e-16, 1.424188818321308e-15, 4.927224390008611e-16, 1.2440800952175496e-15, 1.0675069382419872e-15, 1.0404908178905997e-15, 1.2241385663486219e-15, 7.342815450236537e-16, 1.3106197988707855e-15, 2.7495886732825477e-15, 2.0590983449638238e-15, 1.342242336905377e-15, 3.47188195867441e-16, 1.6056487008699613e-15, 8.398267577842217e-16, 2.181088017234766e-15, 1.4401476076005636e-15, 4.412006396067016e-15, 2.0364715647720885e-15, 2.9688102142068684e-15, 1.5498154031726576e-15, 1.4502024854675824e-15, 1.9615596488063398e-15, 6.801299755751879e-16, 2.014900952011895e-15, 7.922175259973916e-16, 2.4344880951423486e-15, 3.2453451970752215e-15, 6.49797897879834e-16, 2.0848777724525532e-15, 5.810828876145761e-16, 7.166561788158411e-16, 6.28222406705562e-16, 9.915931354404514e-16, 8.091417906880736e-16, 6.85043186034988e-16, 5.509334829488918e-16, 1.2384661926259196e-15, 7.291868304278502e-16, 1.4755281174388058e-15, 1.0218180219960615e-15, 1.6296124025483061e-15, 1.0733653281211128e-15, 3.0763241516539884e-15, 2.401550751514104e-15, 2.3413154308694908e-15, 2.1731475164896505e-15, 1.154396979671912e-15, 7.783669732347907e-16, 1.2256905774058513e-15, 1.518651804408819e-15, 5.468095313375317e-16, 9.649151859076572e-16, 2.4661549666768035e-15, 5.477463852608844e-16, 1.0262212814841762e-15, 2.8993676868482637e-15, 1.296811648058848e-15, 2.08935019488015e-15, 4.819606174941271e-15, 1.6303503375894398e-15, 2.5615498830740825e-15, 7.251476340885783e-15, 1.10399190064373e-14, 1.0999999999999943, 1.168306208737144e-14, 1.0833512513365962e-14, 5.1020263966466356e-15, 3.033641188078421e-15, 6.0007903904772e-15, 5.4869477081630484e-15, 6.847480204754781e-15, 3.383767022985445e-15, 6.322312353191281e-15, 3.788645171530135e-15, 2.114736209227582e-15, 8.293428920722444e-16, 1.344542929259142e-15, 1.5564583420769258e-15, 1.0380125083673372e-15, 1.0130444038687807e-15, 2.5443568686367387e-15, 1.0511263537501945e-15, 2.2624599204719803e-15, 4.851894714843854e-16, 1.2013339014320563e-15, 1.2714572611029418e-15, 1.2414551131856581e-15, 1.304773128911192e-15, 5.498979413403819e-16, 1.0435846901793586e-15, 6.15454157808653e-16, 2.4625836850992974e-16, 9.203439971852166e-16, 5.361334947856837e-16, 1.5438311665022408e-16, 2.429776490006381e-16, 1.4078961810236876e-15, 1.87179866521428e-15, 1.3882560101389718e-15, 2.4116800094720333e-15, 4.006637567614901e-15, 3.4351004586565e-15, 1.2719953561678534e-15, 1.1100810040677781e-15, 9.929468360307042e-16, 8.199909042285146e-16, 1.3260945863828881e-15, 5.670294934285402e-16, 1.2489671549961614e-15, 5.735925604405621e-16, 3.7586720533651607e-16, 1.8269850049675487e-16, 2.1125040188009975e-16, 1.8171621830312388e-15, 1.6488063831096533e-15, 1.760468285103516e-15, 2.355654914692403e-15, 1.7106879260180997e-15, 1.144574256209575e-15, 3.265210234363008e-15, 3.948340901422545e-15, 6.8107953620048405e-15, 8.358495612794913e-15, 4.656639325836776e-15, 2.608426080689661e-15, 1.8815496682158846e-15, 2.5841526123476255e-15, 5.664865490116109e-16, 1.642049504139695e-15, 3.0993175608621667e-15, 1.6845506087122146e-15, 2.826632055224872e-15, 1.3281064566695768e-15, 5.380306362904974e-16, 1.0486767992018113e-15, 1.7465431366788938e-15, 1.3786651860759e-15, 1.6416907784176572e-15, 6.845203722607437e-16, 2.0455351212134773e-15, 3.1965206750726487e-16, 8.066771602463824e-16, 1.0960847569048766e-15, 4.253968062409178e-16, 1.3321764390905137e-15, 1.1106334029565127e-15, 8.63417650073111e-16, 2.690209396432431e-16, 1.9811277693400314e-16, 9.499471767972743e-16, 1.1742042272050359e-15, 1.1328627323191826e-15, 6.384853572885775e-16, 5.786120327049814e-16, 1.903555404346196e-15, 1.8568944473815175e-15, 3.1536776138383456e-15, 1.8045922334030095e-15, 5.797002994765368e-16, 4.682302960539355e-16, 9.709807289145942e-16, 9.395330646820995e-16, 2.2419056740818446e-15, 4.957542503738947e-16, 7.19750229310024e-16, 2.1796888711691557e-15, 9.836053062715642e-16, 1.1758936239422376e-16, 1.7391695968414432e-15, 1.2706274724881868e-15, 7.025493884939264e-16, 2.1709946879601593e-15, 2.1985626456429215e-15, 2.773442068627554e-15, 3.3408346376725793e-15, 3.130121014200957e-15, 5.3088410860640096e-15, 3.157107598455604e-15, 3.5170779656738307e-15, 4.067000494912761e-15, 6.416130061862244e-15, 5.181932618271355e-15, 7.77674612481032e-15, 2.6367456913686253e-14, 0.7400000000000057, 2.436316019656023e-14, 1.1099383080829028e-14, 6.1208368231398495e-15, 9.293718336757217e-15, 7.621298037917721e-15, 1.4039977372090578e-15, 2.352813721322465e-15, 1.883979910690747e-15, 2.723689458785734e-15, 3.614154450728045e-15, 1.7745492994670252e-15, 1.5778027880295748e-15, 2.24206097927612e-15, 1.2837802562921911e-15, 1.821769800595445e-15, 1.513488156773675e-15, 1.965732137833738e-16, 1.8038683074798866e-15, 2.9893496734742957e-16, 6.862888224313134e-16, 1.6584451703934584e-15, 1.6641600093135472e-15, 6.237013858586216e-16, 1.9638195631962945e-15, 1.88445978998178e-15, 2.498205596134476e-15, 1.0863901995351289e-15, 1.5121612385957216e-15, 7.932713070662439e-16, 7.975649066881927e-16, 7.817460991104861e-16, 5.97702455792219e-16, 3.657196079137568e-16, 7.004598145622415e-16, 1.0682148489480691e-15, 1.039650938198021e-15, 9.781988607108834e-16, 6.66528088360941e-16, 9.742228641526774e-16, 1.2697756055756909e-15, 9.767742759868203e-16, 6.548680874807642e-16, 1.6454318942786284e-15, 1.3826856625655798e-15, 1.7744725674615369e-15, 1.8348330511324742e-15, 2.056488819810119e-15, 1.3008460594432815e-15, 1.735713027562061e-15, 6.8905918037893e-16, 1.0398570383909287e-15, 3.0473399975299632e-15, 1.6622528984951025e-15, 0.2500000000000004, 5.644244701988153e-15, 3.61862990446457e-15, 8.560050651805938e-15, 1.697362072984155e-14, 1.7396792530699624e-14, 1.0302338459748728e-14, 1.5308074445619002e-15, 7.519995369121597e-15, 9.2614059359987e-15, 4.9551169460337254e-15, 2.036673124366514e-15, 1.1512955269201977e-15, 8.465568945636544e-16, 1.548285012229356e-15, 4.517567395626791e-16, 7.538613367982659e-17, 6.361968504873686e-16, 8.904902021257129e-16, 4.3987873255880173e-16, 7.159037992437451e-16, 3.091976541134187e-16, 1.3945781616579258e-16, 2.7913394421753803e-16, 1.0619540320049218e-15, 1.3128843248360883e-15, 2.256449784642251e-15, 1.4831073820004856e-15, 2.197247793932625e-15, 2.9888057079753855e-15, 3.049076273881962e-15, 2.95384854087172e-15, 9.344894481320423e-16, 1.2582996727135614e-15, 1.1438596804516429e-15, 6.513325632860228e-16, 6.702454288166943e-16, 1.7636621816161704e-15, 8.000165861772562e-16, 1.4643953026815354e-15, 6.500510490978856e-16, 9.575713229887102e-16, 1.5987831002066979e-15, 3.0198690297776127e-15, 1.2846425249225956e-15, 1.7362264160887597e-15, 1.7024813512729089e-15, 1.073544833252079e-15, 2.7287052446818088e-15, 1.3581869223396566e-15, 2.952893994208046e-15, 1.921268728707745e-15, 3.2747983891191476e-16, 3.488046811421351e-15, 6.337276449937689e-15, 5.457348324212076e-16, 4.987520645696538e-15, 1.7349679121770556e-15, 1.5646584424240224e-15, 9.366020773593146e-16, 1.2781931735671556e-15, 4.904131568515317e-16, 1.9916426939692894e-15, 2.6348172774275764e-15, 1.5366792213248965e-15, 2.3194622557529287e-15, 2.972136383119329e-15, 4.437116893626174e-15, 2.005877108196126e-15, 9.278808835913962e-16, 2.9199985122999517e-16, 1.0084381265904245e-15, 7.523610775559581e-16, 7.528034916902623e-16, 1.464686009949458e-16, 3.706032680384128e-16, 1.555759449819299e-16, 5.142695432215862e-16, 9.053408006741297e-16, 4.743747832278522e-16, 5.634485569035154e-16, 1.2147732964026377e-15, 7.379998458815502e-16, 2.0231572491531945e-15, 2.2521890032009193e-15, 1.6063077907972692e-15, 1.3066703687184662e-15, 7.865676704960379e-16, 8.043440101926523e-16, 6.0734782059945175e-16, 8.814265892902557e-16, 1.8824118983620287e-15, 1.6023604316574922e-15, 1.2914350125329324e-15, 6.5305109739954885e-16, 1.1199920789914197e-15, 1.0521528923776938e-15, 8.348333656215649e-16, 5.173994726543133e-16, 6.76505593329481e-16, 1.3047170053432207e-15, 2.0668576806562063e-15, 8.920243191237655e-16, 1.5443568646024239e-15, 1.7584968406099595e-15, 1.774211734951837e-15, 2.2065000348824844e-15, 4.350349591578532e-16, 1.1505737445713279e-15, 2.5337509877561392e-15, 1.1538691193030594e-15, 2.655334773204892e-15, 2.4570333655454514e-15, 1.468383798097271e-15, 2.2123705435632654e-15, 5.206272852265516e-16, 6.84327122987565e-16, 1.2923426083112974e-15, 2.3854242755725402e-17, 3.2386902058877645e-15, 4.868381571262562e-15, 9.309479332430488e-15, 5.821450861449728e-15, 2.748038711912787e-15, 4.73855389087256e-15, 6.925640940737469e-15, 5.5839550549465005e-15, 1.7989364319560566e-15, 1.30997105779942e-15, 2.5250216141816198e-15, 4.782305017390473e-16, 2.06105557070108e-15, 1.6570456450651914e-15, 6.087243417848506e-16, 1.9235811680245382e-15, 1.9024084381339692e-15, 1.3047532136027204e-15, 5.7191199828181225e-15, 9.8621903403971e-15, 9.229333042935371e-15, 5.754716208071058e-15, 2.064978972948033e-15, 1.727450195003993e-16, 1.5602112592176266e-15, 1.4549345539536605e-15, 1.7808797775785172e-15, 1.7625428628238681e-15, 1.3572589153993152e-15, 1.78635471732579e-15, 4.602742591072585e-16, 9.30045047871558e-16, 1.034565839472708e-15, 1.0661462603182003e-15, 5.238421421265438e-16, 4.3576684315071593e-16, 1.2392284999896218e-15, 2.1687058200962415e-16, 9.033997876577417e-16, 1.9591042361414847e-15, 1.2908345457813246e-15, 5.176353404058253e-16, 7.04097774223119e-16, 1.0110156136630257e-15, 1.3646232292532166e-15, 9.75098982738159e-16, 2.3859007576310833e-15, 3.555544866119057e-15, 2.97101173648835e-15, 3.746981011747309e-15, 3.2088800882195443e-15, 2.1680370886837514e-15, 1.5445505979782997e-15, 8.311951703589325e-16, 9.252350996304225e-16, 7.033701456916444e-16, 1.8173794086911224e-15, 1.705145816353914e-15, 2.03926445924323e-15, 1.7141499541626199e-15, 1.3940155317140777e-15, 1.2297858881892652e-15, 9.27933974516122e-16, 6.498827071214687e-16, 1.1673707227260831e-15, 1.2726865600838482e-15, 2.6001699382874305e-15, 1.6198972511633502e-15, 2.0367922503559412e-15, 2.033618277498938e-15, 7.951671691436902e-16, 2.363991845832527e-15, 1.085094228189258e-15, 9.606893610241731e-16, 2.3072399224621185e-15, 2.877808189093631e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-500, -500], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.600675313464308e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-499, -499], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.877808189093631e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-498, -498], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.3072399224621185e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-497, -497], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.606893610241731e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-496, -496], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.085094228189258e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-495, -495], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.363991845832527e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-494, -494], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.951671691436902e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-493, -493], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.033618277498938e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-492, -492], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.0367922503559412e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-491, -491], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6198972511633502e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-490, -490], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.6001699382874305e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-489, -489], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2726865600838482e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-488, -488], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.1673707227260831e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-487, -487], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.498827071214687e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-486, -486], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.27933974516122e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-485, -485], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2297858881892652e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-484, -484], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3940155317140777e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-483, -483], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7141499541626199e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-482, -482], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.03926445924323e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-481, -481], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.705145816353914e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-480, -480], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.8173794086911224e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-479, -479], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.033701456916444e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-478, -478], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.252350996304225e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-477, -477], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.311951703589325e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-476, -476], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.5445505979782997e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-475, -475], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.1680370886837514e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-474, -474], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.2088800882195443e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-473, -473], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.746981011747309e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-472, -472], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.97101173648835e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-471, -471], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.555544866119057e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-470, -470], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.3859007576310833e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-469, -469], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.75098982738159e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-468, -468], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3646232292532166e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-467, -467], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0110156136630257e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-466, -466], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.04097774223119e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-465, -465], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.176353404058253e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-464, -464], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2908345457813246e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-463, -463], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.9591042361414847e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-462, -462], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.033997876577417e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-461, -461], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.1687058200962415e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-460, -460], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2392284999896218e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-459, -459], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.3576684315071593e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-458, -458], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.238421421265438e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-457, -457], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0661462603182003e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-456, -456], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.034565839472708e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-455, -455], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.30045047871558e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-454, -454], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.602742591072585e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-453, -453], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.78635471732579e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-452, -452], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3572589153993152e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-451, -451], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7625428628238681e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-450, -450], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7808797775785172e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-449, -449], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4549345539536605e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-448, -448], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.5602112592176266e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-447, -447], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.727450195003993e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-446, -446], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.064978972948033e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-445, -445], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.754716208071058e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-444, -444], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.229333042935371e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-443, -443], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.8621903403971e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-442, -442], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.7191199828181225e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-441, -441], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3047532136027204e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-440, -440], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.9024084381339692e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-439, -439], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.9235811680245382e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-438, -438], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.087243417848506e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-437, -437], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6570456450651914e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-436, -436], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.06105557070108e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-435, -435], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.782305017390473e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-434, -434], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.5250216141816198e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-433, -433], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.30997105779942e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-432, -432], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7989364319560566e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-431, -431], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.5839550549465005e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-430, -430], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.925640940737469e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-429, -429], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.73855389087256e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-428, -428], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.748038711912787e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-427, -427], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.821450861449728e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-426, -426], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.309479332430488e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-425, -425], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.868381571262562e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-424, -424], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.2386902058877645e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-423, -423], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.3854242755725402e-17], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-422, -422], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2923426083112974e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-421, -421], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.84327122987565e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-420, -420], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.206272852265516e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-419, -419], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.2123705435632654e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-418, -418], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.468383798097271e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-417, -417], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.4570333655454514e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-416, -416], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.655334773204892e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-415, -415], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.1538691193030594e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-414, -414], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.5337509877561392e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-413, -413], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.1505737445713279e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-412, -412], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.350349591578532e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-411, -411], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.2065000348824844e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-410, -410], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.774211734951837e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-409, -409], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7584968406099595e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-408, -408], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.5443568646024239e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-407, -407], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.920243191237655e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-406, -406], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.0668576806562063e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-405, -405], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3047170053432207e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-404, -404], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.76505593329481e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-403, -403], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.173994726543133e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-402, -402], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.348333656215649e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-401, -401], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0521528923776938e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-400, -400], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.1199920789914197e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-399, -399], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.5305109739954885e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-398, -398], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2914350125329324e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-397, -397], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6023604316574922e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-396, -396], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.8824118983620287e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-395, -395], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.814265892902557e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-394, -394], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.0734782059945175e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-393, -393], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.043440101926523e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-392, -392], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.865676704960379e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-391, -391], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3066703687184662e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-390, -390], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6063077907972692e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-389, -389], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.2521890032009193e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-388, -388], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.0231572491531945e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-387, -387], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.379998458815502e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-386, -386], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2147732964026377e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-385, -385], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.634485569035154e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-384, -384], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.743747832278522e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-383, -383], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.053408006741297e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-382, -382], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.142695432215862e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-381, -381], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.555759449819299e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-380, -380], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.706032680384128e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-379, -379], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.464686009949458e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-378, -378], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.528034916902623e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-377, -377], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.523610775559581e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-376, -376], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0084381265904245e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-375, -375], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.9199985122999517e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-374, -374], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.278808835913962e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-373, -373], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.005877108196126e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-372, -372], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.437116893626174e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-371, -371], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.972136383119329e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-370, -370], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.3194622557529287e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-369, -369], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.5366792213248965e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-368, -368], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.6348172774275764e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-367, -367], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.9916426939692894e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-366, -366], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.904131568515317e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-365, -365], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2781931735671556e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-364, -364], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.366020773593146e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-363, -363], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.5646584424240224e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-362, -362], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7349679121770556e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-361, -361], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.987520645696538e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-360, -360], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.457348324212076e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-359, -359], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.337276449937689e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-358, -358], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.488046811421351e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-357, -357], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.2747983891191476e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-356, -356], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.921268728707745e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-355, -355], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.952893994208046e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-354, -354], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3581869223396566e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-353, -353], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.7287052446818088e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-352, -352], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.073544833252079e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-351, -351], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7024813512729089e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-350, -350], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7362264160887597e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-349, -349], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2846425249225956e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-348, -348], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.0198690297776127e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-347, -347], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.5987831002066979e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-346, -346], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.575713229887102e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-345, -345], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.500510490978856e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-344, -344], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4643953026815354e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-343, -343], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.000165861772562e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-342, -342], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7636621816161704e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-341, -341], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.702454288166943e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-340, -340], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.513325632860228e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-339, -339], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.1438596804516429e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-338, -338], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2582996727135614e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-337, -337], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.344894481320423e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-336, -336], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.95384854087172e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-335, -335], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.049076273881962e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-334, -334], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.9888057079753855e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-333, -333], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.197247793932625e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-332, -332], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4831073820004856e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-331, -331], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.256449784642251e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-330, -330], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3128843248360883e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-329, -329], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0619540320049218e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-328, -328], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.7913394421753803e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-327, -327], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3945781616579258e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-326, -326], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.091976541134187e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-325, -325], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.159037992437451e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-324, -324], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.3987873255880173e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-323, -323], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.904902021257129e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-322, -322], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.361968504873686e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-321, -321], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.538613367982659e-17], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-320, -320], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.517567395626791e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-319, -319], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.548285012229356e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-318, -318], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.465568945636544e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-317, -317], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.1512955269201977e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-316, -316], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.036673124366514e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-315, -315], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.9551169460337254e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-314, -314], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.2614059359987e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-313, -313], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.519995369121597e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-312, -312], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.5308074445619002e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-311, -311], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0302338459748728e-14], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-310, -310], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7396792530699624e-14], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-309, -309], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.697362072984155e-14], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-308, -308], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.560050651805938e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-307, -307], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.61862990446457e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-306, -306], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.644244701988153e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-305, -305], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0.2500000000000004], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-304, -304], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6622528984951025e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-303, -303], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.0473399975299632e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-302, -302], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0398570383909287e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-301, -301], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.8905918037893e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-300, -300], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.735713027562061e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-299, -299], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3008460594432815e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-298, -298], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.056488819810119e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-297, -297], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.8348330511324742e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-296, -296], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7744725674615369e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-295, -295], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3826856625655798e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-294, -294], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6454318942786284e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-293, -293], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.548680874807642e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-292, -292], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.767742759868203e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-291, -291], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2697756055756909e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-290, -290], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.742228641526774e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-289, -289], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.66528088360941e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-288, -288], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.781988607108834e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-287, -287], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.039650938198021e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-286, -286], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0682148489480691e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-285, -285], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.004598145622415e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-284, -284], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.657196079137568e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-283, -283], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.97702455792219e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-282, -282], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.817460991104861e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-281, -281], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.975649066881927e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-280, -280], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.932713070662439e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-279, -279], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.5121612385957216e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-278, -278], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0863901995351289e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-277, -277], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.498205596134476e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-276, -276], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.88445978998178e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-275, -275], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.9638195631962945e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-274, -274], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.237013858586216e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-273, -273], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6641600093135472e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-272, -272], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6584451703934584e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-271, -271], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.862888224313134e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-270, -270], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.9893496734742957e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-269, -269], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.8038683074798866e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-268, -268], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.965732137833738e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-267, -267], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.513488156773675e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-266, -266], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.821769800595445e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-265, -265], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2837802562921911e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-264, -264], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.24206097927612e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-263, -263], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.5778027880295748e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-262, -262], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7745492994670252e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-261, -261], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.614154450728045e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-260, -260], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.723689458785734e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-259, -259], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.883979910690747e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-258, -258], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.352813721322465e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-257, -257], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4039977372090578e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-256, -256], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.621298037917721e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-255, -255], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.293718336757217e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-254, -254], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.1208368231398495e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-253, -253], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.1099383080829028e-14], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-252, -252], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.436316019656023e-14], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-251, -251], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0.7400000000000057], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-250, -250], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.6367456913686253e-14], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-249, -249], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.77674612481032e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-248, -248], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.181932618271355e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-247, -247], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.416130061862244e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-246, -246], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.067000494912761e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-245, -245], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.5170779656738307e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-244, -244], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.157107598455604e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-243, -243], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.3088410860640096e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-242, -242], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.130121014200957e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-241, -241], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.3408346376725793e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-240, -240], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.773442068627554e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-239, -239], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.1985626456429215e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-238, -238], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.1709946879601593e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-237, -237], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.025493884939264e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-236, -236], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2706274724881868e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-235, -235], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7391695968414432e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-234, -234], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.1758936239422376e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-233, -233], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.836053062715642e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-232, -232], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.1796888711691557e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-231, -231], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.19750229310024e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-230, -230], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.957542503738947e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-229, -229], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.2419056740818446e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-228, -228], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.395330646820995e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-227, -227], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.709807289145942e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-226, -226], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.682302960539355e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-225, -225], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.797002994765368e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-224, -224], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.8045922334030095e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-223, -223], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.1536776138383456e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-222, -222], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.8568944473815175e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-221, -221], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.903555404346196e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-220, -220], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.786120327049814e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-219, -219], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.384853572885775e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-218, -218], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.1328627323191826e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-217, -217], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.1742042272050359e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-216, -216], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.499471767972743e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-215, -215], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.9811277693400314e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-214, -214], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.690209396432431e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-213, -213], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.63417650073111e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-212, -212], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.1106334029565127e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-211, -211], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3321764390905137e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-210, -210], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.253968062409178e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-209, -209], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0960847569048766e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-208, -208], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.066771602463824e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-207, -207], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.1965206750726487e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-206, -206], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.0455351212134773e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-205, -205], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.845203722607437e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-204, -204], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6416907784176572e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-203, -203], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3786651860759e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-202, -202], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7465431366788938e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-201, -201], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0486767992018113e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-200, -200], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.380306362904974e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-199, -199], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3281064566695768e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-198, -198], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.826632055224872e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-197, -197], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6845506087122146e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-196, -196], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.0993175608621667e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-195, -195], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.642049504139695e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-194, -194], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.664865490116109e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-193, -193], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.5841526123476255e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-192, -192], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.8815496682158846e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-191, -191], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.608426080689661e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-190, -190], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.656639325836776e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-189, -189], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.358495612794913e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-188, -188], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.8107953620048405e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-187, -187], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.948340901422545e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-186, -186], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.265210234363008e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-185, -185], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.144574256209575e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-184, -184], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7106879260180997e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-183, -183], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.355654914692403e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-182, -182], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.760468285103516e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-181, -181], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6488063831096533e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-180, -180], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.8171621830312388e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-179, -179], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.1125040188009975e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-178, -178], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.8269850049675487e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-177, -177], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.7586720533651607e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-176, -176], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.735925604405621e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-175, -175], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2489671549961614e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-174, -174], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.670294934285402e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-173, -173], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3260945863828881e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-172, -172], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.199909042285146e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-171, -171], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.929468360307042e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-170, -170], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.1100810040677781e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-169, -169], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2719953561678534e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-168, -168], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.4351004586565e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-167, -167], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.006637567614901e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-166, -166], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.4116800094720333e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-165, -165], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3882560101389718e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-164, -164], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.87179866521428e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-163, -163], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4078961810236876e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-162, -162], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.429776490006381e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-161, -161], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.5438311665022408e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-160, -160], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.361334947856837e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-159, -159], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.203439971852166e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-158, -158], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.4625836850992974e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-157, -157], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.15454157808653e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-156, -156], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0435846901793586e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-155, -155], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.498979413403819e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-154, -154], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.304773128911192e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-153, -153], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2414551131856581e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-152, -152], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2714572611029418e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-151, -151], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2013339014320563e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-150, -150], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.851894714843854e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-149, -149], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.2624599204719803e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-148, -148], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0511263537501945e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-147, -147], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.5443568686367387e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-146, -146], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0130444038687807e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-145, -145], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0380125083673372e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-144, -144], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.5564583420769258e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-143, -143], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.344542929259142e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-142, -142], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.293428920722444e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-141, -141], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.114736209227582e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-140, -140], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.788645171530135e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-139, -139], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.322312353191281e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-138, -138], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.383767022985445e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-137, -137], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.847480204754781e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-136, -136], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.4869477081630484e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-135, -135], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.0007903904772e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-134, -134], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.033641188078421e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-133, -133], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.1020263966466356e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-132, -132], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0833512513365962e-14], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-131, -131], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.168306208737144e-14], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-130, -130], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0999999999999943], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-129, -129], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.10399190064373e-14], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-128, -128], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.251476340885783e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-127, -127], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.5615498830740825e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-126, -126], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6303503375894398e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-125, -125], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.819606174941271e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-124, -124], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.08935019488015e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-123, -123], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.296811648058848e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-122, -122], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.8993676868482637e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-121, -121], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0262212814841762e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-120, -120], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.477463852608844e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-119, -119], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.4661549666768035e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-118, -118], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.649151859076572e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-117, -117], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.468095313375317e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-116, -116], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.518651804408819e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-115, -115], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2256905774058513e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-114, -114], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.783669732347907e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-113, -113], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.154396979671912e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-112, -112], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.1731475164896505e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-111, -111], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.3413154308694908e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-110, -110], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.401550751514104e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-109, -109], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.0763241516539884e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-108, -108], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0733653281211128e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-107, -107], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6296124025483061e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-106, -106], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0218180219960615e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-105, -105], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4755281174388058e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-104, -104], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.291868304278502e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-103, -103], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2384661926259196e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-102, -102], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.509334829488918e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-101, -101], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.85043186034988e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-100, -100], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.091417906880736e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-99, -99], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.915931354404514e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-98, -98], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.28222406705562e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-97, -97], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.166561788158411e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-96, -96], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.810828876145761e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-95, -95], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.0848777724525532e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-94, -94], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.49797897879834e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-93, -93], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.2453451970752215e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-92, -92], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.4344880951423486e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-91, -91], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.922175259973916e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-90, -90], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.014900952011895e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-89, -89], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.801299755751879e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-88, -88], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.9615596488063398e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-87, -87], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4502024854675824e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-86, -86], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.5498154031726576e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-85, -85], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.9688102142068684e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-84, -84], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.0364715647720885e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-83, -83], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.412006396067016e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-82, -82], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4401476076005636e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-81, -81], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.181088017234766e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-80, -80], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.398267577842217e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-79, -79], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6056487008699613e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-78, -78], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.47188195867441e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-77, -77], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.342242336905377e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-76, -76], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.0590983449638238e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-75, -75], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.7495886732825477e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-74, -74], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3106197988707855e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-73, -73], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.342815450236537e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-72, -72], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2241385663486219e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-71, -71], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0404908178905997e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-70, -70], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0675069382419872e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-69, -69], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2440800952175496e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-68, -68], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.927224390008611e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-67, -67], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.424188818321308e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-66, -66], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.758717796530308e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-65, -65], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7739437636667887e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-64, -64], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6841191575268725e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-63, -63], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0392267393095423e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-62, -62], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.1079545334054635e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-61, -61], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.764561681964755e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-60, -60], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.921014372872128e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-59, -59], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3718581361200116e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-58, -58], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.9867966719986423e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-57, -57], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.397403300798037e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-56, -56], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.0319156762968364e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-55, -55], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.408566063707382e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-54, -54], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.699642717835121e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-53, -53], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.799122431080671e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-52, -52], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.744910870293277e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-51, -51], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.1972494884221683e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-50, -50], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0951850844734703e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-49, -49], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4118170028129187e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-48, -48], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.929696180966681e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-47, -47], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.9916511080055657e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-46, -46], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.137923033089489e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-45, -45], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4665345454031185e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-44, -44], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0.58], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-43, -43], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.917336239057843e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-42, -42], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.259049820796139e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-41, -41], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4712417653654545e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-40, -40], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.3273278123446705e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-39, -39], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3928393561008955e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-38, -38], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.97291237079185e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-37, -37], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3655088702633066e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-36, -36], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0922631508510744e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-35, -35], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.74986772242983e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-34, -34], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.522907013596314e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-33, -33], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6131671646214393e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-32, -32], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.952810354236317e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-31, -31], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.5756683084563417e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-30, -30], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.1726388370100134e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-29, -29], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.057486557859168e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-28, -28], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.824592354142342e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-27, -27], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.0934825164418778e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-26, -26], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.061291625082437e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-25, -25], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4961887764658124e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-24, -24], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7051065645369373e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-23, -23], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.018169310356076e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-22, -22], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.324389315441009e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-21, -21], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4991884867606885e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-20, -20], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.6125730408657398e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-19, -19], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.1402762715616442e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-18, -18], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.434965732180188e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-17, -17], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.6707685088477916e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-16, -16], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.865234563015886e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-15, -15], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4060301467110431e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-14, -14], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.5218935118473792e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-13, -13], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.5248484985416047e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-12, -12], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.069322467694252e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-11, -11], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.7544982869944786e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-10, -10], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.4986339668664053e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-9, -9], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.7933670005235907e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-8, -8], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4318947363935337e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-7, -7], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.528196799673458e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-6, -6], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.87399181670865e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-5, -5], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.434950443735796e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-4, -4], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.900876377264135e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-3, -3], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.468751941392122e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-2, -2], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.840259612289002e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-1, -1], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.5257051019545922e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [0, 0], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.496358592589786e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [1, 1], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.5257051019545922e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [2, 2], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.840259612289002e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [3, 3], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.468751941392122e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [4, 4], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.900876377264135e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [5, 5], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.434950443735796e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [6, 6], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.87399181670865e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [7, 7], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.528196799673458e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [8, 8], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4318947363935337e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [9, 9], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.7933670005235907e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [10, 10], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.4986339668664053e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [11, 11], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.7544982869944786e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [12, 12], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.069322467694252e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [13, 13], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.5248484985416047e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [14, 14], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.5218935118473792e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [15, 15], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4060301467110431e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [16, 16], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.865234563015886e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [17, 17], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.6707685088477916e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [18, 18], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.434965732180188e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [19, 19], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.1402762715616442e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [20, 20], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.6125730408657398e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [21, 21], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4991884867606885e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [22, 22], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.324389315441009e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [23, 23], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.018169310356076e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [24, 24], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7051065645369373e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [25, 25], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4961887764658124e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [26, 26], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.061291625082437e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [27, 27], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.0934825164418778e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [28, 28], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.824592354142342e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [29, 29], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.057486557859168e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [30, 30], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.1726388370100134e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [31, 31], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.5756683084563417e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [32, 32], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.952810354236317e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [33, 33], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6131671646214393e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [34, 34], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.522907013596314e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [35, 35], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.74986772242983e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [36, 36], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0922631508510744e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [37, 37], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3655088702633066e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [38, 38], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.97291237079185e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [39, 39], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3928393561008955e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [40, 40], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.3273278123446705e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [41, 41], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4712417653654545e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [42, 42], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.259049820796139e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [43, 43], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.917336239057843e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [44, 44], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0.58], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [45, 45], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4665345454031185e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [46, 46], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.137923033089489e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [47, 47], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.9916511080055657e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [48, 48], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.929696180966681e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [49, 49], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4118170028129187e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [50, 50], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0951850844734703e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [51, 51], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.1972494884221683e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [52, 52], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.744910870293277e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [53, 53], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.799122431080671e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [54, 54], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.699642717835121e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [55, 55], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.408566063707382e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [56, 56], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.0319156762968364e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [57, 57], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.397403300798037e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [58, 58], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.9867966719986423e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [59, 59], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3718581361200116e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [60, 60], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.921014372872128e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [61, 61], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.764561681964755e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [62, 62], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.1079545334054635e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [63, 63], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0392267393095423e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [64, 64], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6841191575268725e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [65, 65], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7739437636667887e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [66, 66], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.758717796530308e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [67, 67], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.424188818321308e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [68, 68], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.927224390008611e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [69, 69], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2440800952175496e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [70, 70], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0675069382419872e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [71, 71], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0404908178905997e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [72, 72], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2241385663486219e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [73, 73], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.342815450236537e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [74, 74], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3106197988707855e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [75, 75], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.7495886732825477e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [76, 76], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.0590983449638238e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [77, 77], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.342242336905377e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [78, 78], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.47188195867441e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [79, 79], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6056487008699613e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [80, 80], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.398267577842217e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [81, 81], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.181088017234766e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [82, 82], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4401476076005636e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [83, 83], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.412006396067016e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [84, 84], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.0364715647720885e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [85, 85], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.9688102142068684e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [86, 86], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.5498154031726576e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [87, 87], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4502024854675824e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [88, 88], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.9615596488063398e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [89, 89], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.801299755751879e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [90, 90], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.014900952011895e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [91, 91], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.922175259973916e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [92, 92], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.4344880951423486e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [93, 93], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.2453451970752215e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [94, 94], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.49797897879834e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [95, 95], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.0848777724525532e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [96, 96], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.810828876145761e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [97, 97], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.166561788158411e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [98, 98], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.28222406705562e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [99, 99], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.915931354404514e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [100, 100], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.091417906880736e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [101, 101], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.85043186034988e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [102, 102], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.509334829488918e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [103, 103], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2384661926259196e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [104, 104], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.291868304278502e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [105, 105], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4755281174388058e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [106, 106], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0218180219960615e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [107, 107], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6296124025483061e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [108, 108], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0733653281211128e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [109, 109], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.0763241516539884e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [110, 110], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.401550751514104e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [111, 111], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.3413154308694908e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [112, 112], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.1731475164896505e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [113, 113], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.154396979671912e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [114, 114], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.783669732347907e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [115, 115], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2256905774058513e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [116, 116], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.518651804408819e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [117, 117], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.468095313375317e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [118, 118], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.649151859076572e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [119, 119], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.4661549666768035e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [120, 120], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.477463852608844e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [121, 121], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0262212814841762e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [122, 122], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.8993676868482637e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [123, 123], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.296811648058848e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [124, 124], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.08935019488015e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [125, 125], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.819606174941271e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [126, 126], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6303503375894398e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [127, 127], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.5615498830740825e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [128, 128], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.251476340885783e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [129, 129], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.10399190064373e-14], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [130, 130], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0999999999999943], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [131, 131], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.168306208737144e-14], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [132, 132], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0833512513365962e-14], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [133, 133], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.1020263966466356e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [134, 134], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.033641188078421e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [135, 135], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.0007903904772e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [136, 136], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.4869477081630484e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [137, 137], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.847480204754781e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [138, 138], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.383767022985445e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [139, 139], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.322312353191281e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [140, 140], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.788645171530135e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [141, 141], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.114736209227582e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [142, 142], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.293428920722444e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [143, 143], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.344542929259142e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [144, 144], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.5564583420769258e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [145, 145], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0380125083673372e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [146, 146], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0130444038687807e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [147, 147], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.5443568686367387e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [148, 148], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0511263537501945e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [149, 149], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.2624599204719803e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [150, 150], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.851894714843854e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [151, 151], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2013339014320563e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [152, 152], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2714572611029418e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [153, 153], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2414551131856581e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [154, 154], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.304773128911192e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [155, 155], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.498979413403819e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [156, 156], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0435846901793586e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [157, 157], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.15454157808653e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [158, 158], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.4625836850992974e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [159, 159], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.203439971852166e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [160, 160], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.361334947856837e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [161, 161], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.5438311665022408e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [162, 162], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.429776490006381e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [163, 163], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4078961810236876e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [164, 164], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.87179866521428e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [165, 165], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3882560101389718e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [166, 166], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.4116800094720333e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [167, 167], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.006637567614901e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [168, 168], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.4351004586565e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [169, 169], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2719953561678534e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [170, 170], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.1100810040677781e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [171, 171], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.929468360307042e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [172, 172], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.199909042285146e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [173, 173], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3260945863828881e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [174, 174], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.670294934285402e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [175, 175], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2489671549961614e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [176, 176], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.735925604405621e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [177, 177], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.7586720533651607e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [178, 178], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.8269850049675487e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [179, 179], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.1125040188009975e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [180, 180], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.8171621830312388e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [181, 181], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6488063831096533e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [182, 182], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.760468285103516e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [183, 183], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.355654914692403e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [184, 184], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7106879260180997e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [185, 185], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.144574256209575e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [186, 186], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.265210234363008e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [187, 187], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.948340901422545e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [188, 188], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.8107953620048405e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [189, 189], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.358495612794913e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [190, 190], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.656639325836776e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [191, 191], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.608426080689661e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [192, 192], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.8815496682158846e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [193, 193], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.5841526123476255e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [194, 194], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.664865490116109e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [195, 195], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.642049504139695e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [196, 196], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.0993175608621667e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [197, 197], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6845506087122146e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [198, 198], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.826632055224872e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [199, 199], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3281064566695768e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [200, 200], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.380306362904974e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [201, 201], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0486767992018113e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [202, 202], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7465431366788938e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [203, 203], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3786651860759e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [204, 204], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6416907784176572e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [205, 205], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.845203722607437e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [206, 206], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.0455351212134773e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [207, 207], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.1965206750726487e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [208, 208], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.066771602463824e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [209, 209], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0960847569048766e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [210, 210], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.253968062409178e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [211, 211], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3321764390905137e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [212, 212], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.1106334029565127e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [213, 213], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.63417650073111e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [214, 214], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.690209396432431e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [215, 215], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.9811277693400314e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [216, 216], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.499471767972743e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [217, 217], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.1742042272050359e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [218, 218], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.1328627323191826e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [219, 219], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.384853572885775e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [220, 220], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.786120327049814e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [221, 221], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.903555404346196e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [222, 222], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.8568944473815175e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [223, 223], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.1536776138383456e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [224, 224], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.8045922334030095e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [225, 225], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.797002994765368e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [226, 226], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.682302960539355e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [227, 227], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.709807289145942e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [228, 228], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.395330646820995e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [229, 229], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.2419056740818446e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [230, 230], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.957542503738947e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [231, 231], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.19750229310024e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [232, 232], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.1796888711691557e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [233, 233], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.836053062715642e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [234, 234], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.1758936239422376e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [235, 235], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7391695968414432e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [236, 236], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2706274724881868e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [237, 237], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.025493884939264e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [238, 238], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.1709946879601593e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [239, 239], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.1985626456429215e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [240, 240], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.773442068627554e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [241, 241], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.3408346376725793e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [242, 242], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.130121014200957e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [243, 243], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.3088410860640096e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [244, 244], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.157107598455604e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [245, 245], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.5170779656738307e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [246, 246], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.067000494912761e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [247, 247], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.416130061862244e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [248, 248], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.181932618271355e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [249, 249], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.77674612481032e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [250, 250], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.6367456913686253e-14], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [251, 251], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0.7400000000000057], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [252, 252], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.436316019656023e-14], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [253, 253], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.1099383080829028e-14], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [254, 254], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.1208368231398495e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [255, 255], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.293718336757217e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [256, 256], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.621298037917721e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [257, 257], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4039977372090578e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [258, 258], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.352813721322465e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [259, 259], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.883979910690747e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [260, 260], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.723689458785734e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [261, 261], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.614154450728045e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [262, 262], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7745492994670252e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [263, 263], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.5778027880295748e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [264, 264], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.24206097927612e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [265, 265], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2837802562921911e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [266, 266], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.821769800595445e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [267, 267], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.513488156773675e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [268, 268], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.965732137833738e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [269, 269], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.8038683074798866e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [270, 270], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.9893496734742957e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [271, 271], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.862888224313134e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [272, 272], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6584451703934584e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [273, 273], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6641600093135472e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [274, 274], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.237013858586216e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [275, 275], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.9638195631962945e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [276, 276], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.88445978998178e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [277, 277], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.498205596134476e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [278, 278], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0863901995351289e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [279, 279], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.5121612385957216e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [280, 280], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.932713070662439e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [281, 281], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.975649066881927e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [282, 282], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.817460991104861e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [283, 283], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.97702455792219e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [284, 284], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.657196079137568e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [285, 285], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.004598145622415e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [286, 286], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0682148489480691e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [287, 287], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.039650938198021e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [288, 288], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.781988607108834e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [289, 289], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.66528088360941e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [290, 290], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.742228641526774e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [291, 291], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2697756055756909e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [292, 292], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.767742759868203e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [293, 293], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.548680874807642e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [294, 294], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6454318942786284e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [295, 295], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3826856625655798e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [296, 296], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7744725674615369e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [297, 297], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.8348330511324742e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [298, 298], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.056488819810119e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [299, 299], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3008460594432815e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [300, 300], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.735713027562061e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [301, 301], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.8905918037893e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [302, 302], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0398570383909287e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [303, 303], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.0473399975299632e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [304, 304], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6622528984951025e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [305, 305], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0.2500000000000004], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [306, 306], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.644244701988153e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [307, 307], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.61862990446457e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [308, 308], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.560050651805938e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [309, 309], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.697362072984155e-14], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [310, 310], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7396792530699624e-14], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [311, 311], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0302338459748728e-14], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [312, 312], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.5308074445619002e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [313, 313], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.519995369121597e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [314, 314], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.2614059359987e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [315, 315], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.9551169460337254e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [316, 316], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.036673124366514e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [317, 317], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.1512955269201977e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [318, 318], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.465568945636544e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [319, 319], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.548285012229356e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [320, 320], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.517567395626791e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [321, 321], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.538613367982659e-17], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [322, 322], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.361968504873686e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [323, 323], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.904902021257129e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [324, 324], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.3987873255880173e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [325, 325], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.159037992437451e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [326, 326], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.091976541134187e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [327, 327], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3945781616579258e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [328, 328], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.7913394421753803e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [329, 329], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0619540320049218e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [330, 330], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3128843248360883e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [331, 331], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.256449784642251e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [332, 332], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4831073820004856e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [333, 333], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.197247793932625e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [334, 334], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.9888057079753855e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [335, 335], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.049076273881962e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [336, 336], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.95384854087172e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [337, 337], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.344894481320423e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [338, 338], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2582996727135614e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [339, 339], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.1438596804516429e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [340, 340], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.513325632860228e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [341, 341], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.702454288166943e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [342, 342], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7636621816161704e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [343, 343], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.000165861772562e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [344, 344], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4643953026815354e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [345, 345], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.500510490978856e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [346, 346], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.575713229887102e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [347, 347], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.5987831002066979e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [348, 348], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.0198690297776127e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [349, 349], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2846425249225956e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [350, 350], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7362264160887597e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [351, 351], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7024813512729089e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [352, 352], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.073544833252079e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [353, 353], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.7287052446818088e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [354, 354], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3581869223396566e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [355, 355], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.952893994208046e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [356, 356], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.921268728707745e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [357, 357], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.2747983891191476e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [358, 358], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.488046811421351e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [359, 359], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.337276449937689e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [360, 360], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.457348324212076e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [361, 361], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.987520645696538e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [362, 362], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7349679121770556e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [363, 363], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.5646584424240224e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [364, 364], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.366020773593146e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [365, 365], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2781931735671556e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [366, 366], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.904131568515317e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [367, 367], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.9916426939692894e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [368, 368], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.6348172774275764e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [369, 369], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.5366792213248965e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [370, 370], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.3194622557529287e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [371, 371], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.972136383119329e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [372, 372], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.437116893626174e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [373, 373], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.005877108196126e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [374, 374], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.278808835913962e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [375, 375], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.9199985122999517e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [376, 376], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0084381265904245e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [377, 377], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.523610775559581e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [378, 378], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.528034916902623e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [379, 379], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.464686009949458e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [380, 380], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.706032680384128e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [381, 381], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.555759449819299e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [382, 382], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.142695432215862e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [383, 383], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.053408006741297e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [384, 384], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.743747832278522e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [385, 385], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.634485569035154e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [386, 386], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2147732964026377e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [387, 387], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.379998458815502e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [388, 388], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.0231572491531945e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [389, 389], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.2521890032009193e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [390, 390], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6063077907972692e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [391, 391], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3066703687184662e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [392, 392], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.865676704960379e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [393, 393], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.043440101926523e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [394, 394], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.0734782059945175e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [395, 395], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.814265892902557e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [396, 396], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.8824118983620287e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [397, 397], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6023604316574922e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [398, 398], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2914350125329324e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [399, 399], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.5305109739954885e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [400, 400], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.1199920789914197e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [401, 401], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0521528923776938e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [402, 402], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.348333656215649e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [403, 403], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.173994726543133e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [404, 404], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.76505593329481e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [405, 405], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3047170053432207e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [406, 406], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.0668576806562063e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [407, 407], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.920243191237655e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [408, 408], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.5443568646024239e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [409, 409], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7584968406099595e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [410, 410], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.774211734951837e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [411, 411], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.2065000348824844e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [412, 412], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.350349591578532e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [413, 413], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.1505737445713279e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [414, 414], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.5337509877561392e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [415, 415], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.1538691193030594e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [416, 416], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.655334773204892e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [417, 417], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.4570333655454514e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [418, 418], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.468383798097271e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [419, 419], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.2123705435632654e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [420, 420], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.206272852265516e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [421, 421], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.84327122987565e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [422, 422], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2923426083112974e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [423, 423], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.3854242755725402e-17], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [424, 424], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.2386902058877645e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [425, 425], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.868381571262562e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [426, 426], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.309479332430488e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [427, 427], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.821450861449728e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [428, 428], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.748038711912787e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [429, 429], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.73855389087256e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [430, 430], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.925640940737469e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [431, 431], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.5839550549465005e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [432, 432], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7989364319560566e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [433, 433], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.30997105779942e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [434, 434], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.5250216141816198e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [435, 435], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.782305017390473e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [436, 436], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.06105557070108e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [437, 437], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6570456450651914e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [438, 438], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.087243417848506e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [439, 439], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.9235811680245382e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [440, 440], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.9024084381339692e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [441, 441], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3047532136027204e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [442, 442], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.7191199828181225e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [443, 443], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.8621903403971e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [444, 444], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.229333042935371e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [445, 445], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.754716208071058e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [446, 446], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.064978972948033e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [447, 447], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.727450195003993e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [448, 448], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.5602112592176266e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [449, 449], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4549345539536605e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [450, 450], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7808797775785172e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [451, 451], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7625428628238681e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [452, 452], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3572589153993152e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [453, 453], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.78635471732579e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [454, 454], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.602742591072585e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [455, 455], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.30045047871558e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [456, 456], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.034565839472708e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [457, 457], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0661462603182003e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [458, 458], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.238421421265438e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [459, 459], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.3576684315071593e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [460, 460], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2392284999896218e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [461, 461], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.1687058200962415e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [462, 462], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.033997876577417e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [463, 463], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.9591042361414847e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [464, 464], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2908345457813246e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [465, 465], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.176353404058253e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [466, 466], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.04097774223119e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [467, 467], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0110156136630257e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [468, 468], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3646232292532166e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [469, 469], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.75098982738159e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [470, 470], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.3859007576310833e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [471, 471], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.555544866119057e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [472, 472], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.97101173648835e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [473, 473], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.746981011747309e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [474, 474], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.2088800882195443e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [475, 475], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.1680370886837514e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [476, 476], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.5445505979782997e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [477, 477], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.311951703589325e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [478, 478], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.252350996304225e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [479, 479], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.033701456916444e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [480, 480], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.8173794086911224e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [481, 481], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.705145816353914e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [482, 482], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.03926445924323e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [483, 483], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7141499541626199e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [484, 484], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3940155317140777e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [485, 485], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2297858881892652e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [486, 486], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.27933974516122e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [487, 487], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.498827071214687e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [488, 488], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.1673707227260831e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [489, 489], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2726865600838482e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [490, 490], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.6001699382874305e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [491, 491], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6198972511633502e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [492, 492], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.0367922503559412e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [493, 493], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.033618277498938e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [494, 494], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.951671691436902e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [495, 495], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.363991845832527e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [496, 496], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.085094228189258e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [497, 497], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.606893610241731e-16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [498, 498], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.3072399224621185e-15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [499, 499], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.877808189093631e-15], "type": "scatter"}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [0, 100, 200, 300, 400, 500], "range": [0, 500], "domain": [0.09128390201224845, 0.9934383202099738], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["0", "100", "200", "300", "400", "500"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Частота (Гц)", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [{"yanchor": "top", "xanchor": "center", "rotation": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "paper", "showarrow": false, "text": "Амплитудный спектр тестового сигнала", "xref": "paper", "x": 0.5423611111111111}], "height": 400, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [0, 0.25, 0.5, 0.75, 1], "range": [-0.03299999999999981, 1.1329999999999942], "domain": [0.07581474190726165, 0.9415463692038496], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["0.00", "0.25", "0.50", "0.75", "1.00"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Амплитуда", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "legend": {"yanchor": "auto", "xanchor": "auto", "bordercolor": "rgba(0, 0, 0, 1)", "bgcolor": "rgba(255, 255, 255, 1.000)", "borderwidth": 1, "tracegroupgap": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}, "text": ""}, "traceorder": "normal", "x": 1}, "width": 827.5}}
{"id": "5454d7c0_fa28_4598_b74d_66395d75a00a", "data": [{"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-500, -500], "showlegend": true, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 180], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-499, -499], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -135.90967935414673], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-498, -498], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -74.42585486195328], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-497, -497], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -35.75571310672556], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-496, -496], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 35.818677556888524], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-495, -495], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -103.78863846229322], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-494, -494], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -95.22529068089564], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-493, -493], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 46.271600342280045], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-492, -492], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -29.27718759510051], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-491, -491], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 61.822686577716226], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-490, -490], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -149.63434222407142], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-489, -489], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 24.895294136838537], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-488, -488], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 62.25309368203434], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-487, -487], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -58.36434038754637], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-486, -486], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 41.853437724945465], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-485, -485], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 68.34441052544551], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-484, -484], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 110.59000161889614], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-483, -483], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 152.18578903537144], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-482, -482], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 178.54034302141014], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-481, -481], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -109.38338654278785], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-480, -480], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -56.14539564079233], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-479, -479], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 47.044341625256735], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-478, -478], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 42.115579832990115], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-477, -477], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -44.4600363611959], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-476, -476], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -172.47978600587606], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-475, -475], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 85.6246283614048], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-474, -474], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -1.6225779350166518], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-473, -473], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 126.71254425851568], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-472, -472], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -142.5791575058834], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-471, -471], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 169.39932201777808], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-470, -470], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -5.27864402099234], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-469, -469], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -110.48687781865287], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-468, -468], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -151.1787304845041], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-467, -467], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -171.0570653618254], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-466, -466], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -115.48136954692578], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-465, -465], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0.7289919438470727], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-464, -464], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -137.66868676270684], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-463, -463], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -42.63525308352851], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-462, -462], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -24.686335540664153], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-461, -461], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -175.20388146375873], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-460, -460], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 74.0927927355614], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-459, -459], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -59.182881160939374], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-458, -458], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 31.39931104111576], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-457, -457], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 167.94406841933784], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-456, -456], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 159.07549825507886], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-455, -455], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -128.43314029068037], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-454, -454], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 100.44543179717333], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-453, -453], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -77.98895346012027], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-452, -452], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 64.05434779877898], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-451, -451], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 145.34779447076156], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-450, -450], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -80.52613058914072], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-449, -449], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 81.89108054666528], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-448, -448], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 149.42429337213892], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-447, -447], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 127.58337637166228], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-446, -446], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 136.7223312615956], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-445, -445], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 170.76313306666248], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-444, -444], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -128.62570044086752], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-443, -443], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -62.23979420661166], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-442, -442], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.611881075953294], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-441, -441], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 51.4950570273432], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-440, -440], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -39.46631468086836], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-439, -439], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -2.6732701470003324], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-438, -438], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 77.95543180629785], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-437, -437], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -48.05750100275746], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-436, -436], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 30.433060202472188], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-435, -435], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 173.54130627835556], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-434, -434], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -39.52917281705729], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-433, -433], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 53.374428492926086], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-432, -432], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -92.33724233573955], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-431, -431], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -10.598543645037262], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-430, -430], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 51.00493018952935], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-429, -429], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 126.77257441833521], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-428, -428], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -13.713252577688959], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-427, -427], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 77.83206810562207], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-426, -426], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 134.9449507899528], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-425, -425], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -130.20797555430408], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-424, -424], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -136.03023862888287], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-423, -423], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -136.4751854357861], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-422, -422], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -149.25971115663495], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-421, -421], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 149.71044372886223], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-420, -420], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 38.70828511230159], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-419, -419], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -150.07072595256577], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-418, -418], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -130.7115976496189], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-417, -417], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -91.88339908177169], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-416, -416], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 31.565444808561885], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-415, -415], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -160.9387504186102], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-414, -414], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -71.6387242940985], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-413, -413], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 96.625349984316], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-412, -412], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -117.2345539634532], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-411, -411], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -57.58763989221937], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-410, -410], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 43.773517147978424], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-409, -409], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 153.7305040516396], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-408, -408], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -131.17804198171288], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-407, -407], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -79.5649842864099], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-406, -406], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -40.57852887973951], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-405, -405], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0.46641870236400207], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-404, -404], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 109.09958562240888], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-403, -403], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -70.8072154043885], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-402, -402], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.498504091631266], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-401, -401], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 144.74274746783374], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-400, -400], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -50.17842430593812], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-399, -399], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 38.211796037185565], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-398, -398], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -141.33374983186908], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-397, -397], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -28.482825149036145], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-396, -396], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 36.350825334039364], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-395, -395], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 124.99205712140048], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-394, -394], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 30.591349044469716], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-393, -393], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -40.51457915339244], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-392, -392], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -60.083232755238775], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-391, -391], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 67.61688368385761], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-390, -390], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 70.90166826903805], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-389, -389], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 169.26128828351693], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-388, -388], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -108.54100874942843], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-387, -387], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 51.10207975810141], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-386, -386], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 35.80923549385979], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-385, -385], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 12.181672806566842], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-384, -384], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 158.95613774870316], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-383, -383], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -71.34529862827286], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-382, -382], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 130.73006791175328], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-381, -381], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 172.5789423339925], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-380, -380], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -0.5848961513807777], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-379, -379], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -79.50766999182834], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-378, -378], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.758025400651186], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-377, -377], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 58.11090347669092], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-376, -376], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -149.64291147951542], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-375, -375], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -162.1932880832569], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-374, -374], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -38.23892209867497], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-373, -373], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -38.68904027439372], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-372, -372], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 43.51346492398824], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-371, -371], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -128.14969061042814], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-370, -370], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 107.10272896905238], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-369, -369], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0.20142278825397236], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-368, -368], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 35.986522839681], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-367, -367], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 145.95943481168868], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-366, -366], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -25.755902102099448], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-365, -365], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 53.293427241203354], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-364, -364], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 116.09055393058601], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-363, -363], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 135.27590782070968], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-362, -362], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -56.451164418532414], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-361, -361], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 75.4201603485546], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-360, -360], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -3.115775523894812], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-359, -359], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 138.1215059790455], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-358, -358], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -106.61289704781898], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-357, -357], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.532425117541013], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-356, -356], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 138.50652453842025], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-355, -355], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -41.290526856923385], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-354, -354], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -138.85927660649182], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-353, -353], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 120.75862148922911], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-352, -352], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -155.05156145760446], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-351, -351], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 61.87391706407351], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-350, -350], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -177.868297995326], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-349, -349], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -56.5081174516335], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-348, -348], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 116.67342675068635], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-347, -347], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -142.65901042668688], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-346, -346], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -72.29983927542035], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-345, -345], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 144.62065001601715], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-344, -344], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -144.74562581433048], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-343, -343], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 17.4329955475684], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-342, -342], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 146.80893715181148], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-341, -341], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -150.4440740483525], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-340, -340], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 29.121503894018755], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-339, -339], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 163.06284571277578], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-338, -338], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -134.81971941024702], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-337, -337], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 62.42460514475273], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-336, -336], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 171.21213568017802], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-335, -335], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -135.42235303488786], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-334, -334], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -87.6987980248343], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-333, -333], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -17.096836129744947], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-332, -332], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 57.08440975420919], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-331, -331], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -137.22701028819117], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-330, -330], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -66.25064247958511], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-329, -329], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 39.3196309591047], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-328, -328], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 39.46093796009714], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-327, -327], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -129.8365301035744], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-326, -326], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.25188358874601], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-325, -325], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 82.70416536182442], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-324, -324], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -73.9215430250668], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-323, -323], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 26.24414686631413], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-322, -322], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 101.18831449999314], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-321, -321], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 19.354837921186373], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-320, -320], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 27.175617643124703], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-319, -319], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 147.72079426394677], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-318, -318], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 50.040403916989554], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-317, -317], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 91.0755052873505], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-316, -316], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -8.645776526445852], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-315, -315], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 55.70744497556953], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-314, -314], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 120.22783470657382], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-313, -313], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 177.90866127312268], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-312, -312], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -122.15132364749459], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-311, -311], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 144.47498983064582], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-310, -310], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -145.5776824153258], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-309, -309], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -77.22875919706543], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-308, -308], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -20.805743884170337], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-307, -307], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 133.31279971493095], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-306, -306], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -31.35302385093816], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-305, -305], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -59.99999999999981], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-304, -304], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 22.53009768113454], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-303, -303], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -55.327929228492195], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-302, -302], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 100.2054581341199], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-301, -301], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -134.88997876289193], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-300, -300], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -1.7030356791355892], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-299, -299], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 155.27688001784256], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-298, -298], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -140.60176656750826], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-297, -297], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -69.26529896708975], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-296, -296], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -34.055996965995476], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-295, -295], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -9.649166698609047], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-294, -294], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 95.97964828538998], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-293, -293], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 145.44285974694526], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-292, -292], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -50.21628916122534], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-291, -291], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -89.0648872082877], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-290, -290], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -120.24155920800133], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-289, -289], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 12.645093104153874], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-288, -288], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -55.37161174345585], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-287, -287], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -97.02257851659506], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-286, -286], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 18.426153662739004], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-285, -285], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.391848920976079], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-284, -284], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -119.78366136801132], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-283, -283], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -14.413671535478676], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-282, -282], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -154.14115742247125], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-281, -281], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -55.71237902347236], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-280, -280], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 68.56263291826853], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-279, -279], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -156.10325608492997], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-278, -278], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -48.83805151861514], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-277, -277], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 67.31514320040976], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-276, -276], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 169.54285591248004], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-275, -275], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -129.01469346835373], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-274, -274], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -91.34211357376057], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-273, -273], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -123.04981862448678], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-272, -272], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -119.66976464210785], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-271, -271], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 39.70820638928622], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-270, -270], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -30.176145705863075], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-269, -269], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -102.00149828177086], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-268, -268], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 149.29734397662145], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-267, -267], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -46.781730434959755], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-266, -266], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -46.642549512337766], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-265, -265], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 136.38056659663147], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-264, -264], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -111.94128062801975], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-263, -263], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -83.19672124605665], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-262, -262], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 173.76348760267493], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-261, -261], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -103.11115733865813], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-260, -260], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -50.590894192217], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-259, -259], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 146.69356228815948], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-258, -258], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -81.98020522168969], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-257, -257], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -129.2198528234409], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-256, -256], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -167.78769845387504], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-255, -255], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -85.28232894854084], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-254, -254], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -66.65611631967401], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-253, -253], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -136.29710025455373], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-252, -252], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -51.13455411608377], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-251, -251], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -89.99999999999777], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-250, -250], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 48.724521315886], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-249, -249], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 120.01950505045002], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-248, -248], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 98.00484287850753], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-247, -247], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 54.75864359857706], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-246, -246], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 114.58838790476304], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-245, -245], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 85.29036137660594], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-244, -244], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 71.7458867405865], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-243, -243], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 106.17661532726109], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-242, -242], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -165.63238328459295], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-241, -241], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 102.29376972648338], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-240, -240], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -75.1914086183697], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-239, -239], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 75.48698880245799], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-238, -238], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 88.37673500941983], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-237, -237], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -86.3049461890099], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-236, -236], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 128.79772011943768], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-235, -235], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 67.2325880879809], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-234, -234], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 137.78529436133036], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-233, -233], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 105.67665002540691], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-232, -232], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 56.712172201025695], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-231, -231], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -167.93600243808604], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-230, -230], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -74.63323094613816], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-229, -229], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 82.64516708015285], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-228, -228], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.632959305122111], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-227, -227], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -161.73173134331236], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-226, -226], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 153.7178596199186], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-225, -225], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 83.40845123581983], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-224, -224], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 38.88036084974885], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-223, -223], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 105.30447258448662], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-222, -222], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -169.95766689175255], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-221, -221], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -70.49894988697143], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-220, -220], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 25.479576777309305], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-219, -219], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 45.32875339576049], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-218, -218], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 76.16657903574017], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-217, -217], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 122.21637285473503], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-216, -216], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 30.707189347250175], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-215, -215], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 150.3755814060609], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-214, -214], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -77.11422397092784], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-213, -213], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.027073095771625], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-212, -212], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 72.60535114120955], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-211, -211], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 110.93802684893072], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-210, -210], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -32.43847120330242], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-209, -209], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 54.47323633689682], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-208, -208], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 127.20277907818098], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-207, -207], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -119.20043440889961], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-206, -206], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 86.69014227222794], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-205, -205], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -119.87551581089481], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-204, -204], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 75.46073222089069], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-203, -203], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 179.55256883913887], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-202, -202], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -75.10617488864196], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-201, -201], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.620087781150371], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-200, -200], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 93.8217334572873], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-199, -199], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -72.69705975288957], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-198, -198], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 39.415950301291595], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-197, -197], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 160.173572824821], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-196, -196], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 24.60316660583824], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-195, -195], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 111.84744867251632], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-194, -194], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -47.05773522003253], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-193, -193], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 93.21767616401033], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-192, -192], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 89.1731333015946], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-191, -191], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -95.55581318174735], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-190, -190], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 22.92073814490267], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-189, -189], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 92.92974976687694], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-188, -188], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 164.55777559376978], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-187, -187], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -146.1690501447305], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-186, -186], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -73.50979499668152], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-185, -185], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 103.81095376305991], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-184, -184], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -18.75241954022098], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-183, -183], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 132.53362319093674], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-182, -182], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -104.60904152135515], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-181, -181], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 55.22879729591722], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-180, -180], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 170.22880408918547], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-179, -179], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.321589132215174], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-178, -178], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -178.7772814089324], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-177, -177], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -56.22496688165678], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-176, -176], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 34.06394607883908], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-175, -175], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 83.93506767011063], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-174, -174], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 76.3791059940264], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-173, -173], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 122.0319450317527], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-172, -172], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -156.6869426721907], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-171, -171], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 49.95760676115443], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-170, -170], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 71.90761162149276], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-169, -169], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 22.395524346871966], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-168, -168], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 85.48413368347057], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-167, -167], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 158.68031816122596], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-166, -166], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -143.17192394510639], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-165, -165], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 131.23432654147496], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-164, -164], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -124.81683151643354], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-163, -163], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -133.954053539735], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-162, -162], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 13.63973882508528], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-161, -161], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -172.27894813970715], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-160, -160], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -170.20706792553509], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-159, -159], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 72.86126422031354], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-158, -158], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.395121493325565], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-157, -157], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -81.1213548177029], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-156, -156], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 66.72949219941182], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-155, -155], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 77.87512119227154], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-154, -154], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 150.1686848438003], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-153, -153], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 159.56294255871046], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-152, -152], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 23.27853591611315], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-151, -151], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -169.63454229104536], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-150, -150], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -79.84236554061602], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-149, -149], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 79.15940816248002], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-148, -148], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 92.94813849079279], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-147, -147], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 142.1246436483487], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-146, -146], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 114.67742234456509], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-145, -145], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -119.17826305132371], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-144, -144], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 127.067473373162], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-143, -143], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 114.64681234056475], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-142, -142], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -139.9890501335499], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-141, -141], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 111.8277149649969], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-140, -140], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 106.63127029436411], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-139, -139], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -140.5489507476807], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-138, -138], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 154.0510340497008], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-137, -137], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -74.82711666343747], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-136, -136], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 48.368949828928955], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-135, -135], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 107.51010597809316], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-134, -134], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 134.02221426252126], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-133, -133], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 111.2133161019149], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-132, -132], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -165.99483077027125], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-131, -131], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 124.50593915861415], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-130, -130], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 135.00000000000168], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-129, -129], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -16.86495807058242], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-128, -128], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -71.17464569951959], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-127, -127], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -13.239970758114323], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-126, -126], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.71880656672955], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-125, -125], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -30.749807584326895], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-124, -124], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -3.6335215526716627], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-123, -123], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -64.23326106551534], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-122, -122], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -40.75763784332623], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-121, -121], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 74.07499849541085], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-120, -120], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -32.072067268305844], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-119, -119], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -0.35686686895216485], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-118, -118], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 87.66120604800446], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-117, -117], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -69.87173526808508], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-116, -116], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 22.632529749927382], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-115, -115], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 132.151972504307], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-114, -114], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 68.66528445944607], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-113, -113], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 49.32672131308796], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-112, -112], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 163.74463130252622], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-111, -111], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -179.94720442124265], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-110, -110], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -127.7778835030455], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-109, -109], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -49.13621785761165], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-108, -108], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -151.76406107240467], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-107, -107], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -118.65907624772672], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-106, -106], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -52.36252114358031], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-105, -105], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -29.23986973931284], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-104, -104], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -52.55255133138576], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-103, -103], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -8.8314454044343], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-102, -102], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -29.911917666388806], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-101, -101], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -79.3946752256681], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-100, -100], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -18.495500364638836], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-99, -99], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -48.11042999383562], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-98, -98], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -77.41616334387317], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-97, -97], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -32.3947451621131], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-96, -96], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -66.21031119968453], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-95, -95], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -66.19170243472858], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-94, -94], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 158.07741064177554], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-93, -93], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -24.075216087056916], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-92, -92], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 71.02666628021781], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-91, -91], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -31.702775922969856], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-90, -90], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.793588271272831], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-89, -89], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -162.01686060665617], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-88, -88], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 20.739017880313092], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-87, -87], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 52.22514396473747], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-86, -86], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -29.14206844852738], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-85, -85], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 99.13734701221145], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-84, -84], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 45.08129870292487], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-83, -83], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 154.19349818661587], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-82, -82], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -36.868678543334035], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-81, -81], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -117.11994023967488], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-80, -80], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 89.62234709599926], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-79, -79], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -51.185627140727725], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-78, -78], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 135.2148605357869], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-77, -77], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -64.77243038114645], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-76, -76], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -1.4089025821689478], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-75, -75], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 84.40299892101642], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-74, -74], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 130.45580535166755], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-73, -73], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 118.64020740546228], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-72, -72], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -137.1197249480323], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-71, -71], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -94.32666079116989], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-70, -70], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 15.515859359282882], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-69, -69], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 83.10163457604253], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-68, -68], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -157.24735708040336], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-67, -67], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -88.53030569214282], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-66, -66], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -144.82368672677956], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-65, -65], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -44.34865208326305], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-64, -64], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 59.8503733152293], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-63, -63], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -32.899512995226274], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-62, -62], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -42.72440007167058], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-61, -61], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 40.78013570704453], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-60, -60], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 15.914766257961984], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-59, -59], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -19.055767491075105], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-58, -58], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 33.72505820593546], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-57, -57], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -59.46936367789329], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-56, -56], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -2.228563321571459], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-55, -55], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 66.96795396609649], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-54, -54], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 128.23329355391755], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-53, -53], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -166.3159336301992], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-52, -52], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -163.9544944519832], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-51, -51], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 139.68615437920894], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-50, -50], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -156.17992047885775], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-49, -49], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -162.9214422992383], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-48, -48], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -170.745785595643], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-47, -47], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -142.6018861734897], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-46, -46], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -123.02616402498522], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-45, -45], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -108.48719175578174], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-44, -44], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -44.999999999999716], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-43, -43], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -138.23729079103614], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-42, -42], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 147.5278788690671], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-41, -41], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -150.51008650073533], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-40, -40], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -79.91017527847377], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-39, -39], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 24.27226097334133], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-38, -38], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 99.8186727131043], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-37, -37], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -142.25829561206197], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-36, -36], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -135.52348812277532], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-35, -35], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -50.57018426870242], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-34, -34], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 18.645173298845062], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-33, -33], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 98.1939260732473], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-32, -32], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -90.61636657962578], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-31, -31], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -28.406451839043456], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-30, -30], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 131.2058454397691], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-29, -29], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -121.84662047048016], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-28, -28], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.874461631953359], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-27, -27], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -129.83128823135033], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-26, -26], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 171.74600855384844], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-25, -25], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 118.68114343096909], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-24, -24], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -72.84071022912359], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-23, -23], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -162.61487853483936], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-22, -22], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 31.89371230451326], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-21, -21], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -30.712081900899392], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-20, -20], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 157.04576340989007], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-19, -19], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -75.89493610513874], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-18, -18], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -120.78955797379854], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-17, -17], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -3.08322941959656], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-16, -16], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 132.27575057994576], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-15, -15], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -7.1012781061617885], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-14, -14], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 45.307962095073314], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-13, -13], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -158.58872372521327], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-12, -12], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -74.06702165810515], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-11, -11], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 94.87113031868375], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-10, -10], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 22.702797904224624], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-9, -9], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -158.07266883828174], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-8, -8], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -65.57328752087905], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-7, -7], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 125.12751735400163], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-6, -6], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -43.248860208322654], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-5, -5], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 16.67594123451691], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-4, -4], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 114.07116570505072], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-3, -3], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 22.499057058007153], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-2, -2], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 83.03017887153901], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-1, -1], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 125.92454775497045], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [0, 0], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 180], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [1, 1], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -125.92454775497045], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [2, 2], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -83.03017887153901], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [3, 3], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -22.499057058007153], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [4, 4], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -114.07116570505072], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [5, 5], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -16.67594123451691], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [6, 6], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 43.248860208322654], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [7, 7], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -125.12751735400163], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [8, 8], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 65.57328752087905], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [9, 9], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 158.07266883828174], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [10, 10], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -22.702797904224624], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [11, 11], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -94.87113031868375], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [12, 12], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 74.06702165810515], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [13, 13], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 158.58872372521327], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [14, 14], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -45.307962095073314], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [15, 15], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.1012781061617885], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [16, 16], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -132.27575057994576], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [17, 17], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.08322941959656], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [18, 18], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 120.78955797379854], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [19, 19], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 75.89493610513874], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [20, 20], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -157.04576340989007], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [21, 21], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 30.712081900899392], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [22, 22], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -31.89371230451326], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [23, 23], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 162.61487853483936], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [24, 24], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 72.84071022912359], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [25, 25], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -118.68114343096909], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [26, 26], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -171.74600855384844], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [27, 27], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 129.83128823135033], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [28, 28], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -4.874461631953359], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [29, 29], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 121.84662047048016], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [30, 30], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -131.2058454397691], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [31, 31], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 28.406451839043456], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [32, 32], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 90.61636657962578], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [33, 33], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -98.1939260732473], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [34, 34], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -18.645173298845062], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [35, 35], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 50.57018426870242], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [36, 36], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 135.52348812277532], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [37, 37], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 142.25829561206197], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [38, 38], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -99.8186727131043], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [39, 39], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -24.27226097334133], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [40, 40], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 79.91017527847377], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [41, 41], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 150.51008650073533], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [42, 42], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -147.5278788690671], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [43, 43], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 138.23729079103614], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [44, 44], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 44.999999999999716], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [45, 45], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 108.48719175578174], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [46, 46], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 123.02616402498522], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [47, 47], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 142.6018861734897], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [48, 48], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 170.745785595643], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [49, 49], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 162.9214422992383], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [50, 50], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 156.17992047885775], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [51, 51], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -139.68615437920894], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [52, 52], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 163.9544944519832], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [53, 53], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 166.3159336301992], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [54, 54], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -128.23329355391755], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [55, 55], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -66.96795396609649], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [56, 56], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.228563321571459], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [57, 57], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 59.46936367789329], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [58, 58], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -33.72505820593546], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [59, 59], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 19.055767491075105], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [60, 60], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -15.914766257961984], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [61, 61], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -40.78013570704453], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [62, 62], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 42.72440007167058], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [63, 63], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 32.899512995226274], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [64, 64], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -59.8503733152293], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [65, 65], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 44.34865208326305], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [66, 66], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 144.82368672677956], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [67, 67], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 88.53030569214282], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [68, 68], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 157.24735708040336], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [69, 69], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -83.10163457604253], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [70, 70], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -15.515859359282882], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [71, 71], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 94.32666079116989], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [72, 72], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 137.1197249480323], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [73, 73], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -118.64020740546228], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [74, 74], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -130.45580535166755], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [75, 75], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -84.40299892101642], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [76, 76], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4089025821689478], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [77, 77], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 64.77243038114645], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [78, 78], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -135.2148605357869], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [79, 79], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 51.185627140727725], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [80, 80], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -89.62234709599926], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [81, 81], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 117.11994023967488], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [82, 82], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 36.868678543334035], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [83, 83], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -154.19349818661587], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [84, 84], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -45.08129870292487], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [85, 85], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -99.13734701221145], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [86, 86], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 29.14206844852738], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [87, 87], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -52.22514396473747], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [88, 88], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -20.739017880313092], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [89, 89], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 162.01686060665617], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [90, 90], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -6.793588271272831], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [91, 91], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 31.702775922969856], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [92, 92], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -71.02666628021781], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [93, 93], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 24.075216087056916], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [94, 94], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -158.07741064177554], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [95, 95], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 66.19170243472858], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [96, 96], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 66.21031119968453], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [97, 97], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 32.3947451621131], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [98, 98], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 77.41616334387317], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [99, 99], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 48.11042999383562], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [100, 100], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 18.495500364638836], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [101, 101], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 79.3946752256681], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [102, 102], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 29.911917666388806], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [103, 103], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.8314454044343], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [104, 104], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 52.55255133138576], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [105, 105], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 29.23986973931284], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [106, 106], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 52.36252114358031], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [107, 107], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 118.65907624772672], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [108, 108], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 151.76406107240467], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [109, 109], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 49.13621785761165], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [110, 110], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 127.7778835030455], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [111, 111], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 179.94720442124265], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [112, 112], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -163.74463130252622], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [113, 113], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -49.32672131308796], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [114, 114], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -68.66528445944607], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [115, 115], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -132.151972504307], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [116, 116], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -22.632529749927382], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [117, 117], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 69.87173526808508], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [118, 118], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -87.66120604800446], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [119, 119], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0.35686686895216485], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [120, 120], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 32.072067268305844], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [121, 121], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -74.07499849541085], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [122, 122], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 40.75763784332623], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [123, 123], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 64.23326106551534], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [124, 124], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.6335215526716627], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [125, 125], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 30.749807584326895], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [126, 126], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -9.71880656672955], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [127, 127], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 13.239970758114323], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [128, 128], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 71.17464569951959], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [129, 129], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 16.86495807058242], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [130, 130], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -135.00000000000168], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [131, 131], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -124.50593915861415], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [132, 132], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 165.99483077027125], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [133, 133], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -111.2133161019149], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [134, 134], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -134.02221426252126], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [135, 135], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -107.51010597809316], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [136, 136], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -48.368949828928955], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [137, 137], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 74.82711666343747], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [138, 138], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -154.0510340497008], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [139, 139], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 140.5489507476807], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [140, 140], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -106.63127029436411], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [141, 141], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -111.8277149649969], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [142, 142], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 139.9890501335499], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [143, 143], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -114.64681234056475], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [144, 144], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -127.067473373162], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [145, 145], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 119.17826305132371], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [146, 146], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -114.67742234456509], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [147, 147], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -142.1246436483487], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [148, 148], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -92.94813849079279], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [149, 149], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -79.15940816248002], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [150, 150], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 79.84236554061602], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [151, 151], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 169.63454229104536], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [152, 152], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -23.27853591611315], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [153, 153], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -159.56294255871046], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [154, 154], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -150.1686848438003], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [155, 155], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -77.87512119227154], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [156, 156], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -66.72949219941182], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [157, 157], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 81.1213548177029], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [158, 158], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -9.395121493325565], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [159, 159], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -72.86126422031354], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [160, 160], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 170.20706792553509], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [161, 161], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 172.27894813970715], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [162, 162], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -13.63973882508528], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [163, 163], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 133.954053539735], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [164, 164], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 124.81683151643354], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [165, 165], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -131.23432654147496], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [166, 166], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 143.17192394510639], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [167, 167], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -158.68031816122596], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [168, 168], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -85.48413368347057], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [169, 169], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -22.395524346871966], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [170, 170], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -71.90761162149276], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [171, 171], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -49.95760676115443], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [172, 172], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 156.6869426721907], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [173, 173], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -122.0319450317527], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [174, 174], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -76.3791059940264], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [175, 175], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -83.93506767011063], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [176, 176], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -34.06394607883908], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [177, 177], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 56.22496688165678], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [178, 178], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 178.7772814089324], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [179, 179], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -7.321589132215174], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [180, 180], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -170.22880408918547], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [181, 181], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -55.22879729591722], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [182, 182], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 104.60904152135515], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [183, 183], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -132.53362319093674], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [184, 184], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 18.75241954022098], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [185, 185], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -103.81095376305991], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [186, 186], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 73.50979499668152], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [187, 187], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 146.1690501447305], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [188, 188], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -164.55777559376978], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [189, 189], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -92.92974976687694], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [190, 190], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -22.92073814490267], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [191, 191], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 95.55581318174735], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [192, 192], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -89.1731333015946], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [193, 193], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -93.21767616401033], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [194, 194], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 47.05773522003253], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [195, 195], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -111.84744867251632], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [196, 196], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -24.60316660583824], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [197, 197], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -160.173572824821], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [198, 198], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -39.415950301291595], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [199, 199], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 72.69705975288957], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [200, 200], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -93.8217334572873], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [201, 201], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -5.620087781150371], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [202, 202], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 75.10617488864196], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [203, 203], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -179.55256883913887], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [204, 204], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -75.46073222089069], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [205, 205], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 119.87551581089481], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [206, 206], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -86.69014227222794], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [207, 207], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 119.20043440889961], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [208, 208], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -127.20277907818098], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [209, 209], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -54.47323633689682], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [210, 210], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 32.43847120330242], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [211, 211], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -110.93802684893072], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [212, 212], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -72.60535114120955], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [213, 213], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -9.027073095771625], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [214, 214], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 77.11422397092784], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [215, 215], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -150.3755814060609], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [216, 216], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -30.707189347250175], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [217, 217], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -122.21637285473503], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [218, 218], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -76.16657903574017], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [219, 219], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -45.32875339576049], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [220, 220], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -25.479576777309305], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [221, 221], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 70.49894988697143], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [222, 222], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 169.95766689175255], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [223, 223], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -105.30447258448662], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [224, 224], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -38.88036084974885], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [225, 225], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -83.40845123581983], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [226, 226], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -153.7178596199186], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [227, 227], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 161.73173134331236], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [228, 228], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -4.632959305122111], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [229, 229], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -82.64516708015285], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [230, 230], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 74.63323094613816], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [231, 231], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 167.93600243808604], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [232, 232], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -56.712172201025695], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [233, 233], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -105.67665002540691], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [234, 234], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -137.78529436133036], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [235, 235], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -67.2325880879809], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [236, 236], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -128.79772011943768], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [237, 237], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 86.3049461890099], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [238, 238], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -88.37673500941983], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [239, 239], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -75.48698880245799], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [240, 240], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 75.1914086183697], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [241, 241], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -102.29376972648338], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [242, 242], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 165.63238328459295], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [243, 243], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -106.17661532726109], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [244, 244], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -71.7458867405865], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [245, 245], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -85.29036137660594], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [246, 246], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -114.58838790476304], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [247, 247], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -54.75864359857706], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [248, 248], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -98.00484287850753], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [249, 249], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -120.01950505045002], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [250, 250], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -48.724521315886], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [251, 251], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 89.99999999999777], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [252, 252], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 51.13455411608377], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [253, 253], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 136.29710025455373], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [254, 254], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 66.65611631967401], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [255, 255], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 85.28232894854084], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [256, 256], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 167.78769845387504], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [257, 257], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 129.2198528234409], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [258, 258], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 81.98020522168969], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [259, 259], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -146.69356228815948], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [260, 260], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 50.590894192217], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [261, 261], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 103.11115733865813], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [262, 262], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -173.76348760267493], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [263, 263], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 83.19672124605665], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [264, 264], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 111.94128062801975], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [265, 265], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -136.38056659663147], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [266, 266], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 46.642549512337766], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [267, 267], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 46.781730434959755], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [268, 268], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -149.29734397662145], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [269, 269], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 102.00149828177086], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [270, 270], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 30.176145705863075], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [271, 271], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -39.70820638928622], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [272, 272], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 119.66976464210785], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [273, 273], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 123.04981862448678], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [274, 274], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 91.34211357376057], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [275, 275], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 129.01469346835373], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [276, 276], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -169.54285591248004], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [277, 277], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -67.31514320040976], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [278, 278], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 48.83805151861514], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [279, 279], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 156.10325608492997], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [280, 280], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -68.56263291826853], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [281, 281], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 55.71237902347236], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [282, 282], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 154.14115742247125], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [283, 283], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 14.413671535478676], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [284, 284], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 119.78366136801132], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [285, 285], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -8.391848920976079], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [286, 286], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -18.426153662739004], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [287, 287], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 97.02257851659506], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [288, 288], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 55.37161174345585], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [289, 289], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -12.645093104153874], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [290, 290], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 120.24155920800133], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [291, 291], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 89.0648872082877], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [292, 292], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 50.21628916122534], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [293, 293], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -145.44285974694526], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [294, 294], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -95.97964828538998], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [295, 295], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.649166698609047], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [296, 296], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 34.055996965995476], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [297, 297], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 69.26529896708975], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [298, 298], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 140.60176656750826], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [299, 299], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -155.27688001784256], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [300, 300], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.7030356791355892], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [301, 301], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 134.88997876289193], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [302, 302], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -100.2054581341199], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [303, 303], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 55.327929228492195], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [304, 304], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -22.53009768113454], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [305, 305], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 59.99999999999981], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [306, 306], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 31.35302385093816], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [307, 307], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -133.31279971493095], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [308, 308], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 20.805743884170337], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [309, 309], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 77.22875919706543], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [310, 310], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 145.5776824153258], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [311, 311], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -144.47498983064582], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [312, 312], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 122.15132364749459], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [313, 313], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -177.90866127312268], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [314, 314], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -120.22783470657382], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [315, 315], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -55.70744497556953], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [316, 316], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.645776526445852], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [317, 317], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -91.0755052873505], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [318, 318], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -50.040403916989554], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [319, 319], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -147.72079426394677], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [320, 320], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -27.175617643124703], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [321, 321], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -19.354837921186373], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [322, 322], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -101.18831449999314], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [323, 323], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -26.24414686631413], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [324, 324], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 73.9215430250668], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [325, 325], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -82.70416536182442], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [326, 326], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -4.25188358874601], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [327, 327], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 129.8365301035744], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [328, 328], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -39.46093796009714], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [329, 329], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -39.3196309591047], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [330, 330], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 66.25064247958511], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [331, 331], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 137.22701028819117], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [332, 332], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -57.08440975420919], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [333, 333], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 17.096836129744947], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [334, 334], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 87.6987980248343], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [335, 335], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 135.42235303488786], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [336, 336], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -171.21213568017802], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [337, 337], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -62.42460514475273], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [338, 338], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 134.81971941024702], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [339, 339], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -163.06284571277578], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [340, 340], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -29.121503894018755], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [341, 341], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 150.4440740483525], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [342, 342], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -146.80893715181148], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [343, 343], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -17.4329955475684], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [344, 344], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 144.74562581433048], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [345, 345], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -144.62065001601715], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [346, 346], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 72.29983927542035], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [347, 347], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 142.65901042668688], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [348, 348], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -116.67342675068635], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [349, 349], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 56.5081174516335], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [350, 350], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 177.868297995326], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [351, 351], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -61.87391706407351], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [352, 352], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 155.05156145760446], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [353, 353], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -120.75862148922911], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [354, 354], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 138.85927660649182], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [355, 355], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 41.290526856923385], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [356, 356], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -138.50652453842025], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [357, 357], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -4.532425117541013], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [358, 358], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 106.61289704781898], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [359, 359], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -138.1215059790455], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [360, 360], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.115775523894812], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [361, 361], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -75.4201603485546], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [362, 362], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 56.451164418532414], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [363, 363], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -135.27590782070968], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [364, 364], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -116.09055393058601], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [365, 365], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -53.293427241203354], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [366, 366], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 25.755902102099448], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [367, 367], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -145.95943481168868], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [368, 368], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -35.986522839681], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [369, 369], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -0.20142278825397236], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [370, 370], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -107.10272896905238], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [371, 371], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 128.14969061042814], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [372, 372], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -43.51346492398824], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [373, 373], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 38.68904027439372], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [374, 374], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 38.23892209867497], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [375, 375], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 162.1932880832569], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [376, 376], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 149.64291147951542], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [377, 377], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -58.11090347669092], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [378, 378], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -4.758025400651186], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [379, 379], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 79.50766999182834], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [380, 380], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0.5848961513807777], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [381, 381], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -172.5789423339925], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [382, 382], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -130.73006791175328], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [383, 383], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 71.34529862827286], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [384, 384], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -158.95613774870316], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [385, 385], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -12.181672806566842], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [386, 386], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -35.80923549385979], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [387, 387], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -51.10207975810141], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [388, 388], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 108.54100874942843], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [389, 389], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -169.26128828351693], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [390, 390], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -70.90166826903805], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [391, 391], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -67.61688368385761], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [392, 392], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 60.083232755238775], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [393, 393], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 40.51457915339244], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [394, 394], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -30.591349044469716], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [395, 395], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -124.99205712140048], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [396, 396], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -36.350825334039364], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [397, 397], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 28.482825149036145], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [398, 398], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 141.33374983186908], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [399, 399], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -38.211796037185565], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [400, 400], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 50.17842430593812], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [401, 401], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -144.74274746783374], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [402, 402], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -2.498504091631266], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [403, 403], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 70.8072154043885], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [404, 404], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -109.09958562240888], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [405, 405], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -0.46641870236400207], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [406, 406], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 40.57852887973951], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [407, 407], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 79.5649842864099], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [408, 408], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 131.17804198171288], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [409, 409], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -153.7305040516396], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [410, 410], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -43.773517147978424], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [411, 411], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 57.58763989221937], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [412, 412], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 117.2345539634532], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [413, 413], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -96.625349984316], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [414, 414], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 71.6387242940985], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [415, 415], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 160.9387504186102], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [416, 416], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -31.565444808561885], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [417, 417], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 91.88339908177169], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [418, 418], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 130.7115976496189], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [419, 419], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 150.07072595256577], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [420, 420], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -38.70828511230159], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [421, 421], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -149.71044372886223], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [422, 422], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 149.25971115663495], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [423, 423], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 136.4751854357861], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [424, 424], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 136.03023862888287], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [425, 425], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 130.20797555430408], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [426, 426], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -134.9449507899528], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [427, 427], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -77.83206810562207], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [428, 428], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 13.713252577688959], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [429, 429], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -126.77257441833521], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [430, 430], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -51.00493018952935], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [431, 431], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 10.598543645037262], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [432, 432], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 92.33724233573955], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [433, 433], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -53.374428492926086], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [434, 434], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 39.52917281705729], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [435, 435], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -173.54130627835556], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [436, 436], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -30.433060202472188], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [437, 437], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 48.05750100275746], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [438, 438], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -77.95543180629785], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [439, 439], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.6732701470003324], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [440, 440], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 39.46631468086836], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [441, 441], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -51.4950570273432], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [442, 442], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -9.611881075953294], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [443, 443], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 62.23979420661166], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [444, 444], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 128.62570044086752], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [445, 445], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -170.76313306666248], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [446, 446], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -136.7223312615956], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [447, 447], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -127.58337637166228], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [448, 448], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -149.42429337213892], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [449, 449], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -81.89108054666528], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [450, 450], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 80.52613058914072], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [451, 451], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -145.34779447076156], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [452, 452], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -64.05434779877898], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [453, 453], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 77.98895346012027], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [454, 454], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -100.44543179717333], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [455, 455], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 128.43314029068037], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [456, 456], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -159.07549825507886], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [457, 457], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -167.94406841933784], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [458, 458], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -31.39931104111576], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [459, 459], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 59.182881160939374], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [460, 460], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -74.0927927355614], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [461, 461], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 175.20388146375873], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [462, 462], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 24.686335540664153], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [463, 463], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 42.63525308352851], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [464, 464], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 137.66868676270684], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [465, 465], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -0.7289919438470727], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [466, 466], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 115.48136954692578], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [467, 467], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 171.0570653618254], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [468, 468], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 151.1787304845041], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [469, 469], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 110.48687781865287], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [470, 470], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.27864402099234], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [471, 471], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -169.39932201777808], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [472, 472], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 142.5791575058834], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [473, 473], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -126.71254425851568], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [474, 474], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.6225779350166518], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [475, 475], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -85.6246283614048], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [476, 476], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 172.47978600587606], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [477, 477], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 44.4600363611959], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [478, 478], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -42.115579832990115], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [479, 479], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -47.044341625256735], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [480, 480], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 56.14539564079233], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [481, 481], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 109.38338654278785], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [482, 482], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -178.54034302141014], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [483, 483], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -152.18578903537144], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [484, 484], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -110.59000161889614], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [485, 485], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -68.34441052544551], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [486, 486], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -41.853437724945465], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [487, 487], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 58.36434038754637], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [488, 488], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -62.25309368203434], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [489, 489], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -24.895294136838537], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [490, 490], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 149.63434222407142], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [491, 491], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -61.822686577716226], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [492, 492], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 29.27718759510051], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [493, 493], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -46.271600342280045], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [494, 494], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 95.22529068089564], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [495, 495], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 103.78863846229322], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [496, 496], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -35.818677556888524], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [497, 497], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 35.75571310672556], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [498, 498], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 74.42585486195328], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [499, 499], "showlegend": false, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 135.90967935414673], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [44], "showlegend": true, "mode": "markers", "name": "y2", "legendgroup": "y2", "marker": {"symbol": "circle", "color": "rgba(227, 111, 71, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "y": [44.999999999999716], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [130], "showlegend": true, "mode": "markers", "name": "y3", "legendgroup": "y3", "marker": {"symbol": "circle", "color": "rgba(62, 164, 78, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "y": [-135.00000000000168], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [251], "showlegend": true, "mode": "markers", "name": "y4", "legendgroup": "y4", "marker": {"symbol": "circle", "color": "rgba(195, 113, 210, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "y": [89.99999999999777], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [305], "showlegend": true, "mode": "markers", "name": "y5", "legendgroup": "y5", "marker": {"symbol": "circle", "color": "rgba(172, 142, 24, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "y": [59.99999999999981], "type": "scatter"}], "config": {"showlegend": false, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [0, 100, 200, 300, 400, 500], "range": [0, 500], "domain": [0.09128390201224845, 0.9934383202099738], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["0", "100", "200", "300", "400", "500"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Частота (Гц)", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [{"yanchor": "top", "xanchor": "center", "rotation": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "paper", "showarrow": false, "text": "Фазовый спектр тестового сигнала", "xref": "paper", "x": 0.5423611111111111}], "height": 400, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [-150, -100, -50, 0, 50, 100, 150], "range": [-190.74562055387995, 190.7984161326373], "domain": [0.07581474190726165, 0.9415463692038496], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["-150", "-100", "-50", "0", "50", "100", "150"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Фаза (град)", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "width": 827.5}}
{"id": "5465649b_bf84_4960_82a8_c9d9f4b60633", "data": [{"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [0, 0.000125, 0.00025, 0.000375, 0.0005, 0.00062500004, 0.00075, 0.000875, 0.001, 0.0011250001, 0.0012500001, 0.0013750001, 0.0015, 0.001625, 0.00175, 0.0018750001, 0.002, 0.002125, 0.0022500001, 0.0023750002, 0.0025000002, 0.0026250002, 0.0027500002, 0.0028750002, 0.003, 0.003125, 0.00325, 0.003375, 0.0035, 0.0036250001, 0.0037500001, 0.0038750002, 0.004, 0.004125, 0.00425, 0.004375, 0.0045000003, 0.004625, 0.0047500003, 0.004875, 0.0050000004, 0.005125, 0.0052500004, 0.005375, 0.0055000004, 0.005625, 0.0057500005, 0.0058750003, 0.006, 0.0061250003, 0.00625, 0.0063750003, 0.0065, 0.0066250004, 0.00675, 0.0068750004, 0.007, 0.0071250005, 0.0072500003, 0.0073750005, 0.0075000003, 0.0076250006, 0.0077500003, 0.007875, 0.008, 0.008125001, 0.00825, 0.008375, 0.0085, 0.008625001, 0.00875, 0.008875, 0.009000001, 0.009125001, 0.00925, 0.009375, 0.009500001, 0.009625001, 0.00975, 0.009875, 0.010000001, 0.010125, 0.01025, 0.010375001, 0.010500001, 0.010625, 0.01075, 0.010875001, 0.011000001, 0.011125, 0.01125, 0.011375001, 0.011500001, 0.011625, 0.0117500005, 0.011875001, 0.012, 0.012125, 0.012250001, 0.012375001, 0.0125, 0.012625, 0.012750001, 0.012875001, 0.013, 0.0131250005, 0.013250001, 0.013375001, 0.0135, 0.013625001, 0.013750001, 0.013875001, 0.014, 0.014125001, 0.014250001, 0.014375, 0.0145000005, 0.014625001, 0.014750001, 0.014875, 0.015000001, 0.015125001, 0.015250001, 0.015375, 0.015500001, 0.015625, 0.01575, 0.015875, 0.016, 0.016125001, 0.016250001, 0.016375002, 0.0165, 0.016625, 0.01675, 0.016875, 0.017, 0.017125001, 0.017250001, 0.017375002, 0.0175, 0.017625, 0.01775, 0.017875, 0.018000001, 0.018125001, 0.018250002, 0.018375, 0.0185, 0.018625, 0.01875, 0.018875001, 0.019000001, 0.019125002, 0.019250002, 0.019375, 0.0195, 0.019625, 0.01975, 0.019875001, 0.020000001, 0.020125002, 0.02025, 0.020375, 0.0205, 0.020625, 0.020750001, 0.020875001, 0.021000002, 0.021125002, 0.02125, 0.021375, 0.0215, 0.021625001, 0.021750001, 0.021875001, 0.022000002, 0.022125, 0.02225, 0.022375, 0.0225, 0.022625001, 0.022750001, 0.022875002, 0.023000002, 0.023125, 0.02325, 0.023375, 0.023500001, 0.023625001, 0.023750002, 0.023875002, 0.024, 0.024125, 0.02425, 0.024375001, 0.024500001, 0.024625001, 0.024750002, 0.024875002, 0.025, 0.025125, 0.02525, 0.025375001, 0.025500001, 0.025625002, 0.025750002, 0.025875002, 0.026, 0.026125, 0.026250001, 0.026375001, 0.026500002, 0.026625002, 0.026750002, 0.026875, 0.027, 0.027125001, 0.027250001, 0.027375001, 0.027500002, 0.027625002, 0.027750002, 0.027875, 0.028, 0.028125001, 0.028250001, 0.028375002, 0.028500002, 0.028625002, 0.02875, 0.028875, 0.029000001, 0.029125001, 0.029250002, 0.029375002, 0.029500002, 0.029625002, 0.02975, 0.029875001, 0.030000001, 0.030125001, 0.030250002, 0.030375002, 0.030500002, 0.030625, 0.03075, 0.030875001, 0.031000001, 0.031125002, 0.03125, 0.031375002, 0.0315, 0.031625003, 0.03175, 0.031875003, 0.032, 0.032125, 0.032250002, 0.032375, 0.032500003, 0.032625, 0.032750003, 0.032875, 0.033, 0.033125002, 0.03325, 0.033375002, 0.0335, 0.033625003, 0.03375, 0.033875003, 0.034, 0.034125, 0.034250002, 0.034375, 0.034500003, 0.034625, 0.034750003, 0.034875, 0.035, 0.035125002, 0.03525, 0.035375003, 0.0355, 0.035625003, 0.03575, 0.035875, 0.036000002, 0.036125, 0.036250003, 0.036375, 0.036500003, 0.036625, 0.03675, 0.036875002, 0.037, 0.037125003, 0.03725, 0.037375003, 0.0375, 0.037625004, 0.037750002, 0.037875, 0.038000003, 0.038125, 0.038250003, 0.038375, 0.038500004, 0.038625002, 0.03875, 0.038875002, 0.039, 0.039125003, 0.03925, 0.039375003, 0.0395, 0.039625, 0.039750002, 0.039875, 0.040000003, 0.040125, 0.040250003, 0.040375, 0.0405, 0.040625002, 0.04075, 0.040875003, 0.041, 0.041125003, 0.04125, 0.041375004, 0.041500002, 0.041625, 0.041750003, 0.041875, 0.042000003, 0.042125, 0.042250004, 0.042375002, 0.0425, 0.042625003, 0.04275, 0.042875003, 0.043, 0.043125004, 0.043250002, 0.043375, 0.043500002, 0.043625, 0.043750003, 0.043875, 0.044000003, 0.044125002, 0.04425, 0.044375002, 0.0445, 0.044625003, 0.04475, 0.044875003, 0.045, 0.045125004, 0.045250002, 0.045375, 0.045500003, 0.045625, 0.045750003, 0.045875, 0.046000004, 0.046125002, 0.04625, 0.046375003, 0.0465, 0.046625003, 0.04675, 0.046875004, 0.047000002, 0.047125, 0.047250003, 0.047375, 0.047500003, 0.047625, 0.047750004, 0.047875002, 0.048, 0.048125003, 0.04825, 0.048375003, 0.0485, 0.048625004, 0.048750002, 0.048875004, 0.049000002, 0.049125, 0.049250003, 0.049375, 0.049500003, 0.049625, 0.049750004, 0.049875002, 0.05, 0.050125003, 0.05025, 0.050375003, 0.0505, 0.050625004, 0.050750002, 0.050875, 0.051000003, 0.051125, 0.051250003, 0.051375, 0.051500004, 0.051625002, 0.051750004, 0.051875003, 0.052, 0.052125003, 0.05225, 0.052375004, 0.052500002, 0.052625004, 0.052750003, 0.052875, 0.053000003, 0.053125, 0.053250004, 0.053375002, 0.053500004, 0.053625003, 0.05375, 0.053875003, 0.054, 0.054125004, 0.054250002, 0.054375004, 0.054500002, 0.054625, 0.054750003, 0.054875, 0.055000003, 0.055125, 0.055250004, 0.055375002, 0.055500004, 0.055625003, 0.05575, 0.055875003, 0.056, 0.056125004, 0.056250002, 0.056375004, 0.056500003, 0.056625, 0.056750003, 0.056875, 0.057000004, 0.057125002, 0.057250004, 0.057375003, 0.0575, 0.057625003, 0.05775, 0.057875004, 0.058000002, 0.058125004, 0.058250003, 0.058375, 0.058500003, 0.058625, 0.058750004, 0.058875002, 0.059000004, 0.059125002, 0.059250005, 0.059375003, 0.0595, 0.059625003, 0.059750002, 0.059875004, 0.060000002, 0.060125005, 0.060250003, 0.060375, 0.060500003, 0.060625, 0.060750004, 0.060875002, 0.061000004, 0.061125003, 0.06125, 0.061375003, 0.0615, 0.061625004, 0.061750002, 0.061875004, 0.062000003, 0.062125, 0.062250003, 0.062375, 0.0625, 0.062625006, 0.062750004, 0.062875, 0.063, 0.063125, 0.063250005, 0.063375, 0.0635, 0.063625, 0.063750006, 0.063875005, 0.064, 0.064125, 0.06425, 0.064375006, 0.064500004, 0.064625, 0.06475, 0.06487501, 0.065000005, 0.065125, 0.06525, 0.065375, 0.065500006, 0.065625004, 0.06575, 0.065875, 0.066, 0.066125005, 0.066250004, 0.066375, 0.0665, 0.06662501, 0.066750005, 0.066875, 0.067, 0.067125, 0.067250006, 0.067375004, 0.0675, 0.067625, 0.06775001, 0.067875005, 0.068, 0.068125, 0.06825, 0.06837501, 0.068500005, 0.068625, 0.06875, 0.068875, 0.069000006, 0.069125004, 0.06925, 0.069375, 0.06950001, 0.069625005, 0.06975, 0.069875, 0.07, 0.070125006, 0.070250005, 0.070375, 0.0705, 0.070625, 0.070750006, 0.070875004, 0.071, 0.071125, 0.07125001, 0.071375005, 0.0715, 0.071625, 0.07175, 0.071875006, 0.072000004, 0.072125, 0.07225, 0.07237501, 0.072500005, 0.072625004, 0.07275, 0.072875, 0.07300001, 0.073125005, 0.07325, 0.073375, 0.0735, 0.073625006, 0.073750004, 0.073875, 0.074, 0.07412501, 0.074250005, 0.074375, 0.0745, 0.074625, 0.074750006, 0.074875005, 0.075, 0.075125, 0.07525001, 0.075375006, 0.075500004, 0.075625, 0.07575, 0.07587501, 0.076000005, 0.076125, 0.07625, 0.076375, 0.076500006, 0.076625004, 0.07675, 0.076875, 0.07700001, 0.077125005, 0.077250004, 0.077375, 0.0775, 0.07762501, 0.077750005, 0.077875, 0.078, 0.078125, 0.078250006, 0.078375004, 0.0785, 0.078625, 0.07875001, 0.078875005, 0.079, 0.079125, 0.07925, 0.079375006, 0.079500005, 0.079625, 0.07975, 0.07987501, 0.080000006, 0.080125004, 0.08025, 0.080375, 0.08050001, 0.080625005, 0.08075, 0.080875, 0.081, 0.081125006, 0.081250004, 0.081375, 0.0815, 0.08162501, 0.081750005, 0.081875004, 0.082, 0.082125, 0.08225001, 0.082375005, 0.0825, 0.082625, 0.08275001, 0.082875006, 0.083000004, 0.083125, 0.08325, 0.08337501, 0.083500005, 0.083625, 0.08375, 0.083875, 0.08400001, 0.084125005, 0.08425, 0.084375, 0.08450001, 0.084625006, 0.084750004, 0.084875, 0.085, 0.08512501, 0.085250005, 0.085375, 0.0855, 0.08562501, 0.085750006, 0.085875005, 0.086, 0.086125, 0.08625001, 0.086375006, 0.086500004, 0.086625, 0.08675, 0.08687501, 0.087000005, 0.087125, 0.08725, 0.08737501, 0.087500006, 0.087625004, 0.08775, 0.087875, 0.08800001, 0.088125005, 0.088250004, 0.088375, 0.0885, 0.08862501, 0.088750005, 0.088875, 0.089, 0.08912501, 0.089250006, 0.089375004, 0.0895, 0.089625, 0.08975001, 0.089875005, 0.09, 0.090125, 0.09025001, 0.090375006, 0.090500005, 0.090625, 0.09075, 0.09087501, 0.091000006, 0.091125004, 0.09125, 0.091375, 0.09150001, 0.091625005, 0.09175, 0.091875, 0.09200001, 0.092125006, 0.092250004, 0.092375, 0.0925, 0.09262501, 0.092750005, 0.092875004, 0.093, 0.09312501, 0.09325001, 0.093375005, 0.0935, 0.093625, 0.09375001, 0.093875006, 0.094000004, 0.094125, 0.09425, 0.09437501, 0.094500005, 0.094625, 0.09475, 0.09487501, 0.095000006, 0.095125005, 0.09525, 0.095375, 0.09550001, 0.095625006, 0.095750004, 0.095875, 0.096, 0.09612501, 0.096250005, 0.096375, 0.0965, 0.09662501, 0.096750006, 0.096875004, 0.097, 0.097125, 0.09725001, 0.097375005, 0.097500004, 0.097625, 0.09775001, 0.09787501, 0.098000005, 0.098125, 0.09825, 0.09837501, 0.098500006, 0.098625004, 0.09875, 0.098875, 0.09900001, 0.099125005, 0.09925, 0.099375, 0.09950001, 0.09962501, 0.099750005, 0.099875, 0.1, 0.10012501, 0.100250006, 0.100375004, 0.1005, 0.10062501, 0.10075001, 0.100875005, 0.101, 0.101125, 0.10125001, 0.101375006, 0.101500005, 0.101625, 0.10175, 0.10187501, 0.102000006, 0.102125004, 0.10225, 0.10237501, 0.10250001, 0.102625005, 0.10275, 0.102875, 0.10300001, 0.103125006, 0.103250004, 0.103375, 0.10350001, 0.10362501, 0.103750005, 0.103875004, 0.104, 0.10412501, 0.10425001, 0.104375005, 0.1045, 0.104625, 0.10475001, 0.104875006, 0.105000004, 0.105125, 0.10525001, 0.10537501, 0.105500005, 0.105625, 0.10575, 0.10587501, 0.106000006, 0.106125005, 0.10625, 0.106375, 0.10650001, 0.106625006, 0.106750004, 0.106875, 0.10700001, 0.10712501, 0.107250005, 0.107375, 0.1075, 0.10762501, 0.107750006, 0.107875004, 0.108, 0.10812501, 0.10825001, 0.108375005, 0.108500004, 0.108625, 0.10875001, 0.10887501, 0.109000005, 0.109125, 0.10925, 0.10937501, 0.109500006, 0.109625004, 0.10975, 0.10987501, 0.11000001, 0.110125005, 0.11025, 0.110375, 0.11050001, 0.110625006, 0.110750005, 0.110875, 0.11100001, 0.11112501, 0.111250006, 0.111375004, 0.1115, 0.11162501, 0.11175001, 0.111875005, 0.112, 0.112125, 0.11225001, 0.112375006, 0.112500004, 0.112625, 0.11275001, 0.11287501, 0.113000005, 0.113125004, 0.11325, 0.11337501, 0.11350001, 0.113625005, 0.11375, 0.11387501, 0.11400001, 0.114125006, 0.114250004, 0.114375, 0.11450001, 0.11462501, 0.114750005, 0.114875, 0.115, 0.11512501, 0.11525001, 0.115375005, 0.1155, 0.11562501, 0.11575001, 0.115875006, 0.116000004, 0.116125, 0.11625001, 0.11637501, 0.116500005, 0.116625, 0.11675, 0.11687501, 0.117000006, 0.117125005, 0.11725, 0.11737501, 0.11750001, 0.117625006, 0.117750004, 0.117875, 0.11800001, 0.11812501, 0.118250005, 0.118375, 0.11850001, 0.11862501, 0.118750006, 0.118875004, 0.119, 0.11912501, 0.11925001, 0.119375005, 0.119500004, 0.119625, 0.11975001, 0.11987501, 0.120000005, 0.120125, 0.12025001, 0.12037501, 0.120500006, 0.120625004, 0.12075, 0.12087501, 0.12100001, 0.121125005, 0.12125, 0.12137501, 0.12150001, 0.121625006, 0.121750005, 0.121875, 0.12200001, 0.12212501, 0.122250006, 0.122375004, 0.1225, 0.12262501, 0.12275001, 0.122875005, 0.123, 0.12312501, 0.12325001, 0.123375006, 0.123500004, 0.123625, 0.12375001, 0.12387501, 0.124000005, 0.124125004, 0.12425, 0.12437501, 0.12450001, 0.124625005, 0.12475, 0.12487501, 0.125, 0.125125, 0.12525001, 0.125375, 0.12550001, 0.125625, 0.12575, 0.12587501, 0.126, 0.12612501, 0.12625, 0.126375, 0.12650001, 0.126625, 0.12675, 0.12687501, 0.127, 0.12712501, 0.12725, 0.127375, 0.12750001, 0.127625, 0.12775001, 0.127875, 0.128, 0.12812501, 0.12825, 0.12837501, 0.1285, 0.128625, 0.12875001, 0.128875, 0.12900001, 0.129125, 0.12925, 0.12937501, 0.1295, 0.12962501, 0.12975001, 0.129875, 0.13000001, 0.130125, 0.13025, 0.13037501, 0.1305, 0.13062501, 0.13075, 0.130875, 0.13100001, 0.131125, 0.13125001, 0.131375, 0.1315, 0.13162501, 0.13175, 0.13187501, 0.132, 0.132125, 0.13225001, 0.132375, 0.13250001, 0.13262501, 0.13275, 0.13287501, 0.133, 0.133125, 0.13325001, 0.133375, 0.13350001, 0.133625, 0.13375, 0.13387501, 0.134, 0.13412501, 0.13425, 0.134375, 0.13450001, 0.134625, 0.13475001, 0.134875, 0.135, 0.13512501, 0.13525, 0.13537501, 0.13550001, 0.135625, 0.13575001, 0.135875, 0.136, 0.13612501, 0.13625, 0.13637501, 0.1365, 0.136625, 0.13675001, 0.136875, 0.13700001, 0.137125, 0.13725, 0.13737501, 0.1375, 0.13762501, 0.13775, 0.137875, 0.13800001, 0.138125, 0.13825001, 0.138375, 0.1385, 0.13862501, 0.13875, 0.13887501, 0.13900001, 0.139125, 0.13925001, 0.139375, 0.1395, 0.13962501, 0.13975, 0.13987501, 0.14, 0.140125, 0.14025001, 0.140375, 0.14050001, 0.140625, 0.14075, 0.14087501, 0.141, 0.14112501, 0.14125, 0.141375, 0.14150001, 0.141625, 0.14175001, 0.14187501, 0.142, 0.14212501, 0.14225, 0.142375, 0.14250001, 0.142625, 0.14275001, 0.142875, 0.143, 0.14312501, 0.14325, 0.14337501, 0.1435, 0.143625, 0.14375001, 0.143875, 0.14400001, 0.144125, 0.14425, 0.14437501, 0.1445, 0.14462501, 0.14475001, 0.144875, 0.14500001, 0.145125, 0.14525001, 0.14537501, 0.1455, 0.14562501, 0.14575, 0.145875, 0.14600001, 0.146125, 0.14625001, 0.146375, 0.1465, 0.14662501, 0.14675, 0.14687501, 0.147, 0.147125, 0.14725001, 0.147375, 0.14750001, 0.14762501, 0.14775, 0.14787501, 0.148, 0.14812501, 0.14825001, 0.148375, 0.14850001, 0.148625, 0.14875, 0.14887501, 0.149, 0.14912501, 0.14925, 0.149375, 0.14950001, 0.149625, 0.14975001, 0.149875, 0.15, 0.15012501, 0.15025, 0.15037501, 0.15050001, 0.150625, 0.15075001, 0.150875, 0.15100001, 0.15112501, 0.15125, 0.15137501, 0.1515, 0.151625, 0.15175001, 0.151875, 0.15200001, 0.152125, 0.15225, 0.15237501, 0.1525, 0.15262501, 0.15275, 0.152875, 0.15300001, 0.153125, 0.15325001, 0.15337501, 0.1535, 0.15362501, 0.15375, 0.15387501, 0.15400001, 0.154125, 0.15425001, 0.154375, 0.15450001, 0.15462501, 0.15475, 0.15487501, 0.155, 0.155125, 0.15525001, 0.155375, 0.15550001, 0.155625, 0.15575, 0.15587501, 0.156, 0.15612501, 0.15625, 0.156375, 0.15650001, 0.156625, 0.15675001, 0.15687501, 0.157, 0.15712501, 0.15725, 0.15737501, 0.15750001, 0.157625, 0.15775001, 0.157875, 0.158, 0.15812501, 0.15825, 0.15837501, 0.1585, 0.158625, 0.15875001, 0.158875, 0.15900001, 0.159125, 0.15925, 0.15937501, 0.1595, 0.15962501, 0.15975001, 0.159875, 0.16000001, 0.160125, 0.16025001, 0.16037501, 0.1605, 0.16062501, 0.16075, 0.16087501, 0.16100001, 0.161125, 0.16125001, 0.161375, 0.1615, 0.16162501, 0.16175, 0.16187501, 0.162, 0.162125, 0.16225001, 0.162375, 0.16250001, 0.16262501, 0.16275, 0.16287501, 0.163, 0.16312501, 0.16325001, 0.163375, 0.16350001, 0.163625, 0.16375001, 0.16387501, 0.164, 0.16412501, 0.16425, 0.164375, 0.16450001, 0.164625, 0.16475001, 0.164875, 0.165, 0.16512501, 0.16525, 0.16537501, 0.16550002, 0.165625, 0.16575001, 0.165875, 0.16600001, 0.16612501, 0.16625, 0.16637501, 0.1665, 0.16662501, 0.16675001, 0.166875, 0.16700001, 0.167125, 0.16725, 0.16737501, 0.1675, 0.16762501, 0.16775, 0.167875, 0.16800001, 0.168125, 0.16825001, 0.16837502, 0.1685, 0.16862501, 0.16875, 0.16887501, 0.16900001, 0.169125, 0.16925001, 0.169375, 0.16950001, 0.16962501, 0.16975, 0.16987501, 0.17, 0.17012501, 0.17025001, 0.170375, 0.17050001, 0.170625, 0.17075, 0.17087501, 0.171, 0.17112501, 0.17125002, 0.171375, 0.17150001, 0.171625, 0.17175001, 0.17187501, 0.172, 0.17212501, 0.17225, 0.17237501, 0.17250001, 0.172625, 0.17275001, 0.172875, 0.17300001, 0.17312501, 0.17325, 0.17337501, 0.1735, 0.173625, 0.17375001, 0.173875, 0.17400001, 0.174125, 0.17425, 0.17437501, 0.1745, 0.17462501, 0.17475002, 0.174875, 0.17500001, 0.175125, 0.17525001, 0.17537501, 0.1755, 0.17562501, 0.17575, 0.17587501, 0.17600001, 0.176125, 0.17625001, 0.176375, 0.17650001, 0.17662501, 0.17675, 0.17687501, 0.177, 0.177125, 0.17725001, 0.177375, 0.17750001, 0.17762502, 0.17775, 0.17787501, 0.178, 0.17812501, 0.17825001, 0.178375, 0.17850001, 0.178625, 0.17875001, 0.17887501, 0.179, 0.17912501, 0.17925, 0.17937501, 0.17950001, 0.179625, 0.17975001, 0.179875, 0.18, 0.18012501, 0.18025, 0.18037501, 0.18050002, 0.180625, 0.18075001, 0.180875, 0.18100001, 0.18112502, 0.18125, 0.18137501, 0.1815, 0.18162501, 0.18175001, 0.181875, 0.18200001, 0.182125, 0.18225001, 0.18237501, 0.1825, 0.18262501, 0.18275, 0.182875, 0.18300001, 0.183125, 0.18325001, 0.18337502, 0.1835, 0.18362501, 0.18375, 0.18387501, 0.18400002, 0.184125, 0.18425001, 0.184375, 0.18450001, 0.18462501, 0.18475, 0.18487501, 0.185, 0.18512501, 0.18525001, 0.185375, 0.18550001, 0.185625, 0.18575001, 0.18587501, 0.186, 0.18612501, 0.18625002, 0.186375, 0.18650001, 0.186625, 0.18675001, 0.18687502, 0.187, 0.18712501, 0.18725, 0.18737501, 0.18750001, 0.187625, 0.18775001, 0.187875, 0.18800001, 0.18812501, 0.18825, 0.18837501, 0.1885, 0.18862501, 0.18875001, 0.188875, 0.18900001, 0.18912502, 0.18925, 0.18937501, 0.1895, 0.18962501, 0.18975002, 0.189875, 0.19000001, 0.190125, 0.19025001, 0.19037502, 0.1905, 0.19062501, 0.19075, 0.19087501, 0.19100001, 0.191125, 0.19125001, 0.191375, 0.19150001, 0.19162501, 0.19175, 0.19187501, 0.192, 0.19212501, 0.19225001, 0.192375, 0.19250001, 0.19262502, 0.19275, 0.19287501, 0.193, 0.19312501, 0.19325002, 0.193375, 0.19350001, 0.193625, 0.19375001, 0.19387501, 0.194, 0.19412501, 0.19425, 0.19437501, 0.19450001, 0.194625, 0.19475001, 0.194875, 0.19500001, 0.19512501, 0.19525, 0.19537501, 0.19550002, 0.195625, 0.19575001, 0.195875, 0.19600001, 0.19612502, 0.19625, 0.19637501, 0.1965, 0.19662501, 0.19675002, 0.196875, 0.19700001, 0.197125, 0.19725001, 0.19737501, 0.1975, 0.19762501, 0.19775, 0.19787501, 0.19800001, 0.198125, 0.19825001, 0.19837502, 0.1985, 0.19862501, 0.19875, 0.19887501, 0.19900002, 0.199125, 0.19925001, 0.199375, 0.19950001, 0.19962502, 0.19975, 0.19987501, 0.2, 0.20012501, 0.20025001, 0.200375, 0.20050001, 0.200625, 0.20075001, 0.20087501, 0.201, 0.20112501, 0.20125002, 0.20137501, 0.20150001, 0.201625, 0.20175001, 0.20187502, 0.202, 0.20212501, 0.20225, 0.20237501, 0.20250002, 0.202625, 0.20275001, 0.202875, 0.20300001, 0.20312501, 0.20325, 0.20337501, 0.2035, 0.20362501, 0.20375001, 0.203875, 0.20400001, 0.20412502, 0.20425001, 0.20437501, 0.2045, 0.20462501, 0.20475002, 0.204875, 0.20500001, 0.205125, 0.20525001, 0.20537502, 0.2055, 0.20562501, 0.20575, 0.20587501, 0.20600002, 0.206125, 0.20625001, 0.206375, 0.20650001, 0.20662501, 0.20675, 0.20687501, 0.20700002, 0.20712501, 0.20725001, 0.207375, 0.20750001, 0.20762502, 0.20775001, 0.20787501, 0.208, 0.20812501, 0.20825002, 0.208375, 0.20850001, 0.208625, 0.20875001, 0.20887502, 0.209, 0.20912501, 0.20925, 0.20937501, 0.20950001, 0.209625, 0.20975001, 0.20987502, 0.21000001, 0.21012501, 0.21025, 0.21037501, 0.21050002, 0.21062501, 0.21075001, 0.210875, 0.21100001, 0.21112502, 0.21125, 0.21137501, 0.2115, 0.21162501, 0.21175002, 0.211875, 0.21200001, 0.212125, 0.21225001, 0.21237502, 0.2125, 0.21262501, 0.21275, 0.21287501, 0.21300001, 0.213125, 0.21325001, 0.21337502, 0.21350001, 0.21362501, 0.21375, 0.21387501, 0.21400002, 0.214125, 0.21425001, 0.214375, 0.21450001, 0.21462502, 0.21475, 0.21487501, 0.215, 0.21512501, 0.21525002, 0.215375, 0.21550001, 0.215625, 0.21575001, 0.21587501, 0.216, 0.21612501, 0.21625002, 0.21637501, 0.21650001, 0.216625, 0.21675001, 0.21687502, 0.21700001, 0.21712501, 0.21725, 0.21737501, 0.21750002, 0.217625, 0.21775001, 0.217875, 0.21800001, 0.21812502, 0.21825, 0.21837501, 0.2185, 0.21862501, 0.21875001, 0.218875, 0.21900001, 0.21912502, 0.21925001, 0.21937501, 0.2195, 0.21962501, 0.21975002, 0.21987501, 0.22000001, 0.220125, 0.22025001, 0.22037502, 0.2205, 0.22062501, 0.22075, 0.22087501, 0.22100002, 0.221125, 0.22125001, 0.221375, 0.22150001, 0.22162502, 0.22175, 0.22187501, 0.22200002, 0.22212501, 0.22225001, 0.222375, 0.22250001, 0.22262502, 0.22275001, 0.22287501, 0.223, 0.22312501, 0.22325002, 0.22337501, 0.22350001, 0.223625, 0.22375001, 0.22387502, 0.224, 0.22412501, 0.22425, 0.22437501, 0.22450002, 0.224625, 0.22475001, 0.22487502, 0.22500001, 0.22512501, 0.22525, 0.22537501, 0.22550002, 0.22562501, 0.22575001, 0.225875, 0.22600001, 0.22612502, 0.22625001, 0.22637501, 0.2265, 0.22662501, 0.22675002, 0.226875, 0.22700001, 0.227125, 0.22725001, 0.22737502, 0.2275, 0.22762501, 0.22775002, 0.22787501, 0.22800002, 0.228125, 0.22825001, 0.22837502, 0.22850001, 0.22862501, 0.22875, 0.22887501, 0.22900002, 0.22912501, 0.22925001, 0.229375, 0.22950001, 0.22962502, 0.22975, 0.22987501, 0.23, 0.23012501, 0.23025002, 0.230375, 0.23050001, 0.230625, 0.23075001, 0.23087502, 0.231, 0.23112501, 0.23125002, 0.23137501, 0.23150001, 0.231625, 0.23175001, 0.23187502, 0.23200001, 0.23212501, 0.23225, 0.23237501, 0.23250002, 0.23262501, 0.23275001, 0.232875, 0.23300001, 0.23312502, 0.23325, 0.23337501, 0.2335, 0.23362501, 0.23375002, 0.233875, 0.23400001, 0.23412502, 0.23425001, 0.23437501, 0.2345, 0.23462501, 0.23475002, 0.23487501, 0.23500001, 0.235125, 0.23525001, 0.23537502, 0.23550001, 0.23562501, 0.23575, 0.23587501, 0.23600002, 0.236125, 0.23625001, 0.236375, 0.23650001, 0.23662502, 0.23675, 0.23687501, 0.23700002, 0.23712501, 0.23725002, 0.237375, 0.23750001, 0.23762502, 0.23775001, 0.23787501, 0.238, 0.23812501, 0.23825002, 0.23837501, 0.23850001, 0.238625, 0.23875001, 0.23887502, 0.23900001, 0.23912501, 0.23925, 0.23937501, 0.23950002, 0.239625, 0.23975001, 0.23987502, 0.24000001, 0.24012502, 0.24025, 0.24037501, 0.24050002, 0.24062501, 0.24075001, 0.240875, 0.24100001, 0.24112502, 0.24125001, 0.24137501, 0.2415, 0.24162501, 0.24175002, 0.24187501, 0.24200001, 0.242125, 0.24225001, 0.24237502, 0.2425, 0.24262501, 0.24275002, 0.24287501, 0.24300002, 0.243125, 0.24325001, 0.24337502, 0.24350001, 0.24362502, 0.24375, 0.24387501, 0.24400002, 0.24412501, 0.24425001, 0.244375, 0.24450001, 0.24462502, 0.24475001, 0.24487501, 0.245, 0.24512501, 0.24525002, 0.245375, 0.24550001, 0.24562502, 0.24575001, 0.24587502, 0.246, 0.24612501, 0.24625002, 0.24637501, 0.24650002, 0.246625, 0.24675001, 0.24687502, 0.24700001, 0.24712501, 0.24725, 0.24737501, 0.24750002, 0.24762501, 0.24775001, 0.247875, 0.24800001, 0.24812502, 0.24825001, 0.24837501, 0.2485, 0.24862501, 0.24875002, 0.248875, 0.24900001, 0.24912502, 0.24925001, 0.24937502, 0.2495, 0.24962501, 0.24975002, 0.24987501, 0.25, 0.25012502, 0.25025, 0.250375, 0.25050002, 0.250625, 0.25075, 0.25087503, 0.25100002, 0.251125, 0.25125, 0.25137502, 0.2515, 0.251625, 0.25175002, 0.251875, 0.252, 0.25212502, 0.25225002, 0.252375, 0.2525, 0.25262502, 0.25275, 0.252875, 0.25300002, 0.253125, 0.25325, 0.25337502, 0.2535, 0.253625, 0.25375003, 0.25387502, 0.254, 0.254125, 0.25425002, 0.254375, 0.2545, 0.25462502, 0.25475, 0.254875, 0.25500003, 0.25512502, 0.25525, 0.255375, 0.25550002, 0.255625, 0.25575, 0.25587502, 0.256, 0.256125, 0.25625002, 0.256375, 0.2565, 0.25662503, 0.25675002, 0.256875, 0.257, 0.25712502, 0.25725, 0.257375, 0.25750002, 0.257625, 0.25775, 0.25787503, 0.25800002, 0.258125, 0.25825, 0.25837502, 0.2585, 0.258625, 0.25875002, 0.258875, 0.259, 0.25912502, 0.25925002, 0.259375, 0.25950003, 0.25962502, 0.25975, 0.259875, 0.26000002, 0.260125, 0.26025, 0.26037502, 0.2605, 0.260625, 0.26075003, 0.26087502, 0.261, 0.261125, 0.26125002, 0.261375, 0.2615, 0.26162502, 0.26175, 0.261875, 0.26200002, 0.26212502, 0.26225, 0.26237503, 0.26250002, 0.262625, 0.26275, 0.26287502, 0.263, 0.263125, 0.26325002, 0.263375, 0.2635, 0.26362503, 0.26375002, 0.263875, 0.264, 0.26412502, 0.26425, 0.264375, 0.26450002, 0.264625, 0.26475, 0.26487502, 0.26500002, 0.265125, 0.26525003, 0.26537502, 0.2655, 0.265625, 0.26575002, 0.265875, 0.266, 0.26612502, 0.26625, 0.266375, 0.26650003, 0.26662502, 0.26675, 0.266875, 0.26700002, 0.267125, 0.26725, 0.26737502, 0.2675, 0.267625, 0.26775002, 0.26787502, 0.268, 0.26812503, 0.26825002, 0.268375, 0.2685, 0.26862502, 0.26875, 0.268875, 0.26900002, 0.269125, 0.26925, 0.26937503, 0.26950002, 0.269625, 0.26975, 0.26987502, 0.27, 0.270125, 0.27025002, 0.270375, 0.2705, 0.27062503, 0.27075002, 0.270875, 0.27100003, 0.27112502, 0.27125, 0.271375, 0.27150002, 0.271625, 0.27175, 0.27187502, 0.272, 0.272125, 0.27225003, 0.27237502, 0.2725, 0.272625, 0.27275002, 0.272875, 0.273, 0.27312502, 0.27325, 0.273375, 0.27350003, 0.27362502, 0.27375, 0.27387503, 0.27400002, 0.274125, 0.27425, 0.27437502, 0.2745, 0.274625, 0.27475002, 0.27487502, 0.275, 0.27512503, 0.27525002, 0.275375, 0.2755, 0.27562502, 0.27575, 0.275875, 0.27600002, 0.276125, 0.27625, 0.27637503, 0.27650002, 0.276625, 0.27675, 0.27687502, 0.277, 0.277125, 0.27725002, 0.277375, 0.2775, 0.27762502, 0.27775002, 0.277875, 0.27800003, 0.27812502, 0.27825, 0.278375, 0.27850002, 0.278625, 0.27875, 0.27887502, 0.279, 0.279125, 0.27925003, 0.27937502, 0.2795, 0.279625, 0.27975002, 0.279875, 0.28, 0.28012502, 0.28025, 0.280375, 0.28050002, 0.28062502, 0.28075, 0.28087503, 0.28100002, 0.281125, 0.28125, 0.28137502, 0.2815, 0.281625, 0.28175002, 0.281875, 0.282, 0.28212503, 0.28225002, 0.282375, 0.2825, 0.28262502, 0.28275, 0.282875, 0.28300002, 0.283125, 0.28325, 0.28337502, 0.28350002, 0.283625, 0.28375003, 0.28387502, 0.284, 0.284125, 0.28425002, 0.284375, 0.2845, 0.28462502, 0.28475, 0.284875, 0.28500003, 0.28512502, 0.28525, 0.285375, 0.28550002, 0.285625, 0.28575, 0.28587502, 0.286, 0.286125, 0.28625003, 0.28637502, 0.2865, 0.28662503, 0.28675002, 0.286875, 0.287, 0.28712502, 0.28725, 0.287375, 0.28750002, 0.287625, 0.28775, 0.28787503, 0.28800002, 0.288125, 0.28825, 0.28837502, 0.2885, 0.288625, 0.28875002, 0.288875, 0.289, 0.28912503, 0.28925002, 0.289375, 0.28950003, 0.28962502, 0.28975, 0.289875, 0.29000002, 0.290125, 0.29025, 0.29037502, 0.29050002, 0.290625, 0.29075003, 0.29087502, 0.291, 0.291125, 0.29125002, 0.291375, 0.2915, 0.29162502, 0.29175, 0.291875, 0.29200003, 0.29212502, 0.29225, 0.29237503, 0.29250002, 0.292625, 0.29275, 0.29287502, 0.293, 0.293125, 0.29325002, 0.29337502, 0.2935, 0.29362503, 0.29375002, 0.293875, 0.294, 0.29412502, 0.29425, 0.294375, 0.29450002, 0.294625, 0.29475, 0.29487503, 0.29500002, 0.295125, 0.29525003, 0.29537502, 0.2955, 0.295625, 0.29575002, 0.295875, 0.296, 0.29612502, 0.29625002, 0.296375, 0.29650003, 0.29662502, 0.29675, 0.296875, 0.29700002, 0.297125, 0.29725, 0.29737502, 0.2975, 0.297625, 0.29775003, 0.29787502, 0.298, 0.29812503, 0.29825002, 0.298375, 0.2985, 0.29862502, 0.29875, 0.298875, 0.29900002, 0.29912502, 0.29925, 0.29937503, 0.29950002, 0.299625, 0.29975, 0.29987502, 0.3, 0.300125, 0.30025002, 0.300375, 0.3005, 0.30062503, 0.30075002, 0.300875, 0.30100003, 0.30112502, 0.30125, 0.301375, 0.30150002, 0.301625, 0.30175, 0.30187503, 0.30200002, 0.302125, 0.30225003, 0.30237502, 0.3025, 0.302625, 0.30275002, 0.302875, 0.303, 0.30312502, 0.30325, 0.303375, 0.30350003, 0.30362502, 0.30375, 0.30387503, 0.30400002, 0.304125, 0.30425, 0.30437502, 0.3045, 0.304625, 0.30475003, 0.30487502, 0.305, 0.30512503, 0.30525002, 0.305375, 0.3055, 0.30562502, 0.30575, 0.305875, 0.30600002, 0.30612502, 0.30625, 0.30637503, 0.30650002, 0.306625, 0.30675003, 0.30687502, 0.307, 0.307125, 0.30725002, 0.307375, 0.3075, 0.30762503, 0.30775002, 0.307875, 0.30800003, 0.30812502, 0.30825, 0.308375, 0.30850002, 0.308625, 0.30875, 0.30887502, 0.30900002, 0.309125, 0.30925003, 0.30937502, 0.3095, 0.30962503, 0.30975002, 0.309875, 0.31, 0.31012502, 0.31025, 0.310375, 0.31050003, 0.31062502, 0.31075, 0.31087503, 0.31100002, 0.311125, 0.31125, 0.31137502, 0.3115, 0.311625, 0.31175002, 0.31187502, 0.312, 0.31212503, 0.31225002, 0.312375, 0.3125, 0.31262502, 0.31275, 0.312875, 0.31300002, 0.313125, 0.31325, 0.31337503, 0.31350002, 0.313625, 0.31375003, 0.31387502, 0.314, 0.314125, 0.31425002, 0.314375, 0.3145, 0.31462502, 0.31475002, 0.314875, 0.31500003, 0.31512502, 0.31525, 0.315375, 0.31550002, 0.315625, 0.31575, 0.31587502, 0.316, 0.316125, 0.31625003, 0.31637502, 0.3165, 0.31662503, 0.31675002, 0.316875, 0.317, 0.31712502, 0.31725, 0.317375, 0.31750003, 0.31762502, 0.31775, 0.31787503, 0.31800002, 0.318125, 0.31825, 0.31837502, 0.3185, 0.318625, 0.31875002, 0.318875, 0.319, 0.31912503, 0.31925002, 0.319375, 0.31950003, 0.31962502, 0.31975, 0.319875, 0.32000002, 0.320125, 0.32025, 0.32037503, 0.32050002, 0.320625, 0.32075003, 0.32087502, 0.321, 0.321125, 0.32125002, 0.321375, 0.3215, 0.32162502, 0.32175002, 0.321875, 0.32200003, 0.32212502, 0.32225, 0.32237503, 0.32250002, 0.322625, 0.32275, 0.32287502, 0.323, 0.323125, 0.32325003, 0.32337502, 0.3235, 0.32362503, 0.32375002, 0.323875, 0.324, 0.32412502, 0.32425, 0.324375, 0.32450002, 0.32462502, 0.32475, 0.32487503, 0.32500002, 0.325125, 0.32525003, 0.32537502, 0.3255, 0.325625, 0.32575002, 0.325875, 0.326, 0.32612503, 0.32625002, 0.326375, 0.32650003, 0.32662502, 0.32675, 0.326875, 0.32700002, 0.327125, 0.32725, 0.32737502, 0.32750002, 0.327625, 0.32775003, 0.32787502, 0.328, 0.32812503, 0.32825002, 0.328375, 0.3285, 0.32862502, 0.32875, 0.328875, 0.32900003, 0.32912502, 0.32925, 0.32937503, 0.32950002, 0.329625, 0.32975, 0.32987502, 0.33, 0.330125, 0.33025002, 0.33037502, 0.3305, 0.33062503, 0.33075002, 0.330875, 0.33100003, 0.33112502, 0.33125, 0.331375, 0.33150002, 0.331625, 0.33175, 0.33187503, 0.33200002, 0.332125, 0.33225003, 0.33237502, 0.3325, 0.332625, 0.33275002, 0.332875, 0.333, 0.33312503, 0.33325002, 0.333375, 0.33350003, 0.33362502, 0.33375, 0.33387503, 0.33400002, 0.334125, 0.33425, 0.33437502, 0.3345, 0.334625, 0.33475003, 0.33487502, 0.335, 0.33512503, 0.33525002, 0.335375, 0.3355, 0.33562502, 0.33575, 0.335875, 0.33600003, 0.33612502, 0.33625, 0.33637503, 0.33650002, 0.336625, 0.33675003, 0.33687502, 0.337, 0.337125, 0.33725002, 0.33737502, 0.3375, 0.33762503, 0.33775002, 0.337875, 0.33800003, 0.33812502, 0.33825, 0.338375, 0.33850002, 0.338625, 0.33875, 0.33887503, 0.33900002, 0.339125, 0.33925003, 0.33937502, 0.3395, 0.33962503, 0.33975002, 0.339875, 0.34, 0.34012502, 0.34025002, 0.340375, 0.34050003, 0.34062502, 0.34075, 0.34087503, 0.34100002, 0.341125, 0.34125, 0.34137502, 0.3415, 0.341625, 0.34175003, 0.34187502, 0.342, 0.34212503, 0.34225002, 0.342375, 0.34250003, 0.34262502, 0.34275, 0.342875, 0.34300002, 0.34312502, 0.34325, 0.34337503, 0.34350002, 0.343625, 0.34375003, 0.34387502, 0.344, 0.344125, 0.34425002, 0.344375, 0.3445, 0.34462503, 0.34475002, 0.344875, 0.34500003, 0.34512502, 0.34525, 0.34537503, 0.34550002, 0.345625, 0.34575, 0.34587502, 0.34600002, 0.346125, 0.34625003, 0.34637502, 0.3465, 0.34662503, 0.34675002, 0.346875, 0.347, 0.34712502, 0.34725, 0.347375, 0.34750003, 0.34762502, 0.34775, 0.34787503, 0.34800002, 0.348125, 0.34825, 0.34837502, 0.3485, 0.348625, 0.34875003, 0.34887502, 0.349, 0.34912503, 0.34925002, 0.349375, 0.34950003, 0.34962502, 0.34975, 0.349875, 0.35000002, 0.350125, 0.35025, 0.35037503, 0.35050002, 0.350625, 0.35075003, 0.35087502, 0.351, 0.351125, 0.35125002, 0.351375, 0.3515, 0.35162503, 0.35175002, 0.351875, 0.35200003, 0.35212502, 0.35225, 0.35237503, 0.35250002, 0.352625, 0.35275, 0.35287502, 0.35300002, 0.353125, 0.35325003, 0.35337502, 0.3535, 0.35362503, 0.35375002, 0.353875, 0.354, 0.35412502, 0.35425, 0.354375, 0.35450003, 0.35462502, 0.35475, 0.35487503, 0.35500002, 0.355125, 0.35525003, 0.35537502, 0.3555, 0.355625, 0.35575002, 0.35587502, 0.356, 0.35612503, 0.35625002, 0.356375, 0.35650003, 0.35662502, 0.35675, 0.356875, 0.35700002, 0.357125, 0.35725, 0.35737503, 0.35750002, 0.357625, 0.35775003, 0.35787502, 0.358, 0.35812503, 0.35825002, 0.358375, 0.3585, 0.35862502, 0.35875002, 0.358875, 0.35900003, 0.35912502, 0.35925, 0.35937503, 0.35950002, 0.359625, 0.35975, 0.35987502, 0.36, 0.360125, 0.36025003, 0.36037502, 0.3605, 0.36062503, 0.36075002, 0.360875, 0.36100003, 0.36112502, 0.36125, 0.361375, 0.36150002, 0.36162502, 0.36175, 0.36187503, 0.36200002, 0.362125, 0.36225003, 0.36237502, 0.3625, 0.362625, 0.36275002, 0.362875, 0.363, 0.36312503, 0.36325002, 0.363375, 0.36350003, 0.36362502, 0.36375, 0.36387503, 0.36400002, 0.364125, 0.36425, 0.36437503, 0.36450002, 0.364625, 0.36475003, 0.36487502, 0.365, 0.36512503, 0.36525002, 0.365375, 0.3655, 0.36562502, 0.36575, 0.365875, 0.36600003, 0.36612502, 0.36625, 0.36637503, 0.36650002, 0.366625, 0.36675003, 0.36687502, 0.367, 0.367125, 0.36725003, 0.36737502, 0.3675, 0.36762503, 0.36775002, 0.367875, 0.36800003, 0.36812502, 0.36825, 0.368375, 0.36850002, 0.36862502, 0.36875, 0.36887503, 0.36900002, 0.369125, 0.36925003, 0.36937502, 0.3695, 0.36962503, 0.36975002, 0.369875, 0.37, 0.37012503, 0.37025002, 0.370375, 0.37050003, 0.37062502, 0.37075, 0.37087503, 0.37100002, 0.371125, 0.37125, 0.37137502, 0.37150002, 0.371625, 0.37175003, 0.37187502, 0.372, 0.37212503, 0.37225002, 0.372375, 0.37250003, 0.37262502, 0.37275, 0.372875, 0.37300003, 0.37312502, 0.37325, 0.37337503, 0.37350002, 0.373625, 0.37375003, 0.37387502, 0.374, 0.374125, 0.37425002, 0.37437502, 0.3745, 0.37462503, 0.37475002, 0.374875, 0.37500003, 0.37512502, 0.37525, 0.37537503, 0.37550002, 0.375625, 0.37575, 0.37587503, 0.37600002, 0.376125, 0.37625003, 0.37637502, 0.3765, 0.37662503, 0.37675002, 0.376875, 0.377, 0.37712502, 0.37725002, 0.377375, 0.37750003, 0.37762502, 0.37775, 0.37787503, 0.37800002, 0.378125, 0.37825003, 0.37837502, 0.3785, 0.378625, 0.37875003, 0.37887502, 0.379, 0.37912503, 0.37925002, 0.379375, 0.37950003, 0.37962502, 0.37975, 0.379875, 0.38000003, 0.38012502, 0.38025, 0.38037503, 0.38050002, 0.380625, 0.38075003, 0.38087502, 0.381, 0.38112503, 0.38125002, 0.381375, 0.3815, 0.38162503, 0.38175002, 0.381875, 0.38200003, 0.38212502, 0.38225, 0.38237503, 0.38250002, 0.382625, 0.38275, 0.38287503, 0.38300002, 0.383125, 0.38325003, 0.38337502, 0.3835, 0.38362503, 0.38375002, 0.383875, 0.384, 0.38412502, 0.38425002, 0.384375, 0.38450003, 0.38462502, 0.38475, 0.38487503, 0.38500002, 0.385125, 0.38525003, 0.38537502, 0.3855, 0.385625, 0.38575003, 0.38587502, 0.386, 0.38612503, 0.38625002, 0.386375, 0.38650003, 0.38662502, 0.38675, 0.386875, 0.38700002, 0.38712502, 0.38725, 0.38737503, 0.38750002, 0.387625, 0.38775003, 0.38787502, 0.388, 0.38812503, 0.38825002, 0.388375, 0.3885, 0.38862503, 0.38875002, 0.388875, 0.38900003, 0.38912502, 0.38925, 0.38937503, 0.38950002, 0.389625, 0.38975, 0.38987502, 0.39000002, 0.390125, 0.39025003, 0.39037502, 0.3905, 0.39062503, 0.39075002, 0.390875, 0.39100003, 0.39112502, 0.39125, 0.391375, 0.39150003, 0.39162502, 0.39175, 0.39187503, 0.39200002, 0.392125, 0.39225003, 0.39237502, 0.3925, 0.392625, 0.39275002, 0.39287502, 0.393, 0.39312503, 0.39325002, 0.393375, 0.39350003, 0.39362502, 0.39375, 0.39387503, 0.39400002, 0.394125, 0.39425, 0.39437503, 0.39450002, 0.394625, 0.39475003, 0.39487502, 0.395, 0.39512503, 0.39525002, 0.395375, 0.3955, 0.39562503, 0.39575002, 0.395875, 0.39600003, 0.39612502, 0.39625, 0.39637503, 0.39650002, 0.396625, 0.39675003, 0.39687502, 0.397, 0.397125, 0.39725003, 0.39737502, 0.3975, 0.39762503, 0.39775002, 0.397875, 0.39800003, 0.39812502, 0.39825, 0.398375, 0.39850003, 0.39862502, 0.39875, 0.39887503, 0.39900002, 0.399125, 0.39925003, 0.39937502, 0.3995, 0.39962503, 0.39975002, 0.39987502, 0.4, 0.40012503, 0.40025002, 0.400375, 0.40050003, 0.40062502, 0.40075, 0.40087503, 0.40100002, 0.401125, 0.40125, 0.40137503, 0.40150002, 0.401625, 0.40175003, 0.40187502, 0.402, 0.40212503, 0.40225002, 0.402375, 0.40250003, 0.40262502, 0.40275002, 0.402875, 0.40300003, 0.40312502, 0.40325, 0.40337503, 0.40350002, 0.403625, 0.40375003, 0.40387502, 0.404, 0.404125, 0.40425003, 0.40437502, 0.4045, 0.40462503, 0.40475002, 0.404875, 0.40500003, 0.40512502, 0.40525, 0.40537503, 0.40550002, 0.40562502, 0.40575, 0.40587503, 0.40600002, 0.406125, 0.40625003, 0.40637502, 0.4065, 0.40662503, 0.40675002, 0.406875, 0.407, 0.40712503, 0.40725002, 0.407375, 0.40750003, 0.40762502, 0.40775, 0.40787503, 0.40800002, 0.408125, 0.40825003, 0.40837502, 0.40850002, 0.408625, 0.40875003, 0.40887502, 0.409, 0.40912503, 0.40925002, 0.409375, 0.40950003, 0.40962502, 0.40975, 0.409875, 0.41000003, 0.41012502, 0.41025, 0.41037503, 0.41050002, 0.410625, 0.41075003, 0.41087502, 0.411, 0.41112503, 0.41125003, 0.41137502, 0.4115, 0.41162503, 0.41175002, 0.411875, 0.41200003, 0.41212502, 0.41225, 0.41237503, 0.41250002, 0.412625, 0.41275, 0.41287503, 0.41300002, 0.413125, 0.41325003, 0.41337502, 0.4135, 0.41362503, 0.41375002, 0.413875, 0.41400003, 0.41412503, 0.41425002, 0.414375, 0.41450003, 0.41462502, 0.41475, 0.41487503, 0.41500002, 0.415125, 0.41525003, 0.41537502, 0.41550002, 0.415625, 0.41575003, 0.41587502, 0.416, 0.41612503, 0.41625002, 0.416375, 0.41650003, 0.41662502, 0.41675, 0.41687503, 0.41700003, 0.41712502, 0.41725, 0.41737503, 0.41750002, 0.417625, 0.41775003, 0.41787502, 0.418, 0.41812503, 0.41825002, 0.41837502, 0.4185, 0.41862503, 0.41875002, 0.418875, 0.41900003, 0.41912502, 0.41925, 0.41937503, 0.41950002, 0.419625, 0.41975003, 0.41987503, 0.42000002, 0.420125, 0.42025003, 0.42037502, 0.4205, 0.42062503, 0.42075002, 0.420875, 0.42100003, 0.42112502, 0.42125002, 0.421375, 0.42150003, 0.42162502, 0.42175, 0.42187503, 0.42200002, 0.422125, 0.42225003, 0.42237502, 0.4225, 0.422625, 0.42275003, 0.42287502, 0.423, 0.42312503, 0.42325002, 0.423375, 0.42350003, 0.42362502, 0.42375, 0.42387503, 0.42400002, 0.42412502, 0.42425, 0.42437503, 0.42450002, 0.424625, 0.42475003, 0.42487502, 0.425, 0.42512503, 0.42525002, 0.425375, 0.4255, 0.42562503, 0.42575002, 0.425875, 0.42600003, 0.42612502, 0.42625, 0.42637503, 0.42650002, 0.426625, 0.42675003, 0.42687503, 0.42700002, 0.427125, 0.42725003, 0.42737502, 0.4275, 0.42762503, 0.42775002, 0.427875, 0.42800003, 0.42812502, 0.42825, 0.428375, 0.42850003, 0.42862502, 0.42875, 0.42887503, 0.42900002, 0.429125, 0.42925003, 0.42937502, 0.4295, 0.42962503, 0.42975003, 0.42987502, 0.43, 0.43012503, 0.43025002, 0.430375, 0.43050003, 0.43062502, 0.43075, 0.43087503, 0.43100002, 0.43112502, 0.43125, 0.43137503, 0.43150002, 0.431625, 0.43175003, 0.43187502, 0.432, 0.43212503, 0.43225002, 0.432375, 0.43250003, 0.43262503, 0.43275002, 0.432875, 0.43300003, 0.43312502, 0.43325, 0.43337503, 0.43350002, 0.433625, 0.43375003, 0.43387502, 0.43400002, 0.434125, 0.43425003, 0.43437502, 0.4345, 0.43462503, 0.43475002, 0.434875, 0.43500003, 0.43512502, 0.43525, 0.43537503, 0.43550003, 0.43562502, 0.43575, 0.43587503, 0.43600002, 0.436125, 0.43625003, 0.43637502, 0.4365, 0.43662503, 0.43675002, 0.43687502, 0.437, 0.43712503, 0.43725002, 0.437375, 0.43750003, 0.43762502, 0.43775, 0.43787503, 0.43800002, 0.438125, 0.43825004, 0.43837503, 0.43850002, 0.438625, 0.43875003, 0.43887502, 0.439, 0.43912503, 0.43925002, 0.439375, 0.43950003, 0.43962502, 0.43975002, 0.439875, 0.44000003, 0.44012502, 0.44025, 0.44037503, 0.44050002, 0.440625, 0.44075003, 0.44087502, 0.441, 0.44112504, 0.44125003, 0.44137502, 0.4415, 0.44162503, 0.44175002, 0.441875, 0.44200003, 0.44212502, 0.44225, 0.44237503, 0.44250003, 0.44262502, 0.44275, 0.44287503, 0.44300002, 0.443125, 0.44325003, 0.44337502, 0.4435, 0.44362503, 0.44375002, 0.443875, 0.44400004, 0.44412503, 0.44425002, 0.444375, 0.44450003, 0.44462502, 0.44475, 0.44487503, 0.44500002, 0.445125, 0.44525003, 0.44537503, 0.44550002, 0.445625, 0.44575003, 0.44587502, 0.446, 0.44612503, 0.44625002, 0.446375, 0.44650003, 0.44662502, 0.44675002, 0.44687504, 0.44700003, 0.44712502, 0.44725, 0.44737503, 0.44750002, 0.447625, 0.44775003, 0.44787502, 0.448, 0.44812503, 0.44825003, 0.44837502, 0.4485, 0.44862503, 0.44875002, 0.448875, 0.44900003, 0.44912502, 0.44925, 0.44937503, 0.44950002, 0.44962502, 0.44975004, 0.44987503, 0.45000002, 0.450125, 0.45025003, 0.45037502, 0.4505, 0.45062503, 0.45075002, 0.450875, 0.45100003, 0.45112503, 0.45125002, 0.451375, 0.45150003, 0.45162502, 0.45175, 0.45187503, 0.45200002, 0.452125, 0.45225003, 0.45237502, 0.45250002, 0.45262504, 0.45275003, 0.45287502, 0.453, 0.45312503, 0.45325002, 0.453375, 0.45350003, 0.45362502, 0.45375, 0.45387504, 0.45400003, 0.45412502, 0.45425, 0.45437503, 0.45450002, 0.454625, 0.45475003, 0.45487502, 0.455, 0.45512503, 0.45525002, 0.45537502, 0.45550004, 0.45562503, 0.45575002, 0.455875, 0.45600003, 0.45612502, 0.45625, 0.45637503, 0.45650002, 0.456625, 0.45675004, 0.45687503, 0.45700002, 0.457125, 0.45725003, 0.45737502, 0.4575, 0.45762503, 0.45775002, 0.457875, 0.45800003, 0.45812503, 0.45825002, 0.458375, 0.45850003, 0.45862502, 0.45875, 0.45887503, 0.45900002, 0.459125, 0.45925003, 0.45937502, 0.4595, 0.45962504, 0.45975003, 0.45987502, 0.46, 0.46012503, 0.46025002, 0.460375, 0.46050003, 0.46062502, 0.46075, 0.46087503, 0.46100003, 0.46112502, 0.46125, 0.46137503, 0.46150002, 0.461625, 0.46175003, 0.46187502, 0.462, 0.46212503, 0.46225002, 0.46237502, 0.46250004, 0.46262503, 0.46275002, 0.462875, 0.46300003, 0.46312502, 0.46325, 0.46337503, 0.46350002, 0.463625, 0.46375003, 0.46387503, 0.46400002, 0.464125, 0.46425003, 0.46437502, 0.4645, 0.46462503, 0.46475002, 0.464875, 0.46500003, 0.46512502, 0.46525002, 0.46537504, 0.46550003, 0.46562502, 0.46575, 0.46587503, 0.46600002, 0.466125, 0.46625003, 0.46637502, 0.4665, 0.46662503, 0.46675003, 0.46687502, 0.467, 0.46712503, 0.46725002, 0.467375, 0.46750003, 0.46762502, 0.46775, 0.46787503, 0.46800002, 0.46812502, 0.46825004, 0.46837503, 0.46850002, 0.468625, 0.46875003, 0.46887502, 0.469, 0.46912503, 0.46925002, 0.469375, 0.46950004, 0.46962503, 0.46975002, 0.469875, 0.47000003, 0.47012502, 0.47025, 0.47037503, 0.47050002, 0.470625, 0.47075003, 0.47087502, 0.47100002, 0.47112504, 0.47125003, 0.47137502, 0.4715, 0.47162503, 0.47175002, 0.471875, 0.47200003, 0.47212502, 0.47225, 0.47237504, 0.47250003, 0.47262502, 0.47275, 0.47287503, 0.47300002, 0.473125, 0.47325003, 0.47337502, 0.4735, 0.47362503, 0.47375003, 0.47387502, 0.47400004, 0.47412503, 0.47425002, 0.474375, 0.47450003, 0.47462502, 0.47475, 0.47487503, 0.47500002, 0.475125, 0.47525004, 0.47537503, 0.47550002, 0.475625, 0.47575003, 0.47587502, 0.476, 0.47612503, 0.47625002, 0.476375, 0.47650003, 0.47662503, 0.47675002, 0.47687504, 0.47700003, 0.47712502, 0.47725, 0.47737503, 0.47750002, 0.477625, 0.47775003, 0.47787502, 0.47800002, 0.47812504, 0.47825003, 0.47837502, 0.4785, 0.47862503, 0.47875002, 0.478875, 0.47900003, 0.47912502, 0.47925, 0.47937503, 0.47950003, 0.47962502, 0.47975004, 0.47987503, 0.48000002, 0.480125, 0.48025003, 0.48037502, 0.4805, 0.48062503, 0.48075002, 0.48087502, 0.48100004, 0.48112503, 0.48125002, 0.481375, 0.48150003, 0.48162502, 0.48175, 0.48187503, 0.48200002, 0.482125, 0.48225003, 0.48237503, 0.48250002, 0.48262504, 0.48275003, 0.48287502, 0.483, 0.48312503, 0.48325002, 0.483375, 0.48350003, 0.48362502, 0.48375002, 0.48387504, 0.48400003, 0.48412502, 0.48425, 0.48437503, 0.48450002, 0.484625, 0.48475003, 0.48487502, 0.485, 0.48512504, 0.48525003, 0.48537502, 0.48550004, 0.48562503, 0.48575002, 0.485875, 0.48600003, 0.48612502, 0.48625, 0.48637503, 0.48650002, 0.48662502, 0.48675004, 0.48687503, 0.48700002, 0.487125, 0.48725003, 0.48737502, 0.4875, 0.48762503, 0.48775002, 0.487875, 0.48800004, 0.48812503, 0.48825002, 0.48837504, 0.48850003, 0.48862502, 0.48875, 0.48887503, 0.48900002, 0.489125, 0.48925003, 0.48937503, 0.48950002, 0.48962504, 0.48975003, 0.48987502, 0.49, 0.49012503, 0.49025002, 0.490375, 0.49050003, 0.49062502, 0.49075, 0.49087504, 0.49100003, 0.49112502, 0.49125004, 0.49137503, 0.49150002, 0.491625, 0.49175003, 0.49187502, 0.492, 0.49212503, 0.49225003, 0.49237502, 0.49250004, 0.49262503, 0.49275002, 0.492875, 0.49300003, 0.49312502, 0.49325, 0.49337503, 0.49350002, 0.49362502, 0.49375004, 0.49387503, 0.49400002, 0.494125, 0.49425003, 0.49437502, 0.4945, 0.49462503, 0.49475002, 0.494875, 0.49500003, 0.49512503, 0.49525002, 0.49537504, 0.49550003, 0.49562502, 0.49575, 0.49587503, 0.49600002, 0.496125, 0.49625003, 0.49637502, 0.49650002, 0.49662504, 0.49675003, 0.49687502, 0.497, 0.49712503, 0.49725002, 0.497375, 0.49750003, 0.49762502, 0.49775, 0.49787503, 0.49800003, 0.49812502, 0.49825004, 0.49837503, 0.49850002, 0.498625, 0.49875003, 0.49887502, 0.499, 0.49912503, 0.49925002, 0.49937502, 0.49950004, 0.49962503, 0.49975002, 0.499875, 0.5, 0.50012505, 0.50025004, 0.50037503, 0.5005, 0.500625, 0.50075, 0.500875, 0.50100005, 0.50112504, 0.50125, 0.501375, 0.5015, 0.501625, 0.50175005, 0.50187504, 0.50200003, 0.502125, 0.50225, 0.502375, 0.5025, 0.50262505, 0.50275004, 0.50287503, 0.503, 0.503125, 0.50325, 0.50337505, 0.50350004, 0.50362504, 0.50375, 0.503875, 0.504, 0.504125, 0.50425005, 0.50437504, 0.50450003, 0.504625, 0.50475, 0.504875, 0.505, 0.50512505, 0.50525004, 0.505375, 0.5055, 0.505625, 0.50575, 0.50587505, 0.50600004, 0.50612503, 0.50625, 0.506375, 0.5065, 0.506625, 0.50675005, 0.50687504, 0.507, 0.507125, 0.50725, 0.507375, 0.50750005, 0.50762504, 0.50775003, 0.507875, 0.508, 0.508125, 0.50825, 0.50837505, 0.50850004, 0.50862503, 0.50875, 0.508875, 0.509, 0.50912505, 0.50925004, 0.50937504, 0.5095, 0.509625, 0.50975, 0.509875, 0.51000005, 0.51012504, 0.51025003, 0.510375, 0.5105, 0.510625, 0.51075, 0.51087505, 0.51100004, 0.511125, 0.51125, 0.511375, 0.5115, 0.51162505, 0.51175004, 0.51187503, 0.512, 0.512125, 0.51225, 0.512375, 0.51250005, 0.51262504, 0.51275, 0.512875, 0.513, 0.513125, 0.51325005, 0.51337504, 0.51350003, 0.513625, 0.51375, 0.513875, 0.514, 0.51412505, 0.51425004, 0.51437503, 0.5145, 0.514625, 0.51475, 0.514875, 0.51500005, 0.51512504, 0.51525, 0.515375, 0.5155, 0.515625, 0.51575005, 0.51587504, 0.51600003, 0.516125, 0.51625, 0.516375, 0.5165, 0.51662505, 0.51675004, 0.516875, 0.517, 0.517125, 0.51725, 0.51737505, 0.51750004, 0.51762503, 0.51775, 0.517875, 0.518, 0.518125, 0.51825005, 0.51837504, 0.51850003, 0.518625, 0.51875, 0.518875, 0.51900005, 0.51912504, 0.51925004, 0.519375, 0.5195, 0.519625, 0.51975, 0.51987505, 0.52000004, 0.52012503, 0.52025, 0.520375, 0.5205, 0.520625, 0.52075005, 0.52087504, 0.521, 0.521125, 0.52125, 0.521375, 0.52150005, 0.52162504, 0.52175003, 0.521875, 0.522, 0.522125, 0.52225, 0.52237505, 0.52250004, 0.522625, 0.52275, 0.522875, 0.523, 0.52312505, 0.52325004, 0.52337503, 0.5235, 0.523625, 0.52375, 0.523875, 0.52400005, 0.52412504, 0.52425003, 0.524375, 0.5245, 0.524625, 0.52475005, 0.52487504, 0.52500004, 0.525125, 0.52525, 0.525375, 0.5255, 0.52562505, 0.52575004, 0.52587503, 0.526, 0.526125, 0.52625, 0.526375, 0.52650005, 0.52662504, 0.52675, 0.526875, 0.527, 0.527125, 0.52725005, 0.52737504, 0.52750003, 0.527625, 0.52775, 0.527875, 0.528, 0.52812505, 0.52825004, 0.528375, 0.5285, 0.528625, 0.52875, 0.52887505, 0.52900004, 0.52912503, 0.52925, 0.529375, 0.5295, 0.529625, 0.52975005, 0.52987504, 0.53000003, 0.530125, 0.53025, 0.530375, 0.53050005, 0.53062505, 0.53075004, 0.530875, 0.531, 0.531125, 0.53125, 0.53137505, 0.53150004, 0.53162503, 0.53175, 0.531875, 0.532, 0.532125, 0.53225005, 0.53237504, 0.5325, 0.532625, 0.53275, 0.532875, 0.53300005, 0.53312504, 0.53325003, 0.533375, 0.5335, 0.533625, 0.53375, 0.53387505, 0.53400004, 0.53412503, 0.53425, 0.534375, 0.5345, 0.53462505, 0.53475004, 0.53487504, 0.535, 0.535125, 0.53525, 0.535375, 0.53550005, 0.53562504, 0.53575003, 0.535875, 0.536, 0.536125, 0.53625005, 0.53637505, 0.53650004, 0.536625, 0.53675, 0.536875, 0.537, 0.53712505, 0.53725004, 0.53737503, 0.5375, 0.537625, 0.53775, 0.537875, 0.53800005, 0.53812504, 0.53825, 0.538375, 0.5385, 0.538625, 0.53875005, 0.53887504, 0.53900003, 0.539125, 0.53925, 0.539375, 0.5395, 0.53962505, 0.53975004, 0.53987503, 0.54, 0.540125, 0.54025, 0.54037505, 0.54050004, 0.54062504, 0.54075, 0.540875, 0.541, 0.541125, 0.54125005, 0.54137504, 0.54150003, 0.541625, 0.54175, 0.541875, 0.54200006, 0.54212505, 0.54225004, 0.542375, 0.5425, 0.542625, 0.54275, 0.54287505, 0.54300004, 0.54312503, 0.54325, 0.543375, 0.5435, 0.543625, 0.54375005, 0.54387504, 0.544, 0.544125, 0.54425, 0.544375, 0.54450005, 0.54462504, 0.54475003, 0.544875, 0.545, 0.545125, 0.54525, 0.54537505, 0.54550004, 0.54562503, 0.54575, 0.545875, 0.546, 0.54612505, 0.54625005, 0.54637504, 0.5465, 0.546625, 0.54675, 0.546875, 0.54700005, 0.54712504, 0.54725003, 0.547375, 0.5475, 0.547625, 0.54775006, 0.54787505, 0.54800004, 0.548125, 0.54825, 0.548375, 0.5485, 0.54862505, 0.54875004, 0.54887503, 0.549, 0.549125, 0.54925, 0.549375, 0.54950005, 0.54962504, 0.54975003, 0.549875, 0.55, 0.550125, 0.55025005, 0.55037504, 0.55050004, 0.550625, 0.55075, 0.550875, 0.551, 0.55112505, 0.55125004, 0.55137503, 0.5515, 0.551625, 0.55175, 0.55187505, 0.55200005, 0.55212504, 0.55225, 0.552375, 0.5525, 0.552625, 0.55275005, 0.55287504, 0.55300003, 0.553125, 0.55325, 0.553375, 0.5535, 0.55362505, 0.55375004, 0.553875, 0.554, 0.554125, 0.55425, 0.55437505, 0.55450004, 0.55462503, 0.55475, 0.554875, 0.555, 0.555125, 0.55525005, 0.55537504, 0.55550003, 0.555625, 0.55575, 0.555875, 0.55600005, 0.55612504, 0.55625004, 0.556375, 0.5565, 0.556625, 0.55675, 0.55687505, 0.55700004, 0.55712503, 0.55725, 0.557375, 0.5575, 0.55762506, 0.55775005, 0.55787504, 0.558, 0.558125, 0.55825, 0.558375, 0.55850005, 0.55862504, 0.55875003, 0.558875, 0.559, 0.559125, 0.55925, 0.55937505, 0.55950004, 0.559625, 0.55975, 0.559875, 0.56, 0.56012505, 0.56025004, 0.56037503, 0.5605, 0.560625, 0.56075, 0.560875, 0.56100005, 0.56112504, 0.56125003, 0.561375, 0.5615, 0.561625, 0.56175005, 0.56187505, 0.56200004, 0.562125, 0.56225, 0.562375, 0.5625, 0.56262505, 0.56275004, 0.56287503, 0.563, 0.563125, 0.56325, 0.56337506, 0.56350005, 0.56362504, 0.56375, 0.563875, 0.564, 0.564125, 0.56425005, 0.56437504, 0.56450003, 0.564625, 0.56475, 0.564875, 0.565, 0.56512505, 0.56525004, 0.56537503, 0.5655, 0.565625, 0.56575, 0.56587505, 0.56600004, 0.56612504, 0.56625, 0.566375, 0.5665, 0.566625, 0.56675005, 0.56687504, 0.56700003, 0.567125, 0.56725, 0.567375, 0.56750005, 0.56762505, 0.56775004, 0.567875, 0.568, 0.568125, 0.56825, 0.56837505, 0.56850004, 0.56862503, 0.56875, 0.568875, 0.569, 0.56912506, 0.56925005, 0.56937504, 0.5695, 0.569625, 0.56975, 0.569875, 0.57000005, 0.57012504, 0.57025003, 0.570375, 0.5705, 0.570625, 0.57075, 0.57087505, 0.57100004, 0.57112503, 0.57125, 0.571375, 0.5715, 0.57162505, 0.57175004, 0.57187504, 0.572, 0.572125, 0.57225, 0.572375, 0.57250005, 0.57262504, 0.57275003, 0.572875, 0.573, 0.573125, 0.57325006, 0.57337505, 0.57350004, 0.573625, 0.57375, 0.573875, 0.574, 0.57412505, 0.57425004, 0.57437503, 0.5745, 0.574625, 0.57475, 0.57487506, 0.57500005, 0.57512504, 0.57525, 0.575375, 0.5755, 0.575625, 0.57575005, 0.57587504, 0.57600003, 0.576125, 0.57625, 0.576375, 0.5765, 0.57662505, 0.57675004, 0.57687503, 0.577, 0.577125, 0.57725, 0.57737505, 0.57750005, 0.57762504, 0.57775, 0.577875, 0.578, 0.578125, 0.57825005, 0.57837504, 0.57850003, 0.578625, 0.57875, 0.578875, 0.57900006, 0.57912505, 0.57925004, 0.579375, 0.5795, 0.579625, 0.57975, 0.57987505, 0.58000004, 0.58012503, 0.58025, 0.580375, 0.5805, 0.58062506, 0.58075005, 0.58087504, 0.58100003, 0.581125, 0.58125, 0.581375, 0.58150005, 0.58162504, 0.58175004, 0.581875, 0.582, 0.582125, 0.58225, 0.58237505, 0.58250004, 0.58262503, 0.58275, 0.582875, 0.583, 0.58312505, 0.58325005, 0.58337504, 0.5835, 0.583625, 0.58375, 0.583875, 0.58400005, 0.58412504, 0.58425003, 0.584375, 0.5845, 0.584625, 0.58475006, 0.58487505, 0.58500004, 0.585125, 0.58525, 0.585375, 0.5855, 0.58562505, 0.58575004, 0.58587503, 0.586, 0.586125, 0.58625, 0.586375, 0.58650005, 0.58662504, 0.58675003, 0.586875, 0.587, 0.587125, 0.58725005, 0.58737504, 0.58750004, 0.587625, 0.58775, 0.587875, 0.588, 0.58812505, 0.58825004, 0.58837503, 0.5885, 0.588625, 0.58875, 0.58887506, 0.58900005, 0.58912504, 0.58925, 0.589375, 0.5895, 0.589625, 0.58975005, 0.58987504, 0.59000003, 0.590125, 0.59025, 0.590375, 0.59050006, 0.59062505, 0.59075004, 0.590875, 0.591, 0.591125, 0.59125, 0.59137505, 0.59150004, 0.59162503, 0.59175, 0.591875, 0.592, 0.592125, 0.59225005, 0.59237504, 0.59250003, 0.592625, 0.59275, 0.592875, 0.59300005, 0.59312505, 0.59325004, 0.593375, 0.5935, 0.593625, 0.59375, 0.59387505, 0.59400004, 0.59412503, 0.59425, 0.594375, 0.5945, 0.59462506, 0.59475005, 0.59487504, 0.595, 0.595125, 0.59525, 0.595375, 0.59550005, 0.59562504, 0.59575003, 0.595875, 0.596, 0.596125, 0.59625006, 0.59637505, 0.59650004, 0.59662503, 0.59675, 0.596875, 0.597, 0.59712505, 0.59725004, 0.59737504, 0.5975, 0.597625, 0.59775, 0.597875, 0.59800005, 0.59812504, 0.59825003, 0.598375, 0.5985, 0.598625, 0.59875005, 0.59887505, 0.59900004, 0.599125, 0.59925, 0.599375, 0.5995, 0.59962505, 0.59975004, 0.59987503, 0.6, 0.600125, 0.60025, 0.60037506, 0.60050005, 0.60062504, 0.60075, 0.600875, 0.601, 0.601125, 0.60125005, 0.60137504, 0.60150003, 0.601625, 0.60175, 0.601875, 0.60200006, 0.60212505, 0.60225004, 0.60237503, 0.6025, 0.602625, 0.60275, 0.60287505, 0.60300004, 0.60312504, 0.60325, 0.603375, 0.6035, 0.603625, 0.60375005, 0.60387504, 0.60400003, 0.604125, 0.60425, 0.604375, 0.60450006, 0.60462505, 0.60475004, 0.604875, 0.605, 0.605125, 0.60525, 0.60537505, 0.60550004, 0.60562503, 0.60575, 0.605875, 0.606, 0.60612506, 0.60625005, 0.60637504, 0.6065, 0.606625, 0.60675, 0.606875, 0.60700005, 0.60712504, 0.60725003, 0.607375, 0.6075, 0.607625, 0.60775006, 0.60787505, 0.60800004, 0.60812503, 0.60825, 0.608375, 0.6085, 0.60862505, 0.60875005, 0.60887504, 0.609, 0.609125, 0.60925, 0.609375, 0.60950005, 0.60962504, 0.60975003, 0.609875, 0.61, 0.610125, 0.61025006, 0.61037505, 0.61050004, 0.610625, 0.61075, 0.610875, 0.611, 0.61112505, 0.61125004, 0.61137503, 0.6115, 0.611625, 0.61175, 0.61187506, 0.61200005, 0.61212504, 0.61225003, 0.612375, 0.6125, 0.612625, 0.61275005, 0.61287504, 0.61300004, 0.613125, 0.61325, 0.613375, 0.61350006, 0.61362505, 0.61375004, 0.61387503, 0.614, 0.614125, 0.61425, 0.61437505, 0.61450005, 0.61462504, 0.61475, 0.614875, 0.615, 0.615125, 0.61525005, 0.61537504, 0.61550003, 0.615625, 0.61575, 0.615875, 0.61600006, 0.61612505, 0.61625004, 0.616375, 0.6165, 0.616625, 0.61675, 0.61687505, 0.61700004, 0.61712503, 0.61725, 0.617375, 0.6175, 0.61762506, 0.61775005, 0.61787504, 0.61800003, 0.618125, 0.61825, 0.618375, 0.61850005, 0.61862504, 0.61875004, 0.618875, 0.619, 0.619125, 0.61925006, 0.61937505, 0.61950004, 0.61962503, 0.61975, 0.619875, 0.62, 0.62012506, 0.62025005, 0.62037504, 0.6205, 0.620625, 0.62075, 0.620875, 0.62100005, 0.62112504, 0.62125003, 0.621375, 0.6215, 0.621625, 0.62175006, 0.62187505, 0.62200004, 0.622125, 0.62225, 0.622375, 0.6225, 0.62262505, 0.62275004, 0.62287503, 0.623, 0.623125, 0.62325, 0.62337506, 0.62350005, 0.62362504, 0.62375003, 0.623875, 0.624, 0.624125, 0.62425005, 0.62437505, 0.62450004, 0.624625, 0.62475, 0.624875, 0.625, 0.62512505, 0.62525004, 0.62537503, 0.6255, 0.625625, 0.62575, 0.62587506, 0.62600005, 0.62612504, 0.62625, 0.626375, 0.6265, 0.626625, 0.62675005, 0.62687504, 0.62700003, 0.627125, 0.62725, 0.627375, 0.62750006, 0.62762505, 0.62775004, 0.62787503, 0.628, 0.628125, 0.62825, 0.62837505, 0.62850004, 0.62862504, 0.62875, 0.628875, 0.629, 0.62912506, 0.62925005, 0.62937504, 0.62950003, 0.629625, 0.62975, 0.629875, 0.63000005, 0.63012505, 0.63025004, 0.630375, 0.6305, 0.630625, 0.63075, 0.63087505, 0.63100004, 0.63112503, 0.63125, 0.631375, 0.6315, 0.63162506, 0.63175005, 0.63187504, 0.632, 0.632125, 0.63225, 0.632375, 0.63250005, 0.63262504, 0.63275003, 0.632875, 0.633, 0.633125, 0.63325006, 0.63337505, 0.63350004, 0.63362503, 0.63375, 0.633875, 0.634, 0.63412505, 0.63425004, 0.63437504, 0.6345, 0.634625, 0.63475, 0.63487506, 0.63500005, 0.63512504, 0.63525003, 0.635375, 0.6355, 0.635625, 0.63575006, 0.63587505, 0.63600004, 0.636125, 0.63625, 0.636375, 0.6365, 0.63662505, 0.63675004, 0.63687503, 0.637, 0.637125, 0.63725, 0.63737506, 0.63750005, 0.63762504, 0.63775, 0.637875, 0.638, 0.638125, 0.63825005, 0.63837504, 0.63850003, 0.638625, 0.63875, 0.638875, 0.63900006, 0.63912505, 0.63925004, 0.63937503, 0.6395, 0.639625, 0.63975, 0.63987505, 0.64000005, 0.64012504, 0.64025, 0.640375, 0.6405, 0.64062506, 0.64075005, 0.64087504, 0.64100003, 0.641125, 0.64125, 0.641375, 0.64150006, 0.64162505, 0.64175004, 0.641875, 0.642, 0.642125, 0.64225, 0.64237505, 0.64250004, 0.64262503, 0.64275, 0.642875, 0.643, 0.64312506, 0.64325005, 0.64337504, 0.64350003, 0.643625, 0.64375, 0.643875, 0.64400005, 0.64412504, 0.64425004, 0.644375, 0.6445, 0.644625, 0.64475006, 0.64487505, 0.64500004, 0.64512503, 0.64525, 0.645375, 0.6455, 0.64562505, 0.64575005, 0.64587504, 0.646, 0.646125, 0.64625, 0.64637506, 0.64650005, 0.64662504, 0.64675003, 0.646875, 0.647, 0.647125, 0.64725006, 0.64737505, 0.64750004, 0.647625, 0.64775, 0.647875, 0.648, 0.64812505, 0.64825004, 0.64837503, 0.6485, 0.648625, 0.64875, 0.64887506, 0.64900005, 0.64912504, 0.64925003, 0.649375, 0.6495, 0.649625, 0.64975005, 0.64987504, 0.65000004, 0.650125, 0.65025, 0.650375, 0.65050006, 0.65062505, 0.65075004, 0.65087503, 0.651, 0.651125, 0.65125, 0.65137506, 0.65150005, 0.65162504, 0.65175, 0.651875, 0.652, 0.65212506, 0.65225005, 0.65237504, 0.65250003, 0.652625, 0.65275, 0.652875, 0.65300006, 0.65312505, 0.65325004, 0.653375, 0.6535, 0.653625, 0.65375, 0.65387505, 0.65400004, 0.65412503, 0.65425, 0.654375, 0.6545, 0.65462506, 0.65475005, 0.65487504, 0.65500003, 0.655125, 0.65525, 0.655375, 0.65550005, 0.65562505, 0.65575004, 0.655875, 0.656, 0.656125, 0.65625006, 0.65637505, 0.65650004, 0.65662503, 0.65675, 0.656875, 0.657, 0.65712506, 0.65725005, 0.65737504, 0.6575, 0.657625, 0.65775, 0.65787506, 0.65800005, 0.65812504, 0.65825003, 0.658375, 0.6585, 0.658625, 0.65875006, 0.65887505, 0.65900004, 0.65912503, 0.65925, 0.659375, 0.6595, 0.65962505, 0.65975004, 0.65987504, 0.66, 0.660125, 0.66025, 0.66037506, 0.66050005, 0.66062504, 0.66075003, 0.660875, 0.661, 0.661125, 0.66125005, 0.66137505, 0.66150004, 0.661625, 0.66175, 0.661875, 0.66200006, 0.66212505, 0.66225004, 0.66237503, 0.6625, 0.662625, 0.66275, 0.66287506, 0.66300005, 0.66312504, 0.66325, 0.663375, 0.6635, 0.663625, 0.66375005, 0.66387504, 0.66400003, 0.664125, 0.66425, 0.664375, 0.66450006, 0.66462505, 0.66475004, 0.66487503, 0.665, 0.665125, 0.66525, 0.66537505, 0.66550004, 0.66562504, 0.66575, 0.665875, 0.666, 0.66612506, 0.66625005, 0.66637504, 0.66650003, 0.666625, 0.66675, 0.666875, 0.66700006, 0.66712505, 0.66725004, 0.667375, 0.6675, 0.667625, 0.66775006, 0.66787505, 0.66800004, 0.66812503, 0.66825, 0.668375, 0.6685, 0.66862506, 0.66875005, 0.66887504, 0.669, 0.669125, 0.66925, 0.669375, 0.66950005, 0.66962504, 0.66975003, 0.669875, 0.67, 0.670125, 0.67025006, 0.67037505, 0.67050004, 0.67062503, 0.67075, 0.670875, 0.671, 0.67112505, 0.67125005, 0.67137504, 0.6715, 0.671625, 0.67175, 0.67187506, 0.67200005, 0.67212504, 0.67225003, 0.672375, 0.6725, 0.672625, 0.67275006, 0.67287505, 0.67300004, 0.673125, 0.67325, 0.673375, 0.67350006, 0.67362505, 0.67375004, 0.67387503, 0.674, 0.674125, 0.67425, 0.67437506, 0.67450005, 0.67462504, 0.67475003, 0.674875, 0.675, 0.675125, 0.67525005, 0.67537504, 0.67550004, 0.675625, 0.67575, 0.675875, 0.67600006, 0.67612505, 0.67625004, 0.67637503, 0.6765, 0.676625, 0.67675, 0.67687505, 0.67700005, 0.67712504, 0.67725, 0.677375, 0.6775, 0.67762506, 0.67775005, 0.67787504, 0.67800003, 0.678125, 0.67825, 0.678375, 0.67850006, 0.67862505, 0.67875004, 0.678875, 0.679, 0.679125, 0.67925006, 0.67937505, 0.67950004, 0.67962503, 0.67975, 0.679875, 0.68, 0.68012506, 0.68025005, 0.68037504, 0.68050003, 0.680625, 0.68075, 0.680875, 0.68100005, 0.68112504, 0.68125004, 0.681375, 0.6815, 0.681625, 0.68175006, 0.68187505, 0.68200004, 0.68212503, 0.68225, 0.682375, 0.6825, 0.68262506, 0.68275005, 0.68287504, 0.683, 0.683125, 0.68325, 0.68337506, 0.68350005, 0.68362504, 0.68375003, 0.683875, 0.684, 0.684125, 0.68425006, 0.68437505, 0.68450004, 0.684625, 0.68475, 0.684875, 0.68500006, 0.68512505, 0.68525004, 0.68537503, 0.6855, 0.685625, 0.68575, 0.68587506, 0.68600005, 0.68612504, 0.68625003, 0.686375, 0.6865, 0.686625, 0.68675005, 0.68687505, 0.68700004, 0.687125, 0.68725, 0.687375, 0.68750006, 0.68762505, 0.68775004, 0.68787503, 0.688, 0.688125, 0.68825, 0.68837506, 0.68850005, 0.68862504, 0.68875, 0.688875, 0.689, 0.68912506, 0.68925005, 0.68937504, 0.68950003, 0.689625, 0.68975, 0.689875, 0.69000006, 0.69012505, 0.69025004, 0.69037503, 0.6905, 0.690625, 0.69075006, 0.69087505, 0.69100004, 0.69112504, 0.69125, 0.691375, 0.6915, 0.69162506, 0.69175005, 0.69187504, 0.69200003, 0.692125, 0.69225, 0.692375, 0.69250005, 0.69262505, 0.69275004, 0.692875, 0.693, 0.693125, 0.69325006, 0.69337505, 0.69350004, 0.69362503, 0.69375, 0.693875, 0.694, 0.69412506, 0.69425005, 0.69437504, 0.6945, 0.694625, 0.69475, 0.69487506, 0.69500005, 0.69512504, 0.69525003, 0.695375, 0.6955, 0.695625, 0.69575006, 0.69587505, 0.69600004, 0.69612503, 0.69625, 0.696375, 0.6965, 0.69662505, 0.69675004, 0.69687504, 0.697, 0.697125, 0.69725, 0.69737506, 0.69750005, 0.69762504, 0.69775003, 0.697875, 0.698, 0.698125, 0.69825006, 0.69837505, 0.69850004, 0.698625, 0.69875, 0.698875, 0.69900006, 0.69912505, 0.69925004, 0.69937503, 0.6995, 0.699625, 0.69975, 0.69987506, 0.70000005, 0.70012504, 0.70025, 0.700375, 0.7005, 0.70062506, 0.70075005, 0.70087504, 0.70100003, 0.701125, 0.70125, 0.701375, 0.70150006, 0.70162505, 0.70175004, 0.70187503, 0.702, 0.702125, 0.70225, 0.70237505, 0.70250005, 0.70262504, 0.70275, 0.702875, 0.703, 0.70312506, 0.70325005, 0.70337504, 0.70350003, 0.703625, 0.70375, 0.703875, 0.70400006, 0.70412505, 0.70425004, 0.704375, 0.7045, 0.704625, 0.70475006, 0.70487505, 0.70500004, 0.70512503, 0.70525, 0.705375, 0.7055, 0.70562506, 0.70575005, 0.70587504, 0.70600003, 0.706125, 0.70625, 0.70637506, 0.70650005, 0.70662504, 0.70675004, 0.706875, 0.707, 0.707125, 0.70725006, 0.70737505, 0.70750004, 0.70762503, 0.70775, 0.707875, 0.708, 0.70812505, 0.70825005, 0.70837504, 0.7085, 0.708625, 0.70875, 0.70887506, 0.70900005, 0.70912504, 0.70925003, 0.709375, 0.7095, 0.709625, 0.70975006, 0.70987505, 0.71000004, 0.710125, 0.71025, 0.710375, 0.71050006, 0.71062505, 0.71075004, 0.71087503, 0.711, 0.711125, 0.71125, 0.71137506, 0.71150005, 0.71162504, 0.71175003, 0.711875, 0.712, 0.71212506, 0.71225005, 0.71237504, 0.71250004, 0.712625, 0.71275, 0.712875, 0.71300006, 0.71312505, 0.71325004, 0.71337503, 0.7135, 0.713625, 0.71375, 0.71387506, 0.71400005, 0.71412504, 0.71425, 0.714375, 0.7145, 0.71462506, 0.71475005, 0.71487504, 0.71500003, 0.715125, 0.71525, 0.715375, 0.71550006, 0.71562505, 0.71575004, 0.715875, 0.716, 0.716125, 0.71625006, 0.71637505, 0.71650004, 0.71662503, 0.71675, 0.716875, 0.717, 0.71712506, 0.71725005, 0.71737504, 0.71750003, 0.717625, 0.71775, 0.71787506, 0.71800005, 0.71812505, 0.71825004, 0.718375, 0.7185, 0.718625, 0.71875006, 0.71887505, 0.71900004, 0.71912503, 0.71925, 0.719375, 0.7195, 0.71962506, 0.71975005, 0.71987504, 0.72, 0.720125, 0.72025, 0.72037506, 0.72050005, 0.72062504, 0.72075003, 0.720875, 0.721, 0.721125, 0.72125006, 0.72137505, 0.72150004, 0.72162503, 0.72175, 0.721875, 0.72200006, 0.72212505, 0.72225004, 0.72237504, 0.7225, 0.722625, 0.72275, 0.72287506, 0.72300005, 0.72312504, 0.72325003, 0.723375, 0.7235, 0.72362506, 0.72375005, 0.72387505, 0.72400004, 0.724125, 0.72425, 0.724375, 0.72450006, 0.72462505, 0.72475004, 0.72487503, 0.725, 0.725125, 0.72525, 0.72537506, 0.72550005, 0.72562504, 0.72575, 0.725875, 0.726, 0.72612506, 0.72625005, 0.72637504, 0.72650003, 0.726625, 0.72675, 0.726875, 0.72700006, 0.72712505, 0.72725004, 0.72737503, 0.7275, 0.727625, 0.72775006, 0.72787505, 0.72800004, 0.72812504, 0.72825, 0.728375, 0.7285, 0.72862506, 0.72875005, 0.72887504, 0.72900003, 0.729125, 0.72925, 0.72937506, 0.72950006, 0.72962505, 0.72975004, 0.729875, 0.73, 0.730125, 0.73025006, 0.73037505, 0.73050004, 0.73062503, 0.73075, 0.730875, 0.731, 0.73112506, 0.73125005, 0.73137504, 0.7315, 0.731625, 0.73175, 0.73187506, 0.73200005, 0.73212504, 0.73225003, 0.732375, 0.7325, 0.732625, 0.73275006, 0.73287505, 0.73300004, 0.73312503, 0.73325, 0.733375, 0.73350006, 0.73362505, 0.73375005, 0.73387504, 0.734, 0.734125, 0.73425, 0.73437506, 0.73450005, 0.73462504, 0.73475003, 0.734875, 0.735, 0.735125, 0.73525006, 0.73537505, 0.73550004, 0.735625, 0.73575, 0.735875, 0.73600006, 0.73612505, 0.73625004, 0.73637503, 0.7365, 0.736625, 0.73675, 0.73687506, 0.73700005, 0.73712504, 0.73725003, 0.737375, 0.7375, 0.73762506, 0.73775005, 0.73787504, 0.73800004, 0.738125, 0.73825, 0.738375, 0.73850006, 0.73862505, 0.73875004, 0.73887503, 0.739, 0.739125, 0.73925006, 0.73937505, 0.73950005, 0.73962504, 0.73975, 0.739875, 0.74, 0.74012506, 0.74025005, 0.74037504, 0.74050003, 0.740625, 0.74075, 0.740875, 0.74100006, 0.74112505, 0.74125004, 0.741375, 0.7415, 0.741625, 0.74175006, 0.74187505, 0.74200004, 0.74212503, 0.74225, 0.742375, 0.7425, 0.74262506, 0.74275005, 0.74287504, 0.74300003, 0.743125, 0.74325, 0.74337506, 0.74350005, 0.74362504, 0.74375004, 0.743875, 0.744, 0.744125, 0.74425006, 0.74437505, 0.74450004, 0.74462503, 0.74475, 0.744875, 0.74500006, 0.74512506, 0.74525005, 0.74537504, 0.7455, 0.745625, 0.74575, 0.74587506, 0.74600005, 0.74612504, 0.74625003, 0.746375, 0.7465, 0.746625, 0.74675006, 0.74687505, 0.74700004, 0.747125, 0.74725, 0.747375, 0.74750006, 0.74762505, 0.74775004, 0.74787503, 0.748, 0.748125, 0.74825, 0.74837506, 0.74850005, 0.74862504, 0.74875003, 0.748875, 0.749, 0.74912506, 0.74925005, 0.74937505, 0.74950004, 0.749625, 0.74975, 0.749875, 0.75000006, 0.75012505, 0.75025004, 0.75037503, 0.7505, 0.750625, 0.75075006, 0.75087506, 0.75100005, 0.75112504, 0.75125, 0.751375, 0.7515, 0.75162506, 0.75175005, 0.75187504, 0.75200003, 0.752125, 0.75225, 0.752375, 0.75250006, 0.75262505, 0.75275004, 0.75287503, 0.753, 0.753125, 0.75325006, 0.75337505, 0.75350004, 0.75362504, 0.75375, 0.753875, 0.754, 0.75412506, 0.75425005, 0.75437504, 0.75450003, 0.754625, 0.75475, 0.75487506, 0.75500005, 0.75512505, 0.75525004, 0.755375, 0.7555, 0.755625, 0.75575006, 0.75587505, 0.75600004, 0.75612503, 0.75625, 0.756375, 0.75650007, 0.75662506, 0.75675005, 0.75687504, 0.757, 0.757125, 0.75725, 0.75737506, 0.75750005, 0.75762504, 0.75775003, 0.757875, 0.758, 0.758125, 0.75825006, 0.75837505, 0.75850004, 0.75862503, 0.75875, 0.758875, 0.75900006, 0.75912505, 0.75925004, 0.75937504, 0.7595, 0.759625, 0.75975, 0.75987506, 0.76000005, 0.76012504, 0.76025003, 0.760375, 0.7605, 0.76062506, 0.76075006, 0.76087505, 0.76100004, 0.761125, 0.76125, 0.761375, 0.76150006, 0.76162505, 0.76175004, 0.76187503, 0.762, 0.762125, 0.76225007, 0.76237506, 0.76250005, 0.76262504, 0.76275, 0.762875, 0.763, 0.76312506, 0.76325005, 0.76337504, 0.76350003, 0.763625, 0.76375, 0.763875, 0.76400006, 0.76412505, 0.76425004, 0.76437503, 0.7645, 0.764625, 0.76475006, 0.76487505, 0.76500005, 0.76512504, 0.76525, 0.765375, 0.7655, 0.76562506, 0.76575005, 0.76587504, 0.76600003, 0.766125, 0.76625, 0.76637506, 0.76650006, 0.76662505, 0.76675004, 0.766875, 0.767, 0.767125, 0.76725006, 0.76737505, 0.76750004, 0.76762503, 0.76775, 0.767875, 0.768, 0.76812506, 0.76825005, 0.76837504, 0.76850003, 0.768625, 0.76875, 0.76887506, 0.76900005, 0.76912504, 0.76925004, 0.769375, 0.7695, 0.769625, 0.76975006, 0.76987505, 0.77000004, 0.77012503, 0.77025, 0.770375, 0.77050006, 0.77062505, 0.77075005, 0.77087504, 0.771, 0.771125, 0.77125, 0.77137506, 0.77150005, 0.77162504, 0.77175003, 0.771875, 0.772, 0.77212507, 0.77225006, 0.77237505, 0.77250004, 0.772625, 0.77275, 0.772875, 0.77300006, 0.77312505, 0.77325004, 0.77337503, 0.7735, 0.773625, 0.77375, 0.77387506, 0.77400005, 0.77412504, 0.77425003, 0.774375, 0.7745, 0.77462506, 0.77475005, 0.77487504, 0.77500004, 0.775125, 0.77525, 0.775375, 0.77550006, 0.77562505, 0.77575004, 0.77587503, 0.776, 0.776125, 0.77625006, 0.77637506, 0.77650005, 0.77662504, 0.77675, 0.776875, 0.777, 0.77712506, 0.77725005, 0.77737504, 0.77750003, 0.777625, 0.77775, 0.77787507, 0.77800006, 0.77812505, 0.77825004, 0.778375, 0.7785, 0.778625, 0.77875006, 0.77887505, 0.77900004, 0.77912503, 0.77925, 0.779375, 0.7795, 0.77962506, 0.77975005, 0.77987504, 0.78000003, 0.780125, 0.78025, 0.78037506, 0.78050005, 0.78062505, 0.78075004, 0.780875, 0.781, 0.781125, 0.78125006, 0.78137505, 0.78150004, 0.78162503, 0.78175, 0.781875, 0.78200006, 0.78212506, 0.78225005, 0.78237504, 0.7825, 0.782625, 0.78275, 0.78287506, 0.78300005, 0.78312504, 0.78325003, 0.783375, 0.7835, 0.78362507, 0.78375006, 0.78387505, 0.78400004, 0.78412503, 0.78425, 0.784375, 0.78450006, 0.78462505, 0.78475004, 0.78487504, 0.785, 0.785125, 0.78525, 0.78537506, 0.78550005, 0.78562504, 0.78575003, 0.785875, 0.786, 0.78612506, 0.78625005, 0.78637505, 0.78650004, 0.786625, 0.78675, 0.786875, 0.78700006, 0.78712505, 0.78725004, 0.78737503, 0.7875, 0.787625, 0.78775007, 0.78787506, 0.78800005, 0.78812504, 0.78825, 0.788375, 0.7885, 0.78862506, 0.78875005, 0.78887504, 0.78900003, 0.789125, 0.78925, 0.78937507, 0.78950006, 0.78962505, 0.78975004, 0.78987503, 0.79, 0.790125, 0.79025006, 0.79037505, 0.79050004, 0.79062504, 0.79075, 0.790875, 0.791, 0.79112506, 0.79125005, 0.79137504, 0.79150003, 0.791625, 0.79175, 0.79187506, 0.79200006, 0.79212505, 0.79225004, 0.792375, 0.7925, 0.792625, 0.79275006, 0.79287505, 0.79300004, 0.79312503, 0.79325, 0.793375, 0.79350007, 0.79362506, 0.79375005, 0.79387504, 0.794, 0.794125, 0.79425, 0.79437506, 0.79450005, 0.79462504, 0.79475003, 0.794875, 0.795, 0.79512507, 0.79525006, 0.79537505, 0.79550004, 0.79562503, 0.79575, 0.795875, 0.79600006, 0.79612505, 0.79625005, 0.79637504, 0.7965, 0.796625, 0.79675, 0.79687506, 0.79700005, 0.79712504, 0.79725003, 0.797375, 0.7975, 0.79762506, 0.79775006, 0.79787505, 0.79800004, 0.798125, 0.79825, 0.798375, 0.79850006, 0.79862505, 0.79875004, 0.79887503, 0.799, 0.799125, 0.79925007, 0.79937506, 0.79950005, 0.79962504, 0.79975003, 0.799875, 0.8, 0.80012506, 0.80025005, 0.80037504, 0.80050004, 0.800625, 0.80075, 0.80087507, 0.80100006, 0.80112505, 0.80125004, 0.80137503, 0.8015, 0.801625, 0.80175006, 0.80187505, 0.80200005, 0.80212504, 0.80225, 0.802375, 0.8025, 0.80262506, 0.80275005, 0.80287504, 0.80300003, 0.803125, 0.80325, 0.80337507, 0.80350006, 0.80362505, 0.80375004, 0.803875, 0.804, 0.804125, 0.80425006, 0.80437505, 0.80450004, 0.80462503, 0.80475, 0.804875, 0.80500007, 0.80512506, 0.80525005, 0.80537504, 0.80550003, 0.805625, 0.80575, 0.80587506, 0.80600005, 0.80612504, 0.80625004, 0.806375, 0.8065, 0.806625, 0.80675006, 0.80687505, 0.80700004, 0.80712503, 0.80725, 0.807375, 0.80750006, 0.80762506, 0.80775005, 0.80787504, 0.808, 0.808125, 0.80825, 0.80837506, 0.80850005, 0.80862504, 0.80875003, 0.808875, 0.809, 0.80912507, 0.80925006, 0.80937505, 0.80950004, 0.809625, 0.80975, 0.809875, 0.81000006, 0.81012505, 0.81025004, 0.81037503, 0.8105, 0.810625, 0.81075007, 0.81087506, 0.81100005, 0.81112504, 0.81125003, 0.811375, 0.8115, 0.81162506, 0.81175005, 0.81187505, 0.81200004, 0.812125, 0.81225, 0.812375, 0.81250006, 0.81262505, 0.81275004, 0.81287503, 0.813, 0.813125, 0.81325006, 0.81337506, 0.81350005, 0.81362504, 0.81375, 0.813875, 0.814, 0.81412506, 0.81425005, 0.81437504, 0.81450003, 0.814625, 0.81475, 0.81487507, 0.81500006, 0.81512505, 0.81525004, 0.81537503, 0.8155, 0.815625, 0.81575006, 0.81587505, 0.81600004, 0.81612504, 0.81625, 0.816375, 0.81650007, 0.81662506, 0.81675005, 0.81687504, 0.81700003, 0.817125, 0.81725, 0.81737506, 0.81750005, 0.81762505, 0.81775004, 0.817875, 0.818, 0.818125, 0.81825006, 0.81837505, 0.81850004, 0.81862503, 0.81875, 0.818875, 0.81900007, 0.81912506, 0.81925005, 0.81937504, 0.8195, 0.819625, 0.81975, 0.81987506, 0.82000005, 0.82012504, 0.82025003, 0.820375, 0.8205, 0.82062507, 0.82075006, 0.82087505, 0.82100004, 0.82112503, 0.82125, 0.821375, 0.82150006, 0.82162505, 0.82175004, 0.82187504, 0.822, 0.822125, 0.82225007, 0.82237506, 0.82250005, 0.82262504, 0.82275003, 0.822875, 0.823, 0.82312506, 0.82325006, 0.82337505, 0.82350004, 0.823625, 0.82375, 0.823875, 0.82400006, 0.82412505, 0.82425004, 0.82437503, 0.8245, 0.824625, 0.82475007, 0.82487506, 0.82500005, 0.82512504, 0.82525, 0.825375, 0.8255, 0.82562506, 0.82575005, 0.82587504, 0.82600003, 0.826125, 0.82625, 0.82637507, 0.82650006, 0.82662505, 0.82675004, 0.82687503, 0.827, 0.827125, 0.82725006, 0.82737505, 0.82750005, 0.82762504, 0.82775, 0.827875, 0.82800007, 0.82812506, 0.82825005, 0.82837504, 0.82850003, 0.828625, 0.82875, 0.82887506, 0.82900006, 0.82912505, 0.82925004, 0.829375, 0.8295, 0.829625, 0.82975006, 0.82987505, 0.83000004, 0.83012503, 0.83025, 0.830375, 0.83050007, 0.83062506, 0.83075005, 0.83087504, 0.83100003, 0.831125, 0.83125, 0.83137506, 0.83150005, 0.83162504, 0.83175004, 0.831875, 0.832, 0.83212507, 0.83225006, 0.83237505, 0.83250004, 0.83262503, 0.83275, 0.832875, 0.83300006, 0.83312505, 0.83325005, 0.83337504, 0.8335, 0.833625, 0.83375007, 0.83387506, 0.83400005, 0.83412504, 0.83425003, 0.834375, 0.8345, 0.83462507, 0.83475006, 0.83487505, 0.83500004, 0.835125, 0.83525, 0.835375, 0.83550006, 0.83562505, 0.83575004, 0.83587503, 0.836, 0.836125, 0.83625007, 0.83637506, 0.83650005, 0.83662504, 0.83675003, 0.836875, 0.837, 0.83712506, 0.83725005, 0.83737504, 0.83750004, 0.837625, 0.83775, 0.83787507, 0.83800006, 0.83812505, 0.83825004, 0.83837503, 0.8385, 0.838625, 0.83875006, 0.83887506, 0.83900005, 0.83912504, 0.83925, 0.839375, 0.83950007, 0.83962506, 0.83975005, 0.83987504, 0.84000003, 0.840125, 0.84025, 0.84037507, 0.84050006, 0.84062505, 0.84075004, 0.840875, 0.841, 0.841125, 0.84125006, 0.84137505, 0.84150004, 0.84162503, 0.84175, 0.841875, 0.84200007, 0.84212506, 0.84225005, 0.84237504, 0.84250003, 0.842625, 0.84275, 0.84287506, 0.84300005, 0.84312505, 0.84325004, 0.843375, 0.8435, 0.84362507, 0.84375006, 0.84387505, 0.84400004, 0.84412503, 0.84425, 0.844375, 0.84450006, 0.84462506, 0.84475005, 0.84487504, 0.845, 0.845125, 0.84525, 0.84537506, 0.84550005, 0.84562504, 0.84575003, 0.845875, 0.846, 0.84612507, 0.84625006, 0.84637505, 0.84650004, 0.84662503, 0.84675, 0.846875, 0.84700006, 0.84712505, 0.84725004, 0.84737504, 0.8475, 0.847625, 0.84775007, 0.84787506, 0.84800005, 0.84812504, 0.84825003, 0.848375, 0.8485, 0.84862506, 0.84875005, 0.84887505, 0.84900004, 0.849125, 0.84925, 0.84937507, 0.84950006, 0.84962505, 0.84975004, 0.84987503, 0.85, 0.850125, 0.85025007, 0.85037506, 0.85050005, 0.85062504, 0.85075, 0.850875, 0.851, 0.85112506, 0.85125005, 0.85137504, 0.85150003, 0.851625, 0.85175, 0.85187507, 0.85200006, 0.85212505, 0.85225004, 0.85237503, 0.8525, 0.852625, 0.85275006, 0.85287505, 0.85300004, 0.85312504, 0.85325, 0.853375, 0.85350007, 0.85362506, 0.85375005, 0.85387504, 0.85400003, 0.854125, 0.85425, 0.85437506, 0.85450006, 0.85462505, 0.85475004, 0.854875, 0.855, 0.85512507, 0.85525006, 0.85537505, 0.85550004, 0.85562503, 0.85575, 0.855875, 0.85600007, 0.85612506, 0.85625005, 0.85637504, 0.8565, 0.856625, 0.85675, 0.85687506, 0.85700005, 0.85712504, 0.85725003, 0.857375, 0.8575, 0.85762507, 0.85775006, 0.85787505, 0.85800004, 0.85812503, 0.85825, 0.858375, 0.85850006, 0.85862505, 0.85875005, 0.85887504, 0.859, 0.859125, 0.85925007, 0.85937506, 0.85950005, 0.85962504, 0.85975003, 0.859875, 0.86, 0.86012506, 0.86025006, 0.86037505, 0.86050004, 0.860625, 0.86075, 0.86087507, 0.86100006, 0.86112505, 0.86125004, 0.86137503, 0.8615, 0.861625, 0.86175007, 0.86187506, 0.86200005, 0.86212504, 0.86225003, 0.862375, 0.8625, 0.86262506, 0.86275005, 0.86287504, 0.86300004, 0.863125, 0.86325, 0.86337507, 0.86350006, 0.86362505, 0.86375004, 0.86387503, 0.864, 0.864125, 0.86425006, 0.86437505, 0.86450005, 0.86462504, 0.86475, 0.864875, 0.86500007, 0.86512506, 0.86525005, 0.86537504, 0.86550003, 0.865625, 0.86575, 0.86587507, 0.86600006, 0.86612505, 0.86625004, 0.866375, 0.8665, 0.8666251, 0.86675006, 0.86687505, 0.86700004, 0.86712503, 0.86725, 0.867375, 0.86750007, 0.86762506, 0.86775005, 0.86787504, 0.86800003, 0.868125, 0.86825, 0.86837506, 0.86850005, 0.86862504, 0.86875004, 0.868875, 0.869, 0.86912507, 0.86925006, 0.86937505, 0.86950004, 0.86962503, 0.86975, 0.869875, 0.87000006, 0.87012506, 0.87025005, 0.87037504, 0.8705, 0.870625, 0.87075007, 0.87087506, 0.87100005, 0.87112504, 0.87125003, 0.871375, 0.8715, 0.87162507, 0.87175006, 0.87187505, 0.87200004, 0.872125, 0.87225, 0.8723751, 0.87250006, 0.87262505, 0.87275004, 0.87287503, 0.873, 0.873125, 0.87325007, 0.87337506, 0.87350005, 0.87362504, 0.87375003, 0.873875, 0.874, 0.87412506, 0.87425005, 0.87437505, 0.87450004, 0.874625, 0.87475, 0.87487507, 0.87500006, 0.87512505, 0.87525004, 0.87537503, 0.8755, 0.875625, 0.87575006, 0.87587506, 0.87600005, 0.87612504, 0.87625, 0.876375, 0.87650007, 0.87662506, 0.87675005, 0.87687504, 0.87700003, 0.877125, 0.87725, 0.87737507, 0.87750006, 0.87762505, 0.87775004, 0.87787503, 0.878, 0.878125, 0.87825006, 0.87837505, 0.87850004, 0.87862504, 0.87875, 0.878875, 0.87900007, 0.87912506, 0.87925005, 0.87937504, 0.87950003, 0.879625, 0.87975, 0.87987506, 0.88000005, 0.88012505, 0.88025004, 0.880375, 0.8805, 0.88062507, 0.88075006, 0.88087505, 0.88100004, 0.88112503, 0.88125, 0.881375, 0.88150007, 0.88162506, 0.88175005, 0.88187504, 0.882, 0.882125, 0.8822501, 0.88237506, 0.88250005, 0.88262504, 0.88275003, 0.882875, 0.883, 0.88312507, 0.88325006, 0.88337505, 0.88350004, 0.88362503, 0.88375, 0.883875, 0.88400006, 0.88412505, 0.88425004, 0.88437504, 0.8845, 0.884625, 0.88475007, 0.88487506, 0.88500005, 0.88512504, 0.88525003, 0.885375, 0.8855, 0.88562506, 0.88575006, 0.88587505, 0.88600004, 0.886125, 0.88625, 0.88637507, 0.88650006, 0.88662505, 0.88675004, 0.88687503, 0.887, 0.887125, 0.88725007, 0.88737506, 0.88750005, 0.88762504, 0.88775, 0.887875, 0.8880001, 0.88812506, 0.88825005, 0.88837504, 0.88850003, 0.888625, 0.88875, 0.88887507, 0.88900006, 0.88912505, 0.88925004, 0.88937503, 0.8895, 0.889625, 0.88975006, 0.88987505, 0.89000005, 0.89012504, 0.89025, 0.890375, 0.89050007, 0.89062506, 0.89075005, 0.89087504, 0.89100003, 0.891125, 0.89125, 0.89137506, 0.89150006, 0.89162505, 0.89175004, 0.891875, 0.892, 0.89212507, 0.89225006, 0.89237505, 0.89250004, 0.89262503, 0.89275, 0.892875, 0.89300007, 0.89312506, 0.89325005, 0.89337504, 0.89350003, 0.893625, 0.8937501, 0.89387506, 0.89400005, 0.89412504, 0.89425004, 0.894375, 0.8945, 0.89462507, 0.89475006, 0.89487505, 0.89500004, 0.89512503, 0.89525, 0.895375, 0.89550006, 0.89562505, 0.89575005, 0.89587504, 0.896, 0.896125, 0.89625007, 0.89637506, 0.89650005, 0.89662504, 0.89675003, 0.896875, 0.897, 0.89712507, 0.89725006, 0.89737505, 0.89750004, 0.897625, 0.89775, 0.8978751, 0.89800006, 0.89812505, 0.89825004, 0.89837503, 0.8985, 0.898625, 0.89875007, 0.89887506, 0.89900005, 0.89912504, 0.89925003, 0.899375, 0.8995001, 0.89962506, 0.89975005, 0.89987504, 0.90000004, 0.900125, 0.90025, 0.90037507, 0.90050006, 0.90062505, 0.90075004, 0.90087503, 0.901, 0.901125, 0.90125006, 0.90137506, 0.90150005, 0.90162504, 0.90175, 0.901875, 0.90200007, 0.90212506, 0.90225005, 0.90237504, 0.90250003, 0.902625, 0.90275, 0.90287507, 0.90300006, 0.90312505, 0.90325004, 0.903375, 0.9035, 0.9036251, 0.90375006, 0.90387505, 0.90400004, 0.90412503, 0.90425, 0.904375, 0.90450007, 0.90462506, 0.90475005, 0.90487504, 0.90500003, 0.905125, 0.9052501, 0.90537506, 0.90550005, 0.90562505, 0.90575004, 0.905875, 0.906, 0.90612507, 0.90625006, 0.90637505, 0.90650004, 0.90662503, 0.90675, 0.906875, 0.90700006, 0.90712506, 0.90725005, 0.90737504, 0.9075, 0.907625, 0.90775007, 0.90787506, 0.90800005, 0.90812504, 0.90825003, 0.908375, 0.9085, 0.90862507, 0.90875006, 0.90887505, 0.90900004, 0.90912503, 0.90925, 0.9093751, 0.90950006, 0.90962505, 0.90975004, 0.90987504, 0.91, 0.910125, 0.91025007, 0.91037506, 0.91050005, 0.91062504, 0.91075003, 0.910875, 0.9110001, 0.91112506, 0.91125005, 0.91137505, 0.91150004, 0.911625, 0.91175, 0.91187507, 0.91200006, 0.91212505, 0.91225004, 0.91237503, 0.9125, 0.912625, 0.91275007, 0.91287506, 0.91300005, 0.91312504, 0.91325, 0.913375, 0.9135001, 0.91362506, 0.91375005, 0.91387504, 0.91400003, 0.914125, 0.91425, 0.91437507, 0.91450006, 0.91462505, 0.91475004, 0.91487503, 0.915, 0.9151251, 0.91525006, 0.91537505, 0.91550004, 0.91562504, 0.91575, 0.915875, 0.91600007, 0.91612506, 0.91625005, 0.91637504, 0.91650003, 0.916625, 0.91675, 0.91687506, 0.91700006, 0.91712505, 0.91725004, 0.917375, 0.9175, 0.91762507, 0.91775006, 0.91787505, 0.91800004, 0.91812503, 0.91825, 0.918375, 0.91850007, 0.91862506, 0.91875005, 0.91887504, 0.919, 0.919125, 0.9192501, 0.91937506, 0.91950005, 0.91962504, 0.91975003, 0.919875, 0.92, 0.92012507, 0.92025006, 0.92037505, 0.92050004, 0.92062503, 0.92075, 0.9208751, 0.92100006, 0.92112505, 0.92125005, 0.92137504, 0.9215, 0.921625, 0.92175007, 0.92187506, 0.92200005, 0.92212504, 0.92225003, 0.922375, 0.9225, 0.92262506, 0.92275006, 0.92287505, 0.92300004, 0.923125, 0.92325, 0.92337507, 0.92350006, 0.92362505, 0.92375004, 0.92387503, 0.924, 0.924125, 0.92425007, 0.92437506, 0.92450005, 0.92462504, 0.92475003, 0.924875, 0.9250001, 0.92512506, 0.92525005, 0.92537504, 0.92550004, 0.925625, 0.92575, 0.92587507, 0.92600006, 0.92612505, 0.92625004, 0.92637503, 0.9265, 0.9266251, 0.92675006, 0.92687505, 0.92700005, 0.92712504, 0.92725, 0.927375, 0.92750007, 0.92762506, 0.92775005, 0.92787504, 0.92800003, 0.928125, 0.92825, 0.92837507, 0.92850006, 0.92862505, 0.92875004, 0.928875, 0.929, 0.9291251, 0.92925006, 0.92937505, 0.92950004, 0.92962503, 0.92975, 0.929875, 0.93000007, 0.93012506, 0.93025005, 0.93037504, 0.93050003, 0.930625, 0.9307501, 0.93087506, 0.93100005, 0.93112504, 0.93125004, 0.931375, 0.9315, 0.93162507, 0.93175006, 0.93187505, 0.93200004, 0.93212503, 0.93225, 0.9323751, 0.93250006, 0.93262506, 0.93275005, 0.93287504, 0.933, 0.933125, 0.93325007, 0.93337506, 0.93350005, 0.93362504, 0.93375003, 0.933875, 0.934, 0.93412507, 0.93425006, 0.93437505, 0.93450004, 0.934625, 0.93475, 0.9348751, 0.93500006, 0.93512505, 0.93525004, 0.93537503, 0.9355, 0.935625, 0.93575007, 0.93587506, 0.93600005, 0.93612504, 0.93625003, 0.936375, 0.9365001, 0.93662506, 0.93675005, 0.93687505, 0.93700004, 0.937125, 0.93725, 0.93737507, 0.93750006, 0.93762505, 0.93775004, 0.93787503, 0.938, 0.9381251, 0.93825006, 0.93837506, 0.93850005, 0.93862504, 0.93875, 0.938875, 0.93900007, 0.93912506, 0.93925005, 0.93937504, 0.93950003, 0.939625, 0.93975, 0.93987507, 0.94000006, 0.94012505, 0.94025004, 0.94037503, 0.9405, 0.9406251, 0.94075006, 0.94087505, 0.94100004, 0.94112504, 0.94125, 0.941375, 0.94150007, 0.94162506, 0.94175005, 0.94187504, 0.94200003, 0.942125, 0.9422501, 0.94237506, 0.94250005, 0.94262505, 0.94275004, 0.942875, 0.943, 0.94312507, 0.94325006, 0.94337505, 0.94350004, 0.94362503, 0.94375, 0.9438751, 0.94400007, 0.94412506, 0.94425005, 0.94437504, 0.9445, 0.944625, 0.9447501, 0.94487506, 0.94500005, 0.94512504, 0.94525003, 0.945375, 0.9455, 0.94562507, 0.94575006, 0.94587505, 0.94600004, 0.94612503, 0.94625, 0.9463751, 0.94650006, 0.94662505, 0.94675004, 0.94687504, 0.947, 0.947125, 0.94725007, 0.94737506, 0.94750005, 0.94762504, 0.94775003, 0.947875, 0.9480001, 0.94812506, 0.94825006, 0.94837505, 0.94850004, 0.948625, 0.94875, 0.94887507, 0.94900006, 0.94912505, 0.94925004, 0.94937503, 0.9495, 0.9496251, 0.94975007, 0.94987506, 0.95000005, 0.95012504, 0.95025, 0.950375, 0.9505001, 0.95062506, 0.95075005, 0.95087504, 0.95100003, 0.951125, 0.95125, 0.95137507, 0.95150006, 0.95162505, 0.95175004, 0.95187503, 0.952, 0.9521251, 0.95225006, 0.95237505, 0.95250005, 0.95262504, 0.95275, 0.952875, 0.95300007, 0.95312506, 0.95325005, 0.95337504, 0.95350003, 0.953625, 0.9537501, 0.95387506, 0.95400006, 0.95412505, 0.95425004, 0.954375, 0.9545, 0.95462507, 0.95475006, 0.95487505, 0.95500004, 0.95512503, 0.95525, 0.955375, 0.95550007, 0.95562506, 0.95575005, 0.95587504, 0.95600003, 0.956125, 0.9562501, 0.95637506, 0.95650005, 0.95662504, 0.95675004, 0.956875, 0.957, 0.95712507, 0.95725006, 0.95737505, 0.95750004, 0.95762503, 0.95775, 0.9578751, 0.95800006, 0.95812505, 0.95825005, 0.95837504, 0.9585, 0.958625, 0.95875007, 0.95887506, 0.95900005, 0.95912504, 0.95925003, 0.959375, 0.9595001, 0.95962507, 0.95975006, 0.95987505, 0.96000004, 0.960125, 0.96025, 0.9603751, 0.96050006, 0.96062505, 0.96075004, 0.96087503, 0.961, 0.961125, 0.96125007, 0.96137506, 0.96150005, 0.96162504, 0.96175003, 0.961875, 0.9620001, 0.96212506, 0.96225005, 0.96237504, 0.96250004, 0.962625, 0.96275, 0.96287507, 0.96300006, 0.96312505, 0.96325004, 0.96337503, 0.9635, 0.9636251, 0.96375006, 0.96387506, 0.96400005, 0.96412504, 0.96425, 0.964375, 0.96450007, 0.96462506, 0.96475005, 0.96487504, 0.96500003, 0.965125, 0.9652501, 0.96537507, 0.96550006, 0.96562505, 0.96575004, 0.965875, 0.966, 0.9661251, 0.96625006, 0.96637505, 0.96650004, 0.96662503, 0.96675, 0.966875, 0.96700007, 0.96712506, 0.96725005, 0.96737504, 0.96750003, 0.967625, 0.9677501, 0.96787506, 0.96800005, 0.96812505, 0.96825004, 0.968375, 0.9685, 0.96862507, 0.96875006, 0.96887505, 0.96900004, 0.96912503, 0.96925, 0.9693751, 0.96950006, 0.96962506, 0.96975005, 0.96987504, 0.97, 0.970125, 0.97025007, 0.97037506, 0.97050005, 0.97062504, 0.97075003, 0.970875, 0.9710001, 0.97112507, 0.97125006, 0.97137505, 0.97150004, 0.97162503, 0.97175, 0.9718751, 0.97200006, 0.97212505, 0.97225004, 0.97237504, 0.9725, 0.972625, 0.97275007, 0.97287506, 0.97300005, 0.97312504, 0.97325003, 0.973375, 0.9735001, 0.97362506, 0.97375005, 0.97387505, 0.97400004, 0.974125, 0.97425, 0.97437507, 0.97450006, 0.97462505, 0.97475004, 0.97487503, 0.975, 0.9751251, 0.97525007, 0.97537506, 0.97550005, 0.97562504, 0.97575, 0.975875, 0.9760001, 0.97612506, 0.97625005, 0.97637504, 0.97650003, 0.976625, 0.9767501, 0.97687507, 0.97700006, 0.97712505, 0.97725004, 0.97737503, 0.9775, 0.9776251, 0.97775006, 0.97787505, 0.97800004, 0.97812504, 0.97825, 0.978375, 0.97850007, 0.97862506, 0.97875005, 0.97887504, 0.97900003, 0.979125, 0.9792501, 0.97937506, 0.97950006, 0.97962505, 0.97975004, 0.979875, 0.98, 0.98012507, 0.98025006, 0.98037505, 0.98050004, 0.98062503, 0.98075, 0.9808751, 0.98100007, 0.98112506, 0.98125005, 0.98137504, 0.9815, 0.981625, 0.9817501, 0.98187506, 0.98200005, 0.98212504, 0.98225003, 0.982375, 0.9825001, 0.98262507, 0.98275006, 0.98287505, 0.98300004, 0.98312503, 0.98325, 0.9833751, 0.98350006, 0.98362505, 0.98375005, 0.98387504, 0.984, 0.984125, 0.98425007, 0.98437506, 0.98450005, 0.98462504, 0.98475003, 0.984875, 0.9850001, 0.98512506, 0.98525006, 0.98537505, 0.98550004, 0.985625, 0.98575, 0.98587507, 0.98600006, 0.98612505, 0.98625004, 0.98637503, 0.9865, 0.9866251, 0.98675007, 0.98687506, 0.98700005, 0.98712504, 0.98725003, 0.987375, 0.9875001, 0.98762506, 0.98775005, 0.98787504, 0.98800004, 0.988125, 0.98825, 0.98837507, 0.98850006, 0.98862505, 0.98875004, 0.98887503, 0.989, 0.9891251, 0.98925006, 0.98937505, 0.98950005, 0.98962504, 0.98975, 0.989875, 0.99000007, 0.99012506, 0.99025005, 0.99037504, 0.99050003, 0.990625, 0.9907501, 0.99087507, 0.99100006, 0.99112505, 0.99125004, 0.991375, 0.9915, 0.9916251, 0.99175006, 0.99187505, 0.99200004, 0.99212503, 0.99225, 0.9923751, 0.99250007, 0.99262506, 0.99275005, 0.99287504, 0.99300003, 0.993125, 0.9932501, 0.99337506, 0.99350005, 0.99362504, 0.99375004, 0.993875, 0.994, 0.99412507, 0.99425006, 0.99437505, 0.99450004, 0.99462503, 0.99475, 0.9948751, 0.99500006, 0.99512506, 0.99525005, 0.99537504, 0.9955, 0.995625, 0.99575007, 0.99587506, 0.99600005, 0.99612504, 0.99625003, 0.996375, 0.9965001, 0.99662507, 0.99675006, 0.99687505, 0.99700004, 0.997125, 0.99725, 0.9973751, 0.99750006, 0.99762505, 0.99775004, 0.99787503, 0.998, 0.9981251, 0.99825007, 0.99837506, 0.99850005, 0.99862504, 0.99875003, 0.998875, 0.9990001, 0.99912506, 0.99925005, 0.99937505, 0.99950004, 0.999625, 0.99975, 0.99987507, 1, 1.000125, 1.0002501, 1.000375, 1.0005001, 1.000625, 1.0007501, 1.000875, 1.001, 1.0011251, 1.00125, 1.0013751, 1.0015, 1.0016251, 1.00175, 1.001875, 1.0020001, 1.002125, 1.0022501, 1.002375, 1.0025, 1.002625, 1.00275, 1.0028751, 1.003, 1.0031251, 1.00325, 1.003375, 1.0035001, 1.003625, 1.0037501, 1.003875, 1.0040001, 1.004125, 1.00425, 1.0043751, 1.0045, 1.0046251, 1.00475, 1.0048751, 1.005, 1.005125, 1.0052501, 1.005375, 1.0055001, 1.005625, 1.0057501, 1.005875, 1.006, 1.0061251, 1.00625, 1.0063751, 1.0065, 1.006625, 1.0067501, 1.006875, 1.0070001, 1.007125, 1.0072501, 1.007375, 1.0075, 1.0076251, 1.00775, 1.0078751, 1.008, 1.0081251, 1.00825, 1.008375, 1.0085001, 1.008625, 1.0087501, 1.008875, 1.0090001, 1.009125, 1.00925, 1.0093751, 1.0095, 1.0096251, 1.00975, 1.009875, 1.01, 1.010125, 1.0102501, 1.010375, 1.0105001, 1.010625, 1.01075, 1.0108751, 1.011, 1.0111251, 1.01125, 1.0113751, 1.0115, 1.011625, 1.0117501, 1.011875, 1.0120001, 1.012125, 1.0122501, 1.012375, 1.0125, 1.0126251, 1.01275, 1.0128751, 1.013, 1.0131251, 1.01325, 1.013375, 1.0135001, 1.013625, 1.0137501, 1.013875, 1.014, 1.014125, 1.01425, 1.0143751, 1.0145, 1.0146251, 1.01475, 1.014875, 1.0150001, 1.015125, 1.0152501, 1.015375, 1.0155001, 1.015625, 1.01575, 1.0158751, 1.016, 1.0161251, 1.01625, 1.0163751, 1.0165, 1.016625, 1.0167501, 1.016875, 1.0170001, 1.017125, 1.0172501, 1.017375, 1.0175, 1.0176251, 1.01775, 1.0178751, 1.018, 1.018125, 1.0182501, 1.018375, 1.0185001, 1.018625, 1.0187501, 1.018875, 1.019, 1.0191251, 1.01925, 1.0193751, 1.0195, 1.0196251, 1.01975, 1.019875, 1.0200001, 1.020125, 1.0202501, 1.020375, 1.0205001, 1.020625, 1.02075, 1.0208751, 1.021, 1.0211251, 1.02125, 1.0213751, 1.0215, 1.021625, 1.0217501, 1.021875, 1.0220001, 1.022125, 1.02225, 1.0223751, 1.0225, 1.0226251, 1.02275, 1.0228751, 1.023, 1.023125, 1.0232501, 1.023375, 1.0235001, 1.023625, 1.0237501, 1.023875, 1.024, 1.0241251, 1.02425, 1.0243751, 1.0245, 1.0246251, 1.02475, 1.024875, 1.0250001, 1.025125, 1.0252501, 1.025375, 1.0255, 1.025625, 1.02575, 1.0258751, 1.026, 1.0261251, 1.02625, 1.026375, 1.0265001, 1.026625, 1.0267501, 1.026875, 1.0270001, 1.027125, 1.02725, 1.0273751, 1.0275, 1.0276251, 1.02775, 1.0278751, 1.028, 1.028125, 1.0282501, 1.028375, 1.0285001, 1.028625, 1.0287501, 1.028875, 1.029, 1.0291251, 1.02925, 1.0293751, 1.0295, 1.029625, 1.02975, 1.029875, 1.0300001, 1.030125, 1.0302501, 1.030375, 1.0305, 1.0306251, 1.03075, 1.0308751, 1.031, 1.0311251, 1.03125, 1.031375, 1.0315001, 1.031625, 1.0317501, 1.031875, 1.0320001, 1.032125, 1.03225, 1.0323751, 1.0325, 1.0326251, 1.03275, 1.0328751, 1.033, 1.033125, 1.0332501, 1.033375, 1.0335001, 1.033625, 1.03375, 1.0338751, 1.034, 1.0341251, 1.03425, 1.0343751, 1.0345, 1.034625, 1.0347501, 1.034875, 1.0350001, 1.035125, 1.0352501, 1.035375, 1.0355, 1.0356251, 1.03575, 1.0358751, 1.036, 1.0361251, 1.03625, 1.036375, 1.0365001, 1.036625, 1.0367501, 1.036875, 1.0370001, 1.037125, 1.03725, 1.0373751, 1.0375, 1.0376251, 1.03775, 1.037875, 1.0380001, 1.038125, 1.0382501, 1.038375, 1.0385001, 1.038625, 1.03875, 1.0388751, 1.039, 1.0391251, 1.03925, 1.0393751, 1.0395, 1.039625, 1.0397501, 1.039875, 1.0400001, 1.040125, 1.0402501, 1.040375, 1.0405, 1.0406251, 1.04075, 1.0408751, 1.041, 1.041125, 1.04125, 1.041375, 1.0415001, 1.041625, 1.0417501, 1.041875, 1.042, 1.0421251, 1.04225, 1.0423751, 1.0425, 1.0426251, 1.04275, 1.042875, 1.0430001, 1.043125, 1.0432501, 1.043375, 1.0435001, 1.043625, 1.04375, 1.0438751, 1.044, 1.0441251, 1.04425, 1.0443751, 1.0445, 1.044625, 1.0447501, 1.044875, 1.0450001, 1.045125, 1.04525, 1.0453751, 1.0455, 1.0456251, 1.04575, 1.0458751, 1.046, 1.046125, 1.0462501, 1.046375, 1.0465001, 1.046625, 1.0467501, 1.046875, 1.047, 1.0471251, 1.04725, 1.0473751, 1.0475, 1.0476251, 1.04775, 1.047875, 1.0480001, 1.048125, 1.0482501, 1.048375, 1.0485001, 1.048625, 1.04875, 1.0488751, 1.049, 1.0491251, 1.04925, 1.049375, 1.0495001, 1.049625, 1.0497501, 1.049875, 1.0500001, 1.050125, 1.05025, 1.0503751, 1.0505, 1.0506251, 1.05075, 1.0508751, 1.051, 1.051125, 1.0512501, 1.051375, 1.0515001, 1.051625, 1.0517501, 1.051875, 1.052, 1.0521251, 1.05225, 1.0523751, 1.0525, 1.0526251, 1.05275, 1.052875, 1.0530001, 1.053125, 1.0532501, 1.053375, 1.0535, 1.0536251, 1.05375, 1.0538751, 1.054, 1.0541251, 1.05425, 1.054375, 1.0545001, 1.054625, 1.0547501, 1.054875, 1.0550001, 1.055125, 1.05525, 1.0553751, 1.0555, 1.0556251, 1.05575, 1.0558751, 1.056, 1.056125, 1.0562501, 1.056375, 1.0565001, 1.056625, 1.05675, 1.0568751, 1.057, 1.0571251, 1.05725, 1.0573751, 1.0575, 1.057625, 1.0577501, 1.057875, 1.0580001, 1.058125, 1.0582501, 1.058375, 1.0585, 1.0586251, 1.05875, 1.0588751, 1.059, 1.0591251, 1.05925, 1.059375, 1.0595001, 1.059625, 1.0597501, 1.059875, 1.0600001, 1.060125, 1.06025, 1.0603751, 1.0605, 1.0606251, 1.06075, 1.060875, 1.0610001, 1.061125, 1.0612501, 1.061375, 1.0615001, 1.061625, 1.06175, 1.0618751, 1.062, 1.0621251, 1.06225, 1.0623751, 1.0625, 1.062625, 1.0627501, 1.062875, 1.0630001, 1.063125, 1.0632501, 1.063375, 1.0635, 1.0636251, 1.06375, 1.0638751, 1.064, 1.0641251, 1.06425, 1.064375, 1.0645001, 1.064625, 1.0647501, 1.064875, 1.065, 1.0651251, 1.06525, 1.0653751, 1.0655, 1.0656251, 1.06575, 1.065875, 1.0660001, 1.066125, 1.0662501, 1.066375, 1.0665001, 1.066625, 1.06675, 1.0668751, 1.067, 1.0671251, 1.06725, 1.0673751, 1.0675, 1.067625, 1.0677501, 1.067875, 1.0680001, 1.068125, 1.0682501, 1.068375, 1.0685, 1.0686251, 1.06875, 1.0688751, 1.069, 1.069125, 1.0692501, 1.069375, 1.0695001, 1.069625, 1.0697501, 1.069875, 1.07, 1.0701251, 1.07025, 1.0703751, 1.0705, 1.0706251, 1.07075, 1.070875, 1.0710001, 1.071125, 1.0712501, 1.071375, 1.0715001, 1.071625, 1.07175, 1.0718751, 1.072, 1.0721251, 1.07225, 1.072375, 1.0725001, 1.072625, 1.0727501, 1.072875, 1.0730001, 1.073125, 1.07325, 1.0733751, 1.0735, 1.0736251, 1.07375, 1.0738751, 1.074, 1.074125, 1.0742501, 1.074375, 1.0745001, 1.074625, 1.0747501, 1.074875, 1.075, 1.0751251, 1.07525, 1.0753751, 1.0755, 1.0756251, 1.07575, 1.075875, 1.0760001, 1.076125, 1.0762501, 1.076375, 1.0765, 1.0766251, 1.07675, 1.0768751, 1.077, 1.0771251, 1.07725, 1.077375, 1.0775001, 1.077625, 1.0777501, 1.077875, 1.0780001, 1.078125, 1.07825, 1.0783751, 1.0785, 1.0786251, 1.07875, 1.0788751, 1.079, 1.079125, 1.0792501, 1.079375, 1.0795001, 1.079625, 1.0797501, 1.079875, 1.08, 1.0801251, 1.08025, 1.0803751, 1.0805, 1.080625, 1.0807501, 1.080875, 1.0810001, 1.081125, 1.0812501, 1.081375, 1.0815, 1.0816251, 1.08175, 1.0818751, 1.082, 1.0821251, 1.08225, 1.082375, 1.0825001, 1.082625, 1.0827501, 1.082875, 1.0830001, 1.083125, 1.08325, 1.0833751, 1.0835, 1.0836251, 1.08375, 1.0838751, 1.0840001, 1.084125, 1.0842501, 1.084375, 1.0845001, 1.084625, 1.08475, 1.0848751, 1.085, 1.0851251, 1.08525, 1.0853751, 1.0855, 1.085625, 1.0857501, 1.085875, 1.0860001, 1.086125, 1.0862501, 1.086375, 1.0865, 1.0866251, 1.08675, 1.0868751, 1.087, 1.0871251, 1.08725, 1.087375, 1.0875001, 1.087625, 1.0877501, 1.087875, 1.088, 1.0881251, 1.08825, 1.0883751, 1.0885, 1.0886251, 1.08875, 1.088875, 1.0890001, 1.089125, 1.0892501, 1.089375, 1.0895001, 1.089625, 1.08975, 1.0898751, 1.09, 1.0901251, 1.09025, 1.0903751, 1.0905, 1.090625, 1.0907501, 1.090875, 1.0910001, 1.091125, 1.0912501, 1.091375, 1.0915, 1.0916251, 1.09175, 1.0918751, 1.092, 1.092125, 1.0922501, 1.092375, 1.0925001, 1.092625, 1.0927501, 1.092875, 1.093, 1.0931251, 1.09325, 1.0933751, 1.0935, 1.0936251, 1.09375, 1.093875, 1.0940001, 1.094125, 1.0942501, 1.094375, 1.0945001, 1.094625, 1.09475, 1.0948751, 1.095, 1.0951251, 1.09525, 1.0953751, 1.0955001, 1.095625, 1.0957501, 1.095875, 1.0960001, 1.096125, 1.09625, 1.0963751, 1.0965, 1.0966251, 1.09675, 1.0968751, 1.097, 1.097125, 1.0972501, 1.097375, 1.0975001, 1.097625, 1.0977501, 1.097875, 1.098, 1.0981251, 1.09825, 1.0983751, 1.0985, 1.0986251, 1.09875, 1.098875, 1.0990001, 1.099125, 1.0992501, 1.099375, 1.0995001, 1.0996251, 1.09975, 1.0998751, 1.1, 1.1001251, 1.10025, 1.100375, 1.1005001, 1.100625, 1.1007501, 1.100875, 1.1010001, 1.101125, 1.10125, 1.1013751, 1.1015, 1.1016251, 1.10175, 1.1018751, 1.102, 1.102125, 1.1022501, 1.102375, 1.1025001, 1.102625, 1.1027501, 1.102875, 1.103, 1.1031251, 1.10325, 1.1033751, 1.1035, 1.103625, 1.1037501, 1.103875, 1.1040001, 1.104125, 1.1042501, 1.104375, 1.1045, 1.1046251, 1.10475, 1.1048751, 1.105, 1.1051251, 1.10525, 1.105375, 1.1055001, 1.105625, 1.1057501, 1.105875, 1.1060001, 1.106125, 1.10625, 1.1063751, 1.1065, 1.1066251, 1.10675, 1.1068751, 1.107, 1.107125, 1.1072501, 1.107375, 1.1075001, 1.107625, 1.10775, 1.1078751, 1.108, 1.1081251, 1.10825, 1.1083751, 1.1085, 1.108625, 1.1087501, 1.108875, 1.1090001, 1.109125, 1.1092501, 1.109375, 1.1095, 1.1096251, 1.10975, 1.1098751, 1.11, 1.1101251, 1.11025, 1.110375, 1.1105001, 1.110625, 1.1107501, 1.110875, 1.1110001, 1.1111251, 1.11125, 1.1113751, 1.1115, 1.1116251, 1.11175, 1.111875, 1.1120001, 1.112125, 1.1122501, 1.112375, 1.1125001, 1.112625, 1.11275, 1.1128751, 1.113, 1.1131251, 1.11325, 1.1133751, 1.1135, 1.113625, 1.1137501, 1.113875, 1.1140001, 1.114125, 1.1142501, 1.114375, 1.1145, 1.1146251, 1.11475, 1.1148751, 1.115, 1.1151251, 1.1152501, 1.115375, 1.1155001, 1.115625, 1.1157501, 1.115875, 1.116, 1.1161251, 1.11625, 1.1163751, 1.1165, 1.1166251, 1.11675, 1.116875, 1.1170001], "showlegend": true, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.0022583697012237922, 0.009002960295419173, 0.01782280953398236, 0.026367992187261574, 0.03466902676473281, 0.0532242805261391, 0.06500442518387402, 0.07742545854060488, 0.09067049165318766, 0.11017181920834987, 0.1400189214758751, 0.14841151158177435, 0.13522751548814355, 0.14941862239448225, 0.15579699087496568, 0.17145298623615224, 0.1774040955839717, 0.17770928067873165, 0.2140263069551683, 0.1868037965025788, 0.1771599475081637, 0.184820093386639, 0.22687459944456312, 0.21604052858058412, 0.1989196447645497, 0.2620014038514359, 0.22006897183141574, 0.1271095919675283, 0.028962065492721335, 0.0007629627368999298, 0.0057985168004394665, 0.013092440565202796, -0.0029602954191717277, -0.0467238380077517, 0.03762932218390454, 0.13403729361857966, 0.18726157414471878, 0.25296792504654075, 0.26767784661397137, 0.24976348155156103, 0.3252052369762261, 0.3769951475569933, 0.40260017700735495, 0.4205755790887173, 0.423932615131077, 0.49061555833613085, 0.5986510818811609, 0.6237372966704307, 0.5992004150517288, 0.5411542100283823, 0.3619800408948027, 0.37870418408764916, 0.2381664479506821, 0.25940733054597614, 0.391155735953856, 0.19971312601092564, -0.012848292489394819, -0.3085421308023316, -0.42640461439863275, -0.48509170812097535, -0.45500045777764214, -0.41599780266731773, -0.3988769188512833, -0.3708609271523179, -0.4267097994933927, -0.4986419263283181, -0.7694631794183172, -0.9300515762810144, -0.8255561998352, -0.8124637592699973, -0.7882320627460555, -0.6556291390728477, -0.6167790765099033, -0.4942777794732505, -0.3890804773094882, -0.4761192663350322, -0.3447676015503403, -0.10708944975127414, 0.09381389812921537, 0.3741569261757256, 0.5028534806360058, 0.5645924253059481, 0.8295541245765556, 0.9176305429242836, 0.8985564745017853, 0.8876003295999023, 0.7217627491073336, 0.8317819757683035, 0.8661763359477523, 0.7640003662221138, 0.8008362071596423, 0.804101687673574, 0.6702780236213264, 0.38080996124149297, 0.05059968871120334, -0.16458632160405287, -0.2031922360911893, -0.22739341410565508, -0.1769768364513077, -0.1326944792016358, -0.1760917996765038, -0.10348826563310648, -0.11929685354167302, -0.3674733726004822, -0.4965361491744743, -0.4735251930295724, -0.5948667867061372, -0.6451918088320566, -0.6357005523850215, -0.6233405560472427, -0.4617450483718375, -0.4827112643818476, -0.41779839472640157, -0.2011474959562975, -0.11218604083376568, 0.086977752006592, 0.3427838984344005, 0.5158848841822565, 0.717703787347026, 0.847834711752678, 0.9183629871517075, 0.9335917233802301, 0.7450788903469955, 0.6678365428632466, 0.6705526902066103, 0.6148564104129154, 0.5958433790093692, 0.4280831324198126, 0.2779625843073824, 0.07699819940794092, -0.3094882045960875, -0.7224951933347575, -0.9143955809198279, -0.9610583819086276, -0.9657887508774071, -0.8504287850581378, -0.8621173741874447, -0.793725394451735, -0.7012237922299875, -0.8574785607470932, -1.000030518509476, -1.000030518509476, -1.000030518509476, -1.000030518509476, -0.999969481490524, -1.000030518509476, -1.000030518509476, -0.9616382335886715, -0.8082216864528337, -0.5105136265144811, -0.38517410809656055, -0.26447340311899165, 0.05258339182714316, 0.31177709280678734, 0.5367595446638386, 0.7217017120883816, 0.8759117404705954, 1, 1, 0.924649800103763, 0.9731131931516465, 0.9386272774437696, 1, 0.9818720053712576, 0.8052613910336619, 0.7134311960203864, 0.48347422711874755, 0.058534501174962617, -0.304574724570452, -0.42088076418347725, -0.5099032563249611, -0.44819483016449474, -0.42484817041535694, -0.46140934476760154, -0.3436078981902524, -0.36954863124485, -0.5384685811944945, -0.5931272316660054, -0.6331980346079897, -0.7114169743949705, -0.7651600695822016, -0.8394726401562548, -0.6781212805566577, -0.6529129917294839, -0.7102572710348827, -0.37662892544328136, -0.18301950132755515, -0.2088381603442488, -0.06494338816492203, 0.22186956389049958, 0.4762413403729362, 0.6119266335032197, 0.7444990386669516, 0.9784844508194219, 1, 0.913418988616596, 0.8832972197637867, 0.8402966399121067, 0.7979064302499466, 0.7994323557237465, 0.6726584673604541, 0.4665364543595691, 0.31818597979674673, 0.05337687307351909, -0.3442793053987243, -0.5810419019135106, -0.7405621509445479, -0.8013245033112583, -0.8238471633045442, -0.8623004852443007, -0.8078554643391217, -0.7227088229010895, -0.8208868678853725, -0.879848628192999, -0.8520157475508896, -0.9199804681539354, -0.924283577990051, -0.9985656300546282, -0.9145786919766838, -0.7360759300515762, -0.7715079195532091, -0.5826593829157384, -0.20908230842005676, -0.09689626758629108, -0.05917538987395855, 0.11716055787835322, 0.3904538102359081, 0.5992614520706808, 0.6937162388988922, 0.9060335093234047, 1, 1, 1, 0.999969481490524, 1, 0.999969481490524, 1, 0.9199194311349833, 0.6944792016357921, 0.5310525833918271, 0.27127903073213905, -0.02816858424634541, -0.24936674092837305, -0.3793450727866451, -0.4447462385937071, -0.5561998352000488, -0.5609302041688284, -0.5502792443617054, -0.5898312326425977, -0.6675313577684866, -0.6610309152500992, -0.6783349101229896, -0.6901150547807245, -0.7551499984740745, -0.7851802117984558, -0.6529435102389599, -0.6338389233069857, -0.575670644245735, -0.3270058290353099, -0.09537034211249122, -0.043488876003296, 0.011719107638782922, 0.15616321298867764, 0.35505233924375135, 0.48298593096713155, 0.6274300363170263, 0.8217413861507004, 0.8779869991149633, 0.8930326242866299, 0.880306405835139, 0.804864650410474, 0.8384960478530229, 0.7950682088686789, 0.6699728385265664, 0.5440839869380779, 0.2967925046540727, 0.10400708029419843, -0.10989715262306589, -0.337137974181341, -0.5174718466750083, -0.6009094515823847, -0.7403180028687399, -0.8096865749076815, -0.7595141453291421, -0.8576921903134251, -0.8946195867793817, -0.8692281868953521, -0.8667561876277963, -0.8167058320871609, -0.7954344309823909, -0.8282418286690878, -0.7111117893002106, -0.6490981780449843, -0.5618152409436323, -0.3316141239661855, -0.10135196996978668, 0.07672353282265694, 0.15256202887050996, 0.2680440687276833, 0.4260689107943968, 0.5622425000762963, 0.6806848353526413, 0.8973052156132695, 0.9620654927213355, 0.9852290414136173, 1, 1, 1, 1, 0.9520554216132084, 0.8224738303781244, 0.6682943205053865, 0.4107791375469222, 0.2313913388470107, 0.07229834894863735, -0.14416943876461075, -0.2761314737388226, -0.41029084139530625, -0.5803094576860867, -0.5782952360606708, -0.6099734488967559, -0.8073366496780298, -0.783349101229896, -0.7741630298776208, -0.8189031647694327, -0.7672048097170934, -0.770989104892117, -0.7133091219824824, -0.6555070650349437, -0.6259346293527024, -0.42692342905972475, -0.21243934446241647, -0.06271553697317422, 0.08032471694082462, 0.14941862239448225, 0.24726096377452925, 0.33762627033295695, 0.3945127719962157, 0.5631275368511002, 0.6877956480605487, 0.6422925504318369, 0.7007965330973235, 0.7159031952879421, 0.6909085360271005, 0.706991790520951, 0.6753746147038179, 0.6102175969725638, 0.4714804528946806, 0.3077181310464797, 0.065095980712302, -0.0456251716666158, -0.16678365428632466, -0.3100680562761315, -0.42893765068514056, -0.5988952299569689, -0.6594744712668233, -0.6609698782311472, -0.7701956236457411, -0.8981902523880734, -0.8212225714896084, -0.8176213873714407, -0.8235724967192602, -0.7852717673268838, -0.6920987578966643, -0.5831781975768303, -0.5903195287942137, -0.42976165044099246, -0.15091402935880613, 0.019531846064638203, 0.15485091708120977, 0.30289620654927213, 0.4001892147587512, 0.49485763115329445, 0.5442060609759819, 0.6793725394451735, 0.826105533005768, 0.815912350840785, 0.8316599017303995, 0.8428601947080905, 0.826380199591052, 0.8500625629444258, 0.8120670186468093, 0.7657094027527696, 0.684621723075045, 0.5448774681844538, 0.34815515610217596, 0.16113773003326518, 0.08084353160191657, -0.023895992919705802, -0.1445966978972747, -0.3350321970274972, -0.4521317178868984, -0.4812463759269997, -0.5783562730796228, -0.7051301614429152, -0.7733695486312449, -0.7630848109378338, -0.7799310281685843, -0.8240913113803522, -0.793511764885403, -0.6672566911832026, -0.6515396588030641, -0.6178167058320871, -0.3825189977721488, -0.1587267677846614, -0.022217474898525956, 0.09863582262642293, 0.21982482375560777, 0.3059175389873959, 0.3100375377666555, 0.3792535172582171, 0.5571764275032808, 0.5608691671498764, 0.5481734672078615, 0.6016113773003327, 0.5816827906125065, 0.6042359691152684, 0.6062501907406842, 0.5620593890194403, 0.5077669606616413, 0.4149296548356578, 0.2697225867488632, 0.10431226538895841, -0.01532029175695059, -0.05197302163762322, -0.09250160222174748, -0.23963133640552994, -0.39402447584459976, -0.42335276345103307, -0.488876003295999, -0.6132389294106876, -0.6674703207495346, -0.6978667561876278, -0.684743797112949, -0.7030854213080233, -0.7295754875331889, -0.6159550767540514, -0.5567186498611408, -0.554185613574633, -0.38663899655140843, -0.1543321024201178, 0.02990813928647725, 0.16946928312021242, 0.2999969481490524, 0.43461409344767604, 0.47172460097048863, 0.4720603045747246, 0.6422315134128849, 0.71797845393231, 0.6774498733481856, 0.71660512100589, 0.7149571214941862, 0.7347941526535844, 0.7410199285866879, 0.6986907559434797, 0.6476943266090884, 0.5673085726493118, 0.44505142368846706, 0.29200109866634116, 0.1662648396252327, 0.07495345927304911, 0.0630817590868862, -0.02459791863765374, -0.20926541947691274, -0.2815332499160741, -0.3543198950163274, -0.500289925840022, -0.5984374523148289, -0.6425672170171208, -0.6914273506881924, -0.717947935422834, -0.782525101474044, -0.7456282235175634, -0.6597796563615833, -0.6881313516647847, -0.5966673787652211, -0.40815454573198645, -0.23117770928067874, -0.0805078279976806, 0.03381450849940489, 0.20029297769096957, 0.2857753227332377, 0.24375133518478959, 0.35288552507095555, 0.49284340952787864, 0.4719992675557726, 0.4900662251655629, 0.5162511062959685, 0.5477767265846736, 0.6108584856715598, 0.5815912350840785, 0.5497909482100894, 0.49971007415997803, 0.402111880855739, 0.2708822901089511, 0.15500350962858975, 0.07336649678029725, 0.05227820673238319, 0.04950102237006745, -0.08532975249488815, -0.1795403912472915, -0.2098147526474807, -0.3346659749137852, -0.45481734672078616, -0.4925382244331187, -0.5282448805200354, -0.5611438337351604, -0.6354869228186896, -0.6473586230048525, -0.5596789452803125, -0.5727713858455153, -0.5475325785088656, -0.3881344035157323, -0.22028260139774775, -0.06039613025299844, 0.05969420453505051, 0.19702749717703788, 0.3609424115726188, 0.3534958952604755, 0.3947569200720237, 0.5622425000762963, 0.5750297555467391, 0.5862300485244301, 0.6130863368633076, 0.6080202642902921, 0.684072389904477, 0.7012848292489395, 0.6556901760917997, 0.6026184881130405, 0.5181737723929564, 0.39069795831171605, 0.24756614886928924, 0.1477706228827784, 0.08822901089510789, 0.08835108493301187, -0.003906369212927641, -0.1292764061403241, -0.1703848384044923, -0.2812280648213141, -0.4325693533127842, -0.5156102175969726, -0.5615405743583484, -0.6000244148075808, -0.6719565416425062, -0.7430646687215796, -0.6862086855677969, -0.6702169866023744, -0.6890469069490646, -0.587054048280282, -0.4504531998657186, -0.3086947233497116, -0.18436231574449904, -0.06979583117160558, 0.1152378917813654, 0.1770683919797357, 0.16928617206335642, 0.3434247871333964, 0.41923276467177345, 0.41804254280220954, 0.47315897091586046, 0.48017822809533983, 0.554063539536729, 0.620319223609119, 0.6137577440717795, 0.5909298989837336, 0.5269631031220435, 0.4252449110385449, 0.2974639118625446, 0.19092379528183845, 0.12530899990844446, 0.13629566331980347, 0.08764915921506394, -0.032227546006653035, -0.06189153721732231, -0.1259498886074404, -0.26691488387707146, -0.3706778160954619, -0.42704550309762873, -0.45634327219458604, -0.5117038483840449, -0.6019165623950926, -0.575975829340495, -0.5474105044709616, -0.5817743461409345, -0.5188146610919523, -0.3978698080385754, -0.26786095767082735, -0.14609210486159857, -0.049226355784783474, 0.11908322397534105, 0.2456434827723014, 0.2248298593096713, 0.3442487868892483, 0.46699423200170903, 0.45786919766838585, 0.5015411847285378, 0.5170140690328684, 0.5676442762535477, 0.6577654347361674, 0.6653035065767388, 0.6516922513504441, 0.6104312265388958, 0.5131382183294168, 0.37537766655476545, 0.25156407361064487, 0.15408795434430983, 0.1239967040009766, 0.10220648823511459, -0.025177770317697683, -0.09006012146366771, -0.13217566454054383, -0.26502273628955964, -0.3960081789605396, -0.4741355632190924, -0.5152439954832606, -0.5585192419202246, -0.6638080996124149, -0.6839808343760491, -0.6376232184820093, -0.684438612018189, -0.6554155095065157, -0.5507065034943693, -0.43952757347331156, -0.3191625720999786, -0.23654896694845423, -0.1032441175572985, 0.0686056093020417, 0.0782494582964568, 0.14703817865535448, 0.32020020142216254, 0.3467818231757561, 0.3880428479873043, 0.42841883602404857, 0.46339304788354135, 0.5739616077150792, 0.6260261848811304, 0.6322824793237098, 0.630970183416242, 0.575334940641499, 0.46748252815332497, 0.3442793053987243, 0.2444227423932615, 0.20941801202429272, 0.2109744560075686, 0.11166722617267373, 0.01544236579485458, -0.0086977752006592, -0.09945982238227485, -0.2293771172215949, -0.3282570879238258, -0.3849909970397046, -0.4079714346751305, -0.4964140751365703, -0.5666371654408399, -0.5142674031800287, -0.5362407300027466, -0.554521317178869, -0.4698629718924528, -0.3674123355815302, -0.2508621478926969, -0.17575609607226783, -0.09070101016266366, 0.0792870876186407, 0.12686544389172033, 0.13071077608569598, 0.2975859859004486, 0.3568834498123112, 0.3597521897030549, 0.4117862483596301, 0.42701498458815274, 0.5181432538834804, 0.5990783410138248, 0.6094546342356639, 0.6122013000885037, 0.5750297555467391, 0.4868312631611072, 0.36225470748008665, 0.23993652150028993, 0.1717276528214362, 0.17563402203436385, 0.10516678365428632, -0.01901303140354625, -0.058015686513870665, -0.12692648091067232, -0.2536088137455367, -0.36899929807428206, -0.4466994232001709, -0.47740104373302406, -0.5410016174810022, -0.641407513657033, -0.6212958159123508, -0.618640705587939, -0.6580706198309274, -0.5960570085757012, -0.5045319986571856, -0.3896908474990082, -0.29419843134861295, -0.22266304513687551, -0.06729331339457381, 0.041169469283120215, 0.020691549424726098, 0.14990691854609822, 0.27420880764183475, 0.2757042146061586, 0.32624286629841, 0.358378856776635, 0.4368724631488998, 0.5493636890774255, 0.5891903439436018, 0.6147343363750114, 0.6177861873226111, 0.5590075380718406, 0.4700155644398328, 0.36268196661275065, 0.2807397686696982, 0.28244880520035404, 0.26221503341776786, 0.14065981017487106, 0.08297982726523637, 0.03900265511032441, -0.07913449507126072, -0.19968260750144962, -0.29920346690267646, -0.3422650837733085, -0.3922849208044679, -0.5100863673818171, -0.5248573259681997, -0.5011139255958739, -0.5571764275032808, -0.5352336191900388, -0.4629657887508774, -0.3640247810296945, -0.26505325479903563, -0.21240882595294047, -0.097842341380047, 0.03753776665547655, 0.022278511917477952, 0.0826136051515244, 0.22882778405102694, 0.24485000152592548, 0.2730796227912229, 0.29709768974883266, 0.3412884914700766, 0.4607684560686056, 0.5272988067262795, 0.5455793939024018, 0.5560167241431928, 0.5165868099002044, 0.4400769066438795, 0.33835871456038086, 0.24250007629627368, 0.22363963744010742, 0.22971282082583086, 0.12982573931089206, 0.04376354258857997, 0.010498367259743034, -0.08676412244026002, -0.21164586321604054, -0.32560197759941406, -0.38972136600848417, -0.4210333567308573, -0.5312356944486831, -0.6003601184118168, -0.5660573137607959, -0.6137272255623035, -0.6250190740684225, -0.5580004272591327, -0.467848750267037, -0.3541367839594714, -0.2903225806451613, -0.2021240882595294, -0.03857539597766045, -0.005767998290963469, 0.003509628589739677, 0.16031373027741325, 0.2161626026184881, 0.23691518906216621, 0.2773216956083865, 0.30500198370311593, 0.4175542466505936, 0.5201269569994201, 0.5637379070406201, 0.6003295999023408, 0.5945921201208533, 0.5422528763695181, 0.46552934354686115, 0.37235633411664176, 0.33347575304422133, 0.359080782494583, 0.2977080599383526, 0.19812616351817378, 0.16168706320383314, 0.09015167699209571, -0.030274361400189215, -0.15833002716147343, -0.2535782952360607, -0.2899563585314493, -0.38297677541428876, -0.4980620746482742, -0.48524430066835533, -0.5185399945066683, -0.5711844233527634, -0.5374614703817866, -0.47541734061708424, -0.3747978148747215, -0.3073213904232917, -0.2556230353709525, -0.10959196752830591, -0.02557451094088565, -0.05603198339793085, 0.056459242530594804, 0.1565294351023896, 0.16144291512802514, 0.19412823877681815, 0.2076479384746849, 0.28675191503646963, 0.40461439863277077, 0.4611041596728416, 0.5024262215033418, 0.5120395519882809, 0.4695883053071688, 0.4042481765190588, 0.3142185735648671, 0.25528733176671653, 0.28452406384472184, 0.2659382915738395, 0.15970336008789332, 0.11575670644245735, 0.06567583239234596, -0.0423291726432081, -0.16330454420606097, -0.27335428937650685, -0.32294686727500227, -0.39088106936857203, -0.5206762901699881, -0.5405743583483382, -0.5410931730094303, -0.6119571520126957, -0.597857600634785, -0.543198950163274, -0.4466689046906949, -0.3542893765068514, -0.3064973906674398, -0.18134098330637533, -0.05090487380596332, -0.06234931485946226, 0.0021668141727958007, 0.1348307748649556, 0.16290780358287302, 0.20075075533310954, 0.22574541459395123, 0.28305917538987396, 0.40940580462050236, 0.49482711264381846, 0.5473799859614856, 0.587023529770806, 0.5669423505355998, 0.510940885647145, 0.43824579607531966, 0.3609424115726188, 0.3721732230597858, 0.3936887722403638, 0.3073519089327677, 0.23844111453596606, 0.2021240882595294, 0.11679433576464125, 0.0018311105685598315, -0.12881862849818415, -0.20456556901760917, -0.2528763695181127, -0.39271217993713187, -0.46259956663716545, -0.4524369029816584, -0.5290078432569353, -0.5614795373393964, -0.5348063600573748, -0.4698324533829768, -0.37794122135074926, -0.34180730613116855, -0.26248970000305183, -0.11166722617267373, -0.09530930509353923, -0.0826441236610004, 0.044495986816003905, 0.09109775078585162, 0.11868648335215308, 0.13995788445692312, 0.1662648396252327, 0.27430036317026274, 0.37675099948118534, 0.4325083162938322, 0.4793542283394879, 0.48420667134617146, 0.43888668477431564, 0.3667409283730583, 0.2808313241981262, 0.271706289864803, 0.3197424237800226, 0.2703939939573351, 0.19147312845240638, 0.15918454542680135, 0.09509567552720725, -0.0024414807580797754, -0.12588885158848842, -0.21835993530075992, -0.25315103610339673, -0.3650318918424024, -0.47657704397717215, -0.4629047517319254, -0.5128025147251808, -0.5644703512680441, -0.5478988006225776, -0.5021515549180579, -0.40195928830835903, -0.3445234534745323, -0.2945036164433729, -0.14749595629749443, -0.07473982970671712, -0.0902127140110477, 0.020325327311014132, 0.10504470961638233, 0.13425092318491164, 0.17224646748252814, 0.19260231330301827, 0.28116702780236213, 0.39936521500289923, 0.4663533433027131, 0.5257728812524797, 0.5568712424085208, 0.5312356944486831, 0.47849971007416, 0.3883175145725883, 0.3415326395458846, 0.38953825495162814, 0.3836481826227607, 0.29920346690267646, 0.26490066225165565, 0.2141483809930723, 0.12253181554612873, 0.012970366527298808, -0.10711996826075014, -0.15500350962858975, -0.24210333567308573, -0.3946958830530717, -0.4153263954588458, -0.4445631275368511, -0.5235450300607318, -0.5314493240150151, -0.5168309579760124, -0.4461806085390789, -0.3838923306985687, -0.36255989257484666, -0.2523270363475448, -0.14099551377910702, -0.16321298867763298, -0.10614337595751823, -0.005615405743583483, 0.019196142460402233, 0.05124057741019929, 0.06143375957518235, 0.11822870571001312, 0.24054689168980986, 0.3245948667867061, 0.3826410718100528, 0.43736075930051577, 0.43421735282448803, 0.3994567705313273, 0.3253273110141301, 0.2507095553453169, 0.28434095278786586, 0.3247169408246101, 0.2626117740409558, 0.22034363841669974, 0.18976409192175053, 0.11203344828638569, 0.02185125278481399, -0.09405804620502335, -0.14539017914365063, -0.1869563890499588, -0.33542893765068515, -0.3932920316171758, -0.39219336527603993, -0.4697408978545488, -0.4934537797173986, -0.4869533371990112, -0.4323862422559282, -0.35358745078890347, -0.3335978270821253, -0.25504318369090856, -0.12131107516708883, -0.11337626270332957, -0.09640797143467512, 0.013855403302102725, 0.0587481307412946, 0.08700827051606799, 0.10016174810022278, 0.13757744071779535, 0.25028229621265297, 0.3520310068056276, 0.4147160252693258, 0.47645496993926817, 0.4966277047029023, 0.4770348216193121, 0.42912076174199654, 0.3387859736930448, 0.33841975157933285, 0.39979247413556324, 0.3609424115726188, 0.3073519089327677, 0.2815942869350261, 0.2086855677968688, 0.1250343333231605, 0.010803552354503006, -0.07861568041016877, -0.10711996826075014, -0.24320200201422162, -0.36420789208655047, -0.3645741142002625, -0.43473616748558, -0.489455854976043, -0.49488814966277045, -0.47773674733726007, -0.4051637318033387, -0.3890194402905362, -0.35944700460829493, -0.22882778405102694, -0.18881801812799462, -0.2118900112918485, -0.12640766624958036, -0.06534012878810999, -0.04165776543473617, -0.025666066469313638, -0.01077303384502701, 0.0836207159642323, 0.1990112002929777, 0.2731711783196509, 0.34165471358378857, 0.39057588427381207, 0.39204077272865995, 0.3715323343607898, 0.2956633198034608, 0.25937681203650015, 0.3350932340464492, 0.3411969359416486, 0.29081087679677725, 0.2793359172338023, 0.23310037537766656, 0.16229743339335306, 0.06692709128086184, -0.0358592486342967, -0.05935850093081454, -0.14621417889950256, -0.29642628254036074, -0.3127536851100192, -0.35786004211554306, -0.4309213538010804, -0.4400463881344035, -0.4378795739616077, -0.36985381633960995, -0.3317972350230415, -0.33085116122928554, -0.22336497085482346, -0.1380046998504593, -0.16696676534318064, -0.11896114993743706, -0.03848384044923246, -0.011658070619830927, 0.008728293710135197, 0.010406811731315043, 0.06591998046815394, 0.18945890682699057, 0.2787255470442824, 0.347758415478988, 0.413495284890286, 0.4273201696829127, 0.4206671346171453, 0.3708609271523179, 0.3085116122928556, 0.35572374645222327, 0.3967711416974395, 0.34809411908322396, 0.3271279030732139, 0.29517502365184484, 0.22537919248023927, 0.13852351451155126, 0.01272621845149083, -0.03292947172460097, -0.08502456740012818, -0.2535477767265847, -0.31528672139652697, -0.3457747123630482, -0.4359569078646199, -0.4699240089114048, -0.48420667134617146, -0.44178594317453534, -0.39091158787804803, -0.4076357310708945, -0.3466292306283761, -0.2359080782494583, -0.2489700003051851, -0.2413403729361858, -0.16019165623950926, -0.119602038636433, -0.09958189642017884, -0.0966826380199591, -0.06097598193304239, 0.04815820795312357, 0.1543015839106418, 0.22748496963408307, 0.30701620532853174, 0.3456831568346202, 0.3532822656941435, 0.3352153080843532, 0.2634052552873318, 0.2858668782616657, 0.36350596636860255, 0.3437299722281564, 0.3241370891445662, 0.31470686971648304, 0.2641071810052797, 0.19980468153935363, 0.08960234382152776, 0.015381328775902585, -0.0003967406231879635, -0.13940855128635518, -0.24619281594286935, -0.25525681325724053, -0.34095278786584066, -0.3931394390697958, -0.4154179509872738, -0.3934446241645558, -0.32425916318247017, -0.33219397564622943, -0.3098239082003235, -0.19287697988830227, -0.16949980162968842, -0.1912289803765984, -0.12793359172338023, -0.07589953306680501, -0.054109317300943024, -0.0521866512039552, -0.040345469527268286, 0.04797509689626759, 0.16269417401654104, 0.2357554857020783, 0.3129978331858272, 0.37052522354808193, 0.3784905545213172, 0.37662892544328136, 0.31134983367412333, 0.2918485061189611, 0.37470625934629354, 0.37739188818018127, 0.3422040467543565, 0.33558153019806514, 0.2884914700766015, 0.22913296914578693, 0.1261024811548204, 0.020722067934202094, 0.0034485915707876827, -0.10275582140568254, -0.25040437025055695, -0.27887813959166236, -0.34803308206427197, -0.4304025391399884, -0.4609820856349376, -0.4715414899136326, -0.41172521134067813, -0.3960386974700156, -0.4113284707174902, -0.31592761009552295, -0.2541276284066286, -0.28388317514572586, -0.24713888973662526, -0.18283639027069917, -0.15491195410016176, -0.14578691976683858, -0.14410840174565875, -0.08185064241462447, 0.03686635944700461, 0.12738425855281227, 0.2000793481246376, 0.2815332499160741, 0.31028168584246346, 0.325876644184698, 0.29505294961394085, 0.2413403729361858, 0.31788079470198677, 0.37601855525376143, 0.35276345103305157, 0.3563646351512192, 0.3301797540208136, 0.2833643604846339, 0.21314127018036438, 0.09930722983489486, 0.07513657032990509, 0.021881771294289986, -0.13782158879360332, -0.18897061067537463, -0.22553178502761925, -0.3176366466261788, -0.3575853755302591, -0.3827631458479568, -0.3412579729606006, -0.30042420728171637, -0.33079012421033355, -0.2707907345805231, -0.18063905758842738, -0.20191045869319743, -0.2012085329752495, -0.14078188421277504, -0.10718100527970215, -0.10260322885830256, -0.11435285500656148, -0.07895138401440474, 0.020325327311014132, 0.11792352061525316, 0.18497268593401897, 0.26560258796960357, 0.30417798394726403, 0.31894894253364664, 0.3085116122928556, 0.239234595782342, 0.271889400921659, 0.3530991546372875, 0.34397412030396435, 0.34037293618579667, 0.32779931028168585, 0.27625354777672656, 0.2226935636463515, 0.11050752281258583, 0.05633716849269082, 0.036133915219580676, -0.11212500381481369, -0.2108523819696646, -0.2367015594958342, -0.3248390148625141, -0.38654744102298044, -0.423932615131077, -0.4078798791467025, -0.3520004882961516, -0.3769646290475173, -0.3599047822504349, -0.26145207068086795, -0.2540360728782006, -0.2771996215704825, -0.23111667226172675, -0.1868343150120548, -0.17453535569322795, -0.18869594409009063, -0.17346720786156805, -0.0891750846888638, 0.02240058595538194, 0.09418012024292734, 0.1772515030365917, 0.24515518662068544, 0.2694784386730552, 0.293527024140141, 0.23963133640552994, 0.23426007873775445, 0.3282570879238258, 0.3531601916562395, 0.35843989379558705, 0.37028107547227396, 0.33115634632404556, 0.2969756157109287, 0.2084719382305368, 0.12646870326853238, 0.13235877559739984, 0.02587969603564562, -0.10882900479140599, -0.1347697378460036, -0.2032532731101413, -0.2779320657979064, -0.32087160863063446, -0.33555101168858914, -0.27875606555375837, -0.28513443403424177, -0.3093356120487075, -0.22400585955381938, -0.18414868617816707, -0.22583697012237922, -0.21027253028962065, -0.16803491317484054, -0.1511581774346141, -0.17319254127628406, -0.1869258705404828, -0.13303018280587176, -0.02270577105014191, 0.0586565752128666, 0.12329477828302866, 0.2022461622974334, 0.22675252540665913, 0.2591326639606922, 0.23029267250587482, 0.184667500839259, 0.26584673604541154, 0.3184301278725547, 0.3173009430219428, 0.3399761955626087, 0.3141575365459151, 0.2780846583452864, 0.21323282570879237, 0.1065095980712302, 0.10122989593188268, 0.04422132023071993, -0.10998870815149388, -0.16180913724173712, -0.2078005310220649, -0.29371013519699696, -0.3449812311166723, -0.3778191473128452, -0.33835871456038086, -0.31397442548905913, -0.3567918942838832, -0.30072939237647633, -0.2316049684133427, -0.2652058473464156, -0.271584215826899, -0.23010956144901884, -0.19721060823389386, -0.20804467909787286, -0.2315134128849147, -0.20474868007446517, -0.1043427838984344, -0.002533036286507767, 0.06317331461531418, 0.15628528702658162, 0.2012085329752495, 0.23325296792504654, 0.24210333567308573, 0.19254127628406628, 0.24860377819147314, 0.33323160496841336, 0.34388256477553636, 0.3759575182348094, 0.38297677541428876, 0.3568529313028352, 0.3192846461378826, 0.21488082522049623, 0.18079165013580736, 0.17093417157506027, 0.029877620777001252, -0.061799981688894313, -0.09695730460524309, -0.1836909085360271, -0.24927518539994506, -0.2976470229194006, -0.2785119174779504, -0.23749504074221015, -0.2835169530320139, -0.27884762108218636, -0.2000183111056856, -0.20755638294625692, -0.24079103976561786, -0.2196111941892758, -0.18652912991729484, -0.19043549913022248, -0.23227637562181463, -0.23191015350810265, -0.16248054445020904, -0.05679494613483078, 0.008575701162755212, 0.08792382580034791, 0.152317880794702, 0.18066957609790338, 0.2099368266853847, 0.16556291390728478, 0.18222602008117925, 0.27625354777672656, 0.30198065126499224, 0.32642597735526596, 0.35050508133182773, 0.32584612567522203, 0.30356761375774405, 0.21814630573442792, 0.15308084353160192, 0.1620227668080691, 0.05145420697653127, -0.07238990447706534, -0.10721152378917814, -0.1805169835505234, -0.2555314798425245, -0.3143101290932951, -0.32508316293832207, -0.2695394756920072, -0.2923368022705771, -0.3226416821802423, -0.24912259285256508, -0.22870571001312295, -0.271553697317423, -0.26483962523270366, -0.22989593188268684, -0.21442304757835629, -0.25049592577898494, -0.27115695669423506, -0.22052674947355572, -0.11511581774346141, -0.036225470748008665, 0.04046754356517228, 0.12445448164311655, 0.1578112125003815, 0.20511490218817713, 0.18625446333201087, 0.16684469130527665, 0.25952940458388013, 0.315134128849147, 0.3415021210364086, 0.3837092196417127, 0.37400433362834556, 0.3631092257454146, 0.30436109500412, 0.21457564012573627, 0.2239448225348674, 0.16327402569658497, 0.020172734763634143, -0.03057954649494919, -0.08661152989288003, -0.17401654103213599, -0.2412488174077578, -0.27909176915799433, -0.2324594866786706, -0.2247993408001953, -0.28238776818140204, -0.23853267006439405, -0.18640705587939085, -0.22705771050141912, -0.24881740775780511, -0.22910245063631093, -0.20828882717368083, -0.2369457075716422, -0.2846766563921018, -0.26639606921597947, -0.1760307626575518, -0.0902432325205237, -0.030060731833857234, 0.056581316568498796, 0.09930722983489486, 0.14111758781701103, 0.15167699209570604, 0.10812707907345805, 0.17453535569322795, 0.2555009613330485, 0.27628406628620256, 0.32514419995727406, 0.3331095309305094, 0.3227637562181463, 0.2959685048982208, 0.2010254219183935, 0.18936735129856258, 0.17041535691396834, 0.03601184118167669, -0.04663228247932371, -0.08627582628864407, -0.16132084109012115, -0.23377178258613848, -0.2898037659840693, -0.2659382915738395, -0.22540971098971527, -0.2793359172338023, -0.27451399273659477, -0.2043824579607532, -0.2248298593096713, -0.2616962187566759, -0.2512894070253609, -0.217169713431196, -0.2218390453810236, -0.2744224372081668, -0.2815942869350261, -0.21222571489608447, -0.11078218939786981, -0.04647968993194372, 0.03738517410809656, 0.10031434064760276, 0.13742484817041536, 0.17297891170995208, 0.13815729239783928, 0.17053743095187232, 0.2681661427655873, 0.30182805871761226, 0.3491622669148839, 0.3813287759025849, 0.3705862605670339, 0.36793115024262213, 0.28098391674550616, 0.2359996337778863, 0.250160222174749, 0.14532914212469863, 0.033295693838312934, -0.007965330973235268, -0.07531968138676107, -0.15552232428968168, -0.22785119174779503, -0.2345957823419904, -0.17722098452711568, -0.21271401104770044, -0.24408703878902555, -0.18301950132755515, -0.1815240943632313, -0.23215430158391065, -0.24427014984588152, -0.21872615741447188, -0.21039460432752463, -0.2686544389172033, -0.3075655384990997, -0.26895962401196327, -0.17221594897305215, -0.1033661915952025, -0.03640858180486465, 0.037781914731284526, 0.07544175542466507, 0.12195196386608478, 0.10190130314035463, 0.09610278633991516, 0.18756675923947874, 0.23789178136539813, 0.2774132511368145, 0.33295693838312934, 0.3346659749137852, 0.3436384166997284, 0.2858058412427137, 0.2185125278481399, 0.2456740012817774, 0.18207342753379924, 0.0597857600634785, 0.008209479049043246, -0.04376354258857997, -0.11783196508682516, -0.19299905392620625, -0.2294076357310709, -0.17343668935209205, -0.17203283791619617, -0.2241279335917234, -0.18231757560960724, -0.15265358439893795, -0.19183935056611834, -0.2239448225348674, -0.21146275215918456, -0.18878749961851862, -0.2325510422070986, -0.28885769219031343, -0.2815027314065981, -0.2010254219183935, -0.11825922421948912, -0.05716116824854274, 0.024536881618701743, 0.06826990569780572, 0.11557359538560137, 0.12347788933988464, 0.09558397167882321, 0.17157506027405622, 0.24857325968199714, 0.2847071749015778, 0.34464552751243627, 0.3577379680776391, 0.3660084841456343, 0.34513382366405226, 0.26035340433973203, 0.2686239204077273, 0.2514114810632649, 0.12979522080141606, 0.055696279793694875, 0.009491256447035128, -0.058931241798150576, -0.13324381237220373, -0.18961149937437055, -0.1585131382183294, -0.12570574053163244, -0.17975402081362346, -0.17923520615253152, -0.13418988616595964, -0.16498306222724082, -0.2152165288247322, -0.22763756218146305, -0.206396679586169, -0.22809533982360303, -0.2978606524857326, -0.3253273110141301, -0.2688070314645833, -0.17920468764305553, -0.12558366649372846, -0.0456251716666158, 0.004974517044587542, 0.04812768944364757, 0.08319345683156834, 0.046449171422467725, 0.09448530533768731, 0.18802453688161871, 0.2315134128849147, 0.2953276161992248, 0.33344523453474534, 0.34064760277108064, 0.34672078615680413, 0.27454451124607077, 0.2561723685415204, 0.27124851222266305, 0.17581713309121982, 0.08529923398541216, 0.04211554307687613, -0.014221625415814692, -0.08774071474349193, -0.16232795190282906, -0.1588488418225654, -0.10345774712363048, -0.13992736594744712, -0.16696676534318064, -0.11697744682149724, -0.12045655690176092, -0.17215491195410015, -0.20285653248695334, -0.184820093386639, -0.184667500839259, -0.2549211096530046, -0.3086642048402356, -0.28641621143223367, -0.2020935697500534, -0.14096499526963102, -0.06936857203894162, -0.0005493331705679495, 0.0391247291482284, 0.0892361217078158, 0.06262398144474624, 0.07867671742912076, 0.17856379894405958, 0.22885830256050294, 0.2891018402661214, 0.3467513046662801, 0.35486922818689537, 0.3736381115146336, 0.32111575670644243, 0.2729880672627949, 0.30613116855372785, 0.24362926114688557, 0.13815729239783928, 0.08410901211584826, 0.03180028687398907, -0.0358592486342967, -0.11914426099429304, -0.15390484328745385, -0.09833063753166295, -0.10486159855952636, -0.15613269447920164, -0.12369151890621662, -0.10528885769219032, -0.1498764000366222, -0.20346690267647327, -0.20615253151036103, -0.1892147587511826, -0.2434156315805536, -0.315713980529191, -0.3225196081423383, -0.2541276284066286, -0.1881466109195227, -0.12750633259071628, -0.05496383556627094, -0.012329477828302866, 0.0402539139988403, 0.038087099826044496, 0.02337717825861385, 0.11169774468214973, 0.1880550553910947, 0.24082155827509386, 0.3143101290932951, 0.33536790063173316, 0.3641163365581225, 0.34751426740318003, 0.2787255470442824, 0.3017059846797082, 0.28110599078341014, 0.17682424390392773, 0.11096530045472579, 0.0663472396008179, 0.008606219672231208, -0.07144383068330942, -0.1347697378460036, -0.09729300820947905, -0.06384472182378613, -0.11642811365092928, -0.11444441053498947, -0.08444471572008423, -0.11484115115817743, -0.1683095797601245, -0.1924192022461623, -0.1716666158024842, -0.20172734763634145, -0.28263191625721, -0.32575457014679404, -0.2779931028168584, -0.20337534714804528, -0.14923551133762628, -0.07522812585833308, -0.028199102755821406, 0.02346873378704184, 0.04495376445814386, 0.01608325449385052, 0.07660145878475295, 0.1675160985137486, 0.217200231940672, 0.2944425794244209, 0.33063753166295357, 0.3539231543931394, 0.3642994476149785, 0.2974028748435926, 0.2988067262794885, 0.3122653889584033, 0.22351756340220344, 0.1380046998504593, 0.08856471449934385, 0.03827021088290048, -0.03500473036896878, -0.11914426099429304, -0.11102633747367778, -0.05417035431989502, -0.08978545487838374, -0.1185644093142491, -0.08191167943357647, -0.0892056031983398, -0.14609210486159857, -0.18866542558061464, -0.17523728141117587, -0.18115787224951935, -0.2590716269417402, -0.3337504196295053, -0.32221442304757836, -0.24869533371990113, -0.19492172002319408, -0.12369151890621662, -0.06604205450605792, -0.022125919370097964, 0.02087466048158208, -0.005920590838343455, 0.020355845820490128, 0.11560411389507737, 0.17041535691396834, 0.24533829767754142, 0.30140079958494825, 0.31894894253364664, 0.35026093325601976, 0.3059175389873959, 0.27982421338541824, 0.31138035218359933, 0.25589770195623646, 0.16376232184820094, 0.10831019013031404, 0.06476027710806605, 0.00793481246375927, -0.07919553209021271, -0.10824915311136205, -0.04803613391521958, -0.054414502395702995, -0.09680471205786309, -0.07116916409802546, -0.059083834345530564, -0.10275582140568254, -0.1619922482985931, -0.1696829126865444, -0.15698721274452956, -0.21570482497634816, -0.30561235389263586, -0.3336588641010773, -0.2739646595660268, -0.21704763939329202, -0.15448469496749778, -0.09634693441572313, -0.05746635334330271, -0.0028077028717917417, -0.014984588152714622, -0.024292733542893765, 0.05850398266548662, 0.12762840662862027, 0.1902829065828425, 0.2652974028748436, 0.29084139530625325, 0.3274636066774499, 0.30683309427167577, 0.2591631824701682, 0.2899258400219733, 0.27060762352366713, 0.18384350108340708, 0.11676381725516526, 0.07336649678029725, 0.027954954680013428, -0.051393169957579275, -0.11154515213476973, -0.06610309152500991, -0.03683584093752861, -0.08020264290292062, -0.07394634846034119, -0.048463393047883545, -0.08005005035554064, -0.14331492049928282, -0.17438276314584797, -0.15738395336771752, -0.19113742484817042, -0.28299813837092197, -0.3441572313608203, -0.30811487166966767, -0.24866481521042513, -0.19620349742118595, -0.12564470351268045, -0.08706930753501999, -0.0293588061159093, -0.021698660237434005, -0.04934842982268746, 0.017273476363414413, 0.09466841639454329, 0.1554307687612537, 0.2401501510666219, 0.28333384197515793, 0.3191625720999786, 0.33002716147343364, 0.2760704367198706, 0.29282509842219306, 0.30829798272652364, 0.23529770805993835, 0.1598864711447493, 0.11288796655171361, 0.07666249580370495, 0.008239997558519242, -0.0707419049653615, -0.05557420575579089, -0.003631702627643666, -0.03750724814600055, -0.05136265144810327, -0.02261421552171392, -0.033661915952024904, -0.08954130680257576, -0.14703817865535448, -0.14197210608233893, -0.15134128849147008, -0.23889889217810603, -0.32767723624378187, -0.33011871700186163, -0.27674184392834256, -0.22882778405102694, -0.1651661732840968, -0.1217078157902768, -0.07214575640125737, -0.042451246681112095, -0.07983642078920866, -0.042237617114780114, 0.04589983825189978, 0.10364085818048646, 0.18408764915921508, 0.24356822412793358, 0.28107547227393415, 0.31247901852473525, 0.2667622913296915, 0.25928525650807216, 0.2975554673909726, 0.250129703665273, 0.17325357829523605, 0.12158574175237281, 0.08420056764427625, 0.03534043397320475, -0.04739524521622364, -0.06662190618610186, -0.0009155552842799158, -0.006164738914151433, -0.037476729636524556, -0.011871700186162909, -0.0010071108127079073, -0.04586931974242378, -0.11758781701101718, -0.13339640491958374, -0.12347788933988464, -0.18591875972777488, -0.2925504318369091, -0.3302713095492416, -0.2900173955504013, -0.2456434827723014, -0.18189031647694326, -0.13510544145023956, -0.0902432325205237, -0.04046754356517228, -0.07058931241798151, -0.06668294320505387, 0.01867732779931028, 0.08569597460860012, 0.15823847163304544, 0.22998748741111485, 0.26999725333414715, 0.32160405285805843, 0.29636524552140875, 0.2618182927945799, 0.30259102145451217, 0.2870265816217536, 0.21790215765861995, 0.15372173223059785, 0.11655018768883328, 0.08178960539567248, 0.0011597033600878933, -0.05633716849269082, -0.001586962492751854, 0.028839991454817346, -0.009002960295419173, -0.0027466658528397473, 0.016174810022278514, -0.00827051606799524, -0.08389538254951628, -0.12775048066652425, -0.11658070619830928, -0.15588854640339367, -0.2660298471022675, -0.3407696768089846, -0.3239844965971862, -0.2833643604846339, -0.22858363597521897, -0.1763359477523118, -0.13544114505447555, -0.07309183019501328, -0.08105716116824854, -0.10510574663533433, -0.03924680318613239, 0.03491317484054079, 0.10376293221839046, 0.18399609363078706, 0.22638630329294718, 0.2846766563921018, 0.29285561693166906, 0.2465590380565813, 0.27909176915799433, 0.29645680104983674, 0.23718985564745018, 0.1673329874568926, 0.12216559343241676, 0.0946378978850673, 0.032593768120365005, -0.048097170934171575, -0.021607104709006012, 0.03457747123630482, 0.010193182164983062, 0.0021362956633198035, 0.025940733054597615, 0.020935697500534076, -0.0347605822931608, -0.10556352427747429, -0.11123996704000977, -0.11868648335215308, -0.21210364085818048, -0.3140659810174871, -0.32572405163731805, -0.29303872798852504, -0.24506363109225746, -0.1881771294289987, -0.15732291634876552, -0.09591967528305917, -0.07577745902890103, -0.11047700430310983, -0.07193212683492538, 0.01599169896542253, 0.08017212439344462, 0.1620532853175451, 0.22095400860621967, 0.2748802148503067, 0.3094271675771355, 0.2663045136875515, 0.2758262886440626, 0.3094576860866115, 0.2752159184545427, 0.206549272133549, 0.15094454786828213, 0.12009033478804895, 0.07705923642689291, -0.00891140476699118, -0.02380443739127781, 0.041566209906308174, 0.041383098849452196, 0.019226660969878233, 0.034546952726828825, 0.03894161809137242, -0.004852443006683554, -0.07919553209021271, -0.10608233893856624, -0.10122989593188268, -0.16589861751152074, -0.2847987304300058, -0.33542893765068515, -0.31388286996063114, -0.2780846583452864, -0.22009949034089174, -0.1889400921658986, -0.14111758781701103, -0.09442426831873531, -0.13241981261635183, -0.12680440687276834, -0.049073763237403485, 0.021118808557390057, 0.10162663655507065, 0.1683095797601245, 0.21906186101870784, 0.2739036225470748, 0.2509537034211249, 0.23795281838435012, 0.2812891018402661, 0.2697225867488632, 0.21182897427289651, 0.1497848445081942, 0.11529892880031739, 0.09198278756065553, 0.018097476119266334, -0.03381450849940489, 0.022553178502761926, 0.051698355052339245, 0.033509323404644915, 0.040131839960936305, 0.057649464400158695, 0.041779839472640155, -0.03286843470564898, -0.07995849482711265, -0.07245094149601733, -0.10708944975127414, -0.22110660115359965, -0.3033539841914121, -0.3038117618335521, -0.2760093997009186, -0.2226935636463515, -0.18140202032532732, -0.14789269692068238, -0.09094515823847163, -0.10461745048371837, -0.12479018524735253, -0.06457716605121006, 0.007965330973235268, 0.0859401226844081, 0.16135135959959715, 0.21271401104770044, 0.27683339945677055, 0.27970213934751426, 0.24500259407330546, 0.2786950285348064, 0.29371013519699696, 0.2490005188146611, 0.184636982329783, 0.1372417371135594, 0.1184728537858211, 0.06039613025299844, -0.021576586199530016, 0.010406811731315043, 0.061037018951994385, 0.04626606036561175, 0.04620502334665975, 0.06259346293527024, 0.06115909298989838, 0.0008239997558519242, -0.06677449873348186, -0.0748924222540971, -0.08182012390514848, -0.18131046479689933, -0.2967009491256447, -0.3197424237800226, -0.3064363536484878, -0.26432081057161166, -0.21344645527512437, -0.18750572222052675, -0.1271095919675283, -0.11670278023621326, -0.1584826197088534, -0.12073122348704489, -0.04977568895535142, 0.02621539963988159, 0.10940885647144993, 0.16220587786492507, 0.228400524918363, 0.2555314798425245, 0.2195196386608478, 0.2370677816095462, 0.271492660298471, 0.24744407483138522, 0.18942838831751457, 0.13718070009460737, 0.11697744682149724, 0.08389538254951628, 0.0024719992675557726, -0.003784295175023652, 0.0641193884090701, 0.06915494247260964, 0.06439405499435408, 0.08102664265877255, 0.09424115726187933, 0.06018250068666647, -0.018646809289834285, -0.046815393536179695, -0.03814813684499649, -0.10400708029419843, -0.2336497085482345, -0.29169591357158114, -0.29099398785363323, -0.2632526627399518, -0.2077394940031129, -0.18439283425397504, -0.1359294412060915, -0.09765923032319102, -0.13846247749259927, -0.13306070131534775, -0.06802575762199774, -0.0030823694570757164, 0.08200323496200446, 0.141361735892819, 0.19940794091616565, 0.25266273995178073, 0.22446363719595935, 0.21884823145237586, 0.2577593310342723, 0.25467696157719655, 0.20828882717368083, 0.1498153630176702, 0.12015137180700095, 0.10357982116153447, 0.032685323648792994, -0.011719107638782922, 0.043519394512771994, 0.07370220038453322, 0.06494338816492203, 0.07477034821619312, 0.09475997192297128, 0.08014160588396863, 0.004913480025635548, -0.0532547990356151, -0.048097170934171575, -0.08182012390514848, -0.20340586565752128, -0.2981658375804926, -0.3173619800408948, -0.3033234656819361, -0.2553178502761925, -0.22779015472884304, -0.19208349864192634, -0.130649739066744, -0.15720084231086154, -0.17868587298196356, -0.1250343333231605, -0.05719168675801874, 0.02362132633442183, 0.09213538010803553, 0.14374217963194677, 0.21494186223944822, 0.21607104709006011, 0.19000823999755853, 0.23224585711233864, 0.2506485183263649, 0.2218390453810236, 0.16324350718710898, 0.1239356669820246, 0.11584826197088534, 0.06253242591631825, -0.004150517288735618, 0.035615100558488724, 0.08932767723624378, 0.09012115848261971, 0.09738456373790703, 0.11713003936887723, 0.12454603717154454, 0.06781212805566576, -0.00347911008026368, -0.01782280953398236, -0.02478102969450972, -0.12741477706228826, -0.24701681569872128, -0.28962065492721334, -0.2967009491256447, -0.25714896084475236, -0.21713919492172, -0.195654164250618, -0.1337931455427717, -0.13312173833429974, -0.17325357829523605, -0.14377269814142277, -0.08279671620838039, -0.003357036042359691, 0.07443464461195715, 0.1270180364391003, 0.20093386638996552, 0.2304757835627308, 0.19721060823389386, 0.22049623096407972, 0.25055696279793693, 0.23554185613574632, 0.18594927823725088, 0.13113803521835993, 0.11767937253944517, 0.08829004791405988, 0.010132145146031068, 0.011047700430310984, 0.07361064485610523, 0.08505508590960417, 0.08951078829309976, 0.1054109317300943, 0.12118900112918485, 0.09085360271004364, 0.014282662434766686, -0.02533036286507767, -0.019623401593066195, -0.09308145390179144, -0.2251655629139073, -0.2919095431379131, -0.314951017792291, -0.2968840601825007, -0.25049592577898494, -0.23435163426618244, -0.17856379894405958, -0.14688558610797448, -0.19360942411572618, -0.18112735374004332, -0.13000885036774804, -0.05896176030762658, 0.030152287362285226, 0.08340708639790033, 0.15207373271889402, 0.21234778893398845, 0.19013031403546252, 0.19202246162297434, 0.23090304269539474, 0.23749504074221015, 0.20203253273110142, 0.14532914212469863, 0.12622455519272438, 0.11337626270332957, 0.04751731925412763, 0.010742515335551012, 0.07098605304116946, 0.10367137668996246, 0.10568559831537827, 0.12524796288949247, 0.14789269692068238, 0.1404156620990631, 0.07290871913815729, 0.015106662190618611, 0.01608325449385052, -0.020508438367870113, -0.14365062410351878, -0.24045533616138187, -0.28171636097293007, -0.2834864345225379, -0.24069948423718984, -0.21942808313241982, -0.18088320566423535, -0.12527848139896847, -0.15671254615924557, -0.17581713309121982, -0.13571581163975951, -0.07513657032990509, 0.011902218695638905, 0.07129123813592944, 0.13095492416150395, 0.2074953459273049, 0.206732383190405, 0.19101535081026644, 0.22434156315805537, 0.24613177892391735, 0.2251350444044313, 0.16452528458510085, 0.12488174077578051, 0.11795403912472915, 0.06698812829981383, 0.0019226660969878231, 0.03985717337565233, 0.08670308542130803, 0.09286782433545945, 0.10586870937223426, 0.12674336985381635, 0.13510544145023956, 0.08270516067995239, 0.012848292489394819, -0.004119998779259621, -0.011810663167210914, -0.11932737205114902, -0.2380443739127781, -0.29288613544114506, -0.3128757591479232, -0.2764671773430586, -0.24912259285256508, -0.22669148838770714, -0.16171758171330913, -0.1641590624713889, -0.20203253273110142, -0.1793267616809595, -0.1295815912350841, -0.04910428174687948, 0.02529984435560167, 0.07464827417828913, 0.15408795434430983, 0.18085268715475936, 0.15915402691732536, 0.18842127750480667, 0.22373119296853541, 0.21903134250923184, 0.17270424512466812, 0.12250129703665273, 0.11291848506118961, 0.08676412244026002, 0.014923551133762628, 0.022034363841669975, 0.08291879024628437, 0.10135196996978668, 0.11535996581926938, 0.1424909207434309, 0.1673329874568926, 0.14069032868434705, 0.06872768333994568, 0.03054902798547319, 0.035462508011108736, -0.03717154454176458, -0.16919461653492843, -0.2457045197912534, -0.28650776696066166, -0.27271340067751093, -0.23410748619037447, -0.22009949034089174, -0.16235847041230506, -0.13962218085268716, -0.1857051301614429, -0.18643757438886685, -0.14737388225959044, -0.07889034699545275, 0.004730368968779565, 0.055085909604174935, 0.1274452955717643, 0.1803949095126194, 0.1563463240455336, 0.16357921079134496, 0.19992675557725761, 0.2099063081759087, 0.17749565111239968, 0.12097537156285287, 0.10083315530869473, 0.09295937986388744, 0.021942808313241982, -0.010467848750267038, 0.04925687429425947, 0.08471938230536821, 0.09616382335886715, 0.11798455763420515, 0.14853358561967833, 0.1423993652150029, 0.0805078279976806, 0.02426221503341777, 0.02240058595538194, -0.014191106906338695, -0.13632618182927947, -0.23233741264076663, -0.2878810998870815, -0.3002105777153844, -0.2598345896786401, -0.2468947416608173, -0.20606097598193304, -0.1533860286263619, -0.18655964842677084, -0.20554216132084108, -0.17777031769768364, -0.12341685232093265, -0.03637806329538865, 0.020722067934202094, 0.08536027100436415, 0.1599475081637013, 0.15808587908566546, 0.15057832575457014, 0.18640705587939085, 0.21149327066866055, 0.19498275704214607, 0.14172795800653096, 0.11056855983153782, 0.11117893002105778, 0.065218054750206, 0.007782219916379284, 0.04629657887508774, 0.10034485915707878, 0.11587878048036133, 0.14050721762749108, 0.17313150425733206, 0.19046601763969848, 0.15036469618823817, 0.0771813104647969, 0.06213568529313029, 0.058107242042298654, -0.04791405987731559, -0.16339609973448896, -0.23615222632526628, -0.2760093997009186, -0.24628437147129734, -0.22360911893063143, -0.19754631183812982, -0.1404156620990631, -0.15384380626850186, -0.19226660969878231, -0.18066957609790338, -0.14535966063417463, -0.06344798120059816, 0.0019837031159398175, 0.04766991180150761, 0.12836085085604418, 0.1479537339396344, 0.130191961424604, 0.1544236579485458, 0.18625446333201087, 0.19013031403546252, 0.14511551255836666, 0.09753715628528703, 0.09744560075685904, 0.07089449751274148, 0.0034485915707876827, 0.012207403790398877, 0.07254249702444533, 0.09909360026856288, 0.12140263069551684, 0.15506454664754174, 0.18424024170659506, 0.16660054322946868, 0.09607226783043916, 0.05844294564653462, 0.06671346171452987, -0.0067445905941953795, -0.13226722006897182, -0.21790215765861995, -0.2785729544969024, -0.26776940214239936, -0.24091311380352184, -0.23178807947019867, -0.17667165135654775, -0.16321298867763298, -0.20383312479018525, -0.20627460554826502, -0.1804559465315714, -0.1097750785851619, -0.029877620777001252, 0.014770958586382641, 0.09094515823847163, 0.1391338847010712, 0.1239967040009766, 0.13605151524399547, 0.17236854152043216, 0.19531846064638203, 0.1682485427411725, 0.11166722617267373, 0.09805597094637898, 0.0935697500534074, 0.0315256202887051, 0.011810663167210914, 0.07049775688955351, 0.11285744804223762, 0.1381878109073153, 0.16788232062746056, 0.20627460554826502, 0.20792260505996887, 0.15247047334208197, 0.09298989837336344, 0.09070101016266366, 0.052766502883999145, -0.07196264534440137, -0.1685842463454085, -0.2444837794122135, -0.26566362498855556, -0.23456526383251441, -0.22913296914578693, -0.18225653859065524, -0.1424298837244789, -0.18234809411908323, -0.20294808801538133, -0.19202246162297434, -0.14285714285714285, -0.05496383556627094, -0.00717184972685934, 0.05407879879146703, 0.12472914822840052, 0.1217383342997528, 0.11975463118381298, 0.14789269692068238, 0.17578661458174383, 0.1683400982696005, 0.11578722495193335, 0.08505508590960417, 0.08685567796868801, 0.04251228370006409, -0.008880886257515184, 0.02990813928647725, 0.08188116092410047, 0.10940885647144993, 0.1357463301492355, 0.17316202276680806, 0.1944944608905301, 0.16122928556169316, 0.09018219550157171, 0.07208471938230537, 0.06488235114597003, -0.03955198828089236, -0.14917447431867428, -0.23297830133976258, -0.28183843501083405, -0.26364940336313974, -0.24817651905880916, -0.22583697012237922, -0.16812646870326853, -0.18488113040559098, -0.21924497207556384, -0.2154606769005402, -0.1870784630878628, -0.10162663655507065, -0.035157322916348765, 0.01913510544145024, 0.10034485915707878, 0.12363048188726462, 0.1119418927579577, 0.13492233039338358, 0.16675313577684867, 0.18073061311685537, 0.13748588518936736, 0.0934171575060274, 0.09543137913144321, 0.0707113864558855, 0.007232886745811335, 0.022675252540665915, 0.08551286355174413, 0.1206091494491409, 0.15057832575457014, 0.18958098086489455, 0.22440260017700736, 0.21066927091280863, 0.14581743827631458, 0.10431226538895841, 0.11435285500656148, 0.037873470259712515, -0.08252204962309641, -0.173802911465804, -0.24695577867976928, -0.24460585345011748, -0.23221533860286264, -0.22238837855159155, -0.16666158024842068, -0.1575365459150975, -0.19879757072664572, -0.21033356730857264, -0.20361949522385328, -0.1379131443220313, -0.05859553819391461, -0.013611255226294748, 0.06534012878810999, 0.10992767113254188, 0.1000091555528428, 0.11239967040009766, 0.1444746238593707, 0.16846217230750452, 0.14255195776238289, 0.08771019623401594, 0.07486190374462111, 0.06720175786614582, 0.005462813196203497, -0.014801477095858639, 0.041566209906308174, 0.08624530777916807, 0.11334574419385357, 0.1490218817712943, 0.19110690633869443, 0.2022461622974334, 0.15268410290841394, 0.09631641590624714, 0.1011078218939787, 0.06320383312479018, -0.05496383556627094, -0.15051728873561815, -0.23584704123050632, -0.26218451490829187, -0.24600970488601337, -0.2468031861323893, -0.1978820154423658, -0.1620838038270211, -0.195623645741142, -0.21906186101870784, -0.2165288247322001, -0.173894466994232, -0.09143345439008758, -0.042909024323252054, 0.02533036286507767, 0.0956755272072512, 0.09479049043244728, 0.09704886013367107, 0.1270790734580523, 0.16000854518265328, 0.15567491683706167, 0.1065401165807062, 0.07794427320169683, 0.08081301309244057, 0.03881954405346843, -0.006134220404675436, 0.03488265633106479, 0.0890530106509598, 0.11969359416486099, 0.15463728751487776, 0.20163579210791344, 0.22675252540665913, 0.20471816156498918, 0.141056550798059, 0.12775048066652425, 0.11795403912472915, 0.012878810998870815, -0.08706930753501999, -0.17664113284707175, -0.23114719077120274, -0.22223578600421157, -0.2241584521011994, -0.19837031159398175, -0.14597003082369456, -0.1684011352885525, -0.2001098666341136, -0.2097537156285287, -0.19275490585039826, -0.1173131504257332, -0.06137272255623035, -0.003357036042359691, 0.0707113864558855, 0.08679464094973602, 0.07797479171117283, 0.09646900845362713, 0.12884914700766015, 0.14069032868434705, 0.09976500747703482, 0.05825983458967864, 0.0619525742362743, 0.036133915219580676, -0.021332438123722038, -0.008667256691183203, 0.05066072573015534, 0.09158604693746758, 0.12405774101992859, 0.1686758018738365, 0.2073732718894009, 0.20722067934202093, 0.14862514114810632, 0.11334574419385357, 0.12201300088503678, 0.04754783776360363, -0.06360057374797815, -0.15289773247474595, -0.22772911770989104, -0.2346263008514664, -0.23133030182805872, -0.22052674947355572, -0.16144291512802514, -0.15817743461409345, -0.19840083010345774, -0.21317178868984038, -0.21216467787713247, -0.15280617694631793, -0.08069093905453657, -0.0348216193121128, 0.04171880245368816, 0.08059938352610858, 0.07654042176580096, 0.08777123325296793, 0.11615344706564532, 0.14545121616260262, 0.12369151890621662, 0.07235938596758934, 0.06204412976470229, 0.05227820673238319, -0.006042664876247444, -0.016571550645466476, 0.043214209418012024, 0.09137241737113559, 0.12375255592516861, 0.1696829126865444, 0.21787163914914395, 0.23941770683919797, 0.19809564500869778, 0.14624469740897855, 0.15445417645802179, 0.11465804010132145, 0.005462813196203497, -0.08981597338785974, -0.18134098330637533, -0.21573534348582415, -0.2120120853297525, -0.217169713431196, -0.1696829126865444, -0.14413892025513475, -0.1770989104892117, -0.19931638538773766, -0.2129581591235084, -0.17722098452711568, -0.10623493148594623, -0.05804620502334666, 0.014221625415814692, 0.0728171636097293, 0.07336649678029725, 0.07556382946256905, 0.09555345316934721, 0.12985625782036805, 0.13245033112582782, 0.07864619891964476, 0.05359050263985107, 0.06033509323404645, 0.014770958586382641, -0.029084139530625323, 0.013672292245246742, 0.07086397900326548, 0.1021454512161626, 0.14593951231421856, 0.1967833491012299, 0.23340556047242653, 0.2163151951658681, 0.15408795434430983, 0.1498764000366222, 0.13626514481032748, 0.03836176641132847, -0.05835139011810663, -0.15390484328745385, -0.2128971221045564, -0.21591845454268013, -0.2239448225348674, -0.19388409070101018, -0.1489608447523423, -0.1717886898403882, -0.20145268105105746, -0.21826837977233193, -0.2045960875270852, -0.13602099673451948, -0.08352916043580431, -0.019165623950926237, 0.05285805841242714, 0.07000946073793755, 0.06689657277138585, 0.08410901211584826, 0.1173436689352092, 0.13629566331980347, 0.09808648945585498, 0.05630664998321482, 0.05706961272011475, 0.030365916928617207, -0.02349925229651784, -0.007141331217383343, 0.05804620502334666, 0.09976500747703482, 0.13739432966093937, 0.19205298013245034, 0.24393444624164556, 0.2514419995727409, 0.1977294228949858, 0.1676381725516526, 0.17456587420270395, 0.09823908200323496, -0.0019531846064638203, -0.09512619403668325, -0.17889950254829554, -0.19525742362743004, -0.2076784569841609, -0.19745475630970183, -0.1497543259987182, -0.15066988128299813, -0.18460646382030702, -0.20798364207892087, -0.21976378673665578, -0.16791283913693655, -0.10855433820612201, -0.055391094698934905, 0.02337717825861385, 0.05740531632435072, 0.05389568773461104, 0.06189153721732231, 0.09179967650379955, 0.11795403912472915, 0.097811822870571, 0.04693746757408368, 0.04153569139683218, 0.031250953703421125, -0.026795251319925537, -0.03851435895870846, 0.014648884548478652, 0.061708426160466325, 0.09836115604113894, 0.15094454786828213, 0.20676290169988099, 0.2335581530198065, 0.19827875606555376, 0.1543321024201178, 0.1642200994903409, 0.1227149266029847, 0.021362956633198035, -0.0740379039887692, -0.17413861507003997, -0.21030304879909664, -0.2206488235114597, -0.22690511795403911, -0.17618335520493178, -0.15582750938444168, -0.18668172246467482, -0.21076082644123662, -0.23178807947019867, -0.20068971831415755, -0.13858455153050325, -0.08713034455397198, -0.007660145878475295, 0.04617450483718375, 0.05301065095980712, 0.0575884273812067, 0.07840205084383679, 0.1120944853053377, 0.11163670766319773, 0.06701864680928983, 0.04068117313150426, 0.04205450605792413, -0.007599108859523301, -0.040406506546220286, -0.001281777397991882, 0.052766502883999145, 0.09314249092074343, 0.1390728476821192, 0.19745475630970183, 0.23682363353373823, 0.228339487899411, 0.17310098574785607, 0.17377239295632801, 0.16064943388164923, 0.07187108981597339, -0.021881771294289986, -0.12579729606006043, -0.18353831598864712, -0.1969359416486099, -0.2164677877132481, -0.18436231574449904, -0.1435590685750908, -0.16531876583147678, -0.19312112796411024, -0.21939756462294382, -0.20950956755272074, -0.1542710654011658, -0.1064790795617542, -0.038239692373424485, 0.03140354625080111, 0.049745170445875425, 0.05047761467329936, 0.06582842493972595, 0.09555345316934721, 0.11429181798760948, 0.07596057008575702, 0.03637806329538865, 0.04037598803674428, 0.0076906643879512925, -0.04617450483718375, -0.031342509231849114, 0.032563249610889, 0.07568590350047304, 0.11453596606341747, 0.17514572588274788, 0.22806482131412703, 0.24073000274666587, 0.18985564745017852, 0.17093417157506027, 0.1803949095126194, 0.10864589373455001, 0.01434369945371868, -0.08383434553056429, -0.16476943266090885, -0.18939786980803858, -0.21179845576342052, -0.2000793481246376, -0.15170751060518203, -0.15482039857173377, -0.18732261116367077, -0.21582689901425214, -0.22812585833307902, -0.18121890926847134, -0.1272316660054323, -0.0673543504135258, 0.008575701162755212, 0.04531998657185583, 0.04498428296761986, 0.05160679952391125, 0.08224738303781243, 0.10889004181035798, 0.08899197363200781, 0.038331247901852473, 0.03549302652058473, 0.026764732810449537, -0.031708731345561084, -0.041779839472640155, 0.00946073793755913, 0.06497390667439802, 0.10519730216376232, 0.15692617572557757, 0.22009949034089174, 0.25510422070986055, 0.22339548936429945, 0.1827143162327952, 0.19980468153935363, 0.1598559526352733, 0.06854457228308969, -0.026490066225165563, -0.12103640858180487, -0.15839106418042542, -0.18237861262855923, -0.19080172124393444, -0.14630573442793054, -0.13147373882259591, -0.15448469496749778, -0.17899105807672352, -0.2074037903988769, -0.18140202032532732, -0.13452558977019563, -0.08572649311807612, -0.011169774468214972, 0.03939939573351237, 0.043122653889584035, 0.04196295052949614, 0.061403241065706354, 0.09753715628528703, 0.0989715262306589, 0.04791405987731559, 0.026490066225165563, 0.024872585222937713, -0.02587969603564562, -0.06292916653950621, -0.018829920346690267, 0.03872798852504044, 0.07791375469222084, 0.12784203619495224, 0.19104586931974243, 0.24112674336985382, 0.23316141239661856, 0.18167668691061128, 0.18765831476790673, 0.1794793542283395, 0.09759819330423902, 0.00946073793755913, -0.09063997314371167, -0.1488082522049623, -0.17432172612689598, -0.19724112674336985, -0.162938322092349, -0.1285134434034242, -0.14413892025513475, -0.17340617084261606, -0.20841090121158481, -0.20191045869319743, -0.1584826197088534, -0.11172826319162572, -0.03964354380932035, 0.027100436414685507, 0.04544206060975982, 0.04541154210028382, 0.05789361247596667, 0.08722190008239998, 0.10629596850489823, 0.06704916531876583, 0.02630695516830958, 0.028534806360057376, 3.051850947599719e-05, -0.04986724448377941, -0.03601184118167669, 0.024048585467085788, 0.07361064485610523, 0.1173131504257332, 0.1750541703543199, 0.24091311380352184, 0.26557206946012757, 0.21939756462294382, 0.2078005310220649, 0.21729178746910002, 0.1533860286263619, 0.06689657277138585, -0.03625598925748467, -0.11429181798760948, -0.14392529068880275, -0.173924985503708, -0.16681417279580066, -0.12308114871669668, -0.12424085207678456, -0.15369121372112185, -0.18631550035096286, -0.20194097720267343, -0.16556291390728478, -0.12665181432538836, -0.06567583239234596, 0.00772118289742729, 0.03888058107242042, 0.03775139622180853, 0.0391247291482284, 0.06616412854396192, 0.09405804620502335, 0.07092501602221747, 0.019287697988830226, 0.015839106418042544, 0.002075258644367809, -0.05478072450941496, -0.06439405499435408, -0.009125034333323161, 0.04196295052949614, 0.08334604937894834, 0.14328440198980683, 0.20932645649586473, 0.24945829645680104, 0.22251045258949553, 0.19629505294961394, 0.21005890072328867, 0.16986602374340037, 0.08835108493301187, -0.008117923520615253, -0.10550248725852229, -0.14716025269325847, -0.17786187322611163, -0.1901913510544145, -0.15079195532090212, -0.13834040345469528, -0.15808587908566546, -0.18839075899533067, -0.21683400982696005, -0.19510483108005006, -0.15619373149815363, -0.10501419110690634, -0.029206213568529312, 0.020355845820490128, 0.024109622486037784, 0.0228278450880459, 0.044495986816003905, 0.0771202734458449, 0.07647938474684897, 0.028626361888485368, 0.004730368968779565, 0.0029297769096957305, -0.04608294930875576, -0.0792565691091647, -0.0424207281716361, 0.016113773003326518, 0.05902279732657857, 0.10931730094302194, 0.18082216864528336, 0.23975341044343396, 0.23853267006439405, 0.20166631061738946, 0.21683400982696005, 0.20365001373332928, 0.12738425855281227, 0.03958250679036836, -0.06106753746147038, -0.11792352061525316, -0.15729239783928953, -0.1835688344981231, -0.15237891781365398, -0.1250038148136845, -0.1358989226966155, -0.1652882473220008, -0.20502334665974914, -0.20160527359843744, -0.16449476607562485, -0.12439344462416456, -0.052980132450331126, 0.007202368236335337, 0.029694509720145267, 0.02694784386730552, 0.033661915952024904, 0.06244087038789026, 0.08001953184606464, 0.04431287575914793, 0.0067445905941953795, 0.006683553575243385, -0.030701620532853177, -0.07892086550492874, -0.06643879512924589, -0.00933866389965514, 0.03753776665547655, 0.08310190130314035, 0.15070039979247413, 0.22217474898525957, 0.2455519272438734, 0.20725119785149693, 0.20578630939664908, 0.21369060335093235, 0.15421002838221382, 0.07168797875911741, -0.02850428785058138, -0.10477004303109837, -0.14273506881923886, -0.18137150181585132, -0.17206335642567216, -0.13437299722281565, -0.13354899746696372, -0.15662099063081758, -0.19403668324839016, -0.2086550492873928, -0.17896053956724753, -0.14435254982146672, -0.08001953184606464, -0.006775109103671377, 0.025513473921933653, 0.029511398663289286, 0.03131199072237312, 0.05685598315378277, 0.08548234504226813, 0.06488235114597003, 0.015625476851710562, 0.011108737449262978, -0.008636738181707206, -0.06311227759636219, -0.07211523789178137, -0.023895992919705802, 0.02966399121066927, 0.07296975615710928, 0.12738425855281227, 0.19977416302987763, 0.2508926664021729, 0.22705771050141912, 0.21359904782250436, 0.2337107455671865, 0.1965697195348979, 0.12002929776909696, 0.023712881862849818, -0.06878872035889767, -0.11169774468214973, -0.15707876827295755, -0.16718039490951261, -0.130344553971984, -0.11871700186162908, -0.1316873683889279, -0.1684011352885525, -0.1913815729239784, -0.17685476241340373, -0.1497543259987182, -0.09723197119052705, -0.02185125278481399, 0.025910214545121615, 0.034333323160496844, 0.030945768608661155, 0.050355540635395366, 0.08099612414929655, 0.07525864436780907, 0.026490066225165563, 0.0076906643879512925, -0.0004577776421399579, -0.053743095187231055, -0.08536027100436415, -0.05581835383159887, -0.004028443250831629, 0.039307840205084384, 0.08890041810357982, 0.15701773125400556, 0.2241889706106754, 0.22357860042115543, 0.195623645741142, 0.21246986297189246, 0.19971312601092564, 0.13705862605670338, 0.04278695028534806, -0.056001464888454845, -0.1118808557390057, -0.15292825098422194, -0.18228705710013124, -0.15698721274452956, -0.1293984801782281, -0.13501388592181157, -0.16113773003326518, -0.1944944608905301, -0.19055757316812647, -0.17151402325510423, -0.13318277535325174, -0.062379833368938264, 0.0009155552842799158, 0.02121036408581805, 0.01620532853175451, 0.030213324381237222, 0.06323435163426619, 0.08035523545030061, 0.03662221137119663, 0.002990813928647725, 0.0021362956633198035, -0.0348216193121128, -0.08175908688619647, -0.0695822016052736, -0.012970366527298808, 0.03488265633106479, 0.07959227271340068, 0.1444441053498947, 0.2226935636463515, 0.24823755607776116, 0.22116763817255164, 0.22782067323831903, 0.23535874507889035, 0.18747520371105075, 0.10815759758293406, 0.008301034577471236, -0.060365611743522445, -0.10855433820612201, -0.15088351084933013, -0.1389202551347392, -0.10904263435773796, -0.10397656178472243, -0.12222663045136875, -0.16565446943571277, -0.17758720664082767, -0.1588488418225654, -0.13809625537888728, -0.07437360759300515, -0.003021332438123722, 0.02835169530320139, 0.027100436414685507, 0.028992584002197334, 0.050935392315439317, 0.07553331095309306, 0.05142368846705527, 0.005706961272011475, -0.00021362956633198035, -0.02597125156407361, -0.07904293954283273, -0.09268471327860348, -0.0489211706900235, 0.0016479995117038484, 0.04412976470229194, 0.09851374858851894, 0.1759392071291238, 0.22977385784478285, 0.20914334543900875, 0.20285653248695334, 0.22345652638325145, 0.19614246040223396, 0.1261329996642964, 0.02740562150944548, -0.054261909848323006, -0.10202337717825861, -0.1480758079775384, -0.1575975829340495, -0.12765892513809626, -0.1173131504257332, -0.12659077730643636, -0.16187017426068911, -0.18619342631305888, -0.17511520737327188, -0.15945921201208532, -0.10925626392406995, -0.03390606402783288, 0.01763969847712638, 0.02737510299996948, 0.025605029450361645, 0.0423902096621601, 0.07495345927304911, 0.0694906460768456, 0.019104586931974244, 0.0014038514358958708, -0.009491256447035128, -0.06384472182378613, -0.09204382457960754, -0.06106753746147038, -0.007904293954283274, 0.04007080294198431, 0.08740501113925596, 0.16223639637440107, 0.2357860042115543, 0.24170659504989778, 0.22739341410565508, 0.2444227423932615, 0.23557237464522232, 0.17923520615253152, 0.08532975249488815, -0.008239997558519242, -0.06643879512924589, -0.11804559465315714, -0.152134769737846, -0.12738425855281227, -0.10669270912808619, -0.10553300576799829, -0.13306070131534775, -0.16815698721274452, -0.16483046967986084, -0.15805536057618946, -0.12442396313364056, -0.05294961394085513, 0.0067445905941953795, 0.02597125156407361, 0.02139347514267403, 0.023834955900753806, 0.05423139133884701, 0.0673543504135258, 0.022858363597521896, -0.013428144169438765, -0.016022217474898525, -0.05490279854731895, -0.10489211706900235, -0.09366130558183539, -0.04113895077364422, 0.00967436750389111, 0.05151524399548326, 0.11490218817712942, 0.2011474959562975, 0.23004852443006685, 0.2107913449507126, 0.22949919125949889, 0.23688467055269022, 0.1979735709707938, 0.11383404034546953, 0.01174962614825892, -0.05011139255958739, -0.10223700674459059, -0.1488998077333903, -0.1446577349162267, -0.12018189031647694, -0.11371196630756554, -0.13229773857844782, -0.1707205420087283, -0.18076113162633137, -0.16876735740226448, -0.1490829187902463, -0.0934476760155034, -0.02557451094088565, 0.013794366283150731, 0.01217688528092288, 0.010040589617603077, 0.03595080416272469, 0.06390575884273812, 0.03598132267220069, -0.010467848750267038, -0.014191106906338695, -0.03811761833552049, -0.09088412121951964, -0.10483108005005036, -0.06106753746147038, -0.00967436750389111, 0.03579821161534471, 0.09491256447035126, 0.18094424268318735, 0.23780022583697014, 0.22794274727622302, 0.23108615375225075, 0.2465590380565813, 0.22775963621936704, 0.16147343363750113, 0.054048280281991025, -0.020386364329966124, -0.06775109103671377, -0.12561418500320445, -0.1391033661915952, -0.11792352061525316, -0.10196234015930662, -0.10895107882930997, -0.14389477217932675, -0.16357921079134496, -0.15814691610461745, -0.1489913632618183, -0.10501419110690634, -0.03393658253730888, 0.014831995605334635, 0.022034363841669975, 0.01782280953398236, 0.03637806329538865, 0.06790368358409375, 0.06030457472457045, 0.007477034821619312, -0.00793481246375927, -0.021454512161626027, -0.08038575395977661, -0.11279641102328562, -0.08688619647816401, -0.03610339671010468, 0.009155552842799158, 0.05197302163762322, 0.12985625782036805, 0.2099368266853847, 0.2150944547868282, 0.20795312356944487, 0.2335276345103305, 0.2315744499038667, 0.1826532792138432, 0.0859096041749321, -0.004974517044587542, -0.057557908871730706, -0.12048707541123692, -0.15692617572557757, -0.141087069307535, -0.12030396435438093, -0.11780144657734916, -0.1487472151860103, -0.17770928067873165, -0.17438276314584797, -0.16995757927182836, -0.14123966185491502, -0.07562486648152104, -0.00924710837122715, 0.013306070131534776, 0.007293923764763329, 0.01565599536118656, 0.04989776299325541, 0.0629902035584582, 0.01718192083498642, -0.011047700430310984, -0.020294808801538132, -0.061861018707846306, -0.11102633747367778, -0.10388500625629445, -0.05355998413037507, -0.004943998535111545, 0.03436384166997284, 0.09704886013367107, 0.18750572222052675, 0.2185735648670919, 0.206396679586169, 0.22452467421491135, 0.23935666982024598, 0.2128971221045564, 0.1292764061403241, 0.027558214056825465, -0.03131199072237312, -0.08661152989288003, -0.13348796044801173, -0.13226722006897182, -0.11267433698538164, -0.10312204351939451, -0.1229285561693167, -0.16138187810907315, -0.16766869106112858, -0.16351817377239294, -0.15469832453382976, -0.10101626636555071, -0.032746360667744986, 0.00695822016052736, 0.013550218207342753, 0.01229895931882687, 0.03897213660084842, 0.0663472396008179, 0.03451643421735282, -0.010925626392406995, -0.021179845576342053, -0.04882961516159551, -0.10376293221839046, -0.11593981749931333, -0.07983642078920866, -0.03286843470564898, 0.009155552842799158, 0.0608539078951384, 0.1489913632618183, 0.20712912381359294, 0.20487075411236916, 0.2143925290688803, 0.23218482009338665, 0.21982482375560777, 0.15695669423505357, 0.054200872829371013, -0.018524735251930297, -0.07254249702444533, -0.12677388836329234, -0.14090395825067903, -0.12280648213141271, -0.10428174687948241, -0.10867641224402601, -0.1423993652150029, -0.16000854518265328, -0.15387432477797786, -0.15356913968321786, -0.11719107638782922, -0.04638813440351573, 0.005096591082491531, 0.017853328043458357, 0.013245033112582781, 0.028656880397961364, 0.0673848689230018, 0.05941953794976653, 0.007324442274239326, -0.010620441297647023, -0.0293588061159093, -0.07879879146702475, -0.11154515213476973, -0.09552293465987122, -0.046662800988799706, -0.0016174810022278512, 0.043427838984344005, 0.12225714896084475, 0.1969054231391339, 0.21002838221381268, 0.21420941801202428, 0.23685415204321422, 0.24002807702871792, 0.1978209784234138, 0.10168767357402264, 0.01666310617389447, -0.03610339671010468, -0.09723197119052705, -0.13187047944578387, -0.11801507614368115, -0.10022278511917478, -0.09103671376689962, -0.1216467787713248, -0.14606158635212257, -0.14374217963194677, -0.14786217841120639, -0.1239051484725486, -0.06350901821955016, -0.0038758507034516434, 0.015961180455946532, 0.014801477095858639, 0.018524735251930297, 0.04992828150273141, 0.05941953794976653, 0.014770958586382641, -0.01718192083498642, -0.03097628711813715, -0.0740073854792932, -0.12079226050599688, -0.11987670522171698, -0.08035523545030061, -0.03537095248268075, 0.004272591326639607, 0.07110812707907346, 0.15894039735099338, 0.19211401715140233, 0.195593127231666, 0.21842097231971191, 0.22867519150364696, 0.2097537156285287, 0.12634662923062837, 0.030396435438093204, -0.028565324869533372, -0.08883938108462783, -0.13397625659962767, -0.13455610827967163, -0.11462752159184546, -0.09695730460524309, -0.11539048432874538, -0.14932706686605426, -0.1501815851313822, -0.15152439954832606, -0.14487136448255866, -0.0912808618427076, -0.02490310373241371, 0.009552293465987122, 0.015411847285378583, 0.014282662434766686, 0.039521469771416365, 0.06549272133548997, 0.03375347148045289, -0.011719107638782922, -0.024628437147129735, -0.05746635334330271, -0.10943937498092593, -0.12674336985381635, -0.097750785851619, -0.04882961516159551, -0.007873775444807276, 0.04647968993194372, 0.1381878109073153, 0.19605090487380597, 0.2022766808069094, 0.22266304513687551, 0.24176763206884977, 0.24201178014465774, 0.1801507614368114, 0.07867671742912076, 0.01077303384502701, -0.04864650410473952, -0.10794396801660207, -0.1239967040009766, -0.11029389324625385, -0.09277626880703146, -0.09585863826410718, -0.1293984801782281, -0.14273506881923886, -0.14078188421277504, -0.14398632770775474, -0.1131321146275216, -0.05023346659749138, -0.0009155552842799158, 0.014435254982146673, 0.0097964415417951, 0.023102511673329874, 0.055909909360026856, 0.04535050508133183, -0.005767998290963469, -0.02542191839350566, -0.047486800744651635, -0.10028382213812677, -0.13449507126071963, -0.12472914822840052, -0.07748649555955688, -0.03216650898770104, 0.009002960295419173, 0.09088412121951964, 0.17117831965086824, 0.1868953520310068, 0.2001098666341136, 0.22440260017700736, 0.23194067201757868, 0.19492172002319408, 0.0946073793755913, 0.016785180211798457, -0.037659840693380534, -0.09964293343913083, -0.13290810876796777, -0.12991729483932005, -0.1119113742484817, -0.10519730216376232, -0.13324381237220373, -0.15695669423505357, -0.15607165746024965, -0.16156498916592912, -0.14725180822168646, -0.0858790856654561, -0.026062807092501604, -0.005645924253059481, -0.006469924008911405, 0.0029297769096957305, 0.037873470259712515, 0.045930356761375773, -0.0007629627368999298, -0.0304269539475692, -0.045381023590807826, -0.08941923276467177, -0.13492233039338358, -0.13852351451155126, -0.09985656300546282, -0.05490279854731895, -0.01684621723075045, 0.05475020599993896, 0.14996795556505021, 0.18488113040559098, 0.19611194189275796, 0.22110660115359965, 0.23752555925168614, 0.2258980071413312, 0.14389477217932675, 0.04901272621845149, -0.006225775933103427, -0.065157017731254, -0.11004974517044587, -0.11679433576464125, -0.10477004303109837, -0.09091463972899563, -0.11130100405896176, -0.1399884029663991, -0.14297921689504683, -0.1457258827478866, -0.14618366039002656, -0.10266426587725455, -0.03753776665547655, 0.0031128879665517136, 0.01077303384502701, 0.012421033356730858, 0.03900265511032441, 0.05798516800439467, 0.02685628833887753, -0.016449476607562488, -0.03109836115604114, -0.06466872157963804, -0.11883907589953306, -0.14307077242347485, -0.11880855739005707, -0.07040620136112552, -0.03186132389294107, 0.018189031647694327, 0.11255226294747765, 0.1697134311960204, 0.1794183172093875, 0.2021240882595294, 0.2259285256508072, 0.23111667226172675, 0.17001861629078036, 0.07162694174016541, 0.006775109103671377, -0.05270546586504715, -0.10986663411358989, -0.12796411023285623, -0.12320322275460066, -0.10168767357402264, -0.10138248847926268, -0.13715018158513137, -0.1445661793877987, -0.14743491927854244, -0.15353862117374187, -0.12463759269997253, -0.06216620380260628, -0.010620441297647023, 0.007477034821619312, 0.008087405011139257, 0.02465895565660573, 0.0629902035584582, 0.050935392315439317, 0.003326517532883694, -0.020844141972106083, -0.04492324594866787, -0.09387493514816736, -0.130283516953032, -0.12659077730643636, -0.0825525681325724, -0.042603839228492084, -0.0050050355540635395, 0.08243049409466842, 0.1598254341257973, 0.18222602008117925, 0.20068971831415755, 0.22452467421491135, 0.23859370708334604, 0.20548112430188908, 0.1077303384502701, 0.03604235969115269, -0.01989806817835017, -0.08417004913480025, -0.1142002624591815, -0.11487166966765343, -0.09610278633991516, -0.09057893612475967, -0.12311166722617267, -0.1391644032105472, -0.1369365520187994, -0.14493240150151065, -0.13248084963530382, -0.07812738425855281, -0.019989623706778162, 0.0076906643879512925, 0.013550218207342753, 0.01730399487289041, 0.05084383678701132, 0.059968871120334485, 0.015717032380138555, -0.01370281075472274, -0.03128147221289712, -0.0781884212775048, -0.1261635181737724, -0.1369060335093234, -0.10220648823511459, -0.056978057191686755, -0.027741325113681447, 0.03994872890408033, 0.13303018280587176, 0.17105624561296426, 0.18762779625843073, 0.21106601153599658, 0.2315439313943907, 0.22904141361735894, 0.14468825342570268, 0.05700857570116276, 0.0030823694570757164, -0.06311227759636219, -0.10940885647144993, -0.11722159489730521, -0.10495315408795435, -0.09002960295419171, -0.1077303384502701, -0.13599047822504348, -0.1390728476821192, -0.14487136448255866, -0.14398632770775474, -0.10400708029419843, -0.039429914242988376, -0.0021057771538438063, 0.00836207159642323, 0.012115848261970886, 0.039063692129276406, 0.06427198095645009, 0.031006805627613147, -0.01293984801782281, -0.03549302652058473, -0.06878872035889767, -0.12005981627857296, -0.14270455030976287, -0.12051759392071291, -0.076082644123661, -0.04736472670674764, 0.0020142216254158147, 0.097811822870571, 0.15253151036103396, 0.17313150425733206, 0.1979735709707938, 0.22312082277901546, 0.23780022583697014, 0.18118839075899534, 0.08532975249488815, 0.02252265999328593, -0.03991821039460433, -0.097903378398999, -0.1183507797479171, -0.10928678243354595, -0.08847315897091586, -0.09262367625965148, -0.12051759392071291, -0.12640766624958036, -0.1250343333231605, -0.1315042573320719, -0.11114841151158178, -0.05285805841242714, -0.0018005920590838343, 0.016602069154942473, 0.01654103213599048, 0.034638508255256814, 0.065126499221778, 0.04739524521622364, 0.0019531846064638203, -0.02099673451948607, -0.04901272621845149, -0.10242011780144658, -0.14053773613696707, -0.14102603228858301, -0.10077211828974272, -0.0630512405774102, -0.030091250343333233, 0.0521866512039552, 0.13074129459517198, 0.15710928678243355, 0.1794793542283395, 0.20691549424726097, 0.228217413861507, 0.19824823755607776, 0.10306100650044252, 0.03164769432660909, -0.02673421430097354, -0.08810693685720389, -0.11938840907010102, -0.12320322275460066, -0.10147404400769067, -0.09201330607013153, -0.1206396679586169, -0.13715018158513137, -0.13544114505447555, -0.14474929044465468, -0.13327433088167973, -0.08035523545030061, -0.023071993163853877, 0.005554368724631489, 0.012665181432538836, 0.021027253028962065, 0.056886501663258766, 0.0630817590868862, 0.017151402325510424, -0.013580736716818751, -0.034485915707876826, -0.08145390179143651, -0.12863551744132817, -0.14212469862971894, -0.11102633747367778, -0.06659138767662587, -0.0391247291482284, 0.034485915707876826, 0.12482070375682852, 0.16611224707785271, 0.1902218695638905, 0.21909237952818383, 0.24982451857051302, 0.24536881618701742, 0.16461684011352887, 0.0815454573198645, 0.02661214026306955, -0.04171880245368816, -0.08349864192632832, -0.09640797143467512, -0.08514664143803216, -0.06900234992522965, -0.08856471449934385, -0.11304055909909361, -0.1120639667958617, -0.11600085451826533, -0.12201300088503678, -0.08709982604449598, -0.028626361888485368, 0.01217688528092288, 0.02661214026306955, 0.027863399151585436, 0.05612353892635884, 0.07861568041016877, 0.04522843104342784, 0.003021332438123722, -0.021240882595294046, -0.05783257545701468, -0.11059907834101383, -0.14310129093295085, -0.1295815912350841, -0.08890041810357982, -0.060274056215094456, -0.011230811487166967, 0.08182012390514848, 0.14178899502548295, 0.1662038026062807, 0.19510483108005006, 0.22324289681691947, 0.23966185491500594, 0.1858577227088229, 0.09503463850825526, 0.03347880489516892, -0.028077028717917417, -0.08093508713034456, -0.10553300576799829, -0.10449537644581439, -0.08072145756401257, -0.08688619647816401, -0.11456648457289346, -0.12247077852717674, -0.12570574053163244, -0.13104647968993194, -0.10913418988616597, -0.05099642933439131, 0.0007629627368999298, 0.024048585467085788, 0.02465895565660573, 0.04300057985168004, 0.08059938352610858, 0.06588946195867794, 0.018890957365642263, -0.009399700918607135, -0.037415692617572556, -0.08545182653279214, -0.1348307748649556, -0.1326639606921598, -0.08984649189733573, -0.05963316751609851, -0.024933622241889705, 0.06332590716269418, 0.14072084719382305, 0.17212439344462416, 0.19937742240668965, 0.22348704489272744, 0.2554704428235725, 0.23108615375225075, 0.14230780968657492, 0.07406842249824519, 0.01446577349162267, -0.04913480025635548, -0.0846583452864162, -0.08926664021729179, -0.0705282753990295, -0.06497390667439802, -0.09280678731650746, -0.10687582018494217, -0.10504470961638233, -0.11459700308236946, -0.11026337473677786, -0.06537064729758599, -0.012451551866206854, 0.02142399365215003, 0.029053621021149327, 0.037415692617572556, 0.0748924222540971, 0.07950071718497269, 0.0369884334849086, 0.0013733329264198737, -0.023133030182805873, -0.06582842493972595, -0.11371196630756554, -0.13608203375347147, -0.1075777459028901, -0.06683553575243385, -0.04864650410473952, 0.0195928830835902, 0.10895107882930997, 0.15207373271889402, 0.17645802179021577, 0.20383312479018525, 0.23691518906216621, 0.2360911893063143, 0.1608630634479812, 0.08285775322733238, 0.025360881374553668, -0.0423291726432081, -0.08886989959410382, -0.10507522812585833, -0.09360026856288339, -0.07675405133213294, -0.09698782311471908, -0.11975463118381298, -0.11468855861079745, -0.12189092684713279, -0.1274452955717643, -0.09192175054170354, -0.033204138309884945, 0.0065919980468153935, 0.02359080782494583, 0.02948088015381329, 0.06485183263649404, 0.09039582506790368, 0.0532547990356151, 0.015900143436994536, -0.009216589861751152, -0.04641865291299173, -0.09955137791070284, -0.13229773857844782, -0.11694692831202125, -0.07724234748374889, -0.05533005767998291, -0.006256294442579424, 0.08639790032654805, 0.1478316599017304, 0.1783196508682516, 0.20166631061738946, 0.2346263008514664, 0.25672170171208836, 0.20200201422162542, 0.11883907589953306, 0.05850398266548662, -0.009430219428083133, -0.061799981688894313, -0.08664204840235602, -0.08539078951384015, -0.06772057252723777, -0.07306131168553728, -0.09787285988952299, -0.10464796899319437, -0.10345774712363048, -0.10946989349040193, -0.09207434308908354, -0.04190191351054415, 0.007110812707907346, 0.03393658253730888, 0.037415692617572556, 0.05987731559190649, 0.09653004547257912, 0.0782189397869808, 0.03424176763206885, 0.0068971831415753655, -0.026673177282021548, -0.0793481246375927, -0.12204351939451277, -0.12784203619495224, -0.09265419476912748, -0.06805627613147373, -0.03735465559862056, 0.04834131900997955, 0.11923581652272103, 0.15286721396526995, 0.18393505661183507, 0.21353801080355236, 0.24854274117252115, 0.22208319345683156, 0.13617358928189946, 0.06909390545365765, 0.004303109836115604, -0.05694753868221076, -0.09552293465987122, -0.1021149327066866, -0.08325449385052035, -0.08328501235999634, -0.10892056031983398, -0.11984618671224097, -0.11667226172673727, -0.12210455641346477, -0.11783196508682516, -0.07406842249824519, -0.02121036408581805, 0.013306070131534776, 0.018982512894070255, 0.031617175817133095, 0.07556382946256905, 0.08078249458296456, 0.04074221015045625, 0.006653035065767388, -0.021149327066866053, -0.06839197973570971, -0.11514633625293741, -0.13538010803552356, -0.10800500503555406, -0.07498397778252511, -0.056825464644306774, 0.011688589129306926, 0.09649952696310313, 0.14493240150151065, 0.17203283791619617, 0.19949949644459364, 0.24042481765190588, 0.2423474837488937, 0.17029328287606432, 0.0945463423566393, 0.036896877956480605, -0.027741325113681447, -0.07367168187505722, -0.0881679738761559, -0.0782189397869808, -0.06772057252723777, -0.08624530777916807, -0.10629596850489823, -0.10361033967101047, -0.1021759697256386, -0.10745567186498611, -0.07907345805230873, -0.02380443739127781, 0.020203253273110143, 0.037659840693380534, 0.040345469527268286, 0.07535019989623706, 0.09747611926633504, 0.06375316629535814, 0.02368236335337382, -0.008026367992187262, -0.048982207708975496, -0.10257271034882656, -0.13672292245246742, -0.12680440687276834, -0.09436323129978332, -0.07660145878475295, -0.027314065981017488, 0.05993835261085849, 0.11813715018158513, 0.15356913968321786, 0.1770989104892117, 0.217535935544908, 0.2422559282204657, 0.19116794335764642, 0.11230811487166967, 0.04947050386059145, -0.014069032868434707, -0.06973479415265359, -0.09720145268105106, -0.09616382335886715, -0.07702871791741692, -0.08658101138340403, -0.11163670766319773, -0.11459700308236946, -0.11130100405896176, -0.11761833552049318, -0.09723197119052705, -0.047944578386791586, -0.0015259254737998596, 0.026795251319925537, 0.02978606524857326, 0.05310220648823512, 0.09036530655842769, 0.07623523667104098, 0.03543198950163274, 0.0022888882106997894, -0.03128147221289712, -0.07696768089846492, -0.12201300088503678, -0.1292764061403241, -0.09399700918607136, -0.07565538499099704, -0.045075838496047856, 0.0380260628070925, 0.10852381969664601, 0.15176854762413403, 0.1781670583208716, 0.21283608508560442, 0.25525681325724053, 0.2336802270577105, 0.1564683980834376, 0.09170812097537157, 0.026245918149357585, -0.036500137333292645, -0.07559434797204505, -0.08987701040681173, -0.07211523789178137, -0.0695211645863216, -0.09418012024292734, -0.10415967284157841, -0.1000396740623188, -0.10574663533433028, -0.10168767357402264, -0.0640888698995941, -0.014648884548478652, 0.022797326578569903, 0.032898953215124975, 0.048310800500503556, 0.08868678853724785, 0.09213538010803553, 0.05053865169225135, 0.011688589129306926, -0.019104586931974244, -0.06289864803003022, -0.11349833674123355, -0.13971373638111514, -0.11694692831202125, -0.0913418988616596, -0.07324442274239326, -0.006683553575243385, 0.07574694051942503, 0.1281472212897122, 0.15897091586046938, 0.19000823999755853, 0.2367931150242622, 0.2423474837488937, 0.17798394726401562, 0.10565507980590227, 0.04556413464766381, -0.020020142216254158, -0.0695211645863216, -0.0881679738761559, -0.0781884212775048, -0.06616412854396192, -0.08835108493301187, -0.10995818964201788, -0.1064485610522782, -0.10940885647144993, -0.11600085451826533, -0.08740501113925596, -0.03866695150608844, 0.0036927396465956603, 0.022858363597521896, 0.03451643421735282, 0.07330545976134525, 0.09512619403668325, 0.06720175786614582, 0.028412732322153387, -0.001892147587511826, -0.04202398754844813, -0.09173863948484756, -0.130344553971984, -0.12112796411023286, -0.08883938108462783, -0.07345805230872524, -0.029114658040101323, 0.05706961272011475, 0.12021240882595294, 0.15924558244575335, 0.1882076479384747, 0.23197119052705467, 0.2659688100833155, 0.2196111941892758, 0.14609210486159857, 0.08359019745475631, 0.018311105685598315, -0.0380260628070925, -0.07254249702444533, -0.07223731192968535, -0.05710013122959075, -0.06534012878810999, -0.08893093661305582, -0.0956450086977752, -0.08990752891628773, -0.09689626758629108, -0.08459730826746421, -0.04144413586840419, 0.006988738670003357, 0.03283791619617298, 0.036805322428052616, 0.06711020233771782, 0.10141300698873867, 0.08893093661305582, 0.04977568895535142, 0.01751762443922239, -0.020508438367870113, -0.06891079439680166, -0.11706900234992523, -0.12521744438001647, -0.09720145268105106, -0.08603167821283608, -0.056459242530594804, 0.022888882106997896, 0.09485152745139927, 0.1368144779808954, 0.1662038026062807, 0.20416882839442121, 0.24814600054933317, 0.23090304269539474, 0.15833002716147343, 0.09210486159855953, 0.026367992187261574, -0.035157322916348765, -0.07556382946256905, -0.08597064119388409, -0.07025360881374554, -0.07351908932767724, -0.09653004547257912, -0.1075167088839381, -0.10409863582262642, -0.11075167088839381, -0.10806604205450605, -0.07184057130649739, -0.02349925229651784, 0.014923551133762628, 0.0271919919431135, 0.049073763237403485, 0.09118930631427961, 0.09628589739677114, 0.062227240821558276, 0.028138065736869413, -0.0067445905941953795, -0.0499893185216834, -0.09726248970000305, -0.1227759636219367, -0.1033051545762505, -0.08407849360637226, -0.06814783165990174, -0.0038758507034516434, 0.07428205206457716, 0.13037507248146002, 0.1640675069429609, 0.1967833491012299, 0.24622333445234534, 0.25498214667195657, 0.19711905270546587, 0.12750633259071628, 0.0674459059419538, -0.0014954069643238624, -0.05456709494308298, -0.0748924222540971, -0.06518753624073001, -0.054933317056794946, -0.07181005279702139, -0.09015167699209571, -0.08786278878139592, -0.08810693685720389, -0.09283730582598346, -0.06720175786614582, -0.02426221503341777, 0.018860438856166267, 0.0348216193121128, 0.045258949552903834, 0.08252204962309641, 0.10812707907345805, 0.08523819696646016, 0.04849391155735954, 0.015900143436994536, -0.026001770073549608, -0.07446516312143316, -0.1185338908047731, -0.11127048554948576, -0.08499404889065218, -0.07522812585833308, -0.031922360911893065, 0.04541154210028382, 0.11050752281258583, 0.1455122531815546, 0.17087313455610828, 0.22083193456831568, 0.2522049623096408, 0.2074343089083529, 0.13708914456617938, 0.07629627368999298, 0.011383404034546954, -0.047029023102511676, -0.08169804986724448, -0.08130130924405653, -0.06549272133548997, -0.0738242744224372, -0.09921567430646687, -0.10251167332987457, -0.09942930387279886, -0.1032135990478225, -0.08862575151829585, -0.046235541856135744, 0.0007019257179479354, 0.02542191839350566, 0.03445539719840083, 0.06469924008911405, 0.10342722861415449, 0.09503463850825526, 0.058778649250770594, 0.023529770805993836, -0.011810663167210914, -0.05880916776024659, -0.10907315286721396, -0.11474959562974944, -0.09082308420056764, -0.08185064241462447, -0.051118503372295294, 0.02270577105014191, 0.0946073793755913, 0.14423047578356274, 0.17328409680471205, 0.2140263069551683, 0.26105533005768, 0.24646748252815331, 0.17694631794183172, 0.11276589251380963, 0.05023346659749138, -0.015778069399090548, -0.06076235236671041, -0.07168797875911741, -0.05633716849269082, -0.054048280281991025, -0.0740073854792932, -0.08780175176244392, -0.08514664143803216, -0.08780175176244392, -0.08212530899990844, -0.04541154210028382, -9.155552842799158e-05, 0.03167821283608509, 0.04046754356517228, 0.06158635212256233, 0.10519730216376232, 0.11053804132206183, 0.07739494003112889, 0.03686635944700461, 0.0008850367748039186, -0.045075838496047856, -0.10202337717825861, -0.12448500015259255, -0.10431226538895841, -0.0935697500534074, -0.08185064241462447, -0.021790215765861997, 0.05249183629871517, 0.1119418927579577, 0.14416943876461075, 0.17517624439222387, 0.23023163548692283, 0.23947874385814996, 0.18625446333201087, 0.12057863093966491, 0.05331583605456709, -0.011261329996642965, -0.06564531388286995, -0.08941923276467177, -0.0793786431470687, -0.07013153477584155, -0.08767967772453994, -0.10885952330088199, -0.10577715384380627, -0.10742515335551012, -0.1098055970946379, -0.08267464217047639, -0.03827021088290048, 0.007263405255287332, 0.023133030182805873, 0.035828730124820705, 0.0815759758293405, 0.10705893124179815, 0.08456678975798822, 0.04971465193639943, 0.013428144169438765, -0.02749717703787347, -0.07849360637226478, -0.11984618671224097, -0.11123996704000977, -0.0912808618427076, -0.08474990081484421, -0.04412976470229194, 0.027161473433637503, 0.09530930509353923, 0.1392559587389752, 0.16602069154942473, 0.21713919492172, 0.25507370220038456, 0.217474898525956, 0.152165288247322, 0.0925321207312235, 0.02587969603564562, -0.032227546006653035, -0.06863612781151769, -0.06869716483046968, -0.058320871608630635, -0.06698812829981383, -0.08874782555619984, -0.09662160100100711, -0.08841212195196387, -0.09305093539231545, -0.07736442152165288, -0.03598132267220069, 0.011383404034546954, 0.034852137821588795, 0.040284432508316294, 0.07757805108798486, 0.11178930021057772, 0.10483108005005036, 0.07358012634662923, 0.03375347148045289, -0.005615405743583483, -0.05505539109469894, -0.10776085695974609, -0.11615344706564532, -0.09631641590624714, -0.09360026856288339, -0.07119968260750145, -0.0043641468550675985, 0.06671346171452987, 0.11560411389507737, 0.1402630695516831, 0.184728537858211, 0.23242896816919462, 0.2206183050019837, 0.16251106295968504, 0.09765923032319102, 0.03460798974578082, -0.02685628833887753, -0.07596057008575702, -0.0890530106509598, -0.0739158299508652, -0.0739158299508652, -0.09533982360301523, -0.11285744804223762, -0.10992767113254188, -0.11352885525070956, -0.1076082644123661, -0.07531968138676107, -0.031556138798181095, 0.004730368968779565, 0.013000885036774804, 0.03744621112704855, 0.08389538254951628, 0.0957060457167272, 0.0717184972685934, 0.03610339671010468, -9.155552842799158e-05, -0.04031495101779229, -0.09268471327860348, -0.12347788933988464, -0.10824915311136205, -0.09640797143467512, -0.08551286355174413, -0.03183080538346507, 0.041169469283120215, 0.10397656178472243, 0.1399884029663991, 0.17996765037995544, 0.23426007873775445, 0.24497207556382947, 0.195593127231666, 0.13180944242683187, 0.07126071962645344, 0.007080294198431349, -0.05075228125858333, -0.07458723715933714, -0.06292916653950621, -0.05786309396649068, -0.07657094027527696, -0.09689626758629108, -0.0988494521927549, -0.10052797021393475, -0.09915463728751488, -0.07727286599322489, -0.036439100314340646, 0.0015564439832758568, 0.011871700186162909, 0.02456740012817774, 0.0694906460768456, 0.09701834162419508, 0.08090456862086856, 0.049378948332163455, 0.012634662923062838, -0.030793176061281166, -0.08212530899990844, -0.12344737083040865, -0.12054811243018891, -0.10739463484603412, -0.10220648823511459, -0.06711020233771782, 0.0016479995117038484, 0.06982634968108158, 0.10614337595751823, 0.1402630695516831, 0.19492172002319408, 0.2262642292550432, 0.1945860164189581, 0.1357768486587115, 0.07452620014038515, 0.004730368968779565, -0.057496871852778714, -0.09598071230201118, -0.09488204596087527, -0.08282723471785639, -0.09073152867213966, -0.11163670766319773, -0.11896114993743706, -0.11703848384044924, -0.11886959440900906, -0.10245063631092258, -0.06707968382824182, -0.022339548936429945, -0.0017090365306558428, 0.006653035065767388, 0.04693746757408368, 0.09006012146366771, 0.08896145512253181, 0.06051820429090243, 0.023651844843897825, -0.015289773247474594, -0.06167790765099033, -0.11496322519608142, -0.1228675191503647, -0.10785241248817408, -0.10501419110690634, -0.08316293832209234, -0.019196142460402233, 0.05362102114932707, 0.10257271034882656, 0.13183996093630787, 0.18182927945799127, 0.23206274605548266, 0.22190008239997558, 0.16644795068208867, 0.10467848750267036, 0.044038209173863946, -0.023194067201757866, -0.07110812707907346, -0.08197271645252846, -0.07110812707907346, -0.07184057130649739, -0.09060945463423567, -0.10522782067323833, -0.10196234015930662, -0.10513626514481032, -0.10293893246253853, -0.076052125614185, -0.03326517532883694, -0.0028992584002197333, 0.004119998779259621, 0.03158665730765709, 0.07510605182042909, 0.09210486159855953, 0.06979583117160558, 0.03466902676473281, -0.004943998535111545, -0.04882961516159551, -0.10367137668996246, -0.1313211462752159, -0.11789300210577715, -0.11432233649708548, -0.10284737693411054, -0.054933317056794946, 0.013519699697866757, 0.07480086672566912, 0.10919522690511796, 0.14862514114810632, 0.20731223487044892, 0.22092349009674367, 0.1759697256385998, 0.1163060396130253, 0.05258339182714316, -0.014862514114810634, -0.07235938596758934, -0.09680471205786309, -0.08853419598986785, -0.08206427198095645, -0.09732352671895504, -0.11877803888058107, -0.11706900234992523, -0.12012085329752495, -0.12143314920499283, -0.09750663777581103, -0.05612353892635884, -0.012237922299874875, -0.001892147587511826, 0.014221625415814692, 0.058320871608630635, 0.08966338084047976, 0.07727286599322489, 0.0445875423444319, 0.011230811487166967, -0.029725028229621267, -0.08722190008239998, -0.12887966551713614, -0.12366100039674062, -0.1151768547624134, -0.1119724112674337, -0.07547227393414106, -0.009277626880703146, 0.059450056459242534, 0.10293893246253853, 0.1358073671681875, 0.19367046113467817, 0.22745445112460708, 0.20175786614581745, 0.1423993652150029, 0.08203375347148045, 0.017334513382366405, -0.043488876003296, -0.08209479049043245, -0.08569597460860012, -0.07519760734885708, -0.0838038270210883, -0.10480056154057436, -0.11291848506118961, -0.11337626270332957, -0.1174352244636372, -0.10269478438673055, -0.0684224982451857, -0.018829920346690267, 0.005066072573015534, 0.013306070131534776, 0.05191198461867123, 0.0890224921414838, 0.08960234382152776, 0.06363109225745414, 0.028107547227393413, -0.010101626636555072, -0.06274605548265023, -0.11603137302774133, -0.12652974028748437, -0.11694692831202125, -0.11456648457289346, -0.09387493514816736, -0.04171880245368816, 0.026795251319925537, 0.08011108737449263, 0.10934781945249794, 0.1619006927701651, 0.21112704855494857, 0.20386364329966125, 0.15204321420941802, 0.09088412121951964, 0.030945768608661155, -0.03439436017944884, -0.08648945585497604, -0.10074159978026673, -0.09015167699209571, -0.09057893612475967, -0.11011078218939788, -0.12634662923062837, -0.12652974028748437, -0.13193151646473586, -0.12350840784936064, -0.09695730460524309, -0.05154576250495926, -0.017975402081362345, -0.010803552354503006, 0.020264290292062136, 0.06646931363872188, 0.08764915921506394, 0.06646931363872188, 0.03509628589739677, 0.0013428144169438765, -0.0446180608539079, -0.10202337717825861, -0.12973418378246407, -0.11926633503219702, -0.11404766991180151, -0.10538041322061831, -0.06567583239234596, 0.00827051606799524, 0.07336649678029725, 0.10538041322061831, 0.14703817865535448, 0.20950956755272074, 0.22534867397076327, 0.184789574877163, 0.12662129581591236, 0.06805627613147373, 0.00598162785729545, -0.055696279793694875, -0.07974486526078066, -0.07104709006012147, -0.06668294320505387, -0.08325449385052035, -0.10510574663533433, -0.11258278145695365, -0.11328470717490158, -0.11249122592852565, -0.09659108249153112, -0.05145420697653127, -0.010101626636555072, 0.0027466658528397473, 0.01901303140354625, 0.06341746269112217, 0.09430219428083132, 0.0837427900021363, 0.05377361369670705, 0.016357921079134495, -0.023255104220709862, -0.08239997558519242, -0.12460707419049653, -0.12375255592516861, -0.11914426099429304, -0.11609241004669332, -0.08944975127414777, -0.027344584490493484, 0.041108432264168215, 0.08297982726523637, 0.1216467787713248, 0.18247016815698722, 0.2164983062227241, 0.1965697195348979, 0.14285714285714285, 0.08459730826746421, 0.024872585222937713, -0.04016235847041231, -0.08200323496200446, -0.08456678975798822, -0.07306131168553728, -0.0825830866420484, -0.10495315408795435, -0.11441389202551347, -0.11871700186162908, -0.11914426099429304, -0.10522782067323833, -0.07129123813592944, -0.024536881618701743, -0.004608294930875576, 0.005279702139347514, 0.04474013489181188, 0.08661152989288003, 0.09680471205786309, 0.07553331095309306, 0.03958250679036836, 0.004303109836115604, -0.0478225043488876, -0.10235908078249459, -0.11178930021057772, -0.09979552598651081, -0.0989410077211829, -0.08536027100436415, -0.03616443372905667, 0.03881954405346843, 0.08890041810357982, 0.12237922299874875, 0.17722098452711568, 0.2205572679830317, 0.2196417126987518, 0.1750236518448439, 0.11423078096865749, 0.055909909360026856, -0.005127109591967528, -0.056154057435834834, -0.07312234870448928, -0.06463820307016205, -0.06701864680928983, -0.08642841883602405, -0.10043641468550676, -0.10617389446699423, -0.10785241248817408, -0.10147404400769067, -0.07666249580370495, -0.030060731833857234, -0.0004272591326639607, 0.0030518509475997192, 0.031769768364513076, 0.07800531022064883, 0.10101626636555071, 0.08761864070558793, 0.05362102114932707, 0.018982512894070255, -0.02459791863765374, -0.08276619769890439, -0.11117893002105778, -0.10592974639118626, -0.10403759880367443, -0.09418012024292734, -0.059450056459242534, 0.006500442518387402, 0.0630512405774102, 0.09820856349375896, 0.14844203009125034, 0.20307016205328532, 0.21866512039551989, 0.184759056367687, 0.12659077730643636, 0.0707113864558855, 0.009735404522843105, -0.05572679830317087, -0.0848414563432722, -0.07904293954283273, -0.07049775688955351, -0.08636738181707206, -0.10785241248817408, -0.1183507797479171, -0.12631611072115237, -0.12372203741569261, -0.10528885769219032, -0.06277657399212623, -0.02264473403118992, -0.01544236579485458, 0.00466933194982757, 0.049836725974303414, 0.08505508590960417, 0.09070101016266366, 0.06076235236671041, 0.02859584337900937, -0.009033478804895169, -0.0684835352641377, -0.10995818964201788, -0.10834070863979003, -0.10458693197424238, -0.1065401165807062, -0.08188116092410047, -0.02056947538682211, 0.048188726462599564, 0.08996856593523972, 0.130191961424604, 0.18826868495742669, 0.2248908963286233, 0.2077089754936369, 0.152287362285226, 0.09210486159855953, 0.0347911008026368, -0.029633472701193275, -0.07415997802667318, -0.07953123569444868, -0.06567583239234596, -0.07226783043916135, -0.09710989715262307, -0.10745567186498611, -0.11337626270332957, -0.1163060396130253, -0.10394604327524644, -0.06863612781151769, -0.020294808801538132, -0.0037232581560716575, 0.00521866512039552, 0.04287850581377606, 0.08346812341685232, 0.09488204596087527, 0.07446516312143316, 0.042451246681112095, 0.009765923032319102, -0.04641865291299173, -0.10483108005005036, -0.11273537400433363, -0.10718100527970215, -0.10519730216376232, -0.09387493514816736, -0.0488906521805475, 0.02011169774468215, 0.06820886867885373, 0.1033051545762505, 0.1588793603320414, 0.20853297524948883, 0.20856349375896482, 0.16354869228186894, 0.1044038209173864, 0.04971465193639943, -0.012146366771446883, -0.06500442518387402, -0.08563493758964812, -0.07327494125186926, -0.0750144962920011, -0.09475997192297128, -0.11105685598315378, -0.1228370006408887, -0.12567522202215645, -0.12155522324289682, -0.09298989837336344, -0.04300057985168004, -0.01184118167668691, -0.00521866512039552, 0.02053895687734611, 0.06723227637562182, 0.09335612048707541, 0.08337656788842433, 0.05603198339793085, 0.024750511185033724, -0.022431104464857937, -0.08426160466322825, -0.11230811487166967, -0.10632648701437422, -0.10412915433210242, -0.09839167455061495, -0.06588946195867794, 0.0014038514358958708, 0.06280709250160223, 0.09408856471449935, 0.1488082522049623, 0.20709860530411695, 0.2249824518570513, 0.1969664601580859, 0.13815729239783928, 0.08291879024628437, 0.02154606769005402, -0.04165776543473617, -0.0750755333109531, -0.07480086672566912, -0.06759849848933377, -0.08005005035554064, -0.097842341380047, -0.10827967162083804, -0.11612292855616932, -0.11395611438337351, -0.09717093417157506, -0.053071687978759115, -0.01239051484725486, -0.0028992584002197333, 0.016052735984374525, 0.05694753868221076, 0.09295937986388744, 0.09414960173345134, 0.06570635090182196, 0.037263100070192574, -0.0026245918149357585, -0.06491286965544603, -0.1076082644123661, -0.10986663411358989, -0.11166722617267373, -0.11108737449262979, -0.0892056031983398, -0.03308206427198096, 0.030487990966521196, 0.06665242469557787, 0.11096530045472579, 0.17230750450148014, 0.21369060335093235, 0.19885860774559772, 0.14740440076906644, 0.08996856593523972, 0.03415021210364086, -0.03140354625080111, -0.08001953184606464, -0.0848414563432722, -0.07693716238898893, -0.08505508590960417, -0.10641804254280221, -0.1185338908047731, -0.12637714774010436, -0.13016144291512802, -0.12137211218604084, -0.08136234626300852, -0.03314310129093295, -0.013672292245246742, -0.003906369212927641, 0.03491317484054079, 0.07742545854060488, 0.09549241615039522, 0.08346812341685232, 0.05624561296426282, 0.025269325846125675, -0.03466902676473281, -0.08771019623401594, -0.09906308175908689, -0.09506515701773126, -0.097781304361095, -0.08825952940458388, -0.04257332071901608, 0.02053895687734611, 0.06942960905789361, 0.108584856715598, 0.16565446943571277, 0.2184820093386639, 0.22544022949919126, 0.18634601886043886, 0.12805566576128422, 0.06988738670003357, 0.008758812219611195, -0.04446546830652791, -0.06756797997985778, -0.05948057496871853, -0.06158635212256233, -0.07998901333658864, -0.09591967528305917, -0.10849330118717002, -0.11285744804223762, -0.11542100283822138, -0.09146397289956358, -0.042603839228492084, -0.01370281075472274, -0.004028443250831629, 0.024719992675557727, 0.06729331339457381, 0.09689626758629108, 0.09036530655842769, 0.061799981688894313, 0.035248878444776754, -0.016266365550706503, -0.07892086550492874, -0.10568559831537827, -0.10342722861415449, -0.10238959929197058, -0.09918515579699087, -0.06973479415265359, -0.009491256447035128, 0.04709006012146367, 0.08185064241462447, 0.13409833063753165, 0.1923886837366863, 0.2162236396374401, 0.18970305490279854, 0.13461714529862362, 0.08200323496200446, 0.021790215765861997, -0.03894161809137242, -0.0717184972685934, -0.07104709006012147, -0.07010101626636556, -0.08578753013702811, -0.10718100527970215, -0.11972411267433698, -0.12796411023285623, -0.1325418866542558, -0.11713003936887723, -0.06991790520950956, -0.032074953459273046, -0.02447584459974975, -0.002197332682271798, 0.039613025299844354, 0.07632679219946897, 0.08545182653279214, 0.06601153599658192, 0.03851435895870846, 0.0036011841181676687, -0.056581316568498796, -0.10303048799096652, -0.10730307931760613, -0.10678426465651418, -0.10589922788171026, -0.08490249336222419, -0.031556138798181095, 0.028992584002197334, 0.0695822016052736, 0.11590929898983733, 0.1791131321146275, 0.21900082399975584, 0.20902127140110477, 0.16257209997863703, 0.10763878292184209, 0.052461317789239174, -0.011169774468214972, -0.06012146366771447, -0.06985686819055757, -0.05887020477919858, -0.06292916653950621, -0.08017212439344462, -0.09579760124515518, -0.10739463484603412, -0.11145359660634174, -0.1054719687490463, -0.06643879512924589, -0.019714957121494188, -0.004577776421399579, 0.003357036042359691, 0.03540147099215674, 0.07867671742912076, 0.09869685964537492, 0.08493301187170019, 0.05716116824854274, 0.025910214545121615, -0.03302102725302896, -0.08774071474349193, -0.10193182164983063, -0.09973448896755882, -0.09866634113589892, -0.09265419476912748, -0.051484725486007264, 0.008789330729087191, 0.05029450361644337, 0.08984649189733573, 0.14990691854609822, 0.20203253273110142, 0.20926541947691274, 0.1686758018738365, 0.11273537400433363, 0.060060426648762474, -0.002197332682271798, -0.05969420453505051, -0.0836207159642323, -0.07803582873012482, -0.0793176061281167, -0.0935087130344554, -0.11120944853053377, -0.12530899990844446, -0.13403729361857966, -0.13544114505447555, -0.10794396801660207, -0.05825983458967864, -0.028534806360057376, -0.020477919858394117, 0.005035554063539537, 0.048402356028931545, 0.08026367992187261, 0.08005005035554064, 0.06033509323404645, 0.03390606402783288, -0.013855403302102725, -0.07409894100772119, -0.10312204351939451, -0.10586870937223426, -0.1021759697256386, -0.09595019379253518, -0.07153538621173743, -0.0067445905941953795, 0.049073763237403485, 0.08313241981261635, 0.13541062654499955, 0.19806512649922178, 0.22342600787377545, 0.19751579332865382, 0.1467329935605945, 0.09323404644917142, 0.03637806329538865, -0.022339548936429945, -0.06012146366771447, -0.0630207220679342, -0.06079287087618641, -0.07293923764763328, -0.0891750846888638, -0.1064790795617542, -0.11227759636219367, -0.11767937253944517, -0.10367137668996246, -0.055024872585222935, -0.017456587420270394, -0.007751701406903287, 0.010254219183935057, 0.04760887478255562, 0.08249153111362041, 0.09335612048707541, 0.07535019989623706, 0.051332132938627276, 0.011139255958738976, -0.050721762749107335, -0.09250160222174748, -0.09820856349375896, -0.0988189336832789, -0.10122989593188268, -0.08725241859187598, -0.03714102603228858, 0.02249214148380993, 0.05798516800439467, 0.10617389446699423, 0.16812646870326853, 0.20624408703878902, 0.20267342143009737, 0.15738395336771752, 0.10196234015930662, 0.047029023102511676, -0.014069032868434707, -0.06463820307016205, -0.07464827417828913, -0.06564531388286995, -0.07727286599322489, -0.09262367625965148, -0.11038544877468184, -0.12433240760521257, -0.12988677632984405, -0.1271401104770043, -0.08783227027191992, -0.040955839716788234, -0.02163762321848201, -0.005920590838343455, 0.027954954680013428, 0.06918546098208564, 0.09082308420056764, 0.08545182653279214, 0.06598101748710593, 0.034485915707876826, -0.022980437635425885, -0.07794427320169683, -0.0935392315439314, -0.09591967528305917, -0.0956755272072512, -0.08877834406567583, -0.05255287331766716, 0.011139255958738976, 0.054292428357799, 0.09591967528305917, 0.15921506393627735, 0.21253089999084446, 0.2238532670064394, 0.19168675801873836, 0.1380352183599353, 0.08713034455397198, 0.024872585222937713, -0.034485915707876826, -0.05554368724631489, -0.052369762260811185, -0.0586870937223426, -0.07544175542466507, -0.08792382580034791, -0.10379345072786646, -0.11212500381481369, -0.11429181798760948, -0.08844264046143986, -0.03646961882381664, -0.01174962614825892, -0.0021057771538438063, 0.0239265114291818, 0.06485183263649404, 0.09768974883266701, 0.10019226660969878, 0.07782219916379284, 0.05554368724631489, 0.00521866512039552, -0.062379833368938264, -0.0880153813287759, -0.09002960295419171, -0.09045686208685567, -0.0912503433332316, -0.06903286843470564, -0.015564439832758568, 0.03198339793084506, 0.06729331339457381, 0.12314218573564867, 0.18543046357615894, 0.21576586199530015, 0.19647816400646992, 0.1435895870845668, 0.09332560197759941, 0.036286507766960664, -0.024292733542893765, -0.06347849971007416, -0.06857509079256568, -0.06662190618610186, -0.07602160710470901, -0.09436323129978332, -0.11270485549485763, -0.1228980376598407, -0.12912381359294411, -0.11648915066988129, -0.06616412854396192, -0.028412732322153387, -0.01763969847712638, 0.0021668141727958007, 0.03735465559862056, 0.07660145878475295, 0.09387493514816736, 0.08456678975798822, 0.06445509201330607, 0.028534806360057376, -0.036439100314340646, -0.08124027222510452, -0.09073152867213966, -0.08734397412030397, -0.08456678975798822, -0.07412945951719718, -0.02652058473464156, 0.029602954191717278, 0.06732383190404981, 0.11172826319162572, 0.1801507614368114, 0.22428052613910338, 0.2197027497177038, 0.17886898403881954, 0.12585833307901242, 0.07263405255287332, 0.013489181188390759, -0.03662221137119663, -0.04904324472792749, -0.04544206060975982, -0.055696279793694875, -0.06854457228308969, -0.0880458998382519, -0.09979552598651081, -0.10620441297647024, -0.10763878292184209, -0.0696737571337016, -0.0206610309152501, -0.003936887722403638, 0.007995849482711264, 0.03894161809137242, 0.0771202734458449, 0.10376293221839046, 0.09921567430646687, 0.08307138279366436, 0.05294961394085513, -0.008178960539567248, -0.06277657399212623, -0.08401745658742027, -0.08502456740012818, -0.0848414563432722, -0.08337656788842433, -0.05346842860194708, 0.005737479781487472, 0.04480117191076388, 0.08560441908017212, 0.14578691976683858, 0.20072023682363355, 0.21793267616809595, 0.1881466109195227, 0.13653981139561144, 0.08270516067995239, 0.024079103976561784, -0.035462508011108736, -0.05783257545701468, -0.05496383556627094, -0.0575884273812067, -0.0727561265907773, -0.09228797265541551, -0.11011078218939788, -0.11828974272896511, -0.12619403668324838, -0.10055848872341075, -0.04821924497207557, -0.023895992919705802, -0.012512588885158849, 0.0097964415417951, 0.04709006012146367, 0.08432264168218025, 0.09210486159855953, 0.07562486648152104, 0.06039613025299844, 0.012024292733542894, -0.0489516891994995, -0.08212530899990844, -0.08581804864650411, -0.08017212439344462, -0.08285775322733238, -0.06268501846369823, -0.0068971831415753655, 0.04153569139683218, 0.07440412610248115, 0.1260109256263924, 0.1903439436017945, 0.2269356364635151, 0.21051667836542864, 0.1640675069429609, 0.11465804010132145, 0.0587176122318186, -0.006775109103671377, -0.04574724570451979, -0.04632709738456374, -0.048615985595263526, -0.06118961149937437, -0.07394634846034119, -0.09259315775017549, -0.10196234015930662, -0.11349833674123355, -0.10379345072786646, -0.05609302041688284, -0.020966216010010072, -0.007568590350047304, 0.007507553331095309, 0.0390942106387524, 0.07538071840571306, 0.09271523178807947, 0.08209479049043245, 0.06649983214819788, 0.030182805871761222, -0.03347880489516892, -0.0771813104647969, -0.09121982482375561, -0.0902127140110477, -0.09198278756065553, -0.0859096041749321, -0.040650654622028264, 0.012115848261970886, 0.0445265053254799, 0.0945768608661153, 0.1620838038270211, 0.20889919736320078, 0.206335642567217, 0.16544083986938077, 0.11828974272896511, 0.06399731437116611, 0.002227851191747795, -0.046906949064607684, -0.06045716727195044, -0.05706961272011475, -0.06485183263649404, -0.08026367992187261, -0.0989715262306589, -0.11340678121280556, -0.12765892513809626, -0.12979522080141606, -0.08829004791405988, -0.04181035798211615, -0.02252265999328593, -0.007873775444807276, 0.019837031159398177, 0.05728324228644673, 0.08471938230536821, 0.08682515945921201, 0.0717795342875454, 0.04535050508133183, -0.013428144169438765, -0.06711020233771782, -0.08520767845698417, -0.0859401226844081, -0.08526871547593616, -0.08539078951384015, -0.05377361369670705, 0.005645924253059481, 0.045930356761375773, 0.08444471572008423, 0.1476485488448744, 0.20804467909787286, 0.228308969389935, 0.19699697866756188, 0.14813684499649038, 0.09515671254615925, 0.040406506546220286, -0.01760917996765038, -0.04632709738456374, -0.04361095004119999, -0.05096591082491531, -0.0641193884090701, -0.08359019745475631, -0.09665211951048311, -0.10922574541459396, -0.12146366771446883, -0.09494308297982726, -0.047486800744651635, -0.022797326578569903, -0.01281777397991882, 0.011474959562974944, 0.04556413464766381, 0.07452620014038515, 0.08166753135776848, 0.07287820062868129, 0.05835139011810663, 0.008728293710135197, -0.05371257667775506, -0.08569597460860012, -0.09274575029755547, -0.09179967650379955, -0.09833063753166295, -0.07657094027527696, -0.02041688283944212, 0.023194067201757866, 0.05911435285500656, 0.11038544877468184, 0.1760307626575518, 0.21228675191503646, 0.19974364452040164, 0.15820795312356944, 0.10641804254280221, 0.05099642933439131, -0.008056886501663259, -0.04873805963316752, -0.056672872096926785, -0.05731376079592273, -0.06537064729758599, -0.08105716116824854, -0.10205389568773461, -0.11355937376018556, -0.1316263313699759, -0.12021240882595294, -0.07342753379924924, -0.03469954527420881, -0.0206610309152501, -0.005767998290963469, 0.025910214545121615, 0.059083834345530564, 0.08099612414929655, 0.07885982848597675, 0.07217627491073336, 0.03399761955626087, -0.028870509964293346, -0.07123020111697745, -0.08615375225074007, -0.08526871547593616, -0.08651997436445204, -0.08096560563982055, -0.037568285164952545, 0.014557329020050662, 0.049836725974303414, 0.09875789666432691, 0.1640369884334849, 0.21677297280800806, 0.21924497207556384, 0.1836603900265511, 0.13531907101657156, 0.08615375225074007, 0.021332438123722038, -0.027924436170537432, -0.04574724570451979, -0.049226355784783474, -0.05444502090517899, -0.07077242347483749, -0.09100619525742362, -0.10528885769219032, -0.11719107638782922, -0.12250129703665273, -0.0846888637958922, -0.039521469771416365, -0.02041688283944212, -0.0038758507034516434, 0.02264473403118992, 0.05719168675801874, 0.08444471572008423, 0.0847804193243202, 0.07644886623737297, 0.052369762260811185, -0.003967406231879635, -0.05719168675801874, -0.08291879024628437, -0.08645893734550004, -0.08963286233100376, -0.0923184911648915, -0.06012146366771447, -0.007751701406903287, 0.031708731345561084, 0.06875820184942168, 0.1272011474959563, 0.19009979552598652, 0.21338541825617238, 0.18774987029633472, 0.14227729117709892, 0.09121982482375561, 0.0304574724570452, -0.02554399243140965, -0.05285805841242714, -0.05856501968443861, -0.06433301797540208, -0.07550279244361706, -0.09726248970000305, -0.1152073732718894, -0.1294595171971801, -0.14438306833094272, -0.12051759392071291, -0.07132175664540544, -0.04531998657185583, -0.028077028717917417, -0.00946073793755913, 0.024201178014465773, 0.05813776055177465, 0.06759849848933377, 0.06463820307016205, 0.05310220648823512, 0.011230811487166967, -0.04956205938901944, -0.08172856837672048, -0.09042634357737968, -0.09256263924069949, -0.09814752647480697, -0.07879879146702475, -0.023834955900753806, 0.02151554918057802, 0.05255287331766716, 0.10632648701437422, 0.17270424512466812, 0.2119205298013245, 0.20270393993957336, 0.16248054445020904, 0.11664174321726127, 0.06067079683828242, -0.0018005920590838343, -0.04226813562425611, -0.04687643055513169, -0.04751731925412763, -0.05642872402111881, -0.07272560808130131, -0.09100619525742362, -0.1054109317300943, -0.12463759269997253, -0.11908322397534105, -0.07251197851496934, -0.039735099337748346, -0.024842066713461716, -0.006836146122623371, 0.022003845332193975, 0.05774101992858669, 0.07541123691518906, 0.0749229407635731, 0.0686056093020417, 0.03570665608691671, -0.022766808069093907, -0.07159642323068942, -0.09082308420056764, -0.09103671376689962, -0.09799493392742699, -0.09198278756065553, -0.052461317789239174, -0.003143406476027711, 0.028748435926389357, 0.07544175542466507, 0.14172795800653096, 0.1923276467177343, 0.2022156437879574, 0.16876735740226448, 0.12149418622394483, 0.07013153477584155, 0.007202368236335337, -0.04211554307687613, -0.05575731681264687, -0.05798516800439467, -0.06070131534775842, -0.07422101504562517, -0.09387493514816736, -0.10809656056398205, -0.1294595171971801, -0.1389812921536912, -0.10464796899319437, -0.057557908871730706, -0.03604235969115269, -0.023316141239661855, 0.0021057771538438063, 0.03564561906796472, 0.06115909298989838, 0.0673543504135258, 0.06552323984496597, 0.04632709738456374, -0.006500442518387402, -0.05948057496871853, -0.08215582750938444, -0.08709982604449598, -0.08975493636890775, -0.09302041688283945, -0.065157017731254, -0.009613330484939116, 0.026703695791497544, 0.06506546220282601, 0.12533951841792046, 0.18643757438886685, 0.2129276406140324, 0.19278542435987425, 0.1508224738303781, 0.10068056276131473, 0.042542802209540084, -0.018768883327738274, -0.04385509811700797, -0.04406872768333995, -0.04959257789849544, -0.058534501174962617, -0.07669301431318094, -0.09228797265541551, -0.11160618915372174, -0.1292458876308481, -0.10614337595751823, -0.05716116824854274, -0.028077028717917417, -0.015350810266426589, 0.005401776177251503, 0.0358592486342967, 0.06585894344920194, 0.07483138523514511, 0.07345805230872524, 0.0619525742362743, 0.018860438856166267, -0.038239692373424485, -0.07379375591296121, -0.08499404889065218, -0.08743552964873195, -0.0925321207312235, -0.07470931119724113, -0.025666066469313638, 0.0173955504013184, 0.0499893185216834, 0.10086367381817073, 0.16922513504440442, 0.21030304879909664, 0.20490127262184515, 0.16809595019379253, 0.12073122348704489, 0.06390575884273812, 0.0022583697012237922, -0.03558458204901273, -0.042909024323252054, -0.047791985839411605, -0.058534501174962617, -0.07449568163090915, -0.09286782433545945, -0.108584856715598, -0.13071077608569598, -0.1272011474959563, -0.08505508590960417, -0.04544206060975982, -0.02737510299996948, -0.00967436750389111, 0.01925717947935423, 0.054628131962034976, 0.07696768089846492, 0.0783715323343608, 0.07290871913815729, 0.042909024323252054, -0.013519699697866757, -0.05572679830317087, -0.07892086550492874, -0.08111819818720054, -0.0837427900021363, -0.07879879146702475, -0.03469954527420881, 0.012787255470442824, 0.04336680196539201, 0.08313241981261635, 0.15021210364085819, 0.20554216132084108, 0.2186040833765679, 0.1878109073152867, 0.1393169957579272, 0.0880153813287759, 0.02661214026306955, -0.022003845332193975, -0.03775139622180853, -0.04269539475692007, -0.04632709738456374, -0.055238502151554916, -0.07467879268776513, -0.09079256569109165, -0.11542100283822138, -0.12231818597979675, -0.09057893612475967, -0.04879909665211951, -0.02575762199774163, -0.009216589861751152, 0.01239051484725486, 0.04544206060975982, 0.07116916409802546, 0.07733390301217688, 0.07904293954283273, 0.05706961272011475, 0.0057985168004394665, -0.04263435773796808, -0.07266457106234932, -0.08304086428418836, -0.08661152989288003, -0.09006012146366771, -0.061128574480422374, -0.013733329264198737, 0.023010956144901885, 0.055848872341074864, 0.11535996581926938, 0.18131046479689933, 0.20734275337992492, 0.18842127750480667, 0.14587847529526657, 0.09939878536332286, 0.039521469771416365, -0.018768883327738274, -0.04574724570451979, -0.0478530228583636, -0.05413983581041902, -0.06683553575243385, -0.0858790856654561, -0.09912411877803888, -0.11694692831202125, -0.1391338847010712, -0.12240974150822474, -0.07736442152165288, -0.05059968871120334, -0.03128147221289712, -0.01272621845149083, 0.0173955504013184, 0.051179540391247294, 0.06326487014374219, 0.06820886867885373, 0.05798516800439467, 0.020203253273110143, -0.03360087893307291, -0.06942960905789361, -0.08441419721060824, -0.08865627002777185, -0.09308145390179144, -0.07681508835108493, -0.029938657795953245, 0.014130069887386701, 0.04684591204565569, 0.1000396740623188, 0.1675160985137486, 0.21225623340556046, 0.21222571489608447, 0.173894466994232, 0.1280861842707602, 0.07498397778252511, 0.014130069887386701, -0.02673421430097354, -0.03439436017944884, -0.040955839716788234, -0.046662800988799706, -0.06488235114597003, -0.08212530899990844, -0.09479049043244728, -0.11920529801324503, -0.11841181676686911, -0.08239997558519242, -0.04370250556962798, -0.02185125278481399, -0.006164738914151433, 0.018951994384594256, 0.04940946684163945, 0.06341746269112217, 0.07315286721396527, 0.076143681142613, 0.047578356273079624, -0.005554368724631489, -0.057557908871730706, -0.07995849482711265, -0.08462782677694021, -0.09424115726187933, -0.08648945585497604, -0.047639393292031616, -0.002075258644367809, 0.029114658040101323, 0.0663472396008179, 0.1315652943510239, 0.18750572222052675, 0.2031311990722373, 0.17761772515030366, 0.13403729361857966, 0.08703878902554399, 0.020294808801538132, -0.029175695059053316, -0.043885616626483964, -0.05056917020172735, -0.058473464156010624, -0.07211523789178137, -0.08731345561082797, -0.09924619281594287, -0.12231818597979675, -0.1347392193365276, -0.1044343394268624, -0.07098605304116946, -0.04660176396984771, -0.02771080660420545, -0.002380443739127781, 0.03283791619617298, 0.05557420575579089, 0.065218054750206, 0.07425153355510117, 0.05719168675801874, 0.00988799707022309, -0.04031495101779229, -0.07184057130649739, -0.07971434675130466, -0.08810693685720389, -0.08456678975798822, -0.0554216132084109, -0.008453627124851223, 0.02563554795983764, 0.05984679708243049, 0.11789300210577715, 0.18018127994628744, 0.21378215887936033, 0.19879757072664572, 0.15903195287942137, 0.11401715140232552, 0.05673390911587878, -0.00024414807580797754, -0.024201178014465773, -0.030396435438093204, -0.034272286141544844, -0.04812768944364757, -0.06555375835444197, -0.0771507919553209, -0.10037537766655477, -0.12198248237556078, -0.10592974639118626, -0.06558427686391796, -0.03949095126194037, -0.021057771538438064, -0.0032959990234076968, 0.02511673329874569, 0.05252235480819117, 0.06561479537339396, 0.07699819940794092, 0.06854457228308969, 0.032135990478225046, -0.022797326578569903, -0.06183050019837031, -0.07797479171117283, -0.08459730826746421, -0.08932767723624378, -0.07550279244361706, -0.02914517654957732, 0.010742515335551012, 0.03964354380932035, 0.08536027100436415, 0.15344706564531388, 0.19727164525284585, 0.19577623828852198, 0.16229743339335306, 0.11700796533097324, 0.06775109103671377, 0.00695822016052736, -0.03204443494979705, -0.03964354380932035, -0.041932432020020144, -0.05038605914487136, -0.06723227637562182, -0.0847804193243202, -0.1043427838984344, -0.13281655323953978, -0.12988677632984405, -0.09588915677358317, -0.061799981688894313, -0.039155247657704395, -0.021820734275337993, 0.0030823694570757164, 0.03421124912259285, 0.0522171697134312, 0.05676442762535478, 0.061922055726798306, 0.039613025299844354, -0.012146366771446883, -0.05932798242133854, -0.08297982726523637, -0.09015167699209571, -0.09619434186834315, -0.08749656666768395, -0.04776146732993561, -0.0031128879665517136, 0.025940733054597615, 0.06595049897762993, 0.13211462752159184, 0.1888790551469466, 0.2054200872829371, 0.18021179845576343, 0.1392864772484512, 0.0925321207312235, 0.02957243568224128, -0.020966216010010072, -0.037263100070192574, -0.041169469283120215, -0.04510635700552385, -0.0575884273812067, -0.07431257057405316, -0.08746604815820795, -0.11169774468214973, -0.1239356669820246, -0.0989104892117069, -0.06118961149937437, -0.035309915463728754, -0.020813623462630087, 0.001281777397991882, 0.03219702749717704, 0.05154576250495926, 0.06234931485946226, 0.0696432386242256, 0.05694753868221076, 0.012756736960966826, -0.03714102603228858, -0.07199316385387737, -0.08200323496200446, -0.0891750846888638, -0.09271523178807947, -0.06497390667439802, -0.020966216010010072, 0.013855403302102725, 0.04705954161198767, 0.10550248725852229, 0.16885891293069247, 0.19754631183812982, 0.18292794579912716, 0.14529862361522264, 0.1031830805383465, 0.045381023590807826, -0.013183996093630787, -0.0369273964659566, -0.04589983825189978, -0.04956205938901944, -0.05844294564653462, -0.07577745902890103, -0.08935819574571978, -0.11554307687612538, -0.1402935880611591, -0.12894070253608814, -0.09155552842799158, -0.06176946317941832, -0.04556413464766381, -0.025605029450361645, 0.004577776421399579, 0.029969176305429245, 0.0423291726432081, 0.05130161442915128, 0.04660176396984771, 0.01293984801782281, -0.03677480391857662, -0.07907345805230873, -0.09424115726187933, -0.10049745170445876, -0.10477004303109837, -0.08319345683156834, -0.040284432508316294, -0.0005188146610919523, 0.02966399121066927, 0.07705923642689291, 0.14395580919827874, 0.19269386883144626, 0.1966002380443739, 0.16681417279580066, 0.12881862849818415, 0.07632679219946897, 0.01638843958861049, -0.02075258644367809, -0.033204138309884945, -0.0380565813165685, -0.044038209173863946, -0.05850398266548662, -0.06976531266212958, -0.08713034455397198, -0.11722159489730521, -0.11780144657734916, -0.08639790032654805, -0.052369762260811185, -0.03210547196874905, -0.015198217719046602, 0.012207403790398877, 0.04107791375469222, 0.054322946867275006, 0.06378368480483414, 0.06723227637562182, 0.04522843104342784, -0.0006103701895199438, -0.04919583727530748, -0.07483138523514511, -0.08575701162755212, -0.09305093539231545, -0.08658101138340403, -0.05142368846705527, -0.00946073793755913, 0.0195623645741142, 0.06033509323404645, 0.12134159367656484, 0.1783806878872036, 0.20056764427625354, 0.1780449842829676, 0.13867610705893124, 0.09207434308908354, 0.03054902798547319, -0.01913510544145024, -0.03509628589739677, -0.04052858058412427, -0.047944578386791586, -0.060945463423566396, -0.07730338450270088, -0.09479049043244728, -0.12335581530198066, -0.13623462630085148, -0.11593981749931333, -0.08038575395977661, -0.05359050263985107, -0.03381450849940489, -0.008972441785943175, 0.01901303140354625, 0.041383098849452196, 0.049439985351115455, 0.058107242042298654, 0.04992828150273141, 0.006927701651051363, -0.04367198706015198, -0.0750450148014771, -0.08560441908017212, -0.09582811975463118, -0.097933896908475, -0.0705282753990295, -0.02749717703787347, 0.009949034089175085, 0.04718161564989166, 0.1000091555528428, 0.16357921079134496, 0.2010559404278695, 0.18958098086489455, 0.15692617572557757, 0.11377300332651753, 0.05566576128421888, -0.0011291848506118961, -0.03122043519394513, -0.0391247291482284, -0.039613025299844354, -0.046967986083559676, -0.06161687063203833, -0.07852412488174078, -0.10415967284157841, -0.1259498886074404, -0.11453596606341747, -0.08307138279366436, -0.05575731681264687, -0.03564561906796472, -0.018311105685598315, 0.013336588641010774, 0.038239692373424485, 0.04965361491744743, 0.05807672353282266, 0.05819879757072664, 0.027222510452589496, -0.02432325205236976, -0.061555833613086336, -0.07779168065431684, -0.08536027100436415, -0.09475997192297128, -0.0793176061281167, -0.03662221137119663, 0.0008545182653279214, 0.02978606524857326, 0.07257301553392133, 0.13553270058290354, 0.18643757438886685, 0.19528794213690603, 0.16641743217261268, 0.12451551866206854, 0.07535019989623706, 0.017426068910794398, -0.02087466048158208, -0.03332621234778894, -0.03500473036896878, -0.042909024323252054, -0.057649464400158695, -0.07101657155064546, -0.09576708273567919, -0.12582781456953643, -0.13113803521835993, -0.10180974761192664, -0.07080294198431349, -0.054628131962034976, -0.03576769310586871, -0.00695822016052736, 0.02185125278481399, 0.03842280343028046, 0.051026947843867305, 0.056062501907406845, 0.037263100070192574, -0.005645924253059481, -0.05197302163762322, -0.07553331095309306, -0.08536027100436415, -0.09854426709799494, -0.08938871425519578, -0.05224768822290719, -0.010864589373455, 0.02056947538682211, 0.05456709494308298, 0.11542100283822138, 0.17236854152043216, 0.19464705343791008, 0.17584765160069582, 0.14062929166539506, 0.09298989837336344, 0.034272286141544844, -0.012024292733542894, -0.03402813806573687, -0.03460798974578082, -0.03979613635670034, -0.052369762260811185, -0.06292916653950621, -0.07953123569444868, -0.10657063509018219, -0.12350840784936064, -0.10867641224402601, -0.07574694051942503, -0.04699850459303568, -0.031128879665517136, -0.009155552842799158, 0.02056947538682211, 0.036805322428052616, 0.04654072695089572, 0.0532547990356151, 0.04873805963316752, 0.011505478072450942, -0.037415692617572556, -0.07043671987060152, -0.08713034455397198, -0.09552293465987122, -0.10028382213812677, -0.07263405255287332, -0.029877620777001252, 0.0038758507034516434, 0.03543198950163274, 0.0859096041749321, 0.14609210486159857, 0.18524735251930297, 0.17993713187047944, 0.14597003082369456, 0.10504470961638233, 0.04736472670674764, -0.01132236701559496, -0.03967406231879635, -0.04739524521622364, -0.049073763237403485, -0.056367687002166815, -0.07348857081820125, -0.08633686330759606, -0.11291848506118961, -0.1347697378460036, -0.12738425855281227, -0.09906308175908689, -0.06933805352946562, -0.0500198370311594, -0.02847376934110538, -0.0005188146610919523, 0.021027253028962065, 0.034272286141544844, 0.04425183874019593, 0.045472579119235815, 0.02478102969450972, -0.026245918149357585, -0.06604205450605792, -0.08441419721060824, -0.09143345439008758, -0.09921567430646687, -0.08343760490737633, -0.041383098849452196, -0.003814813684499649, 0.02587969603564562, 0.07422101504562517, 0.13962218085268716, 0.18640705587939085, 0.19647816400646992, 0.1696218756675924, 0.13385418256172368, 0.08188116092410047, 0.025360881374553668, -0.012695699942014832, -0.027130954924161503, -0.025910214545121615, -0.036500137333292645, -0.050935392315439317, -0.05969420453505051, -0.08444471572008423, -0.11404766991180151, -0.12002929776909696, -0.0989410077211829, -0.06250190740684225, -0.04309213538010804, -0.0249946592608417, 0.0022583697012237922, 0.024689474166081728, 0.03744621112704855, 0.049226355784783474, 0.053651539658803066, 0.031037324137089144, -0.011261329996642965, -0.055696279793694875, -0.07889034699545275, -0.08871730704672384, -0.10040589617603077, -0.10126041444135868, -0.06613361003448591, -0.022431104464857937, 0.010101626636555072, 0.04406872768333995, 0.09967345194860683, 0.1599780266731773, 0.185064241462447, 0.17133091219824823, 0.13830988494521929, 0.09286782433545945, 0.031342509231849114, -0.015839106418042544, -0.038758507034516436, -0.04184087649159215, -0.047486800744651635, -0.05728324228644673, -0.07144383068330942, -0.09381389812921537, -0.1216772972808008, -0.13660084841456344, -0.11999877925962096, -0.08767967772453994, -0.06021301919614246, -0.0424207281716361, -0.013641773735770746, 0.013672292245246742, 0.031189916684469132, 0.0445875423444319, 0.056672872096926785, 0.049226355784783474, 0.013611255226294748, -0.03250221259193701, -0.06472975859859005, -0.07779168065431684, -0.09247108371227149, -0.09656056398205512, -0.06775109103671377, -0.025696584978789638, 0.005890072328867458, 0.0391857661671804, 0.08972441785943175, 0.15210425122837, 0.19641712698751793, 0.1965392010254219, 0.16504409924619282, 0.12768944364757226, 0.0695822016052736, 0.015839106418042544, -0.013824884792626729, -0.02240058595538194, -0.0228278450880459, -0.03537095248268075, -0.04428235724967192, -0.05679494613483078, -0.0848719748527482, -0.108706930753502, -0.10388500625629445, -0.07766960661641285, -0.048310800500503556, -0.03158665730765709, -0.011108737449262978, 0.01672414319284646, 0.03579821161534471, 0.04684591204565569, 0.057130649739066744, 0.05774101992858669, 0.030365916928617207, -0.015350810266426589, -0.05468916898098697, -0.07272560808130131, -0.08392590105899228, -0.09591967528305917, -0.08139286477248452, -0.0413220618305002, -0.004974517044587542, 0.02456740012817774, 0.06585894344920194, 0.12582781456953643, 0.17673268837549974, 0.19107638782921843, 0.17200231940672017, 0.13757744071779535, 0.08532975249488815, 0.027588732566301462, -0.01281777397991882, -0.029633472701193275, -0.03280739768669698, -0.0380565813165685, -0.049531540879543444, -0.06326487014374219, -0.08655049287392803, -0.11581774346140934, -0.1271706289864803, -0.10864589373455001, -0.07650990325632497, -0.05581835383159887, -0.03732413708914457, -0.01141392254402295, 0.015137180700094607, 0.027222510452589496, 0.03573717459639271, 0.04367198706015198, 0.030060731833857234, -0.011474959562974944, -0.05496383556627094, -0.07751701406903287, -0.09033478804895169, -0.09985656300546282, -0.09646900845362713, -0.06396679586169011, -0.021881771294289986, 0.008239997558519242, 0.046662800988799706, 0.10348826563310648, 0.16318247016815698, 0.1890926847132786, 0.17767876216925566, 0.14816736350596638, 0.10339671010467849, 0.04522843104342784, -0.0035401470992156743, -0.02859584337900937, -0.03183080538346507, -0.03317361980040895, -0.04220709860530412, -0.054414502395702995, -0.07458723715933714, -0.10098574785607471, -0.11658070619830928, -0.10303048799096652, -0.07181005279702139, -0.05407879879146703, -0.03842280343028046, -0.012359996337778864, 0.012024292733542894, 0.026001770073549608, 0.03964354380932035, 0.04858546708578753, 0.03903317361980041, 0.008087405011139257, -0.03537095248268075, -0.0641193884090701, -0.07681508835108493, -0.0923490096743675, -0.09811700796533097, -0.07409894100772119, -0.03564561906796472, -0.0032654805139316996, 0.028656880397961364, 0.07672353282265694, 0.1404156620990631, 0.18143253883480331, 0.18201239051484724, 0.1596423230689413, 0.11880855739005707, 0.06576738792077395, 0.012482070375682853, -0.022003845332193975, -0.03122043519394513, -0.03500473036896878, -0.04416028321176794, -0.05630664998321482, -0.0695211645863216, -0.09366130558183539, -0.11618396557512131, -0.11551255836664938, -0.09097567674794763, -0.06707968382824182, -0.050508133182775354, -0.03183080538346507, -0.0017090365306558428, 0.020081179235206154, 0.02893154698324534, 0.039368877224036376, 0.04123050630207221, 0.02252265999328593, -0.021485030671102023, -0.05993835261085849, -0.07861568041016877, -0.09137241737113559, -0.10092471083712272, -0.08749656666768395, -0.045533616138187814, -0.0075380718405713065, 0.021240882595294046, 0.061037018951994385, 0.12314218573564867, 0.17670216986602374, 0.1914426099429304, 0.17661061433759576, 0.14218573564867093, 0.08987701040681173, 0.03457747123630482, -0.003204443494979705, -0.019379253517258218, -0.01977599414044618, -0.026825769829401533, -0.03686635944700461, -0.04751731925412763, -0.06854457228308969, -0.09863582262642293, -0.10907315286721396, -0.09118930631427961, -0.05987731559190649, -0.04089480269783624, -0.027802362132633443, -0.0012207403790398877, 0.019928586687826166, 0.03353984191412091, 0.045991393780327766, 0.05304116946928312, 0.039155247657704395, 0.003784295175023652, -0.04174932096316416, -0.06418042542802209, -0.07870723593859676, -0.09738456373790703, -0.0945463423566393, -0.06189153721732231, -0.024414807580797754, 0.006134220404675436, 0.041688283944212166, 0.09256263924069949, 0.15134128849147008, 0.17764824365977966, 0.17035431989501632, 0.141087069307535, 0.09054841761528366, 0.034180730613116855, -0.009552293465987122, -0.03570665608691671, -0.04068117313150426, -0.04196295052949614, -0.048982207708975496, -0.059389019440290534, -0.0772118289742729, -0.10589922788171026, -0.12414929654835657, -0.11813715018158513, -0.09085360271004364, -0.06817835016937773, -0.052461317789239174, -0.029847102267525256, -0.0029602954191717277, 0.01858577227088229, 0.03216650898770104, 0.040711691640980256, 0.03933835871456038, 0.007965330973235268, -0.038331247901852473, -0.06381420331431013, -0.08127079073458052, -0.09662160100100711, -0.10266426587725455, -0.08178960539567248, -0.039735099337748346, -0.006073183385723441, 0.024201178014465773, 0.07354960783715324, 0.13641773735770746, 0.17682424390392773, 0.17563402203436385, 0.15668202764976957, 0.1184728537858211, 0.06457716605121006, 0.015533921323282572, -0.01901303140354625, -0.02990813928647725, -0.03137302774132512, -0.039826654866176335, -0.04879909665211951, -0.060365611743522445, -0.08432264168218025, -0.10663167210913418, -0.10638752403332621, -0.08444471572008423, -0.06152531510361034, -0.0467238380077517, -0.027985473189489424, -0.00021362956633198035, 0.022217474898525956, 0.032074953459273046, 0.039216284676656395, 0.04382457960753197, 0.023651844843897825, -0.02023377178258614, -0.058107242042298654, -0.0748924222540971, -0.09067049165318766, -0.10739463484603412, -0.09726248970000305, -0.06054872280037843, -0.02349925229651784, 0.00640888698995941, 0.04519791253395184, 0.10147404400769067, 0.15594958342234566, 0.16983550523392438, 0.15695669423505357, 0.1282692953276162, 0.07623523667104098, 0.02011169774468215, -0.02432325205236976, -0.04336680196539201, -0.0445875423444319, -0.04647968993194372, -0.052980132450331126, -0.06582842493972595, -0.09006012146366771, -0.11578722495193335, -0.12994781334879604, -0.11444441053498947, -0.08627582628864407, -0.07013153477584155, -0.05258339182714316, -0.026673177282021548, -0.004333628345591601, 0.009857478560747094, 0.020020142216254158, 0.024384289071321757, 0.014587847529526658, -0.020813623462630087, -0.05905331583605457, -0.08124027222510452, -0.09366130558183539, -0.10794396801660207, -0.10898159733878597, -0.07849360637226478, -0.036500137333292645, -0.00521866512039552, 0.029694509720145267, 0.08459730826746421, 0.14325388348033083, 0.17368083742790003, 0.17264320810571612, 0.1499984740745262, 0.10467848750267036, 0.05398724326303903, 0.001892147587511826, -0.025360881374553668, -0.030091250343333233, -0.033509323404644915, -0.04052858058412427, -0.04739524521622364, -0.060945463423566396, -0.09421063875240333, -0.11325418866542558, -0.10480056154057436, -0.07889034699545275, -0.059205908383434556, -0.04412976470229194, -0.01705984679708243, 0.007965330973235268, 0.023651844843897825, 0.032013916440321054, 0.04272591326639607, 0.03967406231879635, 0.007324442274239326, -0.03466902676473281, -0.06256294442579424, -0.0771202734458449, -0.09750663777581103, -0.10843226416821802, -0.08969389934995575, -0.05084383678701132, -0.01651051362651448, 0.01315347758415479, 0.05792413098544267, 0.11685537278359324, 0.1585131382183294, 0.16492202520828883, 0.1456953642384106, 0.11053804132206183, 0.05856501968443861, 0.006805627613147374, -0.029877620777001252, -0.04297006134220405, -0.040589617603076264, -0.0489211706900235, -0.05661183507797479, -0.07104709006012147, -0.09610278633991516, -0.12036500137333293, -0.12686544389172033, -0.11017181920834987, -0.08661152989288003, -0.07181005279702139, -0.052095095675527205, -0.024933622241889705, -0.0053102206488235115, 0.006500442518387402, 0.018890957365642263, 0.025055696279793694, 0.0024719992675557726, -0.03503524887844478, -0.07098605304116946, -0.08642841883602405, -0.10150456251716666, -0.11780144657734916, -0.10226752525406659, -0.06488235114597003, -0.02737510299996948, 0.0026551103244117557, 0.04016235847041231, 0.09967345194860683, 0.15796380504776147, 0.17468794824060793, 0.16336558122501296, 0.13678395947141941, 0.08658101138340403, 0.03509628589739677, -0.007477034821619312, -0.02426221503341777, -0.022675252540665915, -0.028656880397961364, -0.03521835993530076, -0.04199346903897214, -0.06414990691854609, -0.09506515701773126, -0.10623493148594623, -0.09143345439008758, -0.06942960905789361, -0.056672872096926785, -0.04159672841578417, -0.017090365306558428, 0.006530961027863399, 0.02151554918057802, 0.030945768608661155, 0.03900265511032441, 0.029847102267525256, -0.0050050355540635395, -0.04303109836115604, -0.06894131290627765, -0.08383434553056429, -0.097842341380047, -0.10168767357402264, -0.07538071840571306, -0.03732413708914457, -0.006561479537339396, 0.02838221381267739, 0.07959227271340068, 0.13544114505447555, 0.1663258766441847, 0.16119876705221717, 0.1378826258125553, 0.0989715262306589, 0.047639393292031616, -0.0011597033600878933, -0.026459547715689567, -0.03228858302560503, -0.037202063051240575, -0.041627246925260174, -0.04852443006683554, -0.06613361003448591, -0.09179967650379955, -0.11392559587389751, -0.10840174565874203, -0.08505508590960417, -0.06823938718832973, -0.05398724326303903, -0.028839991454817346, -0.0038453321939756462, 0.011078218939786982, 0.02478102969450972, 0.03518784142582476, 0.033661915952024904, 0.007507553331095309, -0.03033539841914121, -0.059205908383434556, -0.07345805230872524, -0.09311197241126744, -0.1042207098605304, -0.08523819696646016, -0.045075838496047856, -0.008636738181707206, 0.02099673451948607, 0.06552323984496597, 0.1250648518326365, 0.16891994994964446, 0.17200231940672017, 0.1587878048036134, 0.12439344462416456, 0.07333597827082125, 0.01867732779931028, -0.017212439344462416, -0.02328562273018586, -0.025849177526169623, -0.032990508743552964, -0.03668324839014862, -0.04727317117831965, -0.07153538621173743, -0.09772026734214301, -0.10287789544358654, -0.08310190130314035, -0.06341746269112217, -0.047944578386791586, -0.028901028473769342, -0.003936887722403638, 0.012665181432538836, 0.023834955900753806, 0.03735465559862056, 0.03967406231879635, 0.02023377178258614, -0.016296884060182502, -0.04925687429425947, -0.065248573259682, -0.08359019745475631, -0.09689626758629108, -0.09039582506790368, -0.05844294564653462, -0.023071993163853877, 0.008545182653279214, 0.048982207708975496, 0.10458693197424238, 0.15717032380138554, 0.1728568376720481, 0.16254158146916103, 0.13492233039338358, 0.0890530106509598, 0.03518784142582476, -0.005035554063539537, -0.02511673329874569, -0.026184881130405593, -0.03164769432660909, -0.0369273964659566, -0.046143986327707755, -0.06460768456068605, -0.09051789910580767, -0.10403759880367443, -0.09012115848261971, -0.07016205328531755, -0.055024872585222935, -0.043122653889584035, -0.016479995117038484, 0.005096591082491531, 0.017273476363414413, 0.032654805139317, 0.043061616870632036, 0.03250221259193701, -3.051850947599719e-05, -0.037873470259712515, -0.06430249946592609, -0.08172856837672048, -0.09961241492965484, -0.10153508102664266, -0.0738242744224372, -0.03570665608691671, -0.0019531846064638203, 0.031189916684469132, 0.08398693807794427, 0.14325388348033083, 0.17462691122165594, 0.17615283669545578, 0.15512558366649373, 0.11618396557512131, 0.06488235114597003, 0.017090365306558428, -0.010376293221839045, -0.015411847285378583, -0.021301919614246042, -0.02465895565660573, -0.028870509964293346, -0.04425183874019593, -0.07147434919278542, -0.09173863948484756, -0.08679464094973602, -0.06643879512924589, -0.05191198461867123, -0.037202063051240575, -0.013794366283150731, 0.007324442274239326, 0.02334665974913785, 0.032624286629841, 0.04446546830652791, 0.041932432020020144, 0.017670216986602375, -0.02023377178258614, -0.05255287331766716, -0.06485183263649404, -0.08288827173680838, -0.09335612048707541, -0.07803582873012482, -0.04379406109805597, -0.009430219428083133, 0.019287697988830226, 0.06668294320505387, 0.12469862971892452, 0.1650746177556688, 0.17508468886379588, 0.16376232184820094, 0.12790307321390423, 0.08075197607348857, 0.0304269539475692, -0.008117923520615253, -0.016907254249702446, -0.023194067201757866, -0.029175695059053316, -0.03183080538346507, -0.04397717215491195, -0.0696737571337016, -0.09057893612475967, -0.09619434186834315, -0.08139286477248452, -0.06250190740684225, -0.050721762749107335, -0.030518509475997192, -0.005096591082491531, 0.01370281075472274, 0.03195287942136906, 0.04190191351054415, 0.041779839472640155, 0.028412732322153387, -0.008087405011139257, -0.04119998779259621, -0.0598162785729545, -0.07727286599322489, -0.09421063875240333, -0.08413953062532425, -0.053285317545091096, -0.01730399487289041, 0.015625476851710562, 0.05676442762535478, 0.11621448408459731, 0.16916409802545243, 0.1882381664479507, 0.18182927945799127, 0.1542405468916898, 0.11236915189062166, 0.06323435163426619, 0.0173650318918424, -0.0004577776421399579, -0.004181035798211615, -0.007263405255287332, -0.0075380718405713065, -0.015259254737998596, -0.03881954405346843, -0.062318796349986265, -0.0782799768059328, -0.06927701651051363, -0.050141911069063384, -0.03762932218390454, -0.02237006744590594, -0.0007324442274239326, 0.020386364329966124, 0.0347300637836848, 0.05142368846705527, 0.05475020599993896, 0.04531998657185583, 0.013824884792626729, -0.02587969603564562, -0.04882961516159551, -0.06332590716269418, -0.08224738303781243, -0.08890041810357982, -0.06909390545365765, -0.032532731101413005, 0.0009765923032319102, 0.03277687917722098, 0.08508560441908017, 0.14102603228858301, 0.17102572710348826, 0.17233802301095613, 0.15683462019714958, 0.11645863216040529, 0.06762901699880979, 0.018311105685598315, -0.00772118289742729, -0.01336710715048677, -0.019074068422498244, -0.02328562273018586, -0.027649769585253458, -0.042909024323252054, -0.06878872035889767, -0.09018219550157171, -0.08883938108462783, -0.06988738670003357, -0.059907834101382486, -0.04477065340128788, -0.023316141239661855, 0.002349925229651784, 0.019287697988830226, 0.03204443494979705, 0.046510208441419724, 0.044404431287575916, 0.015930661946470536, -0.018738364818262278, -0.045686208685567796, -0.061555833613086336, -0.0793176061281167, -0.08880886257515183, -0.0728476821192053, -0.03976561784722434, -0.0024719992675557726, 0.02694784386730552, 0.06973479415265359, 0.12750633259071628, 0.17352824488052004, 0.1815546128727073, 0.16928617206335642, 0.1389812921536912, 0.09585863826410718, 0.04754783776360363, 0.009033478804895169, -0.002990813928647725, -0.0059511093478194525, -0.011291848506118961, -0.014831995605334635, -0.023865474410229806, -0.049439985351115455, -0.07242042298654133, -0.07867671742912076, -0.06591998046815394, -0.046357615894039736, -0.03707998901333659, -0.02218695638904996, 0.00521866512039552, 0.02414014099551378, 0.03790398876918851, 0.05008087405011139, 0.05514694662312693, 0.03500473036896878, -0.0016785180211798456, -0.031006805627613147, -0.046510208441419724, -0.06689657277138585, -0.08548234504226813, -0.0782189397869808, -0.0511490218817713, -0.014862514114810634, 0.013580736716818751, 0.05160679952391125, 0.10812707907345805, 0.16235847041230506, 0.17966246528519547, 0.1728873561815241, 0.14813684499649038, 0.10559404278695028, 0.0576189458906827, 0.012848292489394819, -0.006042664876247444, -0.013183996093630787, -0.01608325449385052, -0.017883846552934356, -0.02139347514267403, -0.040131839960936305, -0.06939909054841761, -0.08731345561082797, -0.07632679219946897, -0.05883968626972259, -0.05026398510696738, -0.03347880489516892, -0.012359996337778864, 0.007477034821619312, 0.021301919614246042, 0.03497421185949278, 0.04434339426862392, 0.037110507522812586, 0.005829035309915464, -0.032380138554033024, -0.051698355052339245, -0.06915494247260964, -0.0890530106509598, -0.08987701040681173, -0.07202368236335338, -0.03573717459639271, -0.0023194067201757866, 0.03189184240241707, 0.08301034577471236, 0.13858455153050325, 0.17236854152043216, 0.17471846675008393, 0.1585436567278054, 0.12421033356730857, 0.07959227271340068, 0.032135990478225046, 0.0011902218695638905, -0.00772118289742729, -0.01022370067445906, -0.014618366039002656, -0.015015106662190619, -0.02523880733664968, -0.05053865169225135, -0.07150486770226142, -0.07168797875911741, -0.05407879879146703, -0.042664876247444077, -0.029206213568529312, -0.009216589861751152, 0.014709921567430647, 0.029816583758049256, 0.043519394512771994, 0.05243079927976318, 0.04724265266884366, 0.02435377056184576, -0.012787255470442824, -0.03799554429761651, -0.05475020599993896, -0.07467879268776513, -0.08410901211584826, -0.06793420209356975, -0.04107791375469222, -0.006164738914151433, 0.026581621753593555, 0.0686056093020417, 0.12561418500320445, 0.1673024689474166, 0.17511520737327188, 0.16217535935544908, 0.13010040589617602, 0.08343760490737633, 0.03573717459639271, -0.0025025177770317698, -0.01281777397991882, -0.01834162419507431, -0.021454512161626027, -0.022095400860621967, -0.02945036164433729, -0.056001464888454845, -0.08185064241462447, -0.09189123203222754, -0.0794396801660207, -0.061555833613086336, -0.055085909604174935, -0.038758507034516436, -0.015289773247474594, 0.008087405011139257, 0.021118808557390057, 0.03234962004455703, 0.03750724814600055, 0.019074068422498244, -0.014587847529526658, -0.047578356273079624, -0.06448561052278207, -0.08053834650715659, -0.09726248970000305, -0.09207434308908354, -0.06326487014374219, -0.02948088015381329, 0.0014648884548478652, 0.04272591326639607, 0.10065004425183874, 0.15170751060518203, 0.17099520859401227, 0.1675466170232246, 0.1445661793877987, 0.10632648701437422, 0.05566576128421888, 0.01217688528092288, -0.0067445905941953795, -0.014282662434766686, -0.01803643910031434, -0.017426068910794398, -0.01892147587511826, -0.036500137333292645, -0.06387524033326213, -0.08142338328196051, -0.07571642200994903, -0.061342204046754355, -0.04989776299325541, -0.036805322428052616, -0.014801477095858639, 0.006378368480483413, 0.018524735251930297, 0.03030487990966521, 0.041688283944212166, 0.03360087893307291, 0.001098666341135899, -0.037659840693380534, -0.062379833368938264, -0.07452620014038515, -0.09439374980925931, -0.10153508102664266, -0.08130130924405653, -0.04736472670674764, -0.013794366283150731, 0.01837214270455031, 0.07049775688955351, 0.12765892513809626, 0.15720084231086154, 0.15942869350260933, 0.14526810510574664, 0.10943937498092593, 0.06219672231208228, 0.014648884548478652, -0.013489181188390759, -0.019714957121494188, -0.027039399395733514, -0.02749717703787347, -0.027893917661061435, -0.04153569139683218, -0.06622516556291391, -0.0902737510299997, -0.09433271279030732, -0.07956175420392468, -0.06790368358409375, -0.05563524277474288, -0.0347911008026368, -0.010650959807123021, 0.0038453321939756462, 0.016266365550706503, 0.031556138798181095, 0.03250221259193701, 0.007477034821619312, -0.03280739768669698, -0.05520798364207892, -0.07003997924741355, -0.08749656666768395, -0.0956755272072512, -0.08627582628864407, -0.05679494613483078, -0.023255104220709862, 0.010010071108127079, 0.05389568773461104, 0.11218604083376568, 0.1587878048036134, 0.1684316537980285, 0.15515610217596973, 0.12680440687276834, 0.08679464094973602, 0.038178655354472485, 0.0022888882106997894, -0.008056886501663259, -0.013397625659962768, -0.016052735984374525, -0.016815698721274454, -0.018707846308786278, -0.039216284676656395, -0.06698812829981383, -0.0727866451002533, -0.06204412976470229, -0.05243079927976318, -0.04474013489181188, -0.029175695059053316, -0.009491256447035128, 0.009613330484939116, 0.024292733542893765, 0.03857539597766045, 0.042451246681112095, 0.02639851069673757, -0.010101626636555072, -0.04632709738456374, -0.0642414624469741, -0.08136234626300852, -0.09915463728751488, -0.09320352793969543, -0.06854457228308969, -0.03866695150608844, -0.008667256691183203, 0.028656880397961364, 0.08581804864650411, 0.1348612933744316, 0.1585436567278054, 0.1542710654011658, 0.13211462752159184, 0.09225745414593951, 0.045533616138187814, 0.002075258644367809, -0.019287697988830226, -0.02557451094088565, -0.0314951017792291, -0.03088473158970916, -0.032532731101413005, -0.049439985351115455, -0.07919553209021271, -0.09475997192297128, -0.08825952940458388, -0.07165746024964141, -0.06506546220282601, -0.05319376201666311, -0.031128879665517136, -0.014496292001098667, -0.0037232581560716575, 0.009216589861751152, 0.022736289559617907, 0.014221625415814692, -0.01654103213599048, -0.05099642933439131, -0.0739768669698172, -0.0890224921414838, -0.10831019013031404, -0.10998870815149388, -0.0881679738761559, -0.06048768578142644, -0.031464583269753106, 0.003021332438123722, 0.05923642689291055, 0.11438337351603747, 0.1444746238593707, 0.152317880794702, 0.1326639606921598, 0.09939878536332286, 0.060060426648762474, 0.013061922055726798, -0.01620532853175451, -0.026917325357829525, -0.03360087893307291, -0.03076265755180517, -0.029053621021149327, -0.03866695150608844, -0.061403241065706354, -0.08392590105899228, -0.08343760490737633, -0.07025360881374554, -0.06256294442579424, -0.05291909543137913, -0.03271584215826899, -0.01120029297769097, 0.004272591326639607, 0.01672414319284646, 0.02804651020844142, 0.028199102755821406, 0.0053102206488235115, -0.029297769096957305, -0.057435834833826714, -0.07242042298654133, -0.09186071352275155, -0.10345774712363048, -0.09390545365764336, -0.06884975737784967, -0.036500137333292645, -0.008026367992187262, 0.038178655354472485, 0.09729300820947905, 0.13644825586718345, 0.14966277047029022, 0.14084292123172704, 0.11166722617267373, 0.07333597827082125, 0.024933622241889705, -0.011688589129306926, -0.027039399395733514, -0.035828730124820705, -0.041383098849452196, -0.03790398876918851, -0.04251228370006409, -0.06274605548265023, -0.08441419721060824, -0.09768974883266701, -0.0836817529831843, -0.07211523789178137, -0.0662862025818659, -0.05243079927976318, -0.029602954191717278, -0.012054811243018892, 0.0007019257179479354, 0.014770958586382641, 0.023316141239661855, 0.006256294442579424, -0.0315256202887051, -0.05951109347819453, -0.07229834894863735, -0.08807641834772789, -0.10357982116153447, -0.10031434064760276, -0.08066042054506058, -0.04870754112369152, -0.018829920346690267, 0.02240058595538194, 0.08053834650715659, 0.13248084963530382, 0.15524765770439772, 0.15509506515701774, 0.13226722006897182, 0.09762871181371502, 0.053437910092471085, 0.012024292733542894, -0.003784295175023652, -0.013550218207342753, -0.01748710592974639, -0.016479995117038484, -0.016022217474898525, -0.03164769432660909, -0.058107242042298654, -0.07626575518051698, -0.06985686819055757, -0.05807672353282266, -0.05563524277474288, -0.04586931974242378, -0.024201178014465773, -0.005584887234107486, 0.00784325693533128, 0.021057771538438064, 0.02859584337900937, 0.02401806695760979, -0.007263405255287332, -0.04205450605792413, -0.06164738914151433, -0.0781884212775048, -0.09878841517380291, -0.10153508102664266, -0.08627582628864407, -0.0576189458906827, -0.02490310373241371, 0.007110812707907346, 0.05536057618945891, 0.11426129947813349, 0.15042573320719016, 0.15393536179692985, 0.13757744071779535, 0.10776085695974609, 0.06720175786614582, 0.019837031159398177, -0.007446516312143315, -0.019959105197302165, -0.029297769096957305, -0.03180028687398907, -0.03012176885280923, -0.034943693350016784, -0.056459242530594804, -0.08175908688619647, -0.08105716116824854, -0.06808679464094973, -0.06149479659413434, -0.04992828150273141, -0.03421124912259285, -0.017334513382366405, -0.005767998290963469, 0.009949034089175085, 0.02206488235114597, 0.02523880733664968, 0.0019531846064638203, -0.03830072939237648, -0.06048768578142644, -0.07428205206457716, -0.09002960295419171, -0.1032135990478225, -0.09399700918607136, -0.06326487014374219, -0.030610065004425185, -0.0035706656086916715, 0.044709616382335886, 0.10516678365428632, 0.1434675130466628, 0.15894039735099338, 0.14822840052491837, 0.1218604083376568, 0.08551286355174413, 0.04098635822626423, 0.006866664632099368, -0.010071108127079073, -0.019745475630970184, -0.021485030671102023, -0.019714957121494188, -0.02252265999328593, -0.04263435773796808, -0.06604205450605792, -0.07147434919278542, -0.06442457350383007, -0.05572679830317087, -0.05047761467329936, -0.03769035920285653, -0.018402661214026308, -0.0010376293221839045, 0.01077303384502701, 0.024414807580797754, 0.03665272988067263, 0.022888882106997896, -0.012787255470442824, -0.04434339426862392, -0.06726279488509782, -0.08386486404004029, -0.09875789666432691, -0.09918515579699087, -0.07794427320169683, -0.0478225043488876, -0.014404736472670675, 0.02575762199774163, 0.08310190130314035, 0.1347392193365276, 0.1554002502517777, 0.15460676900540177, 0.13303018280587176, 0.09961241492965484, 0.053437910092471085, 0.011017181920834987, -0.00784325693533128, -0.017761772515030368, -0.02346873378704184, -0.023529770805993836, -0.022858363597521896, -0.03186132389294107, -0.05337687307351909, -0.07013153477584155, -0.06765953550828578, -0.05716116824854274, -0.05026398510696738, -0.039735099337748346, -0.02154606769005402, -0.006134220404675436, 0.007995849482711264, 0.02346873378704184, 0.03732413708914457, 0.032990508743552964, 0.001586962492751854, -0.036500137333292645, -0.055391094698934905, -0.06851405377361369, -0.08899197363200781, -0.09173863948484756, -0.07596057008575702, -0.04705954161198767, -0.015350810266426589, 0.018311105685598315, 0.06878872035889767, 0.12466811120944853, 0.1586962492751854, 0.163060396130253, 0.14856410412915433, 0.12341685232093265, 0.08349864192632832, 0.04144413586840419, 0.011810663167210914, -0.0026245918149357585, -0.010254219183935057, -0.012878810998870815, -0.007019257179479354, -0.012482070375682853, -0.032654805139317, -0.055391094698934905, -0.056215094454786826, -0.043488876003296, -0.03497421185949278, -0.02642902920621357, -0.012787255470442824, 0.006225775933103427, 0.019867549668874173, 0.03219702749717704, 0.04464857936338389, 0.04745628223517563, 0.026154362620929593, -0.009918515579699088, -0.03683584093752861, -0.052369762260811185, -0.0706503494369335, -0.0836207159642323, -0.07550279244361706, -0.055604724265266886, -0.024872585222937713, 0.00424207281716361, 0.0500198370311594, 0.10806604205450605, 0.14584795678579057, 0.16565446943571277, 0.15701773125400556, 0.13000885036774804, 0.09402752769554736, 0.04724265266884366, 0.015472884304330577, -0.0031128879665517136, -0.014130069887386701, -0.01696829126865444, -0.015594958342234566, -0.016876735740226446, -0.03216650898770104, -0.05496383556627094, -0.06747642445142979, -0.059205908383434556, -0.05063020722067934, -0.04431287575914793, -0.03405865657521287, -0.015167699209570605, -0.0004272591326639607, 0.009155552842799158, 0.024292733542893765, 0.03332621234778894, 0.023834955900753806, -0.013550218207342753, -0.04577776421399579, -0.061708426160466325, -0.07855464339121677, -0.09579760124515518, -0.09433271279030732, -0.07153538621173743, -0.04361095004119999, -0.01763969847712638, 0.020722067934202094, 0.07904293954283273, 0.13202307199316385, 0.15829950865199743, 0.15790276802880948, 0.1379741813409833, 0.1054719687490463, 0.060274056215094456, 0.019653920102542192, 0.0012512588885158849, -0.0073854792931913205, -0.010467848750267038, -0.010162663655507066, -0.00445570238349559, -0.01132236701559496, -0.032074953459273046, -0.05008087405011139, -0.04870754112369152, -0.03988769188512833, -0.03790398876918851, -0.028534806360057376, -0.01174962614825892, 0.0059511093478194525, 0.019318216498306222, 0.032654805139317, 0.040589617603076264, 0.03872798852504044, 0.007751701406903287, -0.027466658528397473, -0.048768578142643515, -0.06820886867885373, -0.0848414563432722, -0.09363078707235939, -0.0772118289742729, -0.050050355540635395, -0.024414807580797754, 0.008667256691183203, 0.060579241309854426, 0.11896114993743706, 0.15274513992736594, 0.15942869350260933, 0.14484084597308267, 0.11600085451826533, 0.07812738425855281, 0.036591692861720634, 0.009765923032319102, -0.004760887478255562, -0.016785180211798457, -0.021057771538438064, -0.016266365550706503, -0.020081179235206154, -0.039521469771416365, -0.05633716849269082, -0.05957213049714652, -0.05233924375133518, -0.04519791253395184, -0.03994872890408033, -0.02185125278481399, -0.0024414807580797754, 0.008880886257515184, 0.01947080904568621, 0.03180028687398907, 0.038453321939756466, 0.0173955504013184, -0.021576586199530016, -0.05008087405011139, -0.06680501724295786, -0.08203375347148045, -0.08981597338785974, -0.08505508590960417, -0.061799981688894313, -0.031556138798181095, -0.003204443494979705, 0.043427838984344005, 0.10025330362865077, 0.14835047456282235, 0.16821802423169652, 0.1584826197088534, 0.13519699697866755, 0.09533982360301523, 0.04950102237006745, 0.017273476363414413, 6.103701895199438e-05, -0.009277626880703146, -0.01608325449385052, -0.012451551866206854, -0.008575701162755212, -0.024933622241889705, -0.04684591204565569, -0.05578783532212287, -0.04843287453840754, -0.040192876979888305, -0.03674428540910062, -0.024079103976561784, -0.007751701406903287, 0.005554368724631489, 0.016815698721274454, 0.034089175084688866, 0.04153569139683218, 0.026795251319925537, -0.008789330729087191, -0.03897213660084842, -0.054109317300943024, -0.07202368236335338, -0.08841212195196387, -0.08978545487838374, -0.06936857203894162, -0.044038209173863946, -0.01599169896542253, 0.02554399243140965, 0.0793481246375927, 0.13040559099093602, 0.16119876705221717, 0.1605883968626972, 0.1446272164067507, 0.11157567064424574, 0.06659138767662587, 0.030671102023377177, 0.008239997558519242, -0.00347911008026368, -0.010071108127079073, -0.008545182653279214, -0.003357036042359691, -0.00717184972685934, -0.028717917416913357, -0.04354991302224799, -0.045472579119235815, -0.03540147099215674, -0.031128879665517136, -0.02490310373241371, -0.009308145390179145, 0.0024719992675557726, 0.009552293465987122, 0.022766808069093907, 0.0390942106387524, 0.03540147099215674, 0.006836146122623371, -0.032563249610889, -0.0510879848628193, -0.06826990569780572, -0.08719138157292398, -0.09082308420056764, -0.07763908810693686, -0.05059968871120334, -0.024628437147129735, 0.007354960783715323, 0.06131168553727836, 0.11844233527634511, 0.15598010193182166, 0.16318247016815698, 0.15210425122837, 0.12472914822840052, 0.08130130924405653, 0.03729361857966857, 0.008178960539567248, -0.0073854792931913205, -0.01565599536118656, -0.018890957365642263, -0.01586962492751854, -0.015778069399090548, -0.030396435438093204, -0.04443494979705191, -0.05038605914487136, -0.04446546830652791, -0.040955839716788234, -0.03360087893307291, -0.019165623950926237, -0.006622516556291391, 0.002044740134891812, 0.014160588396862697, 0.028443250831629383, 0.03241065706350902, 0.011871700186162909, -0.022247993408001952, -0.049226355784783474, -0.06772057252723777, -0.08243049409466842, -0.09540086062196722, -0.09063997314371167, -0.06863612781151769, -0.04391613513595996, -0.014221625415814692, 0.03314310129093295, 0.08664204840235602, 0.13678395947141941, 0.15787224951933349, 0.14496292001098665, 0.11886959440900906, 0.08005005035554064, 0.037659840693380534, 0.007415997802667318, -0.010925626392406995, -0.024842066713461716, -0.03033539841914121, -0.026795251319925537, -0.024384289071321757, -0.03811761833552049, -0.058992278817102575, -0.06363109225745414, -0.06109805597094638, -0.053437910092471085, -0.048005615405743586, -0.03848384044923246, -0.023010956144901885, -0.010162663655507066, 0.0004882961516159551, 0.018738364818262278, 0.03308206427198096, 0.01782280953398236, -0.015289773247474594, -0.04797509689626759, -0.06433301797540208, -0.08017212439344462, -0.09509567552720725, -0.09396649067659535, -0.07080294198431349, -0.039613025299844354, -0.014313180944242684, 0.020325327311014132, 0.0740379039887692, 0.12967314676351208, 0.1585436567278054, 0.16217535935544908, 0.14230780968657492, 0.1119418927579577, 0.0684530167546617, 0.029419843134861293, 0.011658070619830927, -0.0033875545518356883, -0.012115848261970886, -0.011627552110354931, -0.007873775444807276, -0.01132236701559496, -0.027588732566301462, -0.0423291726432081, -0.04104739524521622, -0.03210547196874905, -0.02948088015381329, -0.024811548203985716, -0.010925626392406995, 0.004547257911923582, 0.016144291512802514, 0.026062807092501604, 0.03946043275246437, 0.04153569139683218, 0.013550218207342753, -0.02252265999328593, -0.045075838496047856, -0.06259346293527024, -0.07968382824182867, -0.08850367748039185, -0.07727286599322489, -0.051698355052339245, -0.026642658772545548, 0.0057985168004394665, 0.055391094698934905, 0.1120639667958617, 0.1512192144535661, 0.16168706320383314, 0.1480758079775384, 0.119602038636433, 0.076082644123661, 0.03012176885280923, 0.006622516556291391, -0.005554368724631489, -0.015839106418042544, -0.0173650318918424, -0.01229895931882687, -0.008728293710135197, -0.020630512405774102, -0.04199346903897214, -0.0467848750267037, -0.037263100070192574, -0.03219702749717704, -0.027954954680013428, -0.018005920590838345, -0.0037232581560716575, 0.009033478804895169, 0.021057771538438064, 0.03610339671010468, 0.04345835749382, 0.026062807092501604, -0.012146366771446883, -0.039613025299844354, -0.05581835383159887, -0.07077242347483749, -0.0782189397869808, -0.07321390423291727, -0.05127109591967528, -0.025055696279793694, 0.005035554063539537, 0.04870754112369152, 0.10779137546922209, 0.15588854640339367, 0.17419965208899196, 0.16870632038331249, 0.14526810510574664, 0.10687582018494217, 0.06591998046815394, 0.03421124912259285, 0.01663258766441847, 0.004943998535111545, -0.001434369945371868, 0.0036927396465956603, 0.009613330484939116, -0.000793481246375927, -0.016693624683370465, -0.02652058473464156, -0.01892147587511826, -0.010711996826075015, -0.012421033356730858, -0.004730368968779565, 0.008880886257515184, 0.020935697500534076, 0.02859584337900937, 0.04364146855067599, 0.054506057924130984, 0.043427838984344005, 0.009125034333323161, -0.022278511917477952, -0.04300057985168004, -0.06164738914151433, -0.07724234748374889, -0.07910397656178472, -0.05880916776024659, -0.03302102725302896, -0.005462813196203497, 0.03189184240241707, 0.08603167821283608, 0.1369975890377514, 0.16605121005890072, 0.17294839320047609, 0.15665150914029358, 0.12207403790398877, 0.07556382946256905, 0.036225470748008665, 0.013092440565202796, 0.0029297769096957305, -0.004150517288735618, -0.006256294442579424, 0.0021668141727958007, -0.0021362956633198035, -0.018311105685598315, -0.03122043519394513, -0.03204443494979705, -0.027008880886257514, -0.024811548203985716, -0.01730399487289041, -0.000640888698995941, 0.013489181188390759, 0.025086214789269694, 0.034272286141544844, 0.04611346781823176, 0.04834131900997955, 0.021759697256385997, -0.01425214392529069, -0.040406506546220286, -0.06051820429090243, -0.07876827295754875, -0.08511612292855616, -0.07110812707907346, -0.04727317117831965, -0.0239265114291818, 0.009979552598651083, 0.05856501968443861, 0.11822870571001312, 0.16272469252601704, 0.17130039368877223, 0.16278572954496903, 0.13492233039338358, 0.09063997314371167, 0.052674947355571156, 0.02694784386730552, 0.011780144657734916, 0.00027466658528397473, -0.006561479537339396, 0.0023194067201757866, 0.005066072573015534, -0.008026367992187262, -0.02154606769005402, -0.026703695791497544, -0.021607104709006012, -0.018829920346690267, -0.011871700186162909, 0.000946073793755913, 0.00933866389965514, 0.0206610309152501, 0.032135990478225046, 0.04654072695089572, 0.05554368724631489, 0.036225470748008665, 0.0008850367748039186, -0.026062807092501604, -0.04412976470229194, -0.06454664754173406, -0.0771507919553209, -0.07007049775688956, -0.04574724570451979, -0.02380443739127781, -0.0019226660969878231, 0.043885616626483964, 0.10153508102664266, 0.1498458815271462, 0.17011017181920834, 0.16556291390728478, 0.14081240272225104, 0.09863582262642293, 0.05813776055177465, 0.024750511185033724, 0.005401776177251503, -0.005829035309915464, -0.012146366771446883, -0.008392590105899229, -0.006225775933103427, -0.01229895931882687, -0.02835169530320139, -0.038544877468184455, -0.031708731345561084, -0.026673177282021548, -0.02401806695760979, -0.018250068666646323, -0.003509628589739677, 0.005035554063539537, 0.01532029175695059, 0.031342509231849114, 0.041108432264168215, 0.032654805139317, -0.0015259254737998596, -0.031769768364513076, -0.05499435407574694, -0.07443464461195715, -0.09170812097537157, -0.09427167577135533, -0.0749229407635731, -0.04760887478255562, -0.024750511185033724, 0.010681478316599017, 0.06704916531876583, 0.1228675191503647, 0.15610217596972564, 0.1565294351023896, 0.14069032868434705, 0.10763878292184209, 0.06347849971007416, 0.026978362376781518, 0.006714072084719382, -0.004791405987731559, -0.016022217474898525, -0.01666310617389447, -0.011810663167210914, -0.013489181188390759, -0.026581621753593555, -0.0380565813165685, -0.034333323160496844, -0.031128879665517136, -0.03122043519394513, -0.02349925229651784, -0.010071108127079073, 0.0030518509475997192, 0.011291848506118961, 0.022888882106997896, 0.038544877468184455, 0.036225470748008665, 0.011261329996642965, -0.02252265999328593, -0.046967986083559676, -0.06759849848933377, -0.08679464094973602, -0.09646900845362713, -0.08423108615375226, -0.0609149449140904, -0.03714102603228858, -0.004119998779259621, 0.04315317239906003, 0.10254219183935057, 0.14407788323618276, 0.1553086947233497, 0.14487136448255866, 0.11557359538560137, 0.06909390545365765, 0.029389324625385297, -0.000640888698995941, -0.015808587908566547, -0.023957029938657795, -0.02639851069673757, -0.020203253273110143, -0.018189031647694327, -0.030213324381237222, -0.045686208685567796, -0.04864650410473952, -0.042085024567400126, -0.03881954405346843, -0.03598132267220069, -0.023102511673329874, -0.008056886501663259, 0.005767998290963469, 0.009552293465987122, 0.0239265114291818, 0.032990508743552964, 0.014526810510574664, -0.018127994628742334, -0.04709006012146367, -0.06567583239234596, -0.08496353038117618, -0.09967345194860683, -0.09219641712698752, -0.06878872035889767, -0.047334208197271646, -0.018738364818262278, 0.02237006744590594, 0.07663197729422895, 0.130588702047792, 0.15463728751487776, 0.1498764000366222, 0.1294289986877041, 0.09137241737113559, 0.04754783776360363, 0.016022217474898525, 0.004058961760307627, -0.007049775688955351, -0.014770958586382641, -0.011597033600878933, -0.005035554063539537, -0.009765923032319102, -0.030823694570757166, -0.0402539139988403, -0.035309915463728754, -0.028565324869533372, -0.025391399884029664, -0.01782280953398236, -0.005401776177251503, 0.00598162785729545, 0.017456587420270394, 0.032990508743552964, 0.044709616382335886, 0.035523545030060735, 0.0028077028717917417, -0.029084139530625323, -0.050050355540635395, -0.07003997924741355, -0.08847315897091586, -0.08832056642353588, -0.06857509079256568, -0.046815393536179695, -0.025208288827173683, 0.010315256202887051, 0.06588946195867794, 0.11886959440900906, 0.15204321420941802, 0.15607165746024965, 0.14154484694967498, 0.10892056031983398, 0.06613361003448591, 0.028656880397961364, 0.004181035798211615, -0.005188146610919523, -0.015717032380138555, -0.01925717947935423, -0.014007995849482712, -0.014770958586382641, -0.027954954680013428, -0.04083376567888424, -0.0391857661671804, -0.035157322916348765, -0.035920285653248694, -0.030152287362285226, -0.019928586687826166, -0.009613330484939116, 0.002685628833887753, 0.015015106662190619, 0.029938657795953245, 0.03128147221289712, 0.004119998779259621, -0.027100436414685507, -0.05185094759971923, -0.07123020111697745, -0.08679464094973602, -0.09250160222174748, -0.07730338450270088, -0.05737479781487472, -0.03735465559862056, -0.006775109103671377, 0.039307840205084384, 0.097933896908475, 0.14175847651600695, 0.15472884304330575, 0.14548173467207862, 0.11688589129306924, 0.07654042176580096, 0.040406506546220286, 0.013306070131534776, -0.004181035798211615, -0.015137180700094607, -0.018829920346690267, -0.013000885036774804, -0.00793481246375927, -0.014587847529526658, -0.02661214026306955, -0.026642658772545548, -0.014221625415814692, -0.011566515091402937, -0.009033478804895169, 0.002349925229651784, 0.015106662190618611, 0.023071993163853877, 0.03137302774132512, 0.04278695028534806, 0.05258339182714316, 0.03601184118167669, -0.0011291848506118961, -0.028962065492721335, -0.05261391033661916, -0.07113864558854946, -0.08771019623401594, -0.08005005035554064, -0.055391094698934905, -0.033661915952024904, -0.006317331461531419, 0.033967101046784874, 0.08731345561082797, 0.13653981139561144, 0.16364024781029696, 0.16119876705221717, 0.13769951475569933, 0.09588915677358317, 0.05301065095980712, 0.01934873500778222, 0.0008545182653279214, -0.009033478804895169, -0.016785180211798457, -0.015503402813806574, -0.011444441053498948, -0.014831995605334635, -0.027161473433637503, -0.03430280465102085, -0.028992584002197334, -0.02523880733664968, -0.025208288827173683, -0.016449476607562488, -0.004852443006683554, 0.0027466658528397473, 0.009979552598651083, 0.023438215277565844, 0.03735465559862056, 0.02893154698324534, -0.002227851191747795, -0.03375347148045289, -0.05499435407574694, -0.07419049653614918, -0.0923184911648915, -0.09149449140903958, -0.0738853114413892, -0.04797509689626759, -0.02401806695760979, 0.009002960295419173, 0.06326487014374219, 0.12021240882595294, 0.1532639545884579, 0.16022217474898526, 0.14362010559404279, 0.11078218939786981, 0.07007049775688956, 0.033967101046784874, 0.01327555162205878, 0.00021362956633198035, -0.00619525742362743, -0.009491256447035128, -0.0011291848506118961, -0.003997924741355632, -0.01892147587511826, -0.024811548203985716, -0.02023377178258614, -0.018127994628742334, -0.017883846552934356, -0.012634662923062838, -0.0007324442274239326, 0.01229895931882687, 0.018738364818262278, 0.030854213080233162, 0.04684591204565569, 0.046449171422467725, 0.02121036408581805, -0.012878810998870815, -0.04098635822626423, -0.06280709250160223, -0.08456678975798822, -0.09533982360301523, -0.08359019745475631, -0.05951109347819453, -0.038544877468184455, -0.010711996826075015, 0.03457747123630482, 0.0912503433332316, 0.13092440565202795, 0.1467635120700705, 0.1435895870845668, 0.11123996704000977, 0.06991790520950956, 0.030610065004425185, 0.0033875545518356883, -0.012665181432538836, -0.02185125278481399, -0.029847102267525256, -0.02630695516830958, -0.024231696523941772, -0.03302102725302896, -0.04428235724967192, -0.04559465315713981, -0.03820917386394849, -0.037415692617572556, -0.03158665730765709, -0.025605029450361645, -0.012512588885158849, 0.0005798516800439467, 0.010010071108127079, 0.025940733054597615, 0.03286843470564898, 0.015930661946470536, -0.016449476607562488, -0.04220709860530412, -0.06579790643024995, -0.08691671498764, -0.09869685964537492, -0.09183019501327555, -0.07315286721396527, -0.052461317789239174, -0.02511673329874569, 0.014435254982146673, 0.06884975737784967, 0.12070070497756889, 0.14859462263863032, 0.14725180822168646, 0.1292458876308481, 0.09396649067659535, 0.047029023102511676, 0.01696829126865444, 0.002075258644367809, -0.011780144657734916, -0.020722067934202094, -0.01861629078035829, -0.009216589861751152, -0.01391644032105472, -0.02630695516830958, -0.03225806451612903, -0.02838221381267739, -0.02349925229651784, -0.021485030671102023, -0.013824884792626729, -0.0026245918149357585, 0.012756736960966826, 0.013489181188390759, 0.021820734275337993, 0.036500137333292645, 0.029633472701193275, 0.0019226660969878231, -0.031128879665517136, -0.057252723776970736, -0.0793481246375927, -0.09735404522843104, -0.09875789666432691, -0.07913449507126072, -0.05722220526749473, -0.03503524887844478, -0.0029297769096957305, 0.047639393292031616, 0.10034485915707878, 0.1372417371135594, 0.14590899380474256, 0.13101596118045594, 0.09610278633991516, 0.05383465071565905, 0.018402661214026308, -0.0015259254737998596, -0.013306070131534776, -0.024628437147129735, -0.028656880397961364, -0.022034363841669975, -0.020508438367870113, -0.031464583269753106, -0.04141361735892819, -0.036225470748008665, -0.03057954649494919, -0.03250221259193701, -0.027985473189489424, -0.02163762321848201, -0.010284737693411055, -0.002563554795983764, 0.004791405987731559, 0.01867732779931028, 0.021912289803765986, -0.004425183874019593, -0.03811761833552049, -0.06314279610583819, -0.08493301187170019, -0.10550248725852229, -0.11355937376018556, -0.10196234015930662, -0.07980590227973265, -0.05710013122959075, -0.02685628833887753, 0.020477919858394117, 0.07675405133213294, 0.12039551988280893, 0.13943906979583118, 0.13492233039338358, 0.11066011535996582, 0.06756797997985778, 0.02465895565660573, 0.001281777397991882, -0.013733329264198737, -0.02554399243140965, -0.02868739890743736, -0.024964140751365705, -0.023224585711233862, -0.029816583758049256, -0.04062013611255226, -0.041627246925260174, -0.03451643421735282, -0.02990813928647725, -0.024964140751365705, -0.01641895809808649, -0.006042664876247444, 0.004333628345591601, 0.010101626636555072, 0.02142399365215003, 0.027100436414685507, 0.01281777397991882, -0.017212439344462416, -0.0467543565172277, -0.07037568285164952, -0.09115878780480362, -0.10339671010467849, -0.09826960051271096, -0.07522812585833308, -0.054719687490462965, -0.031769768364513076, 0.005493331705679495, 0.05969420453505051, 0.10794396801660207, 0.13528855250709557, 0.13513595995971556, 0.11285744804223762, 0.07751701406903287, 0.03210547196874905, -0.0013122959074678793, -0.018066957609790338, -0.032441175572985016, -0.04016235847041231, -0.03830072939237648, -0.03500473036896878, -0.038087099826044496, -0.05096591082491531, -0.05496383556627094, -0.0478225043488876, -0.041566209906308174, -0.04074221015045625, -0.0369273964659566, -0.023712881862849818, -0.016357921079134495, -0.013092440565202796, 0.0011902218695638905, 0.013641773735770746, 0.007751701406903287, -0.01934873500778222, -0.048860133671071504, -0.07562486648152104, -0.09540086062196722, -0.1141087069307535, -0.11365092928861355, -0.09634693441572313, -0.07736442152165288, -0.05160679952391125, -0.018250068666646323, 0.033570360423596915, 0.0881679738761559, 0.12665181432538836, 0.13940855128635518, 0.1261635181737724, 0.09439374980925931, 0.05279702139347514, 0.014526810510574664, -0.007141331217383343, -0.020508438367870113, -0.02749717703787347, -0.030060731833857234, -0.02337717825861385, -0.019653920102542192, -0.032319101535081024, -0.04089480269783624, -0.03421124912259285, -0.025940733054597615, -0.024536881618701743, -0.020508438367870113, -0.010193182164983062, 0.0018616290780358287, 0.003357036042359691, 0.015472884304330577, 0.03164769432660909, 0.030182805871761222, 0.007354960783715323, -0.02652058473464156, -0.05346842860194708, -0.07855464339121677, -0.09826960051271096, -0.1065095980712302, -0.09549241615039522, -0.0750144962920011, -0.05465865047151097, -0.029175695059053316, 0.013183996093630787, 0.07263405255287332, 0.11700796533097324, 0.13446455275124364, 0.12967314676351208, 0.1043427838984344, 0.0629902035584582, 0.020477919858394117, -0.005554368724631489, -0.020203253273110143, -0.03210547196874905, -0.03946043275246437, -0.038758507034516436, -0.03527939695425276, -0.04077272865993225, -0.04770043031098361, -0.04498428296761986, -0.0402539139988403, -0.035065767387920777, -0.03283791619617298, -0.025788140507217627, -0.012573625904110843, -0.007263405255287332, -0.0007629627368999298, 0.013519699697866757, 0.020783104953154087, 0.0045167394024475845, -0.026978362376781518, -0.054414502395702995, -0.07583849604785302, -0.10034485915707878, -0.11685537278359324, -0.11114841151158178, -0.08841212195196387, -0.06747642445142979, -0.041688283944212166, -0.0027466658528397473, 0.04699850459303568, 0.09787285988952299, 0.12628559221167637, 0.13006988738670003, 0.11285744804223762, 0.07431257057405316, 0.0314951017792291, -0.00347911008026368, -0.019043549913022248, -0.030610065004425185, -0.0370189519943846, -0.033417767876216926, -0.030487990966521196, -0.03277687917722098, -0.04297006134220405, -0.04257332071901608, -0.03704947050386059, -0.02945036164433729, -0.028992584002197334, -0.025391399884029664, -0.014221625415814692, -0.0061037018951994385, 0.0008239997558519242, 0.011871700186162909, 0.023560289315469832, 0.014648884548478652, -0.008758812219611195, -0.04016235847041231, -0.06479079561754204, -0.08847315897091586, -0.10580767235328227, -0.10904263435773796, -0.09595019379253518, -0.07412945951719718, -0.0510574663533433, -0.020142216254158147, 0.02456740012817774, 0.08053834650715659, 0.1173131504257332, 0.13077181310464797, 0.11941892757957702, 0.08838160344248787, 0.04611346781823176, 0.008239997558519242, -0.012970366527298808, -0.02706991790520951, -0.03784295175023652, -0.04000976592303232, -0.032227546006653035, -0.03204443494979705, -0.04098635822626423, -0.04687643055513169, -0.04037598803674428, -0.036805322428052616, -0.035615100558488724, -0.03295999023407697, -0.02261421552171392, -0.01132236701559496, -0.011261329996642965, -0.00021362956633198035, 0.009765923032319102, 0.010742515335551012, -0.010834070863979004, -0.04074221015045625, -0.06286812952055422, -0.08328501235999634, -0.10196234015930662, -0.11224707785271767, -0.09958189642017884, -0.08026367992187261, -0.05792413098544267, -0.032593768120365005, 0.00924710837122715, 0.06277657399212623, 0.10837122714926603, 0.12961210974456008, 0.12537003692739646, 0.10473952452162237, 0.06936857203894162, 0.026245918149357585, -0.001434369945371868, -0.01489303262428663, -0.02523880733664968, -0.02990813928647725, -0.02783288064210944, -0.02575762199774163, -0.033356730857264934, -0.040589617603076264, -0.03714102603228858, -0.028443250831629383, -0.029969176305429245, -0.028077028717917417, -0.0195928830835902, -0.011261329996642965, -0.0034485915707876827, 0.0013122959074678793, 0.012115848261970886, 0.02154606769005402, 0.004913480025635548, -0.020203253273110143, -0.04992828150273141, -0.07644886623737297, -0.09833063753166295, -0.11136204107791375, -0.10504470961638233, -0.08606219672231208, -0.06564531388286995, -0.04464857936338389, -0.009582811975463118, 0.036896877956480605, 0.08359019745475631, 0.11169774468214973, 0.11786248359630115, 0.10119937742240669, 0.06610309152500991, 0.025940733054597615, -0.0051576281014435255, -0.02328562273018586, -0.03353984191412091, -0.041779839472640155, -0.04007080294198431, -0.03796502578814051, -0.03753776665547655, -0.044099246192815945, -0.04864650410473952, -0.0423291726432081, -0.03836176641132847, -0.037659840693380534, -0.034089175084688866, -0.022095400860621967, -0.01815851313821833, -0.013214514603106785, -0.003143406476027711, 0.008392590105899229, 0.0017700735496078372, -0.022431104464857937, -0.05099642933439131, -0.07544175542466507, -0.09720145268105106, -0.11688589129306924, -0.11899166844691306, -0.10388500625629445, -0.08059938352610858, -0.05902279732657857, -0.02999969481490524, 0.014069032868434707, 0.06414990691854609, 0.10467848750267036, 0.12079226050599688, 0.11322367015594959, 0.08761864070558793, 0.04864650410473952, 0.013031403546250802, -0.009399700918607135, -0.02264473403118992, -0.03109836115604114, -0.03430280465102085, -0.03012176885280923, -0.027039399395733514, -0.033661915952024904, -0.034272286141544844, -0.03122043519394513, -0.026032288583025604, -0.023407696768089847, -0.022217474898525956, -0.012451551866206854, -0.00173955504013184, -0.0005493331705679495, 0.0032654805139316996, 0.015198217719046602, 0.015289773247474594, -0.0030518509475997192, -0.028901028473769342, -0.05380413220618305, -0.07657094027527696, -0.09756767479476303, -0.1130100405896176, -0.10342722861415449, -0.08447523422956023, -0.06378368480483414, -0.0369273964659566, -9.155552842799158e-05, 0.05011139255958739, 0.09045686208685567, 0.11239967040009766, 0.11227759636219367, 0.09036530655842769, 0.0522171697134312, 0.011658070619830927, -0.01174962614825892, -0.026978362376781518, -0.03604235969115269, -0.04278695028534806, -0.042451246681112095, -0.039979247413556324, -0.042603839228492084, -0.04968413342692343, -0.047486800744651635, -0.03772087771233253, -0.03378398998992889, -0.02999969481490524, -0.02639851069673757, -0.015961180455946532, -0.013061922055726798, -0.010376293221839045, 0.005554368724631489, 0.012543107394634847, -0.0003662221137119663, -0.02447584459974975, -0.05056917020172735, -0.07187108981597339, -0.09512619403668325, -0.11008026367992187, -0.10782189397869808, -0.09271523178807947, -0.07232886745811334, -0.05163731803338725, -0.01663258766441847, 0.028443250831629383, 0.07510605182042909, 0.1076082644123661, 0.11478011413922544, 0.10058900723288675, 0.07116916409802546, 0.02816858424634541, -0.005066072573015534, -0.02023377178258614, -0.0315256202887051, -0.03704947050386059, -0.036286507766960664, -0.030671102023377177, -0.03347880489516892, -0.041016876735740226, -0.04135258033997619, -0.03375347148045289, -0.02304147465437788, -0.020783104953154087, -0.018768883327738274, -0.009033478804895169, -0.0029602954191717277, -0.0010071108127079073, 0.005920590838343455, 0.015839106418042544, 0.012512588885158849, -0.00619525742362743, -0.03228858302560503, -0.05804620502334666, -0.08090456862086856, -0.10095522934659872, -0.10477004303109837, -0.08859523300881984, -0.07187108981597339, -0.05285805841242714, -0.024414807580797754, 0.015381328775902585, 0.06274605548265023, 0.09903256324961089, 0.11679433576464125, 0.11117893002105778, 0.08526871547593616, 0.04739524521622364, 0.010681478316599017, -0.010071108127079073, -0.024750511185033724, -0.03353984191412091, -0.03521835993530076, -0.03234962004455703, -0.030213324381237222, -0.03790398876918851, -0.04367198706015198, -0.036133915219580676, -0.02752769554734947, -0.026795251319925537, -0.026367992187261574, -0.017975402081362345, -0.006927701651051363, -0.005523850215155492, -0.001892147587511826, 0.008453627124851223, 0.011474959562974944, -0.005554368724631489, -0.02957243568224128, -0.05456709494308298, -0.0771202734458449, -0.09805597094637898, -0.10638752403332621, -0.09750663777581103, -0.08120975371562852, -0.061250648518326366, -0.03939939573351237, -0.003357036042359691, 0.04361095004119999, 0.0814844203009125, 0.1043733024079104, 0.11111789300210578, 0.09082308420056764, 0.05475020599993896, 0.01574755088961455, -0.009308145390179145, -0.022797326578569903, -0.03234962004455703, -0.03573717459639271, -0.03570665608691671, -0.03283791619617298, -0.037415692617572556, -0.04309213538010804, -0.0380260628070925, -0.027619251075777458, -0.02465895565660573, -0.020905178991058076, -0.014740440076906645, -0.0057985168004394665, -0.000946073793755913, 0.0006714072084719382, 0.011719107638782922, 0.018433179723502304, 0.006836146122623371, -0.01794488357188635, -0.04119998779259621, -0.06457716605121006, -0.08890041810357982, -0.10498367259743034, -0.1011383404034547, -0.08618427076021608, -0.06686605426190985, -0.04910428174687948, -0.019684438612018188, 0.025849177526169623, 0.06939909054841761, 0.10019226660969878, 0.11123996704000977, 0.09921567430646687, 0.06585894344920194, 0.027680288094729454, -0.0037232581560716575, -0.01879940183721427, -0.028778954435865353, -0.03723258156071658, -0.03796502578814051, -0.032593768120365005, -0.03228858302560503, -0.03976561784722434, -0.04171880245368816, -0.03555406353953673, -0.03054902798547319, -0.027100436414685507, -0.02154606769005402, -0.014496292001098667, -0.009033478804895169, -0.004699850459303568, 0.001586962492751854, 0.008301034577471236, 0.005584887234107486, -0.014954069643238624, -0.03988769188512833, -0.06497390667439802, -0.08749656666768395, -0.10538041322061831, -0.11157567064424574, -0.09830011902218695, -0.08099612414929655, -0.06360057374797815, -0.034852137821588795, 0.007019257179479354, 0.05096591082491531, 0.0890224921414838, 0.1043733024079104, 0.10022278511917478, 0.07867671742912076, 0.04181035798211615, 0.007293923764763329, -0.014221625415814692, -0.026673177282021548, -0.033509323404644915, -0.035065767387920777, -0.029053621021149327, -0.02652058473464156, -0.03204443494979705, -0.03616443372905667, -0.03122043519394513, -0.02447584459974975, -0.023255104220709862, -0.019379253517258218, -0.01586962492751854, -0.01043733024079104, -0.009094515823847163, -0.0014954069643238624, 0.009582811975463118, 0.011993774224066897, -0.001098666341135899, -0.026245918149357585, -0.04843287453840754, -0.07199316385387737, -0.09289834284493545, -0.10507522812585833, -0.10095522934659872, -0.0858485671559801, -0.06595049897762993, -0.04531998657185583, -0.011078218939786982, 0.0304269539475692, 0.07016205328531755, 0.09540086062196722, 0.0956144901882992, 0.07995849482711265, 0.046235541856135744, 0.010711996826075015, -0.014923551133762628, -0.029816583758049256, -0.0391247291482284, -0.043122653889584035, -0.04107791375469222, -0.03735465559862056, -0.04074221015045625, -0.045075838496047856, -0.04159672841578417, -0.03509628589739677, -0.031128879665517136, -0.028901028473769342, -0.02380443739127781, -0.015930661946470536, -0.011780144657734916, -0.009521774956511124, 0.0005798516800439467, 0.007202368236335337, -0.001586962492751854, -0.025025177770317698, -0.04480117191076388, -0.06476027710806605, -0.0859401226844081, -0.10025330362865077, -0.09848323007904294, -0.08429212317270425, -0.0695211645863216, -0.049531540879543444, -0.022583697012237922, 0.020081179235206154, 0.06329538865321818, 0.09363078707235939, 0.10602130191961424, 0.09756767479476303, 0.07013153477584155, 0.03283791619617298, 0.005523850215155492, -0.010162663655507066, -0.02142399365215003, -0.02948088015381329, -0.02945036164433729, -0.02542191839350566, -0.021668141727958008, -0.029175695059053316, -0.028321176793725394, -0.019196142460402233, -0.013733329264198737, -0.007873775444807276, -0.0024414807580797754, 0.005188146610919523, 0.008545182653279214, 0.01293984801782281], "type": "scatter"}], "config": {"showlegend": false, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [0, 0.25, 0.5, 0.75, 1], "range": [0, 1.1170001], "domain": [0.09128390201224845, 0.9934383202099738], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["0.00", "0.25", "0.50", "0.75", "1.00"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Время (с)", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear", "autorange": true}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [{"yanchor": "top", "xanchor": "center", "rotation": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "paper", "showarrow": false, "text": "Колебания струны во времени", "xref": "paper", "x": 0.5423611111111111}], "height": 400, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [-1, -0.5, 0, 0.5, 1], "range": [-1.1111433250933358, 1.1111128065838598], "domain": [0.07581474190726165, 0.9415463692038496], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["-1.0", "-0.5", "0.0", "0.5", "1.0"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Амплитуда", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear", "autorange": true}, "width": 827.5}}
{"id": "3587bfed_d853_4b98_9b7a_ae000f1c5c3e", "data": [{"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [-4000, -3999, -3998, -3997, -3996, -3995, -3994, -3993, -3992, -3991, -3990, -3989, -3988, -3987, -3986, -3985, -3984, -3983, -3982, -3981, -3980, -3979, -3978, -3977, -3976, -3975, -3974, -3973, -3972, -3971, -3970, -3969, -3968, -3967, -3966, -3965, -3964, -3963, -3962, -3961, -3960, -3959, -3958, -3957, -3956, -3955, -3954, -3953, -3952, -3951, -3950, -3949, -3948, -3947, -3946, -3945, -3944, -3943, -3942, -3941, -3940, -3939, -3938, -3937, -3936, -3935, -3934, -3933, -3932, -3931, -3930, -3929, -3928, -3927, -3926, -3925, -3924, -3923, -3922, -3921, -3920, -3919, -3918, -3917, -3916, -3915, -3914, -3913, -3912, -3911, -3910, -3909, -3908, -3907, -3906, -3905, -3904, -3903, -3902, -3901, -3900, -3899, -3898, -3897, -3896, -3895, -3894, -3893, -3892, -3891, -3890, -3889, -3888, -3887, -3886, -3885, -3884, -3883, -3882, -3881, -3880, -3879, -3878, -3877, -3876, -3875, -3874, -3873, -3872, -3871, -3870, -3869, -3868, -3867, -3866, -3865, -3864, -3863, -3862, -3861, -3860, -3859, -3858, -3857, -3856, -3855, -3854, -3853, -3852, -3851, -3850, -3849, -3848, -3847, -3846, -3845, -3844, -3843, -3842, -3841, -3840, -3839, -3838, -3837, -3836, -3835, -3834, -3833, -3832, -3831, -3830, -3829, -3828, -3827, -3826, -3825, -3824, -3823, -3822, -3821, -3820, -3819, -3818, -3817, -3816, -3815, -3814, -3813, -3812, -3811, -3810, -3809, -3808, -3807, -3806, -3805, -3804, -3803, -3802, -3801, -3800, -3799, -3798, -3797, -3796, -3795, -3794, -3793, -3792, -3791, -3790, -3789, -3788, -3787, -3786, -3785, -3784, -3783, -3782, -3781, -3780, -3779, -3778, -3777, -3776, -3775, -3774, -3773, -3772, -3771, -3770, -3769, -3768, -3767, -3766, -3765, -3764, -3763, -3762, -3761, -3760, -3759, -3758, -3757, -3756, -3755, -3754, -3753, -3752, -3751, -3750, -3749, -3748, -3747, -3746, -3745, -3744, -3743, -3742, -3741, -3740, -3739, -3738, -3737, -3736, -3735, -3734, -3733, -3732, -3731, -3730, -3729, -3728, -3727, -3726, -3725, -3724, -3723, -3722, -3721, -3720, -3719, -3718, -3717, -3716, -3715, -3714, -3713, -3712, -3711, -3710, -3709, -3708, -3707, -3706, -3705, -3704, -3703, -3702, -3701, -3700, -3699, -3698, -3697, -3696, -3695, -3694, -3693, -3692, -3691, -3690, -3689, -3688, -3687, -3686, -3685, -3684, -3683, -3682, -3681, -3680, -3679, -3678, -3677, -3676, -3675, -3674, -3673, -3672, -3671, -3670, -3669, -3668, -3667, -3666, -3665, -3664, -3663, -3662, -3661, -3660, -3659, -3658, -3657, -3656, -3655, -3654, -3653, -3652, -3651, -3650, -3649, -3648, -3647, -3646, -3645, -3644, -3643, -3642, -3641, -3640, -3639, -3638, -3637, -3636, -3635, -3634, -3633, -3632, -3631, -3630, -3629, -3628, -3627, -3626, -3625, -3624, -3623, -3622, -3621, -3620, -3619, -3618, -3617, -3616, -3615, -3614, -3613, -3612, -3611, -3610, -3609, -3608, -3607, -3606, -3605, -3604, -3603, -3602, -3601, -3600, -3599, -3598, -3597, -3596, -3595, -3594, -3593, -3592, -3591, -3590, -3589, -3588, -3587, -3586, -3585, -3584, -3583, -3582, -3581, -3580, -3579, -3578, -3577, -3576, -3575, -3574, -3573, -3572, -3571, -3570, -3569, -3568, -3567, -3566, -3565, -3564, -3563, -3562, -3561, -3560, -3559, -3558, -3557, -3556, -3555, -3554, -3553, -3552, -3551, -3550, -3549, -3548, -3547, -3546, -3545, -3544, -3543, -3542, -3541, -3540, -3539, -3538, -3537, -3536, -3535, -3534, -3533, -3532, -3531, -3530, -3529, -3528, -3527, -3526, -3525, -3524, -3523, -3522, -3521, -3520, -3519, -3518, -3517, -3516, -3515, -3514, -3513, -3512, -3511, -3510, -3509, -3508, -3507, -3506, -3505, -3504, -3503, -3502, -3501, -3500, -3499, -3498, -3497, -3496, -3495, -3494, -3493, -3492, -3491, -3490, -3489, -3488, -3487, -3486, -3485, -3484, -3483, -3482, -3481, -3480, -3479, -3478, -3477, -3476, -3475, -3474, -3473, -3472, -3471, -3470, -3469, -3468, -3467, -3466, -3465, -3464, -3463, -3462, -3461, -3460, -3459, -3458, -3457, -3456, -3455, -3454, -3453, -3452, -3451, -3450, -3449, -3448, -3447, -3446, -3445, -3444, -3443, -3442, -3441, -3440, -3439, -3438, -3437, -3436, -3435, -3434, -3433, -3432, -3431, -3430, -3429, -3428, -3427, -3426, -3425, -3424, -3423, -3422, -3421, -3420, -3419, -3418, -3417, -3416, -3415, -3414, -3413, -3412, -3411, -3410, -3409, -3408, -3407, -3406, -3405, -3404, -3403, -3402, -3401, -3400, -3399, -3398, -3397, -3396, -3395, -3394, -3393, -3392, -3391, -3390, -3389, -3388, -3387, -3386, -3385, -3384, -3383, -3382, -3381, -3380, -3379, -3378, -3377, -3376, -3375, -3374, -3373, -3372, -3371, -3370, -3369, -3368, -3367, -3366, -3365, -3364, -3363, -3362, -3361, -3360, -3359, -3358, -3357, -3356, -3355, -3354, -3353, -3352, -3351, -3350, -3349, -3348, -3347, -3346, -3345, -3344, -3343, -3342, -3341, -3340, -3339, -3338, -3337, -3336, -3335, -3334, -3333, -3332, -3331, -3330, -3329, -3328, -3327, -3326, -3325, -3324, -3323, -3322, -3321, -3320, -3319, -3318, -3317, -3316, -3315, -3314, -3313, -3312, -3311, -3310, -3309, -3308, -3307, -3306, -3305, -3304, -3303, -3302, -3301, -3300, -3299, -3298, -3297, -3296, -3295, -3294, -3293, -3292, -3291, -3290, -3289, -3288, -3287, -3286, -3285, -3284, -3283, -3282, -3281, -3280, -3279, -3278, -3277, -3276, -3275, -3274, -3273, -3272, -3271, -3270, -3269, -3268, -3267, -3266, -3265, -3264, -3263, -3262, -3261, -3260, -3259, -3258, -3257, -3256, -3255, -3254, -3253, -3252, -3251, -3250, -3249, -3248, -3247, -3246, -3245, -3244, -3243, -3242, -3241, -3240, -3239, -3238, -3237, -3236, -3235, -3234, -3233, -3232, -3231, -3230, -3229, -3228, -3227, -3226, -3225, -3224, -3223, -3222, -3221, -3220, -3219, -3218, -3217, -3216, -3215, -3214, -3213, -3212, -3211, -3210, -3209, -3208, -3207, -3206, -3205, -3204, -3203, -3202, -3201, -3200, -3199, -3198, -3197, -3196, -3195, -3194, -3193, -3192, -3191, -3190, -3189, -3188, -3187, -3186, -3185, -3184, -3183, -3182, -3181, -3180, -3179, -3178, -3177, -3176, -3175, -3174, -3173, -3172, -3171, -3170, -3169, -3168, -3167, -3166, -3165, -3164, -3163, -3162, -3161, -3160, -3159, -3158, -3157, -3156, -3155, -3154, -3153, -3152, -3151, -3150, -3149, -3148, -3147, -3146, -3145, -3144, -3143, -3142, -3141, -3140, -3139, -3138, -3137, -3136, -3135, -3134, -3133, -3132, -3131, -3130, -3129, -3128, -3127, -3126, -3125, -3124, -3123, -3122, -3121, -3120, -3119, -3118, -3117, -3116, -3115, -3114, -3113, -3112, -3111, -3110, -3109, -3108, -3107, -3106, -3105, -3104, -3103, -3102, -3101, -3100, -3099, -3098, -3097, -3096, -3095, -3094, -3093, -3092, -3091, -3090, -3089, -3088, -3087, -3086, -3085, -3084, -3083, -3082, -3081, -3080, -3079, -3078, -3077, -3076, -3075, -3074, -3073, -3072, -3071, -3070, -3069, -3068, -3067, -3066, -3065, -3064, -3063, -3062, -3061, -3060, -3059, -3058, -3057, -3056, -3055, -3054, -3053, -3052, -3051, -3050, -3049, -3048, -3047, -3046, -3045, -3044, -3043, -3042, -3041, -3040, -3039, -3038, -3037, -3036, -3035, -3034, -3033, -3032, -3031, -3030, -3029, -3028, -3027, -3026, -3025, -3024, -3023, -3022, -3021, -3020, -3019, -3018, -3017, -3016, -3015, -3014, -3013, -3012, -3011, -3010, -3009, -3008, -3007, -3006, -3005, -3004, -3003, -3002, -3001, -3000, -2999, -2998, -2997, -2996, -2995, -2994, -2993, -2992, -2991, -2990, -2989, -2988, -2987, -2986, -2985, -2984, -2983, -2982, -2981, -2980, -2979, -2978, -2977, -2976, -2975, -2974, -2973, -2972, -2971, -2970, -2969, -2968, -2967, -2966, -2965, -2964, -2963, -2962, -2961, -2960, -2959, -2958, -2957, -2956, -2955, -2954, -2953, -2952, -2951, -2950, -2949, -2948, -2947, -2946, -2945, -2944, -2943, -2942, -2941, -2940, -2939, -2938, -2937, -2936, -2935, -2934, -2933, -2932, -2931, -2930, -2929, -2928, -2927, -2926, -2925, -2924, -2923, -2922, -2921, -2920, -2919, -2918, -2917, -2916, -2915, -2914, -2913, -2912, -2911, -2910, -2909, -2908, -2907, -2906, -2905, -2904, -2903, -2902, -2901, -2900, -2899, -2898, -2897, -2896, -2895, -2894, -2893, -2892, -2891, -2890, -2889, -2888, -2887, -2886, -2885, -2884, -2883, -2882, -2881, -2880, -2879, -2878, -2877, -2876, -2875, -2874, -2873, -2872, -2871, -2870, -2869, -2868, -2867, -2866, -2865, -2864, -2863, -2862, -2861, -2860, -2859, -2858, -2857, -2856, -2855, -2854, -2853, -2852, -2851, -2850, -2849, -2848, -2847, -2846, -2845, -2844, -2843, -2842, -2841, -2840, -2839, -2838, -2837, -2836, -2835, -2834, -2833, -2832, -2831, -2830, -2829, -2828, -2827, -2826, -2825, -2824, -2823, -2822, -2821, -2820, -2819, -2818, -2817, -2816, -2815, -2814, -2813, -2812, -2811, -2810, -2809, -2808, -2807, -2806, -2805, -2804, -2803, -2802, -2801, -2800, -2799, -2798, -2797, -2796, -2795, -2794, -2793, -2792, -2791, -2790, -2789, -2788, -2787, -2786, -2785, -2784, -2783, -2782, -2781, -2780, -2779, -2778, -2777, -2776, -2775, -2774, -2773, -2772, -2771, -2770, -2769, -2768, -2767, -2766, -2765, -2764, -2763, -2762, -2761, -2760, -2759, -2758, -2757, -2756, -2755, -2754, -2753, -2752, -2751, -2750, -2749, -2748, -2747, -2746, -2745, -2744, -2743, -2742, -2741, -2740, -2739, -2738, -2737, -2736, -2735, -2734, -2733, -2732, -2731, -2730, -2729, -2728, -2727, -2726, -2725, -2724, -2723, -2722, -2721, -2720, -2719, -2718, -2717, -2716, -2715, -2714, -2713, -2712, -2711, -2710, -2709, -2708, -2707, -2706, -2705, -2704, -2703, -2702, -2701, -2700, -2699, -2698, -2697, -2696, -2695, -2694, -2693, -2692, -2691, -2690, -2689, -2688, -2687, -2686, -2685, -2684, -2683, -2682, -2681, -2680, -2679, -2678, -2677, -2676, -2675, -2674, -2673, -2672, -2671, -2670, -2669, -2668, -2667, -2666, -2665, -2664, -2663, -2662, -2661, -2660, -2659, -2658, -2657, -2656, -2655, -2654, -2653, -2652, -2651, -2650, -2649, -2648, -2647, -2646, -2645, -2644, -2643, -2642, -2641, -2640, -2639, -2638, -2637, -2636, -2635, -2634, -2633, -2632, -2631, -2630, -2629, -2628, -2627, -2626, -2625, -2624, -2623, -2622, -2621, -2620, -2619, -2618, -2617, -2616, -2615, -2614, -2613, -2612, -2611, -2610, -2609, -2608, -2607, -2606, -2605, -2604, -2603, -2602, -2601, -2600, -2599, -2598, -2597, -2596, -2595, -2594, -2593, -2592, -2591, -2590, -2589, -2588, -2587, -2586, -2585, -2584, -2583, -2582, -2581, -2580, -2579, -2578, -2577, -2576, -2575, -2574, -2573, -2572, -2571, -2570, -2569, -2568, -2567, -2566, -2565, -2564, -2563, -2562, -2561, -2560, -2559, -2558, -2557, -2556, -2555, -2554, -2553, -2552, -2551, -2550, -2549, -2548, -2547, -2546, -2545, -2544, -2543, -2542, -2541, -2540, -2539, -2538, -2537, -2536, -2535, -2534, -2533, -2532, -2531, -2530, -2529, -2528, -2527, -2526, -2525, -2524, -2523, -2522, -2521, -2520, -2519, -2518, -2517, -2516, -2515, -2514, -2513, -2512, -2511, -2510, -2509, -2508, -2507, -2506, -2505, -2504, -2503, -2502, -2501, -2500, -2499, -2498, -2497, -2496, -2495, -2494, -2493, -2492, -2491, -2490, -2489, -2488, -2487, -2486, -2485, -2484, -2483, -2482, -2481, -2480, -2479, -2478, -2477, -2476, -2475, -2474, -2473, -2472, -2471, -2470, -2469, -2468, -2467, -2466, -2465, -2464, -2463, -2462, -2461, -2460, -2459, -2458, -2457, -2456, -2455, -2454, -2453, -2452, -2451, -2450, -2449, -2448, -2447, -2446, -2445, -2444, -2443, -2442, -2441, -2440, -2439, -2438, -2437, -2436, -2435, -2434, -2433, -2432, -2431, -2430, -2429, -2428, -2427, -2426, -2425, -2424, -2423, -2422, -2421, -2420, -2419, -2418, -2417, -2416, -2415, -2414, -2413, -2412, -2411, -2410, -2409, -2408, -2407, -2406, -2405, -2404, -2403, -2402, -2401, -2400, -2399, -2398, -2397, -2396, -2395, -2394, -2393, -2392, -2391, -2390, -2389, -2388, -2387, -2386, -2385, -2384, -2383, -2382, -2381, -2380, -2379, -2378, -2377, -2376, -2375, -2374, -2373, -2372, -2371, -2370, -2369, -2368, -2367, -2366, -2365, -2364, -2363, -2362, -2361, -2360, -2359, -2358, -2357, -2356, -2355, -2354, -2353, -2352, -2351, -2350, -2349, -2348, -2347, -2346, -2345, -2344, -2343, -2342, -2341, -2340, -2339, -2338, -2337, -2336, -2335, -2334, -2333, -2332, -2331, -2330, -2329, -2328, -2327, -2326, -2325, -2324, -2323, -2322, -2321, -2320, -2319, -2318, -2317, -2316, -2315, -2314, -2313, -2312, -2311, -2310, -2309, -2308, -2307, -2306, -2305, -2304, -2303, -2302, -2301, -2300, -2299, -2298, -2297, -2296, -2295, -2294, -2293, -2292, -2291, -2290, -2289, -2288, -2287, -2286, -2285, -2284, -2283, -2282, -2281, -2280, -2279, -2278, -2277, -2276, -2275, -2274, -2273, -2272, -2271, -2270, -2269, -2268, -2267, -2266, -2265, -2264, -2263, -2262, -2261, -2260, -2259, -2258, -2257, -2256, -2255, -2254, -2253, -2252, -2251, -2250, -2249, -2248, -2247, -2246, -2245, -2244, -2243, -2242, -2241, -2240, -2239, -2238, -2237, -2236, -2235, -2234, -2233, -2232, -2231, -2230, -2229, -2228, -2227, -2226, -2225, -2224, -2223, -2222, -2221, -2220, -2219, -2218, -2217, -2216, -2215, -2214, -2213, -2212, -2211, -2210, -2209, -2208, -2207, -2206, -2205, -2204, -2203, -2202, -2201, -2200, -2199, -2198, -2197, -2196, -2195, -2194, -2193, -2192, -2191, -2190, -2189, -2188, -2187, -2186, -2185, -2184, -2183, -2182, -2181, -2180, -2179, -2178, -2177, -2176, -2175, -2174, -2173, -2172, -2171, -2170, -2169, -2168, -2167, -2166, -2165, -2164, -2163, -2162, -2161, -2160, -2159, -2158, -2157, -2156, -2155, -2154, -2153, -2152, -2151, -2150, -2149, -2148, -2147, -2146, -2145, -2144, -2143, -2142, -2141, -2140, -2139, -2138, -2137, -2136, -2135, -2134, -2133, -2132, -2131, -2130, -2129, -2128, -2127, -2126, -2125, -2124, -2123, -2122, -2121, -2120, -2119, -2118, -2117, -2116, -2115, -2114, -2113, -2112, -2111, -2110, -2109, -2108, -2107, -2106, -2105, -2104, -2103, -2102, -2101, -2100, -2099, -2098, -2097, -2096, -2095, -2094, -2093, -2092, -2091, -2090, -2089, -2088, -2087, -2086, -2085, -2084, -2083, -2082, -2081, -2080, -2079, -2078, -2077, -2076, -2075, -2074, -2073, -2072, -2071, -2070, -2069, -2068, -2067, -2066, -2065, -2064, -2063, -2062, -2061, -2060, -2059, -2058, -2057, -2056, -2055, -2054, -2053, -2052, -2051, -2050, -2049, -2048, -2047, -2046, -2045, -2044, -2043, -2042, -2041, -2040, -2039, -2038, -2037, -2036, -2035, -2034, -2033, -2032, -2031, -2030, -2029, -2028, -2027, -2026, -2025, -2024, -2023, -2022, -2021, -2020, -2019, -2018, -2017, -2016, -2015, -2014, -2013, -2012, -2011, -2010, -2009, -2008, -2007, -2006, -2005, -2004, -2003, -2002, -2001, -2000, -1999, -1998, -1997, -1996, -1995, -1994, -1993, -1992, -1991, -1990, -1989, -1988, -1987, -1986, -1985, -1984, -1983, -1982, -1981, -1980, -1979, -1978, -1977, -1976, -1975, -1974, -1973, -1972, -1971, -1970, -1969, -1968, -1967, -1966, -1965, -1964, -1963, -1962, -1961, -1960, -1959, -1958, -1957, -1956, -1955, -1954, -1953, -1952, -1951, -1950, -1949, -1948, -1947, -1946, -1945, -1944, -1943, -1942, -1941, -1940, -1939, -1938, -1937, -1936, -1935, -1934, -1933, -1932, -1931, -1930, -1929, -1928, -1927, -1926, -1925, -1924, -1923, -1922, -1921, -1920, -1919, -1918, -1917, -1916, -1915, -1914, -1913, -1912, -1911, -1910, -1909, -1908, -1907, -1906, -1905, -1904, -1903, -1902, -1901, -1900, -1899, -1898, -1897, -1896, -1895, -1894, -1893, -1892, -1891, -1890, -1889, -1888, -1887, -1886, -1885, -1884, -1883, -1882, -1881, -1880, -1879, -1878, -1877, -1876, -1875, -1874, -1873, -1872, -1871, -1870, -1869, -1868, -1867, -1866, -1865, -1864, -1863, -1862, -1861, -1860, -1859, -1858, -1857, -1856, -1855, -1854, -1853, -1852, -1851, -1850, -1849, -1848, -1847, -1846, -1845, -1844, -1843, -1842, -1841, -1840, -1839, -1838, -1837, -1836, -1835, -1834, -1833, -1832, -1831, -1830, -1829, -1828, -1827, -1826, -1825, -1824, -1823, -1822, -1821, -1820, -1819, -1818, -1817, -1816, -1815, -1814, -1813, -1812, -1811, -1810, -1809, -1808, -1807, -1806, -1805, -1804, -1803, -1802, -1801, -1800, -1799, -1798, -1797, -1796, -1795, -1794, -1793, -1792, -1791, -1790, -1789, -1788, -1787, -1786, -1785, -1784, -1783, -1782, -1781, -1780, -1779, -1778, -1777, -1776, -1775, -1774, -1773, -1772, -1771, -1770, -1769, -1768, -1767, -1766, -1765, -1764, -1763, -1762, -1761, -1760, -1759, -1758, -1757, -1756, -1755, -1754, -1753, -1752, -1751, -1750, -1749, -1748, -1747, -1746, -1745, -1744, -1743, -1742, -1741, -1740, -1739, -1738, -1737, -1736, -1735, -1734, -1733, -1732, -1731, -1730, -1729, -1728, -1727, -1726, -1725, -1724, -1723, -1722, -1721, -1720, -1719, -1718, -1717, -1716, -1715, -1714, -1713, -1712, -1711, -1710, -1709, -1708, -1707, -1706, -1705, -1704, -1703, -1702, -1701, -1700, -1699, -1698, -1697, -1696, -1695, -1694, -1693, -1692, -1691, -1690, -1689, -1688, -1687, -1686, -1685, -1684, -1683, -1682, -1681, -1680, -1679, -1678, -1677, -1676, -1675, -1674, -1673, -1672, -1671, -1670, -1669, -1668, -1667, -1666, -1665, -1664, -1663, -1662, -1661, -1660, -1659, -1658, -1657, -1656, -1655, -1654, -1653, -1652, -1651, -1650, -1649, -1648, -1647, -1646, -1645, -1644, -1643, -1642, -1641, -1640, -1639, -1638, -1637, -1636, -1635, -1634, -1633, -1632, -1631, -1630, -1629, -1628, -1627, -1626, -1625, -1624, -1623, -1622, -1621, -1620, -1619, -1618, -1617, -1616, -1615, -1614, -1613, -1612, -1611, -1610, -1609, -1608, -1607, -1606, -1605, -1604, -1603, -1602, -1601, -1600, -1599, -1598, -1597, -1596, -1595, -1594, -1593, -1592, -1591, -1590, -1589, -1588, -1587, -1586, -1585, -1584, -1583, -1582, -1581, -1580, -1579, -1578, -1577, -1576, -1575, -1574, -1573, -1572, -1571, -1570, -1569, -1568, -1567, -1566, -1565, -1564, -1563, -1562, -1561, -1560, -1559, -1558, -1557, -1556, -1555, -1554, -1553, -1552, -1551, -1550, -1549, -1548, -1547, -1546, -1545, -1544, -1543, -1542, -1541, -1540, -1539, -1538, -1537, -1536, -1535, -1534, -1533, -1532, -1531, -1530, -1529, -1528, -1527, -1526, -1525, -1524, -1523, -1522, -1521, -1520, -1519, -1518, -1517, -1516, -1515, -1514, -1513, -1512, -1511, -1510, -1509, -1508, -1507, -1506, -1505, -1504, -1503, -1502, -1501, -1500, -1499, -1498, -1497, -1496, -1495, -1494, -1493, -1492, -1491, -1490, -1489, -1488, -1487, -1486, -1485, -1484, -1483, -1482, -1481, -1480, -1479, -1478, -1477, -1476, -1475, -1474, -1473, -1472, -1471, -1470, -1469, -1468, -1467, -1466, -1465, -1464, -1463, -1462, -1461, -1460, -1459, -1458, -1457, -1456, -1455, -1454, -1453, -1452, -1451, -1450, -1449, -1448, -1447, -1446, -1445, -1444, -1443, -1442, -1441, -1440, -1439, -1438, -1437, -1436, -1435, -1434, -1433, -1432, -1431, -1430, -1429, -1428, -1427, -1426, -1425, -1424, -1423, -1422, -1421, -1420, -1419, -1418, -1417, -1416, -1415, -1414, -1413, -1412, -1411, -1410, -1409, -1408, -1407, -1406, -1405, -1404, -1403, -1402, -1401, -1400, -1399, -1398, -1397, -1396, -1395, -1394, -1393, -1392, -1391, -1390, -1389, -1388, -1387, -1386, -1385, -1384, -1383, -1382, -1381, -1380, -1379, -1378, -1377, -1376, -1375, -1374, -1373, -1372, -1371, -1370, -1369, -1368, -1367, -1366, -1365, -1364, -1363, -1362, -1361, -1360, -1359, -1358, -1357, -1356, -1355, -1354, -1353, -1352, -1351, -1350, -1349, -1348, -1347, -1346, -1345, -1344, -1343, -1342, -1341, -1340, -1339, -1338, -1337, -1336, -1335, -1334, -1333, -1332, -1331, -1330, -1329, -1328, -1327, -1326, -1325, -1324, -1323, -1322, -1321, -1320, -1319, -1318, -1317, -1316, -1315, -1314, -1313, -1312, -1311, -1310, -1309, -1308, -1307, -1306, -1305, -1304, -1303, -1302, -1301, -1300, -1299, -1298, -1297, -1296, -1295, -1294, -1293, -1292, -1291, -1290, -1289, -1288, -1287, -1286, -1285, -1284, -1283, -1282, -1281, -1280, -1279, -1278, -1277, -1276, -1275, -1274, -1273, -1272, -1271, -1270, -1269, -1268, -1267, -1266, -1265, -1264, -1263, -1262, -1261, -1260, -1259, -1258, -1257, -1256, -1255, -1254, -1253, -1252, -1251, -1250, -1249, -1248, -1247, -1246, -1245, -1244, -1243, -1242, -1241, -1240, -1239, -1238, -1237, -1236, -1235, -1234, -1233, -1232, -1231, -1230, -1229, -1228, -1227, -1226, -1225, -1224, -1223, -1222, -1221, -1220, -1219, -1218, -1217, -1216, -1215, -1214, -1213, -1212, -1211, -1210, -1209, -1208, -1207, -1206, -1205, -1204, -1203, -1202, -1201, -1200, -1199, -1198, -1197, -1196, -1195, -1194, -1193, -1192, -1191, -1190, -1189, -1188, -1187, -1186, -1185, -1184, -1183, -1182, -1181, -1180, -1179, -1178, -1177, -1176, -1175, -1174, -1173, -1172, -1171, -1170, -1169, -1168, -1167, -1166, -1165, -1164, -1163, -1162, -1161, -1160, -1159, -1158, -1157, -1156, -1155, -1154, -1153, -1152, -1151, -1150, -1149, -1148, -1147, -1146, -1145, -1144, -1143, -1142, -1141, -1140, -1139, -1138, -1137, -1136, -1135, -1134, -1133, -1132, -1131, -1130, -1129, -1128, -1127, -1126, -1125, -1124, -1123, -1122, -1121, -1120, -1119, -1118, -1117, -1116, -1115, -1114, -1113, -1112, -1111, -1110, -1109, -1108, -1107, -1106, -1105, -1104, -1103, -1102, -1101, -1100, -1099, -1098, -1097, -1096, -1095, -1094, -1093, -1092, -1091, -1090, -1089, -1088, -1087, -1086, -1085, -1084, -1083, -1082, -1081, -1080, -1079, -1078, -1077, -1076, -1075, -1074, -1073, -1072, -1071, -1070, -1069, -1068, -1067, -1066, -1065, -1064, -1063, -1062, -1061, -1060, -1059, -1058, -1057, -1056, -1055, -1054, -1053, -1052, -1051, -1050, -1049, -1048, -1047, -1046, -1045, -1044, -1043, -1042, -1041, -1040, -1039, -1038, -1037, -1036, -1035, -1034, -1033, -1032, -1031, -1030, -1029, -1028, -1027, -1026, -1025, -1024, -1023, -1022, -1021, -1020, -1019, -1018, -1017, -1016, -1015, -1014, -1013, -1012, -1011, -1010, -1009, -1008, -1007, -1006, -1005, -1004, -1003, -1002, -1001, -1000, -999, -998, -997, -996, -995, -994, -993, -992, -991, -990, -989, -988, -987, -986, -985, -984, -983, -982, -981, -980, -979, -978, -977, -976, -975, -974, -973, -972, -971, -970, -969, -968, -967, -966, -965, -964, -963, -962, -961, -960, -959, -958, -957, -956, -955, -954, -953, -952, -951, -950, -949, -948, -947, -946, -945, -944, -943, -942, -941, -940, -939, -938, -937, -936, -935, -934, -933, -932, -931, -930, -929, -928, -927, -926, -925, -924, -923, -922, -921, -920, -919, -918, -917, -916, -915, -914, -913, -912, -911, -910, -909, -908, -907, -906, -905, -904, -903, -902, -901, -900, -899, -898, -897, -896, -895, -894, -893, -892, -891, -890, -889, -888, -887, -886, -885, -884, -883, -882, -881, -880, -879, -878, -877, -876, -875, -874, -873, -872, -871, -870, -869, -868, -867, -866, -865, -864, -863, -862, -861, -860, -859, -858, -857, -856, -855, -854, -853, -852, -851, -850, -849, -848, -847, -846, -845, -844, -843, -842, -841, -840, -839, -838, -837, -836, -835, -834, -833, -832, -831, -830, -829, -828, -827, -826, -825, -824, -823, -822, -821, -820, -819, -818, -817, -816, -815, -814, -813, -812, -811, -810, -809, -808, -807, -806, -805, -804, -803, -802, -801, -800, -799, -798, -797, -796, -795, -794, -793, -792, -791, -790, -789, -788, -787, -786, -785, -784, -783, -782, -781, -780, -779, -778, -777, -776, -775, -774, -773, -772, -771, -770, -769, -768, -767, -766, -765, -764, -763, -762, -761, -760, -759, -758, -757, -756, -755, -754, -753, -752, -751, -750, -749, -748, -747, -746, -745, -744, -743, -742, -741, -740, -739, -738, -737, -736, -735, -734, -733, -732, -731, -730, -729, -728, -727, -726, -725, -724, -723, -722, -721, -720, -719, -718, -717, -716, -715, -714, -713, -712, -711, -710, -709, -708, -707, -706, -705, -704, -703, -702, -701, -700, -699, -698, -697, -696, -695, -694, -693, -692, -691, -690, -689, -688, -687, -686, -685, -684, -683, -682, -681, -680, -679, -678, -677, -676, -675, -674, -673, -672, -671, -670, -669, -668, -667, -666, -665, -664, -663, -662, -661, -660, -659, -658, -657, -656, -655, -654, -653, -652, -651, -650, -649, -648, -647, -646, -645, -644, -643, -642, -641, -640, -639, -638, -637, -636, -635, -634, -633, -632, -631, -630, -629, -628, -627, -626, -625, -624, -623, -622, -621, -620, -619, -618, -617, -616, -615, -614, -613, -612, -611, -610, -609, -608, -607, -606, -605, -604, -603, -602, -601, -600, -599, -598, -597, -596, -595, -594, -593, -592, -591, -590, -589, -588, -587, -586, -585, -584, -583, -582, -581, -580, -579, -578, -577, -576, -575, -574, -573, -572, -571, -570, -569, -568, -567, -566, -565, -564, -563, -562, -561, -560, -559, -558, -557, -556, -555, -554, -553, -552, -551, -550, -549, -548, -547, -546, -545, -544, -543, -542, -541, -540, -539, -538, -537, -536, -535, -534, -533, -532, -531, -530, -529, -528, -527, -526, -525, -524, -523, -522, -521, -520, -519, -518, -517, -516, -515, -514, -513, -512, -511, -510, -509, -508, -507, -506, -505, -504, -503, -502, -501, -500, -499, -498, -497, -496, -495, -494, -493, -492, -491, -490, -489, -488, -487, -486, -485, -484, -483, -482, -481, -480, -479, -478, -477, -476, -475, -474, -473, -472, -471, -470, -469, -468, -467, -466, -465, -464, -463, -462, -461, -460, -459, -458, -457, -456, -455, -454, -453, -452, -451, -450, -449, -448, -447, -446, -445, -444, -443, -442, -441, -440, -439, -438, -437, -436, -435, -434, -433, -432, -431, -430, -429, -428, -427, -426, -425, -424, -423, -422, -421, -420, -419, -418, -417, -416, -415, -414, -413, -412, -411, -410, -409, -408, -407, -406, -405, -404, -403, -402, -401, -400, -399, -398, -397, -396, -395, -394, -393, -392, -391, -390, -389, -388, -387, -386, -385, -384, -383, -382, -381, -380, -379, -378, -377, -376, -375, -374, -373, -372, -371, -370, -369, -368, -367, -366, -365, -364, -363, -362, -361, -360, -359, -358, -357, -356, -355, -354, -353, -352, -351, -350, -349, -348, -347, -346, -345, -344, -343, -342, -341, -340, -339, -338, -337, -336, -335, -334, -333, -332, -331, -330, -329, -328, -327, -326, -325, -324, -323, -322, -321, -320, -319, -318, -317, -316, -315, -314, -313, -312, -311, -310, -309, -308, -307, -306, -305, -304, -303, -302, -301, -300, -299, -298, -297, -296, -295, -294, -293, -292, -291, -290, -289, -288, -287, -286, -285, -284, -283, -282, -281, -280, -279, -278, -277, -276, -275, -274, -273, -272, -271, -270, -269, -268, -267, -266, -265, -264, -263, -262, -261, -260, -259, -258, -257, -256, -255, -254, -253, -252, -251, -250, -249, -248, -247, -246, -245, -244, -243, -242, -241, -240, -239, -238, -237, -236, -235, -234, -233, -232, -231, -230, -229, -228, -227, -226, -225, -224, -223, -222, -221, -220, -219, -218, -217, -216, -215, -214, -213, -212, -211, -210, -209, -208, -207, -206, -205, -204, -203, -202, -201, -200, -199, -198, -197, -196, -195, -194, -193, -192, -191, -190, -189, -188, -187, -186, -185, -184, -183, -182, -181, -180, -179, -178, -177, -176, -175, -174, -173, -172, -171, -170, -169, -168, -167, -166, -165, -164, -163, -162, -161, -160, -159, -158, -157, -156, -155, -154, -153, -152, -151, -150, -149, -148, -147, -146, -145, -144, -143, -142, -141, -140, -139, -138, -137, -136, -135, -134, -133, -132, -131, -130, -129, -128, -127, -126, -125, -124, -123, -122, -121, -120, -119, -118, -117, -116, -115, -114, -113, -112, -111, -110, -109, -108, -107, -106, -105, -104, -103, -102, -101, -100, -99, -98, -97, -96, -95, -94, -93, -92, -91, -90, -89, -88, -87, -86, -85, -84, -83, -82, -81, -80, -79, -78, -77, -76, -75, -74, -73, -72, -71, -70, -69, -68, -67, -66, -65, -64, -63, -62, -61, -60, -59, -58, -57, -56, -55, -54, -53, -52, -51, -50, -49, -48, -47, -46, -45, -44, -43, -42, -41, -40, -39, -38, -37, -36, -35, -34, -33, -32, -31, -30, -29, -28, -27, -26, -25, -24, -23, -22, -21, -20, -19, -18, -17, -16, -15, -14, -13, -12, -11, -10, -9, -8, -7, -6, -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217, 1218, 1219, 1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228, 1229, 1230, 1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238, 1239, 1240, 1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250, 1251, 1252, 1253, 1254, 1255, 1256, 1257, 1258, 1259, 1260, 1261, 1262, 1263, 1264, 1265, 1266, 1267, 1268, 1269, 1270, 1271, 1272, 1273, 1274, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 1282, 1283, 1284, 1285, 1286, 1287, 1288, 1289, 1290, 1291, 1292, 1293, 1294, 1295, 1296, 1297, 1298, 1299, 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1338, 1339, 1340, 1341, 1342, 1343, 1344, 1345, 1346, 1347, 1348, 1349, 1350, 1351, 1352, 1353, 1354, 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1364, 1365, 1366, 1367, 1368, 1369, 1370, 1371, 1372, 1373, 1374, 1375, 1376, 1377, 1378, 1379, 1380, 1381, 1382, 1383, 1384, 1385, 1386, 1387, 1388, 1389, 1390, 1391, 1392, 1393, 1394, 1395, 1396, 1397, 1398, 1399, 1400, 1401, 1402, 1403, 1404, 1405, 1406, 1407, 1408, 1409, 1410, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1437, 1438, 1439, 1440, 1441, 1442, 1443, 1444, 1445, 1446, 1447, 1448, 1449, 1450, 1451, 1452, 1453, 1454, 1455, 1456, 1457, 1458, 1459, 1460, 1461, 1462, 1463, 1464, 1465, 1466, 1467, 1468, 1469, 1470, 1471, 1472, 1473, 1474, 1475, 1476, 1477, 1478, 1479, 1480, 1481, 1482, 1483, 1484, 1485, 1486, 1487, 1488, 1489, 1490, 1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498, 1499, 1500, 1501, 1502, 1503, 1504, 1505, 1506, 1507, 1508, 1509, 1510, 1511, 1512, 1513, 1514, 1515, 1516, 1517, 1518, 1519, 1520, 1521, 1522, 1523, 1524, 1525, 1526, 1527, 1528, 1529, 1530, 1531, 1532, 1533, 1534, 1535, 1536, 1537, 1538, 1539, 1540, 1541, 1542, 1543, 1544, 1545, 1546, 1547, 1548, 1549, 1550, 1551, 1552, 1553, 1554, 1555, 1556, 1557, 1558, 1559, 1560, 1561, 1562, 1563, 1564, 1565, 1566, 1567, 1568, 1569, 1570, 1571, 1572, 1573, 1574, 1575, 1576, 1577, 1578, 1579, 1580, 1581, 1582, 1583, 1584, 1585, 1586, 1587, 1588, 1589, 1590, 1591, 1592, 1593, 1594, 1595, 1596, 1597, 1598, 1599, 1600, 1601, 1602, 1603, 1604, 1605, 1606, 1607, 1608, 1609, 1610, 1611, 1612, 1613, 1614, 1615, 1616, 1617, 1618, 1619, 1620, 1621, 1622, 1623, 1624, 1625, 1626, 1627, 1628, 1629, 1630, 1631, 1632, 1633, 1634, 1635, 1636, 1637, 1638, 1639, 1640, 1641, 1642, 1643, 1644, 1645, 1646, 1647, 1648, 1649, 1650, 1651, 1652, 1653, 1654, 1655, 1656, 1657, 1658, 1659, 1660, 1661, 1662, 1663, 1664, 1665, 1666, 1667, 1668, 1669, 1670, 1671, 1672, 1673, 1674, 1675, 1676, 1677, 1678, 1679, 1680, 1681, 1682, 1683, 1684, 1685, 1686, 1687, 1688, 1689, 1690, 1691, 1692, 1693, 1694, 1695, 1696, 1697, 1698, 1699, 1700, 1701, 1702, 1703, 1704, 1705, 1706, 1707, 1708, 1709, 1710, 1711, 1712, 1713, 1714, 1715, 1716, 1717, 1718, 1719, 1720, 1721, 1722, 1723, 1724, 1725, 1726, 1727, 1728, 1729, 1730, 1731, 1732, 1733, 1734, 1735, 1736, 1737, 1738, 1739, 1740, 1741, 1742, 1743, 1744, 1745, 1746, 1747, 1748, 1749, 1750, 1751, 1752, 1753, 1754, 1755, 1756, 1757, 1758, 1759, 1760, 1761, 1762, 1763, 1764, 1765, 1766, 1767, 1768, 1769, 1770, 1771, 1772, 1773, 1774, 1775, 1776, 1777, 1778, 1779, 1780, 1781, 1782, 1783, 1784, 1785, 1786, 1787, 1788, 1789, 1790, 1791, 1792, 1793, 1794, 1795, 1796, 1797, 1798, 1799, 1800, 1801, 1802, 1803, 1804, 1805, 1806, 1807, 1808, 1809, 1810, 1811, 1812, 1813, 1814, 1815, 1816, 1817, 1818, 1819, 1820, 1821, 1822, 1823, 1824, 1825, 1826, 1827, 1828, 1829, 1830, 1831, 1832, 1833, 1834, 1835, 1836, 1837, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1845, 1846, 1847, 1848, 1849, 1850, 1851, 1852, 1853, 1854, 1855, 1856, 1857, 1858, 1859, 1860, 1861, 1862, 1863, 1864, 1865, 1866, 1867, 1868, 1869, 1870, 1871, 1872, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1893, 1894, 1895, 1896, 1897, 1898, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909, 1910, 1911, 1912, 1913, 1914, 1915, 1916, 1917, 1918, 1919, 1920, 1921, 1922, 1923, 1924, 1925, 1926, 1927, 1928, 1929, 1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946, 1947, 1948, 1949, 1950, 1951, 1952, 1953, 1954, 1955, 1956, 1957, 1958, 1959, 1960, 1961, 1962, 1963, 1964, 1965, 1966, 1967, 1968, 1969, 1970, 1971, 1972, 1973, 1974, 1975, 1976, 1977, 1978, 1979, 1980, 1981, 1982, 1983, 1984, 1985, 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026, 2027, 2028, 2029, 2030, 2031, 2032, 2033, 2034, 2035, 2036, 2037, 2038, 2039, 2040, 2041, 2042, 2043, 2044, 2045, 2046, 2047, 2048, 2049, 2050, 2051, 2052, 2053, 2054, 2055, 2056, 2057, 2058, 2059, 2060, 2061, 2062, 2063, 2064, 2065, 2066, 2067, 2068, 2069, 2070, 2071, 2072, 2073, 2074, 2075, 2076, 2077, 2078, 2079, 2080, 2081, 2082, 2083, 2084, 2085, 2086, 2087, 2088, 2089, 2090, 2091, 2092, 2093, 2094, 2095, 2096, 2097, 2098, 2099, 2100, 2101, 2102, 2103, 2104, 2105, 2106, 2107, 2108, 2109, 2110, 2111, 2112, 2113, 2114, 2115, 2116, 2117, 2118, 2119, 2120, 2121, 2122, 2123, 2124, 2125, 2126, 2127, 2128, 2129, 2130, 2131, 2132, 2133, 2134, 2135, 2136, 2137, 2138, 2139, 2140, 2141, 2142, 2143, 2144, 2145, 2146, 2147, 2148, 2149, 2150, 2151, 2152, 2153, 2154, 2155, 2156, 2157, 2158, 2159, 2160, 2161, 2162, 2163, 2164, 2165, 2166, 2167, 2168, 2169, 2170, 2171, 2172, 2173, 2174, 2175, 2176, 2177, 2178, 2179, 2180, 2181, 2182, 2183, 2184, 2185, 2186, 2187, 2188, 2189, 2190, 2191, 2192, 2193, 2194, 2195, 2196, 2197, 2198, 2199, 2200, 2201, 2202, 2203, 2204, 2205, 2206, 2207, 2208, 2209, 2210, 2211, 2212, 2213, 2214, 2215, 2216, 2217, 2218, 2219, 2220, 2221, 2222, 2223, 2224, 2225, 2226, 2227, 2228, 2229, 2230, 2231, 2232, 2233, 2234, 2235, 2236, 2237, 2238, 2239, 2240, 2241, 2242, 2243, 2244, 2245, 2246, 2247, 2248, 2249, 2250, 2251, 2252, 2253, 2254, 2255, 2256, 2257, 2258, 2259, 2260, 2261, 2262, 2263, 2264, 2265, 2266, 2267, 2268, 2269, 2270, 2271, 2272, 2273, 2274, 2275, 2276, 2277, 2278, 2279, 2280, 2281, 2282, 2283, 2284, 2285, 2286, 2287, 2288, 2289, 2290, 2291, 2292, 2293, 2294, 2295, 2296, 2297, 2298, 2299, 2300, 2301, 2302, 2303, 2304, 2305, 2306, 2307, 2308, 2309, 2310, 2311, 2312, 2313, 2314, 2315, 2316, 2317, 2318, 2319, 2320, 2321, 2322, 2323, 2324, 2325, 2326, 2327, 2328, 2329, 2330, 2331, 2332, 2333, 2334, 2335, 2336, 2337, 2338, 2339, 2340, 2341, 2342, 2343, 2344, 2345, 2346, 2347, 2348, 2349, 2350, 2351, 2352, 2353, 2354, 2355, 2356, 2357, 2358, 2359, 2360, 2361, 2362, 2363, 2364, 2365, 2366, 2367, 2368, 2369, 2370, 2371, 2372, 2373, 2374, 2375, 2376, 2377, 2378, 2379, 2380, 2381, 2382, 2383, 2384, 2385, 2386, 2387, 2388, 2389, 2390, 2391, 2392, 2393, 2394, 2395, 2396, 2397, 2398, 2399, 2400, 2401, 2402, 2403, 2404, 2405, 2406, 2407, 2408, 2409, 2410, 2411, 2412, 2413, 2414, 2415, 2416, 2417, 2418, 2419, 2420, 2421, 2422, 2423, 2424, 2425, 2426, 2427, 2428, 2429, 2430, 2431, 2432, 2433, 2434, 2435, 2436, 2437, 2438, 2439, 2440, 2441, 2442, 2443, 2444, 2445, 2446, 2447, 2448, 2449, 2450, 2451, 2452, 2453, 2454, 2455, 2456, 2457, 2458, 2459, 2460, 2461, 2462, 2463, 2464, 2465, 2466, 2467, 2468, 2469, 2470, 2471, 2472, 2473, 2474, 2475, 2476, 2477, 2478, 2479, 2480, 2481, 2482, 2483, 2484, 2485, 2486, 2487, 2488, 2489, 2490, 2491, 2492, 2493, 2494, 2495, 2496, 2497, 2498, 2499, 2500, 2501, 2502, 2503, 2504, 2505, 2506, 2507, 2508, 2509, 2510, 2511, 2512, 2513, 2514, 2515, 2516, 2517, 2518, 2519, 2520, 2521, 2522, 2523, 2524, 2525, 2526, 2527, 2528, 2529, 2530, 2531, 2532, 2533, 2534, 2535, 2536, 2537, 2538, 2539, 2540, 2541, 2542, 2543, 2544, 2545, 2546, 2547, 2548, 2549, 2550, 2551, 2552, 2553, 2554, 2555, 2556, 2557, 2558, 2559, 2560, 2561, 2562, 2563, 2564, 2565, 2566, 2567, 2568, 2569, 2570, 2571, 2572, 2573, 2574, 2575, 2576, 2577, 2578, 2579, 2580, 2581, 2582, 2583, 2584, 2585, 2586, 2587, 2588, 2589, 2590, 2591, 2592, 2593, 2594, 2595, 2596, 2597, 2598, 2599, 2600, 2601, 2602, 2603, 2604, 2605, 2606, 2607, 2608, 2609, 2610, 2611, 2612, 2613, 2614, 2615, 2616, 2617, 2618, 2619, 2620, 2621, 2622, 2623, 2624, 2625, 2626, 2627, 2628, 2629, 2630, 2631, 2632, 2633, 2634, 2635, 2636, 2637, 2638, 2639, 2640, 2641, 2642, 2643, 2644, 2645, 2646, 2647, 2648, 2649, 2650, 2651, 2652, 2653, 2654, 2655, 2656, 2657, 2658, 2659, 2660, 2661, 2662, 2663, 2664, 2665, 2666, 2667, 2668, 2669, 2670, 2671, 2672, 2673, 2674, 2675, 2676, 2677, 2678, 2679, 2680, 2681, 2682, 2683, 2684, 2685, 2686, 2687, 2688, 2689, 2690, 2691, 2692, 2693, 2694, 2695, 2696, 2697, 2698, 2699, 2700, 2701, 2702, 2703, 2704, 2705, 2706, 2707, 2708, 2709, 2710, 2711, 2712, 2713, 2714, 2715, 2716, 2717, 2718, 2719, 2720, 2721, 2722, 2723, 2724, 2725, 2726, 2727, 2728, 2729, 2730, 2731, 2732, 2733, 2734, 2735, 2736, 2737, 2738, 2739, 2740, 2741, 2742, 2743, 2744, 2745, 2746, 2747, 2748, 2749, 2750, 2751, 2752, 2753, 2754, 2755, 2756, 2757, 2758, 2759, 2760, 2761, 2762, 2763, 2764, 2765, 2766, 2767, 2768, 2769, 2770, 2771, 2772, 2773, 2774, 2775, 2776, 2777, 2778, 2779, 2780, 2781, 2782, 2783, 2784, 2785, 2786, 2787, 2788, 2789, 2790, 2791, 2792, 2793, 2794, 2795, 2796, 2797, 2798, 2799, 2800, 2801, 2802, 2803, 2804, 2805, 2806, 2807, 2808, 2809, 2810, 2811, 2812, 2813, 2814, 2815, 2816, 2817, 2818, 2819, 2820, 2821, 2822, 2823, 2824, 2825, 2826, 2827, 2828, 2829, 2830, 2831, 2832, 2833, 2834, 2835, 2836, 2837, 2838, 2839, 2840, 2841, 2842, 2843, 2844, 2845, 2846, 2847, 2848, 2849, 2850, 2851, 2852, 2853, 2854, 2855, 2856, 2857, 2858, 2859, 2860, 2861, 2862, 2863, 2864, 2865, 2866, 2867, 2868, 2869, 2870, 2871, 2872, 2873, 2874, 2875, 2876, 2877, 2878, 2879, 2880, 2881, 2882, 2883, 2884, 2885, 2886, 2887, 2888, 2889, 2890, 2891, 2892, 2893, 2894, 2895, 2896, 2897, 2898, 2899, 2900, 2901, 2902, 2903, 2904, 2905, 2906, 2907, 2908, 2909, 2910, 2911, 2912, 2913, 2914, 2915, 2916, 2917, 2918, 2919, 2920, 2921, 2922, 2923, 2924, 2925, 2926, 2927, 2928, 2929, 2930, 2931, 2932, 2933, 2934, 2935, 2936, 2937, 2938, 2939, 2940, 2941, 2942, 2943, 2944, 2945, 2946, 2947, 2948, 2949, 2950, 2951, 2952, 2953, 2954, 2955, 2956, 2957, 2958, 2959, 2960, 2961, 2962, 2963, 2964, 2965, 2966, 2967, 2968, 2969, 2970, 2971, 2972, 2973, 2974, 2975, 2976, 2977, 2978, 2979, 2980, 2981, 2982, 2983, 2984, 2985, 2986, 2987, 2988, 2989, 2990, 2991, 2992, 2993, 2994, 2995, 2996, 2997, 2998, 2999, 3000, 3001, 3002, 3003, 3004, 3005, 3006, 3007, 3008, 3009, 3010, 3011, 3012, 3013, 3014, 3015, 3016, 3017, 3018, 3019, 3020, 3021, 3022, 3023, 3024, 3025, 3026, 3027, 3028, 3029, 3030, 3031, 3032, 3033, 3034, 3035, 3036, 3037, 3038, 3039, 3040, 3041, 3042, 3043, 3044, 3045, 3046, 3047, 3048, 3049, 3050, 3051, 3052, 3053, 3054, 3055, 3056, 3057, 3058, 3059, 3060, 3061, 3062, 3063, 3064, 3065, 3066, 3067, 3068, 3069, 3070, 3071, 3072, 3073, 3074, 3075, 3076, 3077, 3078, 3079, 3080, 3081, 3082, 3083, 3084, 3085, 3086, 3087, 3088, 3089, 3090, 3091, 3092, 3093, 3094, 3095, 3096, 3097, 3098, 3099, 3100, 3101, 3102, 3103, 3104, 3105, 3106, 3107, 3108, 3109, 3110, 3111, 3112, 3113, 3114, 3115, 3116, 3117, 3118, 3119, 3120, 3121, 3122, 3123, 3124, 3125, 3126, 3127, 3128, 3129, 3130, 3131, 3132, 3133, 3134, 3135, 3136, 3137, 3138, 3139, 3140, 3141, 3142, 3143, 3144, 3145, 3146, 3147, 3148, 3149, 3150, 3151, 3152, 3153, 3154, 3155, 3156, 3157, 3158, 3159, 3160, 3161, 3162, 3163, 3164, 3165, 3166, 3167, 3168, 3169, 3170, 3171, 3172, 3173, 3174, 3175, 3176, 3177, 3178, 3179, 3180, 3181, 3182, 3183, 3184, 3185, 3186, 3187, 3188, 3189, 3190, 3191, 3192, 3193, 3194, 3195, 3196, 3197, 3198, 3199, 3200, 3201, 3202, 3203, 3204, 3205, 3206, 3207, 3208, 3209, 3210, 3211, 3212, 3213, 3214, 3215, 3216, 3217, 3218, 3219, 3220, 3221, 3222, 3223, 3224, 3225, 3226, 3227, 3228, 3229, 3230, 3231, 3232, 3233, 3234, 3235, 3236, 3237, 3238, 3239, 3240, 3241, 3242, 3243, 3244, 3245, 3246, 3247, 3248, 3249, 3250, 3251, 3252, 3253, 3254, 3255, 3256, 3257, 3258, 3259, 3260, 3261, 3262, 3263, 3264, 3265, 3266, 3267, 3268, 3269, 3270, 3271, 3272, 3273, 3274, 3275, 3276, 3277, 3278, 3279, 3280, 3281, 3282, 3283, 3284, 3285, 3286, 3287, 3288, 3289, 3290, 3291, 3292, 3293, 3294, 3295, 3296, 3297, 3298, 3299, 3300, 3301, 3302, 3303, 3304, 3305, 3306, 3307, 3308, 3309, 3310, 3311, 3312, 3313, 3314, 3315, 3316, 3317, 3318, 3319, 3320, 3321, 3322, 3323, 3324, 3325, 3326, 3327, 3328, 3329, 3330, 3331, 3332, 3333, 3334, 3335, 3336, 3337, 3338, 3339, 3340, 3341, 3342, 3343, 3344, 3345, 3346, 3347, 3348, 3349, 3350, 3351, 3352, 3353, 3354, 3355, 3356, 3357, 3358, 3359, 3360, 3361, 3362, 3363, 3364, 3365, 3366, 3367, 3368, 3369, 3370, 3371, 3372, 3373, 3374, 3375, 3376, 3377, 3378, 3379, 3380, 3381, 3382, 3383, 3384, 3385, 3386, 3387, 3388, 3389, 3390, 3391, 3392, 3393, 3394, 3395, 3396, 3397, 3398, 3399, 3400, 3401, 3402, 3403, 3404, 3405, 3406, 3407, 3408, 3409, 3410, 3411, 3412, 3413, 3414, 3415, 3416, 3417, 3418, 3419, 3420, 3421, 3422, 3423, 3424, 3425, 3426, 3427, 3428, 3429, 3430, 3431, 3432, 3433, 3434, 3435, 3436, 3437, 3438, 3439, 3440, 3441, 3442, 3443, 3444, 3445, 3446, 3447, 3448, 3449, 3450, 3451, 3452, 3453, 3454, 3455, 3456, 3457, 3458, 3459, 3460, 3461, 3462, 3463, 3464, 3465, 3466, 3467, 3468, 3469, 3470, 3471, 3472, 3473, 3474, 3475, 3476, 3477, 3478, 3479, 3480, 3481, 3482, 3483, 3484, 3485, 3486, 3487, 3488, 3489, 3490, 3491, 3492, 3493, 3494, 3495, 3496, 3497, 3498, 3499, 3500, 3501, 3502, 3503, 3504, 3505, 3506, 3507, 3508, 3509, 3510, 3511, 3512, 3513, 3514, 3515, 3516, 3517, 3518, 3519, 3520, 3521, 3522, 3523, 3524, 3525, 3526, 3527, 3528, 3529, 3530, 3531, 3532, 3533, 3534, 3535, 3536, 3537, 3538, 3539, 3540, 3541, 3542, 3543, 3544, 3545, 3546, 3547, 3548, 3549, 3550, 3551, 3552, 3553, 3554, 3555, 3556, 3557, 3558, 3559, 3560, 3561, 3562, 3563, 3564, 3565, 3566, 3567, 3568, 3569, 3570, 3571, 3572, 3573, 3574, 3575, 3576, 3577, 3578, 3579, 3580, 3581, 3582, 3583, 3584, 3585, 3586, 3587, 3588, 3589, 3590, 3591, 3592, 3593, 3594, 3595, 3596, 3597, 3598, 3599, 3600, 3601, 3602, 3603, 3604, 3605, 3606, 3607, 3608, 3609, 3610, 3611, 3612, 3613, 3614, 3615, 3616, 3617, 3618, 3619, 3620, 3621, 3622, 3623, 3624, 3625, 3626, 3627, 3628, 3629, 3630, 3631, 3632, 3633, 3634, 3635, 3636, 3637, 3638, 3639, 3640, 3641, 3642, 3643, 3644, 3645, 3646, 3647, 3648, 3649, 3650, 3651, 3652, 3653, 3654, 3655, 3656, 3657, 3658, 3659, 3660, 3661, 3662, 3663, 3664, 3665, 3666, 3667, 3668, 3669, 3670, 3671, 3672, 3673, 3674, 3675, 3676, 3677, 3678, 3679, 3680, 3681, 3682, 3683, 3684, 3685, 3686, 3687, 3688, 3689, 3690, 3691, 3692, 3693, 3694, 3695, 3696, 3697, 3698, 3699, 3700, 3701, 3702, 3703, 3704, 3705, 3706, 3707, 3708, 3709, 3710, 3711, 3712, 3713, 3714, 3715, 3716, 3717, 3718, 3719, 3720, 3721, 3722, 3723, 3724, 3725, 3726, 3727, 3728, 3729, 3730, 3731, 3732, 3733, 3734, 3735, 3736, 3737, 3738, 3739, 3740, 3741, 3742, 3743, 3744, 3745, 3746, 3747, 3748, 3749, 3750, 3751, 3752, 3753, 3754, 3755, 3756, 3757, 3758, 3759, 3760, 3761, 3762, 3763, 3764, 3765, 3766, 3767, 3768, 3769, 3770, 3771, 3772, 3773, 3774, 3775, 3776, 3777, 3778, 3779, 3780, 3781, 3782, 3783, 3784, 3785, 3786, 3787, 3788, 3789, 3790, 3791, 3792, 3793, 3794, 3795, 3796, 3797, 3798, 3799, 3800, 3801, 3802, 3803, 3804, 3805, 3806, 3807, 3808, 3809, 3810, 3811, 3812, 3813, 3814, 3815, 3816, 3817, 3818, 3819, 3820, 3821, 3822, 3823, 3824, 3825, 3826, 3827, 3828, 3829, 3830, 3831, 3832, 3833, 3834, 3835, 3836, 3837, 3838, 3839, 3840, 3841, 3842, 3843, 3844, 3845, 3846, 3847, 3848, 3849, 3850, 3851, 3852, 3853, 3854, 3855, 3856, 3857, 3858, 3859, 3860, 3861, 3862, 3863, 3864, 3865, 3866, 3867, 3868, 3869, 3870, 3871, 3872, 3873, 3874, 3875, 3876, 3877, 3878, 3879, 3880, 3881, 3882, 3883, 3884, 3885, 3886, 3887, 3888, 3889, 3890, 3891, 3892, 3893, 3894, 3895, 3896, 3897, 3898, 3899, 3900, 3901, 3902, 3903, 3904, 3905, 3906, 3907, 3908, 3909, 3910, 3911, 3912, 3913, 3914, 3915, 3916, 3917, 3918, 3919, 3920, 3921, 3922, 3923, 3924, 3925, 3926, 3927, 3928, 3929, 3930, 3931, 3932, 3933, 3934, 3935, 3936, 3937, 3938, 3939, 3940, 3941, 3942, 3943, 3944, 3945, 3946, 3947, 3948, 3949, 3950, 3951, 3952, 3953, 3954, 3955, 3956, 3957, 3958, 3959, 3960, 3961, 3962, 3963, 3964, 3965, 3966, 3967, 3968, 3969, 3970, 3971, 3972, 3973, 3974, 3975, 3976, 3977, 3978, 3979, 3980, 3981, 3982, 3983, 3984, 3985, 3986, 3987, 3988, 3989, 3990, 3991, 3992, 3993, 3994, 3995, 3996, 3997, 3998, 3999], "showlegend": true, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-111.1279057764054, -110.22279035671345, -126.91569611840764, -102.82096774260722, -105.9389877055615, -98.1917877618868, -97.18597703445823, -96.35351151679471, -95.89117932990646, -94.08771258275127, -94.54650989126367, -94.44092400746038, -93.40567372509912, -91.92023438505669, -92.4838869311118, -91.74454581209494, -92.60453806162566, -90.15981078042961, -89.81599316759885, -90.41554084481815, -90.48047261572016, -88.90518202752472, -89.45104718820112, -89.14169019695609, -90.96428751756692, -90.57301295889486, -88.98837183836145, -89.59697668188653, -90.95570727145602, -90.79948704540008, -90.49548853455634, -91.73938271030829, -92.58281129809802, -94.68828539813038, -92.15679778453905, -93.91932883816168, -96.60259318508734, -95.4206228195603, -96.22837552832733, -95.4159144021868, -95.865139591417, -95.86332568758122, -93.25719012518456, -94.25002906440335, -91.80374798193853, -93.39772573570613, -92.66492660441233, -90.73207143560947, -91.03107955174272, -89.62455549577484, -89.21232295685653, -89.0134394806999, -89.01231478407617, -89.19609617663055, -89.32807990820449, -89.5563970244452, -89.12125395979604, -88.9882632040941, -89.21299084439912, -90.310399373288, -91.32489875642622, -90.84596916048821, -91.47075375299232, -92.92961484800207, -93.35968094335394, -95.6301634110142, -97.4491722104946, -96.65403356221661, -100.56644586737033, -99.4042550172831, -101.0257966310025, -106.73096672351902, -107.26489670089396, -113.45317210755603, -108.60198807920284, -114.02122415415802, -103.07844863075164, -101.93211911003642, -102.79163863466609, -98.2161554112844, -98.35705127707027, -100.07373143825147, -96.93990018064191, -98.67755825352279, -97.37487535284835, -95.28430972262127, -96.2403766093538, -99.3292202305369, -99.99439835227902, -98.48333453979876, -97.00980782978237, -94.84603099107197, -96.99384002761101, -98.00610705061666, -94.2364844702877, -96.3283400555796, -95.65493409235336, -94.51420312588168, -95.02170996221602, -94.75579876023161, -93.59620366962916, -92.57307704035665, -94.91733084436667, -94.27219251036286, -94.67224908317007, -93.6314214596247, -93.98428694467766, -91.85907951897269, -95.25332536174588, -95.62453320281864, -94.574353794405, -96.25789992657434, -96.10275897530373, -97.69997808563573, -97.62747378482072, -96.79368201466724, -99.9784471652743, -114.6312002952776, -103.90167436490523, -104.92731518484098, -110.61343208848145, -101.66136528824345, -102.24201756179603, -96.24024879359553, -96.48974136637507, -96.34996998845114, -95.30009016334866, -93.66695477554899, -94.57587097324745, -93.55903338033065, -92.14775093137084, -92.0148593504961, -91.15893263227859, -90.21339048824848, -91.41745584497109, -90.05339613631149, -92.9399705361111, -93.82327678836562, -92.02964850232071, -91.96683900203863, -92.9302294628553, -92.84933142006793, -93.39933657551852, -91.41825348019762, -93.23581776503418, -95.01643869635492, -97.66880385977757, -94.86317741945089, -93.84883656210275, -90.87927867148723, -92.2708545074873, -88.73731251808165, -89.14710173675266, -88.97391632052036, -88.1070755449827, -88.6541838849888, -88.3786403381147, -85.75878767811282, -85.85954387021191, -87.38147466282236, -86.83320498451883, -86.97530478025845, -85.84999019851112, -87.4889918010139, -86.91025065866313, -87.22686272419574, -88.5969116282122, -86.22070052270337, -89.36822486116216, -91.20283515230845, -93.25666613631334, -89.94099131058786, -91.78860730893796, -93.09889919484215, -92.16433255375938, -93.84875795879486, -93.56851553153555, -92.5580460801583, -92.16060014221651, -95.63578534522472, -94.06692467638766, -90.24791691605145, -92.04206225713925, -88.14869640297964, -92.01514118491131, -95.27649246964143, -91.53077871642809, -90.26622832187559, -92.75609320901313, -93.34107951666182, -101.51254825933168, -91.44120970187652, -94.88134907370254, -88.39665071581751, -91.53140331827774, -102.27726395865261, -93.0937776332971, -92.24712278627167, -100.81326714566394, -92.05270334965051, -91.92542270772441, -96.5778618913586, -91.27100467244051, -87.78171550456742, -96.5993380951818, -91.13961992487278, -98.02356991630957, -88.51119864169407, -87.16329411840569, -102.62622015902336, -95.52224430966378, -95.09980593900089, -93.01120985117711, -86.07806388612411, -98.71689444766191, -101.76911574116917, -99.29988803418294, -96.29753495423654, -89.72751073288138, -95.20590400259009, -89.55397835359933, -92.93968242265422, -90.24309894387974, -86.83397057665539, -92.47094829645668, -86.76902384952527, -91.73809874323645, -86.07212110087617, -95.57742821142989, -93.49353359594159, -86.83327248710685, -89.99331241659823, -87.89892649225254, -88.4031477912419, -89.68134813038206, -108.1554913291046, -98.27205770459781, -94.61592150312329, -92.21613793611624, -90.01996534603006, -93.4797910828712, -94.75032011463091, -92.64588431148499, -86.11330714112583, -87.51143521722338, -84.68211881075904, -86.87666289321623, -89.87367432317029, -89.87131557441123, -91.40991858554762, -85.23142743718932, -88.49196151530235, -84.41394070328164, -87.1691240581918, -76.71097157840151, -72.49872659290745, -72.23758331903372, -77.0707541955487, -79.33200954335105, -78.4319419106823, -79.38706864108255, -85.38803120503879, -80.77684573692778, -78.8631984010926, -80.70562833247892, -84.2658135823969, -82.61127791185963, -80.87203578376658, -77.75708278932105, -79.03043749755878, -79.75604115207103, -83.74831281515989, -80.38771659201922, -82.2416221927052, -83.48295350857012, -80.54751565954277, -78.8080489906674, -86.06991291740616, -84.1714263823057, -82.27675750788579, -83.10320865398828, -85.5634829025152, -84.24898312298606, -90.66542938159321, -85.52710462952042, -86.43241332496387, -86.81040153443823, -83.58724333416411, -85.44152788887953, -88.84766168552233, -86.61860125305267, -80.30583328453648, -83.13338057487378, -86.11071630846672, -84.31138112821611, -83.71845507891186, -80.98815945410706, -82.66725737987996, -86.18668033871583, -81.78113566346589, -79.01915000319318, -80.53645123479505, -81.58509872576693, -84.44596055433439, -80.69064307057353, -82.05812313377245, -90.85708365835386, -83.1150028765054, -81.75104659543267, -82.50082038645166, -81.08751196383241, -83.6485645804917, -89.3536408717752, -82.18075882343686, -84.29343162690702, -85.09669782860092, -81.52258794673847, -86.81983845648219, -82.19025635875325, -83.18557720197651, -79.28316417005094, -78.66337886537052, -80.33995067015533, -78.7865250812572, -77.81743259035468, -78.1406287665678, -79.9783720149176, -73.78266000549274, -77.0857293126892, -78.11428642838285, -75.56071498623021, -77.96636658368985, -78.94218714058178, -77.54152451323543, -76.09344842520127, -79.42340736770096, -78.13665653399579, -78.57340320114629, -78.02163436368522, -78.41845650142824, -78.31969754671107, -79.62268615088169, -79.34715377435194, -81.58539936535931, -79.08683020377754, -82.91336267206809, -84.78499834614269, -83.66921490762235, -85.52407750990736, -94.11702070016969, -87.70019509597846, -101.07001275489819, -90.3211226411345, -97.05772011837644, -96.11148264396753, -88.36812045746672, -89.80513355690974, -88.2237732258206, -90.46324832817206, -81.44927378179352, -80.5834791079895, -87.21073700497956, -84.17418525507713, -86.94574090844543, -85.46371962870137, -91.00571908395183, -84.3780557408011, -88.9246657294064, -90.83013639524015, -88.53507654753173, -103.13132690872371, -93.09661837553632, -92.68257746546682, -93.06847364136374, -99.05935977538138, -92.59813401438763, -93.84399472009413, -89.01282793677223, -82.93334967280714, -82.39324007338934, -87.19892994401755, -85.40962378745957, -83.51656487772546, -83.7625455243559, -80.2443908770765, -78.67538510994272, -81.0790683399266, -78.03397535235952, -81.23865880062607, -77.92666794977433, -77.27367167739926, -77.75310248260233, -77.23802882186209, -77.16011754493118, -76.74854786590194, -77.51516450103776, -77.33340458648945, -77.00217622631607, -77.83121732570264, -79.17598956644001, -77.21618126880037, -78.77588336078385, -78.88723732050894, -79.1220367727623, -78.96478493576855, -80.20627659796872, -81.78915693739482, -78.03957648941841, -81.0236334846002, -79.29268241356355, -78.13422614415764, -81.133088169871, -80.90196009309324, -79.5275184705192, -80.44195048706591, -78.82015682599582, -79.96766161528679, -80.86914521790351, -81.19472617907178, -81.64048391334022, -80.23921556708395, -80.54263483468121, -82.28992675365288, -79.88144555911828, -82.21826869588779, -84.12310152621245, -86.65659323015737, -85.07679052994266, -85.49374231528628, -80.45168936221765, -81.54538918980595, -86.04211822870181, -83.3354955254933, -82.81597807058995, -80.84899206596619, -81.90501394155028, -82.92464769709736, -80.12588450319568, -80.68692247202691, -80.4668895802102, -79.90032383860049, -79.24703538257303, -84.36930481236513, -79.68765157245927, -77.37347932983407, -80.59321261173716, -79.62544230030424, -79.05904848967147, -77.77459579960248, -78.16959993266329, -78.3845972862067, -79.76561463068384, -75.9368410542396, -78.22415960977031, -77.5054200323506, -78.95894219263238, -76.3392152051168, -77.02520214160423, -77.03397324532195, -77.74295951882196, -75.7364877958133, -75.98932699390161, -76.17500134997877, -76.27271709949812, -74.5997462767531, -73.85183680804745, -74.1640273454995, -74.48572877895118, -74.38207102141916, -69.64885742984812, -64.41549782095446, -65.84883481250557, -71.26274655330847, -71.50335769800618, -72.23319955918763, -76.10936831970075, -79.12837992630674, -82.12985027737099, -83.62206464391745, -90.49426884603257, -86.69090665204573, -88.88538785768299, -102.17959257604082, -98.3459971721015, -93.2268567021896, -97.49208808402715, -89.9170797307905, -84.42493074093257, -87.9263439255733, -85.2724263960155, -80.63162445414575, -80.88380792669943, -82.53928342580586, -82.48697970293128, -82.27932213133104, -81.0233690138162, -79.31160162520752, -81.03368534080991, -82.51832969429437, -81.40288879334521, -84.53821001125236, -82.09580996961347, -81.22209583431282, -79.30248589726642, -81.98384323833251, -83.42195405979346, -81.54317258479733, -88.80535505461046, -83.6881745827146, -84.60611200311207, -88.03965798389231, -87.07538818056918, -94.67033477317734, -93.21854057471168, -87.85021783046378, -85.11121094024404, -103.22336978631093, -85.74995285217744, -89.92373546568474, -91.09646396407729, -93.65600184706408, -95.43936884696217, -85.79214716048776, -92.18379708866689, -85.90931854745932, -82.62870084921332, -85.711582768195, -82.95381551687989, -81.74449709652066, -84.05080509410806, -81.02453342258954, -79.3903508709696, -80.82370917434943, -79.19777040035642, -79.37808368734493, -80.5884208983356, -79.72251320552671, -79.09860605612192, -80.20828791155239, -80.86703958685527, -78.68279187044703, -76.1959282127049, -77.4926181223058, -76.36107619144526, -74.57345964171394, -79.20320259601353, -78.2857853114878, -75.52753706406185, -76.48780232811161, -77.00931905785625, -77.07912376842229, -78.26110230332137, -79.65504499674127, -78.62390421290618, -79.79732454009786, -79.68479556051457, -86.94511486841022, -83.74517715170421, -86.47974442711613, -86.42707320738177, -104.37894580936428, -93.7067040128282, -96.96310625461587, -91.56716157467956, -91.30659844203615, -86.85775746826232, -84.81560016645709, -83.67543661722004, -84.23410994591534, -82.6737719556447, -84.00157517702428, -86.15927759335791, -83.60537669243591, -82.3931832327242, -81.01121411332768, -79.72441576819108, -79.70903896591619, -80.51653810965307, -82.11828379319311, -83.04535583051644, -80.34977118368533, -78.29345991734031, -80.16323145872025, -77.60234129771392, -76.94938949325908, -78.427641401611, -78.5953799737633, -79.29090550207908, -79.16022904018247, -79.64393408512349, -79.17406539786123, -83.09522724598023, -79.31413546240354, -80.51276978481238, -87.2895785194698, -86.13755388323358, -85.658764998425, -84.65351506548458, -87.83603362436695, -90.66223984292462, -81.62933646696294, -83.56699622501304, -83.73635315026256, -82.97150923617122, -81.11144668459467, -81.45773303997203, -79.62882713386848, -78.98617908216978, -79.19143147305444, -85.46356952683867, -78.47102195897376, -84.24207185670276, -79.86860723071865, -80.43966892866453, -79.19547404275934, -81.70013993206013, -86.22784628669324, -82.30023599631087, -81.44528322452899, -78.57134757902541, -84.04795616072886, -79.79342130021236, -79.70725632627473, -81.7424748894588, -79.21762732081966, -80.1159618701058, -81.6960647957825, -82.64129275271398, -82.13860053661722, -81.18119245883179, -82.7884410294015, -82.48613246596177, -83.57243516002627, -86.52015910209727, -86.18694595984013, -83.91010172129666, -88.18292389111058, -84.84007076983572, -85.52247006170462, -82.73986809162363, -80.72886932779086, -81.11237443453673, -84.59374372808291, -82.68431301695024, -81.60764659272714, -80.38423325315549, -82.58733945895442, -78.32227134820957, -81.02798651190263, -84.27699223939841, -80.6080398938268, -80.11592310958491, -80.40081841576095, -78.63115637741588, -78.63303714485264, -76.31117246421907, -76.45878161733185, -74.23185181323616, -75.49092076181226, -73.8006800697679, -76.00110450230866, -79.47495016672048, -74.91971333523193, -74.8559487265797, -77.39551485044358, -74.81913081874, -75.62194876193576, -77.54191287768263, -75.7750025673626, -74.97578034262685, -75.64297339854431, -76.16065176650791, -76.47987427808148, -77.18394683860471, -76.37779062405458, -76.37953361977397, -78.21185067567993, -77.69164929572399, -77.55467472990605, -79.23679263271043, -80.20356874693867, -79.74651343629476, -83.34004685854033, -79.98849529791616, -81.21793501413208, -78.85487204030662, -76.84404141036336, -75.00037631141394, -79.40541625247766, -79.5846268612443, -73.28732512879458, -67.29684233270709, -64.12852670744874, -75.02824762668794, -76.14671817933252, -75.84386452715266, -73.89360388447132, -74.55059483341532, -73.03676855461684, -75.42018663585982, -76.517926038625, -72.78799699357565, -71.61459304343934, -75.45884408936247, -79.03506063381884, -77.8026363719776, -79.8346079773531, -80.24278013909255, -79.87269892463253, -80.89632047773404, -81.96055595388509, -83.37090811524811, -84.62683620891674, -85.19220739814668, -82.38631834524998, -80.7525874250833, -82.41145797376436, -80.34732882413454, -79.26679233286312, -80.61786382420055, -78.87215892964075, -82.2186456230748, -89.35910343643806, -80.09595821182144, -89.65842445872116, -87.03461820416082, -85.84092463898065, -84.51155979133486, -88.41683364565307, -93.3967584686704, -85.31874038660021, -86.69030988752158, -84.66923922881314, -90.48615918601632, -86.15805939967211, -89.62025261874368, -83.84193367936456, -88.6147154293069, -90.35989121174657, -97.54105850731575, -95.55488790642711, -88.28341791450481, -86.29068496654129, -84.58019646642794, -81.08915635564314, -78.79318151509747, -78.52216651935328, -76.30105356032234, -81.02526799747828, -76.64033248885792, -75.37344817920848, -77.67929869465027, -76.20114192639276, -75.74805054188748, -73.36072652768844, -74.57116231610792, -75.5820380403753, -74.07311766203239, -77.6204937972229, -75.55528628034354, -77.41734649361392, -76.2143701264659, -74.3601460999552, -76.93851074236721, -77.19834591915058, -76.04541468003005, -77.28709756421127, -76.55559900483694, -77.04413140700171, -75.6979243005097, -79.14362298918122, -78.05096519158778, -79.5990173986535, -79.65152131556606, -81.4138118296988, -78.78001796921222, -80.1707563264631, -80.67336968548668, -79.250422909509, -77.86916694509961, -79.99440514314378, -78.22224825563082, -78.8624585971124, -81.04995939201564, -80.06370601163516, -82.78990960298096, -80.99208315319623, -79.00233901407779, -80.29457538495745, -79.26327696557965, -84.05638656962118, -79.92772991815545, -83.90944102509359, -82.58048070176228, -89.34460613398096, -91.90104065214746, -84.12921000750215, -88.90522760718596, -94.56184570967852, -101.35948260356386, -91.6864612599155, -84.89115442916004, -87.8157894321092, -84.28239725248035, -86.29722158522361, -83.59414688361113, -86.71856263039919, -83.23294579363466, -82.46137563648837, -88.59851069426287, -82.86750458139878, -84.05427880751992, -82.55565833621317, -86.23140605362624, -83.66640526950178, -81.34454864963791, -82.29741617243043, -83.30655936547727, -84.48355867271374, -83.86132579391665, -84.69782985373911, -91.37678308783192, -88.04802447632923, -90.32797195003721, -86.63630041868038, -89.02150834654704, -86.42017837839994, -84.55981011024124, -88.29068829259606, -90.58034060615489, -82.40175253384935, -85.64988904212642, -88.0196759580119, -83.76394637926009, -88.37151920982011, -81.70128296552853, -84.99210324232051, -86.27254974430507, -82.42863908890357, -84.03783644262427, -84.68138978702723, -81.27099285661052, -82.18951458596814, -81.41823928661924, -83.01819952323187, -79.93571410181028, -83.97262158933157, -80.89579914262045, -81.82697458431831, -83.56943700019038, -81.9372103150564, -81.12884493899932, -81.30284220002403, -84.07176066873164, -82.32955687714833, -82.04015042696014, -80.48451148762015, -84.87981726188454, -82.38160315870964, -82.33155316896756, -85.14256716175524, -81.38022338088467, -82.04265657317494, -82.5161812955566, -85.89637231749295, -85.65708193482764, -81.98855165437608, -84.25581496142601, -86.48609896590129, -82.89117725699596, -83.06818914979338, -82.42209035945193, -82.57605119444732, -84.12203526917479, -82.35129276046933, -84.82608589393983, -84.62322327228028, -79.36421733429165, -79.3860155127041, -79.2620997361436, -81.50031597108674, -77.29151346752242, -77.40870574464778, -76.28499398013284, -75.3888359445969, -75.58870404898897, -75.88830123169797, -73.8406611908948, -74.55404408978748, -74.59339152589237, -74.2432474548261, -72.2540837994474, -72.95543138056001, -73.31874841687639, -72.69815871481828, -70.88239384247797, -71.4986293934344, -72.31100701928719, -73.30713638496142, -73.84714644347828, -72.7995015161423, -70.97323603666793, -71.60650275703543, -71.24086677816753, -71.9916117504309, -70.12887625788379, -70.22964252389163, -71.59385102101052, -70.89801102152032, -68.41855085735452, -64.7442515356068, -58.87813976190359, -53.34566073903658, -58.56024791442971, -65.94652265393414, -68.57314800107767, -68.74350875520462, -67.64031673823149, -64.98463610430836, -64.11005878089911, -68.31298004165734, -73.87322492418804, -75.82074141056064, -82.57085507428016, -85.16755182628037, -92.79314066821607, -121.79031565990871, -86.0174205809958, -95.63096096871976, -90.82933405396874, -84.81361841975429, -85.82554531994924, -86.5642811537206, -96.34052415406546, -84.64912470120032, -83.41455199615336, -84.63482483455017, -86.21956973640151, -82.08501855922398, -81.27557087301243, -83.77394208714534, -83.56347972969225, -81.86019433657266, -82.63448186413828, -80.0332895620364, -80.8219119610533, -80.45966828302679, -80.44612782097477, -81.2231875093839, -80.7512314471906, -83.89791653262753, -81.9605024763776, -83.65142512565328, -83.65223564951819, -86.2963866880354, -81.26015386506083, -82.16845737262183, -82.40856262963747, -79.42664545771953, -76.53403294825777, -77.02118448637019, -76.36115060644553, -73.80588771814108, -73.87373198800829, -75.07890346082172, -73.36737206181759, -73.40530105697334, -72.8880453420235, -72.1453826304687, -71.85790408700414, -72.52894839196236, -73.35719079851367, -74.09265235989642, -73.71949338937581, -74.38903229575247, -73.96409154725615, -75.48444941873751, -78.55857330968561, -78.48860775028547, -78.78702471912854, -77.78456738985656, -81.16611195830905, -80.4941458084255, -80.39321766005335, -78.77170109079083, -79.68049258143236, -77.17265683507352, -79.60335365747477, -78.60682587472675, -79.20322283033573, -80.31155523307615, -81.43899571451948, -79.2447603233322, -78.39248983186073, -82.53280699544521, -80.56852175395738, -84.79105066403517, -80.96542712392454, -83.04709913717637, -79.35220044985786, -92.43326693105607, -90.88379298502295, -85.2626814590208, -85.05654838877355, -85.62351822414955, -94.11819630957379, -93.21909799688184, -97.23263285050912, -99.25633105814961, -95.9326324096667, -88.75617337691574, -89.12201723239863, -91.48059085859686, -82.37499552318204, -82.94520129575983, -82.9607029875506, -83.28389900091051, -80.38938072044809, -80.17186102121342, -83.16020332662202, -82.10453122061934, -79.57352918136182, -83.53113734306189, -78.79546304138421, -78.2080407255509, -81.61163039289869, -78.34495826211985, -81.09288134215095, -81.10667418952684, -84.50184349712822, -80.36300132272277, -79.8836807143397, -81.80314646593064, -84.67937070577884, -84.74108058218698, -85.26093688776969, -87.71082368323816, -98.82821190904232, -86.88468756922076, -83.35904915458065, -83.93449210438018, -86.36166810561362, -88.69360136547861, -82.43167284004402, -81.16034360037263, -82.84207185119853, -84.42295096278114, -82.85952345756469, -82.31945648496522, -81.607122974576, -85.39321699339061, -81.13894979698136, -84.96596206871202, -84.91755072503403, -82.90202276384755, -82.81275242903929, -88.84063735200101, -89.46722461306817, -84.74050875566994, -84.01184184749555, -84.41321554863347, -81.62965920459733, -82.36533965888793, -82.98168327396651, -81.78769786563163, -81.75110893488069, -79.61130322819065, -86.78890536850061, -82.20240877888446, -81.82099116976659, -81.19576362284442, -81.86908868891231, -80.13552257738253, -80.2083861425869, -81.26622304457013, -81.71211802026873, -79.92925263030195, -82.70643846369126, -80.98223620290186, -84.01418914397456, -81.50334322854933, -77.67745687875498, -79.83023646097479, -81.83004726337555, -81.08339257625778, -81.22693480553511, -82.14721700134095, -80.37128770339628, -78.88678018431145, -80.10247697716261, -82.30697225181778, -81.04835479015755, -79.0349132787362, -78.8504367878887, -79.03552718069345, -78.94084052076546, -78.10674535148007, -78.17818221567946, -76.64326894295793, -74.89488619370272, -75.60907841724493, -75.9237342397472, -73.56467617451028, -74.0190520744129, -75.07039529106513, -75.36751864823388, -72.88640409462876, -73.70519761069447, -73.4820715084321, -72.80780462273779, -72.23009104832775, -72.45826535561848, -72.62999327101382, -71.68163541512646, -71.0594130448578, -69.87935829409678, -70.5808791913107, -70.77800476452676, -71.31601078931251, -70.2259625197281, -69.01017489878902, -69.47928132796731, -69.08154809374689, -67.99573252001093, -67.46753751849607, -66.12988060659944, -65.31120140637336, -64.13611065985268, -62.2586015140203, -61.106489469343956, -59.98228859122133, -57.60167653759778, -54.560800283020264, -50.574795465305094, -45.7335690753076, -48.575348795086235, -56.14602841310888, -62.122639236871706, -66.85644435565388, -72.78655525004433, -61.68301244690494, -62.70892337964926, -64.99929822113005, -65.69560158226957, -66.12965954353756, -65.95701552688047, -65.57450991546985, -65.27538771006404, -65.43245062109027, -65.67055952179811, -66.19177545163357, -66.62828961830088, -67.50314210805354, -67.80669906770274, -68.14130755039932, -69.39144392697274, -69.73222909099465, -70.51249282788405, -70.79886676222495, -70.02458468010956, -70.08332780194682, -71.1807849695853, -71.49384789261516, -71.22589709719955, -70.65819640088662, -70.8582523301064, -71.40230692933395, -70.41738688165546, -70.06412218171235, -69.53874219533014, -70.03911157520886, -70.13532941180117, -69.73276230039554, -70.45880679685537, -70.70378402162038, -71.67986677595638, -72.74400706840028, -73.07778356237321, -74.47546742860746, -77.46498929520156, -78.81480201149694, -81.74488970237479, -84.97587196824927, -81.13086691581672, -77.69658493958904, -75.70003573173912, -75.22185739050724, -73.84694993840233, -73.07711775171987, -70.40826308058615, -71.80916134296578, -70.72633100095821, -69.65758937002943, -68.64932835166555, -68.9684144330225, -69.05730659934817, -69.56490824566137, -68.79568690674961, -67.90429812747388, -68.07820537971246, -68.45403480415067, -68.30489050506388, -69.3320608543347, -69.57159708050274, -70.92838433913364, -68.95048588254093, -70.25164806698939, -70.97360868992361, -72.15362137881183, -72.5293763841799, -72.86589072941084, -73.06137512413453, -75.5565723196899, -76.3670772798435, -78.53128543180661, -78.2532482744397, -79.01182903305552, -79.75593107717437, -79.40413452982698, -82.04007972858031, -82.5137820396486, -83.78160094759865, -82.77203483227075, -83.37034845016127, -81.22099735651065, -81.3909889394001, -83.82413786448043, -82.50223978451103, -84.36588642074794, -84.55529686038757, -86.83665084946333, -88.33821969679386, -87.60499613218937, -92.10892864861023, -84.81401215415458, -87.7259611468861, -86.39634729920422, -95.21457685502875, -89.93696754287058, -85.32899095934701, -85.25508401358435, -88.34183207396664, -80.99376245915954, -83.75432608578521, -84.2460465595103, -86.80547686646379, -86.73673607707046, -79.20790079033135, -87.17818938617414, -82.92864907199825, -91.04410465622564, -80.4340243710401, -84.73437114721082, -84.89741914609888, -84.30186980889391, -81.66089765120097, -85.97598174875812, -81.01963063211156, -83.26007149904386, -82.25558604017291, -86.08693311836971, -91.64122520749302, -79.68720451176844, -85.92176122638506, -86.34275697419125, -88.74169156310947, -83.6272077417115, -85.20995029140173, -84.56504939033627, -85.15550868943413, -91.5301578929474, -91.24269454660381, -93.71965325746024, -88.54615140503259, -87.88645918252968, -102.8914106195084, -90.4914873346872, -89.20041140179515, -94.16533601141879, -86.03014202604223, -92.74604162736398, -82.69697416755687, -84.18617043418605, -85.56548195143955, -89.70648302323275, -89.07924036273889, -94.2071260294992, -91.90160877375222, -92.42196615522624, -85.45136838076104, -88.82918574681722, -87.39413935098364, -113.16058363764414, -92.2477602226675, -89.53165159768002, -101.19957507969613, -83.53364934152901, -92.63679514278854, -88.13010766859145, -87.61800781660008, -88.22721467998682, -91.55073866047637, -84.84023337981634, -92.43619914067985, -83.75632143931671, -90.59306866529727, -89.03013252040496, -88.95728448180589, -93.59389374555178, -90.79351881271123, -91.3045310836719, -92.77199258235609, -85.85669776768393, -89.48638756992756, -84.64710217712984, -83.1671603255516, -83.27932174003557, -85.48556930489191, -84.88703310225478, -90.02998641457594, -89.47951454697116, -79.98078050890479, -83.26861047346983, -82.4490862624047, -83.28833712985931, -82.57752967337606, -78.98963369159632, -84.35333562519206, -81.23878666183768, -87.30234782867994, -79.80260019981061, -83.56091295655133, -79.82666902734418, -82.63485637929247, -79.97274047311527, -82.4933325715626, -81.72954128234379, -80.60063930431453, -84.177957429826, -81.65541091258507, -81.55241463970178, -79.78171440751416, -78.87262898420855, -83.4907104533584, -80.19756146370129, -81.8050689649388, -81.0722747321432, -81.64332349728278, -81.198549764041, -87.38630768463496, -81.3679292126907, -78.9728448779832, -82.78752594244895, -76.83954992584837, -75.18763533978324, -71.83584282482946, -67.16023564047066, -72.20586731978034, -64.31220333011206, -58.65406981909804, -61.79225045963789, -63.597325713860116, -65.53982371333582, -67.49709125813787, -68.68556419412197, -69.70227510566293, -72.70538752599099, -74.0752296776839, -76.7149849065996, -74.47626505813238, -76.75979348996646, -76.04062863460976, -77.05107798747987, -76.92607592243934, -75.40362667780289, -74.29976087189252, -76.88478604978175, -76.96678710366697, -78.46085682705032, -81.93796418587448, -80.14278051059479, -82.93372172876586, -82.23508244931205, -90.24397393470471, -98.6310841847756, -80.33601076134525, -82.67603853194181, -77.55698368322089, -77.14352578573626, -75.64110669449573, -72.59844415178182, -72.87773575248832, -72.94019714308166, -70.99918063115986, -71.26840342807748, -70.94039320273717, -70.1349515598804, -69.48341176435348, -69.5259706087696, -69.87142723168137, -69.44457820688737, -70.58543944958384, -70.93709264857657, -71.02117774747919, -70.45058069174215, -72.55558368318935, -72.8002769571708, -74.52022806122358, -75.22603194510262, -75.07449482533514, -74.10374403570857, -74.84484162544304, -80.30431288489473, -77.37202201948527, -83.97268892130464, -83.11053289669856, -92.37077704789456, -89.0034067252364, -87.26269382044984, -94.37482843153307, -88.337237680227, -92.41696677047253, -97.05838260123059, -90.64021258920599, -94.52542265278043, -85.10353634353686, -97.21477297779623, -86.66364884834101, -93.76497241408404, -85.5570669987847, -89.26503997257481, -90.69027094243962, -84.19551087132615, -83.39334858170902, -82.25397882916653, -81.36580571407059, -89.72089157564645, -80.9805142289139, -82.5049387200775, -82.22316051592404, -81.16681511628401, -81.48141146617847, -78.32509386996911, -77.40141954147819, -78.31392181196416, -79.37295793340772, -80.59335212534039, -84.14452208521746, -81.14812577415555, -89.69304590807474, -85.82968230066408, -84.43660261201117, -89.49316097227131, -104.2314522150214, -86.24849426536639, -87.48266663067172, -83.01355727692362, -84.64765844589907, -82.33343688193028, -85.0466319167726, -83.65273833036346, -83.11610130876377, -81.99085598097659, -78.67441541497334, -85.68387656792275, -77.83209646027245, -82.9976900060163, -79.18141179349823, -81.6096755943469, -77.50772942657551, -83.00641137903193, -80.85134190802154, -83.14221480568037, -79.66328748895333, -82.17734246538308, -83.73457926894017, -81.88412252478498, -80.75631939136399, -83.94916876090315, -106.80235472931145, -99.639773537308, -90.27409899888424, -93.77115582738021, -94.61024770407181, -88.49981785098252, -82.10813795322639, -81.94052915941845, -80.86161915316382, -87.41649741153175, -83.49789262985752, -82.42981812807358, -84.99386167641134, -81.62777464550422, -82.45255805099362, -81.26783622459378, -81.17620769303042, -78.63890218160745, -83.78286594204475, -81.54775137073386, -80.63926481981221, -82.29093951648032, -81.93449367078136, -104.57388308488535, -82.19725538865575, -85.10221960892639, -83.59086604266322, -86.77174858685302, -87.49963304150926, -87.16710500651844, -94.76969842957892, -96.03478214412718, -83.53806889141939, -83.87351987521481, -91.41391992740054, -84.16458057311235, -86.46893047808632, -85.91523640818073, -84.96593287364905, -86.87464857547802, -85.48593793413774, -80.31825161860675, -87.74187524041298, -86.10845169833297, -81.93601100852649, -85.11083858918778, -80.32517807319735, -85.22912026141358, -81.26191109057608, -83.05342406663284, -83.71376397321187, -84.21567621432133, -81.862425511236, -86.5424027130675, -87.7999585506727, -91.33317826476039, -85.83146571503153, -96.6185789077378, -90.2563881102785, -89.42448324184697, -86.74602760000474, -82.892134551823, -83.70040310282448, -80.1033584456104, -86.25095822387614, -80.57093896076293, -83.27832505621608, -81.7685257263819, -79.97149322124649, -82.03724719514227, -80.08497405975439, -80.73230797515926, -79.47673186972044, -77.18474015541685, -77.55139810690193, -77.44405767259939, -81.27036851519621, -78.06431482989284, -77.44361719050276, -76.9277670404822, -76.37605741191996, -78.6069437194092, -78.56123786855736, -76.58536949944941, -76.04834206488816, -76.5466382600596, -76.35368434202735, -75.91144391171939, -75.94086199300578, -77.17152086810043, -80.20756735354355, -81.9000615665073, -76.6033692863979, -77.82694643815395, -83.78202074792708, -81.63400131445414, -76.34915075197446, -68.87048646471813, -61.255013121921834, -61.513207857951016, -67.10648201079168, -64.38472433025535, -67.16705421524483, -68.92347579791976, -66.27421995867107, -70.66228513787296, -73.33019277253257, -74.19683364778929, -74.18000071055035, -74.86709297768212, -77.19541062208812, -75.38231499267806, -82.0753137107986, -77.41124867386793, -77.04043594008276, -79.80931897566617, -77.32003116113253, -78.19697885953354, -74.23301226435335, -73.93772592871568, -74.79388555168055, -72.4025482399301, -71.41172932427979, -70.813102936115, -70.73734454304073, -69.16545777655404, -68.68487690212702, -67.0477374611122, -67.3938320250729, -66.15927648526348, -65.48923401545403, -65.79541453096533, -65.51038337694037, -64.74642164717226, -64.27090445467778, -65.14090594234068, -64.91445252327492, -64.66373437015312, -64.93284999240976, -65.06847708578357, -65.01283228037914, -65.72891165494242, -65.68384391889981, -67.32556468040639, -66.74078172397196, -66.9829431573194, -68.30677473984281, -68.51279019728746, -68.9550616414082, -71.9629405580393, -71.82588542131262, -72.56345104438626, -74.42161931418534, -72.99924715382467, -75.14956165543163, -75.90541272319382, -75.22880764071277, -75.2374106506037, -76.67149497327132, -73.34696569110116, -73.05957273659797, -73.23249912150864, -72.56379244384777, -72.99036880505972, -71.42674786126956, -70.82670721472044, -70.73957190784412, -72.73754282839876, -74.17235128429606, -74.76621322751978, -78.6277978726734, -78.88196397522876, -76.34355668868527, -82.07141976718687, -83.01138460675259, -84.51410813762126, -80.10692120942872, -84.00937831755044, -79.27711628439349, -83.37544640993602, -81.4164679238266, -82.19380159422401, -82.19657997280508, -79.31313601950076, -81.10936099115006, -77.54978830111752, -81.38431586259614, -79.91904037706304, -79.56721691575007, -82.30845847616892, -80.44097097992172, -76.8896615125332, -81.72932676012765, -79.60215673831352, -79.06377288831987, -82.78170780885743, -79.48854211623957, -85.08198414301972, -85.54264583873122, -82.1258459816988, -88.2377778323118, -82.90395128582969, -84.23149708106581, -86.07960575505703, -82.31886436704742, -85.75976758262273, -86.37744090936424, -87.47885917247153, -79.53918203634204, -82.34992150524407, -78.87476025862006, -79.7896334230838, -82.59801745633379, -77.87156761623228, -80.33565390546057, -79.29965148952044, -74.37990226471986, -82.42505788041363, -77.09683358145486, -80.99283220449884, -82.90587753670594, -83.24071490039208, -80.07067385377258, -89.17094670149176, -84.32810346993742, -83.57377304078143, -83.7150112967513, -81.96210293768894, -83.39142087518326, -83.97837021131649, -85.86413553338207, -80.50547461556471, -81.53205803927696, -86.52759323929675, -82.64349989193435, -79.13471967362509, -77.62940440119978, -79.8860477422491, -78.07296738779434, -78.65192343258296, -79.0205126474821, -78.90947978525773, -84.68875791846352, -78.49750522483413, -78.45433054077927, -78.43028156969696, -77.82359464976332, -78.53615338811719, -80.66288110767553, -78.32462180315886, -82.64416031158973, -79.71447370617201, -81.29070823051542, -82.00000425493171, -86.47415937836449, -83.62147984335661, -85.29805281206747, -82.88504956681422, -83.35734548944683, -82.90496473846686, -92.50178852890913, -91.92796578907767, -87.71771678560496, -101.34639730841654, -93.52137457020285, -88.5684906029959, -98.45248709916319, -83.66896956652124, -86.75481048601553, -82.87174307377059, -90.40908302904826, -86.48175323150497, -78.28326408939645, -83.92909528323338, -86.27819657394843, -79.79220681038859, -87.24324711393311, -83.69682271384144, -88.09693909414219, -83.90671416959262, -81.33394373579532, -81.45392510812059, -84.25644938006045, -86.1581820191118, -83.49538645522833, -87.88126164473238, -83.59306847044026, -83.1475765465082, -85.3524401499533, -91.00775096886233, -86.66326087249092, -97.52413914646664, -100.1031725698928, -82.33049487653263, -84.01211134676433, -87.65026233717182, -93.75433698504995, -91.13176662008678, -90.26892733909878, -84.08281951475922, -83.13575964654274, -86.6283205339682, -83.99896961246998, -80.53084578635355, -74.17090843188909, -75.29422571713434, -74.15700749790017, -72.9859930456003, -72.21048475551834, -70.60316015976814, -69.91961538950066, -68.18073519038542, -67.10482169598032, -64.70449365640621, -63.50478869982824, -62.72394191776682, -58.747871454849914, -56.3792640123127, -52.58348096437143, -47.448473342791644, -48.33993844738102, -54.099725985680706, -58.48423472075641, -61.124890753648984, -64.83144116966712, -62.48756673667511, -61.017014490818994, -63.28306132919646, -66.28949530816033, -68.1418666041955, -68.1686005303014, -69.23777131566177, -69.00143336147497, -69.27062061837225, -69.47021777908218, -70.59243564240748, -70.02395219048174, -69.02107627357391, -69.27932660355287, -69.4155062848924, -68.02160654701032, -67.47986774361321, -67.31276519827244, -67.47982926498602, -67.25601019720128, -67.10142628049495, -66.79502853150053, -66.61675410199435, -67.91691429756693, -67.77030459877452, -67.97486148964511, -68.12645647780319, -68.03761464796517, -68.87230245796069, -68.70856348999985, -69.77837770019188, -70.57705228945964, -70.21995792558424, -70.06036223164361, -69.37636508603654, -71.62933442998333, -71.53399828720163, -72.68978051533144, -72.67955155454925, -72.83012195413596, -71.93963813161304, -74.71397003761291, -73.71873032853338, -72.58437690107127, -74.71800110013378, -75.36314046313808, -74.61875016587561, -74.7859845949128, -73.50446763789121, -73.03445832077661, -74.34423171002504, -75.21163798983595, -74.31805780282451, -76.89931569852497, -75.51792290747117, -76.62014784821854, -74.15233253313335, -73.21758165968868, -75.14850084856232, -74.32538233139422, -73.71664479857239, -75.08768149024863, -75.99291366605985, -75.58387257251098, -72.72611266357121, -75.16168524852456, -73.24154332232536, -77.02299975732367, -75.63124125218472, -77.55582623308258, -76.34830844593203, -76.09080819625427, -76.98874858654452, -75.82300153569675, -75.40191500773658, -76.10129880540461, -75.80681107183781, -75.65377042330158, -74.91878090128037, -73.6083202943543, -73.63448574013853, -75.05320079067599, -75.22571159937964, -75.56128127636242, -74.35063307888414, -74.91897928849946, -77.81148598901706, -74.17070791805091, -76.02044013053364, -78.29720665316059, -76.5724072116243, -76.12823335937125, -77.37938396763072, -75.63582902822742, -77.63439245768674, -77.4621755779201, -79.95442548414273, -74.70613322157998, -75.90252337755933, -75.12894529089442, -78.75452900265587, -78.28916533236944, -77.0296401033442, -75.60335551487827, -77.77303439978836, -80.20569766101386, -78.80988052727746, -79.4415760625504, -78.22112971294571, -78.377199853093, -78.79420982433457, -78.08498632620373, -75.59547188531927, -75.49404360797021, -79.4930057253289, -78.61671471753877, -81.07374929192481, -79.18141782722309, -80.57535077122569, -80.43021256193866, -80.69587144008653, -81.99106318023247, -80.30648879366838, -78.37751716460969, -81.75617504484079, -78.69971776627798, -82.57274088910519, -84.13315065926264, -85.20974488592353, -79.31234596797322, -86.98893462227446, -79.84399013306471, -82.33973574225031, -85.16431376492383, -83.7151668333469, -81.48839023643791, -83.71275688517841, -81.99439626943646, -93.47027366488881, -86.2662796447236, -85.98972016462241, -89.7497886225581, -86.36786710449113, -91.55371952582311, -90.67181149469319, -83.93612150690407, -81.77760483778924, -92.89011106975377, -85.53062445276527, -90.30903385492458, -88.1636391529299, -86.05272121876283, -87.7740537613824, -89.07547499016088, -92.65291588313801, -84.6583377223046, -99.05509377120941, -88.61120338504696, -84.79551570457801, -83.47898664681443, -92.70904840928765, -80.34137311816893, -82.80477029950228, -85.3868812656471, -83.44930111265425, -80.62942885822591, -81.7399694687711, -80.4310749708365, -82.30489547530384, -80.61369190656382, -81.32663312523256, -80.82146417851772, -78.37160422955779, -83.32095416444054, -79.41284801681809, -77.18693307350878, -78.78077174894496, -77.75724852502844, -76.54452953376355, -75.69829684278649, -80.87915254625881, -77.59163684423254, -77.92004398931181, -79.5188353384882, -77.92186025591103, -77.33794990708525, -82.73610383113837, -77.18878095139394, -78.08872879400377, -76.67152753575132, -78.6724413272818, -74.91486996017032, -74.79668251474777, -76.79175470072519, -73.31361035233252, -72.06754243137725, -70.77775615760575, -69.97137737894298, -71.30217721703224, -69.7724981322566, -70.86681108150971, -68.21679248054404, -67.82355889657633, -68.27677225578233, -66.65343745680732, -66.25416010352293, -64.39313794580413, -63.529545400949985, -62.274983913353594, -62.253023332444755, -61.746115012535896, -58.955572244475995, -54.55311236108002, -48.94890776092665, -39.09207669003827, -41.493760049658675, -51.004768447423736, -56.33409225929568, -61.564902104236054, -55.996497226617166, -57.758358007358304, -64.40289646967807, -65.68699907910904, -65.62299215193312, -67.3105645678857, -67.5126886647365, -68.88286165514032, -67.24728464729668, -68.38640776744921, -68.5883803002403, -68.61351144401289, -68.7947891968641, -65.46015434963208, -66.41659847049684, -66.60467347264296, -65.59038511318796, -65.87154496298668, -64.70591056366567, -64.26485840594677, -64.07424036480684, -64.1751442362428, -63.42084764721023, -63.93691882575963, -63.67641594480275, -63.96163716377961, -63.89229463694758, -64.04110973530102, -62.73701894119243, -64.21606716947184, -64.3446866960158, -64.5850726093629, -64.59824027773406, -64.36014845046441, -66.45820914014695, -66.79115578932803, -66.9447764878584, -66.65850255396039, -66.73309646888713, -68.30666717246635, -68.89473130042418, -69.4989505501882, -71.37266287399254, -70.28993986834672, -72.88643830844907, -72.5472370520919, -74.1109055099481, -76.40783566963746, -79.06201134185005, -80.40850797228123, -81.1563536981356, -80.52439500469704, -82.51223437162794, -81.94153834562955, -80.19240732791538, -78.0083971801343, -75.44484413880436, -77.3556326239717, -75.70019280840631, -75.67006724992078, -78.58053820880352, -80.62179693698069, -84.19164168137557, -82.98618242945194, -82.3377485565141, -88.381947877194, -86.69791362038204, -85.92865485920956, -84.32173494770353, -85.8723073671064, -81.6372918657751, -81.175520126339, -82.62481453829648, -79.87540797699674, -77.17236175792787, -78.54468839448097, -79.77150773486586, -80.53157544892616, -79.66383719665384, -78.51191099298318, -77.94484777470717, -79.78396634625508, -86.15384309354747, -81.18892135349458, -80.25420059587623, -83.1906331949839, -81.2732961874819, -88.19790959238476, -90.18909481446155, -83.07201844121437, -87.48474847642419, -90.22585149851663, -88.7457709955723, -84.77920957425228, -97.43376688081894, -96.48514868456132, -89.50453755118195, -88.94011371574368, -92.88020099953273, -84.22240535023025, -87.13288010971965, -87.31008898041051, -88.89162189317693, -89.18558349604581, -83.08254242477614, -88.1920764364049, -83.32619948762827, -83.47817452080973, -80.48588938933732, -84.24214397685927, -84.04195989724099, -85.9890696716026, -81.66095543568437, -83.91150780214886, -80.45156335503039, -86.06051959858016, -78.1582972178384, -87.86089888754148, -81.77353100405165, -80.5556693761641, -77.44509801153853, -79.77129111395212, -80.53872683725186, -79.61552982593626, -80.90038889516116, -79.05676798361097, -80.48693217709128, -77.72522944419683, -86.0497161883132, -79.26449516296324, -83.46557649363032, -86.18971186353076, -85.78785129259586, -80.16753104820063, -89.46388791034843, -83.79119284790976, -79.92014041868372, -80.75250256215698, -79.77836365559115, -79.06727247783805, -82.58565887847632, -79.56111958831399, -79.9586491941642, -80.10037292590232, -79.99002759432182, -77.23204580887614, -81.37043553612872, -79.34252410313209, -79.22946596005255, -76.02813924683684, -79.11178365323181, -77.22869031651184, -75.70240288541322, -78.19252297465556, -74.92241861250825, -74.95944263639745, -76.6620888475772, -77.88655620800802, -75.63354290384196, -76.53789876665725, -76.72817325992497, -75.99861144434554, -78.25534667830355, -77.79180364645626, -79.96302372671433, -76.81180124570486, -75.52797708720875, -77.61658173923297, -79.14552629194073, -79.52827617663023, -78.28376599544966, -78.6766497974873, -80.67613472961874, -82.86337774817282, -79.04847001012962, -85.14461983550683, -81.62909345813718, -80.2997938664927, -78.72618239666916, -85.19336719293213, -83.22701186297904, -84.83720729636632, -81.46009960088432, -92.15382444857815, -82.60882229829221, -81.16946011815486, -80.9518054581796, -80.56957563972244, -84.77194024856651, -84.64445716614034, -76.68928359724873, -78.7555033662939, -79.10405174846336, -77.07199482539777, -75.63722659086456, -76.15073312964516, -79.24072557279497, -75.24180589509238, -75.12050328150595, -77.80043932313504, -76.16042753715428, -77.12202890601816, -75.32843026701174, -76.04473859760017, -76.01625370669042, -72.76716923070657, -73.3713575819898, -72.93795715684928, -72.4463357185439, -69.13299663000194, -70.27713460496388, -71.19929406564337, -72.70529537217354, -72.21044936138823, -76.05398208734533, -72.16866500418548, -51.41254705563913, -54.94507470743963, -56.064002991313274, -60.5347642563929, -61.66257877636706, -65.28064442811258, -67.97406527400358, -68.83015614902038, -71.0452005083104, -73.45274823547012, -74.2942650067164, -77.36460455970514, -76.78549964410689, -80.37078844070248, -74.45605145776054, -72.17787583787393, -70.44275207460586, -69.58521859590115, -67.6402988319419, -67.05583291996928, -66.08288626295115, -64.45571630629364, -64.0075629497579, -63.557212203853396, -62.6567162375012, -61.94055512179162, -61.51859760101046, -60.5353003142622, -60.97644525155453, -60.802145732828464, -60.113379850167874, -60.69952191357846, -61.08361631779211, -60.99300382594373, -61.486986903330454, -61.62643806174796, -62.18212857447418, -62.55287920555492, -61.9775865439454, -62.973556480924245, -63.03270625617016, -62.977333947989855, -63.30611607192458, -64.34477575361116, -63.908368663300706, -63.87620626749833, -64.00334840949637, -64.0251908408862, -64.58543856538122, -64.94673763285309, -64.5987818574637, -64.69299038837154, -65.21588234960261, -65.113024178901, -65.15316630434212, -65.07138957823395, -65.54570267314098, -66.49133706565705, -66.62705628034745, -66.88678326102863, -67.19878483242128, -67.59444003485216, -68.83572025411485, -68.3385393899674, -69.3702627530121, -68.92521703488362, -69.58015355293423, -70.12884361598866, -69.88578752846696, -69.68595739098666, -69.48273540611159, -68.27294316537875, -70.13623425289583, -69.78642129816406, -69.32254791121494, -70.96382759657143, -69.73530252850581, -71.12025212707108, -70.50836094224537, -71.41426442509587, -71.34402023869117, -71.68559334864065, -71.9943543924482, -70.16971959065897, -72.27010207939925, -71.09556942507017, -71.08295157432894, -70.55233297352382, -70.83117963256441, -72.17039125453242, -71.09593833747198, -72.0977294089896, -72.20803315271284, -71.88065369015115, -72.81147370050599, -72.13233931947745, -73.29713073917203, -73.15881531156825, -70.28261047991981, -73.74503891200061, -71.42266630720025, -73.41115043994566, -72.97150513399512, -72.46081491904557, -72.34894364631722, -73.66925106476238, -74.7913425175315, -74.01702488920867, -75.26199771309943, -75.03515476509962, -74.23891913693649, -73.73554823720428, -75.76745871788383, -74.51017596399825, -75.88740360957993, -76.23283435338557, -77.69135364440855, -77.86910157694041, -74.88637882919959, -76.7309069419826, -78.03009707944985, -76.08129552994151, -73.89452865972478, -77.20470602253316, -74.64416332802375, -74.95498756148683, -77.37823120798475, -75.98123903609961, -76.89963497760625, -80.56301373115426, -80.18893996858311, -77.49624829334037, -77.37573676070969, -78.87427776577411, -76.00354998424764, -75.4066450311028, -78.89846265475273, -77.99040663919585, -76.08012658430721, -74.38304133799639, -73.58213563318226, -72.69712782918756, -75.84178606232183, -75.4909724118358, -73.87347567571729, -75.4352780239483, -73.7039566603483, -73.82277665852276, -74.9332236952086, -73.94069159069322, -76.01683705852433, -77.84619953664495, -76.28595061498066, -76.34693212991473, -75.29373334184893, -77.77874937753825, -79.76345754724083, -77.75215127996616, -76.37679769998412, -77.45590121656615, -82.56880452507062, -79.93453063086396, -78.39425628583213, -80.86960994069558, -82.72000293275062, -79.29530064618397, -84.06044804752698, -91.12580616013467, -87.94129014776271, -81.6848426710613, -88.82220291959088, -83.0983564565666, -89.84196399561799, -81.19428977313154, -90.6821517312011, -84.73617544598352, -90.12367983391051, -86.18857650876613, -82.75135737514894, -89.18022132985008, -92.91375037255753, -88.23367532595628, -81.00391104627107, -86.82915696068848, -87.05081810462481, -79.56049965463153, -80.3904372288388, -78.16945420009044, -74.9275485674826, -77.53825480589258, -77.6560141032177, -77.22995883632177, -76.35283201702731, -75.98892529476447, -76.30742161354729, -73.43901631270077, -75.392276519664, -74.68963583050726, -73.80809936761995, -74.53781584831742, -73.22482975017543, -72.37150731545937, -73.50735292310839, -72.23437396796065, -70.88751334479505, -71.3664186800471, -72.04079041128085, -70.84840770750412, -70.71930405999322, -69.56958919842074, -71.10190478342653, -69.55158921677133, -70.73367628548199, -73.28697155748971, -70.32329524812336, -70.50002185163628, -67.12833384616036, -66.73404072544767, -69.7256124557058, -66.17159299010675, -50.80559558508262, -53.399076423088204, -59.98918619155277, -65.68679265762901, -67.49519600667246, -68.09294444068009, -69.10548756694843, -68.28753503364842, -71.75536469907715, -70.65015150157082, -70.89413032685033, -70.59211182784776, -72.04822175191991, -71.67091412383924, -72.08971118118141, -73.61166491684615, -72.41558611082309, -74.70779768333796, -74.0542781241823, -73.32052726897237, -75.01487095295823, -83.13572487739135, -86.88266635718747, -101.04356049237776, -89.90457778254284, -91.1691545675778, -78.2273968673259, -81.96787354155003, -77.41711652718845, -75.7952022862089, -69.60180304872983, -66.12927754884934, -66.67631253447587, -66.7644030770818, -67.13591146024777, -68.89876905129265, -69.13092683199591, -69.54026095643715, -68.8437593566004, -68.95142660369166, -69.63193014559221, -69.76252430013002, -72.04762319516337, -71.4747841433765, -73.30067764835778, -72.22879816571428, -73.32389225352452, -72.81616238848568, -73.22701638707083, -73.9369720998677, -78.44663345937855, -74.86062355558514, -75.76594601501272, -77.2839824356551, -74.93602079443944, -82.3772868615501, -82.40282214464554, -76.90904285277713, -78.73314520017603, -76.63277050089785, -82.65267514864306, -82.89173924366972, -77.90052832618254, -80.75746616859946, -79.12209735288849, -76.38701847778722, -77.26882938135881, -79.71361474401019, -78.81315277353386, -79.64788478708789, -79.76347443463678, -78.91579155243339, -80.32777254845325, -79.78924529976722, -80.87866544766439, -83.82662784707412, -84.43379090757743, -82.14278974755985, -88.54859237223226, -81.65440593758852, -94.8695387470786, -85.4488784994394, -79.23564391488645, -84.68371782268115, -90.45649828112133, -92.94494577662644, -90.79218909511144, -85.93707311359496, -85.09092208760778, -86.45116821155113, -82.70599256453312, -81.57053715615635, -82.20641346604813, -80.16637479237309, -82.21967566590153, -79.89337922234778, -76.77085556194413, -76.9201219261514, -78.45814715404113, -78.58414169538085, -77.98398562319827, -75.13589208160207, -72.51034181816676, -76.91709489876973, -75.12858823533327, -79.86142359346158, -74.68357278336089, -77.54559190977295, -75.64857734415796, -73.69150837124347, -73.35631880158031, -72.2345199024092, -73.37775226333045, -72.20741726205488, -72.03855039046242, -70.3350126088171, -74.79691934706709, -72.91928468116812, -73.60649354173587, -71.52141728010355, -73.98536791328468, -72.81632218244636, -75.456401758872, -75.69026142419249, -73.93878789291588, -76.75549862807816, -74.17548237958806, -73.05385490933105, -75.84733949094408, -76.87278882667636, -75.63061406914917, -76.3702988159529, -75.12978190321566, -74.79920028398584, -76.16570898813916, -77.97849052006565, -77.43279644193953, -80.17940195793244, -79.21877315981251, -78.1163735524459, -83.46657275310493, -82.71005202299888, -78.3358259042574, -78.78335949423769, -79.22256458419012, -81.0833345055154, -88.2666580464003, -79.56996975934844, -82.7987893750204, -81.16229898085874, -81.10319391496981, -79.1619420271908, -78.42301547181772, -88.86823296818682, -78.29514078702111, -79.02831113134891, -84.18423333778634, -84.36639692831982, -78.04005706934882, -77.0079821092184, -78.08063267306717, -82.92562494285347, -80.10420423328897, -79.07017690521403, -77.0544255068921, -76.81418066321433, -81.83533694014953, -77.5125321896679, -75.7085142973313, -73.60727645903536, -76.07940875509891, -74.20063063199721, -74.35311453449772, -74.68577145774194, -73.4995146601594, -73.49316180556067, -74.15237223826816, -73.27774182456416, -73.94864628603123, -73.72316182082565, -70.19612869430077, -71.12065385526785, -70.57300565936532, -71.20210528579622, -70.9753091951906, -71.3029983613553, -70.4968933340462, -71.59789160583551, -70.5840566647146, -69.67289076531351, -69.70979579089133, -69.64701574318957, -70.07673022488609, -69.68349372761631, -68.90584020062097, -70.11985259415094, -70.33991588400893, -68.66782790764805, -69.55448072982281, -70.54478015962262, -71.14340524305533, -69.26537019131315, -72.0037161108789, -72.06318244706794, -72.06782080339823, -71.72369344542761, -73.17606849609834, -72.05956210485665, -70.99631677589925, -71.19832004561687, -71.40263972899768, -70.0575203333858, -68.84882821631778, -70.90646015252737, -71.29568479536191, -69.96135569513625, -69.72836461923002, -66.25070715086667, -66.40379669931423, -64.36371930570475, -54.829642615452755, -46.31472397303532, -58.86118005584339, -63.982609148609114, -54.04691666467269, -55.18187755224866, -59.980926627410454, -63.38964930081238, -68.27184860334805, -70.49025645712666, -69.93201951047595, -67.94678472458901, -65.72466020635142, -64.19412261310117, -64.66872498633167, -63.9091684635472, -63.175437437102396, -62.61905844021855, -62.69862198366233, -61.56365015054692, -62.10078393064961, -62.35245672129807, -63.77258165826957, -63.79539129608767, -64.10001823736258, -65.02631386394353, -65.51028514327184, -65.26720734001657, -64.34023885549158, -64.92342403987612, -65.96090113114349, -66.71338975278049, -68.5211337684204, -70.39839457654563, -71.01907448935256, -71.96958791629221, -72.95703577721932, -72.01187297829509, -70.45282736653894, -72.9187728541259, -73.62951353727375, -74.64535408736437, -73.70249294108527, -72.51734457223567, -73.02986236728931, -74.92469207639391, -75.118989748736, -74.6580306343492, -78.33853885741848, -73.62424924146508, -74.72911479514465, -76.44596132354182, -75.30621110383231, -76.29053901428186, -75.91212629591568, -75.63334992621158, -76.76120379533758, -74.53481785903902, -74.52318523711187, -75.86507829031814, -74.39554259476827, -76.37677727910146, -75.82654223314607, -73.5747014138346, -76.95738492807246, -77.99700170783251, -73.77275883849317, -75.73075870498906, -74.45850668883392, -75.28160681288561, -75.80607686162477, -75.89901754176933, -77.19281254795833, -77.14633693723948, -78.03759604386644, -76.54308456352972, -76.91715736125951, -76.47566071764697, -75.59598494302874, -75.66390035859504, -81.95695418163223, -76.17805943672391, -76.59926899554854, -76.72146057073942, -75.78079491443155, -77.21087236072053, -78.63850883993638, -75.6243988301784, -78.19951349183724, -77.98066046366998, -81.79976556175481, -80.55564867424988, -75.80617689686576, -80.10930672823649, -75.6223251537874, -79.31366804072945, -78.46253266864701, -75.40205810904641, -77.59914451130761, -79.78618901923147, -80.45807776579363, -86.61815415340654, -80.79903157982974, -90.09844240432089, -81.57735514708477, -80.66272925286754, -84.05700949101532, -86.28630436594882, -89.55936677404024, -86.24819982155644, -88.31694787184509, -77.33542412739482, -94.03696182982388, -82.55140596737918, -82.72359598019791, -85.97838612464962, -86.98345138139268, -108.77783734859867, -81.5698797028538, -84.77357160755562, -80.10848326627787, -88.62862184920974, -90.98274533897909, -82.53366652931128, -82.86230707176598, -84.03125206883541, -82.72691942930743, -85.64627337648096, -80.23976647554312, -80.6464505241644, -90.62929816607814, -80.1128310424647, -75.4147848488978, -73.56235383941464, -83.22164159948309, -80.80518629715614, -74.21603678693427, -74.37331336731823, -74.8936385914914, -74.79924840457934, -77.81715863834339, -73.29296227489134, -75.57955201862852, -73.77764522954759, -73.79085374931029, -75.98578418420362, -75.00527865221949, -74.75718099367586, -75.24886397403887, -74.97616280035489, -74.4402388575075, -74.06499855854851, -72.34078634923958, -72.80130582385371, -74.38266063318605, -77.06569511447292, -74.04223302207282, -74.2448878432123, -78.11860679539315, -75.36301758476337, -74.70966873958301, -76.83667168361123, -74.84471145392799, -76.12937838947768, -82.57890675381796, -75.90455449196031, -75.35869066173493, -78.6557306991844, -78.2159783958525, -84.45889046559158, -79.64807866912727, -82.20651610748212, -79.76579597736195, -85.48035071603178, -91.07717409710104, -89.14880265183555, -84.25696317718274, -80.08058855563738, -80.4601897033143, -81.09414922971723, -87.58510967470755, -81.33299168524417, -79.34214628130495, -78.24725073684193, -78.17823903686511, -77.23004974481628, -75.68587085237505, -79.23031485374014, -75.70001490521028, -75.4729028897965, -75.01982519024494, -76.95144592287514, -74.86104237655488, -74.72146571994313, -73.80296136501047, -74.30073561710947, -72.15933466221426, -73.67731947149858, -71.42341013077956, -70.39031083705335, -68.92753822913515, -70.42212130597228, -70.17707533614492, -69.60869831111229, -67.66829558033828, -67.06138461491629, -65.86437308587301, -66.27100017959516, -65.52010477691299, -64.81345254428946, -64.13509312351101, -63.31764354580309, -62.63170600593078, -62.021983068256645, -60.676122823354376, -58.39703979279329, -57.61520618545547, -55.328209108456754, -51.99772874043272, -49.55930150869651, -39.550308155094285, -36.91231430119692, -46.686041086015955, -52.54790943308685, -51.06805723901004, -53.448866944802276, -55.34451207630994, -55.6085633580136, -55.86978245340178, -56.44333877730068, -56.74720031829334, -57.54682874946873, -58.50690531591315, -59.082139828891144, -59.65659789018702, -60.94665869828026, -61.421522432968665, -62.44243962114487, -64.17093309872479, -64.93736494046945, -66.68545330016627, -67.56814655510652, -67.68341084395901, -69.2473009115039, -66.82495705811861, -67.72128163151069, -68.43521790353415, -67.42697766611646, -66.8873459881166, -66.91944447258726, -67.38603240089128, -66.0351561350243, -67.32539456274722, -66.3546148919439, -67.44950506544572, -69.10167392441356, -68.1098458291212, -67.91607765857471, -68.33256255926926, -67.50988811742704, -68.48738045689272, -68.00838168658159, -68.68116218978555, -68.55459782154429, -69.19957568924664, -70.75639043760073, -71.68536580480168, -68.8173123373048, -71.33079080716713, -71.49585290410023, -71.43696097888149, -72.45685880883966, -74.05244772221526, -73.7553285986124, -74.05553109501629, -76.81560127386662, -75.90033958022826, -73.05942667536587, -77.49064602073099, -78.7610170757728, -74.9995948645851, -71.3377689635068, -70.1667138365812, -70.82759549215805, -71.74504291238512, -70.82190678033277, -69.88586545974995, -68.68613803582907, -68.2252795689093, -69.92307447934239, -69.20499860327374, -68.65944577447203, -67.781862078703, -68.6358401625451, -69.44713529127793, -70.66528996647698, -69.06234844232532, -69.48897120283921, -67.37144500623313, -67.33532884492502, -66.88121008933484, -66.99091585958024, -67.41858851052368, -66.56668765670274, -66.09166273369405, -65.91095474535919, -67.15115904025936, -65.75809100919946, -65.50017108496047, -67.37602627892716, -65.74038979785716, -67.19533331115275, -66.68461539883555, -66.49931940024388, -67.25531804382146, -66.79811345612481, -67.46022488327918, -66.87124012315675, -67.92091909978377, -68.19624659217607, -68.86505375225424, -67.44884763133848, -67.75132948774542, -67.29878543134367, -67.81907954322897, -67.49498606301157, -69.07425452852036, -67.56605968920461, -67.55765475732126, -70.01914859507912, -68.55484244514398, -68.7402597332341, -69.36135428513762, -68.38844135161048, -68.33222040218322, -68.49797878998997, -68.04415158679896, -69.65515708390281, -68.71131070823678, -70.22198054357767, -74.69535194882377, -69.8667106505233, -69.25947605099387, -68.24103333768227, -67.00661101922483, -68.54175442706233, -67.43209877575676, -67.71802649836258, -69.40859767193037, -68.17042726062877, -67.6747749650765, -68.70435388033785, -67.79955540984304, -68.79967242339353, -69.24609556119907, -67.85027614088234, -70.09926003888457, -70.93961750072475, -72.35999178036964, -70.14130931205285, -72.5839591810352, -71.57264060888735, -72.01764476582683, -73.55295376691218, -74.00234769538943, -71.6885216573448, -73.48025269578228, -75.74385313839797, -76.032380683447, -73.55925179672519, -76.51133770796928, -75.76427784780205, -73.47438436880894, -80.86011598869199, -73.91331580692642, -73.90384800427739, -72.69393478875615, -73.25168865589332, -73.62242271868921, -71.70076787527056, -73.59861187363119, -69.90028260110827, -73.07933612761897, -73.01737583125218, -72.89640457002668, -73.00637768316902, -70.55200051330247, -71.26094905555425, -69.84627648078444, -69.10284214635698, -70.4212239559396, -70.29450730038579, -70.40439169987549, -68.56958779465445, -68.29266841407039, -69.12789974093693, -67.96832177265897, -68.0981424646827, -67.88171890866113, -67.66528087019549, -66.41441419301401, -68.33167021255393, -66.75006734408443, -67.14171018253937, -66.16927918961035, -66.85444426773083, -66.32918232039412, -67.42457342111963, -64.57760577696152, -64.85677982033498, -65.34362968927493, -64.60518988518504, -64.42187467113722, -63.35115338481082, -64.66650236400808, -63.857475582544545, -64.86242038803408, -63.88304131483579, -62.9454425747468, -63.20217203934785, -62.52432414763747, -62.94953911561723, -61.92315272992619, -61.924924161348585, -61.36000978602671, -60.71271663139511, -60.31083809171135, -60.045198013748255, -59.80175555319309, -59.27070591285376, -58.83722547996672, -58.42644411996024, -57.80323847353918, -58.06293388155511, -57.2262492395262, -57.962595844203676, -58.52481612776286, -55.78464937103998, -53.15227256003416, -47.657047200020344, -48.493486521362925, -35.58434073426043, -51.6522714581248, -56.99880095927382, -63.64818713951821, -60.81447885749965, -56.09079978461619, -53.187897302355935, -51.981145864781695, -51.18374993785183, -50.83272186218377, -50.0568630680424, -49.98446832432772, -49.88910576533609, -49.5652274394289, -49.717079991553504, -49.656885130255695, -49.7352549654996, -49.86399279252092, -50.017476896690596, -50.303032739481715, -50.734831946102396, -51.76001516544363, -52.5224163736651, -53.32179960919345, -53.930579265907824, -54.64578538279308, -54.60896465879195, -54.81547639095076, -55.519967677706425, -55.92894835589963, -55.52029035859856, -55.94448628408824, -56.11005113355489, -56.30606324123257, -57.0006038869747, -57.13807730751087, -57.328705831984735, -58.32658827541273, -58.78668324163548, -59.77515680671087, -60.102020331445296, -61.23580335372068, -61.90163591677277, -63.93584542494919, -64.80158532576468, -65.80437289657277, -67.02143140941365, -67.47458665385352, -68.54955305599854, -68.75847485920632, -69.4614408984473, -69.96339196259365, -69.45204306255654, -67.88815041862564, -69.66619225888797, -71.0233421191177, -66.43443321264391, -67.92872549274941, -67.6330695580634, -66.40569055730572, -65.68374960812268, -65.98789164954725, -67.91607499073099, -66.09864900153744, -66.61696272548281, -66.87754027482637, -66.87314091076385, -66.68903512714775, -67.90434615663985, -67.12647596306905, -66.96451028633739, -67.03744091887762, -66.04987682590226, -68.03027730931305, -66.88486930471387, -66.16652951508131, -66.71921708832491, -65.92613671071611, -66.73411832407469, -66.41253379245093, -67.5230245428917, -65.95126322960616, -68.2868177381785, -66.76778610039844, -66.23931426804688, -67.06227446679908, -65.90359738256186, -67.88940494406307, -64.98972958931843, -65.67771243749651, -66.08323031327393, -66.70967669094173, -67.35241211994013, -69.02111468211137, -68.80631117758041, -69.20269857716801, -66.98986606568441, -68.97509735509448, -70.56371321478804, -70.81695313315096, -69.33054512486545, -69.48013043523525, -72.25308714535976, -70.29323495637358, -70.34707498569442, -69.86987303314153, -71.65979378961245, -70.15746885668469, -73.87476987669609, -73.5808199775694, -70.14334970250476, -71.63952662285547, -71.25730806900303, -73.83838941049125, -71.07231757297592, -72.2521556022734, -72.57282817908093, -74.84968803433858, -74.12068351260001, -73.28288398870848, -74.6179231550341, -71.69818821039149, -75.68619641904208, -72.56865321515824, -71.9833564505464, -71.80656177369885, -71.98595543111706, -71.89823727162968, -71.05144909092826, -71.16080938954914, -72.15162153020893, -74.19518066728737, -73.04048342164292, -74.36404518413875, -76.11043319418499, -85.91895335301908, -80.13535765566594, -80.85145086221331, -80.1014075131788, -81.21660966460357, -80.71348283684044, -77.67660016472746, -75.79328414134052, -74.22080679213998, -75.58256674628957, -75.58670795582753, -74.16227184052804, -71.68071135974742, -74.72890917192717, -71.64214791790164, -75.2387598235905, -72.21302802727475, -70.40555383428375, -69.6171549134226, -71.03818882117737, -70.3580889474332, -71.09518582522009, -69.04188655446417, -67.63977406645834, -68.08133870843135, -68.009920083912, -67.32249955446817, -67.77256687943334, -67.69257704989212, -67.24874706220822, -67.5672321564557, -66.69780117243572, -67.651526934101, -67.58351249340801, -67.26464468190471, -68.53081686446583, -66.26009966455152, -66.49847130304326, -66.59006330945532, -67.18418408839877, -65.25300196714178, -64.67826946459832, -65.72230905537529, -65.73216057789956, -65.23523597143492, -65.44773664660687, -64.61079591645901, -65.02417927358476, -64.72515966584683, -64.9255962150082, -63.838390479811444, -63.77895497653334, -63.60588455157492, -62.997503099641364, -62.53452755360265, -63.4180358224112, -62.413223345772614, -62.30079453823036, -62.43470491145503, -63.0819344113433, -61.99035865906743, -61.28019617524239, -61.89092001878606, -62.062953341133415, -62.19022164471668, -62.27528748514989, -61.74086267881654, -62.161380929963805, -64.21951752807894, -63.55503533004378, -62.31657058751398, -62.279565790364046, -62.824256723057985, -63.225955778991256, -61.496485732184325, -61.80649577319153, -61.46377822447664, -63.38915824858718, -57.846200199921455, -57.857298119402216, -57.92684377795827, -57.138022077723704, -55.94590119306804, -54.214563608542804, -47.82457888381832, -27.265771896700507, -41.43364363272359, -69.27894895765694, -56.47313924067906, -55.05271768544966, -55.722787705097716, -57.74483650654653, -57.795041022108855, -56.83379345542778, -56.6757117057281, -56.10802219151771, -55.58161547649989, -55.08393566253707, -54.87985170158539, -54.52307727875897, -54.139761373931144, -53.98929195384248, -53.88398198441463, -53.94891029991071, -53.63668890398853, -53.73957922803959, -54.1076806778601, -53.789818700725874, -53.89983912478713, -54.18643958297668, -54.873562290200894, -54.7912951307448, -55.2968257766983, -55.37607387228614, -55.92737823006018, -56.06642041681795, -56.575680566795434, -57.062685969411035, -57.247823928763765, -57.58165990892376, -58.89209598249323, -59.08507047474498, -59.333880487218885, -60.23858583800751, -59.947513710093425, -60.35957020916932, -60.92057528577146, -62.80480863960282, -62.49456098826321, -62.23938631133024, -63.659276495531074, -63.670971542695156, -64.553685374938, -64.16126178726564, -64.58526195051418, -64.23263697768719, -65.20588947859326, -67.17586372877582, -66.14577318023916, -64.99958619340781, -64.89540640338687, -65.79417614943351, -65.38435016364316, -65.0484777657069, -66.03972676752828, -64.66046347782489, -65.85007322399099, -66.08486371715546, -65.01263066121028, -65.73703047858145, -65.38863701917998, -64.23652277758714, -65.99600860876848, -66.35441822384342, -65.52820889159155, -64.27255756597967, -66.41348393751053, -66.62604128659814, -66.93013674910117, -66.09664014324265, -66.44659566631853, -69.71592212205653, -69.25255798369645, -70.11536022284199, -67.66454500788286, -71.2300593837009, -71.15489221603326, -74.49203191014264, -76.31156883746412, -68.1884312256527, -71.3797566517492, -77.701589106254, -84.89045293928461, -74.85583110923749, -72.60656064356405, -70.38778252607686, -70.29750244060762, -71.64352064594512, -70.47432400004331, -66.76960394346798, -69.05788969388433, -67.19547127762605, -71.14724835432706, -68.28051285643811, -72.22090495888541, -68.76218225610577, -69.7181372476169, -70.65836567566026, -70.80158309312807, -69.6754011172678, -68.62773818886458, -67.18867012729689, -68.05948339376876, -65.92871946680026, -68.40966347240224, -72.71916427321423, -65.45447506625345, -67.71815810429442, -67.76161103197583, -68.08263576622247, -66.54881108803347, -66.35686714370539, -66.49784538313968, -66.14622899295115, -66.4313390502245, -69.0306212400466, -68.46507404615224, -69.96059034347613, -70.59816237130649, -73.1348783310443, -73.27407913421536, -73.19454375666385, -76.42443967504731, -79.00763763769208, -76.6754227616782, -82.1240493955556, -98.01277745208643, -90.06790098436642, -77.82628837706811, -80.43324549712837, -86.9855489827448, -72.97378282161122, -71.884337435085, -73.7246503375022, -70.20507651169834, -75.6024697610208, -70.53775839875077, -69.1850392185596, -70.16132809088388, -68.01066692011074, -70.12079016659325, -68.93714324167037, -72.33122096409103, -68.72613466791259, -70.28939123964331, -69.60125021128151, -69.2029265387997, -69.15934468481744, -69.31260579252404, -68.67391395029078, -71.81647355020287, -71.57357430461265, -71.99102369659487, -74.23617759217643, -77.40821388991282, -79.02353257471782, -75.35147843078629, -79.4632047155538, -81.75920531892831, -77.74713253729604, -77.60034469730346, -74.4048453849585, -75.45266853018235, -69.91842922999801, -68.71748856106235, -68.92653184821282, -67.67988592139629, -69.94636615656071, -65.60687066796609, -65.0059021497839, -65.6343994755384, -64.33055301907368, -63.65323018328893, -62.60273373375436, -62.114740746428836, -62.16695217666076, -60.65329042260796, -60.71691312921408, -60.55439834571309, -59.73358561339859, -59.95164135154458, -58.96485168698032, -58.944750711916754, -59.13291289100361, -58.0399877758738, -57.52310888243357, -57.31826447201317, -57.50748534881889, -57.25090262509095, -56.9106741379391, -56.44153990845859, -57.0407287697143, -56.86658079113493, -56.05482181226398, -55.720978050831974, -55.19042344664015, -55.02617325361402, -54.375395100544296, -54.17441535706261, -53.433898653745985, -53.09771450466354, -52.46473110010552, -51.7429285897465, -51.06303589859309, -50.87028763245194, -50.53088028924958, -49.97551399918842, -49.98856706957051, -49.66834227734975, -48.56720889576202, -48.49297838836758, -49.82680266243322, -50.176035828877374, -47.658700596568096, -42.1221873279716, -21.219589637470033, -30.159173227765198, -40.27868672481966, -43.62342847423895, -45.021673788381776, -44.38152706148985, -44.53594148698048, -44.91065604919224, -45.05605414314785, -44.78685323415249, -44.80325637493554, -44.75504672271262, -44.61021163068635, -44.55007889012538, -44.40423179820971, -44.29275791088314, -44.13037004738402, -44.0264520976566, -43.84306263411638, -43.86205829303069, -44.042128275719875, -44.49432937418287, -45.014216837625405, -45.86864846608482, -46.733275277648076, -47.619707843334, -48.974908535116754, -50.16007153969035, -51.73983803338969, -54.972461535903975, -51.00299905063561, -53.47249526857443, -53.67777279172444, -54.34838423379379, -54.71013895401526, -54.805042467374705, -55.54558119846283, -55.099767169330846, -55.24204139917663, -55.170629015205634, -56.15365225646738, -56.422866201647395, -56.35883886892188, -55.69794053525305, -57.46118294811386, -57.42558247723931, -56.613949204715574, -56.07335418492005, -57.24903579054714, -56.53848967721348, -57.439951528903876, -57.82052055760953, -57.529473822804306, -57.79604801007597, -58.54051158247724, -59.78962134708478, -58.083445515849526, -59.32170498609195, -59.23815598620254, -59.553836744845945, -60.002792624758925, -61.64551994530946, -61.3407985789197, -61.664157213977774, -61.84438544174402, -63.001948734883364, -62.609749652231585, -65.48198345260539, -65.72292291024931, -65.87905995527044, -68.98840447132974, -67.73634070524929, -67.13347048999785, -68.38638996016851, -67.83379364626917, -68.20844274815516, -69.13420617114416, -67.29225648565397, -67.83975229706786, -68.25981568121614, -69.81581125706876, -66.94283691072036, -70.39503628614082, -70.49959563931651, -70.12443105152424, -74.67789687957041, -72.44195859355598, -73.41704893810379, -73.73711788089423, -77.52081367295422, -73.2330198561278, -91.07290937492643, -79.61074733064072, -77.47212061702703, -76.37462118903603, -77.63270416216264, -75.17544827806911, -76.21698007166502, -73.07569662364014, -68.53852129185897, -72.13542837940557, -68.45376684987076, -68.529662483737, -67.20420187499342, -65.22812098834335, -64.06320505860018, -64.34561550724399, -64.24011043705087, -62.95622813412662, -63.23103592890101, -63.8414404251618, -61.33015049713105, -63.66247834722081, -61.892368697904814, -60.599367384929096, -61.65035526480544, -60.629178509890245, -60.2952009854781, -62.112223723639616, -61.26190062573235, -61.287143882559256, -60.38450603296387, -60.57050964994255, -61.940323990580296, -63.571079944157596, -61.748941051102534, -62.84904229344057, -62.92318316540536, -63.60569949083953, -63.97349681586573, -65.08247053243866, -65.71312470330574, -65.09681044931935, -68.86910649804895, -71.21435158490301, -73.06854183739468, -74.66332308897357, -88.94858372920663, -80.23238502337706, -81.03582243421037, -86.67955707372161, -73.61171155617849, -72.73807441150291, -74.22263454190646, -72.63597907463313, -68.69650619632012, -71.18384605530943, -66.69861129417102, -67.93972080068795, -65.62973849470029, -64.83532553060962, -64.19704115469384, -66.07548936651608, -63.45316336946488, -64.28846651257784, -62.92691867946141, -63.805130201455086, -63.5312495737238, -62.27218961406959, -64.1716523734632, -62.893437233512145, -63.031141474753284, -62.38554289737702, -62.984569238293744, -62.34955659523767, -61.98772589108874, -63.22072678216109, -61.75601800867646, -62.365921992281265, -61.39372982121615, -61.94474248021224, -60.62976602472655, -59.96015413673322, -60.03911712401374, -59.00441913788187, -58.64325653217268, -57.518655089558536, -56.8784849618908, -56.92940162513155, -56.860905623515656, -56.22196564591951, -54.84913675896849, -54.74999879039469, -54.635151295422524, -54.03519652252505, -53.63307730947394, -53.231534253684806, -52.5335464788498, -51.94574947991953, -51.72028489716817, -50.92624826657281, -50.004247842402265, -48.0548854489175, -50.42921661004272, -55.79460667372453, -54.44153353894847, -53.11274418699193, -51.31699319356493, -50.199085733467676, -48.47552880618062, -47.359942326236386, -46.18319211797359, -44.47187501342359, -43.420519834784166, -41.890492207433496, -40.57024499522868, -39.32976538076384, -38.400367042368686, -37.33566396502682, -36.444672372097, -35.54519730355578, -34.822916470333915, -34.242431649415, -33.546771185465985, -32.848691781066776, -31.95718534571536, -30.72894519457042, -29.23438091541755, -27.868957325305814, -26.41255619056914, -25.374873292843155, -17.845634268654788, -16.576401766475236, -18.929708950877203, -23.10999806227249, -26.699921568790646, -29.372326462316828, -31.287882829991084, -32.64073091459367, -33.74228602401271, -34.79490955822905, -35.88576400959643, -36.65464330824447, -37.69042482469425, -38.47637881416163, -39.30530857221311, -39.94697603365583, -40.69433335571485, -41.20904003645542, -42.08616882942338, -42.29524737754649, -42.944939892600445, -43.21316116343323, -43.73530086801344, -44.366792794312396, -44.59079369707088, -45.07321613756895, -45.681858423737395, -45.92967276747053, -46.49798787681747, -47.19225629425269, -47.22235310103427, -47.46330033173611, -48.10357445969573, -48.68937765276008, -49.14642607865596, -49.51694621377307, -49.7393753998503, -49.78048752932835, -50.57198785805135, -51.222627775317875, -51.03055224684772, -51.085712155487826, -51.93830657265554, -52.312890088647926, -51.650776041078224, -52.999156763900984, -52.45183013429592, -52.93819396896402, -52.85571603990178, -53.976788179406554, -53.577557854664036, -53.105951882003254, -53.6885394490028, -54.166868376593946, -54.10534554867964, -57.86981941393863, -53.14507898466975, -54.58101116009887, -54.665465110840884, -54.18639633449179, -54.703062942694785, -53.90782717896728, -54.72900542050471, -54.663768813967515, -54.85856708026617, -53.32058089582163, -53.88504041409415, -53.77161289087784, -53.47424714053554, -54.121584580300095, -53.93712848920653, -53.90628509355538, -53.72255012924654, -50.92379001377412, -52.32901127186736, -52.46682827002626, -52.5293040904252, -53.6554482020578, -52.716579781338154, -53.204222492965314, -52.77105082294439, -52.54616249807845, -52.455822450875935, -53.21047319208336, -51.83188482043515, -52.44649401449752, -51.08905787999767, -51.26431030614793, -51.05704543841291, -50.69762102995087, -50.51861275869491, -49.144372639354295, -49.0069186132175, -48.59776616642734, -47.428062123481496, -46.10143080716916, -45.306615731315276, -44.3602078382061, -44.50390694112514, -43.16568641410597, -41.20771754889273, -38.765642491293576, -36.39333235406861, -35.87857141060312, -36.74046077681186, -38.6269727611134, -39.804797208722384, -41.24896891746813, -42.8035467516488, -47.892719148820305, -41.14800449959085, -43.05017148873727, -44.322974736180115, -44.896957743485785, -45.616349867630916, -46.330836167228554, -46.5568578841323, -47.20540422565697, -47.72845586639124, -48.14872030498958, -48.395262793901956, -48.13495560566458, -48.45489704799565, -48.811660783442825, -49.20121602364187, -49.034188689432796, -48.864027666486216, -50.23232910166055, -50.5263338612336, -49.96023979847101, -50.88953912898049, -52.534312657812656, -52.74598888761801, -50.7140422932816, -52.91725587496877, -53.64647769384074, -56.58851150705728, -56.414264276956025, -56.75203407860042, -56.59767494094023, -57.31495580891732, -58.67098463780671, -57.974168208054955, -61.532727433912356, -64.2663425045246, -62.6166333960991, -67.47805900683565, -63.67089395181647, -66.94969660738812, -65.24499416468535, -76.80567777771417, -70.98904990521078, -72.69397290872134, -61.63017437135225, -62.552703356878176, -67.11747277857637, -65.59246345528553, -71.18112863341396, -61.44337828890806, -61.70331945575687, -60.901638591108245, -58.84952508849188, -59.493417514806595, -56.31593812774923, -54.150403521244606, -55.996829716981, -57.961082685002054, -59.64538244892197, -56.50093416451994, -57.80237142719666, -55.85683474380665, -53.45958522340545, -53.028521171656315, -55.36557790274497, -53.324715906924325, -50.451300005983384, -53.70818972464878, -50.95365214291675, -50.55277370878464, -50.48507752880965, -50.299546140589264, -51.064024633141315, -48.75122288901998, -50.33452466651963, -50.244002128491715, -50.74527302965217, -50.00610908863729, -50.943041366179635, -50.92162690606655, -49.35810186045775, -50.90766461948419, -51.725612815376195, -50.770280420126916, -51.904410200018056, -49.470344229371776, -50.257152212042904, -53.24226220361747, -51.980420916056616, -51.743969124686515, -48.85020699121252, -50.19389654712658, -47.87190280642706, -50.930194416952574, -46.83639038587125, -45.59334573208613, -48.25107879791692, -51.75174698140553, -53.0686276665709, -50.83865112894579, -49.87499422617695, -44.60657554211879, -48.48098093994243, -44.24630717199064, -58.95065435265565, -50.174191070626236, -55.0166376772155, -51.27623046581895, -59.93779341355531, -63.28857429492547, -66.46658822251419, -63.28857429492547, -59.93779341355531, -51.27623046581895, -55.0166376772155, -50.174191070626236, -58.95065435265565, -44.24630717199064, -48.48098093994243, -44.60657554211879, -49.87499422617695, -50.83865112894579, -53.0686276665709, -51.75174698140553, -48.25107879791692, -45.59334573208613, -46.83639038587125, -50.930194416952574, -47.87190280642706, -50.19389654712658, -48.85020699121252, -51.743969124686515, -51.980420916056616, -53.24226220361747, -50.257152212042904, -49.470344229371776, -51.904410200018056, -50.770280420126916, -51.725612815376195, -50.90766461948419, -49.35810186045775, -50.92162690606655, -50.943041366179635, -50.00610908863729, -50.74527302965217, -50.244002128491715, -50.33452466651963, -48.75122288901998, -51.064024633141315, -50.299546140589264, -50.48507752880965, -50.55277370878464, -50.95365214291675, -53.70818972464878, -50.451300005983384, -53.324715906924325, -55.36557790274497, -53.028521171656315, -53.45958522340545, -55.85683474380665, -57.80237142719666, -56.50093416451994, -59.64538244892197, -57.961082685002054, -55.996829716981, -54.150403521244606, -56.31593812774923, -59.493417514806595, -58.84952508849188, -60.901638591108245, -61.70331945575687, -61.44337828890806, -71.18112863341396, -65.59246345528553, -67.11747277857637, -62.552703356878176, -61.63017437135225, -72.69397290872134, -70.98904990521078, -76.80567777771417, -65.24499416468535, -66.94969660738812, -63.67089395181647, -67.47805900683565, -62.6166333960991, -64.2663425045246, -61.532727433912356, -57.974168208054955, -58.67098463780671, -57.31495580891732, -56.59767494094023, -56.75203407860042, -56.414264276956025, -56.58851150705728, -53.64647769384074, -52.91725587496877, -50.7140422932816, -52.74598888761801, -52.534312657812656, -50.88953912898049, -49.96023979847101, -50.5263338612336, -50.23232910166055, -48.864027666486216, -49.034188689432796, -49.20121602364187, -48.811660783442825, -48.45489704799565, -48.13495560566458, -48.395262793901956, -48.14872030498958, -47.72845586639124, -47.20540422565697, -46.5568578841323, -46.330836167228554, -45.616349867630916, -44.896957743485785, -44.322974736180115, -43.05017148873727, -41.14800449959085, -47.892719148820305, -42.8035467516488, -41.24896891746813, -39.804797208722384, -38.6269727611134, -36.74046077681186, -35.87857141060312, -36.39333235406861, -38.765642491293576, -41.20771754889273, -43.16568641410597, -44.50390694112514, -44.3602078382061, -45.306615731315276, -46.10143080716916, -47.428062123481496, -48.59776616642734, -49.0069186132175, -49.144372639354295, -50.51861275869491, -50.69762102995087, -51.05704543841291, -51.26431030614793, -51.08905787999767, -52.44649401449752, -51.83188482043515, -53.21047319208336, -52.455822450875935, -52.54616249807845, -52.77105082294439, -53.204222492965314, -52.716579781338154, -53.6554482020578, -52.5293040904252, -52.46682827002626, -52.32901127186736, -50.92379001377412, -53.72255012924654, -53.90628509355538, -53.93712848920653, -54.121584580300095, -53.47424714053554, -53.77161289087784, -53.88504041409415, -53.32058089582163, -54.85856708026617, -54.663768813967515, -54.72900542050471, -53.90782717896728, -54.703062942694785, -54.18639633449179, -54.665465110840884, -54.58101116009887, -53.14507898466975, -57.86981941393863, -54.10534554867964, -54.166868376593946, -53.6885394490028, -53.105951882003254, -53.577557854664036, -53.976788179406554, -52.85571603990178, -52.93819396896402, -52.45183013429592, -52.999156763900984, -51.650776041078224, -52.312890088647926, -51.93830657265554, -51.085712155487826, -51.03055224684772, -51.222627775317875, -50.57198785805135, -49.78048752932835, -49.7393753998503, -49.51694621377307, -49.14642607865596, -48.68937765276008, -48.10357445969573, -47.46330033173611, -47.22235310103427, -47.19225629425269, -46.49798787681747, -45.92967276747053, -45.681858423737395, -45.07321613756895, -44.59079369707088, -44.366792794312396, -43.73530086801344, -43.21316116343323, -42.944939892600445, -42.29524737754649, -42.08616882942338, -41.20904003645542, -40.69433335571485, -39.94697603365583, -39.30530857221311, -38.47637881416163, -37.69042482469425, -36.65464330824447, -35.88576400959643, -34.79490955822905, -33.74228602401271, -32.64073091459367, -31.287882829991084, -29.372326462316828, -26.699921568790646, -23.10999806227249, -18.929708950877203, -16.576401766475236, -17.845634268654788, -25.374873292843155, -26.41255619056914, -27.868957325305814, -29.23438091541755, -30.72894519457042, -31.95718534571536, -32.848691781066776, -33.546771185465985, -34.242431649415, -34.822916470333915, -35.54519730355578, -36.444672372097, -37.33566396502682, -38.400367042368686, -39.32976538076384, -40.57024499522868, -41.890492207433496, -43.420519834784166, -44.47187501342359, -46.18319211797359, -47.359942326236386, -48.47552880618062, -50.199085733467676, -51.31699319356493, -53.11274418699193, -54.44153353894847, -55.79460667372453, -50.42921661004272, -48.0548854489175, -50.004247842402265, -50.92624826657281, -51.72028489716817, -51.94574947991953, -52.5335464788498, -53.231534253684806, -53.63307730947394, -54.03519652252505, -54.635151295422524, -54.74999879039469, -54.84913675896849, -56.22196564591951, -56.860905623515656, -56.92940162513155, -56.8784849618908, -57.518655089558536, -58.64325653217268, -59.00441913788187, -60.03911712401374, -59.96015413673322, -60.62976602472655, -61.94474248021224, -61.39372982121615, -62.365921992281265, -61.75601800867646, -63.22072678216109, -61.98772589108874, -62.34955659523767, -62.984569238293744, -62.38554289737702, -63.031141474753284, -62.893437233512145, -64.1716523734632, -62.27218961406959, -63.5312495737238, -63.805130201455086, -62.92691867946141, -64.28846651257784, -63.45316336946488, -66.07548936651608, -64.19704115469384, -64.83532553060962, -65.62973849470029, -67.93972080068795, -66.69861129417102, -71.18384605530943, -68.69650619632012, -72.63597907463313, -74.22263454190646, -72.73807441150291, -73.61171155617849, -86.67955707372161, -81.03582243421037, -80.23238502337706, -88.94858372920663, -74.66332308897357, -73.06854183739468, -71.21435158490301, -68.86910649804895, -65.09681044931935, -65.71312470330574, -65.08247053243866, -63.97349681586573, -63.60569949083953, -62.92318316540536, -62.84904229344057, -61.748941051102534, -63.571079944157596, -61.940323990580296, -60.57050964994255, -60.38450603296387, -61.287143882559256, -61.26190062573235, -62.112223723639616, -60.2952009854781, -60.629178509890245, -61.65035526480544, -60.599367384929096, -61.892368697904814, -63.66247834722081, -61.33015049713105, -63.8414404251618, -63.23103592890101, -62.95622813412662, -64.24011043705087, -64.34561550724399, -64.06320505860018, -65.22812098834335, -67.20420187499342, -68.529662483737, -68.45376684987076, -72.13542837940557, -68.53852129185897, -73.07569662364014, -76.21698007166502, -75.17544827806911, -77.63270416216264, -76.37462118903603, -77.47212061702703, -79.61074733064072, -91.07290937492643, -73.2330198561278, -77.52081367295422, -73.73711788089423, -73.41704893810379, -72.44195859355598, -74.67789687957041, -70.12443105152424, -70.49959563931651, -70.39503628614082, -66.94283691072036, -69.81581125706876, -68.25981568121614, -67.83975229706786, -67.29225648565397, -69.13420617114416, -68.20844274815516, -67.83379364626917, -68.38638996016851, -67.13347048999785, -67.73634070524929, -68.98840447132974, -65.87905995527044, -65.72292291024931, -65.48198345260539, -62.609749652231585, -63.001948734883364, -61.84438544174402, -61.664157213977774, -61.3407985789197, -61.64551994530946, -60.002792624758925, -59.553836744845945, -59.23815598620254, -59.32170498609195, -58.083445515849526, -59.78962134708478, -58.54051158247724, -57.79604801007597, -57.529473822804306, -57.82052055760953, -57.439951528903876, -56.53848967721348, -57.24903579054714, -56.07335418492005, -56.613949204715574, -57.42558247723931, -57.46118294811386, -55.69794053525305, -56.35883886892188, -56.422866201647395, -56.15365225646738, -55.170629015205634, -55.24204139917663, -55.099767169330846, -55.54558119846283, -54.805042467374705, -54.71013895401526, -54.34838423379379, -53.67777279172444, -53.47249526857443, -51.00299905063561, -54.972461535903975, -51.73983803338969, -50.16007153969035, -48.974908535116754, -47.619707843334, -46.733275277648076, -45.86864846608482, -45.014216837625405, -44.49432937418287, -44.042128275719875, -43.86205829303069, -43.84306263411638, -44.0264520976566, -44.13037004738402, -44.29275791088314, -44.40423179820971, -44.55007889012538, -44.61021163068635, -44.75504672271262, -44.80325637493554, -44.78685323415249, -45.05605414314785, -44.91065604919224, -44.53594148698048, -44.38152706148985, -45.021673788381776, -43.62342847423895, -40.27868672481966, -30.159173227765198, -21.219589637470033, -42.1221873279716, -47.658700596568096, -50.176035828877374, -49.82680266243322, -48.49297838836758, -48.56720889576202, -49.66834227734975, -49.98856706957051, -49.97551399918842, -50.53088028924958, -50.87028763245194, -51.06303589859309, -51.7429285897465, -52.46473110010552, -53.09771450466354, -53.433898653745985, -54.17441535706261, -54.375395100544296, -55.02617325361402, -55.19042344664015, -55.720978050831974, -56.05482181226398, -56.86658079113493, -57.0407287697143, -56.44153990845859, -56.9106741379391, -57.25090262509095, -57.50748534881889, -57.31826447201317, -57.52310888243357, -58.0399877758738, -59.13291289100361, -58.944750711916754, -58.96485168698032, -59.95164135154458, -59.73358561339859, -60.55439834571309, -60.71691312921408, -60.65329042260796, -62.16695217666076, -62.114740746428836, -62.60273373375436, -63.65323018328893, -64.33055301907368, -65.6343994755384, -65.0059021497839, -65.60687066796609, -69.94636615656071, -67.67988592139629, -68.92653184821282, -68.71748856106235, -69.91842922999801, -75.45266853018235, -74.4048453849585, -77.60034469730346, -77.74713253729604, -81.75920531892831, -79.4632047155538, -75.35147843078629, -79.02353257471782, -77.40821388991282, -74.23617759217643, -71.99102369659487, -71.57357430461265, -71.81647355020287, -68.67391395029078, -69.31260579252404, -69.15934468481744, -69.2029265387997, -69.60125021128151, -70.28939123964331, -68.72613466791259, -72.33122096409103, -68.93714324167037, -70.12079016659325, -68.01066692011074, -70.16132809088388, -69.1850392185596, -70.53775839875077, -75.6024697610208, -70.20507651169834, -73.7246503375022, -71.884337435085, -72.97378282161122, -86.9855489827448, -80.43324549712837, -77.82628837706811, -90.06790098436642, -98.01277745208643, -82.1240493955556, -76.6754227616782, -79.00763763769208, -76.42443967504731, -73.19454375666385, -73.27407913421536, -73.1348783310443, -70.59816237130649, -69.96059034347613, -68.46507404615224, -69.0306212400466, -66.4313390502245, -66.14622899295115, -66.49784538313968, -66.35686714370539, -66.54881108803347, -68.08263576622247, -67.76161103197583, -67.71815810429442, -65.45447506625345, -72.71916427321423, -68.40966347240224, -65.92871946680026, -68.05948339376876, -67.18867012729689, -68.62773818886458, -69.6754011172678, -70.80158309312807, -70.65836567566026, -69.7181372476169, -68.76218225610577, -72.22090495888541, -68.28051285643811, -71.14724835432706, -67.19547127762605, -69.05788969388433, -66.76960394346798, -70.47432400004331, -71.64352064594512, -70.29750244060762, -70.38778252607686, -72.60656064356405, -74.85583110923749, -84.89045293928461, -77.701589106254, -71.3797566517492, -68.1884312256527, -76.31156883746412, -74.49203191014264, -71.15489221603326, -71.2300593837009, -67.66454500788286, -70.11536022284199, -69.25255798369645, -69.71592212205653, -66.44659566631853, -66.09664014324265, -66.93013674910117, -66.62604128659814, -66.41348393751053, -64.27255756597967, -65.52820889159155, -66.35441822384342, -65.99600860876848, -64.23652277758714, -65.38863701917998, -65.73703047858145, -65.01263066121028, -66.08486371715546, -65.85007322399099, -64.66046347782489, -66.03972676752828, -65.0484777657069, -65.38435016364316, -65.79417614943351, -64.89540640338687, -64.99958619340781, -66.14577318023916, -67.17586372877582, -65.20588947859326, -64.23263697768719, -64.58526195051418, -64.16126178726564, -64.553685374938, -63.670971542695156, -63.659276495531074, -62.23938631133024, -62.49456098826321, -62.80480863960282, -60.92057528577146, -60.35957020916932, -59.947513710093425, -60.23858583800751, -59.333880487218885, -59.08507047474498, -58.89209598249323, -57.58165990892376, -57.247823928763765, -57.062685969411035, -56.575680566795434, -56.06642041681795, -55.92737823006018, -55.37607387228614, -55.2968257766983, -54.7912951307448, -54.873562290200894, -54.18643958297668, -53.89983912478713, -53.789818700725874, -54.1076806778601, -53.73957922803959, -53.63668890398853, -53.94891029991071, -53.88398198441463, -53.98929195384248, -54.139761373931144, -54.52307727875897, -54.87985170158539, -55.08393566253707, -55.58161547649989, -56.10802219151771, -56.6757117057281, -56.83379345542778, -57.795041022108855, -57.74483650654653, -55.722787705097716, -55.05271768544966, -56.47313924067906, -69.27894895765694, -41.43364363272359, -27.265771896700507, -47.82457888381832, -54.214563608542804, -55.94590119306804, -57.138022077723704, -57.92684377795827, -57.857298119402216, -57.846200199921455, -63.38915824858718, -61.46377822447664, -61.80649577319153, -61.496485732184325, -63.225955778991256, -62.824256723057985, -62.279565790364046, -62.31657058751398, -63.55503533004378, -64.21951752807894, -62.161380929963805, -61.74086267881654, -62.27528748514989, -62.19022164471668, -62.062953341133415, -61.89092001878606, -61.28019617524239, -61.99035865906743, -63.0819344113433, -62.43470491145503, -62.30079453823036, -62.413223345772614, -63.4180358224112, -62.53452755360265, -62.997503099641364, -63.60588455157492, -63.77895497653334, -63.838390479811444, -64.9255962150082, -64.72515966584683, -65.02417927358476, -64.61079591645901, -65.44773664660687, -65.23523597143492, -65.73216057789956, -65.72230905537529, -64.67826946459832, -65.25300196714178, -67.18418408839877, -66.59006330945532, -66.49847130304326, -66.26009966455152, -68.53081686446583, -67.26464468190471, -67.58351249340801, -67.651526934101, -66.69780117243572, -67.5672321564557, -67.24874706220822, -67.69257704989212, -67.77256687943334, -67.32249955446817, -68.009920083912, -68.08133870843135, -67.63977406645834, -69.04188655446417, -71.09518582522009, -70.3580889474332, -71.03818882117737, -69.6171549134226, -70.40555383428375, -72.21302802727475, -75.2387598235905, -71.64214791790164, -74.72890917192717, -71.68071135974742, -74.16227184052804, -75.58670795582753, -75.58256674628957, -74.22080679213998, -75.79328414134052, -77.67660016472746, -80.71348283684044, -81.21660966460357, -80.1014075131788, -80.85145086221331, -80.13535765566594, -85.91895335301908, -76.11043319418499, -74.36404518413875, -73.04048342164292, -74.19518066728737, -72.15162153020893, -71.16080938954914, -71.05144909092826, -71.89823727162968, -71.98595543111706, -71.80656177369885, -71.9833564505464, -72.56865321515824, -75.68619641904208, -71.69818821039149, -74.6179231550341, -73.28288398870848, -74.12068351260001, -74.84968803433858, -72.57282817908093, -72.2521556022734, -71.07231757297592, -73.83838941049125, -71.25730806900303, -71.63952662285547, -70.14334970250476, -73.5808199775694, -73.87476987669609, -70.15746885668469, -71.65979378961245, -69.86987303314153, -70.34707498569442, -70.29323495637358, -72.25308714535976, -69.48013043523525, -69.33054512486545, -70.81695313315096, -70.56371321478804, -68.97509735509448, -66.98986606568441, -69.20269857716801, -68.80631117758041, -69.02111468211137, -67.35241211994013, -66.70967669094173, -66.08323031327393, -65.67771243749651, -64.98972958931843, -67.88940494406307, -65.90359738256186, -67.06227446679908, -66.23931426804688, -66.76778610039844, -68.2868177381785, -65.95126322960616, -67.5230245428917, -66.41253379245093, -66.73411832407469, -65.92613671071611, -66.71921708832491, -66.16652951508131, -66.88486930471387, -68.03027730931305, -66.04987682590226, -67.03744091887762, -66.96451028633739, -67.12647596306905, -67.90434615663985, -66.68903512714775, -66.87314091076385, -66.87754027482637, -66.61696272548281, -66.09864900153744, -67.91607499073099, -65.98789164954725, -65.68374960812268, -66.40569055730572, -67.6330695580634, -67.92872549274941, -66.43443321264391, -71.0233421191177, -69.66619225888797, -67.88815041862564, -69.45204306255654, -69.96339196259365, -69.4614408984473, -68.75847485920632, -68.54955305599854, -67.47458665385352, -67.02143140941365, -65.80437289657277, -64.80158532576468, -63.93584542494919, -61.90163591677277, -61.23580335372068, -60.102020331445296, -59.77515680671087, -58.78668324163548, -58.32658827541273, -57.328705831984735, -57.13807730751087, -57.0006038869747, -56.30606324123257, -56.11005113355489, -55.94448628408824, -55.52029035859856, -55.92894835589963, -55.519967677706425, -54.81547639095076, -54.60896465879195, -54.64578538279308, -53.930579265907824, -53.32179960919345, -52.5224163736651, -51.76001516544363, -50.734831946102396, -50.303032739481715, -50.017476896690596, -49.86399279252092, -49.7352549654996, -49.656885130255695, -49.717079991553504, -49.5652274394289, -49.88910576533609, -49.98446832432772, -50.0568630680424, -50.83272186218377, -51.18374993785183, -51.981145864781695, -53.187897302355935, -56.09079978461619, -60.81447885749965, -63.64818713951821, -56.99880095927382, -51.6522714581248, -35.58434073426043, -48.493486521362925, -47.657047200020344, -53.15227256003416, -55.78464937103998, -58.52481612776286, -57.962595844203676, -57.2262492395262, -58.06293388155511, -57.80323847353918, -58.42644411996024, -58.83722547996672, -59.27070591285376, -59.80175555319309, -60.045198013748255, -60.31083809171135, -60.71271663139511, -61.36000978602671, -61.924924161348585, -61.92315272992619, -62.94953911561723, -62.52432414763747, -63.20217203934785, -62.9454425747468, -63.88304131483579, -64.86242038803408, -63.857475582544545, -64.66650236400808, -63.35115338481082, -64.42187467113722, -64.60518988518504, -65.34362968927493, -64.85677982033498, -64.57760577696152, -67.42457342111963, -66.32918232039412, -66.85444426773083, -66.16927918961035, -67.14171018253937, -66.75006734408443, -68.33167021255393, -66.41441419301401, -67.66528087019549, -67.88171890866113, -68.0981424646827, -67.96832177265897, -69.12789974093693, -68.29266841407039, -68.56958779465445, -70.40439169987549, -70.29450730038579, -70.4212239559396, -69.10284214635698, -69.84627648078444, -71.26094905555425, -70.55200051330247, -73.00637768316902, -72.89640457002668, -73.01737583125218, -73.07933612761897, -69.90028260110827, -73.59861187363119, -71.70076787527056, -73.62242271868921, -73.25168865589332, -72.69393478875615, -73.90384800427739, -73.91331580692642, -80.86011598869199, -73.47438436880894, -75.76427784780205, -76.51133770796928, -73.55925179672519, -76.032380683447, -75.74385313839797, -73.48025269578228, -71.6885216573448, -74.00234769538943, -73.55295376691218, -72.01764476582683, -71.57264060888735, -72.5839591810352, -70.14130931205285, -72.35999178036964, -70.93961750072475, -70.09926003888457, -67.85027614088234, -69.24609556119907, -68.79967242339353, -67.79955540984304, -68.70435388033785, -67.6747749650765, -68.17042726062877, -69.40859767193037, -67.71802649836258, -67.43209877575676, -68.54175442706233, -67.00661101922483, -68.24103333768227, -69.25947605099387, -69.8667106505233, -74.69535194882377, -70.22198054357767, -68.71131070823678, -69.65515708390281, -68.04415158679896, -68.49797878998997, -68.33222040218322, -68.38844135161048, -69.36135428513762, -68.7402597332341, -68.55484244514398, -70.01914859507912, -67.55765475732126, -67.56605968920461, -69.07425452852036, -67.49498606301157, -67.81907954322897, -67.29878543134367, -67.75132948774542, -67.44884763133848, -68.86505375225424, -68.19624659217607, -67.92091909978377, -66.87124012315675, -67.46022488327918, -66.79811345612481, -67.25531804382146, -66.49931940024388, -66.68461539883555, -67.19533331115275, -65.74038979785716, -67.37602627892716, -65.50017108496047, -65.75809100919946, -67.15115904025936, -65.91095474535919, -66.09166273369405, -66.56668765670274, -67.41858851052368, -66.99091585958024, -66.88121008933484, -67.33532884492502, -67.37144500623313, -69.48897120283921, -69.06234844232532, -70.66528996647698, -69.44713529127793, -68.6358401625451, -67.781862078703, -68.65944577447203, -69.20499860327374, -69.92307447934239, -68.2252795689093, -68.68613803582907, -69.88586545974995, -70.82190678033277, -71.74504291238512, -70.82759549215805, -70.1667138365812, -71.3377689635068, -74.9995948645851, -78.7610170757728, -77.49064602073099, -73.05942667536587, -75.90033958022826, -76.81560127386662, -74.05553109501629, -73.7553285986124, -74.05244772221526, -72.45685880883966, -71.43696097888149, -71.49585290410023, -71.33079080716713, -68.8173123373048, -71.68536580480168, -70.75639043760073, -69.19957568924664, -68.55459782154429, -68.68116218978555, -68.00838168658159, -68.48738045689272, -67.50988811742704, -68.33256255926926, -67.91607765857471, -68.1098458291212, -69.10167392441356, -67.44950506544572, -66.3546148919439, -67.32539456274722, -66.0351561350243, -67.38603240089128, -66.91944447258726, -66.8873459881166, -67.42697766611646, -68.43521790353415, -67.72128163151069, -66.82495705811861, -69.2473009115039, -67.68341084395901, -67.56814655510652, -66.68545330016627, -64.93736494046945, -64.17093309872479, -62.44243962114487, -61.421522432968665, -60.94665869828026, -59.65659789018702, -59.082139828891144, -58.50690531591315, -57.54682874946873, -56.74720031829334, -56.44333877730068, -55.86978245340178, -55.6085633580136, -55.34451207630994, -53.448866944802276, -51.06805723901004, -52.54790943308685, -46.686041086015955, -36.91231430119692, -39.550308155094285, -49.55930150869651, -51.99772874043272, -55.328209108456754, -57.61520618545547, -58.39703979279329, -60.676122823354376, -62.021983068256645, -62.63170600593078, -63.31764354580309, -64.13509312351101, -64.81345254428946, -65.52010477691299, -66.27100017959516, -65.86437308587301, -67.06138461491629, -67.66829558033828, -69.60869831111229, -70.17707533614492, -70.42212130597228, -68.92753822913515, -70.39031083705335, -71.42341013077956, -73.67731947149858, -72.15933466221426, -74.30073561710947, -73.80296136501047, -74.72146571994313, -74.86104237655488, -76.95144592287514, -75.01982519024494, -75.4729028897965, -75.70001490521028, -79.23031485374014, -75.68587085237505, -77.23004974481628, -78.17823903686511, -78.24725073684193, -79.34214628130495, -81.33299168524417, -87.58510967470755, -81.09414922971723, -80.4601897033143, -80.08058855563738, -84.25696317718274, -89.14880265183555, -91.07717409710104, -85.48035071603178, -79.76579597736195, -82.20651610748212, -79.64807866912727, -84.45889046559158, -78.2159783958525, -78.6557306991844, -75.35869066173493, -75.90455449196031, -82.57890675381796, -76.12937838947768, -74.84471145392799, -76.83667168361123, -74.70966873958301, -75.36301758476337, -78.11860679539315, -74.2448878432123, -74.04223302207282, -77.06569511447292, -74.38266063318605, -72.80130582385371, -72.34078634923958, -74.06499855854851, -74.4402388575075, -74.97616280035489, -75.24886397403887, -74.75718099367586, -75.00527865221949, -75.98578418420362, -73.79085374931029, -73.77764522954759, -75.57955201862852, -73.29296227489134, -77.81715863834339, -74.79924840457934, -74.8936385914914, -74.37331336731823, -74.21603678693427, -80.80518629715614, -83.22164159948309, -73.56235383941464, -75.4147848488978, -80.1128310424647, -90.62929816607814, -80.6464505241644, -80.23976647554312, -85.64627337648096, -82.72691942930743, -84.03125206883541, -82.86230707176598, -82.53366652931128, -90.98274533897909, -88.62862184920974, -80.10848326627787, -84.77357160755562, -81.5698797028538, -108.77783734859867, -86.98345138139268, -85.97838612464962, -82.72359598019791, -82.55140596737918, -94.03696182982388, -77.33542412739482, -88.31694787184509, -86.24819982155644, -89.55936677404024, -86.28630436594882, -84.05700949101532, -80.66272925286754, -81.57735514708477, -90.09844240432089, -80.79903157982974, -86.61815415340654, -80.45807776579363, -79.78618901923147, -77.59914451130761, -75.40205810904641, -78.46253266864701, -79.31366804072945, -75.6223251537874, -80.10930672823649, -75.80617689686576, -80.55564867424988, -81.79976556175481, -77.98066046366998, -78.19951349183724, -75.6243988301784, -78.63850883993638, -77.21087236072053, -75.78079491443155, -76.72146057073942, -76.59926899554854, -76.17805943672391, -81.95695418163223, -75.66390035859504, -75.59598494302874, -76.47566071764697, -76.91715736125951, -76.54308456352972, -78.03759604386644, -77.14633693723948, -77.19281254795833, -75.89901754176933, -75.80607686162477, -75.28160681288561, -74.45850668883392, -75.73075870498906, -73.77275883849317, -77.99700170783251, -76.95738492807246, -73.5747014138346, -75.82654223314607, -76.37677727910146, -74.39554259476827, -75.86507829031814, -74.52318523711187, -74.53481785903902, -76.76120379533758, -75.63334992621158, -75.91212629591568, -76.29053901428186, -75.30621110383231, -76.44596132354182, -74.72911479514465, -73.62424924146508, -78.33853885741848, -74.6580306343492, -75.118989748736, -74.92469207639391, -73.02986236728931, -72.51734457223567, -73.70249294108527, -74.64535408736437, -73.62951353727375, -72.9187728541259, -70.45282736653894, -72.01187297829509, -72.95703577721932, -71.96958791629221, -71.01907448935256, -70.39839457654563, -68.5211337684204, -66.71338975278049, -65.96090113114349, -64.92342403987612, -64.34023885549158, -65.26720734001657, -65.51028514327184, -65.02631386394353, -64.10001823736258, -63.79539129608767, -63.77258165826957, -62.35245672129807, -62.10078393064961, -61.56365015054692, -62.69862198366233, -62.61905844021855, -63.175437437102396, -63.9091684635472, -64.66872498633167, -64.19412261310117, -65.72466020635142, -67.94678472458901, -69.93201951047595, -70.49025645712666, -68.27184860334805, -63.38964930081238, -59.980926627410454, -55.18187755224866, -54.04691666467269, -63.982609148609114, -58.86118005584339, -46.31472397303532, -54.829642615452755, -64.36371930570475, -66.40379669931423, -66.25070715086667, -69.72836461923002, -69.96135569513625, -71.29568479536191, -70.90646015252737, -68.84882821631778, -70.0575203333858, -71.40263972899768, -71.19832004561687, -70.99631677589925, -72.05956210485665, -73.17606849609834, -71.72369344542761, -72.06782080339823, -72.06318244706794, -72.0037161108789, -69.26537019131315, -71.14340524305533, -70.54478015962262, -69.55448072982281, -68.66782790764805, -70.33991588400893, -70.11985259415094, -68.90584020062097, -69.68349372761631, -70.07673022488609, -69.64701574318957, -69.70979579089133, -69.67289076531351, -70.5840566647146, -71.59789160583551, -70.4968933340462, -71.3029983613553, -70.9753091951906, -71.20210528579622, -70.57300565936532, -71.12065385526785, -70.19612869430077, -73.72316182082565, -73.94864628603123, -73.27774182456416, -74.15237223826816, -73.49316180556067, -73.4995146601594, -74.68577145774194, -74.35311453449772, -74.20063063199721, -76.07940875509891, -73.60727645903536, -75.7085142973313, -77.5125321896679, -81.83533694014953, -76.81418066321433, -77.0544255068921, -79.07017690521403, -80.10420423328897, -82.92562494285347, -78.08063267306717, -77.0079821092184, -78.04005706934882, -84.36639692831982, -84.18423333778634, -79.02831113134891, -78.29514078702111, -88.86823296818682, -78.42301547181772, -79.1619420271908, -81.10319391496981, -81.16229898085874, -82.7987893750204, -79.56996975934844, -88.2666580464003, -81.0833345055154, -79.22256458419012, -78.78335949423769, -78.3358259042574, -82.71005202299888, -83.46657275310493, -78.1163735524459, -79.21877315981251, -80.17940195793244, -77.43279644193953, -77.97849052006565, -76.16570898813916, -74.79920028398584, -75.12978190321566, -76.3702988159529, -75.63061406914917, -76.87278882667636, -75.84733949094408, -73.05385490933105, -74.17548237958806, -76.75549862807816, -73.93878789291588, -75.69026142419249, -75.456401758872, -72.81632218244636, -73.98536791328468, -71.52141728010355, -73.60649354173587, -72.91928468116812, -74.79691934706709, -70.3350126088171, -72.03855039046242, -72.20741726205488, -73.37775226333045, -72.2345199024092, -73.35631880158031, -73.69150837124347, -75.64857734415796, -77.54559190977295, -74.68357278336089, -79.86142359346158, -75.12858823533327, -76.91709489876973, -72.51034181816676, -75.13589208160207, -77.98398562319827, -78.58414169538085, -78.45814715404113, -76.9201219261514, -76.77085556194413, -79.89337922234778, -82.21967566590153, -80.16637479237309, -82.20641346604813, -81.57053715615635, -82.70599256453312, -86.45116821155113, -85.09092208760778, -85.93707311359496, -90.79218909511144, -92.94494577662644, -90.45649828112133, -84.68371782268115, -79.23564391488645, -85.4488784994394, -94.8695387470786, -81.65440593758852, -88.54859237223226, -82.14278974755985, -84.43379090757743, -83.82662784707412, -80.87866544766439, -79.78924529976722, -80.32777254845325, -78.91579155243339, -79.76347443463678, -79.64788478708789, -78.81315277353386, -79.71361474401019, -77.26882938135881, -76.38701847778722, -79.12209735288849, -80.75746616859946, -77.90052832618254, -82.89173924366972, -82.65267514864306, -76.63277050089785, -78.73314520017603, -76.90904285277713, -82.40282214464554, -82.3772868615501, -74.93602079443944, -77.2839824356551, -75.76594601501272, -74.86062355558514, -78.44663345937855, -73.9369720998677, -73.22701638707083, -72.81616238848568, -73.32389225352452, -72.22879816571428, -73.30067764835778, -71.4747841433765, -72.04762319516337, -69.76252430013002, -69.63193014559221, -68.95142660369166, -68.8437593566004, -69.54026095643715, -69.13092683199591, -68.89876905129265, -67.13591146024777, -66.7644030770818, -66.67631253447587, -66.12927754884934, -69.60180304872983, -75.7952022862089, -77.41711652718845, -81.96787354155003, -78.2273968673259, -91.1691545675778, -89.90457778254284, -101.04356049237776, -86.88266635718747, -83.13572487739135, -75.01487095295823, -73.32052726897237, -74.0542781241823, -74.70779768333796, -72.41558611082309, -73.61166491684615, -72.08971118118141, -71.67091412383924, -72.04822175191991, -70.59211182784776, -70.89413032685033, -70.65015150157082, -71.75536469907715, -68.28753503364842, -69.10548756694843, -68.09294444068009, -67.49519600667246, -65.68679265762901, -59.98918619155277, -53.399076423088204, -50.80559558508262, -66.17159299010675, -69.7256124557058, -66.73404072544767, -67.12833384616036, -70.50002185163628, -70.32329524812336, -73.28697155748971, -70.73367628548199, -69.55158921677133, -71.10190478342653, -69.56958919842074, -70.71930405999322, -70.84840770750412, -72.04079041128085, -71.3664186800471, -70.88751334479505, -72.23437396796065, -73.50735292310839, -72.37150731545937, -73.22482975017543, -74.53781584831742, -73.80809936761995, -74.68963583050726, -75.392276519664, -73.43901631270077, -76.30742161354729, -75.98892529476447, -76.35283201702731, -77.22995883632177, -77.6560141032177, -77.53825480589258, -74.9275485674826, -78.16945420009044, -80.3904372288388, -79.56049965463153, -87.05081810462481, -86.82915696068848, -81.00391104627107, -88.23367532595628, -92.91375037255753, -89.18022132985008, -82.75135737514894, -86.18857650876613, -90.12367983391051, -84.73617544598352, -90.6821517312011, -81.19428977313154, -89.84196399561799, -83.0983564565666, -88.82220291959088, -81.6848426710613, -87.94129014776271, -91.12580616013467, -84.06044804752698, -79.29530064618397, -82.72000293275062, -80.86960994069558, -78.39425628583213, -79.93453063086396, -82.56880452507062, -77.45590121656615, -76.37679769998412, -77.75215127996616, -79.76345754724083, -77.77874937753825, -75.29373334184893, -76.34693212991473, -76.28595061498066, -77.84619953664495, -76.01683705852433, -73.94069159069322, -74.9332236952086, -73.82277665852276, -73.7039566603483, -75.4352780239483, -73.87347567571729, -75.4909724118358, -75.84178606232183, -72.69712782918756, -73.58213563318226, -74.38304133799639, -76.08012658430721, -77.99040663919585, -78.89846265475273, -75.4066450311028, -76.00354998424764, -78.87427776577411, -77.37573676070969, -77.49624829334037, -80.18893996858311, -80.56301373115426, -76.89963497760625, -75.98123903609961, -77.37823120798475, -74.95498756148683, -74.64416332802375, -77.20470602253316, -73.89452865972478, -76.08129552994151, -78.03009707944985, -76.7309069419826, -74.88637882919959, -77.86910157694041, -77.69135364440855, -76.23283435338557, -75.88740360957993, -74.51017596399825, -75.76745871788383, -73.73554823720428, -74.23891913693649, -75.03515476509962, -75.26199771309943, -74.01702488920867, -74.7913425175315, -73.66925106476238, -72.34894364631722, -72.46081491904557, -72.97150513399512, -73.41115043994566, -71.42266630720025, -73.74503891200061, -70.28261047991981, -73.15881531156825, -73.29713073917203, -72.13233931947745, -72.81147370050599, -71.88065369015115, -72.20803315271284, -72.0977294089896, -71.09593833747198, -72.17039125453242, -70.83117963256441, -70.55233297352382, -71.08295157432894, -71.09556942507017, -72.27010207939925, -70.16971959065897, -71.9943543924482, -71.68559334864065, -71.34402023869117, -71.41426442509587, -70.50836094224537, -71.12025212707108, -69.73530252850581, -70.96382759657143, -69.32254791121494, -69.78642129816406, -70.13623425289583, -68.27294316537875, -69.48273540611159, -69.68595739098666, -69.88578752846696, -70.12884361598866, -69.58015355293423, -68.92521703488362, -69.3702627530121, -68.3385393899674, -68.83572025411485, -67.59444003485216, -67.19878483242128, -66.88678326102863, -66.62705628034745, -66.49133706565705, -65.54570267314098, -65.07138957823395, -65.15316630434212, -65.113024178901, -65.21588234960261, -64.69299038837154, -64.5987818574637, -64.94673763285309, -64.58543856538122, -64.0251908408862, -64.00334840949637, -63.87620626749833, -63.908368663300706, -64.34477575361116, -63.30611607192458, -62.977333947989855, -63.03270625617016, -62.973556480924245, -61.9775865439454, -62.55287920555492, -62.18212857447418, -61.62643806174796, -61.486986903330454, -60.99300382594373, -61.08361631779211, -60.69952191357846, -60.113379850167874, -60.802145732828464, -60.97644525155453, -60.5353003142622, -61.51859760101046, -61.94055512179162, -62.6567162375012, -63.557212203853396, -64.0075629497579, -64.45571630629364, -66.08288626295115, -67.05583291996928, -67.6402988319419, -69.58521859590115, -70.44275207460586, -72.17787583787393, -74.45605145776054, -80.37078844070248, -76.78549964410689, -77.36460455970514, -74.2942650067164, -73.45274823547012, -71.0452005083104, -68.83015614902038, -67.97406527400358, -65.28064442811258, -61.66257877636706, -60.5347642563929, -56.064002991313274, -54.94507470743963, -51.41254705563913, -72.16866500418548, -76.05398208734533, -72.21044936138823, -72.70529537217354, -71.19929406564337, -70.27713460496388, -69.13299663000194, -72.4463357185439, -72.93795715684928, -73.3713575819898, -72.76716923070657, -76.01625370669042, -76.04473859760017, -75.32843026701174, -77.12202890601816, -76.16042753715428, -77.80043932313504, -75.12050328150595, -75.24180589509238, -79.24072557279497, -76.15073312964516, -75.63722659086456, -77.07199482539777, -79.10405174846336, -78.7555033662939, -76.68928359724873, -84.64445716614034, -84.77194024856651, -80.56957563972244, -80.9518054581796, -81.16946011815486, -82.60882229829221, -92.15382444857815, -81.46009960088432, -84.83720729636632, -83.22701186297904, -85.19336719293213, -78.72618239666916, -80.2997938664927, -81.62909345813718, -85.14461983550683, -79.04847001012962, -82.86337774817282, -80.67613472961874, -78.6766497974873, -78.28376599544966, -79.52827617663023, -79.14552629194073, -77.61658173923297, -75.52797708720875, -76.81180124570486, -79.96302372671433, -77.79180364645626, -78.25534667830355, -75.99861144434554, -76.72817325992497, -76.53789876665725, -75.63354290384196, -77.88655620800802, -76.6620888475772, -74.95944263639745, -74.92241861250825, -78.19252297465556, -75.70240288541322, -77.22869031651184, -79.11178365323181, -76.02813924683684, -79.22946596005255, -79.34252410313209, -81.37043553612872, -77.23204580887614, -79.99002759432182, -80.10037292590232, -79.9586491941642, -79.56111958831399, -82.58565887847632, -79.06727247783805, -79.77836365559115, -80.75250256215698, -79.92014041868372, -83.79119284790976, -89.46388791034843, -80.16753104820063, -85.78785129259586, -86.18971186353076, -83.46557649363032, -79.26449516296324, -86.0497161883132, -77.72522944419683, -80.48693217709128, -79.05676798361097, -80.90038889516116, -79.61552982593626, -80.53872683725186, -79.77129111395212, -77.44509801153853, -80.5556693761641, -81.77353100405165, -87.86089888754148, -78.1582972178384, -86.06051959858016, -80.45156335503039, -83.91150780214886, -81.66095543568437, -85.9890696716026, -84.04195989724099, -84.24214397685927, -80.48588938933732, -83.47817452080973, -83.32619948762827, -88.1920764364049, -83.08254242477614, -89.18558349604581, -88.89162189317693, -87.31008898041051, -87.13288010971965, -84.22240535023025, -92.88020099953273, -88.94011371574368, -89.50453755118195, -96.48514868456132, -97.43376688081894, -84.77920957425228, -88.7457709955723, -90.22585149851663, -87.48474847642419, -83.07201844121437, -90.18909481446155, -88.19790959238476, -81.2732961874819, -83.1906331949839, -80.25420059587623, -81.18892135349458, -86.15384309354747, -79.78396634625508, -77.94484777470717, -78.51191099298318, -79.66383719665384, -80.53157544892616, -79.77150773486586, -78.54468839448097, -77.17236175792787, -79.87540797699674, -82.62481453829648, -81.175520126339, -81.6372918657751, -85.8723073671064, -84.32173494770353, -85.92865485920956, -86.69791362038204, -88.381947877194, -82.3377485565141, -82.98618242945194, -84.19164168137557, -80.62179693698069, -78.58053820880352, -75.67006724992078, -75.70019280840631, -77.3556326239717, -75.44484413880436, -78.0083971801343, -80.19240732791538, -81.94153834562955, -82.51223437162794, -80.52439500469704, -81.1563536981356, -80.40850797228123, -79.06201134185005, -76.40783566963746, -74.1109055099481, -72.5472370520919, -72.88643830844907, -70.28993986834672, -71.37266287399254, -69.4989505501882, -68.89473130042418, -68.30666717246635, -66.73309646888713, -66.65850255396039, -66.9447764878584, -66.79115578932803, -66.45820914014695, -64.36014845046441, -64.59824027773406, -64.5850726093629, -64.3446866960158, -64.21606716947184, -62.73701894119243, -64.04110973530102, -63.89229463694758, -63.96163716377961, -63.67641594480275, -63.93691882575963, -63.42084764721023, -64.1751442362428, -64.07424036480684, -64.26485840594677, -64.70591056366567, -65.87154496298668, -65.59038511318796, -66.60467347264296, -66.41659847049684, -65.46015434963208, -68.7947891968641, -68.61351144401289, -68.5883803002403, -68.38640776744921, -67.24728464729668, -68.88286165514032, -67.5126886647365, -67.3105645678857, -65.62299215193312, -65.68699907910904, -64.40289646967807, -57.758358007358304, -55.996497226617166, -61.564902104236054, -56.33409225929568, -51.004768447423736, -41.493760049658675, -39.09207669003827, -48.94890776092665, -54.55311236108002, -58.955572244475995, -61.746115012535896, -62.253023332444755, -62.274983913353594, -63.529545400949985, -64.39313794580413, -66.25416010352293, -66.65343745680732, -68.27677225578233, -67.82355889657633, -68.21679248054404, -70.86681108150971, -69.7724981322566, -71.30217721703224, -69.97137737894298, -70.77775615760575, -72.06754243137725, -73.31361035233252, -76.79175470072519, -74.79668251474777, -74.91486996017032, -78.6724413272818, -76.67152753575132, -78.08872879400377, -77.18878095139394, -82.73610383113837, -77.33794990708525, -77.92186025591103, -79.5188353384882, -77.92004398931181, -77.59163684423254, -80.87915254625881, -75.69829684278649, -76.54452953376355, -77.75724852502844, -78.78077174894496, -77.18693307350878, -79.41284801681809, -83.32095416444054, -78.37160422955779, -80.82146417851772, -81.32663312523256, -80.61369190656382, -82.30489547530384, -80.4310749708365, -81.7399694687711, -80.62942885822591, -83.44930111265425, -85.3868812656471, -82.80477029950228, -80.34137311816893, -92.70904840928765, -83.47898664681443, -84.79551570457801, -88.61120338504696, -99.05509377120941, -84.6583377223046, -92.65291588313801, -89.07547499016088, -87.7740537613824, -86.05272121876283, -88.1636391529299, -90.30903385492458, -85.53062445276527, -92.89011106975377, -81.77760483778924, -83.93612150690407, -90.67181149469319, -91.55371952582311, -86.36786710449113, -89.7497886225581, -85.98972016462241, -86.2662796447236, -93.47027366488881, -81.99439626943646, -83.71275688517841, -81.48839023643791, -83.7151668333469, -85.16431376492383, -82.33973574225031, -79.84399013306471, -86.98893462227446, -79.31234596797322, -85.20974488592353, -84.13315065926264, -82.57274088910519, -78.69971776627798, -81.75617504484079, -78.37751716460969, -80.30648879366838, -81.99106318023247, -80.69587144008653, -80.43021256193866, -80.57535077122569, -79.18141782722309, -81.07374929192481, -78.61671471753877, -79.4930057253289, -75.49404360797021, -75.59547188531927, -78.08498632620373, -78.79420982433457, -78.377199853093, -78.22112971294571, -79.4415760625504, -78.80988052727746, -80.20569766101386, -77.77303439978836, -75.60335551487827, -77.0296401033442, -78.28916533236944, -78.75452900265587, -75.12894529089442, -75.90252337755933, -74.70613322157998, -79.95442548414273, -77.4621755779201, -77.63439245768674, -75.63582902822742, -77.37938396763072, -76.12823335937125, -76.5724072116243, -78.29720665316059, -76.02044013053364, -74.17070791805091, -77.81148598901706, -74.91897928849946, -74.35063307888414, -75.56128127636242, -75.22571159937964, -75.05320079067599, -73.63448574013853, -73.6083202943543, -74.91878090128037, -75.65377042330158, -75.80681107183781, -76.10129880540461, -75.40191500773658, -75.82300153569675, -76.98874858654452, -76.09080819625427, -76.34830844593203, -77.55582623308258, -75.63124125218472, -77.02299975732367, -73.24154332232536, -75.16168524852456, -72.72611266357121, -75.58387257251098, -75.99291366605985, -75.08768149024863, -73.71664479857239, -74.32538233139422, -75.14850084856232, -73.21758165968868, -74.15233253313335, -76.62014784821854, -75.51792290747117, -76.89931569852497, -74.31805780282451, -75.21163798983595, -74.34423171002504, -73.03445832077661, -73.50446763789121, -74.7859845949128, -74.61875016587561, -75.36314046313808, -74.71800110013378, -72.58437690107127, -73.71873032853338, -74.71397003761291, -71.93963813161304, -72.83012195413596, -72.67955155454925, -72.68978051533144, -71.53399828720163, -71.62933442998333, -69.37636508603654, -70.06036223164361, -70.21995792558424, -70.57705228945964, -69.77837770019188, -68.70856348999985, -68.87230245796069, -68.03761464796517, -68.12645647780319, -67.97486148964511, -67.77030459877452, -67.91691429756693, -66.61675410199435, -66.79502853150053, -67.10142628049495, -67.25601019720128, -67.47982926498602, -67.31276519827244, -67.47986774361321, -68.02160654701032, -69.4155062848924, -69.27932660355287, -69.02107627357391, -70.02395219048174, -70.59243564240748, -69.47021777908218, -69.27062061837225, -69.00143336147497, -69.23777131566177, -68.1686005303014, -68.1418666041955, -66.28949530816033, -63.28306132919646, -61.017014490818994, -62.48756673667511, -64.83144116966712, -61.124890753648984, -58.48423472075641, -54.099725985680706, -48.33993844738102, -47.448473342791644, -52.58348096437143, -56.3792640123127, -58.747871454849914, -62.72394191776682, -63.50478869982824, -64.70449365640621, -67.10482169598032, -68.18073519038542, -69.91961538950066, -70.60316015976814, -72.21048475551834, -72.9859930456003, -74.15700749790017, -75.29422571713434, -74.17090843188909, -80.53084578635355, -83.99896961246998, -86.6283205339682, -83.13575964654274, -84.08281951475922, -90.26892733909878, -91.13176662008678, -93.75433698504995, -87.65026233717182, -84.01211134676433, -82.33049487653263, -100.1031725698928, -97.52413914646664, -86.66326087249092, -91.00775096886233, -85.3524401499533, -83.1475765465082, -83.59306847044026, -87.88126164473238, -83.49538645522833, -86.1581820191118, -84.25644938006045, -81.45392510812059, -81.33394373579532, -83.90671416959262, -88.09693909414219, -83.69682271384144, -87.24324711393311, -79.79220681038859, -86.27819657394843, -83.92909528323338, -78.28326408939645, -86.48175323150497, -90.40908302904826, -82.87174307377059, -86.75481048601553, -83.66896956652124, -98.45248709916319, -88.5684906029959, -93.52137457020285, -101.34639730841654, -87.71771678560496, -91.92796578907767, -92.50178852890913, -82.90496473846686, -83.35734548944683, -82.88504956681422, -85.29805281206747, -83.62147984335661, -86.47415937836449, -82.00000425493171, -81.29070823051542, -79.71447370617201, -82.64416031158973, -78.32462180315886, -80.66288110767553, -78.53615338811719, -77.82359464976332, -78.43028156969696, -78.45433054077927, -78.49750522483413, -84.68875791846352, -78.90947978525773, -79.0205126474821, -78.65192343258296, -78.07296738779434, -79.8860477422491, -77.62940440119978, -79.13471967362509, -82.64349989193435, -86.52759323929675, -81.53205803927696, -80.50547461556471, -85.86413553338207, -83.97837021131649, -83.39142087518326, -81.96210293768894, -83.7150112967513, -83.57377304078143, -84.32810346993742, -89.17094670149176, -80.07067385377258, -83.24071490039208, -82.90587753670594, -80.99283220449884, -77.09683358145486, -82.42505788041363, -74.37990226471986, -79.29965148952044, -80.33565390546057, -77.87156761623228, -82.59801745633379, -79.7896334230838, -78.87476025862006, -82.34992150524407, -79.53918203634204, -87.47885917247153, -86.37744090936424, -85.75976758262273, -82.31886436704742, -86.07960575505703, -84.23149708106581, -82.90395128582969, -88.2377778323118, -82.1258459816988, -85.54264583873122, -85.08198414301972, -79.48854211623957, -82.78170780885743, -79.06377288831987, -79.60215673831352, -81.72932676012765, -76.8896615125332, -80.44097097992172, -82.30845847616892, -79.56721691575007, -79.91904037706304, -81.38431586259614, -77.54978830111752, -81.10936099115006, -79.31313601950076, -82.19657997280508, -82.19380159422401, -81.4164679238266, -83.37544640993602, -79.27711628439349, -84.00937831755044, -80.10692120942872, -84.51410813762126, -83.01138460675259, -82.07141976718687, -76.34355668868527, -78.88196397522876, -78.6277978726734, -74.76621322751978, -74.17235128429606, -72.73754282839876, -70.73957190784412, -70.82670721472044, -71.42674786126956, -72.99036880505972, -72.56379244384777, -73.23249912150864, -73.05957273659797, -73.34696569110116, -76.67149497327132, -75.2374106506037, -75.22880764071277, -75.90541272319382, -75.14956165543163, -72.99924715382467, -74.42161931418534, -72.56345104438626, -71.82588542131262, -71.9629405580393, -68.9550616414082, -68.51279019728746, -68.30677473984281, -66.9829431573194, -66.74078172397196, -67.32556468040639, -65.68384391889981, -65.72891165494242, -65.01283228037914, -65.06847708578357, -64.93284999240976, -64.66373437015312, -64.91445252327492, -65.14090594234068, -64.27090445467778, -64.74642164717226, -65.51038337694037, -65.79541453096533, -65.48923401545403, -66.15927648526348, -67.3938320250729, -67.0477374611122, -68.68487690212702, -69.16545777655404, -70.73734454304073, -70.813102936115, -71.41172932427979, -72.4025482399301, -74.79388555168055, -73.93772592871568, -74.23301226435335, -78.19697885953354, -77.32003116113253, -79.80931897566617, -77.04043594008276, -77.41124867386793, -82.0753137107986, -75.38231499267806, -77.19541062208812, -74.86709297768212, -74.18000071055035, -74.19683364778929, -73.33019277253257, -70.66228513787296, -66.27421995867107, -68.92347579791976, -67.16705421524483, -64.38472433025535, -67.10648201079168, -61.513207857951016, -61.255013121921834, -68.87048646471813, -76.34915075197446, -81.63400131445414, -83.78202074792708, -77.82694643815395, -76.6033692863979, -81.9000615665073, -80.20756735354355, -77.17152086810043, -75.94086199300578, -75.91144391171939, -76.35368434202735, -76.5466382600596, -76.04834206488816, -76.58536949944941, -78.56123786855736, -78.6069437194092, -76.37605741191996, -76.9277670404822, -77.44361719050276, -78.06431482989284, -81.27036851519621, -77.44405767259939, -77.55139810690193, -77.18474015541685, -79.47673186972044, -80.73230797515926, -80.08497405975439, -82.03724719514227, -79.97149322124649, -81.7685257263819, -83.27832505621608, -80.57093896076293, -86.25095822387614, -80.1033584456104, -83.70040310282448, -82.892134551823, -86.74602760000474, -89.42448324184697, -90.2563881102785, -96.6185789077378, -85.83146571503153, -91.33317826476039, -87.7999585506727, -86.5424027130675, -81.862425511236, -84.21567621432133, -83.71376397321187, -83.05342406663284, -81.26191109057608, -85.22912026141358, -80.32517807319735, -85.11083858918778, -81.93601100852649, -86.10845169833297, -87.74187524041298, -80.31825161860675, -85.48593793413774, -86.87464857547802, -84.96593287364905, -85.91523640818073, -86.46893047808632, -84.16458057311235, -91.41391992740054, -83.87351987521481, -83.53806889141939, -96.03478214412718, -94.76969842957892, -87.16710500651844, -87.49963304150926, -86.77174858685302, -83.59086604266322, -85.10221960892639, -82.19725538865575, -104.57388308488535, -81.93449367078136, -82.29093951648032, -80.63926481981221, -81.54775137073386, -83.78286594204475, -78.63890218160745, -81.17620769303042, -81.26783622459378, -82.45255805099362, -81.62777464550422, -84.99386167641134, -82.42981812807358, -83.49789262985752, -87.41649741153175, -80.86161915316382, -81.94052915941845, -82.10813795322639, -88.49981785098252, -94.61024770407181, -93.77115582738021, -90.27409899888424, -99.639773537308, -106.80235472931145, -83.94916876090315, -80.75631939136399, -81.88412252478498, -83.73457926894017, -82.17734246538308, -79.66328748895333, -83.14221480568037, -80.85134190802154, -83.00641137903193, -77.50772942657551, -81.6096755943469, -79.18141179349823, -82.9976900060163, -77.83209646027245, -85.68387656792275, -78.67441541497334, -81.99085598097659, -83.11610130876377, -83.65273833036346, -85.0466319167726, -82.33343688193028, -84.64765844589907, -83.01355727692362, -87.48266663067172, -86.24849426536639, -104.2314522150214, -89.49316097227131, -84.43660261201117, -85.82968230066408, -89.69304590807474, -81.14812577415555, -84.14452208521746, -80.59335212534039, -79.37295793340772, -78.31392181196416, -77.40141954147819, -78.32509386996911, -81.48141146617847, -81.16681511628401, -82.22316051592404, -82.5049387200775, -80.9805142289139, -89.72089157564645, -81.36580571407059, -82.25397882916653, -83.39334858170902, -84.19551087132615, -90.69027094243962, -89.26503997257481, -85.5570669987847, -93.76497241408404, -86.66364884834101, -97.21477297779623, -85.10353634353686, -94.52542265278043, -90.64021258920599, -97.05838260123059, -92.41696677047253, -88.337237680227, -94.37482843153307, -87.26269382044984, -89.0034067252364, -92.37077704789456, -83.11053289669856, -83.97268892130464, -77.37202201948527, -80.30431288489473, -74.84484162544304, -74.10374403570857, -75.07449482533514, -75.22603194510262, -74.52022806122358, -72.8002769571708, -72.55558368318935, -70.45058069174215, -71.02117774747919, -70.93709264857657, -70.58543944958384, -69.44457820688737, -69.87142723168137, -69.5259706087696, -69.48341176435348, -70.1349515598804, -70.94039320273717, -71.26840342807748, -70.99918063115986, -72.94019714308166, -72.87773575248832, -72.59844415178182, -75.64110669449573, -77.14352578573626, -77.55698368322089, -82.67603853194181, -80.33601076134525, -98.6310841847756, -90.24397393470471, -82.23508244931205, -82.93372172876586, -80.14278051059479, -81.93796418587448, -78.46085682705032, -76.96678710366697, -76.88478604978175, -74.29976087189252, -75.40362667780289, -76.92607592243934, -77.05107798747987, -76.04062863460976, -76.75979348996646, -74.47626505813238, -76.7149849065996, -74.0752296776839, -72.70538752599099, -69.70227510566293, -68.68556419412197, -67.49709125813787, -65.53982371333582, -63.597325713860116, -61.79225045963789, -58.65406981909804, -64.31220333011206, -72.20586731978034, -67.16023564047066, -71.83584282482946, -75.18763533978324, -76.83954992584837, -82.78752594244895, -78.9728448779832, -81.3679292126907, -87.38630768463496, -81.198549764041, -81.64332349728278, -81.0722747321432, -81.8050689649388, -80.19756146370129, -83.4907104533584, -78.87262898420855, -79.78171440751416, -81.55241463970178, -81.65541091258507, -84.177957429826, -80.60063930431453, -81.72954128234379, -82.4933325715626, -79.97274047311527, -82.63485637929247, -79.82666902734418, -83.56091295655133, -79.80260019981061, -87.30234782867994, -81.23878666183768, -84.35333562519206, -78.98963369159632, -82.57752967337606, -83.28833712985931, -82.4490862624047, -83.26861047346983, -79.98078050890479, -89.47951454697116, -90.02998641457594, -84.88703310225478, -85.48556930489191, -83.27932174003557, -83.1671603255516, -84.64710217712984, -89.48638756992756, -85.85669776768393, -92.77199258235609, -91.3045310836719, -90.79351881271123, -93.59389374555178, -88.95728448180589, -89.03013252040496, -90.59306866529727, -83.75632143931671, -92.43619914067985, -84.84023337981634, -91.55073866047637, -88.22721467998682, -87.61800781660008, -88.13010766859145, -92.63679514278854, -83.53364934152901, -101.19957507969613, -89.53165159768002, -92.2477602226675, -113.16058363764414, -87.39413935098364, -88.82918574681722, -85.45136838076104, -92.42196615522624, -91.90160877375222, -94.2071260294992, -89.07924036273889, -89.70648302323275, -85.56548195143955, -84.18617043418605, -82.69697416755687, -92.74604162736398, -86.03014202604223, -94.16533601141879, -89.20041140179515, -90.4914873346872, -102.8914106195084, -87.88645918252968, -88.54615140503259, -93.71965325746024, -91.24269454660381, -91.5301578929474, -85.15550868943413, -84.56504939033627, -85.20995029140173, -83.6272077417115, -88.74169156310947, -86.34275697419125, -85.92176122638506, -79.68720451176844, -91.64122520749302, -86.08693311836971, -82.25558604017291, -83.26007149904386, -81.01963063211156, -85.97598174875812, -81.66089765120097, -84.30186980889391, -84.89741914609888, -84.73437114721082, -80.4340243710401, -91.04410465622564, -82.92864907199825, -87.17818938617414, -79.20790079033135, -86.73673607707046, -86.80547686646379, -84.2460465595103, -83.75432608578521, -80.99376245915954, -88.34183207396664, -85.25508401358435, -85.32899095934701, -89.93696754287058, -95.21457685502875, -86.39634729920422, -87.7259611468861, -84.81401215415458, -92.10892864861023, -87.60499613218937, -88.33821969679386, -86.83665084946333, -84.55529686038757, -84.36588642074794, -82.50223978451103, -83.82413786448043, -81.3909889394001, -81.22099735651065, -83.37034845016127, -82.77203483227075, -83.78160094759865, -82.5137820396486, -82.04007972858031, -79.40413452982698, -79.75593107717437, -79.01182903305552, -78.2532482744397, -78.53128543180661, -76.3670772798435, -75.5565723196899, -73.06137512413453, -72.86589072941084, -72.5293763841799, -72.15362137881183, -70.97360868992361, -70.25164806698939, -68.95048588254093, -70.92838433913364, -69.57159708050274, -69.3320608543347, -68.30489050506388, -68.45403480415067, -68.07820537971246, -67.90429812747388, -68.79568690674961, -69.56490824566137, -69.05730659934817, -68.9684144330225, -68.64932835166555, -69.65758937002943, -70.72633100095821, -71.80916134296578, -70.40826308058615, -73.07711775171987, -73.84694993840233, -75.22185739050724, -75.70003573173912, -77.69658493958904, -81.13086691581672, -84.97587196824927, -81.74488970237479, -78.81480201149694, -77.46498929520156, -74.47546742860746, -73.07778356237321, -72.74400706840028, -71.67986677595638, -70.70378402162038, -70.45880679685537, -69.73276230039554, -70.13532941180117, -70.03911157520886, -69.53874219533014, -70.06412218171235, -70.41738688165546, -71.40230692933395, -70.8582523301064, -70.65819640088662, -71.22589709719955, -71.49384789261516, -71.1807849695853, -70.08332780194682, -70.02458468010956, -70.79886676222495, -70.51249282788405, -69.73222909099465, -69.39144392697274, -68.14130755039932, -67.80669906770274, -67.50314210805354, -66.62828961830088, -66.19177545163357, -65.67055952179811, -65.43245062109027, -65.27538771006404, -65.57450991546985, -65.95701552688047, -66.12965954353756, -65.69560158226957, -64.99929822113005, -62.70892337964926, -61.68301244690494, -72.78655525004433, -66.85644435565388, -62.122639236871706, -56.14602841310888, -48.575348795086235, -45.7335690753076, -50.574795465305094, -54.560800283020264, -57.60167653759778, -59.98228859122133, -61.106489469343956, -62.2586015140203, -64.13611065985268, -65.31120140637336, -66.12988060659944, -67.46753751849607, -67.99573252001093, -69.08154809374689, -69.47928132796731, -69.01017489878902, -70.2259625197281, -71.31601078931251, -70.77800476452676, -70.5808791913107, -69.87935829409678, -71.0594130448578, -71.68163541512646, -72.62999327101382, -72.45826535561848, -72.23009104832775, -72.80780462273779, -73.4820715084321, -73.70519761069447, -72.88640409462876, -75.36751864823388, -75.07039529106513, -74.0190520744129, -73.56467617451028, -75.9237342397472, -75.60907841724493, -74.89488619370272, -76.64326894295793, -78.17818221567946, -78.10674535148007, -78.94084052076546, -79.03552718069345, -78.8504367878887, -79.0349132787362, -81.04835479015755, -82.30697225181778, -80.10247697716261, -78.88678018431145, -80.37128770339628, -82.14721700134095, -81.22693480553511, -81.08339257625778, -81.83004726337555, -79.83023646097479, -77.67745687875498, -81.50334322854933, -84.01418914397456, -80.98223620290186, -82.70643846369126, -79.92925263030195, -81.71211802026873, -81.26622304457013, -80.2083861425869, -80.13552257738253, -81.86908868891231, -81.19576362284442, -81.82099116976659, -82.20240877888446, -86.78890536850061, -79.61130322819065, -81.75110893488069, -81.78769786563163, -82.98168327396651, -82.36533965888793, -81.62965920459733, -84.41321554863347, -84.01184184749555, -84.74050875566994, -89.46722461306817, -88.84063735200101, -82.81275242903929, -82.90202276384755, -84.91755072503403, -84.96596206871202, -81.13894979698136, -85.39321699339061, -81.607122974576, -82.31945648496522, -82.85952345756469, -84.42295096278114, -82.84207185119853, -81.16034360037263, -82.43167284004402, -88.69360136547861, -86.36166810561362, -83.93449210438018, -83.35904915458065, -86.88468756922076, -98.82821190904232, -87.71082368323816, -85.26093688776969, -84.74108058218698, -84.67937070577884, -81.80314646593064, -79.8836807143397, -80.36300132272277, -84.50184349712822, -81.10667418952684, -81.09288134215095, -78.34495826211985, -81.61163039289869, -78.2080407255509, -78.79546304138421, -83.53113734306189, -79.57352918136182, -82.10453122061934, -83.16020332662202, -80.17186102121342, -80.38938072044809, -83.28389900091051, -82.9607029875506, -82.94520129575983, -82.37499552318204, -91.48059085859686, -89.12201723239863, -88.75617337691574, -95.9326324096667, -99.25633105814961, -97.23263285050912, -93.21909799688184, -94.11819630957379, -85.62351822414955, -85.05654838877355, -85.2626814590208, -90.88379298502295, -92.43326693105607, -79.35220044985786, -83.04709913717637, -80.96542712392454, -84.79105066403517, -80.56852175395738, -82.53280699544521, -78.39248983186073, -79.2447603233322, -81.43899571451948, -80.31155523307615, -79.20322283033573, -78.60682587472675, -79.60335365747477, -77.17265683507352, -79.68049258143236, -78.77170109079083, -80.39321766005335, -80.4941458084255, -81.16611195830905, -77.78456738985656, -78.78702471912854, -78.48860775028547, -78.55857330968561, -75.48444941873751, -73.96409154725615, -74.38903229575247, -73.71949338937581, -74.09265235989642, -73.35719079851367, -72.52894839196236, -71.85790408700414, -72.1453826304687, -72.8880453420235, -73.40530105697334, -73.36737206181759, -75.07890346082172, -73.87373198800829, -73.80588771814108, -76.36115060644553, -77.02118448637019, -76.53403294825777, -79.42664545771953, -82.40856262963747, -82.16845737262183, -81.26015386506083, -86.2963866880354, -83.65223564951819, -83.65142512565328, -81.9605024763776, -83.89791653262753, -80.7512314471906, -81.2231875093839, -80.44612782097477, -80.45966828302679, -80.8219119610533, -80.0332895620364, -82.63448186413828, -81.86019433657266, -83.56347972969225, -83.77394208714534, -81.27557087301243, -82.08501855922398, -86.21956973640151, -84.63482483455017, -83.41455199615336, -84.64912470120032, -96.34052415406546, -86.5642811537206, -85.82554531994924, -84.81361841975429, -90.82933405396874, -95.63096096871976, -86.0174205809958, -121.79031565990871, -92.79314066821607, -85.16755182628037, -82.57085507428016, -75.82074141056064, -73.87322492418804, -68.31298004165734, -64.11005878089911, -64.98463610430836, -67.64031673823149, -68.74350875520462, -68.57314800107767, -65.94652265393414, -58.56024791442971, -53.34566073903658, -58.87813976190359, -64.7442515356068, -68.41855085735452, -70.89801102152032, -71.59385102101052, -70.22964252389163, -70.12887625788379, -71.9916117504309, -71.24086677816753, -71.60650275703543, -70.97323603666793, -72.7995015161423, -73.84714644347828, -73.30713638496142, -72.31100701928719, -71.4986293934344, -70.88239384247797, -72.69815871481828, -73.31874841687639, -72.95543138056001, -72.2540837994474, -74.2432474548261, -74.59339152589237, -74.55404408978748, -73.8406611908948, -75.88830123169797, -75.58870404898897, -75.3888359445969, -76.28499398013284, -77.40870574464778, -77.29151346752242, -81.50031597108674, -79.2620997361436, -79.3860155127041, -79.36421733429165, -84.62322327228028, -84.82608589393983, -82.35129276046933, -84.12203526917479, -82.57605119444732, -82.42209035945193, -83.06818914979338, -82.89117725699596, -86.48609896590129, -84.25581496142601, -81.98855165437608, -85.65708193482764, -85.89637231749295, -82.5161812955566, -82.04265657317494, -81.38022338088467, -85.14256716175524, -82.33155316896756, -82.38160315870964, -84.87981726188454, -80.48451148762015, -82.04015042696014, -82.32955687714833, -84.07176066873164, -81.30284220002403, -81.12884493899932, -81.9372103150564, -83.56943700019038, -81.82697458431831, -80.89579914262045, -83.97262158933157, -79.93571410181028, -83.01819952323187, -81.41823928661924, -82.18951458596814, -81.27099285661052, -84.68138978702723, -84.03783644262427, -82.42863908890357, -86.27254974430507, -84.99210324232051, -81.70128296552853, -88.37151920982011, -83.76394637926009, -88.0196759580119, -85.64988904212642, -82.40175253384935, -90.58034060615489, -88.29068829259606, -84.55981011024124, -86.42017837839994, -89.02150834654704, -86.63630041868038, -90.32797195003721, -88.04802447632923, -91.37678308783192, -84.69782985373911, -83.86132579391665, -84.48355867271374, -83.30655936547727, -82.29741617243043, -81.34454864963791, -83.66640526950178, -86.23140605362624, -82.55565833621317, -84.05427880751992, -82.86750458139878, -88.59851069426287, -82.46137563648837, -83.23294579363466, -86.71856263039919, -83.59414688361113, -86.29722158522361, -84.28239725248035, -87.8157894321092, -84.89115442916004, -91.6864612599155, -101.35948260356386, -94.56184570967852, -88.90522760718596, -84.12921000750215, -91.90104065214746, -89.34460613398096, -82.58048070176228, -83.90944102509359, -79.92772991815545, -84.05638656962118, -79.26327696557965, -80.29457538495745, -79.00233901407779, -80.99208315319623, -82.78990960298096, -80.06370601163516, -81.04995939201564, -78.8624585971124, -78.22224825563082, -79.99440514314378, -77.86916694509961, -79.250422909509, -80.67336968548668, -80.1707563264631, -78.78001796921222, -81.4138118296988, -79.65152131556606, -79.5990173986535, -78.05096519158778, -79.14362298918122, -75.6979243005097, -77.04413140700171, -76.55559900483694, -77.28709756421127, -76.04541468003005, -77.19834591915058, -76.93851074236721, -74.3601460999552, -76.2143701264659, -77.41734649361392, -75.55528628034354, -77.6204937972229, -74.07311766203239, -75.5820380403753, -74.57116231610792, -73.36072652768844, -75.74805054188748, -76.20114192639276, -77.67929869465027, -75.37344817920848, -76.64033248885792, -81.02526799747828, -76.30105356032234, -78.52216651935328, -78.79318151509747, -81.08915635564314, -84.58019646642794, -86.29068496654129, -88.28341791450481, -95.55488790642711, -97.54105850731575, -90.35989121174657, -88.6147154293069, -83.84193367936456, -89.62025261874368, -86.15805939967211, -90.48615918601632, -84.66923922881314, -86.69030988752158, -85.31874038660021, -93.3967584686704, -88.41683364565307, -84.51155979133486, -85.84092463898065, -87.03461820416082, -89.65842445872116, -80.09595821182144, -89.35910343643806, -82.2186456230748, -78.87215892964075, -80.61786382420055, -79.26679233286312, -80.34732882413454, -82.41145797376436, -80.7525874250833, -82.38631834524998, -85.19220739814668, -84.62683620891674, -83.37090811524811, -81.96055595388509, -80.89632047773404, -79.87269892463253, -80.24278013909255, -79.8346079773531, -77.8026363719776, -79.03506063381884, -75.45884408936247, -71.61459304343934, -72.78799699357565, -76.517926038625, -75.42018663585982, -73.03676855461684, -74.55059483341532, -73.89360388447132, -75.84386452715266, -76.14671817933252, -75.02824762668794, -64.12852670744874, -67.29684233270709, -73.28732512879458, -79.5846268612443, -79.40541625247766, -75.00037631141394, -76.84404141036336, -78.85487204030662, -81.21793501413208, -79.98849529791616, -83.34004685854033, -79.74651343629476, -80.20356874693867, -79.23679263271043, -77.55467472990605, -77.69164929572399, -78.21185067567993, -76.37953361977397, -76.37779062405458, -77.18394683860471, -76.47987427808148, -76.16065176650791, -75.64297339854431, -74.97578034262685, -75.7750025673626, -77.54191287768263, -75.62194876193576, -74.81913081874, -77.39551485044358, -74.8559487265797, -74.91971333523193, -79.47495016672048, -76.00110450230866, -73.8006800697679, -75.49092076181226, -74.23185181323616, -76.45878161733185, -76.31117246421907, -78.63303714485264, -78.63115637741588, -80.40081841576095, -80.11592310958491, -80.6080398938268, -84.27699223939841, -81.02798651190263, -78.32227134820957, -82.58733945895442, -80.38423325315549, -81.60764659272714, -82.68431301695024, -84.59374372808291, -81.11237443453673, -80.72886932779086, -82.73986809162363, -85.52247006170462, -84.84007076983572, -88.18292389111058, -83.91010172129666, -86.18694595984013, -86.52015910209727, -83.57243516002627, -82.48613246596177, -82.7884410294015, -81.18119245883179, -82.13860053661722, -82.64129275271398, -81.6960647957825, -80.1159618701058, -79.21762732081966, -81.7424748894588, -79.70725632627473, -79.79342130021236, -84.04795616072886, -78.57134757902541, -81.44528322452899, -82.30023599631087, -86.22784628669324, -81.70013993206013, -79.19547404275934, -80.43966892866453, -79.86860723071865, -84.24207185670276, -78.47102195897376, -85.46356952683867, -79.19143147305444, -78.98617908216978, -79.62882713386848, -81.45773303997203, -81.11144668459467, -82.97150923617122, -83.73635315026256, -83.56699622501304, -81.62933646696294, -90.66223984292462, -87.83603362436695, -84.65351506548458, -85.658764998425, -86.13755388323358, -87.2895785194698, -80.51276978481238, -79.31413546240354, -83.09522724598023, -79.17406539786123, -79.64393408512349, -79.16022904018247, -79.29090550207908, -78.5953799737633, -78.427641401611, -76.94938949325908, -77.60234129771392, -80.16323145872025, -78.29345991734031, -80.34977118368533, -83.04535583051644, -82.11828379319311, -80.51653810965307, -79.70903896591619, -79.72441576819108, -81.01121411332768, -82.3931832327242, -83.60537669243591, -86.15927759335791, -84.00157517702428, -82.6737719556447, -84.23410994591534, -83.67543661722004, -84.81560016645709, -86.85775746826232, -91.30659844203615, -91.56716157467956, -96.96310625461587, -93.7067040128282, -104.37894580936428, -86.42707320738177, -86.47974442711613, -83.74517715170421, -86.94511486841022, -79.68479556051457, -79.79732454009786, -78.62390421290618, -79.65504499674127, -78.26110230332137, -77.07912376842229, -77.00931905785625, -76.48780232811161, -75.52753706406185, -78.2857853114878, -79.20320259601353, -74.57345964171394, -76.36107619144526, -77.4926181223058, -76.1959282127049, -78.68279187044703, -80.86703958685527, -80.20828791155239, -79.09860605612192, -79.72251320552671, -80.5884208983356, -79.37808368734493, -79.19777040035642, -80.82370917434943, -79.3903508709696, -81.02453342258954, -84.05080509410806, -81.74449709652066, -82.95381551687989, -85.711582768195, -82.62870084921332, -85.90931854745932, -92.18379708866689, -85.79214716048776, -95.43936884696217, -93.65600184706408, -91.09646396407729, -89.92373546568474, -85.74995285217744, -103.22336978631093, -85.11121094024404, -87.85021783046378, -93.21854057471168, -94.67033477317734, -87.07538818056918, -88.03965798389231, -84.60611200311207, -83.6881745827146, -88.80535505461046, -81.54317258479733, -83.42195405979346, -81.98384323833251, -79.30248589726642, -81.22209583431282, -82.09580996961347, -84.53821001125236, -81.40288879334521, -82.51832969429437, -81.03368534080991, -79.31160162520752, -81.0233690138162, -82.27932213133104, -82.48697970293128, -82.53928342580586, -80.88380792669943, -80.63162445414575, -85.2724263960155, -87.9263439255733, -84.42493074093257, -89.9170797307905, -97.49208808402715, -93.2268567021896, -98.3459971721015, -102.17959257604082, -88.88538785768299, -86.69090665204573, -90.49426884603257, -83.62206464391745, -82.12985027737099, -79.12837992630674, -76.10936831970075, -72.23319955918763, -71.50335769800618, -71.26274655330847, -65.84883481250557, -64.41549782095446, -69.64885742984812, -74.38207102141916, -74.48572877895118, -74.1640273454995, -73.85183680804745, -74.5997462767531, -76.27271709949812, -76.17500134997877, -75.98932699390161, -75.7364877958133, -77.74295951882196, -77.03397324532195, -77.02520214160423, -76.3392152051168, -78.95894219263238, -77.5054200323506, -78.22415960977031, -75.9368410542396, -79.76561463068384, -78.3845972862067, -78.16959993266329, -77.77459579960248, -79.05904848967147, -79.62544230030424, -80.59321261173716, -77.37347932983407, -79.68765157245927, -84.36930481236513, -79.24703538257303, -79.90032383860049, -80.4668895802102, -80.68692247202691, -80.12588450319568, -82.92464769709736, -81.90501394155028, -80.84899206596619, -82.81597807058995, -83.3354955254933, -86.04211822870181, -81.54538918980595, -80.45168936221765, -85.49374231528628, -85.07679052994266, -86.65659323015737, -84.12310152621245, -82.21826869588779, -79.88144555911828, -82.28992675365288, -80.54263483468121, -80.23921556708395, -81.64048391334022, -81.19472617907178, -80.86914521790351, -79.96766161528679, -78.82015682599582, -80.44195048706591, -79.5275184705192, -80.90196009309324, -81.133088169871, -78.13422614415764, -79.29268241356355, -81.0236334846002, -78.03957648941841, -81.78915693739482, -80.20627659796872, -78.96478493576855, -79.1220367727623, -78.88723732050894, -78.77588336078385, -77.21618126880037, -79.17598956644001, -77.83121732570264, -77.00217622631607, -77.33340458648945, -77.51516450103776, -76.74854786590194, -77.16011754493118, -77.23802882186209, -77.75310248260233, -77.27367167739926, -77.92666794977433, -81.23865880062607, -78.03397535235952, -81.0790683399266, -78.67538510994272, -80.2443908770765, -83.7625455243559, -83.51656487772546, -85.40962378745957, -87.19892994401755, -82.39324007338934, -82.93334967280714, -89.01282793677223, -93.84399472009413, -92.59813401438763, -99.05935977538138, -93.06847364136374, -92.68257746546682, -93.09661837553632, -103.13132690872371, -88.53507654753173, -90.83013639524015, -88.9246657294064, -84.3780557408011, -91.00571908395183, -85.46371962870137, -86.94574090844543, -84.17418525507713, -87.21073700497956, -80.5834791079895, -81.44927378179352, -90.46324832817206, -88.2237732258206, -89.80513355690974, -88.36812045746672, -96.11148264396753, -97.05772011837644, -90.3211226411345, -101.07001275489819, -87.70019509597846, -94.11702070016969, -85.52407750990736, -83.66921490762235, -84.78499834614269, -82.91336267206809, -79.08683020377754, -81.58539936535931, -79.34715377435194, -79.62268615088169, -78.31969754671107, -78.41845650142824, -78.02163436368522, -78.57340320114629, -78.13665653399579, -79.42340736770096, -76.09344842520127, -77.54152451323543, -78.94218714058178, -77.96636658368985, -75.56071498623021, -78.11428642838285, -77.0857293126892, -73.78266000549274, -79.9783720149176, -78.1406287665678, -77.81743259035468, -78.7865250812572, -80.33995067015533, -78.66337886537052, -79.28316417005094, -83.18557720197651, -82.19025635875325, -86.81983845648219, -81.52258794673847, -85.09669782860092, -84.29343162690702, -82.18075882343686, -89.3536408717752, -83.6485645804917, -81.08751196383241, -82.50082038645166, -81.75104659543267, -83.1150028765054, -90.85708365835386, -82.05812313377245, -80.69064307057353, -84.44596055433439, -81.58509872576693, -80.53645123479505, -79.01915000319318, -81.78113566346589, -86.18668033871583, -82.66725737987996, -80.98815945410706, -83.71845507891186, -84.31138112821611, -86.11071630846672, -83.13338057487378, -80.30583328453648, -86.61860125305267, -88.84766168552233, -85.44152788887953, -83.58724333416411, -86.81040153443823, -86.43241332496387, -85.52710462952042, -90.66542938159321, -84.24898312298606, -85.5634829025152, -83.10320865398828, -82.27675750788579, -84.1714263823057, -86.06991291740616, -78.8080489906674, -80.54751565954277, -83.48295350857012, -82.2416221927052, -80.38771659201922, -83.74831281515989, -79.75604115207103, -79.03043749755878, -77.75708278932105, -80.87203578376658, -82.61127791185963, -84.2658135823969, -80.70562833247892, -78.8631984010926, -80.77684573692778, -85.38803120503879, -79.38706864108255, -78.4319419106823, -79.33200954335105, -77.0707541955487, -72.23758331903372, -72.49872659290745, -76.71097157840151, -87.1691240581918, -84.41394070328164, -88.49196151530235, -85.23142743718932, -91.40991858554762, -89.87131557441123, -89.87367432317029, -86.87666289321623, -84.68211881075904, -87.51143521722338, -86.11330714112583, -92.64588431148499, -94.75032011463091, -93.4797910828712, -90.01996534603006, -92.21613793611624, -94.61592150312329, -98.27205770459781, -108.1554913291046, -89.68134813038206, -88.4031477912419, -87.89892649225254, -89.99331241659823, -86.83327248710685, -93.49353359594159, -95.57742821142989, -86.07212110087617, -91.73809874323645, -86.76902384952527, -92.47094829645668, -86.83397057665539, -90.24309894387974, -92.93968242265422, -89.55397835359933, -95.20590400259009, -89.72751073288138, -96.29753495423654, -99.29988803418294, -101.76911574116917, -98.71689444766191, -86.07806388612411, -93.01120985117711, -95.09980593900089, -95.52224430966378, -102.62622015902336, -87.16329411840569, -88.51119864169407, -98.02356991630957, -91.13961992487278, -96.5993380951818, -87.78171550456742, -91.27100467244051, -96.5778618913586, -91.92542270772441, -92.05270334965051, -100.81326714566394, -92.24712278627167, -93.0937776332971, -102.27726395865261, -91.53140331827774, -88.39665071581751, -94.88134907370254, -91.44120970187652, -101.51254825933168, -93.34107951666182, -92.75609320901313, -90.26622832187559, -91.53077871642809, -95.27649246964143, -92.01514118491131, -88.14869640297964, -92.04206225713925, -90.24791691605145, -94.06692467638766, -95.63578534522472, -92.16060014221651, -92.5580460801583, -93.56851553153555, -93.84875795879486, -92.16433255375938, -93.09889919484215, -91.78860730893796, -89.94099131058786, -93.25666613631334, -91.20283515230845, -89.36822486116216, -86.22070052270337, -88.5969116282122, -87.22686272419574, -86.91025065866313, -87.4889918010139, -85.84999019851112, -86.97530478025845, -86.83320498451883, -87.38147466282236, -85.85954387021191, -85.75878767811282, -88.3786403381147, -88.6541838849888, -88.1070755449827, -88.97391632052036, -89.14710173675266, -88.73731251808165, -92.2708545074873, -90.87927867148723, -93.84883656210275, -94.86317741945089, -97.66880385977757, -95.01643869635492, -93.23581776503418, -91.41825348019762, -93.39933657551852, -92.84933142006793, -92.9302294628553, -91.96683900203863, -92.02964850232071, -93.82327678836562, -92.9399705361111, -90.05339613631149, -91.41745584497109, -90.21339048824848, -91.15893263227859, -92.0148593504961, -92.14775093137084, -93.55903338033065, -94.57587097324745, -93.66695477554899, -95.30009016334866, -96.34996998845114, -96.48974136637507, -96.24024879359553, -102.24201756179603, -101.66136528824345, -110.61343208848145, -104.92731518484098, -103.90167436490523, -114.6312002952776, -99.9784471652743, -96.79368201466724, -97.62747378482072, -97.69997808563573, -96.10275897530373, -96.25789992657434, -94.574353794405, -95.62453320281864, -95.25332536174588, -91.85907951897269, -93.98428694467766, -93.6314214596247, -94.67224908317007, -94.27219251036286, -94.91733084436667, -92.57307704035665, -93.59620366962916, -94.75579876023161, -95.02170996221602, -94.51420312588168, -95.65493409235336, -96.3283400555796, -94.2364844702877, -98.00610705061666, -96.99384002761101, -94.84603099107197, -97.00980782978237, -98.48333453979876, -99.99439835227902, -99.3292202305369, -96.2403766093538, -95.28430972262127, -97.37487535284835, -98.67755825352279, -96.93990018064191, -100.07373143825147, -98.35705127707027, -98.2161554112844, -102.79163863466609, -101.93211911003642, -103.07844863075164, -114.02122415415802, -108.60198807920284, -113.45317210755603, -107.26489670089396, -106.73096672351902, -101.0257966310025, -99.4042550172831, -100.56644586737033, -96.65403356221661, -97.4491722104946, -95.6301634110142, -93.35968094335394, -92.92961484800207, -91.47075375299232, -90.84596916048821, -91.32489875642622, -90.310399373288, -89.21299084439912, -88.9882632040941, -89.12125395979604, -89.5563970244452, -89.32807990820449, -89.19609617663055, -89.01231478407617, -89.0134394806999, -89.21232295685653, -89.62455549577484, -91.03107955174272, -90.73207143560947, -92.66492660441233, -93.39772573570613, -91.80374798193853, -94.25002906440335, -93.25719012518456, -95.86332568758122, -95.865139591417, -95.4159144021868, -96.22837552832733, -95.4206228195603, -96.60259318508734, -93.91932883816168, -92.15679778453905, -94.68828539813038, -92.58281129809802, -91.73938271030829, -90.49548853455634, -90.79948704540008, -90.95570727145602, -89.59697668188653, -88.98837183836145, -90.57301295889486, -90.96428751756692, -89.14169019695609, -89.45104718820112, -88.90518202752472, -90.48047261572016, -90.41554084481815, -89.81599316759885, -90.15981078042961, -92.60453806162566, -91.74454581209494, -92.4838869311118, -91.92023438505669, -93.40567372509912, -94.44092400746038, -94.54650989126367, -94.08771258275127, -95.89117932990646, -96.35351151679471, -97.18597703445823, -98.1917877618868, -105.9389877055615, -102.82096774260722, -126.91569611840764, -110.22279035671345], "type": "scatter"}], "config": {"showlegend": false, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [-4000, -2000, 0, 2000, 4000], "range": [-4239.97, 4238.97], "domain": [0.09128390201224845, 0.9934383202099738], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["-4000", "-2000", "0", "2000", "4000"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Частота (Гц)", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [{"yanchor": "top", "xanchor": "center", "rotation": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "paper", "showarrow": false, "text": "Спектр мощности аудиосигнала", "xref": "paper", "x": 0.5423611111111111}], "height": 400, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [-125, -100, -75, -50, -25], "range": [-130.2258749489656, -13.266222935917256], "domain": [0.07581474190726165, 0.9415463692038496], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["-125", "-100", "-75", "-50", "-25"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Мощность (дБ)", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "width": 827.5}}
{"id": "13add28f_ab8d_4015_8eb8_4fb48e92ed06", "data": [{"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217, 1218, 1219, 1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228, 1229, 1230, 1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238, 1239, 1240, 1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250, 1251, 1252, 1253, 1254, 1255, 1256, 1257, 1258, 1259, 1260, 1261, 1262, 1263, 1264, 1265, 1266, 1267, 1268, 1269, 1270, 1271, 1272, 1273, 1274, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 1282, 1283, 1284, 1285, 1286, 1287, 1288, 1289, 1290, 1291, 1292, 1293, 1294, 1295, 1296, 1297, 1298, 1299, 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1338, 1339, 1340, 1341, 1342, 1343, 1344, 1345, 1346, 1347, 1348, 1349, 1350, 1351, 1352, 1353, 1354, 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1364, 1365, 1366, 1367, 1368, 1369, 1370, 1371, 1372, 1373, 1374, 1375, 1376, 1377, 1378, 1379, 1380, 1381, 1382, 1383, 1384, 1385, 1386, 1387, 1388, 1389, 1390, 1391, 1392, 1393, 1394, 1395, 1396, 1397, 1398, 1399, 1400, 1401, 1402, 1403, 1404, 1405, 1406, 1407, 1408, 1409, 1410, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1437, 1438, 1439, 1440, 1441, 1442, 1443, 1444, 1445, 1446, 1447, 1448, 1449, 1450, 1451, 1452, 1453, 1454, 1455, 1456, 1457, 1458, 1459, 1460, 1461, 1462, 1463, 1464, 1465, 1466, 1467, 1468, 1469, 1470, 1471, 1472, 1473, 1474, 1475, 1476, 1477, 1478, 1479, 1480, 1481, 1482, 1483, 1484, 1485, 1486, 1487, 1488, 1489, 1490, 1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498, 1499, 1500, 1501, 1502, 1503, 1504, 1505, 1506, 1507, 1508, 1509, 1510, 1511, 1512, 1513, 1514, 1515, 1516, 1517, 1518, 1519, 1520, 1521, 1522, 1523, 1524, 1525, 1526, 1527, 1528, 1529, 1530, 1531, 1532, 1533, 1534, 1535, 1536, 1537, 1538, 1539, 1540, 1541, 1542, 1543, 1544, 1545, 1546, 1547, 1548, 1549, 1550, 1551, 1552, 1553, 1554, 1555, 1556, 1557, 1558, 1559, 1560, 1561, 1562, 1563, 1564, 1565, 1566, 1567, 1568, 1569, 1570, 1571, 1572, 1573, 1574, 1575, 1576, 1577, 1578, 1579, 1580, 1581, 1582, 1583, 1584, 1585, 1586, 1587, 1588, 1589, 1590, 1591, 1592, 1593, 1594, 1595, 1596, 1597, 1598, 1599, 1600, 1601, 1602, 1603, 1604, 1605, 1606, 1607, 1608, 1609, 1610, 1611, 1612, 1613, 1614, 1615, 1616, 1617, 1618, 1619, 1620, 1621, 1622, 1623, 1624, 1625, 1626, 1627, 1628, 1629, 1630, 1631, 1632, 1633, 1634, 1635, 1636, 1637, 1638, 1639, 1640, 1641, 1642, 1643, 1644, 1645, 1646, 1647, 1648, 1649, 1650, 1651, 1652, 1653, 1654, 1655, 1656, 1657, 1658, 1659, 1660, 1661, 1662, 1663, 1664, 1665, 1666, 1667, 1668, 1669, 1670, 1671, 1672, 1673, 1674, 1675, 1676, 1677, 1678, 1679, 1680, 1681, 1682, 1683, 1684, 1685, 1686, 1687, 1688, 1689, 1690, 1691, 1692, 1693, 1694, 1695, 1696, 1697, 1698, 1699, 1700, 1701, 1702, 1703, 1704, 1705, 1706, 1707, 1708, 1709, 1710, 1711, 1712, 1713, 1714, 1715, 1716, 1717, 1718, 1719, 1720, 1721, 1722, 1723, 1724, 1725, 1726, 1727, 1728, 1729, 1730, 1731, 1732, 1733, 1734, 1735, 1736, 1737, 1738, 1739, 1740, 1741, 1742, 1743, 1744, 1745, 1746, 1747, 1748, 1749, 1750, 1751, 1752, 1753, 1754, 1755, 1756, 1757, 1758, 1759, 1760, 1761, 1762, 1763, 1764, 1765, 1766, 1767, 1768, 1769, 1770, 1771, 1772, 1773, 1774, 1775, 1776, 1777, 1778, 1779, 1780, 1781, 1782, 1783, 1784, 1785, 1786, 1787, 1788, 1789, 1790, 1791, 1792, 1793, 1794, 1795, 1796, 1797, 1798, 1799, 1800, 1801, 1802, 1803, 1804, 1805, 1806, 1807, 1808, 1809, 1810, 1811, 1812, 1813, 1814, 1815, 1816, 1817, 1818, 1819, 1820, 1821, 1822, 1823, 1824, 1825, 1826, 1827, 1828, 1829, 1830, 1831, 1832, 1833, 1834, 1835, 1836, 1837, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1845, 1846, 1847, 1848, 1849, 1850, 1851, 1852, 1853, 1854, 1855, 1856, 1857, 1858, 1859, 1860, 1861, 1862, 1863, 1864, 1865, 1866, 1867, 1868, 1869, 1870, 1871, 1872, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1893, 1894, 1895, 1896, 1897, 1898, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909, 1910, 1911, 1912, 1913, 1914, 1915, 1916, 1917, 1918, 1919, 1920, 1921, 1922, 1923, 1924, 1925, 1926, 1927, 1928, 1929, 1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946, 1947, 1948, 1949, 1950, 1951, 1952, 1953, 1954, 1955, 1956, 1957, 1958, 1959, 1960, 1961, 1962, 1963, 1964, 1965, 1966, 1967, 1968, 1969, 1970, 1971, 1972, 1973, 1974, 1975, 1976, 1977, 1978, 1979, 1980, 1981, 1982, 1983, 1984, 1985, 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026, 2027, 2028, 2029, 2030, 2031, 2032, 2033, 2034, 2035, 2036, 2037, 2038, 2039, 2040, 2041, 2042, 2043, 2044, 2045, 2046, 2047, 2048, 2049, 2050, 2051, 2052, 2053, 2054, 2055, 2056, 2057, 2058, 2059, 2060, 2061, 2062, 2063, 2064, 2065, 2066, 2067, 2068, 2069, 2070, 2071, 2072, 2073, 2074, 2075, 2076, 2077, 2078, 2079, 2080, 2081, 2082, 2083, 2084, 2085, 2086, 2087, 2088, 2089, 2090, 2091, 2092, 2093, 2094, 2095, 2096, 2097, 2098, 2099, 2100, 2101, 2102, 2103, 2104, 2105, 2106, 2107, 2108, 2109, 2110, 2111, 2112, 2113, 2114, 2115, 2116, 2117, 2118, 2119, 2120, 2121, 2122, 2123, 2124, 2125, 2126, 2127, 2128, 2129, 2130, 2131, 2132, 2133, 2134, 2135, 2136, 2137, 2138, 2139, 2140, 2141, 2142, 2143, 2144, 2145, 2146, 2147, 2148, 2149, 2150, 2151, 2152, 2153, 2154, 2155, 2156, 2157, 2158, 2159, 2160, 2161, 2162, 2163, 2164, 2165, 2166, 2167, 2168, 2169, 2170, 2171, 2172, 2173, 2174, 2175, 2176, 2177, 2178, 2179, 2180, 2181, 2182, 2183, 2184, 2185, 2186, 2187, 2188, 2189, 2190, 2191, 2192, 2193, 2194, 2195, 2196, 2197, 2198, 2199, 2200, 2201, 2202, 2203, 2204, 2205, 2206, 2207, 2208, 2209, 2210, 2211, 2212, 2213, 2214, 2215, 2216, 2217, 2218, 2219, 2220, 2221, 2222, 2223, 2224, 2225, 2226, 2227, 2228, 2229, 2230, 2231, 2232, 2233, 2234, 2235, 2236, 2237, 2238, 2239, 2240, 2241, 2242, 2243, 2244, 2245, 2246, 2247, 2248, 2249, 2250, 2251, 2252, 2253, 2254, 2255, 2256, 2257, 2258, 2259, 2260, 2261, 2262, 2263, 2264, 2265, 2266, 2267, 2268, 2269, 2270, 2271, 2272, 2273, 2274, 2275, 2276, 2277, 2278, 2279, 2280, 2281, 2282, 2283, 2284, 2285, 2286, 2287, 2288, 2289, 2290, 2291, 2292, 2293, 2294, 2295, 2296, 2297, 2298, 2299, 2300, 2301, 2302, 2303, 2304, 2305, 2306, 2307, 2308, 2309, 2310, 2311, 2312, 2313, 2314, 2315, 2316, 2317, 2318, 2319, 2320, 2321, 2322, 2323, 2324, 2325, 2326, 2327, 2328, 2329, 2330, 2331, 2332, 2333, 2334, 2335, 2336, 2337, 2338, 2339, 2340, 2341, 2342, 2343, 2344, 2345, 2346, 2347, 2348, 2349, 2350, 2351, 2352, 2353, 2354, 2355, 2356, 2357, 2358, 2359, 2360, 2361, 2362, 2363, 2364, 2365, 2366, 2367, 2368, 2369, 2370, 2371, 2372, 2373, 2374, 2375, 2376, 2377, 2378, 2379, 2380, 2381, 2382, 2383, 2384, 2385, 2386, 2387, 2388, 2389, 2390, 2391, 2392, 2393, 2394, 2395, 2396, 2397, 2398, 2399, 2400, 2401, 2402, 2403, 2404, 2405, 2406, 2407, 2408, 2409, 2410, 2411, 2412, 2413, 2414, 2415, 2416, 2417, 2418, 2419, 2420, 2421, 2422, 2423, 2424, 2425, 2426, 2427, 2428, 2429, 2430, 2431, 2432, 2433, 2434, 2435, 2436, 2437, 2438, 2439, 2440, 2441, 2442, 2443, 2444, 2445, 2446, 2447, 2448, 2449, 2450, 2451, 2452, 2453, 2454, 2455, 2456, 2457, 2458, 2459, 2460, 2461, 2462, 2463, 2464, 2465, 2466, 2467, 2468, 2469, 2470, 2471, 2472, 2473, 2474, 2475, 2476, 2477, 2478, 2479, 2480, 2481, 2482, 2483, 2484, 2485, 2486, 2487, 2488, 2489, 2490, 2491, 2492, 2493, 2494, 2495, 2496, 2497, 2498, 2499, 2500, 2501, 2502, 2503, 2504, 2505, 2506, 2507, 2508, 2509, 2510, 2511, 2512, 2513, 2514, 2515, 2516, 2517, 2518, 2519, 2520, 2521, 2522, 2523, 2524, 2525, 2526, 2527, 2528, 2529, 2530, 2531, 2532, 2533, 2534, 2535, 2536, 2537, 2538, 2539, 2540, 2541, 2542, 2543, 2544, 2545, 2546, 2547, 2548, 2549, 2550, 2551, 2552, 2553, 2554, 2555, 2556, 2557, 2558, 2559, 2560, 2561, 2562, 2563, 2564, 2565, 2566, 2567, 2568, 2569, 2570, 2571, 2572, 2573, 2574, 2575, 2576, 2577, 2578, 2579, 2580, 2581, 2582, 2583, 2584, 2585, 2586, 2587, 2588, 2589, 2590, 2591, 2592, 2593, 2594, 2595, 2596, 2597, 2598, 2599, 2600, 2601, 2602, 2603, 2604, 2605, 2606, 2607, 2608, 2609, 2610, 2611, 2612, 2613, 2614, 2615, 2616, 2617, 2618, 2619, 2620, 2621, 2622, 2623, 2624, 2625, 2626, 2627, 2628, 2629, 2630, 2631, 2632, 2633, 2634, 2635, 2636, 2637, 2638, 2639, 2640, 2641, 2642, 2643, 2644, 2645, 2646, 2647, 2648, 2649, 2650, 2651, 2652, 2653, 2654, 2655, 2656, 2657, 2658, 2659, 2660, 2661, 2662, 2663, 2664, 2665, 2666, 2667, 2668, 2669, 2670, 2671, 2672, 2673, 2674, 2675, 2676, 2677, 2678, 2679, 2680, 2681, 2682, 2683, 2684, 2685, 2686, 2687, 2688, 2689, 2690, 2691, 2692, 2693, 2694, 2695, 2696, 2697, 2698, 2699, 2700, 2701, 2702, 2703, 2704, 2705, 2706, 2707, 2708, 2709, 2710, 2711, 2712, 2713, 2714, 2715, 2716, 2717, 2718, 2719, 2720, 2721, 2722, 2723, 2724, 2725, 2726, 2727, 2728, 2729, 2730, 2731, 2732, 2733, 2734, 2735, 2736, 2737, 2738, 2739, 2740, 2741, 2742, 2743, 2744, 2745, 2746, 2747, 2748, 2749, 2750, 2751, 2752, 2753, 2754, 2755, 2756, 2757, 2758, 2759, 2760, 2761, 2762, 2763, 2764, 2765, 2766, 2767, 2768, 2769, 2770, 2771, 2772, 2773, 2774, 2775, 2776, 2777, 2778, 2779, 2780, 2781, 2782, 2783, 2784, 2785, 2786, 2787, 2788, 2789, 2790, 2791, 2792, 2793, 2794, 2795, 2796, 2797, 2798, 2799, 2800, 2801, 2802, 2803, 2804, 2805, 2806, 2807, 2808, 2809, 2810, 2811, 2812, 2813, 2814, 2815, 2816, 2817, 2818, 2819, 2820, 2821, 2822, 2823, 2824, 2825, 2826, 2827, 2828, 2829, 2830, 2831, 2832, 2833, 2834, 2835, 2836, 2837, 2838, 2839, 2840, 2841, 2842, 2843, 2844, 2845, 2846, 2847, 2848, 2849, 2850, 2851, 2852, 2853, 2854, 2855, 2856, 2857, 2858, 2859, 2860, 2861, 2862, 2863, 2864, 2865, 2866, 2867, 2868, 2869, 2870, 2871, 2872, 2873, 2874, 2875, 2876, 2877, 2878, 2879, 2880, 2881, 2882, 2883, 2884, 2885, 2886, 2887, 2888, 2889, 2890, 2891, 2892, 2893, 2894, 2895, 2896, 2897, 2898, 2899, 2900, 2901, 2902, 2903, 2904, 2905, 2906, 2907, 2908, 2909, 2910, 2911, 2912, 2913, 2914, 2915, 2916, 2917, 2918, 2919, 2920, 2921, 2922, 2923, 2924, 2925, 2926, 2927, 2928, 2929, 2930, 2931, 2932, 2933, 2934, 2935, 2936, 2937, 2938, 2939, 2940, 2941, 2942, 2943, 2944, 2945, 2946, 2947, 2948, 2949, 2950, 2951, 2952, 2953, 2954, 2955, 2956, 2957, 2958, 2959, 2960, 2961, 2962, 2963, 2964, 2965, 2966, 2967, 2968, 2969, 2970, 2971, 2972, 2973, 2974, 2975, 2976, 2977, 2978, 2979, 2980, 2981, 2982, 2983, 2984, 2985, 2986, 2987, 2988, 2989, 2990, 2991, 2992, 2993, 2994, 2995, 2996, 2997, 2998, 2999, 3000, 3001, 3002, 3003, 3004, 3005, 3006, 3007, 3008, 3009, 3010, 3011, 3012, 3013, 3014, 3015, 3016, 3017, 3018, 3019, 3020, 3021, 3022, 3023, 3024, 3025, 3026, 3027, 3028, 3029, 3030, 3031, 3032, 3033, 3034, 3035, 3036, 3037, 3038, 3039, 3040, 3041, 3042, 3043, 3044, 3045, 3046, 3047, 3048, 3049, 3050, 3051, 3052, 3053, 3054, 3055, 3056, 3057, 3058, 3059, 3060, 3061, 3062, 3063, 3064, 3065, 3066, 3067, 3068, 3069, 3070, 3071, 3072, 3073, 3074, 3075, 3076, 3077, 3078, 3079, 3080, 3081, 3082, 3083, 3084, 3085, 3086, 3087, 3088, 3089, 3090, 3091, 3092, 3093, 3094, 3095, 3096, 3097, 3098, 3099, 3100, 3101, 3102, 3103, 3104, 3105, 3106, 3107, 3108, 3109, 3110, 3111, 3112, 3113, 3114, 3115, 3116, 3117, 3118, 3119, 3120, 3121, 3122, 3123, 3124, 3125, 3126, 3127, 3128, 3129, 3130, 3131, 3132, 3133, 3134, 3135, 3136, 3137, 3138, 3139, 3140, 3141, 3142, 3143, 3144, 3145, 3146, 3147, 3148, 3149, 3150, 3151, 3152, 3153, 3154, 3155, 3156, 3157, 3158, 3159, 3160, 3161, 3162, 3163, 3164, 3165, 3166, 3167, 3168, 3169, 3170, 3171, 3172, 3173, 3174, 3175, 3176, 3177, 3178, 3179, 3180, 3181, 3182, 3183, 3184, 3185, 3186, 3187, 3188, 3189, 3190, 3191, 3192, 3193, 3194, 3195, 3196, 3197, 3198, 3199, 3200, 3201, 3202, 3203, 3204, 3205, 3206, 3207, 3208, 3209, 3210, 3211, 3212, 3213, 3214, 3215, 3216, 3217, 3218, 3219, 3220, 3221, 3222, 3223, 3224, 3225, 3226, 3227, 3228, 3229, 3230, 3231, 3232, 3233, 3234, 3235, 3236, 3237, 3238, 3239, 3240, 3241, 3242, 3243, 3244, 3245, 3246, 3247, 3248, 3249, 3250, 3251, 3252, 3253, 3254, 3255, 3256, 3257, 3258, 3259, 3260, 3261, 3262, 3263, 3264, 3265, 3266, 3267, 3268, 3269, 3270, 3271, 3272, 3273, 3274, 3275, 3276, 3277, 3278, 3279, 3280, 3281, 3282, 3283, 3284, 3285, 3286, 3287, 3288, 3289, 3290, 3291, 3292, 3293, 3294, 3295, 3296, 3297, 3298, 3299, 3300, 3301, 3302, 3303, 3304, 3305, 3306, 3307, 3308, 3309, 3310, 3311, 3312, 3313, 3314, 3315, 3316, 3317, 3318, 3319, 3320, 3321, 3322, 3323, 3324, 3325, 3326, 3327, 3328, 3329, 3330, 3331, 3332, 3333, 3334, 3335, 3336, 3337, 3338, 3339, 3340, 3341, 3342, 3343, 3344, 3345, 3346, 3347, 3348, 3349, 3350, 3351, 3352, 3353, 3354, 3355, 3356, 3357, 3358, 3359, 3360, 3361, 3362, 3363, 3364, 3365, 3366, 3367, 3368, 3369, 3370, 3371, 3372, 3373, 3374, 3375, 3376, 3377, 3378, 3379, 3380, 3381, 3382, 3383, 3384, 3385, 3386, 3387, 3388, 3389, 3390, 3391, 3392, 3393, 3394, 3395, 3396, 3397, 3398, 3399, 3400, 3401, 3402, 3403, 3404, 3405, 3406, 3407, 3408, 3409, 3410, 3411, 3412, 3413, 3414, 3415, 3416, 3417, 3418, 3419, 3420, 3421, 3422, 3423, 3424, 3425, 3426, 3427, 3428, 3429, 3430, 3431, 3432, 3433, 3434, 3435, 3436, 3437, 3438, 3439, 3440, 3441, 3442, 3443, 3444, 3445, 3446, 3447, 3448, 3449, 3450, 3451, 3452, 3453, 3454, 3455, 3456, 3457, 3458, 3459, 3460, 3461, 3462, 3463, 3464, 3465, 3466, 3467, 3468, 3469, 3470, 3471, 3472, 3473, 3474, 3475, 3476, 3477, 3478, 3479, 3480, 3481, 3482, 3483, 3484, 3485, 3486, 3487, 3488, 3489, 3490, 3491, 3492, 3493, 3494, 3495, 3496, 3497, 3498, 3499, 3500, 3501, 3502, 3503, 3504, 3505, 3506, 3507, 3508, 3509, 3510, 3511, 3512, 3513, 3514, 3515, 3516, 3517, 3518, 3519, 3520, 3521, 3522, 3523, 3524, 3525, 3526, 3527, 3528, 3529, 3530, 3531, 3532, 3533, 3534, 3535, 3536, 3537, 3538, 3539, 3540, 3541, 3542, 3543, 3544, 3545, 3546, 3547, 3548, 3549, 3550, 3551, 3552, 3553, 3554, 3555, 3556, 3557, 3558, 3559, 3560, 3561, 3562, 3563, 3564, 3565, 3566, 3567, 3568, 3569, 3570, 3571, 3572, 3573, 3574, 3575, 3576, 3577, 3578, 3579, 3580, 3581, 3582, 3583, 3584, 3585, 3586, 3587, 3588, 3589, 3590, 3591, 3592, 3593, 3594, 3595, 3596, 3597, 3598, 3599, 3600, 3601, 3602, 3603, 3604, 3605, 3606, 3607, 3608, 3609, 3610, 3611, 3612, 3613, 3614, 3615, 3616, 3617, 3618, 3619, 3620, 3621, 3622, 3623, 3624, 3625, 3626, 3627, 3628, 3629, 3630, 3631, 3632, 3633, 3634, 3635, 3636, 3637, 3638, 3639, 3640, 3641, 3642, 3643, 3644, 3645, 3646, 3647, 3648, 3649, 3650, 3651, 3652, 3653, 3654, 3655, 3656, 3657, 3658, 3659, 3660, 3661, 3662, 3663, 3664, 3665, 3666, 3667, 3668, 3669, 3670, 3671, 3672, 3673, 3674, 3675, 3676, 3677, 3678, 3679, 3680, 3681, 3682, 3683, 3684, 3685, 3686, 3687, 3688, 3689, 3690, 3691, 3692, 3693, 3694, 3695, 3696, 3697, 3698, 3699, 3700, 3701, 3702, 3703, 3704, 3705, 3706, 3707, 3708, 3709, 3710, 3711, 3712, 3713, 3714, 3715, 3716, 3717, 3718, 3719, 3720, 3721, 3722, 3723, 3724, 3725, 3726, 3727, 3728, 3729, 3730, 3731, 3732, 3733, 3734, 3735, 3736, 3737, 3738, 3739, 3740, 3741, 3742, 3743, 3744, 3745, 3746, 3747, 3748, 3749, 3750, 3751, 3752, 3753, 3754, 3755, 3756, 3757, 3758, 3759, 3760, 3761, 3762, 3763, 3764, 3765, 3766, 3767, 3768, 3769, 3770, 3771, 3772, 3773, 3774, 3775, 3776, 3777, 3778, 3779, 3780, 3781, 3782, 3783, 3784, 3785, 3786, 3787, 3788, 3789, 3790, 3791, 3792, 3793, 3794, 3795, 3796, 3797, 3798, 3799, 3800, 3801, 3802, 3803, 3804, 3805, 3806, 3807, 3808, 3809, 3810, 3811, 3812, 3813, 3814, 3815, 3816, 3817, 3818, 3819, 3820, 3821, 3822, 3823, 3824, 3825, 3826, 3827, 3828, 3829, 3830, 3831, 3832, 3833, 3834, 3835, 3836, 3837, 3838, 3839, 3840, 3841, 3842, 3843, 3844, 3845, 3846, 3847, 3848, 3849, 3850, 3851, 3852, 3853, 3854, 3855, 3856, 3857, 3858, 3859, 3860, 3861, 3862, 3863, 3864, 3865, 3866, 3867, 3868, 3869, 3870, 3871, 3872, 3873, 3874, 3875, 3876, 3877, 3878, 3879, 3880, 3881, 3882, 3883, 3884, 3885, 3886, 3887, 3888, 3889, 3890, 3891, 3892, 3893, 3894, 3895, 3896, 3897, 3898, 3899, 3900, 3901, 3902, 3903, 3904, 3905, 3906, 3907, 3908, 3909, 3910, 3911, 3912, 3913, 3914, 3915, 3916, 3917, 3918, 3919, 3920, 3921, 3922, 3923, 3924, 3925, 3926, 3927, 3928, 3929, 3930, 3931, 3932, 3933, 3934, 3935, 3936, 3937, 3938, 3939, 3940, 3941, 3942, 3943, 3944, 3945, 3946, 3947, 3948, 3949, 3950, 3951, 3952, 3953, 3954, 3955, 3956, 3957, 3958, 3959, 3960, 3961, 3962, 3963, 3964, 3965, 3966, 3967, 3968, 3969, 3970, 3971, 3972, 3973, 3974, 3975, 3976, 3977, 3978, 3979, 3980, 3981, 3982, 3983, 3984, 3985, 3986, 3987, 3988, 3989, 3990, 3991, 3992, 3993, 3994, 3995, 3996, 3997, 3998, 3999, 4000], "showlegend": true, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [-63.28857429492547, -66.46658822251419, -63.28857429492547, -59.93779341355531, -51.27623046581895, -55.0166376772155, -50.174191070626236, -58.95065435265565, -44.24630717199064, -48.48098093994243, -44.60657554211879, -49.87499422617695, -50.83865112894579, -53.0686276665709, -51.75174698140553, -48.25107879791692, -45.59334573208613, -46.83639038587125, -50.930194416952574, -47.87190280642706, -50.19389654712658, -48.85020699121252, -51.743969124686515, -51.980420916056616, -53.24226220361747, -50.257152212042904, -49.470344229371776, -51.904410200018056, -50.770280420126916, -51.725612815376195, -50.90766461948419, -49.35810186045775, -50.92162690606655, -50.943041366179635, -50.00610908863729, -50.74527302965217, -50.244002128491715, -50.33452466651963, -48.75122288901998, -51.064024633141315, -50.299546140589264, -50.48507752880965, -50.55277370878464, -50.95365214291675, -53.70818972464878, -50.451300005983384, -53.324715906924325, -55.36557790274497, -53.028521171656315, -53.45958522340545, -55.85683474380665, -57.80237142719666, -56.50093416451994, -59.64538244892197, -57.961082685002054, -55.996829716981, -54.150403521244606, -56.31593812774923, -59.493417514806595, -58.84952508849188, -60.901638591108245, -61.70331945575687, -61.44337828890806, -71.18112863341396, -65.59246345528553, -67.11747277857637, -62.552703356878176, -61.63017437135225, -72.69397290872134, -70.98904990521078, -76.80567777771417, -65.24499416468535, -66.94969660738812, -63.67089395181647, -67.47805900683565, -62.6166333960991, -64.2663425045246, -61.532727433912356, -57.974168208054955, -58.67098463780671, -57.31495580891732, -56.59767494094023, -56.75203407860042, -56.414264276956025, -56.58851150705728, -53.64647769384074, -52.91725587496877, -50.7140422932816, -52.74598888761801, -52.534312657812656, -50.88953912898049, -49.96023979847101, -50.5263338612336, -50.23232910166055, -48.864027666486216, -49.034188689432796, -49.20121602364187, -48.811660783442825, -48.45489704799565, -48.13495560566458, -48.395262793901956, -48.14872030498958, -47.72845586639124, -47.20540422565697, -46.5568578841323, -46.330836167228554, -45.616349867630916, -44.896957743485785, -44.322974736180115, -43.05017148873727, -41.14800449959085, -47.892719148820305, -42.8035467516488, -41.24896891746813, -39.804797208722384, -38.6269727611134, -36.74046077681186, -35.87857141060312, -36.39333235406861, -38.765642491293576, -41.20771754889273, -43.16568641410597, -44.50390694112514, -44.3602078382061, -45.306615731315276, -46.10143080716916, -47.428062123481496, -48.59776616642734, -49.0069186132175, -49.144372639354295, -50.51861275869491, -50.69762102995087, -51.05704543841291, -51.26431030614793, -51.08905787999767, -52.44649401449752, -51.83188482043515, -53.21047319208336, -52.455822450875935, -52.54616249807845, -52.77105082294439, -53.204222492965314, -52.716579781338154, -53.6554482020578, -52.5293040904252, -52.46682827002626, -52.32901127186736, -50.92379001377412, -53.72255012924654, -53.90628509355538, -53.93712848920653, -54.121584580300095, -53.47424714053554, -53.77161289087784, -53.88504041409415, -53.32058089582163, -54.85856708026617, -54.663768813967515, -54.72900542050471, -53.90782717896728, -54.703062942694785, -54.18639633449179, -54.665465110840884, -54.58101116009887, -53.14507898466975, -57.86981941393863, -54.10534554867964, -54.166868376593946, -53.6885394490028, -53.105951882003254, -53.577557854664036, -53.976788179406554, -52.85571603990178, -52.93819396896402, -52.45183013429592, -52.999156763900984, -51.650776041078224, -52.312890088647926, -51.93830657265554, -51.085712155487826, -51.03055224684772, -51.222627775317875, -50.57198785805135, -49.78048752932835, -49.7393753998503, -49.51694621377307, -49.14642607865596, -48.68937765276008, -48.10357445969573, -47.46330033173611, -47.22235310103427, -47.19225629425269, -46.49798787681747, -45.92967276747053, -45.681858423737395, -45.07321613756895, -44.59079369707088, -44.366792794312396, -43.73530086801344, -43.21316116343323, -42.944939892600445, -42.29524737754649, -42.08616882942338, -41.20904003645542, -40.69433335571485, -39.94697603365583, -39.30530857221311, -38.47637881416163, -37.69042482469425, -36.65464330824447, -35.88576400959643, -34.79490955822905, -33.74228602401271, -32.64073091459367, -31.287882829991084, -29.372326462316828, -26.699921568790646, -23.10999806227249, -18.929708950877203, -16.576401766475236, -17.845634268654788, -25.374873292843155, -26.41255619056914, -27.868957325305814, -29.23438091541755, -30.72894519457042, -31.95718534571536, -32.848691781066776, -33.546771185465985, -34.242431649415, -34.822916470333915, -35.54519730355578, -36.444672372097, -37.33566396502682, -38.400367042368686, -39.32976538076384, -40.57024499522868, -41.890492207433496, -43.420519834784166, -44.47187501342359, -46.18319211797359, -47.359942326236386, -48.47552880618062, -50.199085733467676, -51.31699319356493, -53.11274418699193, -54.44153353894847, -55.79460667372453, -50.42921661004272, -48.0548854489175, -50.004247842402265, -50.92624826657281, -51.72028489716817, -51.94574947991953, -52.5335464788498, -53.231534253684806, -53.63307730947394, -54.03519652252505, -54.635151295422524, -54.74999879039469, -54.84913675896849, -56.22196564591951, -56.860905623515656, -56.92940162513155, -56.8784849618908, -57.518655089558536, -58.64325653217268, -59.00441913788187, -60.03911712401374, -59.96015413673322, -60.62976602472655, -61.94474248021224, -61.39372982121615, -62.365921992281265, -61.75601800867646, -63.22072678216109, -61.98772589108874, -62.34955659523767, -62.984569238293744, -62.38554289737702, -63.031141474753284, -62.893437233512145, -64.1716523734632, -62.27218961406959, -63.5312495737238, -63.805130201455086, -62.92691867946141, -64.28846651257784, -63.45316336946488, -66.07548936651608, -64.19704115469384, -64.83532553060962, -65.62973849470029, -67.93972080068795, -66.69861129417102, -71.18384605530943, -68.69650619632012, -72.63597907463313, -74.22263454190646, -72.73807441150291, -73.61171155617849, -86.67955707372161, -81.03582243421037, -80.23238502337706, -88.94858372920663, -74.66332308897357, -73.06854183739468, -71.21435158490301, -68.86910649804895, -65.09681044931935, -65.71312470330574, -65.08247053243866, -63.97349681586573, -63.60569949083953, -62.92318316540536, -62.84904229344057, -61.748941051102534, -63.571079944157596, -61.940323990580296, -60.57050964994255, -60.38450603296387, -61.287143882559256, -61.26190062573235, -62.112223723639616, -60.2952009854781, -60.629178509890245, -61.65035526480544, -60.599367384929096, -61.892368697904814, -63.66247834722081, -61.33015049713105, -63.8414404251618, -63.23103592890101, -62.95622813412662, -64.24011043705087, -64.34561550724399, -64.06320505860018, -65.22812098834335, -67.20420187499342, -68.529662483737, -68.45376684987076, -72.13542837940557, -68.53852129185897, -73.07569662364014, -76.21698007166502, -75.17544827806911, -77.63270416216264, -76.37462118903603, -77.47212061702703, -79.61074733064072, -91.07290937492643, -73.2330198561278, -77.52081367295422, -73.73711788089423, -73.41704893810379, -72.44195859355598, -74.67789687957041, -70.12443105152424, -70.49959563931651, -70.39503628614082, -66.94283691072036, -69.81581125706876, -68.25981568121614, -67.83975229706786, -67.29225648565397, -69.13420617114416, -68.20844274815516, -67.83379364626917, -68.38638996016851, -67.13347048999785, -67.73634070524929, -68.98840447132974, -65.87905995527044, -65.72292291024931, -65.48198345260539, -62.609749652231585, -63.001948734883364, -61.84438544174402, -61.664157213977774, -61.3407985789197, -61.64551994530946, -60.002792624758925, -59.553836744845945, -59.23815598620254, -59.32170498609195, -58.083445515849526, -59.78962134708478, -58.54051158247724, -57.79604801007597, -57.529473822804306, -57.82052055760953, -57.439951528903876, -56.53848967721348, -57.24903579054714, -56.07335418492005, -56.613949204715574, -57.42558247723931, -57.46118294811386, -55.69794053525305, -56.35883886892188, -56.422866201647395, -56.15365225646738, -55.170629015205634, -55.24204139917663, -55.099767169330846, -55.54558119846283, -54.805042467374705, -54.71013895401526, -54.34838423379379, -53.67777279172444, -53.47249526857443, -51.00299905063561, -54.972461535903975, -51.73983803338969, -50.16007153969035, -48.974908535116754, -47.619707843334, -46.733275277648076, -45.86864846608482, -45.014216837625405, -44.49432937418287, -44.042128275719875, -43.86205829303069, -43.84306263411638, -44.0264520976566, -44.13037004738402, -44.29275791088314, -44.40423179820971, -44.55007889012538, -44.61021163068635, -44.75504672271262, -44.80325637493554, -44.78685323415249, -45.05605414314785, -44.91065604919224, -44.53594148698048, -44.38152706148985, -45.021673788381776, -43.62342847423895, -40.27868672481966, -30.159173227765198, -21.219589637470033, -42.1221873279716, -47.658700596568096, -50.176035828877374, -49.82680266243322, -48.49297838836758, -48.56720889576202, -49.66834227734975, -49.98856706957051, -49.97551399918842, -50.53088028924958, -50.87028763245194, -51.06303589859309, -51.7429285897465, -52.46473110010552, -53.09771450466354, -53.433898653745985, -54.17441535706261, -54.375395100544296, -55.02617325361402, -55.19042344664015, -55.720978050831974, -56.05482181226398, -56.86658079113493, -57.0407287697143, -56.44153990845859, -56.9106741379391, -57.25090262509095, -57.50748534881889, -57.31826447201317, -57.52310888243357, -58.0399877758738, -59.13291289100361, -58.944750711916754, -58.96485168698032, -59.95164135154458, -59.73358561339859, -60.55439834571309, -60.71691312921408, -60.65329042260796, -62.16695217666076, -62.114740746428836, -62.60273373375436, -63.65323018328893, -64.33055301907368, -65.6343994755384, -65.0059021497839, -65.60687066796609, -69.94636615656071, -67.67988592139629, -68.92653184821282, -68.71748856106235, -69.91842922999801, -75.45266853018235, -74.4048453849585, -77.60034469730346, -77.74713253729604, -81.75920531892831, -79.4632047155538, -75.35147843078629, -79.02353257471782, -77.40821388991282, -74.23617759217643, -71.99102369659487, -71.57357430461265, -71.81647355020287, -68.67391395029078, -69.31260579252404, -69.15934468481744, -69.2029265387997, -69.60125021128151, -70.28939123964331, -68.72613466791259, -72.33122096409103, -68.93714324167037, -70.12079016659325, -68.01066692011074, -70.16132809088388, -69.1850392185596, -70.53775839875077, -75.6024697610208, -70.20507651169834, -73.7246503375022, -71.884337435085, -72.97378282161122, -86.9855489827448, -80.43324549712837, -77.82628837706811, -90.06790098436642, -98.01277745208643, -82.1240493955556, -76.6754227616782, -79.00763763769208, -76.42443967504731, -73.19454375666385, -73.27407913421536, -73.1348783310443, -70.59816237130649, -69.96059034347613, -68.46507404615224, -69.0306212400466, -66.4313390502245, -66.14622899295115, -66.49784538313968, -66.35686714370539, -66.54881108803347, -68.08263576622247, -67.76161103197583, -67.71815810429442, -65.45447506625345, -72.71916427321423, -68.40966347240224, -65.92871946680026, -68.05948339376876, -67.18867012729689, -68.62773818886458, -69.6754011172678, -70.80158309312807, -70.65836567566026, -69.7181372476169, -68.76218225610577, -72.22090495888541, -68.28051285643811, -71.14724835432706, -67.19547127762605, -69.05788969388433, -66.76960394346798, -70.47432400004331, -71.64352064594512, -70.29750244060762, -70.38778252607686, -72.60656064356405, -74.85583110923749, -84.89045293928461, -77.701589106254, -71.3797566517492, -68.1884312256527, -76.31156883746412, -74.49203191014264, -71.15489221603326, -71.2300593837009, -67.66454500788286, -70.11536022284199, -69.25255798369645, -69.71592212205653, -66.44659566631853, -66.09664014324265, -66.93013674910117, -66.62604128659814, -66.41348393751053, -64.27255756597967, -65.52820889159155, -66.35441822384342, -65.99600860876848, -64.23652277758714, -65.38863701917998, -65.73703047858145, -65.01263066121028, -66.08486371715546, -65.85007322399099, -64.66046347782489, -66.03972676752828, -65.0484777657069, -65.38435016364316, -65.79417614943351, -64.89540640338687, -64.99958619340781, -66.14577318023916, -67.17586372877582, -65.20588947859326, -64.23263697768719, -64.58526195051418, -64.16126178726564, -64.553685374938, -63.670971542695156, -63.659276495531074, -62.23938631133024, -62.49456098826321, -62.80480863960282, -60.92057528577146, -60.35957020916932, -59.947513710093425, -60.23858583800751, -59.333880487218885, -59.08507047474498, -58.89209598249323, -57.58165990892376, -57.247823928763765, -57.062685969411035, -56.575680566795434, -56.06642041681795, -55.92737823006018, -55.37607387228614, -55.2968257766983, -54.7912951307448, -54.873562290200894, -54.18643958297668, -53.89983912478713, -53.789818700725874, -54.1076806778601, -53.73957922803959, -53.63668890398853, -53.94891029991071, -53.88398198441463, -53.98929195384248, -54.139761373931144, -54.52307727875897, -54.87985170158539, -55.08393566253707, -55.58161547649989, -56.10802219151771, -56.6757117057281, -56.83379345542778, -57.795041022108855, -57.74483650654653, -55.722787705097716, -55.05271768544966, -56.47313924067906, -69.27894895765694, -41.43364363272359, -27.265771896700507, -47.82457888381832, -54.214563608542804, -55.94590119306804, -57.138022077723704, -57.92684377795827, -57.857298119402216, -57.846200199921455, -63.38915824858718, -61.46377822447664, -61.80649577319153, -61.496485732184325, -63.225955778991256, -62.824256723057985, -62.279565790364046, -62.31657058751398, -63.55503533004378, -64.21951752807894, -62.161380929963805, -61.74086267881654, -62.27528748514989, -62.19022164471668, -62.062953341133415, -61.89092001878606, -61.28019617524239, -61.99035865906743, -63.0819344113433, -62.43470491145503, -62.30079453823036, -62.413223345772614, -63.4180358224112, -62.53452755360265, -62.997503099641364, -63.60588455157492, -63.77895497653334, -63.838390479811444, -64.9255962150082, -64.72515966584683, -65.02417927358476, -64.61079591645901, -65.44773664660687, -65.23523597143492, -65.73216057789956, -65.72230905537529, -64.67826946459832, -65.25300196714178, -67.18418408839877, -66.59006330945532, -66.49847130304326, -66.26009966455152, -68.53081686446583, -67.26464468190471, -67.58351249340801, -67.651526934101, -66.69780117243572, -67.5672321564557, -67.24874706220822, -67.69257704989212, -67.77256687943334, -67.32249955446817, -68.009920083912, -68.08133870843135, -67.63977406645834, -69.04188655446417, -71.09518582522009, -70.3580889474332, -71.03818882117737, -69.6171549134226, -70.40555383428375, -72.21302802727475, -75.2387598235905, -71.64214791790164, -74.72890917192717, -71.68071135974742, -74.16227184052804, -75.58670795582753, -75.58256674628957, -74.22080679213998, -75.79328414134052, -77.67660016472746, -80.71348283684044, -81.21660966460357, -80.1014075131788, -80.85145086221331, -80.13535765566594, -85.91895335301908, -76.11043319418499, -74.36404518413875, -73.04048342164292, -74.19518066728737, -72.15162153020893, -71.16080938954914, -71.05144909092826, -71.89823727162968, -71.98595543111706, -71.80656177369885, -71.9833564505464, -72.56865321515824, -75.68619641904208, -71.69818821039149, -74.6179231550341, -73.28288398870848, -74.12068351260001, -74.84968803433858, -72.57282817908093, -72.2521556022734, -71.07231757297592, -73.83838941049125, -71.25730806900303, -71.63952662285547, -70.14334970250476, -73.5808199775694, -73.87476987669609, -70.15746885668469, -71.65979378961245, -69.86987303314153, -70.34707498569442, -70.29323495637358, -72.25308714535976, -69.48013043523525, -69.33054512486545, -70.81695313315096, -70.56371321478804, -68.97509735509448, -66.98986606568441, -69.20269857716801, -68.80631117758041, -69.02111468211137, -67.35241211994013, -66.70967669094173, -66.08323031327393, -65.67771243749651, -64.98972958931843, -67.88940494406307, -65.90359738256186, -67.06227446679908, -66.23931426804688, -66.76778610039844, -68.2868177381785, -65.95126322960616, -67.5230245428917, -66.41253379245093, -66.73411832407469, -65.92613671071611, -66.71921708832491, -66.16652951508131, -66.88486930471387, -68.03027730931305, -66.04987682590226, -67.03744091887762, -66.96451028633739, -67.12647596306905, -67.90434615663985, -66.68903512714775, -66.87314091076385, -66.87754027482637, -66.61696272548281, -66.09864900153744, -67.91607499073099, -65.98789164954725, -65.68374960812268, -66.40569055730572, -67.6330695580634, -67.92872549274941, -66.43443321264391, -71.0233421191177, -69.66619225888797, -67.88815041862564, -69.45204306255654, -69.96339196259365, -69.4614408984473, -68.75847485920632, -68.54955305599854, -67.47458665385352, -67.02143140941365, -65.80437289657277, -64.80158532576468, -63.93584542494919, -61.90163591677277, -61.23580335372068, -60.102020331445296, -59.77515680671087, -58.78668324163548, -58.32658827541273, -57.328705831984735, -57.13807730751087, -57.0006038869747, -56.30606324123257, -56.11005113355489, -55.94448628408824, -55.52029035859856, -55.92894835589963, -55.519967677706425, -54.81547639095076, -54.60896465879195, -54.64578538279308, -53.930579265907824, -53.32179960919345, -52.5224163736651, -51.76001516544363, -50.734831946102396, -50.303032739481715, -50.017476896690596, -49.86399279252092, -49.7352549654996, -49.656885130255695, -49.717079991553504, -49.5652274394289, -49.88910576533609, -49.98446832432772, -50.0568630680424, -50.83272186218377, -51.18374993785183, -51.981145864781695, -53.187897302355935, -56.09079978461619, -60.81447885749965, -63.64818713951821, -56.99880095927382, -51.6522714581248, -35.58434073426043, -48.493486521362925, -47.657047200020344, -53.15227256003416, -55.78464937103998, -58.52481612776286, -57.962595844203676, -57.2262492395262, -58.06293388155511, -57.80323847353918, -58.42644411996024, -58.83722547996672, -59.27070591285376, -59.80175555319309, -60.045198013748255, -60.31083809171135, -60.71271663139511, -61.36000978602671, -61.924924161348585, -61.92315272992619, -62.94953911561723, -62.52432414763747, -63.20217203934785, -62.9454425747468, -63.88304131483579, -64.86242038803408, -63.857475582544545, -64.66650236400808, -63.35115338481082, -64.42187467113722, -64.60518988518504, -65.34362968927493, -64.85677982033498, -64.57760577696152, -67.42457342111963, -66.32918232039412, -66.85444426773083, -66.16927918961035, -67.14171018253937, -66.75006734408443, -68.33167021255393, -66.41441419301401, -67.66528087019549, -67.88171890866113, -68.0981424646827, -67.96832177265897, -69.12789974093693, -68.29266841407039, -68.56958779465445, -70.40439169987549, -70.29450730038579, -70.4212239559396, -69.10284214635698, -69.84627648078444, -71.26094905555425, -70.55200051330247, -73.00637768316902, -72.89640457002668, -73.01737583125218, -73.07933612761897, -69.90028260110827, -73.59861187363119, -71.70076787527056, -73.62242271868921, -73.25168865589332, -72.69393478875615, -73.90384800427739, -73.91331580692642, -80.86011598869199, -73.47438436880894, -75.76427784780205, -76.51133770796928, -73.55925179672519, -76.032380683447, -75.74385313839797, -73.48025269578228, -71.6885216573448, -74.00234769538943, -73.55295376691218, -72.01764476582683, -71.57264060888735, -72.5839591810352, -70.14130931205285, -72.35999178036964, -70.93961750072475, -70.09926003888457, -67.85027614088234, -69.24609556119907, -68.79967242339353, -67.79955540984304, -68.70435388033785, -67.6747749650765, -68.17042726062877, -69.40859767193037, -67.71802649836258, -67.43209877575676, -68.54175442706233, -67.00661101922483, -68.24103333768227, -69.25947605099387, -69.8667106505233, -74.69535194882377, -70.22198054357767, -68.71131070823678, -69.65515708390281, -68.04415158679896, -68.49797878998997, -68.33222040218322, -68.38844135161048, -69.36135428513762, -68.7402597332341, -68.55484244514398, -70.01914859507912, -67.55765475732126, -67.56605968920461, -69.07425452852036, -67.49498606301157, -67.81907954322897, -67.29878543134367, -67.75132948774542, -67.44884763133848, -68.86505375225424, -68.19624659217607, -67.92091909978377, -66.87124012315675, -67.46022488327918, -66.79811345612481, -67.25531804382146, -66.49931940024388, -66.68461539883555, -67.19533331115275, -65.74038979785716, -67.37602627892716, -65.50017108496047, -65.75809100919946, -67.15115904025936, -65.91095474535919, -66.09166273369405, -66.56668765670274, -67.41858851052368, -66.99091585958024, -66.88121008933484, -67.33532884492502, -67.37144500623313, -69.48897120283921, -69.06234844232532, -70.66528996647698, -69.44713529127793, -68.6358401625451, -67.781862078703, -68.65944577447203, -69.20499860327374, -69.92307447934239, -68.2252795689093, -68.68613803582907, -69.88586545974995, -70.82190678033277, -71.74504291238512, -70.82759549215805, -70.1667138365812, -71.3377689635068, -74.9995948645851, -78.7610170757728, -77.49064602073099, -73.05942667536587, -75.90033958022826, -76.81560127386662, -74.05553109501629, -73.7553285986124, -74.05244772221526, -72.45685880883966, -71.43696097888149, -71.49585290410023, -71.33079080716713, -68.8173123373048, -71.68536580480168, -70.75639043760073, -69.19957568924664, -68.55459782154429, -68.68116218978555, -68.00838168658159, -68.48738045689272, -67.50988811742704, -68.33256255926926, -67.91607765857471, -68.1098458291212, -69.10167392441356, -67.44950506544572, -66.3546148919439, -67.32539456274722, -66.0351561350243, -67.38603240089128, -66.91944447258726, -66.8873459881166, -67.42697766611646, -68.43521790353415, -67.72128163151069, -66.82495705811861, -69.2473009115039, -67.68341084395901, -67.56814655510652, -66.68545330016627, -64.93736494046945, -64.17093309872479, -62.44243962114487, -61.421522432968665, -60.94665869828026, -59.65659789018702, -59.082139828891144, -58.50690531591315, -57.54682874946873, -56.74720031829334, -56.44333877730068, -55.86978245340178, -55.6085633580136, -55.34451207630994, -53.448866944802276, -51.06805723901004, -52.54790943308685, -46.686041086015955, -36.91231430119692, -39.550308155094285, -49.55930150869651, -51.99772874043272, -55.328209108456754, -57.61520618545547, -58.39703979279329, -60.676122823354376, -62.021983068256645, -62.63170600593078, -63.31764354580309, -64.13509312351101, -64.81345254428946, -65.52010477691299, -66.27100017959516, -65.86437308587301, -67.06138461491629, -67.66829558033828, -69.60869831111229, -70.17707533614492, -70.42212130597228, -68.92753822913515, -70.39031083705335, -71.42341013077956, -73.67731947149858, -72.15933466221426, -74.30073561710947, -73.80296136501047, -74.72146571994313, -74.86104237655488, -76.95144592287514, -75.01982519024494, -75.4729028897965, -75.70001490521028, -79.23031485374014, -75.68587085237505, -77.23004974481628, -78.17823903686511, -78.24725073684193, -79.34214628130495, -81.33299168524417, -87.58510967470755, -81.09414922971723, -80.4601897033143, -80.08058855563738, -84.25696317718274, -89.14880265183555, -91.07717409710104, -85.48035071603178, -79.76579597736195, -82.20651610748212, -79.64807866912727, -84.45889046559158, -78.2159783958525, -78.6557306991844, -75.35869066173493, -75.90455449196031, -82.57890675381796, -76.12937838947768, -74.84471145392799, -76.83667168361123, -74.70966873958301, -75.36301758476337, -78.11860679539315, -74.2448878432123, -74.04223302207282, -77.06569511447292, -74.38266063318605, -72.80130582385371, -72.34078634923958, -74.06499855854851, -74.4402388575075, -74.97616280035489, -75.24886397403887, -74.75718099367586, -75.00527865221949, -75.98578418420362, -73.79085374931029, -73.77764522954759, -75.57955201862852, -73.29296227489134, -77.81715863834339, -74.79924840457934, -74.8936385914914, -74.37331336731823, -74.21603678693427, -80.80518629715614, -83.22164159948309, -73.56235383941464, -75.4147848488978, -80.1128310424647, -90.62929816607814, -80.6464505241644, -80.23976647554312, -85.64627337648096, -82.72691942930743, -84.03125206883541, -82.86230707176598, -82.53366652931128, -90.98274533897909, -88.62862184920974, -80.10848326627787, -84.77357160755562, -81.5698797028538, -108.77783734859867, -86.98345138139268, -85.97838612464962, -82.72359598019791, -82.55140596737918, -94.03696182982388, -77.33542412739482, -88.31694787184509, -86.24819982155644, -89.55936677404024, -86.28630436594882, -84.05700949101532, -80.66272925286754, -81.57735514708477, -90.09844240432089, -80.79903157982974, -86.61815415340654, -80.45807776579363, -79.78618901923147, -77.59914451130761, -75.40205810904641, -78.46253266864701, -79.31366804072945, -75.6223251537874, -80.10930672823649, -75.80617689686576, -80.55564867424988, -81.79976556175481, -77.98066046366998, -78.19951349183724, -75.6243988301784, -78.63850883993638, -77.21087236072053, -75.78079491443155, -76.72146057073942, -76.59926899554854, -76.17805943672391, -81.95695418163223, -75.66390035859504, -75.59598494302874, -76.47566071764697, -76.91715736125951, -76.54308456352972, -78.03759604386644, -77.14633693723948, -77.19281254795833, -75.89901754176933, -75.80607686162477, -75.28160681288561, -74.45850668883392, -75.73075870498906, -73.77275883849317, -77.99700170783251, -76.95738492807246, -73.5747014138346, -75.82654223314607, -76.37677727910146, -74.39554259476827, -75.86507829031814, -74.52318523711187, -74.53481785903902, -76.76120379533758, -75.63334992621158, -75.91212629591568, -76.29053901428186, -75.30621110383231, -76.44596132354182, -74.72911479514465, -73.62424924146508, -78.33853885741848, -74.6580306343492, -75.118989748736, -74.92469207639391, -73.02986236728931, -72.51734457223567, -73.70249294108527, -74.64535408736437, -73.62951353727375, -72.9187728541259, -70.45282736653894, -72.01187297829509, -72.95703577721932, -71.96958791629221, -71.01907448935256, -70.39839457654563, -68.5211337684204, -66.71338975278049, -65.96090113114349, -64.92342403987612, -64.34023885549158, -65.26720734001657, -65.51028514327184, -65.02631386394353, -64.10001823736258, -63.79539129608767, -63.77258165826957, -62.35245672129807, -62.10078393064961, -61.56365015054692, -62.69862198366233, -62.61905844021855, -63.175437437102396, -63.9091684635472, -64.66872498633167, -64.19412261310117, -65.72466020635142, -67.94678472458901, -69.93201951047595, -70.49025645712666, -68.27184860334805, -63.38964930081238, -59.980926627410454, -55.18187755224866, -54.04691666467269, -63.982609148609114, -58.86118005584339, -46.31472397303532, -54.829642615452755, -64.36371930570475, -66.40379669931423, -66.25070715086667, -69.72836461923002, -69.96135569513625, -71.29568479536191, -70.90646015252737, -68.84882821631778, -70.0575203333858, -71.40263972899768, -71.19832004561687, -70.99631677589925, -72.05956210485665, -73.17606849609834, -71.72369344542761, -72.06782080339823, -72.06318244706794, -72.0037161108789, -69.26537019131315, -71.14340524305533, -70.54478015962262, -69.55448072982281, -68.66782790764805, -70.33991588400893, -70.11985259415094, -68.90584020062097, -69.68349372761631, -70.07673022488609, -69.64701574318957, -69.70979579089133, -69.67289076531351, -70.5840566647146, -71.59789160583551, -70.4968933340462, -71.3029983613553, -70.9753091951906, -71.20210528579622, -70.57300565936532, -71.12065385526785, -70.19612869430077, -73.72316182082565, -73.94864628603123, -73.27774182456416, -74.15237223826816, -73.49316180556067, -73.4995146601594, -74.68577145774194, -74.35311453449772, -74.20063063199721, -76.07940875509891, -73.60727645903536, -75.7085142973313, -77.5125321896679, -81.83533694014953, -76.81418066321433, -77.0544255068921, -79.07017690521403, -80.10420423328897, -82.92562494285347, -78.08063267306717, -77.0079821092184, -78.04005706934882, -84.36639692831982, -84.18423333778634, -79.02831113134891, -78.29514078702111, -88.86823296818682, -78.42301547181772, -79.1619420271908, -81.10319391496981, -81.16229898085874, -82.7987893750204, -79.56996975934844, -88.2666580464003, -81.0833345055154, -79.22256458419012, -78.78335949423769, -78.3358259042574, -82.71005202299888, -83.46657275310493, -78.1163735524459, -79.21877315981251, -80.17940195793244, -77.43279644193953, -77.97849052006565, -76.16570898813916, -74.79920028398584, -75.12978190321566, -76.3702988159529, -75.63061406914917, -76.87278882667636, -75.84733949094408, -73.05385490933105, -74.17548237958806, -76.75549862807816, -73.93878789291588, -75.69026142419249, -75.456401758872, -72.81632218244636, -73.98536791328468, -71.52141728010355, -73.60649354173587, -72.91928468116812, -74.79691934706709, -70.3350126088171, -72.03855039046242, -72.20741726205488, -73.37775226333045, -72.2345199024092, -73.35631880158031, -73.69150837124347, -75.64857734415796, -77.54559190977295, -74.68357278336089, -79.86142359346158, -75.12858823533327, -76.91709489876973, -72.51034181816676, -75.13589208160207, -77.98398562319827, -78.58414169538085, -78.45814715404113, -76.9201219261514, -76.77085556194413, -79.89337922234778, -82.21967566590153, -80.16637479237309, -82.20641346604813, -81.57053715615635, -82.70599256453312, -86.45116821155113, -85.09092208760778, -85.93707311359496, -90.79218909511144, -92.94494577662644, -90.45649828112133, -84.68371782268115, -79.23564391488645, -85.4488784994394, -94.8695387470786, -81.65440593758852, -88.54859237223226, -82.14278974755985, -84.43379090757743, -83.82662784707412, -80.87866544766439, -79.78924529976722, -80.32777254845325, -78.91579155243339, -79.76347443463678, -79.64788478708789, -78.81315277353386, -79.71361474401019, -77.26882938135881, -76.38701847778722, -79.12209735288849, -80.75746616859946, -77.90052832618254, -82.89173924366972, -82.65267514864306, -76.63277050089785, -78.73314520017603, -76.90904285277713, -82.40282214464554, -82.3772868615501, -74.93602079443944, -77.2839824356551, -75.76594601501272, -74.86062355558514, -78.44663345937855, -73.9369720998677, -73.22701638707083, -72.81616238848568, -73.32389225352452, -72.22879816571428, -73.30067764835778, -71.4747841433765, -72.04762319516337, -69.76252430013002, -69.63193014559221, -68.95142660369166, -68.8437593566004, -69.54026095643715, -69.13092683199591, -68.89876905129265, -67.13591146024777, -66.7644030770818, -66.67631253447587, -66.12927754884934, -69.60180304872983, -75.7952022862089, -77.41711652718845, -81.96787354155003, -78.2273968673259, -91.1691545675778, -89.90457778254284, -101.04356049237776, -86.88266635718747, -83.13572487739135, -75.01487095295823, -73.32052726897237, -74.0542781241823, -74.70779768333796, -72.41558611082309, -73.61166491684615, -72.08971118118141, -71.67091412383924, -72.04822175191991, -70.59211182784776, -70.89413032685033, -70.65015150157082, -71.75536469907715, -68.28753503364842, -69.10548756694843, -68.09294444068009, -67.49519600667246, -65.68679265762901, -59.98918619155277, -53.399076423088204, -50.80559558508262, -66.17159299010675, -69.7256124557058, -66.73404072544767, -67.12833384616036, -70.50002185163628, -70.32329524812336, -73.28697155748971, -70.73367628548199, -69.55158921677133, -71.10190478342653, -69.56958919842074, -70.71930405999322, -70.84840770750412, -72.04079041128085, -71.3664186800471, -70.88751334479505, -72.23437396796065, -73.50735292310839, -72.37150731545937, -73.22482975017543, -74.53781584831742, -73.80809936761995, -74.68963583050726, -75.392276519664, -73.43901631270077, -76.30742161354729, -75.98892529476447, -76.35283201702731, -77.22995883632177, -77.6560141032177, -77.53825480589258, -74.9275485674826, -78.16945420009044, -80.3904372288388, -79.56049965463153, -87.05081810462481, -86.82915696068848, -81.00391104627107, -88.23367532595628, -92.91375037255753, -89.18022132985008, -82.75135737514894, -86.18857650876613, -90.12367983391051, -84.73617544598352, -90.6821517312011, -81.19428977313154, -89.84196399561799, -83.0983564565666, -88.82220291959088, -81.6848426710613, -87.94129014776271, -91.12580616013467, -84.06044804752698, -79.29530064618397, -82.72000293275062, -80.86960994069558, -78.39425628583213, -79.93453063086396, -82.56880452507062, -77.45590121656615, -76.37679769998412, -77.75215127996616, -79.76345754724083, -77.77874937753825, -75.29373334184893, -76.34693212991473, -76.28595061498066, -77.84619953664495, -76.01683705852433, -73.94069159069322, -74.9332236952086, -73.82277665852276, -73.7039566603483, -75.4352780239483, -73.87347567571729, -75.4909724118358, -75.84178606232183, -72.69712782918756, -73.58213563318226, -74.38304133799639, -76.08012658430721, -77.99040663919585, -78.89846265475273, -75.4066450311028, -76.00354998424764, -78.87427776577411, -77.37573676070969, -77.49624829334037, -80.18893996858311, -80.56301373115426, -76.89963497760625, -75.98123903609961, -77.37823120798475, -74.95498756148683, -74.64416332802375, -77.20470602253316, -73.89452865972478, -76.08129552994151, -78.03009707944985, -76.7309069419826, -74.88637882919959, -77.86910157694041, -77.69135364440855, -76.23283435338557, -75.88740360957993, -74.51017596399825, -75.76745871788383, -73.73554823720428, -74.23891913693649, -75.03515476509962, -75.26199771309943, -74.01702488920867, -74.7913425175315, -73.66925106476238, -72.34894364631722, -72.46081491904557, -72.97150513399512, -73.41115043994566, -71.42266630720025, -73.74503891200061, -70.28261047991981, -73.15881531156825, -73.29713073917203, -72.13233931947745, -72.81147370050599, -71.88065369015115, -72.20803315271284, -72.0977294089896, -71.09593833747198, -72.17039125453242, -70.83117963256441, -70.55233297352382, -71.08295157432894, -71.09556942507017, -72.27010207939925, -70.16971959065897, -71.9943543924482, -71.68559334864065, -71.34402023869117, -71.41426442509587, -70.50836094224537, -71.12025212707108, -69.73530252850581, -70.96382759657143, -69.32254791121494, -69.78642129816406, -70.13623425289583, -68.27294316537875, -69.48273540611159, -69.68595739098666, -69.88578752846696, -70.12884361598866, -69.58015355293423, -68.92521703488362, -69.3702627530121, -68.3385393899674, -68.83572025411485, -67.59444003485216, -67.19878483242128, -66.88678326102863, -66.62705628034745, -66.49133706565705, -65.54570267314098, -65.07138957823395, -65.15316630434212, -65.113024178901, -65.21588234960261, -64.69299038837154, -64.5987818574637, -64.94673763285309, -64.58543856538122, -64.0251908408862, -64.00334840949637, -63.87620626749833, -63.908368663300706, -64.34477575361116, -63.30611607192458, -62.977333947989855, -63.03270625617016, -62.973556480924245, -61.9775865439454, -62.55287920555492, -62.18212857447418, -61.62643806174796, -61.486986903330454, -60.99300382594373, -61.08361631779211, -60.69952191357846, -60.113379850167874, -60.802145732828464, -60.97644525155453, -60.5353003142622, -61.51859760101046, -61.94055512179162, -62.6567162375012, -63.557212203853396, -64.0075629497579, -64.45571630629364, -66.08288626295115, -67.05583291996928, -67.6402988319419, -69.58521859590115, -70.44275207460586, -72.17787583787393, -74.45605145776054, -80.37078844070248, -76.78549964410689, -77.36460455970514, -74.2942650067164, -73.45274823547012, -71.0452005083104, -68.83015614902038, -67.97406527400358, -65.28064442811258, -61.66257877636706, -60.5347642563929, -56.064002991313274, -54.94507470743963, -51.41254705563913, -72.16866500418548, -76.05398208734533, -72.21044936138823, -72.70529537217354, -71.19929406564337, -70.27713460496388, -69.13299663000194, -72.4463357185439, -72.93795715684928, -73.3713575819898, -72.76716923070657, -76.01625370669042, -76.04473859760017, -75.32843026701174, -77.12202890601816, -76.16042753715428, -77.80043932313504, -75.12050328150595, -75.24180589509238, -79.24072557279497, -76.15073312964516, -75.63722659086456, -77.07199482539777, -79.10405174846336, -78.7555033662939, -76.68928359724873, -84.64445716614034, -84.77194024856651, -80.56957563972244, -80.9518054581796, -81.16946011815486, -82.60882229829221, -92.15382444857815, -81.46009960088432, -84.83720729636632, -83.22701186297904, -85.19336719293213, -78.72618239666916, -80.2997938664927, -81.62909345813718, -85.14461983550683, -79.04847001012962, -82.86337774817282, -80.67613472961874, -78.6766497974873, -78.28376599544966, -79.52827617663023, -79.14552629194073, -77.61658173923297, -75.52797708720875, -76.81180124570486, -79.96302372671433, -77.79180364645626, -78.25534667830355, -75.99861144434554, -76.72817325992497, -76.53789876665725, -75.63354290384196, -77.88655620800802, -76.6620888475772, -74.95944263639745, -74.92241861250825, -78.19252297465556, -75.70240288541322, -77.22869031651184, -79.11178365323181, -76.02813924683684, -79.22946596005255, -79.34252410313209, -81.37043553612872, -77.23204580887614, -79.99002759432182, -80.10037292590232, -79.9586491941642, -79.56111958831399, -82.58565887847632, -79.06727247783805, -79.77836365559115, -80.75250256215698, -79.92014041868372, -83.79119284790976, -89.46388791034843, -80.16753104820063, -85.78785129259586, -86.18971186353076, -83.46557649363032, -79.26449516296324, -86.0497161883132, -77.72522944419683, -80.48693217709128, -79.05676798361097, -80.90038889516116, -79.61552982593626, -80.53872683725186, -79.77129111395212, -77.44509801153853, -80.5556693761641, -81.77353100405165, -87.86089888754148, -78.1582972178384, -86.06051959858016, -80.45156335503039, -83.91150780214886, -81.66095543568437, -85.9890696716026, -84.04195989724099, -84.24214397685927, -80.48588938933732, -83.47817452080973, -83.32619948762827, -88.1920764364049, -83.08254242477614, -89.18558349604581, -88.89162189317693, -87.31008898041051, -87.13288010971965, -84.22240535023025, -92.88020099953273, -88.94011371574368, -89.50453755118195, -96.48514868456132, -97.43376688081894, -84.77920957425228, -88.7457709955723, -90.22585149851663, -87.48474847642419, -83.07201844121437, -90.18909481446155, -88.19790959238476, -81.2732961874819, -83.1906331949839, -80.25420059587623, -81.18892135349458, -86.15384309354747, -79.78396634625508, -77.94484777470717, -78.51191099298318, -79.66383719665384, -80.53157544892616, -79.77150773486586, -78.54468839448097, -77.17236175792787, -79.87540797699674, -82.62481453829648, -81.175520126339, -81.6372918657751, -85.8723073671064, -84.32173494770353, -85.92865485920956, -86.69791362038204, -88.381947877194, -82.3377485565141, -82.98618242945194, -84.19164168137557, -80.62179693698069, -78.58053820880352, -75.67006724992078, -75.70019280840631, -77.3556326239717, -75.44484413880436, -78.0083971801343, -80.19240732791538, -81.94153834562955, -82.51223437162794, -80.52439500469704, -81.1563536981356, -80.40850797228123, -79.06201134185005, -76.40783566963746, -74.1109055099481, -72.5472370520919, -72.88643830844907, -70.28993986834672, -71.37266287399254, -69.4989505501882, -68.89473130042418, -68.30666717246635, -66.73309646888713, -66.65850255396039, -66.9447764878584, -66.79115578932803, -66.45820914014695, -64.36014845046441, -64.59824027773406, -64.5850726093629, -64.3446866960158, -64.21606716947184, -62.73701894119243, -64.04110973530102, -63.89229463694758, -63.96163716377961, -63.67641594480275, -63.93691882575963, -63.42084764721023, -64.1751442362428, -64.07424036480684, -64.26485840594677, -64.70591056366567, -65.87154496298668, -65.59038511318796, -66.60467347264296, -66.41659847049684, -65.46015434963208, -68.7947891968641, -68.61351144401289, -68.5883803002403, -68.38640776744921, -67.24728464729668, -68.88286165514032, -67.5126886647365, -67.3105645678857, -65.62299215193312, -65.68699907910904, -64.40289646967807, -57.758358007358304, -55.996497226617166, -61.564902104236054, -56.33409225929568, -51.004768447423736, -41.493760049658675, -39.09207669003827, -48.94890776092665, -54.55311236108002, -58.955572244475995, -61.746115012535896, -62.253023332444755, -62.274983913353594, -63.529545400949985, -64.39313794580413, -66.25416010352293, -66.65343745680732, -68.27677225578233, -67.82355889657633, -68.21679248054404, -70.86681108150971, -69.7724981322566, -71.30217721703224, -69.97137737894298, -70.77775615760575, -72.06754243137725, -73.31361035233252, -76.79175470072519, -74.79668251474777, -74.91486996017032, -78.6724413272818, -76.67152753575132, -78.08872879400377, -77.18878095139394, -82.73610383113837, -77.33794990708525, -77.92186025591103, -79.5188353384882, -77.92004398931181, -77.59163684423254, -80.87915254625881, -75.69829684278649, -76.54452953376355, -77.75724852502844, -78.78077174894496, -77.18693307350878, -79.41284801681809, -83.32095416444054, -78.37160422955779, -80.82146417851772, -81.32663312523256, -80.61369190656382, -82.30489547530384, -80.4310749708365, -81.7399694687711, -80.62942885822591, -83.44930111265425, -85.3868812656471, -82.80477029950228, -80.34137311816893, -92.70904840928765, -83.47898664681443, -84.79551570457801, -88.61120338504696, -99.05509377120941, -84.6583377223046, -92.65291588313801, -89.07547499016088, -87.7740537613824, -86.05272121876283, -88.1636391529299, -90.30903385492458, -85.53062445276527, -92.89011106975377, -81.77760483778924, -83.93612150690407, -90.67181149469319, -91.55371952582311, -86.36786710449113, -89.7497886225581, -85.98972016462241, -86.2662796447236, -93.47027366488881, -81.99439626943646, -83.71275688517841, -81.48839023643791, -83.7151668333469, -85.16431376492383, -82.33973574225031, -79.84399013306471, -86.98893462227446, -79.31234596797322, -85.20974488592353, -84.13315065926264, -82.57274088910519, -78.69971776627798, -81.75617504484079, -78.37751716460969, -80.30648879366838, -81.99106318023247, -80.69587144008653, -80.43021256193866, -80.57535077122569, -79.18141782722309, -81.07374929192481, -78.61671471753877, -79.4930057253289, -75.49404360797021, -75.59547188531927, -78.08498632620373, -78.79420982433457, -78.377199853093, -78.22112971294571, -79.4415760625504, -78.80988052727746, -80.20569766101386, -77.77303439978836, -75.60335551487827, -77.0296401033442, -78.28916533236944, -78.75452900265587, -75.12894529089442, -75.90252337755933, -74.70613322157998, -79.95442548414273, -77.4621755779201, -77.63439245768674, -75.63582902822742, -77.37938396763072, -76.12823335937125, -76.5724072116243, -78.29720665316059, -76.02044013053364, -74.17070791805091, -77.81148598901706, -74.91897928849946, -74.35063307888414, -75.56128127636242, -75.22571159937964, -75.05320079067599, -73.63448574013853, -73.6083202943543, -74.91878090128037, -75.65377042330158, -75.80681107183781, -76.10129880540461, -75.40191500773658, -75.82300153569675, -76.98874858654452, -76.09080819625427, -76.34830844593203, -77.55582623308258, -75.63124125218472, -77.02299975732367, -73.24154332232536, -75.16168524852456, -72.72611266357121, -75.58387257251098, -75.99291366605985, -75.08768149024863, -73.71664479857239, -74.32538233139422, -75.14850084856232, -73.21758165968868, -74.15233253313335, -76.62014784821854, -75.51792290747117, -76.89931569852497, -74.31805780282451, -75.21163798983595, -74.34423171002504, -73.03445832077661, -73.50446763789121, -74.7859845949128, -74.61875016587561, -75.36314046313808, -74.71800110013378, -72.58437690107127, -73.71873032853338, -74.71397003761291, -71.93963813161304, -72.83012195413596, -72.67955155454925, -72.68978051533144, -71.53399828720163, -71.62933442998333, -69.37636508603654, -70.06036223164361, -70.21995792558424, -70.57705228945964, -69.77837770019188, -68.70856348999985, -68.87230245796069, -68.03761464796517, -68.12645647780319, -67.97486148964511, -67.77030459877452, -67.91691429756693, -66.61675410199435, -66.79502853150053, -67.10142628049495, -67.25601019720128, -67.47982926498602, -67.31276519827244, -67.47986774361321, -68.02160654701032, -69.4155062848924, -69.27932660355287, -69.02107627357391, -70.02395219048174, -70.59243564240748, -69.47021777908218, -69.27062061837225, -69.00143336147497, -69.23777131566177, -68.1686005303014, -68.1418666041955, -66.28949530816033, -63.28306132919646, -61.017014490818994, -62.48756673667511, -64.83144116966712, -61.124890753648984, -58.48423472075641, -54.099725985680706, -48.33993844738102, -47.448473342791644, -52.58348096437143, -56.3792640123127, -58.747871454849914, -62.72394191776682, -63.50478869982824, -64.70449365640621, -67.10482169598032, -68.18073519038542, -69.91961538950066, -70.60316015976814, -72.21048475551834, -72.9859930456003, -74.15700749790017, -75.29422571713434, -74.17090843188909, -80.53084578635355, -83.99896961246998, -86.6283205339682, -83.13575964654274, -84.08281951475922, -90.26892733909878, -91.13176662008678, -93.75433698504995, -87.65026233717182, -84.01211134676433, -82.33049487653263, -100.1031725698928, -97.52413914646664, -86.66326087249092, -91.00775096886233, -85.3524401499533, -83.1475765465082, -83.59306847044026, -87.88126164473238, -83.49538645522833, -86.1581820191118, -84.25644938006045, -81.45392510812059, -81.33394373579532, -83.90671416959262, -88.09693909414219, -83.69682271384144, -87.24324711393311, -79.79220681038859, -86.27819657394843, -83.92909528323338, -78.28326408939645, -86.48175323150497, -90.40908302904826, -82.87174307377059, -86.75481048601553, -83.66896956652124, -98.45248709916319, -88.5684906029959, -93.52137457020285, -101.34639730841654, -87.71771678560496, -91.92796578907767, -92.50178852890913, -82.90496473846686, -83.35734548944683, -82.88504956681422, -85.29805281206747, -83.62147984335661, -86.47415937836449, -82.00000425493171, -81.29070823051542, -79.71447370617201, -82.64416031158973, -78.32462180315886, -80.66288110767553, -78.53615338811719, -77.82359464976332, -78.43028156969696, -78.45433054077927, -78.49750522483413, -84.68875791846352, -78.90947978525773, -79.0205126474821, -78.65192343258296, -78.07296738779434, -79.8860477422491, -77.62940440119978, -79.13471967362509, -82.64349989193435, -86.52759323929675, -81.53205803927696, -80.50547461556471, -85.86413553338207, -83.97837021131649, -83.39142087518326, -81.96210293768894, -83.7150112967513, -83.57377304078143, -84.32810346993742, -89.17094670149176, -80.07067385377258, -83.24071490039208, -82.90587753670594, -80.99283220449884, -77.09683358145486, -82.42505788041363, -74.37990226471986, -79.29965148952044, -80.33565390546057, -77.87156761623228, -82.59801745633379, -79.7896334230838, -78.87476025862006, -82.34992150524407, -79.53918203634204, -87.47885917247153, -86.37744090936424, -85.75976758262273, -82.31886436704742, -86.07960575505703, -84.23149708106581, -82.90395128582969, -88.2377778323118, -82.1258459816988, -85.54264583873122, -85.08198414301972, -79.48854211623957, -82.78170780885743, -79.06377288831987, -79.60215673831352, -81.72932676012765, -76.8896615125332, -80.44097097992172, -82.30845847616892, -79.56721691575007, -79.91904037706304, -81.38431586259614, -77.54978830111752, -81.10936099115006, -79.31313601950076, -82.19657997280508, -82.19380159422401, -81.4164679238266, -83.37544640993602, -79.27711628439349, -84.00937831755044, -80.10692120942872, -84.51410813762126, -83.01138460675259, -82.07141976718687, -76.34355668868527, -78.88196397522876, -78.6277978726734, -74.76621322751978, -74.17235128429606, -72.73754282839876, -70.73957190784412, -70.82670721472044, -71.42674786126956, -72.99036880505972, -72.56379244384777, -73.23249912150864, -73.05957273659797, -73.34696569110116, -76.67149497327132, -75.2374106506037, -75.22880764071277, -75.90541272319382, -75.14956165543163, -72.99924715382467, -74.42161931418534, -72.56345104438626, -71.82588542131262, -71.9629405580393, -68.9550616414082, -68.51279019728746, -68.30677473984281, -66.9829431573194, -66.74078172397196, -67.32556468040639, -65.68384391889981, -65.72891165494242, -65.01283228037914, -65.06847708578357, -64.93284999240976, -64.66373437015312, -64.91445252327492, -65.14090594234068, -64.27090445467778, -64.74642164717226, -65.51038337694037, -65.79541453096533, -65.48923401545403, -66.15927648526348, -67.3938320250729, -67.0477374611122, -68.68487690212702, -69.16545777655404, -70.73734454304073, -70.813102936115, -71.41172932427979, -72.4025482399301, -74.79388555168055, -73.93772592871568, -74.23301226435335, -78.19697885953354, -77.32003116113253, -79.80931897566617, -77.04043594008276, -77.41124867386793, -82.0753137107986, -75.38231499267806, -77.19541062208812, -74.86709297768212, -74.18000071055035, -74.19683364778929, -73.33019277253257, -70.66228513787296, -66.27421995867107, -68.92347579791976, -67.16705421524483, -64.38472433025535, -67.10648201079168, -61.513207857951016, -61.255013121921834, -68.87048646471813, -76.34915075197446, -81.63400131445414, -83.78202074792708, -77.82694643815395, -76.6033692863979, -81.9000615665073, -80.20756735354355, -77.17152086810043, -75.94086199300578, -75.91144391171939, -76.35368434202735, -76.5466382600596, -76.04834206488816, -76.58536949944941, -78.56123786855736, -78.6069437194092, -76.37605741191996, -76.9277670404822, -77.44361719050276, -78.06431482989284, -81.27036851519621, -77.44405767259939, -77.55139810690193, -77.18474015541685, -79.47673186972044, -80.73230797515926, -80.08497405975439, -82.03724719514227, -79.97149322124649, -81.7685257263819, -83.27832505621608, -80.57093896076293, -86.25095822387614, -80.1033584456104, -83.70040310282448, -82.892134551823, -86.74602760000474, -89.42448324184697, -90.2563881102785, -96.6185789077378, -85.83146571503153, -91.33317826476039, -87.7999585506727, -86.5424027130675, -81.862425511236, -84.21567621432133, -83.71376397321187, -83.05342406663284, -81.26191109057608, -85.22912026141358, -80.32517807319735, -85.11083858918778, -81.93601100852649, -86.10845169833297, -87.74187524041298, -80.31825161860675, -85.48593793413774, -86.87464857547802, -84.96593287364905, -85.91523640818073, -86.46893047808632, -84.16458057311235, -91.41391992740054, -83.87351987521481, -83.53806889141939, -96.03478214412718, -94.76969842957892, -87.16710500651844, -87.49963304150926, -86.77174858685302, -83.59086604266322, -85.10221960892639, -82.19725538865575, -104.57388308488535, -81.93449367078136, -82.29093951648032, -80.63926481981221, -81.54775137073386, -83.78286594204475, -78.63890218160745, -81.17620769303042, -81.26783622459378, -82.45255805099362, -81.62777464550422, -84.99386167641134, -82.42981812807358, -83.49789262985752, -87.41649741153175, -80.86161915316382, -81.94052915941845, -82.10813795322639, -88.49981785098252, -94.61024770407181, -93.77115582738021, -90.27409899888424, -99.639773537308, -106.80235472931145, -83.94916876090315, -80.75631939136399, -81.88412252478498, -83.73457926894017, -82.17734246538308, -79.66328748895333, -83.14221480568037, -80.85134190802154, -83.00641137903193, -77.50772942657551, -81.6096755943469, -79.18141179349823, -82.9976900060163, -77.83209646027245, -85.68387656792275, -78.67441541497334, -81.99085598097659, -83.11610130876377, -83.65273833036346, -85.0466319167726, -82.33343688193028, -84.64765844589907, -83.01355727692362, -87.48266663067172, -86.24849426536639, -104.2314522150214, -89.49316097227131, -84.43660261201117, -85.82968230066408, -89.69304590807474, -81.14812577415555, -84.14452208521746, -80.59335212534039, -79.37295793340772, -78.31392181196416, -77.40141954147819, -78.32509386996911, -81.48141146617847, -81.16681511628401, -82.22316051592404, -82.5049387200775, -80.9805142289139, -89.72089157564645, -81.36580571407059, -82.25397882916653, -83.39334858170902, -84.19551087132615, -90.69027094243962, -89.26503997257481, -85.5570669987847, -93.76497241408404, -86.66364884834101, -97.21477297779623, -85.10353634353686, -94.52542265278043, -90.64021258920599, -97.05838260123059, -92.41696677047253, -88.337237680227, -94.37482843153307, -87.26269382044984, -89.0034067252364, -92.37077704789456, -83.11053289669856, -83.97268892130464, -77.37202201948527, -80.30431288489473, -74.84484162544304, -74.10374403570857, -75.07449482533514, -75.22603194510262, -74.52022806122358, -72.8002769571708, -72.55558368318935, -70.45058069174215, -71.02117774747919, -70.93709264857657, -70.58543944958384, -69.44457820688737, -69.87142723168137, -69.5259706087696, -69.48341176435348, -70.1349515598804, -70.94039320273717, -71.26840342807748, -70.99918063115986, -72.94019714308166, -72.87773575248832, -72.59844415178182, -75.64110669449573, -77.14352578573626, -77.55698368322089, -82.67603853194181, -80.33601076134525, -98.6310841847756, -90.24397393470471, -82.23508244931205, -82.93372172876586, -80.14278051059479, -81.93796418587448, -78.46085682705032, -76.96678710366697, -76.88478604978175, -74.29976087189252, -75.40362667780289, -76.92607592243934, -77.05107798747987, -76.04062863460976, -76.75979348996646, -74.47626505813238, -76.7149849065996, -74.0752296776839, -72.70538752599099, -69.70227510566293, -68.68556419412197, -67.49709125813787, -65.53982371333582, -63.597325713860116, -61.79225045963789, -58.65406981909804, -64.31220333011206, -72.20586731978034, -67.16023564047066, -71.83584282482946, -75.18763533978324, -76.83954992584837, -82.78752594244895, -78.9728448779832, -81.3679292126907, -87.38630768463496, -81.198549764041, -81.64332349728278, -81.0722747321432, -81.8050689649388, -80.19756146370129, -83.4907104533584, -78.87262898420855, -79.78171440751416, -81.55241463970178, -81.65541091258507, -84.177957429826, -80.60063930431453, -81.72954128234379, -82.4933325715626, -79.97274047311527, -82.63485637929247, -79.82666902734418, -83.56091295655133, -79.80260019981061, -87.30234782867994, -81.23878666183768, -84.35333562519206, -78.98963369159632, -82.57752967337606, -83.28833712985931, -82.4490862624047, -83.26861047346983, -79.98078050890479, -89.47951454697116, -90.02998641457594, -84.88703310225478, -85.48556930489191, -83.27932174003557, -83.1671603255516, -84.64710217712984, -89.48638756992756, -85.85669776768393, -92.77199258235609, -91.3045310836719, -90.79351881271123, -93.59389374555178, -88.95728448180589, -89.03013252040496, -90.59306866529727, -83.75632143931671, -92.43619914067985, -84.84023337981634, -91.55073866047637, -88.22721467998682, -87.61800781660008, -88.13010766859145, -92.63679514278854, -83.53364934152901, -101.19957507969613, -89.53165159768002, -92.2477602226675, -113.16058363764414, -87.39413935098364, -88.82918574681722, -85.45136838076104, -92.42196615522624, -91.90160877375222, -94.2071260294992, -89.07924036273889, -89.70648302323275, -85.56548195143955, -84.18617043418605, -82.69697416755687, -92.74604162736398, -86.03014202604223, -94.16533601141879, -89.20041140179515, -90.4914873346872, -102.8914106195084, -87.88645918252968, -88.54615140503259, -93.71965325746024, -91.24269454660381, -91.5301578929474, -85.15550868943413, -84.56504939033627, -85.20995029140173, -83.6272077417115, -88.74169156310947, -86.34275697419125, -85.92176122638506, -79.68720451176844, -91.64122520749302, -86.08693311836971, -82.25558604017291, -83.26007149904386, -81.01963063211156, -85.97598174875812, -81.66089765120097, -84.30186980889391, -84.89741914609888, -84.73437114721082, -80.4340243710401, -91.04410465622564, -82.92864907199825, -87.17818938617414, -79.20790079033135, -86.73673607707046, -86.80547686646379, -84.2460465595103, -83.75432608578521, -80.99376245915954, -88.34183207396664, -85.25508401358435, -85.32899095934701, -89.93696754287058, -95.21457685502875, -86.39634729920422, -87.7259611468861, -84.81401215415458, -92.10892864861023, -87.60499613218937, -88.33821969679386, -86.83665084946333, -84.55529686038757, -84.36588642074794, -82.50223978451103, -83.82413786448043, -81.3909889394001, -81.22099735651065, -83.37034845016127, -82.77203483227075, -83.78160094759865, -82.5137820396486, -82.04007972858031, -79.40413452982698, -79.75593107717437, -79.01182903305552, -78.2532482744397, -78.53128543180661, -76.3670772798435, -75.5565723196899, -73.06137512413453, -72.86589072941084, -72.5293763841799, -72.15362137881183, -70.97360868992361, -70.25164806698939, -68.95048588254093, -70.92838433913364, -69.57159708050274, -69.3320608543347, -68.30489050506388, -68.45403480415067, -68.07820537971246, -67.90429812747388, -68.79568690674961, -69.56490824566137, -69.05730659934817, -68.9684144330225, -68.64932835166555, -69.65758937002943, -70.72633100095821, -71.80916134296578, -70.40826308058615, -73.07711775171987, -73.84694993840233, -75.22185739050724, -75.70003573173912, -77.69658493958904, -81.13086691581672, -84.97587196824927, -81.74488970237479, -78.81480201149694, -77.46498929520156, -74.47546742860746, -73.07778356237321, -72.74400706840028, -71.67986677595638, -70.70378402162038, -70.45880679685537, -69.73276230039554, -70.13532941180117, -70.03911157520886, -69.53874219533014, -70.06412218171235, -70.41738688165546, -71.40230692933395, -70.8582523301064, -70.65819640088662, -71.22589709719955, -71.49384789261516, -71.1807849695853, -70.08332780194682, -70.02458468010956, -70.79886676222495, -70.51249282788405, -69.73222909099465, -69.39144392697274, -68.14130755039932, -67.80669906770274, -67.50314210805354, -66.62828961830088, -66.19177545163357, -65.67055952179811, -65.43245062109027, -65.27538771006404, -65.57450991546985, -65.95701552688047, -66.12965954353756, -65.69560158226957, -64.99929822113005, -62.70892337964926, -61.68301244690494, -72.78655525004433, -66.85644435565388, -62.122639236871706, -56.14602841310888, -48.575348795086235, -45.7335690753076, -50.574795465305094, -54.560800283020264, -57.60167653759778, -59.98228859122133, -61.106489469343956, -62.2586015140203, -64.13611065985268, -65.31120140637336, -66.12988060659944, -67.46753751849607, -67.99573252001093, -69.08154809374689, -69.47928132796731, -69.01017489878902, -70.2259625197281, -71.31601078931251, -70.77800476452676, -70.5808791913107, -69.87935829409678, -71.0594130448578, -71.68163541512646, -72.62999327101382, -72.45826535561848, -72.23009104832775, -72.80780462273779, -73.4820715084321, -73.70519761069447, -72.88640409462876, -75.36751864823388, -75.07039529106513, -74.0190520744129, -73.56467617451028, -75.9237342397472, -75.60907841724493, -74.89488619370272, -76.64326894295793, -78.17818221567946, -78.10674535148007, -78.94084052076546, -79.03552718069345, -78.8504367878887, -79.0349132787362, -81.04835479015755, -82.30697225181778, -80.10247697716261, -78.88678018431145, -80.37128770339628, -82.14721700134095, -81.22693480553511, -81.08339257625778, -81.83004726337555, -79.83023646097479, -77.67745687875498, -81.50334322854933, -84.01418914397456, -80.98223620290186, -82.70643846369126, -79.92925263030195, -81.71211802026873, -81.26622304457013, -80.2083861425869, -80.13552257738253, -81.86908868891231, -81.19576362284442, -81.82099116976659, -82.20240877888446, -86.78890536850061, -79.61130322819065, -81.75110893488069, -81.78769786563163, -82.98168327396651, -82.36533965888793, -81.62965920459733, -84.41321554863347, -84.01184184749555, -84.74050875566994, -89.46722461306817, -88.84063735200101, -82.81275242903929, -82.90202276384755, -84.91755072503403, -84.96596206871202, -81.13894979698136, -85.39321699339061, -81.607122974576, -82.31945648496522, -82.85952345756469, -84.42295096278114, -82.84207185119853, -81.16034360037263, -82.43167284004402, -88.69360136547861, -86.36166810561362, -83.93449210438018, -83.35904915458065, -86.88468756922076, -98.82821190904232, -87.71082368323816, -85.26093688776969, -84.74108058218698, -84.67937070577884, -81.80314646593064, -79.8836807143397, -80.36300132272277, -84.50184349712822, -81.10667418952684, -81.09288134215095, -78.34495826211985, -81.61163039289869, -78.2080407255509, -78.79546304138421, -83.53113734306189, -79.57352918136182, -82.10453122061934, -83.16020332662202, -80.17186102121342, -80.38938072044809, -83.28389900091051, -82.9607029875506, -82.94520129575983, -82.37499552318204, -91.48059085859686, -89.12201723239863, -88.75617337691574, -95.9326324096667, -99.25633105814961, -97.23263285050912, -93.21909799688184, -94.11819630957379, -85.62351822414955, -85.05654838877355, -85.2626814590208, -90.88379298502295, -92.43326693105607, -79.35220044985786, -83.04709913717637, -80.96542712392454, -84.79105066403517, -80.56852175395738, -82.53280699544521, -78.39248983186073, -79.2447603233322, -81.43899571451948, -80.31155523307615, -79.20322283033573, -78.60682587472675, -79.60335365747477, -77.17265683507352, -79.68049258143236, -78.77170109079083, -80.39321766005335, -80.4941458084255, -81.16611195830905, -77.78456738985656, -78.78702471912854, -78.48860775028547, -78.55857330968561, -75.48444941873751, -73.96409154725615, -74.38903229575247, -73.71949338937581, -74.09265235989642, -73.35719079851367, -72.52894839196236, -71.85790408700414, -72.1453826304687, -72.8880453420235, -73.40530105697334, -73.36737206181759, -75.07890346082172, -73.87373198800829, -73.80588771814108, -76.36115060644553, -77.02118448637019, -76.53403294825777, -79.42664545771953, -82.40856262963747, -82.16845737262183, -81.26015386506083, -86.2963866880354, -83.65223564951819, -83.65142512565328, -81.9605024763776, -83.89791653262753, -80.7512314471906, -81.2231875093839, -80.44612782097477, -80.45966828302679, -80.8219119610533, -80.0332895620364, -82.63448186413828, -81.86019433657266, -83.56347972969225, -83.77394208714534, -81.27557087301243, -82.08501855922398, -86.21956973640151, -84.63482483455017, -83.41455199615336, -84.64912470120032, -96.34052415406546, -86.5642811537206, -85.82554531994924, -84.81361841975429, -90.82933405396874, -95.63096096871976, -86.0174205809958, -121.79031565990871, -92.79314066821607, -85.16755182628037, -82.57085507428016, -75.82074141056064, -73.87322492418804, -68.31298004165734, -64.11005878089911, -64.98463610430836, -67.64031673823149, -68.74350875520462, -68.57314800107767, -65.94652265393414, -58.56024791442971, -53.34566073903658, -58.87813976190359, -64.7442515356068, -68.41855085735452, -70.89801102152032, -71.59385102101052, -70.22964252389163, -70.12887625788379, -71.9916117504309, -71.24086677816753, -71.60650275703543, -70.97323603666793, -72.7995015161423, -73.84714644347828, -73.30713638496142, -72.31100701928719, -71.4986293934344, -70.88239384247797, -72.69815871481828, -73.31874841687639, -72.95543138056001, -72.2540837994474, -74.2432474548261, -74.59339152589237, -74.55404408978748, -73.8406611908948, -75.88830123169797, -75.58870404898897, -75.3888359445969, -76.28499398013284, -77.40870574464778, -77.29151346752242, -81.50031597108674, -79.2620997361436, -79.3860155127041, -79.36421733429165, -84.62322327228028, -84.82608589393983, -82.35129276046933, -84.12203526917479, -82.57605119444732, -82.42209035945193, -83.06818914979338, -82.89117725699596, -86.48609896590129, -84.25581496142601, -81.98855165437608, -85.65708193482764, -85.89637231749295, -82.5161812955566, -82.04265657317494, -81.38022338088467, -85.14256716175524, -82.33155316896756, -82.38160315870964, -84.87981726188454, -80.48451148762015, -82.04015042696014, -82.32955687714833, -84.07176066873164, -81.30284220002403, -81.12884493899932, -81.9372103150564, -83.56943700019038, -81.82697458431831, -80.89579914262045, -83.97262158933157, -79.93571410181028, -83.01819952323187, -81.41823928661924, -82.18951458596814, -81.27099285661052, -84.68138978702723, -84.03783644262427, -82.42863908890357, -86.27254974430507, -84.99210324232051, -81.70128296552853, -88.37151920982011, -83.76394637926009, -88.0196759580119, -85.64988904212642, -82.40175253384935, -90.58034060615489, -88.29068829259606, -84.55981011024124, -86.42017837839994, -89.02150834654704, -86.63630041868038, -90.32797195003721, -88.04802447632923, -91.37678308783192, -84.69782985373911, -83.86132579391665, -84.48355867271374, -83.30655936547727, -82.29741617243043, -81.34454864963791, -83.66640526950178, -86.23140605362624, -82.55565833621317, -84.05427880751992, -82.86750458139878, -88.59851069426287, -82.46137563648837, -83.23294579363466, -86.71856263039919, -83.59414688361113, -86.29722158522361, -84.28239725248035, -87.8157894321092, -84.89115442916004, -91.6864612599155, -101.35948260356386, -94.56184570967852, -88.90522760718596, -84.12921000750215, -91.90104065214746, -89.34460613398096, -82.58048070176228, -83.90944102509359, -79.92772991815545, -84.05638656962118, -79.26327696557965, -80.29457538495745, -79.00233901407779, -80.99208315319623, -82.78990960298096, -80.06370601163516, -81.04995939201564, -78.8624585971124, -78.22224825563082, -79.99440514314378, -77.86916694509961, -79.250422909509, -80.67336968548668, -80.1707563264631, -78.78001796921222, -81.4138118296988, -79.65152131556606, -79.5990173986535, -78.05096519158778, -79.14362298918122, -75.6979243005097, -77.04413140700171, -76.55559900483694, -77.28709756421127, -76.04541468003005, -77.19834591915058, -76.93851074236721, -74.3601460999552, -76.2143701264659, -77.41734649361392, -75.55528628034354, -77.6204937972229, -74.07311766203239, -75.5820380403753, -74.57116231610792, -73.36072652768844, -75.74805054188748, -76.20114192639276, -77.67929869465027, -75.37344817920848, -76.64033248885792, -81.02526799747828, -76.30105356032234, -78.52216651935328, -78.79318151509747, -81.08915635564314, -84.58019646642794, -86.29068496654129, -88.28341791450481, -95.55488790642711, -97.54105850731575, -90.35989121174657, -88.6147154293069, -83.84193367936456, -89.62025261874368, -86.15805939967211, -90.48615918601632, -84.66923922881314, -86.69030988752158, -85.31874038660021, -93.3967584686704, -88.41683364565307, -84.51155979133486, -85.84092463898065, -87.03461820416082, -89.65842445872116, -80.09595821182144, -89.35910343643806, -82.2186456230748, -78.87215892964075, -80.61786382420055, -79.26679233286312, -80.34732882413454, -82.41145797376436, -80.7525874250833, -82.38631834524998, -85.19220739814668, -84.62683620891674, -83.37090811524811, -81.96055595388509, -80.89632047773404, -79.87269892463253, -80.24278013909255, -79.8346079773531, -77.8026363719776, -79.03506063381884, -75.45884408936247, -71.61459304343934, -72.78799699357565, -76.517926038625, -75.42018663585982, -73.03676855461684, -74.55059483341532, -73.89360388447132, -75.84386452715266, -76.14671817933252, -75.02824762668794, -64.12852670744874, -67.29684233270709, -73.28732512879458, -79.5846268612443, -79.40541625247766, -75.00037631141394, -76.84404141036336, -78.85487204030662, -81.21793501413208, -79.98849529791616, -83.34004685854033, -79.74651343629476, -80.20356874693867, -79.23679263271043, -77.55467472990605, -77.69164929572399, -78.21185067567993, -76.37953361977397, -76.37779062405458, -77.18394683860471, -76.47987427808148, -76.16065176650791, -75.64297339854431, -74.97578034262685, -75.7750025673626, -77.54191287768263, -75.62194876193576, -74.81913081874, -77.39551485044358, -74.8559487265797, -74.91971333523193, -79.47495016672048, -76.00110450230866, -73.8006800697679, -75.49092076181226, -74.23185181323616, -76.45878161733185, -76.31117246421907, -78.63303714485264, -78.63115637741588, -80.40081841576095, -80.11592310958491, -80.6080398938268, -84.27699223939841, -81.02798651190263, -78.32227134820957, -82.58733945895442, -80.38423325315549, -81.60764659272714, -82.68431301695024, -84.59374372808291, -81.11237443453673, -80.72886932779086, -82.73986809162363, -85.52247006170462, -84.84007076983572, -88.18292389111058, -83.91010172129666, -86.18694595984013, -86.52015910209727, -83.57243516002627, -82.48613246596177, -82.7884410294015, -81.18119245883179, -82.13860053661722, -82.64129275271398, -81.6960647957825, -80.1159618701058, -79.21762732081966, -81.7424748894588, -79.70725632627473, -79.79342130021236, -84.04795616072886, -78.57134757902541, -81.44528322452899, -82.30023599631087, -86.22784628669324, -81.70013993206013, -79.19547404275934, -80.43966892866453, -79.86860723071865, -84.24207185670276, -78.47102195897376, -85.46356952683867, -79.19143147305444, -78.98617908216978, -79.62882713386848, -81.45773303997203, -81.11144668459467, -82.97150923617122, -83.73635315026256, -83.56699622501304, -81.62933646696294, -90.66223984292462, -87.83603362436695, -84.65351506548458, -85.658764998425, -86.13755388323358, -87.2895785194698, -80.51276978481238, -79.31413546240354, -83.09522724598023, -79.17406539786123, -79.64393408512349, -79.16022904018247, -79.29090550207908, -78.5953799737633, -78.427641401611, -76.94938949325908, -77.60234129771392, -80.16323145872025, -78.29345991734031, -80.34977118368533, -83.04535583051644, -82.11828379319311, -80.51653810965307, -79.70903896591619, -79.72441576819108, -81.01121411332768, -82.3931832327242, -83.60537669243591, -86.15927759335791, -84.00157517702428, -82.6737719556447, -84.23410994591534, -83.67543661722004, -84.81560016645709, -86.85775746826232, -91.30659844203615, -91.56716157467956, -96.96310625461587, -93.7067040128282, -104.37894580936428, -86.42707320738177, -86.47974442711613, -83.74517715170421, -86.94511486841022, -79.68479556051457, -79.79732454009786, -78.62390421290618, -79.65504499674127, -78.26110230332137, -77.07912376842229, -77.00931905785625, -76.48780232811161, -75.52753706406185, -78.2857853114878, -79.20320259601353, -74.57345964171394, -76.36107619144526, -77.4926181223058, -76.1959282127049, -78.68279187044703, -80.86703958685527, -80.20828791155239, -79.09860605612192, -79.72251320552671, -80.5884208983356, -79.37808368734493, -79.19777040035642, -80.82370917434943, -79.3903508709696, -81.02453342258954, -84.05080509410806, -81.74449709652066, -82.95381551687989, -85.711582768195, -82.62870084921332, -85.90931854745932, -92.18379708866689, -85.79214716048776, -95.43936884696217, -93.65600184706408, -91.09646396407729, -89.92373546568474, -85.74995285217744, -103.22336978631093, -85.11121094024404, -87.85021783046378, -93.21854057471168, -94.67033477317734, -87.07538818056918, -88.03965798389231, -84.60611200311207, -83.6881745827146, -88.80535505461046, -81.54317258479733, -83.42195405979346, -81.98384323833251, -79.30248589726642, -81.22209583431282, -82.09580996961347, -84.53821001125236, -81.40288879334521, -82.51832969429437, -81.03368534080991, -79.31160162520752, -81.0233690138162, -82.27932213133104, -82.48697970293128, -82.53928342580586, -80.88380792669943, -80.63162445414575, -85.2724263960155, -87.9263439255733, -84.42493074093257, -89.9170797307905, -97.49208808402715, -93.2268567021896, -98.3459971721015, -102.17959257604082, -88.88538785768299, -86.69090665204573, -90.49426884603257, -83.62206464391745, -82.12985027737099, -79.12837992630674, -76.10936831970075, -72.23319955918763, -71.50335769800618, -71.26274655330847, -65.84883481250557, -64.41549782095446, -69.64885742984812, -74.38207102141916, -74.48572877895118, -74.1640273454995, -73.85183680804745, -74.5997462767531, -76.27271709949812, -76.17500134997877, -75.98932699390161, -75.7364877958133, -77.74295951882196, -77.03397324532195, -77.02520214160423, -76.3392152051168, -78.95894219263238, -77.5054200323506, -78.22415960977031, -75.9368410542396, -79.76561463068384, -78.3845972862067, -78.16959993266329, -77.77459579960248, -79.05904848967147, -79.62544230030424, -80.59321261173716, -77.37347932983407, -79.68765157245927, -84.36930481236513, -79.24703538257303, -79.90032383860049, -80.4668895802102, -80.68692247202691, -80.12588450319568, -82.92464769709736, -81.90501394155028, -80.84899206596619, -82.81597807058995, -83.3354955254933, -86.04211822870181, -81.54538918980595, -80.45168936221765, -85.49374231528628, -85.07679052994266, -86.65659323015737, -84.12310152621245, -82.21826869588779, -79.88144555911828, -82.28992675365288, -80.54263483468121, -80.23921556708395, -81.64048391334022, -81.19472617907178, -80.86914521790351, -79.96766161528679, -78.82015682599582, -80.44195048706591, -79.5275184705192, -80.90196009309324, -81.133088169871, -78.13422614415764, -79.29268241356355, -81.0236334846002, -78.03957648941841, -81.78915693739482, -80.20627659796872, -78.96478493576855, -79.1220367727623, -78.88723732050894, -78.77588336078385, -77.21618126880037, -79.17598956644001, -77.83121732570264, -77.00217622631607, -77.33340458648945, -77.51516450103776, -76.74854786590194, -77.16011754493118, -77.23802882186209, -77.75310248260233, -77.27367167739926, -77.92666794977433, -81.23865880062607, -78.03397535235952, -81.0790683399266, -78.67538510994272, -80.2443908770765, -83.7625455243559, -83.51656487772546, -85.40962378745957, -87.19892994401755, -82.39324007338934, -82.93334967280714, -89.01282793677223, -93.84399472009413, -92.59813401438763, -99.05935977538138, -93.06847364136374, -92.68257746546682, -93.09661837553632, -103.13132690872371, -88.53507654753173, -90.83013639524015, -88.9246657294064, -84.3780557408011, -91.00571908395183, -85.46371962870137, -86.94574090844543, -84.17418525507713, -87.21073700497956, -80.5834791079895, -81.44927378179352, -90.46324832817206, -88.2237732258206, -89.80513355690974, -88.36812045746672, -96.11148264396753, -97.05772011837644, -90.3211226411345, -101.07001275489819, -87.70019509597846, -94.11702070016969, -85.52407750990736, -83.66921490762235, -84.78499834614269, -82.91336267206809, -79.08683020377754, -81.58539936535931, -79.34715377435194, -79.62268615088169, -78.31969754671107, -78.41845650142824, -78.02163436368522, -78.57340320114629, -78.13665653399579, -79.42340736770096, -76.09344842520127, -77.54152451323543, -78.94218714058178, -77.96636658368985, -75.56071498623021, -78.11428642838285, -77.0857293126892, -73.78266000549274, -79.9783720149176, -78.1406287665678, -77.81743259035468, -78.7865250812572, -80.33995067015533, -78.66337886537052, -79.28316417005094, -83.18557720197651, -82.19025635875325, -86.81983845648219, -81.52258794673847, -85.09669782860092, -84.29343162690702, -82.18075882343686, -89.3536408717752, -83.6485645804917, -81.08751196383241, -82.50082038645166, -81.75104659543267, -83.1150028765054, -90.85708365835386, -82.05812313377245, -80.69064307057353, -84.44596055433439, -81.58509872576693, -80.53645123479505, -79.01915000319318, -81.78113566346589, -86.18668033871583, -82.66725737987996, -80.98815945410706, -83.71845507891186, -84.31138112821611, -86.11071630846672, -83.13338057487378, -80.30583328453648, -86.61860125305267, -88.84766168552233, -85.44152788887953, -83.58724333416411, -86.81040153443823, -86.43241332496387, -85.52710462952042, -90.66542938159321, -84.24898312298606, -85.5634829025152, -83.10320865398828, -82.27675750788579, -84.1714263823057, -86.06991291740616, -78.8080489906674, -80.54751565954277, -83.48295350857012, -82.2416221927052, -80.38771659201922, -83.74831281515989, -79.75604115207103, -79.03043749755878, -77.75708278932105, -80.87203578376658, -82.61127791185963, -84.2658135823969, -80.70562833247892, -78.8631984010926, -80.77684573692778, -85.38803120503879, -79.38706864108255, -78.4319419106823, -79.33200954335105, -77.0707541955487, -72.23758331903372, -72.49872659290745, -76.71097157840151, -87.1691240581918, -84.41394070328164, -88.49196151530235, -85.23142743718932, -91.40991858554762, -89.87131557441123, -89.87367432317029, -86.87666289321623, -84.68211881075904, -87.51143521722338, -86.11330714112583, -92.64588431148499, -94.75032011463091, -93.4797910828712, -90.01996534603006, -92.21613793611624, -94.61592150312329, -98.27205770459781, -108.1554913291046, -89.68134813038206, -88.4031477912419, -87.89892649225254, -89.99331241659823, -86.83327248710685, -93.49353359594159, -95.57742821142989, -86.07212110087617, -91.73809874323645, -86.76902384952527, -92.47094829645668, -86.83397057665539, -90.24309894387974, -92.93968242265422, -89.55397835359933, -95.20590400259009, -89.72751073288138, -96.29753495423654, -99.29988803418294, -101.76911574116917, -98.71689444766191, -86.07806388612411, -93.01120985117711, -95.09980593900089, -95.52224430966378, -102.62622015902336, -87.16329411840569, -88.51119864169407, -98.02356991630957, -91.13961992487278, -96.5993380951818, -87.78171550456742, -91.27100467244051, -96.5778618913586, -91.92542270772441, -92.05270334965051, -100.81326714566394, -92.24712278627167, -93.0937776332971, -102.27726395865261, -91.53140331827774, -88.39665071581751, -94.88134907370254, -91.44120970187652, -101.51254825933168, -93.34107951666182, -92.75609320901313, -90.26622832187559, -91.53077871642809, -95.27649246964143, -92.01514118491131, -88.14869640297964, -92.04206225713925, -90.24791691605145, -94.06692467638766, -95.63578534522472, -92.16060014221651, -92.5580460801583, -93.56851553153555, -93.84875795879486, -92.16433255375938, -93.09889919484215, -91.78860730893796, -89.94099131058786, -93.25666613631334, -91.20283515230845, -89.36822486116216, -86.22070052270337, -88.5969116282122, -87.22686272419574, -86.91025065866313, -87.4889918010139, -85.84999019851112, -86.97530478025845, -86.83320498451883, -87.38147466282236, -85.85954387021191, -85.75878767811282, -88.3786403381147, -88.6541838849888, -88.1070755449827, -88.97391632052036, -89.14710173675266, -88.73731251808165, -92.2708545074873, -90.87927867148723, -93.84883656210275, -94.86317741945089, -97.66880385977757, -95.01643869635492, -93.23581776503418, -91.41825348019762, -93.39933657551852, -92.84933142006793, -92.9302294628553, -91.96683900203863, -92.02964850232071, -93.82327678836562, -92.9399705361111, -90.05339613631149, -91.41745584497109, -90.21339048824848, -91.15893263227859, -92.0148593504961, -92.14775093137084, -93.55903338033065, -94.57587097324745, -93.66695477554899, -95.30009016334866, -96.34996998845114, -96.48974136637507, -96.24024879359553, -102.24201756179603, -101.66136528824345, -110.61343208848145, -104.92731518484098, -103.90167436490523, -114.6312002952776, -99.9784471652743, -96.79368201466724, -97.62747378482072, -97.69997808563573, -96.10275897530373, -96.25789992657434, -94.574353794405, -95.62453320281864, -95.25332536174588, -91.85907951897269, -93.98428694467766, -93.6314214596247, -94.67224908317007, -94.27219251036286, -94.91733084436667, -92.57307704035665, -93.59620366962916, -94.75579876023161, -95.02170996221602, -94.51420312588168, -95.65493409235336, -96.3283400555796, -94.2364844702877, -98.00610705061666, -96.99384002761101, -94.84603099107197, -97.00980782978237, -98.48333453979876, -99.99439835227902, -99.3292202305369, -96.2403766093538, -95.28430972262127, -97.37487535284835, -98.67755825352279, -96.93990018064191, -100.07373143825147, -98.35705127707027, -98.2161554112844, -102.79163863466609, -101.93211911003642, -103.07844863075164, -114.02122415415802, -108.60198807920284, -113.45317210755603, -107.26489670089396, -106.73096672351902, -101.0257966310025, -99.4042550172831, -100.56644586737033, -96.65403356221661, -97.4491722104946, -95.6301634110142, -93.35968094335394, -92.92961484800207, -91.47075375299232, -90.84596916048821, -91.32489875642622, -90.310399373288, -89.21299084439912, -88.9882632040941, -89.12125395979604, -89.5563970244452, -89.32807990820449, -89.19609617663055, -89.01231478407617, -89.0134394806999, -89.21232295685653, -89.62455549577484, -91.03107955174272, -90.73207143560947, -92.66492660441233, -93.39772573570613, -91.80374798193853, -94.25002906440335, -93.25719012518456, -95.86332568758122, -95.865139591417, -95.4159144021868, -96.22837552832733, -95.4206228195603, -96.60259318508734, -93.91932883816168, -92.15679778453905, -94.68828539813038, -92.58281129809802, -91.73938271030829, -90.49548853455634, -90.79948704540008, -90.95570727145602, -89.59697668188653, -88.98837183836145, -90.57301295889486, -90.96428751756692, -89.14169019695609, -89.45104718820112, -88.90518202752472, -90.48047261572016, -90.41554084481815, -89.81599316759885, -90.15981078042961, -92.60453806162566, -91.74454581209494, -92.4838869311118, -91.92023438505669, -93.40567372509912, -94.44092400746038, -94.54650989126367, -94.08771258275127, -95.89117932990646, -96.35351151679471, -97.18597703445823, -98.1917877618868, -105.9389877055615, -102.82096774260722, -126.91569611840764, -110.22279035671345], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [219, 441, 661, 881, 1101, 1321, 1983, 2203, 2867], "showlegend": true, "mode": "markers", "name": "y2", "legendgroup": "y2", "marker": {"symbol": "circle", "color": "rgba(227, 111, 71, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "y": [-16.576401766475236, -21.219589637470033, -27.265771896700507, -35.58434073426043, -36.91231430119692, -46.31472397303532, -39.09207669003827, -47.448473342791644, -45.7335690753076], "type": "scatter"}], "config": {"showlegend": false, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [0, 500, 1000, 1500], "range": [0, 1500], "domain": [0.09128390201224845, 0.9934383202099738], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["0", "500", "1000", "1500"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Частота (Гц)", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [{"yanchor": "top", "xanchor": "center", "rotation": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "paper", "showarrow": false, "text": "Гармоники на спектре аудиосигнала", "xref": "paper", "x": 0.5423611111111111}], "height": 400, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [-125, -100, -75, -50, -25], "range": [-130.2258749489656, -13.266222935917256], "domain": [0.07581474190726165, 0.9415463692038496], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["-125", "-100", "-75", "-50", "-25"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Мощность (дБ)", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "width": 827.5}}