Методы Фурье¶
Открыть пример в Engee
Для обработки сигналов часто применяется такой метод, как преобразование Фурье. Этот метод позволяет преобразовывать сигнал между временной областью и частотной областью. Эффективный алгоритм быстрого преобразования Фурье (БПФ) реализован в Julia с использованием библиотеки FFTW.
1D преобразование Фурье¶
Давайте начнем с рассмотрения преобразования Фурье в одном измерении. Мы создадим тестовые данные во временной области, используя функцию широкого прямоугольника.
Теперь преобразуем данные в частотную область, используя fft(), и построим спектр сигнала с помощью модуля комплексного числа.
Out[0]:
Vector{ComplexF64} (alias for Array{Complex{Float64}, 1})
Данные частотной области представляют собой массив типа Complex с той же длиной, что и данные временной области.
Поскольку каждое комплексное число состоит из двух частей (действительной и мнимой), кажется, что мы каким-то образом удвоили информационное содержание нашего сигнала. Это не так: половина данных частотной области избыточна. Функция fftshift() удобно перестраивает данные в частотной области таким образом, что отрицательные частоты находятся слева.
Аналитическое преобразование Фурье функции прямоугольника представляет собой функцию sinc , которая хорошо согласуется с числовыми данными на графиках выше.
Двумерное преобразование Фурье¶
Рассмотрим аналогичную двумерную задачу. Но на этот раз мы пойдем в противоположном направлении, начав с двумерной функции sinc и взяв ее преобразование Фурье.
Построить массив данных sinc легко с помощью генератора списков.
Нет особого смысла думать о двумерной функции во временной области. Но преобразование Фурье работает как с временным сигналом, так и с пространственным сигналом (или сигналом практически в любой другой области). Итак, предположим, что наши двумерные данные находятся в пространственной области.
Генерация преобразования Фурье для многомерных сигналов также выполняется при помощи fft().
Вывод¶
Помимо описанного выше, применять БПФ удобно и к данным более высокой размерности.
Большая часть функционала библиотеки FFTW реализована в интерфейсе Julia.
Как именно:
- Генерировать планы для оптимизированных БПФ, используя plan_fft();
- Использовать дискретное косинусное преобразование при помощи dct();
- Использовать сопряженную симметрию в реальных преобразованиях, используя rfft();
- Также можно запустить несколько потоков через FFTW.set_num_threads().
{"id": "e186c650-9301-4689-a3fe-28980f6ac4db", "data": [{"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 101, "currentCount": 101}}}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-2, 104], "domain": [0.0658209390492855, 0.9934383202099738], "mirror": false, "tickangle": 0, "showline": true, "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, "range": [-0.030000000000000027, 1.03], "domain": [0.03762029746281716, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "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": 516.984375}}
{"id": "5e3f1efb-de1e-45c6-ae59-19b3933b4980", "data": [{"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [21, 19.541331013223118, 15.526095117689493, 9.930969469956679, 4.06517271789836, 0.8011633993488032, 3.781165902064708, 4.58397321554084, 3.537302155942296, 1.4239273349818329, 0.8046824675455626, 2.338465711120689, 2.742012554981343, 2.042268314473546, 0.6549994944710487, 0.8106458945943987, 1.7919894909260428, 1.9704927619236325, 1.3621178912789877, 0.27800104473042775, 0.8192087231234504, 1.5025080032719895, 1.5390852790893919, 0.9637274946328721, 0.04579663370482593, 0.8306042856490092, 1.3224304258387938, 1.258111116255401, 0.6942980071248908, 0.11876108660418604, 0.8451633860532366, 1.1993369704699701, 1.0560920175261987, 0.4931022854004931, 0.247964898376617, 0.8633439327839711, 1.1098986681280902, 0.8997934423580736, 0.3307438210443293, 0.35818918564703783, 0.8857765193245356, 1.0421470751681512, 0.7713332924940501, 0.19071383485272925, 0.4591815329299572, 0.9133355098780344, 0.9893063125034747, 0.6598349360731517, 0.06235808081883287, 0.5577926253967703, 0.9472527869748717, 0.9472527869748708, 0.5577926253967703, 0.06235808081883332, 0.6598349360731538, 0.9893063125034747, 0.9133355098780339, 0.459181532929958, 0.19071383485273044, 0.7713332924940491, 1.042147075168151, 0.8857765193245348, 0.3581891856470374, 0.3307438210443295, 0.8997934423580727, 1.1098986681280925, 0.8633439327839714, 0.24796489837662083, 0.4931022854004931, 1.0560920175261994, 1.1993369704699686, 0.845163386053235, 0.11876108660418604, 0.694298007124889, 1.2581111162554006, 1.3224304258387927, 0.8306042856490085, 0.04579663370482624, 0.963727494632871, 1.5390852790893927, 1.5025080032719904, 0.8192087231234504, 0.27800104473042825, 1.3621178912789877, 1.970492761923633, 1.791989490926043, 0.8106458945943986, 0.6549994944710497, 2.0422683144735463, 2.7420125549813434, 2.338465711120689, 0.8046824675455628, 1.423927334981833, 3.537302155942297, 4.58397321554084, 3.7811659020647093, 0.8011633993488028, 4.06517271789836, 9.930969469956679, 15.526095117689493, 19.541331013223118], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 101, "currentCount": 101}}}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-2, 104], "domain": [0.03619130941965587, 0.9934383202099738], "mirror": false, "tickangle": 0, "showline": true, "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, "range": [-0.5828294672840304, 21.628626100988853], "domain": [0.03762029746281716, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "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": 516.984375}}
{"id": "e19e49b9-5aad-4383-b874-1af11ad7ba63", "data": [{"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.9472527869748708, 0.5577926253967703, 0.06235808081883332, 0.6598349360731538, 0.9893063125034747, 0.9133355098780339, 0.459181532929958, 0.19071383485273044, 0.7713332924940491, 1.042147075168151, 0.8857765193245348, 0.3581891856470374, 0.3307438210443295, 0.8997934423580727, 1.1098986681280925, 0.8633439327839714, 0.24796489837662083, 0.4931022854004931, 1.0560920175261994, 1.1993369704699686, 0.845163386053235, 0.11876108660418604, 0.694298007124889, 1.2581111162554006, 1.3224304258387927, 0.8306042856490085, 0.04579663370482624, 0.963727494632871, 1.5390852790893927, 1.5025080032719904, 0.8192087231234504, 0.27800104473042825, 1.3621178912789877, 1.970492761923633, 1.791989490926043, 0.8106458945943986, 0.6549994944710497, 2.0422683144735463, 2.7420125549813434, 2.338465711120689, 0.8046824675455628, 1.423927334981833, 3.537302155942297, 4.58397321554084, 3.7811659020647093, 0.8011633993488028, 4.06517271789836, 9.930969469956679, 15.526095117689493, 19.541331013223118, 21, 19.541331013223118, 15.526095117689493, 9.930969469956679, 4.06517271789836, 0.8011633993488032, 3.781165902064708, 4.58397321554084, 3.537302155942296, 1.4239273349818329, 0.8046824675455626, 2.338465711120689, 2.742012554981343, 2.042268314473546, 0.6549994944710487, 0.8106458945943987, 1.7919894909260428, 1.9704927619236325, 1.3621178912789877, 0.27800104473042775, 0.8192087231234504, 1.5025080032719895, 1.5390852790893919, 0.9637274946328721, 0.04579663370482593, 0.8306042856490092, 1.3224304258387938, 1.258111116255401, 0.6942980071248908, 0.11876108660418604, 0.8451633860532366, 1.1993369704699701, 1.0560920175261987, 0.4931022854004931, 0.247964898376617, 0.8633439327839711, 1.1098986681280902, 0.8997934423580736, 0.3307438210443293, 0.35818918564703783, 0.8857765193245356, 1.0421470751681512, 0.7713332924940501, 0.19071383485272925, 0.4591815329299572, 0.9133355098780344, 0.9893063125034747, 0.6598349360731517, 0.06235808081883287, 0.5577926253967703, 0.9472527869748717], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 101, "currentCount": 101}}}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-2, 104], "domain": [0.03619130941965587, 0.9934383202099738], "mirror": false, "tickangle": 0, "showline": true, "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, "range": [-0.5828294672840304, 21.628626100988853], "domain": [0.03762029746281716, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "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": 516.984375}}
{"id": "efee927c-db36-466c-acb8-a731ed100ae8", "data": [{"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.03747308294223967, 0.03595224959631377, 0.03170541071491634, 0.02507943271442966, 0.01658547024214415, 0.006851416294724577, -0.0034313546221492906, -0.013562133420842604, -0.022881488599615286, -0.030814659542108623, -0.03690502849914266, -0.04083607358767439, -0.04244131815783876, -0.041702812083432156, -0.03873952880027733, -0.03378768578473035, -0.027175371195658795, -0.019293987538109965, -0.010568928699422074, -0.001431630441634243, 0.007705272543624346, 0.016468432833891142, 0.024539175695880124, 0.031663523015490296, 0.037657019279810675, 0.042404863574605316, 0.045858095098109314, 0.04802672406115692, 0.048970751720583176, 0.04878999598770127, 0.04761355000386343, 0.04558956944539949, 0.04287592892913734, 0.03963212560213236, 0.03601265264628425, 0.0321619272477622, 0.02821074311733881, 0.02427413001985883, 0.020450442195287553, 0.01682146201112624, 0.013453291135757724, 0.010397804581703946, 0.007694458501656245, 0.005372266208323732, 0.003451784659844099, 0.0019469824866320303, 0.000866888257962456, 0.00021694266699616769, 0, 0.00021694266699616769, 0.000866888257962456, 0.0019469824866320303, 0.003451784659844099, 0.005372266208323732, 0.007694458501656245, 0.010397804581703946, 0.013453291135757724, 0.01682146201112624, 0.020450442195287553, 0.02427413001985883, 0.02821074311733881, 0.0321619272477622, 0.03601265264628425, 0.03963212560213236, 0.04287592892913734, 0.04558956944539949, 0.04761355000386343, 0.04878999598770127, 0.048970751720583176, 0.04802672406115692, 0.045858095098109314, 0.042404863574605316, 0.037657019279810675, 0.031663523015490296, 0.024539175695880124, 0.016468432833891142, 0.007705272543624346, -0.001431630441634243, -0.010568928699422074, -0.019293987538109965, -0.027175371195658795, -0.03378768578473035, -0.03873952880027733, -0.041702812083432156, -0.04244131815783876, -0.04083607358767439, -0.03690502849914266, -0.030814659542108623, -0.022881488599615286, -0.013562133420842604, -0.0034313546221492906, 0.006851416294724577, 0.01658547024214415, 0.02507943271442966, 0.03170541071491634, 0.03595224959631377, 0.03747308294223967], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y2", "zmin": null, "yaxis": "y", "legendgroup": "y2", "zmax": null, "line": {"color": "rgba(227, 111, 71, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.03595224959631377, 0.03158504889291611, 0.024737123028501253, 0.015953088739132714, 0.00590613661916961, -0.004660575821821476, -0.014994006772554757, -0.024387700766936207, -0.03223035314003258, -0.038043269341213194, -0.04150478158647204, -0.042460977170579235, -0.04092329280348354, -0.037054539418786586, -0.03114567451828078, -0.023586099996342147, -0.014830430313707977, -0.005364574400158507, 0.004326348446401224, 0.013786222773882296, 0.022610825025533014, 0.030464539527382976, 0.03709064066850363, 0.04231539213433679, 0.04604662379463335, 0.04826773694892544, 0.049028255863867005, 0.04843209606376969, 0.04662467434805535, 0.04377986405969505, 0.04008762606051746, 0.03574294513132674, 0.030936494557518655, 0.02584725600873246, 0.020637150322859062, 0.015447595491992866, 0.010397804581703946, 0.0055845682765417, 0.001083231122454544, -0.0030504377239427534, -0.006777765423001461, -0.010074346320124224, -0.012927084182596107, -0.015331286697460962, -0.017287953061458722, -0.01880135894126013, -0.01987701194604477, -0.020520025916277676, -0.020733943795838993, -0.020520025916277676, -0.01987701194604477, -0.01880135894126013, -0.017287953061458722, -0.015331286697460962, -0.012927084182596107, -0.010074346320124224, -0.006777765423001461, -0.0030504377239427534, 0.001083231122454544, 0.0055845682765417, 0.010397804581703946, 0.015447595491992866, 0.020637150322859062, 0.02584725600873246, 0.030936494557518655, 0.03574294513132674, 0.04008762606051746, 0.04377986405969505, 0.04662467434805535, 0.04843209606376969, 0.049028255863867005, 0.04826773694892544, 0.04604662379463335, 0.04231539213433679, 0.03709064066850363, 0.030464539527382976, 0.022610825025533014, 0.013786222773882296, 0.004326348446401224, -0.005364574400158507, -0.014830430313707977, -0.023586099996342147, -0.03114567451828078, -0.037054539418786586, -0.04092329280348354, -0.042460977170579235, -0.04150478158647204, -0.038043269341213194, -0.03223035314003258, -0.024387700766936207, -0.014994006772554757, -0.004660575821821476, 0.00590613661916961, 0.015953088739132714, 0.024737123028501253, 0.03158504889291611, 0.03595224959631377], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y3", "zmin": null, "yaxis": "y", "legendgroup": "y3", "zmax": null, "line": {"color": "rgba(62, 164, 78, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.03170541071491634, 0.024737123028501253, 0.015740823424751294, 0.005431115411967232, -0.005398239019399103, -0.015940665350712795, -0.025439667869505817, -0.03324326419510057, -0.038846163114352336, -0.041917311008633794, -0.042311921266756425, -0.0400685073182753, -0.03539264198988428, -0.028630077109198487, -0.020232429911833317, -0.010718867722094379, -0.0006371247782392889, 0.009473182752142746, 0.01911254521144837, 0.027847141666311193, 0.035327037476218376, 0.0412967222832713, 0.04559833245211172, 0.048168396555550407, 0.049029290715542934, 0.04827678748081466, 0.046065136943488356, 0.04259105245152353, 0.038077813090238326, 0.0327604717491532, 0.02687290138972338, 0.020637150322859062, 0.014255332136680298, 0.007904063612150252, 0.0017312945144323656, -0.00414474927275206, -0.00963486393394146, -0.01467679622724445, -0.01923219082552286, -0.023282917998618678, -0.026827098138887163, -0.029875084633517256, -0.03244560848322273, -0.03456223232753799, -0.0362502121008708, -0.03753382386867845, -0.03843418261610348, -0.038967558916015534, -0.03914418765900462, -0.038967558916015534, -0.03843418261610348, -0.03753382386867845, -0.0362502121008708, -0.03456223232753799, -0.03244560848322273, -0.029875084633517256, -0.026827098138887163, -0.023282917998618678, -0.01923219082552286, -0.01467679622724445, -0.00963486393394146, -0.00414474927275206, 0.0017312945144323656, 0.007904063612150252, 0.014255332136680298, 0.020637150322859062, 0.02687290138972338, 0.0327604717491532, 0.038077813090238326, 0.04259105245152353, 0.046065136943488356, 0.04827678748081466, 0.049029290715542934, 0.048168396555550407, 0.04559833245211172, 0.0412967222832713, 0.035327037476218376, 0.027847141666311193, 0.01911254521144837, 0.009473182752142746, -0.0006371247782392889, -0.010718867722094379, -0.020232429911833317, -0.028630077109198487, -0.03539264198988428, -0.0400685073182753, -0.042311921266756425, -0.041917311008633794, -0.038846163114352336, -0.03324326419510057, -0.025439667869505817, -0.015940665350712795, -0.005398239019399103, 0.005431115411967232, 0.015740823424751294, 0.024737123028501253, 0.03170541071491634], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y4", "zmin": null, "yaxis": "y", "legendgroup": "y4", "zmax": null, "line": {"color": "rgba(195, 113, 210, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.02507943271442966, 0.015953088739132714, 0.005431115411967232, -0.00564409241937702, -0.01641138412568979, -0.026060722843086317, -0.033894258279227284, -0.03937408251080661, -0.04215373868923622, -0.04209225488196526, -0.03925111477774544, -0.03387600471170934, -0.0263662816835029, -0.017235823941080572, -0.007069234510857113, 0.0035227088628487697, 0.013944869860128403, 0.023654002630535617, 0.032187410052808826, 0.039182857494045126, 0.044389432277917196, 0.04766978588826198, 0.048994794645401615, 0.04843209606376969, 0.046130194328031594, 0.04229988967195813, 0.037194697472528085, 0.03109171747407877, 0.02427413001985883, 0.017016172701800475, 0.009571121963339731, 0.002162498187170594, -0.005021549703949415, -0.011830930510913693, -0.018153763500061804, -0.02391447862413198, -0.02907037696294276, -0.033607151643790266, -0.03753382386867845, -0.04087748122332642, -0.04367812669845153, -0.04598386580627737, -0.047846582872775476, -0.04931819101787035, -0.050447486533958925, -0.05127759866399337, -0.05184400011432848, -0.0521730309375773, -0.05228088690510248, -0.0521730309375773, -0.05184400011432848, -0.05127759866399337, -0.050447486533958925, -0.04931819101787035, -0.047846582872775476, -0.04598386580627737, -0.04367812669845153, -0.04087748122332642, -0.03753382386867845, -0.033607151643790266, -0.02907037696294276, -0.02391447862413198, -0.018153763500061804, -0.011830930510913693, -0.005021549703949415, 0.002162498187170594, 0.009571121963339731, 0.017016172701800475, 0.02427413001985883, 0.03109171747407877, 0.037194697472528085, 0.04229988967195813, 0.046130194328031594, 0.04843209606376969, 0.048994794645401615, 0.04766978588826198, 0.044389432277917196, 0.039182857494045126, 0.032187410052808826, 0.023654002630535617, 0.013944869860128403, 0.0035227088628487697, -0.007069234510857113, -0.017235823941080572, -0.0263662816835029, -0.03387600471170934, -0.03925111477774544, -0.04209225488196526, -0.04215373868923622, -0.03937408251080661, -0.033894258279227284, -0.026060722843086317, -0.01641138412568979, -0.00564409241937702, 0.005431115411967232, 0.015953088739132714, 0.02507943271442966], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y5", "zmin": null, "yaxis": "y", "legendgroup": "y5", "zmax": null, "line": {"color": "rgba(172, 142, 24, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.01658547024214415, 0.00590613661916961, -0.005398239019399103, -0.01641138412568979, -0.026265997425311285, -0.03421227260050144, -0.039672212892462845, -0.042276111494252436, -0.041879499176880296, -0.03856075944551718, -0.03260130122266114, -0.024451519180285236, -0.014686672893891698, -0.003957242641285151, 0.007061712189233647, 0.01771809742553514, 0.027423876669558294, 0.03568729784209614, 0.042134866483123944, 0.046522686476480175, 0.04873768884958524, 0.04878999598770127, 0.04679818300676425, 0.04296948728468357, 0.03757709159092609, 0.030936494557518655, 0.023382725500691964, 0.015249806171389482, 0.006853457743037402, -0.00152235912107342, -0.00963486393394146, -0.017287953061458722, -0.024334142827309703, -0.030673501865746567, -0.0362502121008708, -0.04104742571834398, -0.04508105740142656, -0.04839308154172929, -0.051044808013775485, -0.0531105011915593, -0.054671596840365946, -0.05581166934969179, -0.05661221371282111, -0.05714923632188933, -0.057490597413702625, -0.057694015501266696, -0.05780562875263666, -0.05785900766276947, -0.057874524760689224, -0.05785900766276947, -0.05780562875263666, -0.057694015501266696, -0.057490597413702625, -0.05714923632188933, -0.05661221371282111, -0.05581166934969179, -0.054671596840365946, -0.0531105011915593, -0.051044808013775485, -0.04839308154172929, -0.04508105740142656, -0.04104742571834398, -0.0362502121008708, -0.030673501865746567, -0.024334142827309703, -0.017287953061458722, -0.00963486393394146, -0.00152235912107342, 0.006853457743037402, 0.015249806171389482, 0.023382725500691964, 0.030936494557518655, 0.03757709159092609, 0.04296948728468357, 0.04679818300676425, 0.04878999598770127, 0.04873768884958524, 0.046522686476480175, 0.042134866483123944, 0.03568729784209614, 0.027423876669558294, 0.01771809742553514, 0.007061712189233647, -0.003957242641285151, -0.014686672893891698, -0.024451519180285236, -0.03260130122266114, -0.03856075944551718, -0.041879499176880296, -0.042276111494252436, -0.039672212892462845, -0.03421227260050144, -0.026265997425311285, -0.01641138412568979, -0.005398239019399103, 0.00590613661916961, 0.01658547024214415], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y6", "zmin": null, "yaxis": "y", "legendgroup": "y6", "zmax": null, "line": {"color": "rgba(0, 170, 174, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.006851416294724577, -0.004660575821821476, -0.015940665350712795, -0.026060722843086317, -0.03421227260050144, -0.039768448312307546, -0.042326632566186004, -0.04172945376443669, -0.03806399486581272, -0.03164105742946344, -0.022957945344184216, -0.012649365505976515, -0.001431630441634243, 0.00995460514009024, 0.020798277520802256, 0.030464539527382976, 0.03843117863903444, 0.04431312954801783, 0.047874580410804536, 0.049029254407155574, 0.047830331881385045, 0.044452110907271664, 0.039165865236553, 0.032312457036751126, 0.02427413001985883, 0.015447595491992866, 0.006220087412589483, -0.0030504377239427534, -0.01205028948070265, -0.020520025916277676, -0.028259636347245782, -0.03512944010085653, -0.04104742571834398, -0.04598386580627737, -0.04995406610993753, -0.053010059675862406, -0.05523195728282429, -0.05671953314497683, -0.05758447818808817, -0.05794360707372231, -0.05791317112458218, -0.05760431515473211, -0.05711962618109622, -0.05655065735540448, -0.05597627019066032, -0.055461619698071306, -0.05505760697435419, -0.05480063837205414, -0.054712556063479335, -0.05480063837205414, -0.05505760697435419, -0.055461619698071306, -0.05597627019066032, -0.05655065735540448, -0.05711962618109622, -0.05760431515473211, -0.05791317112458218, -0.05794360707372231, -0.05758447818808817, -0.05671953314497683, -0.05523195728282429, -0.053010059675862406, -0.04995406610993753, -0.04598386580627737, -0.04104742571834398, -0.03512944010085653, -0.028259636347245782, -0.020520025916277676, -0.01205028948070265, -0.0030504377239427534, 0.006220087412589483, 0.015447595491992866, 0.02427413001985883, 0.032312457036751126, 0.039165865236553, 0.044452110907271664, 0.047830331881385045, 0.049029254407155574, 0.047874580410804536, 0.04431312954801783, 0.03843117863903444, 0.030464539527382976, 0.020798277520802256, 0.00995460514009024, -0.001431630441634243, -0.012649365505976515, -0.022957945344184216, -0.03164105742946344, -0.03806399486581272, -0.04172945376443669, -0.042326632566186004, -0.039768448312307546, -0.03421227260050144, -0.026060722843086317, -0.015940665350712795, -0.004660575821821476, 0.006851416294724577], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y7", "zmin": null, "yaxis": "y", "legendgroup": "y7", "zmax": null, "line": {"color": "rgba(237, 94, 147, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.0034313546221492906, -0.014994006772554757, -0.025439667869505817, -0.033894258279227284, -0.039672212892462845, -0.042326632566186004, -0.04167570339032056, -0.037804722081310874, -0.031045390212314006, -0.02193599117570719, -0.011167483821793561, 0.0004786509491550012, 0.012194803516759327, 0.02320826998617824, 0.032834211214922644, 0.0405170354164538, 0.045858095098109314, 0.048629002229383385, 0.04877116322922048, 0.04638321060292966, 0.04169879060561669, 0.03505762467538453, 0.02687290138972338, 0.017597910510974448, 0.007694458501656245, -0.0023949243781995256, -0.012269588164475924, -0.02158740873174328, -0.03007528872626719, -0.03753382386867845, -0.04383682542915307, -0.04892664366437289, -0.05280636655509189, -0.05552998670483286, -0.057191557619154634, -0.057914223509020056, -0.057839829610288405, -0.05711962618109622, -0.055906388452528745, -0.05434810170674743, -0.052583215123440726, -0.05073735510710331, -0.048921309502863976, -0.047230046389992356, -0.04574251095070121, -0.044521946141915236, -0.04361650222140574, -0.04305993166613821, -0.042872205531290765, -0.04305993166613821, -0.04361650222140574, -0.044521946141915236, -0.04574251095070121, -0.047230046389992356, -0.048921309502863976, -0.05073735510710331, -0.052583215123440726, -0.05434810170674743, -0.055906388452528745, -0.05711962618109622, -0.057839829610288405, -0.057914223509020056, -0.057191557619154634, -0.05552998670483286, -0.05280636655509189, -0.04892664366437289, -0.04383682542915307, -0.03753382386867845, -0.03007528872626719, -0.02158740873174328, -0.012269588164475924, -0.0023949243781995256, 0.007694458501656245, 0.017597910510974448, 0.02687290138972338, 0.03505762467538453, 0.04169879060561669, 0.04638321060292966, 0.04877116322922048, 0.048629002229383385, 0.045858095098109314, 0.0405170354164538, 0.032834211214922644, 0.02320826998617824, 0.012194803516759327, 0.0004786509491550012, -0.011167483821793561, -0.02193599117570719, -0.031045390212314006, -0.037804722081310874, -0.04167570339032056, -0.042326632566186004, -0.039672212892462845, -0.033894258279227284, -0.025439667869505817, -0.014994006772554757, -0.0034313546221492906], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y8", "zmin": null, "yaxis": "y", "legendgroup": "y8", "zmax": null, "line": {"color": "rgba(198, 130, 37, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.013562133420842604, -0.024387700766936207, -0.03324326419510057, -0.03937408251080661, -0.042276111494252436, -0.04172945376443669, -0.037804722081310874, -0.030843620652972924, -0.02141738123516561, -0.010268460059092235, 0.0017580172239592287, 0.013786222773882296, 0.024978502418535366, 0.03459557498187183, 0.04204381565564756, 0.04690697628999974, 0.04896135001030587, 0.0481749363813936, 0.04469247054348279, 0.038809151597143106, 0.030936494557518655, 0.021563933760609683, 0.011219659651864305, 0.00043374057536189843, -0.010294050326122708, -0.020520025916277676, -0.029875084633517256, -0.03807572921458141, -0.04492802859668448, -0.05032541829881054, -0.054241547083993175, -0.05671953314497683, -0.05785900766276947, -0.057802223634045365, -0.05672032502303975, -0.05480063837205414, -0.0522355964429413, -0.04921365683929495, -0.04591235715727241, -0.04249346456637444, -0.039100037980666615, -0.035855125862322736, -0.03286176877900921, -0.030203956964135078, -0.027948201779063313, -0.026145408407212398, -0.02483277825192081, -0.024035517556369672, -0.023768179473278847, -0.024035517556369672, -0.02483277825192081, -0.026145408407212398, -0.027948201779063313, -0.030203956964135078, -0.03286176877900921, -0.035855125862322736, -0.039100037980666615, -0.04249346456637444, -0.04591235715727241, -0.04921365683929495, -0.0522355964429413, -0.05480063837205414, -0.05672032502303975, -0.057802223634045365, -0.05785900766276947, -0.05671953314497683, -0.054241547083993175, -0.05032541829881054, -0.04492802859668448, -0.03807572921458141, -0.029875084633517256, -0.020520025916277676, -0.010294050326122708, 0.00043374057536189843, 0.011219659651864305, 0.021563933760609683, 0.030936494557518655, 0.038809151597143106, 0.04469247054348279, 0.0481749363813936, 0.04896135001030587, 0.04690697628999974, 0.04204381565564756, 0.03459557498187183, 0.024978502418535366, 0.013786222773882296, 0.0017580172239592287, -0.010268460059092235, -0.02141738123516561, -0.030843620652972924, -0.037804722081310874, -0.04172945376443669, -0.042276111494252436, -0.03937408251080661, -0.03324326419510057, -0.024387700766936207, -0.013562133420842604], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y9", "zmin": null, "yaxis": "y", "legendgroup": "y9", "zmax": null, "line": {"color": "rgba(0, 169, 141, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.022881488599615286, -0.03223035314003258, -0.038846163114352336, -0.04215373868923622, -0.041879499176880296, -0.03806399486581272, -0.031045390212314006, -0.02141738123516561, -0.009967215002439982, 0.0023990864415799986, 0.014736589019986942, 0.02613889164358011, 0.035806561097454795, 0.04310142057239088, 0.04758335092470511, 0.049028181942451454, 0.047427087991378736, 0.04296948728468357, 0.03601265264628425, 0.027042004306541426, 0.016626356821187495, 0.005372266208323732, -0.00611885823064855, -0.017287953061458722, -0.02764777669577622, -0.03680356172899527, -0.04446462634244799, -0.050447486533958925, -0.054671596840365946, -0.05714923632188933, -0.05797124859337839, -0.057290358424637956, -0.05530365530373093, -0.0522355964429413, -0.04832258015319124, -0.04379981483193957, -0.03889089243128978, -0.033800193473608776, -0.02870801983597124, -0.023768179473278847, -0.019107634495847278, -0.014827765425508264, -0.011006791150646839, -0.007702905313111807, -0.004957734516104436, -0.0027997817108104317, -0.0012475810549904855, -0.0003123523378733905, 0, -0.0003123523378733905, -0.0012475810549904855, -0.0027997817108104317, -0.004957734516104436, -0.007702905313111807, -0.011006791150646839, -0.014827765425508264, -0.019107634495847278, -0.023768179473278847, -0.02870801983597124, -0.033800193473608776, -0.03889089243128978, -0.04379981483193957, -0.04832258015319124, -0.0522355964429413, -0.05530365530373093, -0.057290358424637956, -0.05797124859337839, -0.05714923632188933, -0.054671596840365946, -0.050447486533958925, -0.04446462634244799, -0.03680356172899527, -0.02764777669577622, -0.017287953061458722, -0.00611885823064855, 0.005372266208323732, 0.016626356821187495, 0.027042004306541426, 0.03601265264628425, 0.04296948728468357, 0.047427087991378736, 0.049028181942451454, 0.04758335092470511, 0.04310142057239088, 0.035806561097454795, 0.02613889164358011, 0.014736589019986942, 0.0023990864415799986, -0.009967215002439982, -0.02141738123516561, -0.031045390212314006, -0.03806399486581272, -0.041879499176880296, -0.04215373868923622, -0.038846163114352336, -0.03223035314003258, -0.022881488599615286], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y10", "zmin": null, "yaxis": "y", "legendgroup": "y10", "zmax": null, "line": {"color": "rgba(142, 151, 30, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.030814659542108623, -0.038043269341213194, -0.041917311008633794, -0.04209225488196526, -0.03856075944551718, -0.03164105742946344, -0.02193599117570719, -0.010268460059092235, 0.0023990864415799986, 0.015052530095095969, 0.026712753398827963, 0.036513357564663645, 0.04376321952076582, 0.047989667034859795, 0.04896024829755483, 0.04668323364055051, 0.04138889936988247, 0.03349514476667778, 0.02356198332998537, 0.012239893896977237, 0.00021694266699616769, -0.011830930510913693, -0.023282917998618678, -0.033607151643790266, -0.0423839459589055, -0.04931819101787035, -0.054241547083993175, -0.05710582426521185, -0.05796942058800418, -0.056978936315397015, -0.05434810170674743, -0.050335988755707724, -0.04522617473918571, -0.03930814034277919, -0.03286176877900921, -0.026145408407212398, -0.019387603268548395, -0.01278230543892609, -0.006487170632833471, -0.0006244046480190265, 0.0047164340701690375, 0.009474273505160937, 0.013611565256248178, 0.01710900613069049, 0.01996034560879418, 0.022167593022248883, 0.023736856668822536, 0.024674977052713404, 0.02498706047190853, 0.024674977052713404, 0.023736856668822536, 0.022167593022248883, 0.01996034560879418, 0.01710900613069049, 0.013611565256248178, 0.009474273505160937, 0.0047164340701690375, -0.0006244046480190265, -0.006487170632833471, -0.01278230543892609, -0.019387603268548395, -0.026145408407212398, -0.03286176877900921, -0.03930814034277919, -0.04522617473918571, -0.050335988755707724, -0.05434810170674743, -0.056978936315397015, -0.05796942058800418, -0.05710582426521185, -0.054241547083993175, -0.04931819101787035, -0.0423839459589055, -0.033607151643790266, -0.023282917998618678, -0.011830930510913693, 0.00021694266699616769, 0.012239893896977237, 0.02356198332998537, 0.03349514476667778, 0.04138889936988247, 0.04668323364055051, 0.04896024829755483, 0.047989667034859795, 0.04376321952076582, 0.036513357564663645, 0.026712753398827963, 0.015052530095095969, 0.0023990864415799986, -0.010268460059092235, -0.02193599117570719, -0.03164105742946344, -0.03856075944551718, -0.04209225488196526, -0.041917311008633794, -0.038043269341213194, -0.030814659542108623], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y11", "zmin": null, "yaxis": "y", "legendgroup": "y11", "zmax": null, "line": {"color": "rgba(0, 169, 204, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03690502849914266, -0.04150478158647204, -0.042311921266756425, -0.03925111477774544, -0.03260130122266114, -0.022957945344184216, -0.011167483821793561, 0.0017580172239592287, 0.014736589019986942, 0.026712753398827963, 0.03674556407346923, 0.04408082504349423, 0.048202170295002, 0.04885816899945481, 0.046065136943488356, 0.04008762606051746, 0.031400420505200956, 0.020637150322859062, 0.008531279966773837, -0.00414474927275206, -0.016636970578023727, -0.028259636347245782, -0.03843418261610348, -0.04671568215206028, -0.05280636655509189, -0.05655695505777426, -0.05795744296335416, -0.05711962618109622, -0.054253958142026215, -0.04964337221669045, -0.04361650222140574, -0.03652235697984948, -0.02870801983597124, -0.020500416136265034, -0.012192678126517526, -0.004035181692455175, 0.003769037731855356, 0.011065047478789601, 0.017743676628374457, 0.023736856668822536, 0.029011417275877496, 0.03356204110889651, 0.037403975055435114, 0.04056597152205359, 0.04308380860776664, 0.04499462472466556, 0.04633220955958977, 0.04712332320782043, 0.04738506927142664, 0.04712332320782043, 0.04633220955958977, 0.04499462472466556, 0.04308380860776664, 0.04056597152205359, 0.037403975055435114, 0.03356204110889651, 0.029011417275877496, 0.023736856668822536, 0.017743676628374457, 0.011065047478789601, 0.003769037731855356, -0.004035181692455175, -0.012192678126517526, -0.020500416136265034, -0.02870801983597124, -0.03652235697984948, -0.04361650222140574, -0.04964337221669045, -0.054253958142026215, -0.05711962618109622, -0.05795744296335416, -0.05655695505777426, -0.05280636655509189, -0.04671568215206028, -0.03843418261610348, -0.028259636347245782, -0.016636970578023727, -0.00414474927275206, 0.008531279966773837, 0.020637150322859062, 0.031400420505200956, 0.04008762606051746, 0.046065136943488356, 0.04885816899945481, 0.048202170295002, 0.04408082504349423, 0.03674556407346923, 0.026712753398827963, 0.014736589019986942, 0.0017580172239592287, -0.011167483821793561, -0.022957945344184216, -0.03260130122266114, -0.03925111477774544, -0.042311921266756425, -0.04150478158647204, -0.03690502849914266], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y12", "zmin": null, "yaxis": "y", "legendgroup": "y12", "zmax": null, "line": {"color": "rgba(155, 127, 233, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.04083607358767439, -0.042460977170579235, -0.0400685073182753, -0.03387600471170934, -0.024451519180285236, -0.012649365505976515, 0.0004786509491550012, 0.013786222773882296, 0.02613889164358011, 0.036513357564663645, 0.04408082504349423, 0.04826773694892544, 0.04878999598770127, 0.04565966611001241, 0.039165865236553, 0.0298338410564352, 0.01836787339008987, 0.0055845682765417, -0.007656711234980534, -0.020520025916277676, -0.03225043575504232, -0.04221915632873505, -0.04995406610993753, -0.05515491605013087, -0.057694015501266696, -0.05760431515473211, -0.05505760697435419, -0.050335988755707724, -0.04379981483193957, -0.035855125862322736, -0.026923093169523554, -0.017413410827150585, -0.007702905313111807, 0.001880017630607545, 0.011065047478789601, 0.019644189549118916, 0.027471290307035087, 0.03445782405725266, 0.04056597152205359, 0.045799991341126285, 0.05019677946332084, 0.053816356897235, 0.05673284975057918, 0.05902634928653124, 0.06077588090795559, 0.06205358088274775, 0.06292008416246539, 0.06342106706713174, 0.06358486245215166, 0.06342106706713174, 0.06292008416246539, 0.06205358088274775, 0.06077588090795559, 0.05902634928653124, 0.05673284975057918, 0.053816356897235, 0.05019677946332084, 0.045799991341126285, 0.04056597152205359, 0.03445782405725266, 0.027471290307035087, 0.019644189549118916, 0.011065047478789601, 0.001880017630607545, -0.007702905313111807, -0.017413410827150585, -0.026923093169523554, -0.035855125862322736, -0.04379981483193957, -0.050335988755707724, -0.05505760697435419, -0.05760431515473211, -0.057694015501266696, -0.05515491605013087, -0.04995406610993753, -0.04221915632873505, -0.03225043575504232, -0.020520025916277676, -0.007656711234980534, 0.0055845682765417, 0.01836787339008987, 0.0298338410564352, 0.039165865236553, 0.04565966611001241, 0.04878999598770127, 0.04826773694892544, 0.04408082504349423, 0.036513357564663645, 0.02613889164358011, 0.013786222773882296, 0.0004786509491550012, -0.012649365505976515, -0.024451519180285236, -0.03387600471170934, -0.0400685073182753, -0.042460977170579235, -0.04083607358767439], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y13", "zmin": null, "yaxis": "y", "legendgroup": "y13", "zmax": null, "line": {"color": "rgba(97, 141, 246, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.04244131815783876, -0.04092329280348354, -0.03539264198988428, -0.0263662816835029, -0.014686672893891698, -0.001431630441634243, 0.012194803516759327, 0.024978502418535366, 0.035806561097454795, 0.04376321952076582, 0.048202170295002, 0.04878999598770127, 0.04551875419121116, 0.03868891633990796, 0.028866640071341296, 0.01682146201112624, 0.003451784659844099, -0.010294050326122708, -0.023493708108486083, -0.035317511990522577, -0.04508105740142656, -0.05228088690510248, -0.05661221371282111, -0.05796942058800418, -0.05643149574638259, -0.0522355964429413, -0.04574251095070121, -0.03739793090036873, -0.027693203193403574, -0.017128690011925362, -0.0061821296920366335, 0.0047164340701690375, 0.015202405882377333, 0.02498706047190853, 0.033861212803747966, 0.04169314253555411, 0.04842202918439252, 0.05404824184683762, 0.05862177844952994, 0.062229998909092525, 0.06498558144151709, 0.06701538684882409, 0.0684506720218071, 0.06941887418516075, 0.0700370069734079, 0.07040657640544133, 0.07060984119315501, 0.07070720480428683, 0.0707355302630646, 0.07070720480428683, 0.07060984119315501, 0.07040657640544133, 0.0700370069734079, 0.06941887418516075, 0.0684506720218071, 0.06701538684882409, 0.06498558144151709, 0.062229998909092525, 0.05862177844952994, 0.05404824184683762, 0.04842202918439252, 0.04169314253555411, 0.033861212803747966, 0.02498706047190853, 0.015202405882377333, 0.0047164340701690375, -0.0061821296920366335, -0.017128690011925362, -0.027693203193403574, -0.03739793090036873, -0.04574251095070121, -0.0522355964429413, -0.05643149574638259, -0.05796942058800418, -0.05661221371282111, -0.05228088690510248, -0.04508105740142656, -0.035317511990522577, -0.023493708108486083, -0.010294050326122708, 0.003451784659844099, 0.01682146201112624, 0.028866640071341296, 0.03868891633990796, 0.04551875419121116, 0.04878999598770127, 0.048202170295002, 0.04376321952076582, 0.035806561097454795, 0.024978502418535366, 0.012194803516759327, -0.001431630441634243, -0.014686672893891698, -0.0263662816835029, -0.03539264198988428, -0.04092329280348354, -0.04244131815783876], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y14", "zmin": null, "yaxis": "y", "legendgroup": "y14", "zmax": null, "line": {"color": "rgba(240, 96, 115, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.041702812083432156, -0.037054539418786586, -0.028630077109198487, -0.017235823941080572, -0.003957242641285151, 0.00995460514009024, 0.02320826998617824, 0.03459557498187183, 0.04310142057239088, 0.047989667034859795, 0.04885816899945481, 0.04565966611001241, 0.03868891633990796, 0.028539790576024824, 0.016038701730919914, 0.002162498187170594, -0.01205028948070265, -0.025586176755546662, -0.03753382386867845, -0.04714561202979198, -0.0538799077791263, -0.05742245611121293, -0.057687453256608165, -0.05480063837205414, -0.049068069230192204, -0.04093503863980408, -0.030939841517149867, -0.019666871213569893, -0.007702905313111807, 0.0044004410358833325, 0.016156130789798474, 0.027162049922227857, 0.03711227165921393, 0.045799991341126285, 0.05311343251576602, 0.05902634928653124, 0.06358486245215166, 0.06689229989447039, 0.06909350912525554, 0.07035982049581486, 0.07087551011001388, 0.07082628231212139, 0.07038999382283674, 0.06972959592806349, 0.06898808845801678, 0.06828516210333851, 0.06771515004642782, 0.06734590797103036, 0.06721828316370318, 0.06734590797103036, 0.06771515004642782, 0.06828516210333851, 0.06898808845801678, 0.06972959592806349, 0.07038999382283674, 0.07082628231212139, 0.07087551011001388, 0.07035982049581486, 0.06909350912525554, 0.06689229989447039, 0.06358486245215166, 0.05902634928653124, 0.05311343251576602, 0.045799991341126285, 0.03711227165921393, 0.027162049922227857, 0.016156130789798474, 0.0044004410358833325, -0.007702905313111807, -0.019666871213569893, -0.030939841517149867, -0.04093503863980408, -0.049068069230192204, -0.05480063837205414, -0.057687453256608165, -0.05742245611121293, -0.0538799077791263, -0.04714561202979198, -0.03753382386867845, -0.025586176755546662, -0.01205028948070265, 0.002162498187170594, 0.016038701730919914, 0.028539790576024824, 0.03868891633990796, 0.04565966611001241, 0.04885816899945481, 0.047989667034859795, 0.04310142057239088, 0.03459557498187183, 0.02320826998617824, 0.00995460514009024, -0.003957242641285151, -0.017235823941080572, -0.028630077109198487, -0.037054539418786586, -0.041702812083432156], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y15", "zmin": null, "yaxis": "y", "legendgroup": "y15", "zmax": null, "line": {"color": "rgba(221, 101, 182, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03873952880027733, -0.03114567451828078, -0.020232429911833317, -0.007069234510857113, 0.007061712189233647, 0.020798277520802256, 0.032834211214922644, 0.04204381565564756, 0.04758335092470511, 0.04896024829755483, 0.046065136943488356, 0.039165865236553, 0.028866640071341296, 0.016038701730919914, 0.0017312945144323656, -0.012927084182596107, -0.026827098138887163, -0.038967558916015534, -0.048527693650739875, -0.05491775508052088, -0.05780562875263666, -0.05711962618109622, -0.05302986714747128, -0.04591235715727241, -0.036300945656162924, -0.02483277825192081, -0.012192678126517526, 0.0009387864588941174, 0.013929826013452875, 0.026232052236498594, 0.037403975055435114, 0.04712332320782043, 0.05518911230603298, 0.061515098519999166, 0.06611668562698729, 0.06909350912525554, 0.07060984119315501, 0.07087469966135411, 0.07012316566041692, 0.06859998001328096, 0.06654605187084454, 0.06418811665831267, 0.06173145237928255, 0.05935531840278692, 0.05721062202138408, 0.0554192394536295, 0.054074408072778656, 0.053241651373662324, 0.05295978330335918, 0.053241651373662324, 0.054074408072778656, 0.0554192394536295, 0.05721062202138408, 0.05935531840278692, 0.06173145237928255, 0.06418811665831267, 0.06654605187084454, 0.06859998001328096, 0.07012316566041692, 0.07087469966135411, 0.07060984119315501, 0.06909350912525554, 0.06611668562698729, 0.061515098519999166, 0.05518911230603298, 0.04712332320782043, 0.037403975055435114, 0.026232052236498594, 0.013929826013452875, 0.0009387864588941174, -0.012192678126517526, -0.02483277825192081, -0.036300945656162924, -0.04591235715727241, -0.05302986714747128, -0.05711962618109622, -0.05780562875263666, -0.05491775508052088, -0.048527693650739875, -0.038967558916015534, -0.026827098138887163, -0.012927084182596107, 0.0017312945144323656, 0.016038701730919914, 0.028866640071341296, 0.039165865236553, 0.046065136943488356, 0.04896024829755483, 0.04758335092470511, 0.04204381565564756, 0.032834211214922644, 0.020798277520802256, 0.007061712189233647, -0.007069234510857113, -0.020232429911833317, -0.03114567451828078, -0.03873952880027733], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y16", "zmin": null, "yaxis": "y", "legendgroup": "y16", "zmax": null, "line": {"color": "rgba(108, 159, 51, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03378768578473035, -0.023586099996342147, -0.010718867722094379, 0.0035227088628487697, 0.01771809742553514, 0.030464539527382976, 0.0405170354164538, 0.04690697628999974, 0.049028181942451454, 0.04668323364055051, 0.04008762606051746, 0.0298338410564352, 0.01682146201112624, 0.002162498187170594, -0.012927084182596107, -0.027238119104118063, -0.039670529079745095, -0.04931819101787035, -0.05552998670483286, -0.05794360707372231, -0.05649168180961626, -0.05138252152197142, -0.04305993166613821, -0.03214801971223707, -0.019387603268548395, -0.005570765122896035, 0.008520601341770602, 0.022167593022248883, 0.03475524623357991, 0.045799991341126285, 0.05496344021683955, 0.06205358088274775, 0.06701538684882409, 0.06991342678236025, 0.07090928797611137, 0.07023654641869881, 0.06817569432179703, 0.06503095272323879, 0.06111033330226716, 0.056709742354204826, 0.05210139849521898, 0.047526403324657414, 0.04319098161399095, 0.03926569882297806, 0.03588686033765934, 0.03315928197343901, 0.031159674327330144, 0.029939983781014083, 0.0295301623758919, 0.029939983781014083, 0.031159674327330144, 0.03315928197343901, 0.03588686033765934, 0.03926569882297806, 0.04319098161399095, 0.047526403324657414, 0.05210139849521898, 0.056709742354204826, 0.06111033330226716, 0.06503095272323879, 0.06817569432179703, 0.07023654641869881, 0.07090928797611137, 0.06991342678236025, 0.06701538684882409, 0.06205358088274775, 0.05496344021683955, 0.045799991341126285, 0.03475524623357991, 0.022167593022248883, 0.008520601341770602, -0.005570765122896035, -0.019387603268548395, -0.03214801971223707, -0.04305993166613821, -0.05138252152197142, -0.05649168180961626, -0.05794360707372231, -0.05552998670483286, -0.04931819101787035, -0.039670529079745095, -0.027238119104118063, -0.012927084182596107, 0.002162498187170594, 0.01682146201112624, 0.0298338410564352, 0.04008762606051746, 0.04668323364055051, 0.049028181942451454, 0.04690697628999974, 0.0405170354164538, 0.030464539527382976, 0.01771809742553514, 0.0035227088628487697, -0.010718867722094379, -0.023586099996342147, -0.03378768578473035], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y17", "zmin": null, "yaxis": "y", "legendgroup": "y17", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.027175371195658795, -0.014830430313707977, -0.0006371247782392889, 0.013944869860128403, 0.027423876669558294, 0.03843117863903444, 0.045858095098109314, 0.04896135001030587, 0.047427087991378736, 0.04138889936988247, 0.031400420505200956, 0.01836787339008987, 0.003451784659844099, -0.01205028948070265, -0.026827098138887163, -0.039670529079745095, -0.049575063814172045, -0.05581166934969179, -0.05797124859337839, -0.05597627019066032, -0.05006248663690296, -0.04073539091869543, -0.02870801983597124, -0.014827765425508264, 0, 0.014884346332942059, 0.029011417275877496, 0.04169314253555411, 0.052399782143584296, 0.06077588090795559, 0.06664079941000567, 0.06997620892337074, 0.07090372337244864, 0.06965618377580868, 0.06654605187084454, 0.06193398888033367, 0.05620009257242416, 0.04971954596694955, 0.04284369112727859, 0.03588686033765934, 0.0291187299374325, 0.022761539499926882, 0.016991248272574217, 0.01194157076537377, 0.007709820474616166, 0.00436356498686016, 0.001947226385121772, 0.00048792085273476955, 0, 0.00048792085273476955, 0.001947226385121772, 0.00436356498686016, 0.007709820474616166, 0.01194157076537377, 0.016991248272574217, 0.022761539499926882, 0.0291187299374325, 0.03588686033765934, 0.04284369112727859, 0.04971954596694955, 0.05620009257242416, 0.06193398888033367, 0.06654605187084454, 0.06965618377580868, 0.07090372337244864, 0.06997620892337074, 0.06664079941000567, 0.06077588090795559, 0.052399782143584296, 0.04169314253555411, 0.029011417275877496, 0.014884346332942059, 0, -0.014827765425508264, -0.02870801983597124, -0.04073539091869543, -0.05006248663690296, -0.05597627019066032, -0.05797124859337839, -0.05581166934969179, -0.049575063814172045, -0.039670529079745095, -0.026827098138887163, -0.01205028948070265, 0.003451784659844099, 0.01836787339008987, 0.031400420505200956, 0.04138889936988247, 0.047427087991378736, 0.04896135001030587, 0.045858095098109314, 0.03843117863903444, 0.027423876669558294, 0.013944869860128403, -0.0006371247782392889, -0.014830430313707977, -0.027175371195658795], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y18", "zmin": null, "yaxis": "y", "legendgroup": "y18", "zmax": null, "line": {"color": "rgba(227, 111, 71, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.019293987538109965, -0.005364574400158507, 0.009473182752142746, 0.023654002630535617, 0.03568729784209614, 0.04431312954801783, 0.048629002229383385, 0.0481749363813936, 0.04296948728468357, 0.03349514476667778, 0.020637150322859062, 0.0055845682765417, -0.010294050326122708, -0.025586176755546662, -0.038967558916015534, -0.04931819101787035, -0.05581166934969179, -0.057971193186890924, -0.05568946443231503, -0.04921365683929495, -0.039100037980666615, -0.026145408407212398, -0.011304076619915043, 0.0044004410358833325, 0.01996034560879418, 0.03445782405725266, 0.04712332320782043, 0.057374725169627945, 0.06483656306820804, 0.06934042498664442, 0.07090928797611137, 0.06972959592806349, 0.06611541377092878, 0.06046899227255463, 0.053241651373662324, 0.04489815696022981, 0.03588686033765934, 0.02661691958010542, 0.017443035399983122, 0.008657389947079534, 0.00048792085273476955, -0.006898290828732119, -0.01338790351687593, -0.01891185782611035, -0.023434855005557163, -0.026944861111601357, -0.029443509031926877, -0.03093805295208876, -0.031435334142078476, -0.03093805295208876, -0.029443509031926877, -0.026944861111601357, -0.023434855005557163, -0.01891185782611035, -0.01338790351687593, -0.006898290828732119, 0.00048792085273476955, 0.008657389947079534, 0.017443035399983122, 0.02661691958010542, 0.03588686033765934, 0.04489815696022981, 0.053241651373662324, 0.06046899227255463, 0.06611541377092878, 0.06972959592806349, 0.07090928797611137, 0.06934042498664442, 0.06483656306820804, 0.057374725169627945, 0.04712332320782043, 0.03445782405725266, 0.01996034560879418, 0.0044004410358833325, -0.011304076619915043, -0.026145408407212398, -0.039100037980666615, -0.04921365683929495, -0.05568946443231503, -0.057971193186890924, -0.05581166934969179, -0.04931819101787035, -0.038967558916015534, -0.025586176755546662, -0.010294050326122708, 0.0055845682765417, 0.020637150322859062, 0.03349514476667778, 0.04296948728468357, 0.0481749363813936, 0.048629002229383385, 0.04431312954801783, 0.03568729784209614, 0.023654002630535617, 0.009473182752142746, -0.005364574400158507, -0.019293987538109965], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y19", "zmin": null, "yaxis": "y", "legendgroup": "y19", "zmax": null, "line": {"color": "rgba(62, 164, 78, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.010568928699422074, 0.004326348446401224, 0.01911254521144837, 0.032187410052808826, 0.042134866483123944, 0.047874580410804536, 0.04877116322922048, 0.04469247054348279, 0.03601265264628425, 0.02356198332998537, 0.008531279966773837, -0.007656711234980534, -0.023493708108486083, -0.03753382386867845, -0.048527693650739875, -0.05552998670483286, -0.05797124859337839, -0.05568946443231503, -0.048921309502863976, -0.03825722809959497, -0.02456782186324457, -0.00891124103891014, 0.007567776669795874, 0.023736856668822536, 0.038563910748833426, 0.05118715444511622, 0.06096293760071619, 0.06748982028909199, 0.07060984119315501, 0.07038999382283674, 0.0670883852046823, 0.06111033330226716, 0.05295978330335918, 0.04319098161399095, 0.03236448254360126, 0.021010443372916018, 0.009600955849587763, -0.0014679872505029663, -0.011885271189354125, -0.02142530404701613, -0.02994211931113844, -0.03735874280383697, -0.0436536254098885, -0.048845774019986375, -0.052979942159562435, -0.05611292821370759, -0.05830172241169848, -0.0595939790935052, -0.06002108774380708, -0.0595939790935052, -0.05830172241169848, -0.05611292821370759, -0.052979942159562435, -0.048845774019986375, -0.0436536254098885, -0.03735874280383697, -0.02994211931113844, -0.02142530404701613, -0.011885271189354125, -0.0014679872505029663, 0.009600955849587763, 0.021010443372916018, 0.03236448254360126, 0.04319098161399095, 0.05295978330335918, 0.06111033330226716, 0.0670883852046823, 0.07038999382283674, 0.07060984119315501, 0.06748982028909199, 0.06096293760071619, 0.05118715444511622, 0.038563910748833426, 0.023736856668822536, 0.007567776669795874, -0.00891124103891014, -0.02456782186324457, -0.03825722809959497, -0.048921309502863976, -0.05568946443231503, -0.05797124859337839, -0.05552998670483286, -0.048527693650739875, -0.03753382386867845, -0.023493708108486083, -0.007656711234980534, 0.008531279966773837, 0.02356198332998537, 0.03601265264628425, 0.04469247054348279, 0.04877116322922048, 0.047874580410804536, 0.042134866483123944, 0.032187410052808826, 0.01911254521144837, 0.004326348446401224, -0.010568928699422074], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y20", "zmin": null, "yaxis": "y", "legendgroup": "y20", "zmax": null, "line": {"color": "rgba(195, 113, 210, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.001431630441634243, 0.013786222773882296, 0.027847141666311193, 0.039182857494045126, 0.046522686476480175, 0.049029254407155574, 0.04638321060292966, 0.038809151597143106, 0.027042004306541426, 0.012239893896977237, -0.00414474927275206, -0.020520025916277676, -0.035317511990522577, -0.04714561202979198, -0.05491775508052088, -0.05794360707372231, -0.05597627019066032, -0.04921365683929495, -0.03825722809959497, -0.024035517556369672, -0.007702905313111807, 0.009474273505160937, 0.026232052236498594, 0.04141254335987183, 0.05404824184683762, 0.06342106706713174, 0.06909350912525554, 0.07091235022770864, 0.06898808845801678, 0.06365516281997069, 0.0554192394536295, 0.04489815696022981, 0.032762729660471696, 0.01968263081360716, 0.006281225588565149, -0.006898290828732119, -0.01941457519099837, -0.03093805295208876, -0.041250477502671586, -0.05023618574433825, -0.057867404585463175, -0.06418596062862286, -0.06928351001764697, -0.07328202023313929, -0.07631578350383601, -0.07851579478480496, -0.0799969408960797, -0.08084815582153988, -0.08112551416309005, -0.08084815582153988, -0.0799969408960797, -0.07851579478480496, -0.07631578350383601, -0.07328202023313929, -0.06928351001764697, -0.06418596062862286, -0.057867404585463175, -0.05023618574433825, -0.041250477502671586, -0.03093805295208876, -0.01941457519099837, -0.006898290828732119, 0.006281225588565149, 0.01968263081360716, 0.032762729660471696, 0.04489815696022981, 0.0554192394536295, 0.06365516281997069, 0.06898808845801678, 0.07091235022770864, 0.06909350912525554, 0.06342106706713174, 0.05404824184683762, 0.04141254335987183, 0.026232052236498594, 0.009474273505160937, -0.007702905313111807, -0.024035517556369672, -0.03825722809959497, -0.04921365683929495, -0.05597627019066032, -0.05794360707372231, -0.05491775508052088, -0.04714561202979198, -0.035317511990522577, -0.020520025916277676, -0.00414474927275206, 0.012239893896977237, 0.027042004306541426, 0.038809151597143106, 0.04638321060292966, 0.049029254407155574, 0.046522686476480175, 0.039182857494045126, 0.027847141666311193, 0.013786222773882296, -0.001431630441634243], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y21", "zmin": null, "yaxis": "y", "legendgroup": "y21", "zmax": null, "line": {"color": "rgba(172, 142, 24, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.007705272543624346, 0.022610825025533014, 0.035327037476218376, 0.044389432277917196, 0.04873768884958524, 0.047830331881385045, 0.04169879060561669, 0.030936494557518655, 0.016626356821187495, 0.00021694266699616769, -0.016636970578023727, -0.03225043575504232, -0.04508105740142656, -0.0538799077791263, -0.05780562875263666, -0.05649168180961626, -0.05006248663690296, -0.039100037980666615, -0.02456782186324457, -0.007702905313111807, 0.010110423611683293, 0.027471290307035087, 0.04308380860776664, 0.05585848817776385, 0.06498558144151709, 0.06997620892337074, 0.07067086655717086, 0.06721828316370318, 0.06003022646602355, 0.04971954596694955, 0.03702942351966614, 0.022761539499926882, 0.007709820474616166, -0.007395151467245612, -0.021927852103724617, -0.035394322328442085, -0.04744383216498181, -0.057867404585463175, -0.06658580427022456, -0.07363004307669668, -0.07911748638021394, -0.08322634620436055, -0.08617082522939275, -0.08817854255140753, -0.08947122957553463, -0.09024911408346632, -0.09067896751241898, -0.09088550285539078, -0.09094568176679733, -0.09088550285539078, -0.09067896751241898, -0.09024911408346632, -0.08947122957553463, -0.08817854255140753, -0.08617082522939275, -0.08322634620436055, -0.07911748638021394, -0.07363004307669668, -0.06658580427022456, -0.057867404585463175, -0.04744383216498181, -0.035394322328442085, -0.021927852103724617, -0.007395151467245612, 0.007709820474616166, 0.022761539499926882, 0.03702942351966614, 0.04971954596694955, 0.06003022646602355, 0.06721828316370318, 0.07067086655717086, 0.06997620892337074, 0.06498558144151709, 0.05585848817776385, 0.04308380860776664, 0.027471290307035087, 0.010110423611683293, -0.007702905313111807, -0.02456782186324457, -0.039100037980666615, -0.05006248663690296, -0.05649168180961626, -0.05780562875263666, -0.0538799077791263, -0.04508105740142656, -0.03225043575504232, -0.016636970578023727, 0.00021694266699616769, 0.016626356821187495, 0.030936494557518655, 0.04169879060561669, 0.047830331881385045, 0.04873768884958524, 0.044389432277917196, 0.035327037476218376, 0.022610825025533014, 0.007705272543624346], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y22", "zmin": null, "yaxis": "y", "legendgroup": "y22", "zmax": null, "line": {"color": "rgba(0, 170, 174, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.016468432833891142, 0.030464539527382976, 0.0412967222832713, 0.04766978588826198, 0.04878999598770127, 0.044452110907271664, 0.03505762467538453, 0.021563933760609683, 0.005372266208323732, -0.011830930510913693, -0.028259636347245782, -0.04221915632873505, -0.05228088690510248, -0.05742245611121293, -0.05711962618109622, -0.05138252152197142, -0.04073539091869543, -0.026145408407212398, -0.00891124103891014, 0.009474273505160937, 0.027471290307035087, 0.04363415771542717, 0.05673284975057918, 0.06584418405210897, 0.07040657640544133, 0.07023654641869881, 0.06550937234944648, 0.056709742354204826, 0.04456065007960515, 0.029939983781014083, 0.013794273074033596, -0.002941958651092874, -0.01941457519099837, -0.03490152117034324, -0.048845774019986375, -0.06086969918321609, -0.07077275885017735, -0.07851579478480496, -0.08419578943425635, -0.08801513635410305, -0.09024911408346632, -0.09121458954930939, -0.09124212528894639, -0.09065276956548936, -0.0897399865721011, -0.08875651898175305, -0.08790551471036315, -0.08733500824005588, -0.08713481150850413, -0.08733500824005588, -0.08790551471036315, -0.08875651898175305, -0.0897399865721011, -0.09065276956548936, -0.09124212528894639, -0.09121458954930939, -0.09024911408346632, -0.08801513635410305, -0.08419578943425635, -0.07851579478480496, -0.07077275885017735, -0.06086969918321609, -0.048845774019986375, -0.03490152117034324, -0.01941457519099837, -0.002941958651092874, 0.013794273074033596, 0.029939983781014083, 0.04456065007960515, 0.056709742354204826, 0.06550937234944648, 0.07023654641869881, 0.07040657640544133, 0.06584418405210897, 0.05673284975057918, 0.04363415771542717, 0.027471290307035087, 0.009474273505160937, -0.00891124103891014, -0.026145408407212398, -0.04073539091869543, -0.05138252152197142, -0.05711962618109622, -0.05742245611121293, -0.05228088690510248, -0.04221915632873505, -0.028259636347245782, -0.011830930510913693, 0.005372266208323732, 0.021563933760609683, 0.03505762467538453, 0.044452110907271664, 0.04878999598770127, 0.04766978588826198, 0.0412967222832713, 0.030464539527382976, 0.016468432833891142], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y23", "zmin": null, "yaxis": "y", "legendgroup": "y23", "zmax": null, "line": {"color": "rgba(237, 94, 147, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.024539175695880124, 0.03709064066850363, 0.04559833245211172, 0.048994794645401615, 0.04679818300676425, 0.039165865236553, 0.02687290138972338, 0.011219659651864305, -0.00611885823064855, -0.023282917998618678, -0.03843418261610348, -0.04995406610993753, -0.05661221371282111, -0.057687453256608165, -0.05302986714747128, -0.04305993166613821, -0.02870801983597124, -0.011304076619915043, 0.007567776669795874, 0.026232052236498594, 0.04308380860776664, 0.05673284975057918, 0.06611668562698729, 0.07057327401292128, 0.06986971036143766, 0.06418811665831267, 0.054074408072778656, 0.04035893453427208, 0.024059934036823695, 0.006281225588565149, -0.011885271189354125, -0.029443509031926877, -0.045557704635488014, -0.0595939790935052, -0.07113889402837716, -0.0799969408960797, -0.08617082522939275, -0.08982943791608139, -0.09126872367241032, -0.09087033573293914, -0.08906216203065932, -0.0862837098381358, -0.08295813167342621, -0.07947152951212336, -0.07615921035235956, -0.07329785945563662, -0.07110217746809566, -0.06972438535666871, -0.06925510124285432, -0.06972438535666871, -0.07110217746809566, -0.07329785945563662, -0.07615921035235956, -0.07947152951212336, -0.08295813167342621, -0.0862837098381358, -0.08906216203065932, -0.09087033573293914, -0.09126872367241032, -0.08982943791608139, -0.08617082522939275, -0.0799969408960797, -0.07113889402837716, -0.0595939790935052, -0.045557704635488014, -0.029443509031926877, -0.011885271189354125, 0.006281225588565149, 0.024059934036823695, 0.04035893453427208, 0.054074408072778656, 0.06418811665831267, 0.06986971036143766, 0.07057327401292128, 0.06611668562698729, 0.05673284975057918, 0.04308380860776664, 0.026232052236498594, 0.007567776669795874, -0.011304076619915043, -0.02870801983597124, -0.04305993166613821, -0.05302986714747128, -0.057687453256608165, -0.05661221371282111, -0.04995406610993753, -0.03843418261610348, -0.023282917998618678, -0.00611885823064855, 0.011219659651864305, 0.02687290138972338, 0.039165865236553, 0.04679818300676425, 0.048994794645401615, 0.04559833245211172, 0.03709064066850363, 0.024539175695880124], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y24", "zmin": null, "yaxis": "y", "legendgroup": "y24", "zmax": null, "line": {"color": "rgba(198, 130, 37, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.031663523015490296, 0.04231539213433679, 0.048168396555550407, 0.04843209606376969, 0.04296948728468357, 0.032312457036751126, 0.017597910510974448, 0.00043374057536189843, -0.017287953061458722, -0.033607151643790266, -0.04671568215206028, -0.05515491605013087, -0.05796942058800418, -0.05480063837205414, -0.04591235715727241, -0.03214801971223707, -0.014827765425508264, 0.0044004410358833325, 0.023736856668822536, 0.04141254335987183, 0.05585848817776385, 0.06584418405210897, 0.07057327401292128, 0.06972959592806349, 0.06347297492002213, 0.05238965195590362, 0.037406689332756274, 0.01968263081360716, 0.00048792085273476955, -0.01891185782611035, -0.03735874280383697, -0.05388286907125833, -0.06775585171392955, -0.07851579478480496, -0.0859658163909405, -0.09015045731267568, -0.09131593213649357, -0.08986083578529938, -0.0862837098381358, -0.08113297508032842, -0.07496338046692728, -0.06830155199730398, -0.06162167556787999, -0.05533099588483479, -0.049763776809129065, -0.04518170035546226, -0.04177837921381129, -0.03968567784606773, -0.03897981433617731, -0.03968567784606773, -0.04177837921381129, -0.04518170035546226, -0.049763776809129065, -0.05533099588483479, -0.06162167556787999, -0.06830155199730398, -0.07496338046692728, -0.08113297508032842, -0.0862837098381358, -0.08986083578529938, -0.09131593213649357, -0.09015045731267568, -0.0859658163909405, -0.07851579478480496, -0.06775585171392955, -0.05388286907125833, -0.03735874280383697, -0.01891185782611035, 0.00048792085273476955, 0.01968263081360716, 0.037406689332756274, 0.05238965195590362, 0.06347297492002213, 0.06972959592806349, 0.07057327401292128, 0.06584418405210897, 0.05585848817776385, 0.04141254335987183, 0.023736856668822536, 0.0044004410358833325, -0.014827765425508264, -0.03214801971223707, -0.04591235715727241, -0.05480063837205414, -0.05796942058800418, -0.05515491605013087, -0.04671568215206028, -0.033607151643790266, -0.017287953061458722, 0.00043374057536189843, 0.017597910510974448, 0.032312457036751126, 0.04296948728468357, 0.04843209606376969, 0.048168396555550407, 0.04231539213433679, 0.031663523015490296], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y25", "zmin": null, "yaxis": "y", "legendgroup": "y25", "zmax": null, "line": {"color": "rgba(0, 169, 141, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.037657019279810675, 0.04604662379463335, 0.049029290715542934, 0.046130194328031594, 0.03757709159092609, 0.02427413001985883, 0.007694458501656245, -0.010294050326122708, -0.02764777669577622, -0.0423839459589055, -0.05280636655509189, -0.057694015501266696, -0.05643149574638259, -0.049068069230192204, -0.036300945656162924, -0.019387603268548395, 0, 0.01996034560879418, 0.038563910748833426, 0.05404824184683762, 0.06498558144151709, 0.07040657640544133, 0.06986971036143766, 0.06347297492002213, 0.051811026530912886, 0.03588686033765934, 0.016991248272574217, -0.0034345330681530653, -0.023936908523590678, -0.04317496985500962, -0.06002108774380708, -0.07363004307669668, -0.08347386588733276, -0.08934364918043657, -0.09132298014121154, -0.0897399865721011, -0.08510618967193917, -0.07805041383509298, -0.06925510124285432, -0.05940078323094247, -0.04912248699170504, -0.03897981433617731, -0.02944057949570285, -0.020876418883192742, -0.013567782945136511, -0.007715201506788209, -0.003453627382958198, -0.0008669172451297127, 0, -0.0008669172451297127, -0.003453627382958198, -0.007715201506788209, -0.013567782945136511, -0.020876418883192742, -0.02944057949570285, -0.03897981433617731, -0.04912248699170504, -0.05940078323094247, -0.06925510124285432, -0.07805041383509298, -0.08510618967193917, -0.0897399865721011, -0.09132298014121154, -0.08934364918043657, -0.08347386588733276, -0.07363004307669668, -0.06002108774380708, -0.04317496985500962, -0.023936908523590678, -0.0034345330681530653, 0.016991248272574217, 0.03588686033765934, 0.051811026530912886, 0.06347297492002213, 0.06986971036143766, 0.07040657640544133, 0.06498558144151709, 0.05404824184683762, 0.038563910748833426, 0.01996034560879418, 0, -0.019387603268548395, -0.036300945656162924, -0.049068069230192204, -0.05643149574638259, -0.057694015501266696, -0.05280636655509189, -0.0423839459589055, -0.02764777669577622, -0.010294050326122708, 0.007694458501656245, 0.02427413001985883, 0.03757709159092609, 0.046130194328031594, 0.049029290715542934, 0.04604662379463335, 0.037657019279810675], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y26", "zmin": null, "yaxis": "y", "legendgroup": "y26", "zmax": null, "line": {"color": "rgba(142, 151, 30, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.042404863574605316, 0.04826773694892544, 0.04827678748081466, 0.04229988967195813, 0.030936494557518655, 0.015447595491992866, -0.0023949243781995256, -0.020520025916277676, -0.03680356172899527, -0.04931819101787035, -0.05655695505777426, -0.05760431515473211, -0.0522355964429413, -0.04093503863980408, -0.02483277825192081, -0.005570765122896035, 0.014884346332942059, 0.03445782405725266, 0.05118715444511622, 0.06342106706713174, 0.06997620892337074, 0.07023654641869881, 0.06418811665831267, 0.05238965195590362, 0.03588686033765934, 0.016083912967990648, -0.005410625244593429, -0.026944861111601357, -0.04697406248754969, -0.06418596062862286, -0.0775906272066803, -0.08656978293988553, -0.09088550285539078, -0.09065276956548936, -0.0862837098381358, -0.07841335241628748, -0.06781730438134298, -0.05533099588483479, -0.04177837921381129, -0.027915570341068115, -0.014392296041115405, -0.0017315258985832118, 0.00967439124622255, 0.019554233149479044, 0.027739020100814565, 0.034137934869462254, 0.038712993386835384, 0.041455847041530124, 0.04236936340888838, 0.041455847041530124, 0.038712993386835384, 0.034137934869462254, 0.027739020100814565, 0.019554233149479044, 0.00967439124622255, -0.0017315258985832118, -0.014392296041115405, -0.027915570341068115, -0.04177837921381129, -0.05533099588483479, -0.06781730438134298, -0.07841335241628748, -0.0862837098381358, -0.09065276956548936, -0.09088550285539078, -0.08656978293988553, -0.0775906272066803, -0.06418596062862286, -0.04697406248754969, -0.026944861111601357, -0.005410625244593429, 0.016083912967990648, 0.03588686033765934, 0.05238965195590362, 0.06418811665831267, 0.07023654641869881, 0.06997620892337074, 0.06342106706713174, 0.05118715444511622, 0.03445782405725266, 0.014884346332942059, -0.005570765122896035, -0.02483277825192081, -0.04093503863980408, -0.0522355964429413, -0.05760431515473211, -0.05655695505777426, -0.04931819101787035, -0.03680356172899527, -0.020520025916277676, -0.0023949243781995256, 0.015447595491992866, 0.030936494557518655, 0.04229988967195813, 0.04827678748081466, 0.04826773694892544, 0.042404863574605316], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y27", "zmin": null, "yaxis": "y", "legendgroup": "y27", "zmax": null, "line": {"color": "rgba(0, 169, 204, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.045858095098109314, 0.049028255863867005, 0.046065136943488356, 0.037194697472528085, 0.023382725500691964, 0.006220087412589483, -0.012269588164475924, -0.029875084633517256, -0.04446462634244799, -0.054241547083993175, -0.05795744296335416, -0.05505760697435419, -0.04574251095070121, -0.030939841517149867, -0.012192678126517526, 0.008520601341770602, 0.029011417275877496, 0.04712332320782043, 0.06096293760071619, 0.06909350912525554, 0.07067086655717086, 0.06550937234944648, 0.054074408072778656, 0.037406689332756274, 0.016991248272574217, -0.005410625244593429, -0.027945356141086012, -0.048845774019986375, -0.06658580427022456, -0.0799969408960797, -0.08833804594774992, -0.09131620598746587, -0.08906216203065932, -0.08206853029927091, -0.07110217746809566, -0.05710349539479912, -0.041084986730345295, -0.024039798754518064, -0.0068680615855205, 0.00967439124622255, 0.025003614325888802, 0.038712993386835384, 0.0505602074281885, 0.060440656169643954, 0.06835274705237276, 0.07436019359323173, 0.0785557589578467, 0.08102992044248501, 0.0818469378324642, 0.08102992044248501, 0.0785557589578467, 0.07436019359323173, 0.06835274705237276, 0.060440656169643954, 0.0505602074281885, 0.038712993386835384, 0.025003614325888802, 0.00967439124622255, -0.0068680615855205, -0.024039798754518064, -0.041084986730345295, -0.05710349539479912, -0.07110217746809566, -0.08206853029927091, -0.08906216203065932, -0.09131620598746587, -0.08833804594774992, -0.0799969408960797, -0.06658580427022456, -0.048845774019986375, -0.027945356141086012, -0.005410625244593429, 0.016991248272574217, 0.037406689332756274, 0.054074408072778656, 0.06550937234944648, 0.07067086655717086, 0.06909350912525554, 0.06096293760071619, 0.04712332320782043, 0.029011417275877496, 0.008520601341770602, -0.012192678126517526, -0.030939841517149867, -0.04574251095070121, -0.05505760697435419, -0.05795744296335416, -0.054241547083993175, -0.04446462634244799, -0.029875084633517256, -0.012269588164475924, 0.006220087412589483, 0.023382725500691964, 0.037194697472528085, 0.046065136943488356, 0.049028255863867005, 0.045858095098109314], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y28", "zmin": null, "yaxis": "y", "legendgroup": "y28", "zmax": null, "line": {"color": "rgba(155, 127, 233, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.04802672406115692, 0.04843209606376969, 0.04259105245152353, 0.03109171747407877, 0.015249806171389482, -0.0030504377239427534, -0.02158740873174328, -0.03807572921458141, -0.050447486533958925, -0.05710582426521185, -0.05711962618109622, -0.050335988755707724, -0.03739793090036873, -0.019666871213569893, 0.0009387864588941174, 0.022167593022248883, 0.04169314253555411, 0.057374725169627945, 0.06748982028909199, 0.07091235022770864, 0.06721828316370318, 0.056709742354204826, 0.04035893453427208, 0.01968263081360716, -0.0034345330681530653, -0.026944861111601357, -0.048845774019986375, -0.06736811143426903, -0.08112551416309005, -0.08921201129164351, -0.09124212528894639, -0.08733500824005588, -0.07805041383509298, -0.06428897815930346, -0.04717189993207514, -0.027915570341068115, -0.007715201506788209, 0.012351515641047391, 0.031393629131117665, 0.04874612699774812, 0.0639800988386149, 0.07688790726900409, 0.08744941827251093, 0.09578619857909153, 0.10211042775684408, 0.1066743541570273, 0.10972478180637592, 0.11146564438509889, 0.1120304719395053, 0.11146564438509889, 0.10972478180637592, 0.1066743541570273, 0.10211042775684408, 0.09578619857909153, 0.08744941827251093, 0.07688790726900409, 0.0639800988386149, 0.04874612699774812, 0.031393629131117665, 0.012351515641047391, -0.007715201506788209, -0.027915570341068115, -0.04717189993207514, -0.06428897815930346, -0.07805041383509298, -0.08733500824005588, -0.09124212528894639, -0.08921201129164351, -0.08112551416309005, -0.06736811143426903, -0.048845774019986375, -0.026944861111601357, -0.0034345330681530653, 0.01968263081360716, 0.04035893453427208, 0.056709742354204826, 0.06721828316370318, 0.07091235022770864, 0.06748982028909199, 0.057374725169627945, 0.04169314253555411, 0.022167593022248883, 0.0009387864588941174, -0.019666871213569893, -0.03739793090036873, -0.050335988755707724, -0.05711962618109622, -0.05710582426521185, -0.050447486533958925, -0.03807572921458141, -0.02158740873174328, -0.0030504377239427534, 0.015249806171389482, 0.03109171747407877, 0.04259105245152353, 0.04843209606376969, 0.04802672406115692], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y29", "zmin": null, "yaxis": "y", "legendgroup": "y29", "zmax": null, "line": {"color": "rgba(97, 141, 246, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.048970751720583176, 0.04662467434805535, 0.038077813090238326, 0.02427413001985883, 0.006853457743037402, -0.01205028948070265, -0.03007528872626719, -0.04492802859668448, -0.054671596840365946, -0.05796942058800418, -0.054253958142026215, -0.04379981483193957, -0.027693203193403574, -0.007702905313111807, 0.013929826013452875, 0.03475524623357991, 0.052399782143584296, 0.06483656306820804, 0.07060984119315501, 0.06898808845801678, 0.06003022646602355, 0.04456065007960515, 0.024059934036823695, 0.00048792085273476955, -0.023936908523590678, -0.04697406248754969, -0.06658580427022456, -0.08112551416309005, -0.08947122957553463, -0.09109388026307519, -0.08605832553797192, -0.07496338046692728, -0.058833585688961035, -0.03897981433617731, -0.01684756863873484, 0.006128967559588576, 0.028652003881607768, 0.04965369863847285, 0.06835274705237276, 0.08427368513437312, 0.09723295711056688, 0.10729890319164657, 0.1147344419427747, 0.11993137750541569, 0.12334421567515366, 0.12542954171329684, 0.12659488019303988, 0.12715897675548665, 0.12732395447351627, 0.12715897675548665, 0.12659488019303988, 0.12542954171329684, 0.12334421567515366, 0.11993137750541569, 0.1147344419427747, 0.10729890319164657, 0.09723295711056688, 0.08427368513437312, 0.06835274705237276, 0.04965369863847285, 0.028652003881607768, 0.006128967559588576, -0.01684756863873484, -0.03897981433617731, -0.058833585688961035, -0.07496338046692728, -0.08605832553797192, -0.09109388026307519, -0.08947122957553463, -0.08112551416309005, -0.06658580427022456, -0.04697406248754969, -0.023936908523590678, 0.00048792085273476955, 0.024059934036823695, 0.04456065007960515, 0.06003022646602355, 0.06898808845801678, 0.07060984119315501, 0.06483656306820804, 0.052399782143584296, 0.03475524623357991, 0.013929826013452875, -0.007702905313111807, -0.027693203193403574, -0.04379981483193957, -0.054253958142026215, -0.05796942058800418, -0.054671596840365946, -0.04492802859668448, -0.03007528872626719, -0.01205028948070265, 0.006853457743037402, 0.02427413001985883, 0.038077813090238326, 0.04662467434805535, 0.048970751720583176], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y30", "zmin": null, "yaxis": "y", "legendgroup": "y30", "zmax": null, "line": {"color": "rgba(240, 96, 115, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.04878999598770127, 0.04377986405969505, 0.0327604717491532, 0.017016172701800475, -0.00152235912107342, -0.020520025916277676, -0.03753382386867845, -0.05032541829881054, -0.05714923632188933, -0.056978936315397015, -0.04964337221669045, -0.035855125862322736, -0.017128690011925362, 0.0044004410358833325, 0.026232052236498594, 0.045799991341126285, 0.06077588090795559, 0.06934042498664442, 0.07038999382283674, 0.06365516281997069, 0.04971954596694955, 0.029939983781014083, 0.006281225588565149, -0.01891185782611035, -0.04317496985500962, -0.06418596062862286, -0.0799969408960797, -0.08921201129164351, -0.09109388026307519, -0.0855923873615903, -0.07329785945563662, -0.05533099588483479, -0.03318754009892684, -0.008559664271085284, 0.016843465643954603, 0.041455847041530124, 0.0639800988386149, 0.08346890602582428, 0.09935967585773438, 0.11146564438509889, 0.11993137750541569, 0.12516350908341345, 0.1277484855604861, 0.12836820742270624, 0.12772221064751688, 0.12646202687351876, 0.1251402627158088, 0.12417433933411735, 0.12382315319629535, 0.12417433933411735, 0.1251402627158088, 0.12646202687351876, 0.12772221064751688, 0.12836820742270624, 0.1277484855604861, 0.12516350908341345, 0.11993137750541569, 0.11146564438509889, 0.09935967585773438, 0.08346890602582428, 0.0639800988386149, 0.041455847041530124, 0.016843465643954603, -0.008559664271085284, -0.03318754009892684, -0.05533099588483479, -0.07329785945563662, -0.0855923873615903, -0.09109388026307519, -0.08921201129164351, -0.0799969408960797, -0.06418596062862286, -0.04317496985500962, -0.01891185782611035, 0.006281225588565149, 0.029939983781014083, 0.04971954596694955, 0.06365516281997069, 0.07038999382283674, 0.06934042498664442, 0.06077588090795559, 0.045799991341126285, 0.026232052236498594, 0.0044004410358833325, -0.017128690011925362, -0.035855125862322736, -0.04964337221669045, -0.056978936315397015, -0.05714923632188933, -0.05032541829881054, -0.03753382386867845, -0.020520025916277676, -0.00152235912107342, 0.017016172701800475, 0.0327604717491532, 0.04377986405969505, 0.04878999598770127], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y31", "zmin": null, "yaxis": "y", "legendgroup": "y31", "zmax": null, "line": {"color": "rgba(221, 101, 182, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.04761355000386343, 0.04008762606051746, 0.02687290138972338, 0.009571121963339731, -0.00963486393394146, -0.028259636347245782, -0.04383682542915307, -0.054241547083993175, -0.05797124859337839, -0.05434810170674743, -0.04361650222140574, -0.026923093169523554, -0.0061821296920366335, 0.016156130789798474, 0.037403975055435114, 0.05496344021683955, 0.06664079941000567, 0.07090928797611137, 0.0670883852046823, 0.0554192394536295, 0.03702942351966614, 0.013794273074033596, -0.011885271189354125, -0.03735874280383697, -0.06002108774380708, -0.0775906272066803, -0.08833804594774992, -0.09124212528894639, -0.08605832553797192, -0.07329785945563662, -0.054125994016451684, -0.030197528866358098, -0.003453627382958198, 0.024093198877441203, 0.0505602074281885, 0.07436019359323173, 0.0943171278902554, 0.10972478180637592, 0.12034937613997415, 0.12638409069038745, 0.1283681108723834, 0.1270852736905262, 0.12345725364773678, 0.11844394128676645, 0.11295987263220698, 0.10781111157989003, 0.10365274426192721, 0.10096386730405656, 0.10003514623967846, 0.10096386730405656, 0.10365274426192721, 0.10781111157989003, 0.11295987263220698, 0.11844394128676645, 0.12345725364773678, 0.1270852736905262, 0.1283681108723834, 0.12638409069038745, 0.12034937613997415, 0.10972478180637592, 0.0943171278902554, 0.07436019359323173, 0.0505602074281885, 0.024093198877441203, -0.003453627382958198, -0.030197528866358098, -0.054125994016451684, -0.07329785945563662, -0.08605832553797192, -0.09124212528894639, -0.08833804594774992, -0.0775906272066803, -0.06002108774380708, -0.03735874280383697, -0.011885271189354125, 0.013794273074033596, 0.03702942351966614, 0.0554192394536295, 0.0670883852046823, 0.07090928797611137, 0.06664079941000567, 0.05496344021683955, 0.037403975055435114, 0.016156130789798474, -0.0061821296920366335, -0.026923093169523554, -0.04361650222140574, -0.05434810170674743, -0.05797124859337839, -0.054241547083993175, -0.04383682542915307, -0.028259636347245782, -0.00963486393394146, 0.009571121963339731, 0.02687290138972338, 0.04008762606051746, 0.04761355000386343], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y32", "zmin": null, "yaxis": "y", "legendgroup": "y32", "zmax": null, "line": {"color": "rgba(108, 159, 51, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.04558956944539949, 0.03574294513132674, 0.020637150322859062, 0.002162498187170594, -0.017287953061458722, -0.03512944010085653, -0.04892664366437289, -0.05671953314497683, -0.057290358424637956, -0.050335988755707724, -0.03652235697984948, -0.017413410827150585, 0.0047164340701690375, 0.027162049922227857, 0.04712332320782043, 0.06205358088274775, 0.06997620892337074, 0.06972959592806349, 0.06111033330226716, 0.04489815696022981, 0.022761539499926882, -0.002941958651092874, -0.029443509031926877, -0.05388286907125833, -0.07363004307669668, -0.08656978293988553, -0.09131620598746587, -0.08733500824005588, -0.07496338046692728, -0.05533099588483479, -0.030197528866358098, -0.0017315258985832118, 0.027739020100814565, 0.055972856386526326, 0.08102992044248501, 0.10143210762218653, 0.11625731080459428, 0.12516350908341345, 0.12834896279272995, 0.12646202687351876, 0.12047880409415705, 0.11156838694958249, 0.10096386730405656, 0.0898531900234096, 0.07929821732974865, 0.07018417391350773, 0.06319607805439727, 0.058814763461859376, 0.05732325637673133, 0.058814763461859376, 0.06319607805439727, 0.07018417391350773, 0.07929821732974865, 0.0898531900234096, 0.10096386730405656, 0.11156838694958249, 0.12047880409415705, 0.12646202687351876, 0.12834896279272995, 0.12516350908341345, 0.11625731080459428, 0.10143210762218653, 0.08102992044248501, 0.055972856386526326, 0.027739020100814565, -0.0017315258985832118, -0.030197528866358098, -0.05533099588483479, -0.07496338046692728, -0.08733500824005588, -0.09131620598746587, -0.08656978293988553, -0.07363004307669668, -0.05388286907125833, -0.029443509031926877, -0.002941958651092874, 0.022761539499926882, 0.04489815696022981, 0.06111033330226716, 0.06972959592806349, 0.06997620892337074, 0.06205358088274775, 0.04712332320782043, 0.027162049922227857, 0.0047164340701690375, -0.017413410827150585, -0.03652235697984948, -0.050335988755707724, -0.057290358424637956, -0.05671953314497683, -0.04892664366437289, -0.03512944010085653, -0.017287953061458722, 0.002162498187170594, 0.020637150322859062, 0.03574294513132674, 0.04558956944539949], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y33", "zmin": null, "yaxis": "y", "legendgroup": "y33", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.04287592892913734, 0.030936494557518655, 0.014255332136680298, -0.005021549703949415, -0.024334142827309703, -0.04104742571834398, -0.05280636655509189, -0.05785900766276947, -0.05530365530373093, -0.04522617473918571, -0.02870801983597124, -0.007702905313111807, 0.015202405882377333, 0.03711227165921393, 0.05518911230603298, 0.06701538684882409, 0.07090372337244864, 0.06611541377092878, 0.05295978330335918, 0.032762729660471696, 0.007709820474616166, -0.01941457519099837, -0.045557704635488014, -0.06775585171392955, -0.08347386588733276, -0.09088550285539078, -0.08906216203065932, -0.07805041383509298, -0.058833585688961035, -0.03318754009892684, -0.003453627382958198, 0.027739020100814565, 0.057765239856828854, 0.08427368513437312, 0.10540421227858363, 0.11993137750541569, 0.12732395447351627, 0.12772221064751688, 0.12184527361529092, 0.11084883714465928, 0.09615773797943991, 0.07929821732974865, 0.061751235188300314, 0.04484186185117994, 0.02967176829015202, 0.017093610411863445, 0.007719046480121881, 0.0019473727330142222, 0, 0.0019473727330142222, 0.007719046480121881, 0.017093610411863445, 0.02967176829015202, 0.04484186185117994, 0.061751235188300314, 0.07929821732974865, 0.09615773797943991, 0.11084883714465928, 0.12184527361529092, 0.12772221064751688, 0.12732395447351627, 0.11993137750541569, 0.10540421227858363, 0.08427368513437312, 0.057765239856828854, 0.027739020100814565, -0.003453627382958198, -0.03318754009892684, -0.058833585688961035, -0.07805041383509298, -0.08906216203065932, -0.09088550285539078, -0.08347386588733276, -0.06775585171392955, -0.045557704635488014, -0.01941457519099837, 0.007709820474616166, 0.032762729660471696, 0.05295978330335918, 0.06611541377092878, 0.07090372337244864, 0.06701538684882409, 0.05518911230603298, 0.03711227165921393, 0.015202405882377333, -0.007702905313111807, -0.02870801983597124, -0.04522617473918571, -0.05530365530373093, -0.05785900766276947, -0.05280636655509189, -0.04104742571834398, -0.024334142827309703, -0.005021549703949415, 0.014255332136680298, 0.030936494557518655, 0.04287592892913734], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y34", "zmin": null, "yaxis": "y", "legendgroup": "y34", "zmax": null, "line": {"color": "rgba(227, 111, 71, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.03963212560213236, 0.02584725600873246, 0.007904063612150252, -0.011830930510913693, -0.030673501865746567, -0.04598386580627737, -0.05552998670483286, -0.057802223634045365, -0.0522355964429413, -0.03930814034277919, -0.020500416136265034, 0.001880017630607545, 0.02498706047190853, 0.045799991341126285, 0.061515098519999166, 0.06991342678236025, 0.06965618377580868, 0.06046899227255463, 0.04319098161399095, 0.01968263081360716, -0.007395151467245612, -0.03490152117034324, -0.0595939790935052, -0.07851579478480496, -0.08934364918043657, -0.09065276956548936, -0.08206853029927091, -0.06428897815930346, -0.03897981433617731, -0.008559664271085284, 0.024093198877441203, 0.055972856386526326, 0.08427368513437312, 0.1066743541570273, 0.12154611257274513, 0.1280655746021029, 0.1262261649136082, 0.11675625942134887, 0.10096386730405656, 0.08053585790834274, 0.05732325637673133, 0.03314276244514563, 0.009618882910387172, -0.011917947268232813, -0.03047255125071308, -0.04537133651098209, -0.05620829548270173, -0.06277073679229504, -0.06496635722696219, -0.06277073679229504, -0.05620829548270173, -0.04537133651098209, -0.03047255125071308, -0.011917947268232813, 0.009618882910387172, 0.03314276244514563, 0.05732325637673133, 0.08053585790834274, 0.10096386730405656, 0.11675625942134887, 0.1262261649136082, 0.1280655746021029, 0.12154611257274513, 0.1066743541570273, 0.08427368513437312, 0.055972856386526326, 0.024093198877441203, -0.008559664271085284, -0.03897981433617731, -0.06428897815930346, -0.08206853029927091, -0.09065276956548936, -0.08934364918043657, -0.07851579478480496, -0.0595939790935052, -0.03490152117034324, -0.007395151467245612, 0.01968263081360716, 0.04319098161399095, 0.06046899227255463, 0.06965618377580868, 0.06991342678236025, 0.061515098519999166, 0.045799991341126285, 0.02498706047190853, 0.001880017630607545, -0.020500416136265034, -0.03930814034277919, -0.0522355964429413, -0.057802223634045365, -0.05552998670483286, -0.04598386580627737, -0.030673501865746567, -0.011830930510913693, 0.007904063612150252, 0.02584725600873246, 0.03963212560213236], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y35", "zmin": null, "yaxis": "y", "legendgroup": "y35", "zmax": null, "line": {"color": "rgba(62, 164, 78, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.03601265264628425, 0.020637150322859062, 0.0017312945144323656, -0.018153763500061804, -0.0362502121008708, -0.04995406610993753, -0.057191557619154634, -0.05672032502303975, -0.04832258015319124, -0.03286176877900921, -0.012192678126517526, 0.011065047478789601, 0.033861212803747966, 0.05311343251576602, 0.06611668562698729, 0.07090928797611137, 0.06654605187084454, 0.053241651373662324, 0.03236448254360126, 0.006281225588565149, -0.021927852103724617, -0.048845774019986375, -0.07113889402837716, -0.0859658163909405, -0.09132298014121154, -0.0862837098381358, -0.07110217746809566, -0.04717189993207514, -0.01684756863873484, 0.016843465643954603, 0.0505602074281885, 0.08102992044248501, 0.10540421227858363, 0.12154611257274513, 0.12821612148783826, 0.1251402627158088, 0.11295987263220698, 0.0930787720578656, 0.0674363619373826, 0.03824332783592799, 0.007719046480121881, -0.02213364891206292, -0.04968920817281887, -0.0737805782705446, -0.09369955807552946, -0.10912806601015447, -0.12002257644951186, -0.1264802663529934, -0.1286166165938723, -0.1264802663529934, -0.12002257644951186, -0.10912806601015447, -0.09369955807552946, -0.0737805782705446, -0.04968920817281887, -0.02213364891206292, 0.007719046480121881, 0.03824332783592799, 0.0674363619373826, 0.0930787720578656, 0.11295987263220698, 0.1251402627158088, 0.12821612148783826, 0.12154611257274513, 0.10540421227858363, 0.08102992044248501, 0.0505602074281885, 0.016843465643954603, -0.01684756863873484, -0.04717189993207514, -0.07110217746809566, -0.0862837098381358, -0.09132298014121154, -0.0859658163909405, -0.07113889402837716, -0.048845774019986375, -0.021927852103724617, 0.006281225588565149, 0.03236448254360126, 0.053241651373662324, 0.06654605187084454, 0.07090928797611137, 0.06611668562698729, 0.05311343251576602, 0.033861212803747966, 0.011065047478789601, -0.012192678126517526, -0.03286176877900921, -0.04832258015319124, -0.05672032502303975, -0.057191557619154634, -0.04995406610993753, -0.0362502121008708, -0.018153763500061804, 0.0017312945144323656, 0.020637150322859062, 0.03601265264628425], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y36", "zmin": null, "yaxis": "y", "legendgroup": "y36", "zmax": null, "line": {"color": "rgba(195, 113, 210, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.0321619272477622, 0.015447595491992866, -0.00414474927275206, -0.02391447862413198, -0.04104742571834398, -0.053010059675862406, -0.057914223509020056, -0.05480063837205414, -0.04379981483193957, -0.026145408407212398, -0.004035181692455175, 0.019644189549118916, 0.04169314253555411, 0.05902634928653124, 0.06909350912525554, 0.07023654641869881, 0.06193398888033367, 0.04489815696022981, 0.021010443372916018, -0.006898290828732119, -0.035394322328442085, -0.06086969918321609, -0.0799969408960797, -0.09015045731267568, -0.0897399865721011, -0.07841335241628748, -0.05710349539479912, -0.027915570341068115, 0.006128967559588576, 0.041455847041530124, 0.07436019359323173, 0.10143210762218653, 0.11993137750541569, 0.1280655746021029, 0.1251402627158088, 0.11156838694958249, 0.08874542078444292, 0.058814763461859376, 0.024361694712850233, -0.011917947268232813, -0.04752725507334205, -0.08041470547532921, -0.10912806601015447, -0.13286182852129808, -0.15140128937400707, -0.16498229995422303, -0.1740980863671481, -0.17929156711720928, -0.1809723008253547, -0.17929156711720928, -0.1740980863671481, -0.16498229995422303, -0.15140128937400707, -0.13286182852129808, -0.10912806601015447, -0.08041470547532921, -0.04752725507334205, -0.011917947268232813, 0.024361694712850233, 0.058814763461859376, 0.08874542078444292, 0.11156838694958249, 0.1251402627158088, 0.1280655746021029, 0.11993137750541569, 0.10143210762218653, 0.07436019359323173, 0.041455847041530124, 0.006128967559588576, -0.027915570341068115, -0.05710349539479912, -0.07841335241628748, -0.0897399865721011, -0.09015045731267568, -0.0799969408960797, -0.06086969918321609, -0.035394322328442085, -0.006898290828732119, 0.021010443372916018, 0.04489815696022981, 0.06193398888033367, 0.07023654641869881, 0.06909350912525554, 0.05902634928653124, 0.04169314253555411, 0.019644189549118916, -0.004035181692455175, -0.026145408407212398, -0.04379981483193957, -0.05480063837205414, -0.057914223509020056, -0.053010059675862406, -0.04104742571834398, -0.02391447862413198, -0.00414474927275206, 0.015447595491992866, 0.0321619272477622], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y37", "zmin": null, "yaxis": "y", "legendgroup": "y37", "zmax": null, "line": {"color": "rgba(172, 142, 24, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.02821074311733881, 0.010397804581703946, -0.00963486393394146, -0.02907037696294276, -0.04508105740142656, -0.05523195728282429, -0.057839829610288405, -0.0522355964429413, -0.03889089243128978, -0.019387603268548395, 0.003769037731855356, 0.027471290307035087, 0.04842202918439252, 0.06358486245215166, 0.07060984119315501, 0.06817569432179703, 0.05620009257242416, 0.03588686033765934, 0.009600955849587763, -0.01941457519099837, -0.04744383216498181, -0.07077275885017735, -0.08617082522939275, -0.09131593213649357, -0.08510618967193917, -0.06781730438134298, -0.041084986730345295, -0.007715201506788209, 0.028652003881607768, 0.0639800988386149, 0.0943171278902554, 0.11625731080459428, 0.12732395447351627, 0.1262261649136082, 0.11295987263220698, 0.08874542078444292, 0.055816321017738854, 0.017093610411863445, -0.024205207915655492, -0.06496635722696219, -0.10253368755958539, -0.1349696066991787, -0.16119160012302736, -0.1809723008253547, -0.19481174061549258, -0.20370930239206525, -0.2088772394837565, -0.2114453674933261, -0.2122065907891938, -0.2114453674933261, -0.2088772394837565, -0.20370930239206525, -0.19481174061549258, -0.1809723008253547, -0.16119160012302736, -0.1349696066991787, -0.10253368755958539, -0.06496635722696219, -0.024205207915655492, 0.017093610411863445, 0.055816321017738854, 0.08874542078444292, 0.11295987263220698, 0.1262261649136082, 0.12732395447351627, 0.11625731080459428, 0.0943171278902554, 0.0639800988386149, 0.028652003881607768, -0.007715201506788209, -0.041084986730345295, -0.06781730438134298, -0.08510618967193917, -0.09131593213649357, -0.08617082522939275, -0.07077275885017735, -0.04744383216498181, -0.01941457519099837, 0.009600955849587763, 0.03588686033765934, 0.05620009257242416, 0.06817569432179703, 0.07060984119315501, 0.06358486245215166, 0.04842202918439252, 0.027471290307035087, 0.003769037731855356, -0.019387603268548395, -0.03889089243128978, -0.0522355964429413, -0.057839829610288405, -0.05523195728282429, -0.04508105740142656, -0.02907037696294276, -0.00963486393394146, 0.010397804581703946, 0.02821074311733881], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y38", "zmin": null, "yaxis": "y", "legendgroup": "y38", "zmax": null, "line": {"color": "rgba(0, 170, 174, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.02427413001985883, 0.0055845682765417, -0.01467679622724445, -0.033607151643790266, -0.04839308154172929, -0.05671953314497683, -0.05711962618109622, -0.04921365683929495, -0.033800193473608776, -0.01278230543892609, 0.011065047478789601, 0.03445782405725266, 0.05404824184683762, 0.06689229989447039, 0.07087469966135411, 0.06503095272323879, 0.04971954596694955, 0.02661691958010542, -0.0014679872505029663, -0.03093805295208876, -0.057867404585463175, -0.07851579478480496, -0.08982943791608139, -0.08986083578529938, -0.07805041383509298, -0.05533099588483479, -0.024039798754518064, 0.012351515641047391, 0.04965369863847285, 0.08346890602582428, 0.10972478180637592, 0.12516350908341345, 0.12772221064751688, 0.11675625942134887, 0.0930787720578656, 0.058814763461859376, 0.017093610411863445, -0.02837490037624331, -0.0737805782705446, -0.11568204606697312, -0.15140128937400707, -0.17929156711720928, -0.19884580035609553, -0.21063604857406426, -0.21609918982720208, -0.2172059271919349, -0.21606660702952618, -0.21453573579041268, -0.21387635552087378, -0.21453573579041268, -0.21606660702952618, -0.2172059271919349, -0.21609918982720208, -0.21063604857406426, -0.19884580035609553, -0.17929156711720928, -0.15140128937400707, -0.11568204606697312, -0.0737805782705446, -0.02837490037624331, 0.017093610411863445, 0.058814763461859376, 0.0930787720578656, 0.11675625942134887, 0.12772221064751688, 0.12516350908341345, 0.10972478180637592, 0.08346890602582428, 0.04965369863847285, 0.012351515641047391, -0.024039798754518064, -0.05533099588483479, -0.07805041383509298, -0.08986083578529938, -0.08982943791608139, -0.07851579478480496, -0.057867404585463175, -0.03093805295208876, -0.0014679872505029663, 0.02661691958010542, 0.04971954596694955, 0.06503095272323879, 0.07087469966135411, 0.06689229989447039, 0.05404824184683762, 0.03445782405725266, 0.011065047478789601, -0.01278230543892609, -0.033800193473608776, -0.04921365683929495, -0.05711962618109622, -0.05671953314497683, -0.04839308154172929, -0.033607151643790266, -0.01467679622724445, 0.0055845682765417, 0.02427413001985883], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y39", "zmin": null, "yaxis": "y", "legendgroup": "y39", "zmax": null, "line": {"color": "rgba(237, 94, 147, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.020450442195287553, 0.001083231122454544, -0.01923219082552286, -0.03753382386867845, -0.051044808013775485, -0.05758447818808817, -0.055906388452528745, -0.04591235715727241, -0.02870801983597124, -0.006487170632833471, 0.017743676628374457, 0.04056597152205359, 0.05862177844952994, 0.06909350912525554, 0.07012316566041692, 0.06111033330226716, 0.04284369112727859, 0.017443035399983122, -0.011885271189354125, -0.041250477502671586, -0.06658580427022456, -0.08419578943425635, -0.09126872367241032, -0.0862837098381358, -0.06925510124285432, -0.04177837921381129, -0.0068680615855205, 0.031393629131117665, 0.06835274705237276, 0.09935967585773438, 0.12034937613997415, 0.12834896279272995, 0.12184527361529092, 0.10096386730405656, 0.0674363619373826, 0.024361694712850233, -0.024205207915655492, -0.0737805782705446, -0.12002257644951186, -0.15926805543561576, -0.18896301773824772, -0.20792977681405292, -0.21643700355065953, -0.21606660702952618, -0.20939987758514467, -0.19957051786185215, -0.18975057476915372, -0.18264429055191253, -0.18006326323142124, -0.18264429055191253, -0.18975057476915372, -0.19957051786185215, -0.20939987758514467, -0.21606660702952618, -0.21643700355065953, -0.20792977681405292, -0.18896301773824772, -0.15926805543561576, -0.12002257644951186, -0.0737805782705446, -0.024205207915655492, 0.024361694712850233, 0.0674363619373826, 0.10096386730405656, 0.12184527361529092, 0.12834896279272995, 0.12034937613997415, 0.09935967585773438, 0.06835274705237276, 0.031393629131117665, -0.0068680615855205, -0.04177837921381129, -0.06925510124285432, -0.0862837098381358, -0.09126872367241032, -0.08419578943425635, -0.06658580427022456, -0.041250477502671586, -0.011885271189354125, 0.017443035399983122, 0.04284369112727859, 0.06111033330226716, 0.07012316566041692, 0.06909350912525554, 0.05862177844952994, 0.04056597152205359, 0.017743676628374457, -0.006487170632833471, -0.02870801983597124, -0.04591235715727241, -0.055906388452528745, -0.05758447818808817, -0.051044808013775485, -0.03753382386867845, -0.01923219082552286, 0.001083231122454544, 0.020450442195287553], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y40", "zmin": null, "yaxis": "y", "legendgroup": "y40", "zmax": null, "line": {"color": "rgba(198, 130, 37, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.01682146201112624, -0.0030504377239427534, -0.023282917998618678, -0.04087748122332642, -0.0531105011915593, -0.05794360707372231, -0.05434810170674743, -0.04249346456637444, -0.023768179473278847, -0.0006244046480190265, 0.023736856668822536, 0.045799991341126285, 0.062229998909092525, 0.07035982049581486, 0.06859998001328096, 0.056709742354204826, 0.03588686033765934, 0.008657389947079534, -0.02142530404701613, -0.05023618574433825, -0.07363004307669668, -0.08801513635410305, -0.09087033573293914, -0.08113297508032842, -0.05940078323094247, -0.027915570341068115, 0.00967439124622255, 0.04874612699774812, 0.08427368513437312, 0.11146564438509889, 0.12638409069038745, 0.12646202687351876, 0.11084883714465928, 0.08053585790834274, 0.03824332783592799, -0.011917947268232813, -0.06496635722696219, -0.11568204606697312, -0.15926805543561576, -0.1919516606120709, -0.2114453674933261, -0.2172059271919349, -0.2104570990429376, -0.19397402774903794, -0.17165959794517877, -0.14797152473917702, -0.12727931813411253, -0.11323980384273444, -0.10827726204493697, -0.11323980384273444, -0.12727931813411253, -0.14797152473917702, -0.17165959794517877, -0.19397402774903794, -0.2104570990429376, -0.2172059271919349, -0.2114453674933261, -0.1919516606120709, -0.15926805543561576, -0.11568204606697312, -0.06496635722696219, -0.011917947268232813, 0.03824332783592799, 0.08053585790834274, 0.11084883714465928, 0.12646202687351876, 0.12638409069038745, 0.11146564438509889, 0.08427368513437312, 0.04874612699774812, 0.00967439124622255, -0.027915570341068115, -0.05940078323094247, -0.08113297508032842, -0.09087033573293914, -0.08801513635410305, -0.07363004307669668, -0.05023618574433825, -0.02142530404701613, 0.008657389947079534, 0.03588686033765934, 0.056709742354204826, 0.06859998001328096, 0.07035982049581486, 0.062229998909092525, 0.045799991341126285, 0.023736856668822536, -0.0006244046480190265, -0.023768179473278847, -0.04249346456637444, -0.05434810170674743, -0.05794360707372231, -0.0531105011915593, -0.04087748122332642, -0.023282917998618678, -0.0030504377239427534, 0.01682146201112624], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y41", "zmin": null, "yaxis": "y", "legendgroup": "y41", "zmax": null, "line": {"color": "rgba(0, 169, 141, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.013453291135757724, -0.006777765423001461, -0.026827098138887163, -0.04367812669845153, -0.054671596840365946, -0.05791317112458218, -0.052583215123440726, -0.039100037980666615, -0.019107634495847278, 0.0047164340701690375, 0.029011417275877496, 0.05019677946332084, 0.06498558144151709, 0.07087551011001388, 0.06654605187084454, 0.05210139849521898, 0.0291187299374325, 0.00048792085273476955, -0.02994211931113844, -0.057867404585463175, -0.07911748638021394, -0.09024911408346632, -0.08906216203065932, -0.07496338046692728, -0.04912248699170504, -0.014392296041115405, 0.025003614325888802, 0.0639800988386149, 0.09723295711056688, 0.11993137750541569, 0.1283681108723834, 0.12047880409415705, 0.09615773797943991, 0.05732325637673133, 0.007719046480121881, -0.04752725507334205, -0.10253368755958539, -0.15140128937400707, -0.18896301773824772, -0.2114453674933261, -0.21695429437747638, -0.20571956617182804, -0.18006326323142124, -0.1440946303599098, -0.10316994937368104, -0.06318762824867372, -0.02981100180351453, -0.007721354015809877, 0, -0.007721354015809877, -0.02981100180351453, -0.06318762824867372, -0.10316994937368104, -0.1440946303599098, -0.18006326323142124, -0.20571956617182804, -0.21695429437747638, -0.2114453674933261, -0.18896301773824772, -0.15140128937400707, -0.10253368755958539, -0.04752725507334205, 0.007719046480121881, 0.05732325637673133, 0.09615773797943991, 0.12047880409415705, 0.1283681108723834, 0.11993137750541569, 0.09723295711056688, 0.0639800988386149, 0.025003614325888802, -0.014392296041115405, -0.04912248699170504, -0.07496338046692728, -0.08906216203065932, -0.09024911408346632, -0.07911748638021394, -0.057867404585463175, -0.02994211931113844, 0.00048792085273476955, 0.0291187299374325, 0.05210139849521898, 0.06654605187084454, 0.07087551011001388, 0.06498558144151709, 0.05019677946332084, 0.029011417275877496, 0.0047164340701690375, -0.019107634495847278, -0.039100037980666615, -0.052583215123440726, -0.05791317112458218, -0.054671596840365946, -0.04367812669845153, -0.026827098138887163, -0.006777765423001461, 0.013453291135757724], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y42", "zmin": null, "yaxis": "y", "legendgroup": "y42", "zmax": null, "line": {"color": "rgba(142, 151, 30, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.010397804581703946, -0.010074346320124224, -0.029875084633517256, -0.04598386580627737, -0.05581166934969179, -0.05760431515473211, -0.05073735510710331, -0.035855125862322736, -0.014827765425508264, 0.009474273505160937, 0.03356204110889651, 0.053816356897235, 0.06701538684882409, 0.07082628231212139, 0.06418811665831267, 0.047526403324657414, 0.022761539499926882, -0.006898290828732119, -0.03735874280383697, -0.06418596062862286, -0.08322634620436055, -0.09121458954930939, -0.0862837098381358, -0.06830155199730398, -0.03897981433617731, -0.0017315258985832118, 0.038712993386835384, 0.07688790726900409, 0.10729890319164657, 0.12516350908341345, 0.1270852736905262, 0.11156838694958249, 0.07929821732974865, 0.03314276244514563, -0.02213364891206292, -0.08041470547532921, -0.1349696066991787, -0.17929156711720928, -0.20792977681405292, -0.2172059271919349, -0.20571956617182804, -0.17457264255108246, -0.12727931813411253, -0.06936781517202409, -0.007721354015809877, 0.050260247232070045, 0.09757263308337553, 0.12847653707692527, 0.13921362262920467, 0.12847653707692527, 0.09757263308337553, 0.050260247232070045, -0.007721354015809877, -0.06936781517202409, -0.12727931813411253, -0.17457264255108246, -0.20571956617182804, -0.2172059271919349, -0.20792977681405292, -0.17929156711720928, -0.1349696066991787, -0.08041470547532921, -0.02213364891206292, 0.03314276244514563, 0.07929821732974865, 0.11156838694958249, 0.1270852736905262, 0.12516350908341345, 0.10729890319164657, 0.07688790726900409, 0.038712993386835384, -0.0017315258985832118, -0.03897981433617731, -0.06830155199730398, -0.0862837098381358, -0.09121458954930939, -0.08322634620436055, -0.06418596062862286, -0.03735874280383697, -0.006898290828732119, 0.022761539499926882, 0.047526403324657414, 0.06418811665831267, 0.07082628231212139, 0.06701538684882409, 0.053816356897235, 0.03356204110889651, 0.009474273505160937, -0.014827765425508264, -0.035855125862322736, -0.05073735510710331, -0.05760431515473211, -0.05581166934969179, -0.04598386580627737, -0.029875084633517256, -0.010074346320124224, 0.010397804581703946], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y43", "zmin": null, "yaxis": "y", "legendgroup": "y43", "zmax": null, "line": {"color": "rgba(0, 169, 204, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.007694458501656245, -0.012927084182596107, -0.03244560848322273, -0.047846582872775476, -0.05661221371282111, -0.05711962618109622, -0.048921309502863976, -0.03286176877900921, -0.011006791150646839, 0.013611565256248178, 0.037403975055435114, 0.05673284975057918, 0.0684506720218071, 0.07038999382283674, 0.06173145237928255, 0.04319098161399095, 0.016991248272574217, -0.01338790351687593, -0.0436536254098885, -0.06928351001764697, -0.08617082522939275, -0.09124212528894639, -0.08295813167342621, -0.06162167556787999, -0.02944057949570285, 0.00967439124622255, 0.0505602074281885, 0.08744941827251093, 0.1147344419427747, 0.1277484855604861, 0.12345725364773678, 0.10096386730405656, 0.061751235188300314, 0.009618882910387172, -0.04968920817281887, -0.10912806601015447, -0.16119160012302736, -0.19884580035609553, -0.21643700355065953, -0.2104570990429376, -0.18006326323142124, -0.12727931813411253, -0.05684542146520225, 0.024272562863428722, 0.10765880942561641, 0.18441589483549095, 0.24620752171785285, 0.28624659585899737, 0.3001054387190354, 0.28624659585899737, 0.24620752171785285, 0.18441589483549095, 0.10765880942561641, 0.024272562863428722, -0.05684542146520225, -0.12727931813411253, -0.18006326323142124, -0.2104570990429376, -0.21643700355065953, -0.19884580035609553, -0.16119160012302736, -0.10912806601015447, -0.04968920817281887, 0.009618882910387172, 0.061751235188300314, 0.10096386730405656, 0.12345725364773678, 0.1277484855604861, 0.1147344419427747, 0.08744941827251093, 0.0505602074281885, 0.00967439124622255, -0.02944057949570285, -0.06162167556787999, -0.08295813167342621, -0.09124212528894639, -0.08617082522939275, -0.06928351001764697, -0.0436536254098885, -0.01338790351687593, 0.016991248272574217, 0.04319098161399095, 0.06173145237928255, 0.07038999382283674, 0.0684506720218071, 0.05673284975057918, 0.037403975055435114, 0.013611565256248178, -0.011006791150646839, -0.03286176877900921, -0.048921309502863976, -0.05711962618109622, -0.05661221371282111, -0.047846582872775476, -0.03244560848322273, -0.012927084182596107, 0.007694458501656245], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y44", "zmin": null, "yaxis": "y", "legendgroup": "y44", "zmax": null, "line": {"color": "rgba(155, 127, 233, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.005372266208323732, -0.015331286697460962, -0.03456223232753799, -0.04931819101787035, -0.05714923632188933, -0.05655065735540448, -0.047230046389992356, -0.030203956964135078, -0.007702905313111807, 0.01710900613069049, 0.04056597152205359, 0.05902634928653124, 0.06941887418516075, 0.06972959592806349, 0.05935531840278692, 0.03926569882297806, 0.01194157076537377, -0.01891185782611035, -0.048845774019986375, -0.07328202023313929, -0.08817854255140753, -0.09065276956548936, -0.07947152951212336, -0.05533099588483479, -0.020876418883192742, 0.019554233149479044, 0.060440656169643954, 0.09578619857909153, 0.11993137750541569, 0.12836820742270624, 0.11844394128676645, 0.0898531900234096, 0.04484186185117994, -0.011917947268232813, -0.0737805782705446, -0.13286182852129808, -0.1809723008253547, -0.21063604857406426, -0.21606660702952618, -0.19397402774903794, -0.1440946303599098, -0.06936781517202409, 0.024272562863428722, 0.12847653707692527, 0.23336329447878862, 0.3286107889405816, 0.4046198965764638, 0.453612290553973, 0.4705279821459223, 0.453612290553973, 0.4046198965764638, 0.3286107889405816, 0.23336329447878862, 0.12847653707692527, 0.024272562863428722, -0.06936781517202409, -0.1440946303599098, -0.19397402774903794, -0.21606660702952618, -0.21063604857406426, -0.1809723008253547, -0.13286182852129808, -0.0737805782705446, -0.011917947268232813, 0.04484186185117994, 0.0898531900234096, 0.11844394128676645, 0.12836820742270624, 0.11993137750541569, 0.09578619857909153, 0.060440656169643954, 0.019554233149479044, -0.020876418883192742, -0.05533099588483479, -0.07947152951212336, -0.09065276956548936, -0.08817854255140753, -0.07328202023313929, -0.048845774019986375, -0.01891185782611035, 0.01194157076537377, 0.03926569882297806, 0.05935531840278692, 0.06972959592806349, 0.06941887418516075, 0.05902634928653124, 0.04056597152205359, 0.01710900613069049, -0.007702905313111807, -0.030203956964135078, -0.047230046389992356, -0.05655065735540448, -0.05714923632188933, -0.04931819101787035, -0.03456223232753799, -0.015331286697460962, 0.005372266208323732], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y45", "zmin": null, "yaxis": "y", "legendgroup": "y45", "zmax": null, "line": {"color": "rgba(97, 141, 246, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.003451784659844099, -0.017287953061458722, -0.0362502121008708, -0.050447486533958925, -0.057490597413702625, -0.05597627019066032, -0.04574251095070121, -0.027948201779063313, -0.004957734516104436, 0.01996034560879418, 0.04308380860776664, 0.06077588090795559, 0.0700370069734079, 0.06898808845801678, 0.05721062202138408, 0.03588686033765934, 0.007709820474616166, -0.023434855005557163, -0.052979942159562435, -0.07631578350383601, -0.08947122957553463, -0.0897399865721011, -0.07615921035235956, -0.049763776809129065, -0.013567782945136511, 0.027739020100814565, 0.06835274705237276, 0.10211042775684408, 0.12334421567515366, 0.12772221064751688, 0.11295987263220698, 0.07929821732974865, 0.02967176829015202, -0.03047255125071308, -0.09369955807552946, -0.15140128937400707, -0.19481174061549258, -0.21609918982720208, -0.20939987758514467, -0.17165959794517877, -0.10316994937368104, -0.007721354015809877, 0.10765880942561641, 0.23336329447878862, 0.358187786013244, 0.4705279821459223, 0.5596510513041225, 0.6168903306371777, 0.6366197723675814, 0.6168903306371777, 0.5596510513041225, 0.4705279821459223, 0.358187786013244, 0.23336329447878862, 0.10765880942561641, -0.007721354015809877, -0.10316994937368104, -0.17165959794517877, -0.20939987758514467, -0.21609918982720208, -0.19481174061549258, -0.15140128937400707, -0.09369955807552946, -0.03047255125071308, 0.02967176829015202, 0.07929821732974865, 0.11295987263220698, 0.12772221064751688, 0.12334421567515366, 0.10211042775684408, 0.06835274705237276, 0.027739020100814565, -0.013567782945136511, -0.049763776809129065, -0.07615921035235956, -0.0897399865721011, -0.08947122957553463, -0.07631578350383601, -0.052979942159562435, -0.023434855005557163, 0.007709820474616166, 0.03588686033765934, 0.05721062202138408, 0.06898808845801678, 0.0700370069734079, 0.06077588090795559, 0.04308380860776664, 0.01996034560879418, -0.004957734516104436, -0.027948201779063313, -0.04574251095070121, -0.05597627019066032, -0.057490597413702625, -0.050447486533958925, -0.0362502121008708, -0.017287953061458722, 0.003451784659844099], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y46", "zmin": null, "yaxis": "y", "legendgroup": "y46", "zmax": null, "line": {"color": "rgba(240, 96, 115, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.0019469824866320303, -0.01880135894126013, -0.03753382386867845, -0.05127759866399337, -0.057694015501266696, -0.055461619698071306, -0.044521946141915236, -0.026145408407212398, -0.0027997817108104317, 0.022167593022248883, 0.04499462472466556, 0.06205358088274775, 0.07040657640544133, 0.06828516210333851, 0.0554192394536295, 0.03315928197343901, 0.00436356498686016, -0.026944861111601357, -0.05611292821370759, -0.07851579478480496, -0.09024911408346632, -0.08875651898175305, -0.07329785945563662, -0.04518170035546226, -0.007715201506788209, 0.034137934869462254, 0.07436019359323173, 0.1066743541570273, 0.12542954171329684, 0.12646202687351876, 0.10781111157989003, 0.07018417391350773, 0.017093610411863445, -0.04537133651098209, -0.10912806601015447, -0.16498229995422303, -0.20370930239206525, -0.2172059271919349, -0.19957051786185215, -0.14797152473917702, -0.06318762824867372, 0.050260247232070045, 0.18441589483549095, 0.3286107889405816, 0.4705279821459223, 0.5974882245272354, 0.6978101121849585, 0.762084690877979, 0.7842133035765372, 0.762084690877979, 0.6978101121849585, 0.5974882245272354, 0.4705279821459223, 0.3286107889405816, 0.18441589483549095, 0.050260247232070045, -0.06318762824867372, -0.14797152473917702, -0.19957051786185215, -0.2172059271919349, -0.20370930239206525, -0.16498229995422303, -0.10912806601015447, -0.04537133651098209, 0.017093610411863445, 0.07018417391350773, 0.10781111157989003, 0.12646202687351876, 0.12542954171329684, 0.1066743541570273, 0.07436019359323173, 0.034137934869462254, -0.007715201506788209, -0.04518170035546226, -0.07329785945563662, -0.08875651898175305, -0.09024911408346632, -0.07851579478480496, -0.05611292821370759, -0.026944861111601357, 0.00436356498686016, 0.03315928197343901, 0.0554192394536295, 0.06828516210333851, 0.07040657640544133, 0.06205358088274775, 0.04499462472466556, 0.022167593022248883, -0.0027997817108104317, -0.026145408407212398, -0.044521946141915236, -0.055461619698071306, -0.057694015501266696, -0.05127759866399337, -0.03753382386867845, -0.01880135894126013, 0.0019469824866320303], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y47", "zmin": null, "yaxis": "y", "legendgroup": "y47", "zmax": null, "line": {"color": "rgba(221, 101, 182, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.000866888257962456, -0.01987701194604477, -0.03843418261610348, -0.05184400011432848, -0.05780562875263666, -0.05505760697435419, -0.04361650222140574, -0.02483277825192081, -0.0012475810549904855, 0.023736856668822536, 0.04633220955958977, 0.06292008416246539, 0.07060984119315501, 0.06771515004642782, 0.054074408072778656, 0.031159674327330144, 0.001947226385121772, -0.029443509031926877, -0.05830172241169848, -0.0799969408960797, -0.09067896751241898, -0.08790551471036315, -0.07110217746809566, -0.04177837921381129, -0.003453627382958198, 0.038712993386835384, 0.0785557589578467, 0.10972478180637592, 0.12659488019303988, 0.1251402627158088, 0.10365274426192721, 0.06319607805439727, 0.007719046480121881, -0.05620829548270173, -0.12002257644951186, -0.1740980863671481, -0.2088772394837565, -0.21606660702952618, -0.18975057476915372, -0.12727931813411253, -0.02981100180351453, 0.09757263308337553, 0.24620752171785285, 0.4046198965764638, 0.5596510513041225, 0.6978101121849585, 0.8067004676006326, 0.876354018334807, 0.9003163161571062, 0.876354018334807, 0.8067004676006326, 0.6978101121849585, 0.5596510513041225, 0.4046198965764638, 0.24620752171785285, 0.09757263308337553, -0.02981100180351453, -0.12727931813411253, -0.18975057476915372, -0.21606660702952618, -0.2088772394837565, -0.1740980863671481, -0.12002257644951186, -0.05620829548270173, 0.007719046480121881, 0.06319607805439727, 0.10365274426192721, 0.1251402627158088, 0.12659488019303988, 0.10972478180637592, 0.0785557589578467, 0.038712993386835384, -0.003453627382958198, -0.04177837921381129, -0.07110217746809566, -0.08790551471036315, -0.09067896751241898, -0.0799969408960797, -0.05830172241169848, -0.029443509031926877, 0.001947226385121772, 0.031159674327330144, 0.054074408072778656, 0.06771515004642782, 0.07060984119315501, 0.06292008416246539, 0.04633220955958977, 0.023736856668822536, -0.0012475810549904855, -0.02483277825192081, -0.04361650222140574, -0.05505760697435419, -0.05780562875263666, -0.05184400011432848, -0.03843418261610348, -0.01987701194604477, 0.000866888257962456], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y48", "zmin": null, "yaxis": "y", "legendgroup": "y48", "zmax": null, "line": {"color": "rgba(108, 159, 51, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.00021694266699616769, -0.020520025916277676, -0.038967558916015534, -0.0521730309375773, -0.05785900766276947, -0.05480063837205414, -0.04305993166613821, -0.024035517556369672, -0.0003123523378733905, 0.024674977052713404, 0.04712332320782043, 0.06342106706713174, 0.07070720480428683, 0.06734590797103036, 0.053241651373662324, 0.029939983781014083, 0.00048792085273476955, -0.03093805295208876, -0.0595939790935052, -0.08084815582153988, -0.09088550285539078, -0.08733500824005588, -0.06972438535666871, -0.03968567784606773, -0.0008669172451297127, 0.041455847041530124, 0.08102992044248501, 0.11146564438509889, 0.12715897675548665, 0.12417433933411735, 0.10096386730405656, 0.058814763461859376, 0.0019473727330142222, -0.06277073679229504, -0.1264802663529934, -0.17929156711720928, -0.2114453674933261, -0.21453573579041268, -0.18264429055191253, -0.11323980384273444, -0.007721354015809877, 0.12847653707692527, 0.28624659585899737, 0.453612290553973, 0.6168903306371777, 0.762084690877979, 0.876354018334807, 0.9493827312062388, 0.9744953584044327, 0.9493827312062388, 0.876354018334807, 0.762084690877979, 0.6168903306371777, 0.453612290553973, 0.28624659585899737, 0.12847653707692527, -0.007721354015809877, -0.11323980384273444, -0.18264429055191253, -0.21453573579041268, -0.2114453674933261, -0.17929156711720928, -0.1264802663529934, -0.06277073679229504, 0.0019473727330142222, 0.058814763461859376, 0.10096386730405656, 0.12417433933411735, 0.12715897675548665, 0.11146564438509889, 0.08102992044248501, 0.041455847041530124, -0.0008669172451297127, -0.03968567784606773, -0.06972438535666871, -0.08733500824005588, -0.09088550285539078, -0.08084815582153988, -0.0595939790935052, -0.03093805295208876, 0.00048792085273476955, 0.029939983781014083, 0.053241651373662324, 0.06734590797103036, 0.07070720480428683, 0.06342106706713174, 0.04712332320782043, 0.024674977052713404, -0.0003123523378733905, -0.024035517556369672, -0.04305993166613821, -0.05480063837205414, -0.05785900766276947, -0.0521730309375773, -0.038967558916015534, -0.020520025916277676, 0.00021694266699616769], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y49", "zmin": null, "yaxis": "y", "legendgroup": "y49", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -0.020733943795838993, -0.03914418765900462, -0.05228088690510248, -0.057874524760689224, -0.054712556063479335, -0.042872205531290765, -0.023768179473278847, 0, 0.02498706047190853, 0.04738506927142664, 0.06358486245215166, 0.0707355302630646, 0.06721828316370318, 0.05295978330335918, 0.0295301623758919, 0, -0.031435334142078476, -0.06002108774380708, -0.08112551416309005, -0.09094568176679733, -0.08713481150850413, -0.06925510124285432, -0.03897981433617731, 0, 0.04236936340888838, 0.0818469378324642, 0.1120304719395053, 0.12732395447351627, 0.12382315319629535, 0.10003514623967846, 0.05732325637673133, 0, -0.06496635722696219, -0.1286166165938723, -0.1809723008253547, -0.2122065907891938, -0.21387635552087378, -0.18006326323142124, -0.10827726204493697, 0, 0.13921362262920467, 0.3001054387190354, 0.4705279821459223, 0.6366197723675814, 0.7842133035765372, 0.9003163161571062, 0.9744953584044327, 1, 0.9744953584044327, 0.9003163161571062, 0.7842133035765372, 0.6366197723675814, 0.4705279821459223, 0.3001054387190354, 0.13921362262920467, 0, -0.10827726204493697, -0.18006326323142124, -0.21387635552087378, -0.2122065907891938, -0.1809723008253547, -0.1286166165938723, -0.06496635722696219, 0, 0.05732325637673133, 0.10003514623967846, 0.12382315319629535, 0.12732395447351627, 0.1120304719395053, 0.0818469378324642, 0.04236936340888838, 0, -0.03897981433617731, -0.06925510124285432, -0.08713481150850413, -0.09094568176679733, -0.08112551416309005, -0.06002108774380708, -0.031435334142078476, 0, 0.0295301623758919, 0.05295978330335918, 0.06721828316370318, 0.0707355302630646, 0.06358486245215166, 0.04738506927142664, 0.02498706047190853, 0, -0.023768179473278847, -0.042872205531290765, -0.054712556063479335, -0.057874524760689224, -0.05228088690510248, -0.03914418765900462, -0.020733943795838993, 0], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y50", "zmin": null, "yaxis": "y", "legendgroup": "y50", "zmax": null, "line": {"color": "rgba(227, 111, 71, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.00021694266699616769, -0.020520025916277676, -0.038967558916015534, -0.0521730309375773, -0.05785900766276947, -0.05480063837205414, -0.04305993166613821, -0.024035517556369672, -0.0003123523378733905, 0.024674977052713404, 0.04712332320782043, 0.06342106706713174, 0.07070720480428683, 0.06734590797103036, 0.053241651373662324, 0.029939983781014083, 0.00048792085273476955, -0.03093805295208876, -0.0595939790935052, -0.08084815582153988, -0.09088550285539078, -0.08733500824005588, -0.06972438535666871, -0.03968567784606773, -0.0008669172451297127, 0.041455847041530124, 0.08102992044248501, 0.11146564438509889, 0.12715897675548665, 0.12417433933411735, 0.10096386730405656, 0.058814763461859376, 0.0019473727330142222, -0.06277073679229504, -0.1264802663529934, -0.17929156711720928, -0.2114453674933261, -0.21453573579041268, -0.18264429055191253, -0.11323980384273444, -0.007721354015809877, 0.12847653707692527, 0.28624659585899737, 0.453612290553973, 0.6168903306371777, 0.762084690877979, 0.876354018334807, 0.9493827312062388, 0.9744953584044327, 0.9493827312062388, 0.876354018334807, 0.762084690877979, 0.6168903306371777, 0.453612290553973, 0.28624659585899737, 0.12847653707692527, -0.007721354015809877, -0.11323980384273444, -0.18264429055191253, -0.21453573579041268, -0.2114453674933261, -0.17929156711720928, -0.1264802663529934, -0.06277073679229504, 0.0019473727330142222, 0.058814763461859376, 0.10096386730405656, 0.12417433933411735, 0.12715897675548665, 0.11146564438509889, 0.08102992044248501, 0.041455847041530124, -0.0008669172451297127, -0.03968567784606773, -0.06972438535666871, -0.08733500824005588, -0.09088550285539078, -0.08084815582153988, -0.0595939790935052, -0.03093805295208876, 0.00048792085273476955, 0.029939983781014083, 0.053241651373662324, 0.06734590797103036, 0.07070720480428683, 0.06342106706713174, 0.04712332320782043, 0.024674977052713404, -0.0003123523378733905, -0.024035517556369672, -0.04305993166613821, -0.05480063837205414, -0.05785900766276947, -0.0521730309375773, -0.038967558916015534, -0.020520025916277676, 0.00021694266699616769], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y51", "zmin": null, "yaxis": "y", "legendgroup": "y51", "zmax": null, "line": {"color": "rgba(62, 164, 78, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.000866888257962456, -0.01987701194604477, -0.03843418261610348, -0.05184400011432848, -0.05780562875263666, -0.05505760697435419, -0.04361650222140574, -0.02483277825192081, -0.0012475810549904855, 0.023736856668822536, 0.04633220955958977, 0.06292008416246539, 0.07060984119315501, 0.06771515004642782, 0.054074408072778656, 0.031159674327330144, 0.001947226385121772, -0.029443509031926877, -0.05830172241169848, -0.0799969408960797, -0.09067896751241898, -0.08790551471036315, -0.07110217746809566, -0.04177837921381129, -0.003453627382958198, 0.038712993386835384, 0.0785557589578467, 0.10972478180637592, 0.12659488019303988, 0.1251402627158088, 0.10365274426192721, 0.06319607805439727, 0.007719046480121881, -0.05620829548270173, -0.12002257644951186, -0.1740980863671481, -0.2088772394837565, -0.21606660702952618, -0.18975057476915372, -0.12727931813411253, -0.02981100180351453, 0.09757263308337553, 0.24620752171785285, 0.4046198965764638, 0.5596510513041225, 0.6978101121849585, 0.8067004676006326, 0.876354018334807, 0.9003163161571062, 0.876354018334807, 0.8067004676006326, 0.6978101121849585, 0.5596510513041225, 0.4046198965764638, 0.24620752171785285, 0.09757263308337553, -0.02981100180351453, -0.12727931813411253, -0.18975057476915372, -0.21606660702952618, -0.2088772394837565, -0.1740980863671481, -0.12002257644951186, -0.05620829548270173, 0.007719046480121881, 0.06319607805439727, 0.10365274426192721, 0.1251402627158088, 0.12659488019303988, 0.10972478180637592, 0.0785557589578467, 0.038712993386835384, -0.003453627382958198, -0.04177837921381129, -0.07110217746809566, -0.08790551471036315, -0.09067896751241898, -0.0799969408960797, -0.05830172241169848, -0.029443509031926877, 0.001947226385121772, 0.031159674327330144, 0.054074408072778656, 0.06771515004642782, 0.07060984119315501, 0.06292008416246539, 0.04633220955958977, 0.023736856668822536, -0.0012475810549904855, -0.02483277825192081, -0.04361650222140574, -0.05505760697435419, -0.05780562875263666, -0.05184400011432848, -0.03843418261610348, -0.01987701194604477, 0.000866888257962456], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y52", "zmin": null, "yaxis": "y", "legendgroup": "y52", "zmax": null, "line": {"color": "rgba(195, 113, 210, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.0019469824866320303, -0.01880135894126013, -0.03753382386867845, -0.05127759866399337, -0.057694015501266696, -0.055461619698071306, -0.044521946141915236, -0.026145408407212398, -0.0027997817108104317, 0.022167593022248883, 0.04499462472466556, 0.06205358088274775, 0.07040657640544133, 0.06828516210333851, 0.0554192394536295, 0.03315928197343901, 0.00436356498686016, -0.026944861111601357, -0.05611292821370759, -0.07851579478480496, -0.09024911408346632, -0.08875651898175305, -0.07329785945563662, -0.04518170035546226, -0.007715201506788209, 0.034137934869462254, 0.07436019359323173, 0.1066743541570273, 0.12542954171329684, 0.12646202687351876, 0.10781111157989003, 0.07018417391350773, 0.017093610411863445, -0.04537133651098209, -0.10912806601015447, -0.16498229995422303, -0.20370930239206525, -0.2172059271919349, -0.19957051786185215, -0.14797152473917702, -0.06318762824867372, 0.050260247232070045, 0.18441589483549095, 0.3286107889405816, 0.4705279821459223, 0.5974882245272354, 0.6978101121849585, 0.762084690877979, 0.7842133035765372, 0.762084690877979, 0.6978101121849585, 0.5974882245272354, 0.4705279821459223, 0.3286107889405816, 0.18441589483549095, 0.050260247232070045, -0.06318762824867372, -0.14797152473917702, -0.19957051786185215, -0.2172059271919349, -0.20370930239206525, -0.16498229995422303, -0.10912806601015447, -0.04537133651098209, 0.017093610411863445, 0.07018417391350773, 0.10781111157989003, 0.12646202687351876, 0.12542954171329684, 0.1066743541570273, 0.07436019359323173, 0.034137934869462254, -0.007715201506788209, -0.04518170035546226, -0.07329785945563662, -0.08875651898175305, -0.09024911408346632, -0.07851579478480496, -0.05611292821370759, -0.026944861111601357, 0.00436356498686016, 0.03315928197343901, 0.0554192394536295, 0.06828516210333851, 0.07040657640544133, 0.06205358088274775, 0.04499462472466556, 0.022167593022248883, -0.0027997817108104317, -0.026145408407212398, -0.044521946141915236, -0.055461619698071306, -0.057694015501266696, -0.05127759866399337, -0.03753382386867845, -0.01880135894126013, 0.0019469824866320303], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y53", "zmin": null, "yaxis": "y", "legendgroup": "y53", "zmax": null, "line": {"color": "rgba(172, 142, 24, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.003451784659844099, -0.017287953061458722, -0.0362502121008708, -0.050447486533958925, -0.057490597413702625, -0.05597627019066032, -0.04574251095070121, -0.027948201779063313, -0.004957734516104436, 0.01996034560879418, 0.04308380860776664, 0.06077588090795559, 0.0700370069734079, 0.06898808845801678, 0.05721062202138408, 0.03588686033765934, 0.007709820474616166, -0.023434855005557163, -0.052979942159562435, -0.07631578350383601, -0.08947122957553463, -0.0897399865721011, -0.07615921035235956, -0.049763776809129065, -0.013567782945136511, 0.027739020100814565, 0.06835274705237276, 0.10211042775684408, 0.12334421567515366, 0.12772221064751688, 0.11295987263220698, 0.07929821732974865, 0.02967176829015202, -0.03047255125071308, -0.09369955807552946, -0.15140128937400707, -0.19481174061549258, -0.21609918982720208, -0.20939987758514467, -0.17165959794517877, -0.10316994937368104, -0.007721354015809877, 0.10765880942561641, 0.23336329447878862, 0.358187786013244, 0.4705279821459223, 0.5596510513041225, 0.6168903306371777, 0.6366197723675814, 0.6168903306371777, 0.5596510513041225, 0.4705279821459223, 0.358187786013244, 0.23336329447878862, 0.10765880942561641, -0.007721354015809877, -0.10316994937368104, -0.17165959794517877, -0.20939987758514467, -0.21609918982720208, -0.19481174061549258, -0.15140128937400707, -0.09369955807552946, -0.03047255125071308, 0.02967176829015202, 0.07929821732974865, 0.11295987263220698, 0.12772221064751688, 0.12334421567515366, 0.10211042775684408, 0.06835274705237276, 0.027739020100814565, -0.013567782945136511, -0.049763776809129065, -0.07615921035235956, -0.0897399865721011, -0.08947122957553463, -0.07631578350383601, -0.052979942159562435, -0.023434855005557163, 0.007709820474616166, 0.03588686033765934, 0.05721062202138408, 0.06898808845801678, 0.0700370069734079, 0.06077588090795559, 0.04308380860776664, 0.01996034560879418, -0.004957734516104436, -0.027948201779063313, -0.04574251095070121, -0.05597627019066032, -0.057490597413702625, -0.050447486533958925, -0.0362502121008708, -0.017287953061458722, 0.003451784659844099], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y54", "zmin": null, "yaxis": "y", "legendgroup": "y54", "zmax": null, "line": {"color": "rgba(0, 170, 174, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.005372266208323732, -0.015331286697460962, -0.03456223232753799, -0.04931819101787035, -0.05714923632188933, -0.05655065735540448, -0.047230046389992356, -0.030203956964135078, -0.007702905313111807, 0.01710900613069049, 0.04056597152205359, 0.05902634928653124, 0.06941887418516075, 0.06972959592806349, 0.05935531840278692, 0.03926569882297806, 0.01194157076537377, -0.01891185782611035, -0.048845774019986375, -0.07328202023313929, -0.08817854255140753, -0.09065276956548936, -0.07947152951212336, -0.05533099588483479, -0.020876418883192742, 0.019554233149479044, 0.060440656169643954, 0.09578619857909153, 0.11993137750541569, 0.12836820742270624, 0.11844394128676645, 0.0898531900234096, 0.04484186185117994, -0.011917947268232813, -0.0737805782705446, -0.13286182852129808, -0.1809723008253547, -0.21063604857406426, -0.21606660702952618, -0.19397402774903794, -0.1440946303599098, -0.06936781517202409, 0.024272562863428722, 0.12847653707692527, 0.23336329447878862, 0.3286107889405816, 0.4046198965764638, 0.453612290553973, 0.4705279821459223, 0.453612290553973, 0.4046198965764638, 0.3286107889405816, 0.23336329447878862, 0.12847653707692527, 0.024272562863428722, -0.06936781517202409, -0.1440946303599098, -0.19397402774903794, -0.21606660702952618, -0.21063604857406426, -0.1809723008253547, -0.13286182852129808, -0.0737805782705446, -0.011917947268232813, 0.04484186185117994, 0.0898531900234096, 0.11844394128676645, 0.12836820742270624, 0.11993137750541569, 0.09578619857909153, 0.060440656169643954, 0.019554233149479044, -0.020876418883192742, -0.05533099588483479, -0.07947152951212336, -0.09065276956548936, -0.08817854255140753, -0.07328202023313929, -0.048845774019986375, -0.01891185782611035, 0.01194157076537377, 0.03926569882297806, 0.05935531840278692, 0.06972959592806349, 0.06941887418516075, 0.05902634928653124, 0.04056597152205359, 0.01710900613069049, -0.007702905313111807, -0.030203956964135078, -0.047230046389992356, -0.05655065735540448, -0.05714923632188933, -0.04931819101787035, -0.03456223232753799, -0.015331286697460962, 0.005372266208323732], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y55", "zmin": null, "yaxis": "y", "legendgroup": "y55", "zmax": null, "line": {"color": "rgba(237, 94, 147, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.007694458501656245, -0.012927084182596107, -0.03244560848322273, -0.047846582872775476, -0.05661221371282111, -0.05711962618109622, -0.048921309502863976, -0.03286176877900921, -0.011006791150646839, 0.013611565256248178, 0.037403975055435114, 0.05673284975057918, 0.0684506720218071, 0.07038999382283674, 0.06173145237928255, 0.04319098161399095, 0.016991248272574217, -0.01338790351687593, -0.0436536254098885, -0.06928351001764697, -0.08617082522939275, -0.09124212528894639, -0.08295813167342621, -0.06162167556787999, -0.02944057949570285, 0.00967439124622255, 0.0505602074281885, 0.08744941827251093, 0.1147344419427747, 0.1277484855604861, 0.12345725364773678, 0.10096386730405656, 0.061751235188300314, 0.009618882910387172, -0.04968920817281887, -0.10912806601015447, -0.16119160012302736, -0.19884580035609553, -0.21643700355065953, -0.2104570990429376, -0.18006326323142124, -0.12727931813411253, -0.05684542146520225, 0.024272562863428722, 0.10765880942561641, 0.18441589483549095, 0.24620752171785285, 0.28624659585899737, 0.3001054387190354, 0.28624659585899737, 0.24620752171785285, 0.18441589483549095, 0.10765880942561641, 0.024272562863428722, -0.05684542146520225, -0.12727931813411253, -0.18006326323142124, -0.2104570990429376, -0.21643700355065953, -0.19884580035609553, -0.16119160012302736, -0.10912806601015447, -0.04968920817281887, 0.009618882910387172, 0.061751235188300314, 0.10096386730405656, 0.12345725364773678, 0.1277484855604861, 0.1147344419427747, 0.08744941827251093, 0.0505602074281885, 0.00967439124622255, -0.02944057949570285, -0.06162167556787999, -0.08295813167342621, -0.09124212528894639, -0.08617082522939275, -0.06928351001764697, -0.0436536254098885, -0.01338790351687593, 0.016991248272574217, 0.04319098161399095, 0.06173145237928255, 0.07038999382283674, 0.0684506720218071, 0.05673284975057918, 0.037403975055435114, 0.013611565256248178, -0.011006791150646839, -0.03286176877900921, -0.048921309502863976, -0.05711962618109622, -0.05661221371282111, -0.047846582872775476, -0.03244560848322273, -0.012927084182596107, 0.007694458501656245], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y56", "zmin": null, "yaxis": "y", "legendgroup": "y56", "zmax": null, "line": {"color": "rgba(198, 130, 37, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.010397804581703946, -0.010074346320124224, -0.029875084633517256, -0.04598386580627737, -0.05581166934969179, -0.05760431515473211, -0.05073735510710331, -0.035855125862322736, -0.014827765425508264, 0.009474273505160937, 0.03356204110889651, 0.053816356897235, 0.06701538684882409, 0.07082628231212139, 0.06418811665831267, 0.047526403324657414, 0.022761539499926882, -0.006898290828732119, -0.03735874280383697, -0.06418596062862286, -0.08322634620436055, -0.09121458954930939, -0.0862837098381358, -0.06830155199730398, -0.03897981433617731, -0.0017315258985832118, 0.038712993386835384, 0.07688790726900409, 0.10729890319164657, 0.12516350908341345, 0.1270852736905262, 0.11156838694958249, 0.07929821732974865, 0.03314276244514563, -0.02213364891206292, -0.08041470547532921, -0.1349696066991787, -0.17929156711720928, -0.20792977681405292, -0.2172059271919349, -0.20571956617182804, -0.17457264255108246, -0.12727931813411253, -0.06936781517202409, -0.007721354015809877, 0.050260247232070045, 0.09757263308337553, 0.12847653707692527, 0.13921362262920467, 0.12847653707692527, 0.09757263308337553, 0.050260247232070045, -0.007721354015809877, -0.06936781517202409, -0.12727931813411253, -0.17457264255108246, -0.20571956617182804, -0.2172059271919349, -0.20792977681405292, -0.17929156711720928, -0.1349696066991787, -0.08041470547532921, -0.02213364891206292, 0.03314276244514563, 0.07929821732974865, 0.11156838694958249, 0.1270852736905262, 0.12516350908341345, 0.10729890319164657, 0.07688790726900409, 0.038712993386835384, -0.0017315258985832118, -0.03897981433617731, -0.06830155199730398, -0.0862837098381358, -0.09121458954930939, -0.08322634620436055, -0.06418596062862286, -0.03735874280383697, -0.006898290828732119, 0.022761539499926882, 0.047526403324657414, 0.06418811665831267, 0.07082628231212139, 0.06701538684882409, 0.053816356897235, 0.03356204110889651, 0.009474273505160937, -0.014827765425508264, -0.035855125862322736, -0.05073735510710331, -0.05760431515473211, -0.05581166934969179, -0.04598386580627737, -0.029875084633517256, -0.010074346320124224, 0.010397804581703946], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y57", "zmin": null, "yaxis": "y", "legendgroup": "y57", "zmax": null, "line": {"color": "rgba(0, 169, 141, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.013453291135757724, -0.006777765423001461, -0.026827098138887163, -0.04367812669845153, -0.054671596840365946, -0.05791317112458218, -0.052583215123440726, -0.039100037980666615, -0.019107634495847278, 0.0047164340701690375, 0.029011417275877496, 0.05019677946332084, 0.06498558144151709, 0.07087551011001388, 0.06654605187084454, 0.05210139849521898, 0.0291187299374325, 0.00048792085273476955, -0.02994211931113844, -0.057867404585463175, -0.07911748638021394, -0.09024911408346632, -0.08906216203065932, -0.07496338046692728, -0.04912248699170504, -0.014392296041115405, 0.025003614325888802, 0.0639800988386149, 0.09723295711056688, 0.11993137750541569, 0.1283681108723834, 0.12047880409415705, 0.09615773797943991, 0.05732325637673133, 0.007719046480121881, -0.04752725507334205, -0.10253368755958539, -0.15140128937400707, -0.18896301773824772, -0.2114453674933261, -0.21695429437747638, -0.20571956617182804, -0.18006326323142124, -0.1440946303599098, -0.10316994937368104, -0.06318762824867372, -0.02981100180351453, -0.007721354015809877, 0, -0.007721354015809877, -0.02981100180351453, -0.06318762824867372, -0.10316994937368104, -0.1440946303599098, -0.18006326323142124, -0.20571956617182804, -0.21695429437747638, -0.2114453674933261, -0.18896301773824772, -0.15140128937400707, -0.10253368755958539, -0.04752725507334205, 0.007719046480121881, 0.05732325637673133, 0.09615773797943991, 0.12047880409415705, 0.1283681108723834, 0.11993137750541569, 0.09723295711056688, 0.0639800988386149, 0.025003614325888802, -0.014392296041115405, -0.04912248699170504, -0.07496338046692728, -0.08906216203065932, -0.09024911408346632, -0.07911748638021394, -0.057867404585463175, -0.02994211931113844, 0.00048792085273476955, 0.0291187299374325, 0.05210139849521898, 0.06654605187084454, 0.07087551011001388, 0.06498558144151709, 0.05019677946332084, 0.029011417275877496, 0.0047164340701690375, -0.019107634495847278, -0.039100037980666615, -0.052583215123440726, -0.05791317112458218, -0.054671596840365946, -0.04367812669845153, -0.026827098138887163, -0.006777765423001461, 0.013453291135757724], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y58", "zmin": null, "yaxis": "y", "legendgroup": "y58", "zmax": null, "line": {"color": "rgba(142, 151, 30, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.01682146201112624, -0.0030504377239427534, -0.023282917998618678, -0.04087748122332642, -0.0531105011915593, -0.05794360707372231, -0.05434810170674743, -0.04249346456637444, -0.023768179473278847, -0.0006244046480190265, 0.023736856668822536, 0.045799991341126285, 0.062229998909092525, 0.07035982049581486, 0.06859998001328096, 0.056709742354204826, 0.03588686033765934, 0.008657389947079534, -0.02142530404701613, -0.05023618574433825, -0.07363004307669668, -0.08801513635410305, -0.09087033573293914, -0.08113297508032842, -0.05940078323094247, -0.027915570341068115, 0.00967439124622255, 0.04874612699774812, 0.08427368513437312, 0.11146564438509889, 0.12638409069038745, 0.12646202687351876, 0.11084883714465928, 0.08053585790834274, 0.03824332783592799, -0.011917947268232813, -0.06496635722696219, -0.11568204606697312, -0.15926805543561576, -0.1919516606120709, -0.2114453674933261, -0.2172059271919349, -0.2104570990429376, -0.19397402774903794, -0.17165959794517877, -0.14797152473917702, -0.12727931813411253, -0.11323980384273444, -0.10827726204493697, -0.11323980384273444, -0.12727931813411253, -0.14797152473917702, -0.17165959794517877, -0.19397402774903794, -0.2104570990429376, -0.2172059271919349, -0.2114453674933261, -0.1919516606120709, -0.15926805543561576, -0.11568204606697312, -0.06496635722696219, -0.011917947268232813, 0.03824332783592799, 0.08053585790834274, 0.11084883714465928, 0.12646202687351876, 0.12638409069038745, 0.11146564438509889, 0.08427368513437312, 0.04874612699774812, 0.00967439124622255, -0.027915570341068115, -0.05940078323094247, -0.08113297508032842, -0.09087033573293914, -0.08801513635410305, -0.07363004307669668, -0.05023618574433825, -0.02142530404701613, 0.008657389947079534, 0.03588686033765934, 0.056709742354204826, 0.06859998001328096, 0.07035982049581486, 0.062229998909092525, 0.045799991341126285, 0.023736856668822536, -0.0006244046480190265, -0.023768179473278847, -0.04249346456637444, -0.05434810170674743, -0.05794360707372231, -0.0531105011915593, -0.04087748122332642, -0.023282917998618678, -0.0030504377239427534, 0.01682146201112624], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y59", "zmin": null, "yaxis": "y", "legendgroup": "y59", "zmax": null, "line": {"color": "rgba(0, 169, 204, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.020450442195287553, 0.001083231122454544, -0.01923219082552286, -0.03753382386867845, -0.051044808013775485, -0.05758447818808817, -0.055906388452528745, -0.04591235715727241, -0.02870801983597124, -0.006487170632833471, 0.017743676628374457, 0.04056597152205359, 0.05862177844952994, 0.06909350912525554, 0.07012316566041692, 0.06111033330226716, 0.04284369112727859, 0.017443035399983122, -0.011885271189354125, -0.041250477502671586, -0.06658580427022456, -0.08419578943425635, -0.09126872367241032, -0.0862837098381358, -0.06925510124285432, -0.04177837921381129, -0.0068680615855205, 0.031393629131117665, 0.06835274705237276, 0.09935967585773438, 0.12034937613997415, 0.12834896279272995, 0.12184527361529092, 0.10096386730405656, 0.0674363619373826, 0.024361694712850233, -0.024205207915655492, -0.0737805782705446, -0.12002257644951186, -0.15926805543561576, -0.18896301773824772, -0.20792977681405292, -0.21643700355065953, -0.21606660702952618, -0.20939987758514467, -0.19957051786185215, -0.18975057476915372, -0.18264429055191253, -0.18006326323142124, -0.18264429055191253, -0.18975057476915372, -0.19957051786185215, -0.20939987758514467, -0.21606660702952618, -0.21643700355065953, -0.20792977681405292, -0.18896301773824772, -0.15926805543561576, -0.12002257644951186, -0.0737805782705446, -0.024205207915655492, 0.024361694712850233, 0.0674363619373826, 0.10096386730405656, 0.12184527361529092, 0.12834896279272995, 0.12034937613997415, 0.09935967585773438, 0.06835274705237276, 0.031393629131117665, -0.0068680615855205, -0.04177837921381129, -0.06925510124285432, -0.0862837098381358, -0.09126872367241032, -0.08419578943425635, -0.06658580427022456, -0.041250477502671586, -0.011885271189354125, 0.017443035399983122, 0.04284369112727859, 0.06111033330226716, 0.07012316566041692, 0.06909350912525554, 0.05862177844952994, 0.04056597152205359, 0.017743676628374457, -0.006487170632833471, -0.02870801983597124, -0.04591235715727241, -0.055906388452528745, -0.05758447818808817, -0.051044808013775485, -0.03753382386867845, -0.01923219082552286, 0.001083231122454544, 0.020450442195287553], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y60", "zmin": null, "yaxis": "y", "legendgroup": "y60", "zmax": null, "line": {"color": "rgba(155, 127, 233, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.02427413001985883, 0.0055845682765417, -0.01467679622724445, -0.033607151643790266, -0.04839308154172929, -0.05671953314497683, -0.05711962618109622, -0.04921365683929495, -0.033800193473608776, -0.01278230543892609, 0.011065047478789601, 0.03445782405725266, 0.05404824184683762, 0.06689229989447039, 0.07087469966135411, 0.06503095272323879, 0.04971954596694955, 0.02661691958010542, -0.0014679872505029663, -0.03093805295208876, -0.057867404585463175, -0.07851579478480496, -0.08982943791608139, -0.08986083578529938, -0.07805041383509298, -0.05533099588483479, -0.024039798754518064, 0.012351515641047391, 0.04965369863847285, 0.08346890602582428, 0.10972478180637592, 0.12516350908341345, 0.12772221064751688, 0.11675625942134887, 0.0930787720578656, 0.058814763461859376, 0.017093610411863445, -0.02837490037624331, -0.0737805782705446, -0.11568204606697312, -0.15140128937400707, -0.17929156711720928, -0.19884580035609553, -0.21063604857406426, -0.21609918982720208, -0.2172059271919349, -0.21606660702952618, -0.21453573579041268, -0.21387635552087378, -0.21453573579041268, -0.21606660702952618, -0.2172059271919349, -0.21609918982720208, -0.21063604857406426, -0.19884580035609553, -0.17929156711720928, -0.15140128937400707, -0.11568204606697312, -0.0737805782705446, -0.02837490037624331, 0.017093610411863445, 0.058814763461859376, 0.0930787720578656, 0.11675625942134887, 0.12772221064751688, 0.12516350908341345, 0.10972478180637592, 0.08346890602582428, 0.04965369863847285, 0.012351515641047391, -0.024039798754518064, -0.05533099588483479, -0.07805041383509298, -0.08986083578529938, -0.08982943791608139, -0.07851579478480496, -0.057867404585463175, -0.03093805295208876, -0.0014679872505029663, 0.02661691958010542, 0.04971954596694955, 0.06503095272323879, 0.07087469966135411, 0.06689229989447039, 0.05404824184683762, 0.03445782405725266, 0.011065047478789601, -0.01278230543892609, -0.033800193473608776, -0.04921365683929495, -0.05711962618109622, -0.05671953314497683, -0.04839308154172929, -0.033607151643790266, -0.01467679622724445, 0.0055845682765417, 0.02427413001985883], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y61", "zmin": null, "yaxis": "y", "legendgroup": "y61", "zmax": null, "line": {"color": "rgba(97, 141, 246, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.02821074311733881, 0.010397804581703946, -0.00963486393394146, -0.02907037696294276, -0.04508105740142656, -0.05523195728282429, -0.057839829610288405, -0.0522355964429413, -0.03889089243128978, -0.019387603268548395, 0.003769037731855356, 0.027471290307035087, 0.04842202918439252, 0.06358486245215166, 0.07060984119315501, 0.06817569432179703, 0.05620009257242416, 0.03588686033765934, 0.009600955849587763, -0.01941457519099837, -0.04744383216498181, -0.07077275885017735, -0.08617082522939275, -0.09131593213649357, -0.08510618967193917, -0.06781730438134298, -0.041084986730345295, -0.007715201506788209, 0.028652003881607768, 0.0639800988386149, 0.0943171278902554, 0.11625731080459428, 0.12732395447351627, 0.1262261649136082, 0.11295987263220698, 0.08874542078444292, 0.055816321017738854, 0.017093610411863445, -0.024205207915655492, -0.06496635722696219, -0.10253368755958539, -0.1349696066991787, -0.16119160012302736, -0.1809723008253547, -0.19481174061549258, -0.20370930239206525, -0.2088772394837565, -0.2114453674933261, -0.2122065907891938, -0.2114453674933261, -0.2088772394837565, -0.20370930239206525, -0.19481174061549258, -0.1809723008253547, -0.16119160012302736, -0.1349696066991787, -0.10253368755958539, -0.06496635722696219, -0.024205207915655492, 0.017093610411863445, 0.055816321017738854, 0.08874542078444292, 0.11295987263220698, 0.1262261649136082, 0.12732395447351627, 0.11625731080459428, 0.0943171278902554, 0.0639800988386149, 0.028652003881607768, -0.007715201506788209, -0.041084986730345295, -0.06781730438134298, -0.08510618967193917, -0.09131593213649357, -0.08617082522939275, -0.07077275885017735, -0.04744383216498181, -0.01941457519099837, 0.009600955849587763, 0.03588686033765934, 0.05620009257242416, 0.06817569432179703, 0.07060984119315501, 0.06358486245215166, 0.04842202918439252, 0.027471290307035087, 0.003769037731855356, -0.019387603268548395, -0.03889089243128978, -0.0522355964429413, -0.057839829610288405, -0.05523195728282429, -0.04508105740142656, -0.02907037696294276, -0.00963486393394146, 0.010397804581703946, 0.02821074311733881], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y62", "zmin": null, "yaxis": "y", "legendgroup": "y62", "zmax": null, "line": {"color": "rgba(240, 96, 115, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.0321619272477622, 0.015447595491992866, -0.00414474927275206, -0.02391447862413198, -0.04104742571834398, -0.053010059675862406, -0.057914223509020056, -0.05480063837205414, -0.04379981483193957, -0.026145408407212398, -0.004035181692455175, 0.019644189549118916, 0.04169314253555411, 0.05902634928653124, 0.06909350912525554, 0.07023654641869881, 0.06193398888033367, 0.04489815696022981, 0.021010443372916018, -0.006898290828732119, -0.035394322328442085, -0.06086969918321609, -0.0799969408960797, -0.09015045731267568, -0.0897399865721011, -0.07841335241628748, -0.05710349539479912, -0.027915570341068115, 0.006128967559588576, 0.041455847041530124, 0.07436019359323173, 0.10143210762218653, 0.11993137750541569, 0.1280655746021029, 0.1251402627158088, 0.11156838694958249, 0.08874542078444292, 0.058814763461859376, 0.024361694712850233, -0.011917947268232813, -0.04752725507334205, -0.08041470547532921, -0.10912806601015447, -0.13286182852129808, -0.15140128937400707, -0.16498229995422303, -0.1740980863671481, -0.17929156711720928, -0.1809723008253547, -0.17929156711720928, -0.1740980863671481, -0.16498229995422303, -0.15140128937400707, -0.13286182852129808, -0.10912806601015447, -0.08041470547532921, -0.04752725507334205, -0.011917947268232813, 0.024361694712850233, 0.058814763461859376, 0.08874542078444292, 0.11156838694958249, 0.1251402627158088, 0.1280655746021029, 0.11993137750541569, 0.10143210762218653, 0.07436019359323173, 0.041455847041530124, 0.006128967559588576, -0.027915570341068115, -0.05710349539479912, -0.07841335241628748, -0.0897399865721011, -0.09015045731267568, -0.0799969408960797, -0.06086969918321609, -0.035394322328442085, -0.006898290828732119, 0.021010443372916018, 0.04489815696022981, 0.06193398888033367, 0.07023654641869881, 0.06909350912525554, 0.05902634928653124, 0.04169314253555411, 0.019644189549118916, -0.004035181692455175, -0.026145408407212398, -0.04379981483193957, -0.05480063837205414, -0.057914223509020056, -0.053010059675862406, -0.04104742571834398, -0.02391447862413198, -0.00414474927275206, 0.015447595491992866, 0.0321619272477622], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y63", "zmin": null, "yaxis": "y", "legendgroup": "y63", "zmax": null, "line": {"color": "rgba(221, 101, 182, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.03601265264628425, 0.020637150322859062, 0.0017312945144323656, -0.018153763500061804, -0.0362502121008708, -0.04995406610993753, -0.057191557619154634, -0.05672032502303975, -0.04832258015319124, -0.03286176877900921, -0.012192678126517526, 0.011065047478789601, 0.033861212803747966, 0.05311343251576602, 0.06611668562698729, 0.07090928797611137, 0.06654605187084454, 0.053241651373662324, 0.03236448254360126, 0.006281225588565149, -0.021927852103724617, -0.048845774019986375, -0.07113889402837716, -0.0859658163909405, -0.09132298014121154, -0.0862837098381358, -0.07110217746809566, -0.04717189993207514, -0.01684756863873484, 0.016843465643954603, 0.0505602074281885, 0.08102992044248501, 0.10540421227858363, 0.12154611257274513, 0.12821612148783826, 0.1251402627158088, 0.11295987263220698, 0.0930787720578656, 0.0674363619373826, 0.03824332783592799, 0.007719046480121881, -0.02213364891206292, -0.04968920817281887, -0.0737805782705446, -0.09369955807552946, -0.10912806601015447, -0.12002257644951186, -0.1264802663529934, -0.1286166165938723, -0.1264802663529934, -0.12002257644951186, -0.10912806601015447, -0.09369955807552946, -0.0737805782705446, -0.04968920817281887, -0.02213364891206292, 0.007719046480121881, 0.03824332783592799, 0.0674363619373826, 0.0930787720578656, 0.11295987263220698, 0.1251402627158088, 0.12821612148783826, 0.12154611257274513, 0.10540421227858363, 0.08102992044248501, 0.0505602074281885, 0.016843465643954603, -0.01684756863873484, -0.04717189993207514, -0.07110217746809566, -0.0862837098381358, -0.09132298014121154, -0.0859658163909405, -0.07113889402837716, -0.048845774019986375, -0.021927852103724617, 0.006281225588565149, 0.03236448254360126, 0.053241651373662324, 0.06654605187084454, 0.07090928797611137, 0.06611668562698729, 0.05311343251576602, 0.033861212803747966, 0.011065047478789601, -0.012192678126517526, -0.03286176877900921, -0.04832258015319124, -0.05672032502303975, -0.057191557619154634, -0.04995406610993753, -0.0362502121008708, -0.018153763500061804, 0.0017312945144323656, 0.020637150322859062, 0.03601265264628425], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y64", "zmin": null, "yaxis": "y", "legendgroup": "y64", "zmax": null, "line": {"color": "rgba(108, 159, 51, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.03963212560213236, 0.02584725600873246, 0.007904063612150252, -0.011830930510913693, -0.030673501865746567, -0.04598386580627737, -0.05552998670483286, -0.057802223634045365, -0.0522355964429413, -0.03930814034277919, -0.020500416136265034, 0.001880017630607545, 0.02498706047190853, 0.045799991341126285, 0.061515098519999166, 0.06991342678236025, 0.06965618377580868, 0.06046899227255463, 0.04319098161399095, 0.01968263081360716, -0.007395151467245612, -0.03490152117034324, -0.0595939790935052, -0.07851579478480496, -0.08934364918043657, -0.09065276956548936, -0.08206853029927091, -0.06428897815930346, -0.03897981433617731, -0.008559664271085284, 0.024093198877441203, 0.055972856386526326, 0.08427368513437312, 0.1066743541570273, 0.12154611257274513, 0.1280655746021029, 0.1262261649136082, 0.11675625942134887, 0.10096386730405656, 0.08053585790834274, 0.05732325637673133, 0.03314276244514563, 0.009618882910387172, -0.011917947268232813, -0.03047255125071308, -0.04537133651098209, -0.05620829548270173, -0.06277073679229504, -0.06496635722696219, -0.06277073679229504, -0.05620829548270173, -0.04537133651098209, -0.03047255125071308, -0.011917947268232813, 0.009618882910387172, 0.03314276244514563, 0.05732325637673133, 0.08053585790834274, 0.10096386730405656, 0.11675625942134887, 0.1262261649136082, 0.1280655746021029, 0.12154611257274513, 0.1066743541570273, 0.08427368513437312, 0.055972856386526326, 0.024093198877441203, -0.008559664271085284, -0.03897981433617731, -0.06428897815930346, -0.08206853029927091, -0.09065276956548936, -0.08934364918043657, -0.07851579478480496, -0.0595939790935052, -0.03490152117034324, -0.007395151467245612, 0.01968263081360716, 0.04319098161399095, 0.06046899227255463, 0.06965618377580868, 0.06991342678236025, 0.061515098519999166, 0.045799991341126285, 0.02498706047190853, 0.001880017630607545, -0.020500416136265034, -0.03930814034277919, -0.0522355964429413, -0.057802223634045365, -0.05552998670483286, -0.04598386580627737, -0.030673501865746567, -0.011830930510913693, 0.007904063612150252, 0.02584725600873246, 0.03963212560213236], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y65", "zmin": null, "yaxis": "y", "legendgroup": "y65", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.04287592892913734, 0.030936494557518655, 0.014255332136680298, -0.005021549703949415, -0.024334142827309703, -0.04104742571834398, -0.05280636655509189, -0.05785900766276947, -0.05530365530373093, -0.04522617473918571, -0.02870801983597124, -0.007702905313111807, 0.015202405882377333, 0.03711227165921393, 0.05518911230603298, 0.06701538684882409, 0.07090372337244864, 0.06611541377092878, 0.05295978330335918, 0.032762729660471696, 0.007709820474616166, -0.01941457519099837, -0.045557704635488014, -0.06775585171392955, -0.08347386588733276, -0.09088550285539078, -0.08906216203065932, -0.07805041383509298, -0.058833585688961035, -0.03318754009892684, -0.003453627382958198, 0.027739020100814565, 0.057765239856828854, 0.08427368513437312, 0.10540421227858363, 0.11993137750541569, 0.12732395447351627, 0.12772221064751688, 0.12184527361529092, 0.11084883714465928, 0.09615773797943991, 0.07929821732974865, 0.061751235188300314, 0.04484186185117994, 0.02967176829015202, 0.017093610411863445, 0.007719046480121881, 0.0019473727330142222, 0, 0.0019473727330142222, 0.007719046480121881, 0.017093610411863445, 0.02967176829015202, 0.04484186185117994, 0.061751235188300314, 0.07929821732974865, 0.09615773797943991, 0.11084883714465928, 0.12184527361529092, 0.12772221064751688, 0.12732395447351627, 0.11993137750541569, 0.10540421227858363, 0.08427368513437312, 0.057765239856828854, 0.027739020100814565, -0.003453627382958198, -0.03318754009892684, -0.058833585688961035, -0.07805041383509298, -0.08906216203065932, -0.09088550285539078, -0.08347386588733276, -0.06775585171392955, -0.045557704635488014, -0.01941457519099837, 0.007709820474616166, 0.032762729660471696, 0.05295978330335918, 0.06611541377092878, 0.07090372337244864, 0.06701538684882409, 0.05518911230603298, 0.03711227165921393, 0.015202405882377333, -0.007702905313111807, -0.02870801983597124, -0.04522617473918571, -0.05530365530373093, -0.05785900766276947, -0.05280636655509189, -0.04104742571834398, -0.024334142827309703, -0.005021549703949415, 0.014255332136680298, 0.030936494557518655, 0.04287592892913734], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y66", "zmin": null, "yaxis": "y", "legendgroup": "y66", "zmax": null, "line": {"color": "rgba(227, 111, 71, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.04558956944539949, 0.03574294513132674, 0.020637150322859062, 0.002162498187170594, -0.017287953061458722, -0.03512944010085653, -0.04892664366437289, -0.05671953314497683, -0.057290358424637956, -0.050335988755707724, -0.03652235697984948, -0.017413410827150585, 0.0047164340701690375, 0.027162049922227857, 0.04712332320782043, 0.06205358088274775, 0.06997620892337074, 0.06972959592806349, 0.06111033330226716, 0.04489815696022981, 0.022761539499926882, -0.002941958651092874, -0.029443509031926877, -0.05388286907125833, -0.07363004307669668, -0.08656978293988553, -0.09131620598746587, -0.08733500824005588, -0.07496338046692728, -0.05533099588483479, -0.030197528866358098, -0.0017315258985832118, 0.027739020100814565, 0.055972856386526326, 0.08102992044248501, 0.10143210762218653, 0.11625731080459428, 0.12516350908341345, 0.12834896279272995, 0.12646202687351876, 0.12047880409415705, 0.11156838694958249, 0.10096386730405656, 0.0898531900234096, 0.07929821732974865, 0.07018417391350773, 0.06319607805439727, 0.058814763461859376, 0.05732325637673133, 0.058814763461859376, 0.06319607805439727, 0.07018417391350773, 0.07929821732974865, 0.0898531900234096, 0.10096386730405656, 0.11156838694958249, 0.12047880409415705, 0.12646202687351876, 0.12834896279272995, 0.12516350908341345, 0.11625731080459428, 0.10143210762218653, 0.08102992044248501, 0.055972856386526326, 0.027739020100814565, -0.0017315258985832118, -0.030197528866358098, -0.05533099588483479, -0.07496338046692728, -0.08733500824005588, -0.09131620598746587, -0.08656978293988553, -0.07363004307669668, -0.05388286907125833, -0.029443509031926877, -0.002941958651092874, 0.022761539499926882, 0.04489815696022981, 0.06111033330226716, 0.06972959592806349, 0.06997620892337074, 0.06205358088274775, 0.04712332320782043, 0.027162049922227857, 0.0047164340701690375, -0.017413410827150585, -0.03652235697984948, -0.050335988755707724, -0.057290358424637956, -0.05671953314497683, -0.04892664366437289, -0.03512944010085653, -0.017287953061458722, 0.002162498187170594, 0.020637150322859062, 0.03574294513132674, 0.04558956944539949], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y67", "zmin": null, "yaxis": "y", "legendgroup": "y67", "zmax": null, "line": {"color": "rgba(62, 164, 78, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.04761355000386343, 0.04008762606051746, 0.02687290138972338, 0.009571121963339731, -0.00963486393394146, -0.028259636347245782, -0.04383682542915307, -0.054241547083993175, -0.05797124859337839, -0.05434810170674743, -0.04361650222140574, -0.026923093169523554, -0.0061821296920366335, 0.016156130789798474, 0.037403975055435114, 0.05496344021683955, 0.06664079941000567, 0.07090928797611137, 0.0670883852046823, 0.0554192394536295, 0.03702942351966614, 0.013794273074033596, -0.011885271189354125, -0.03735874280383697, -0.06002108774380708, -0.0775906272066803, -0.08833804594774992, -0.09124212528894639, -0.08605832553797192, -0.07329785945563662, -0.054125994016451684, -0.030197528866358098, -0.003453627382958198, 0.024093198877441203, 0.0505602074281885, 0.07436019359323173, 0.0943171278902554, 0.10972478180637592, 0.12034937613997415, 0.12638409069038745, 0.1283681108723834, 0.1270852736905262, 0.12345725364773678, 0.11844394128676645, 0.11295987263220698, 0.10781111157989003, 0.10365274426192721, 0.10096386730405656, 0.10003514623967846, 0.10096386730405656, 0.10365274426192721, 0.10781111157989003, 0.11295987263220698, 0.11844394128676645, 0.12345725364773678, 0.1270852736905262, 0.1283681108723834, 0.12638409069038745, 0.12034937613997415, 0.10972478180637592, 0.0943171278902554, 0.07436019359323173, 0.0505602074281885, 0.024093198877441203, -0.003453627382958198, -0.030197528866358098, -0.054125994016451684, -0.07329785945563662, -0.08605832553797192, -0.09124212528894639, -0.08833804594774992, -0.0775906272066803, -0.06002108774380708, -0.03735874280383697, -0.011885271189354125, 0.013794273074033596, 0.03702942351966614, 0.0554192394536295, 0.0670883852046823, 0.07090928797611137, 0.06664079941000567, 0.05496344021683955, 0.037403975055435114, 0.016156130789798474, -0.0061821296920366335, -0.026923093169523554, -0.04361650222140574, -0.05434810170674743, -0.05797124859337839, -0.054241547083993175, -0.04383682542915307, -0.028259636347245782, -0.00963486393394146, 0.009571121963339731, 0.02687290138972338, 0.04008762606051746, 0.04761355000386343], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y68", "zmin": null, "yaxis": "y", "legendgroup": "y68", "zmax": null, "line": {"color": "rgba(195, 113, 210, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.04878999598770127, 0.04377986405969505, 0.0327604717491532, 0.017016172701800475, -0.00152235912107342, -0.020520025916277676, -0.03753382386867845, -0.05032541829881054, -0.05714923632188933, -0.056978936315397015, -0.04964337221669045, -0.035855125862322736, -0.017128690011925362, 0.0044004410358833325, 0.026232052236498594, 0.045799991341126285, 0.06077588090795559, 0.06934042498664442, 0.07038999382283674, 0.06365516281997069, 0.04971954596694955, 0.029939983781014083, 0.006281225588565149, -0.01891185782611035, -0.04317496985500962, -0.06418596062862286, -0.0799969408960797, -0.08921201129164351, -0.09109388026307519, -0.0855923873615903, -0.07329785945563662, -0.05533099588483479, -0.03318754009892684, -0.008559664271085284, 0.016843465643954603, 0.041455847041530124, 0.0639800988386149, 0.08346890602582428, 0.09935967585773438, 0.11146564438509889, 0.11993137750541569, 0.12516350908341345, 0.1277484855604861, 0.12836820742270624, 0.12772221064751688, 0.12646202687351876, 0.1251402627158088, 0.12417433933411735, 0.12382315319629535, 0.12417433933411735, 0.1251402627158088, 0.12646202687351876, 0.12772221064751688, 0.12836820742270624, 0.1277484855604861, 0.12516350908341345, 0.11993137750541569, 0.11146564438509889, 0.09935967585773438, 0.08346890602582428, 0.0639800988386149, 0.041455847041530124, 0.016843465643954603, -0.008559664271085284, -0.03318754009892684, -0.05533099588483479, -0.07329785945563662, -0.0855923873615903, -0.09109388026307519, -0.08921201129164351, -0.0799969408960797, -0.06418596062862286, -0.04317496985500962, -0.01891185782611035, 0.006281225588565149, 0.029939983781014083, 0.04971954596694955, 0.06365516281997069, 0.07038999382283674, 0.06934042498664442, 0.06077588090795559, 0.045799991341126285, 0.026232052236498594, 0.0044004410358833325, -0.017128690011925362, -0.035855125862322736, -0.04964337221669045, -0.056978936315397015, -0.05714923632188933, -0.05032541829881054, -0.03753382386867845, -0.020520025916277676, -0.00152235912107342, 0.017016172701800475, 0.0327604717491532, 0.04377986405969505, 0.04878999598770127], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y69", "zmin": null, "yaxis": "y", "legendgroup": "y69", "zmax": null, "line": {"color": "rgba(172, 142, 24, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.048970751720583176, 0.04662467434805535, 0.038077813090238326, 0.02427413001985883, 0.006853457743037402, -0.01205028948070265, -0.03007528872626719, -0.04492802859668448, -0.054671596840365946, -0.05796942058800418, -0.054253958142026215, -0.04379981483193957, -0.027693203193403574, -0.007702905313111807, 0.013929826013452875, 0.03475524623357991, 0.052399782143584296, 0.06483656306820804, 0.07060984119315501, 0.06898808845801678, 0.06003022646602355, 0.04456065007960515, 0.024059934036823695, 0.00048792085273476955, -0.023936908523590678, -0.04697406248754969, -0.06658580427022456, -0.08112551416309005, -0.08947122957553463, -0.09109388026307519, -0.08605832553797192, -0.07496338046692728, -0.058833585688961035, -0.03897981433617731, -0.01684756863873484, 0.006128967559588576, 0.028652003881607768, 0.04965369863847285, 0.06835274705237276, 0.08427368513437312, 0.09723295711056688, 0.10729890319164657, 0.1147344419427747, 0.11993137750541569, 0.12334421567515366, 0.12542954171329684, 0.12659488019303988, 0.12715897675548665, 0.12732395447351627, 0.12715897675548665, 0.12659488019303988, 0.12542954171329684, 0.12334421567515366, 0.11993137750541569, 0.1147344419427747, 0.10729890319164657, 0.09723295711056688, 0.08427368513437312, 0.06835274705237276, 0.04965369863847285, 0.028652003881607768, 0.006128967559588576, -0.01684756863873484, -0.03897981433617731, -0.058833585688961035, -0.07496338046692728, -0.08605832553797192, -0.09109388026307519, -0.08947122957553463, -0.08112551416309005, -0.06658580427022456, -0.04697406248754969, -0.023936908523590678, 0.00048792085273476955, 0.024059934036823695, 0.04456065007960515, 0.06003022646602355, 0.06898808845801678, 0.07060984119315501, 0.06483656306820804, 0.052399782143584296, 0.03475524623357991, 0.013929826013452875, -0.007702905313111807, -0.027693203193403574, -0.04379981483193957, -0.054253958142026215, -0.05796942058800418, -0.054671596840365946, -0.04492802859668448, -0.03007528872626719, -0.01205028948070265, 0.006853457743037402, 0.02427413001985883, 0.038077813090238326, 0.04662467434805535, 0.048970751720583176], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y70", "zmin": null, "yaxis": "y", "legendgroup": "y70", "zmax": null, "line": {"color": "rgba(0, 170, 174, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.04802672406115692, 0.04843209606376969, 0.04259105245152353, 0.03109171747407877, 0.015249806171389482, -0.0030504377239427534, -0.02158740873174328, -0.03807572921458141, -0.050447486533958925, -0.05710582426521185, -0.05711962618109622, -0.050335988755707724, -0.03739793090036873, -0.019666871213569893, 0.0009387864588941174, 0.022167593022248883, 0.04169314253555411, 0.057374725169627945, 0.06748982028909199, 0.07091235022770864, 0.06721828316370318, 0.056709742354204826, 0.04035893453427208, 0.01968263081360716, -0.0034345330681530653, -0.026944861111601357, -0.048845774019986375, -0.06736811143426903, -0.08112551416309005, -0.08921201129164351, -0.09124212528894639, -0.08733500824005588, -0.07805041383509298, -0.06428897815930346, -0.04717189993207514, -0.027915570341068115, -0.007715201506788209, 0.012351515641047391, 0.031393629131117665, 0.04874612699774812, 0.0639800988386149, 0.07688790726900409, 0.08744941827251093, 0.09578619857909153, 0.10211042775684408, 0.1066743541570273, 0.10972478180637592, 0.11146564438509889, 0.1120304719395053, 0.11146564438509889, 0.10972478180637592, 0.1066743541570273, 0.10211042775684408, 0.09578619857909153, 0.08744941827251093, 0.07688790726900409, 0.0639800988386149, 0.04874612699774812, 0.031393629131117665, 0.012351515641047391, -0.007715201506788209, -0.027915570341068115, -0.04717189993207514, -0.06428897815930346, -0.07805041383509298, -0.08733500824005588, -0.09124212528894639, -0.08921201129164351, -0.08112551416309005, -0.06736811143426903, -0.048845774019986375, -0.026944861111601357, -0.0034345330681530653, 0.01968263081360716, 0.04035893453427208, 0.056709742354204826, 0.06721828316370318, 0.07091235022770864, 0.06748982028909199, 0.057374725169627945, 0.04169314253555411, 0.022167593022248883, 0.0009387864588941174, -0.019666871213569893, -0.03739793090036873, -0.050335988755707724, -0.05711962618109622, -0.05710582426521185, -0.050447486533958925, -0.03807572921458141, -0.02158740873174328, -0.0030504377239427534, 0.015249806171389482, 0.03109171747407877, 0.04259105245152353, 0.04843209606376969, 0.04802672406115692], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y71", "zmin": null, "yaxis": "y", "legendgroup": "y71", "zmax": null, "line": {"color": "rgba(237, 94, 147, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.045858095098109314, 0.049028255863867005, 0.046065136943488356, 0.037194697472528085, 0.023382725500691964, 0.006220087412589483, -0.012269588164475924, -0.029875084633517256, -0.04446462634244799, -0.054241547083993175, -0.05795744296335416, -0.05505760697435419, -0.04574251095070121, -0.030939841517149867, -0.012192678126517526, 0.008520601341770602, 0.029011417275877496, 0.04712332320782043, 0.06096293760071619, 0.06909350912525554, 0.07067086655717086, 0.06550937234944648, 0.054074408072778656, 0.037406689332756274, 0.016991248272574217, -0.005410625244593429, -0.027945356141086012, -0.048845774019986375, -0.06658580427022456, -0.0799969408960797, -0.08833804594774992, -0.09131620598746587, -0.08906216203065932, -0.08206853029927091, -0.07110217746809566, -0.05710349539479912, -0.041084986730345295, -0.024039798754518064, -0.0068680615855205, 0.00967439124622255, 0.025003614325888802, 0.038712993386835384, 0.0505602074281885, 0.060440656169643954, 0.06835274705237276, 0.07436019359323173, 0.0785557589578467, 0.08102992044248501, 0.0818469378324642, 0.08102992044248501, 0.0785557589578467, 0.07436019359323173, 0.06835274705237276, 0.060440656169643954, 0.0505602074281885, 0.038712993386835384, 0.025003614325888802, 0.00967439124622255, -0.0068680615855205, -0.024039798754518064, -0.041084986730345295, -0.05710349539479912, -0.07110217746809566, -0.08206853029927091, -0.08906216203065932, -0.09131620598746587, -0.08833804594774992, -0.0799969408960797, -0.06658580427022456, -0.048845774019986375, -0.027945356141086012, -0.005410625244593429, 0.016991248272574217, 0.037406689332756274, 0.054074408072778656, 0.06550937234944648, 0.07067086655717086, 0.06909350912525554, 0.06096293760071619, 0.04712332320782043, 0.029011417275877496, 0.008520601341770602, -0.012192678126517526, -0.030939841517149867, -0.04574251095070121, -0.05505760697435419, -0.05795744296335416, -0.054241547083993175, -0.04446462634244799, -0.029875084633517256, -0.012269588164475924, 0.006220087412589483, 0.023382725500691964, 0.037194697472528085, 0.046065136943488356, 0.049028255863867005, 0.045858095098109314], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y72", "zmin": null, "yaxis": "y", "legendgroup": "y72", "zmax": null, "line": {"color": "rgba(198, 130, 37, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.042404863574605316, 0.04826773694892544, 0.04827678748081466, 0.04229988967195813, 0.030936494557518655, 0.015447595491992866, -0.0023949243781995256, -0.020520025916277676, -0.03680356172899527, -0.04931819101787035, -0.05655695505777426, -0.05760431515473211, -0.0522355964429413, -0.04093503863980408, -0.02483277825192081, -0.005570765122896035, 0.014884346332942059, 0.03445782405725266, 0.05118715444511622, 0.06342106706713174, 0.06997620892337074, 0.07023654641869881, 0.06418811665831267, 0.05238965195590362, 0.03588686033765934, 0.016083912967990648, -0.005410625244593429, -0.026944861111601357, -0.04697406248754969, -0.06418596062862286, -0.0775906272066803, -0.08656978293988553, -0.09088550285539078, -0.09065276956548936, -0.0862837098381358, -0.07841335241628748, -0.06781730438134298, -0.05533099588483479, -0.04177837921381129, -0.027915570341068115, -0.014392296041115405, -0.0017315258985832118, 0.00967439124622255, 0.019554233149479044, 0.027739020100814565, 0.034137934869462254, 0.038712993386835384, 0.041455847041530124, 0.04236936340888838, 0.041455847041530124, 0.038712993386835384, 0.034137934869462254, 0.027739020100814565, 0.019554233149479044, 0.00967439124622255, -0.0017315258985832118, -0.014392296041115405, -0.027915570341068115, -0.04177837921381129, -0.05533099588483479, -0.06781730438134298, -0.07841335241628748, -0.0862837098381358, -0.09065276956548936, -0.09088550285539078, -0.08656978293988553, -0.0775906272066803, -0.06418596062862286, -0.04697406248754969, -0.026944861111601357, -0.005410625244593429, 0.016083912967990648, 0.03588686033765934, 0.05238965195590362, 0.06418811665831267, 0.07023654641869881, 0.06997620892337074, 0.06342106706713174, 0.05118715444511622, 0.03445782405725266, 0.014884346332942059, -0.005570765122896035, -0.02483277825192081, -0.04093503863980408, -0.0522355964429413, -0.05760431515473211, -0.05655695505777426, -0.04931819101787035, -0.03680356172899527, -0.020520025916277676, -0.0023949243781995256, 0.015447595491992866, 0.030936494557518655, 0.04229988967195813, 0.04827678748081466, 0.04826773694892544, 0.042404863574605316], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y73", "zmin": null, "yaxis": "y", "legendgroup": "y73", "zmax": null, "line": {"color": "rgba(0, 169, 141, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.037657019279810675, 0.04604662379463335, 0.049029290715542934, 0.046130194328031594, 0.03757709159092609, 0.02427413001985883, 0.007694458501656245, -0.010294050326122708, -0.02764777669577622, -0.0423839459589055, -0.05280636655509189, -0.057694015501266696, -0.05643149574638259, -0.049068069230192204, -0.036300945656162924, -0.019387603268548395, 0, 0.01996034560879418, 0.038563910748833426, 0.05404824184683762, 0.06498558144151709, 0.07040657640544133, 0.06986971036143766, 0.06347297492002213, 0.051811026530912886, 0.03588686033765934, 0.016991248272574217, -0.0034345330681530653, -0.023936908523590678, -0.04317496985500962, -0.06002108774380708, -0.07363004307669668, -0.08347386588733276, -0.08934364918043657, -0.09132298014121154, -0.0897399865721011, -0.08510618967193917, -0.07805041383509298, -0.06925510124285432, -0.05940078323094247, -0.04912248699170504, -0.03897981433617731, -0.02944057949570285, -0.020876418883192742, -0.013567782945136511, -0.007715201506788209, -0.003453627382958198, -0.0008669172451297127, 0, -0.0008669172451297127, -0.003453627382958198, -0.007715201506788209, -0.013567782945136511, -0.020876418883192742, -0.02944057949570285, -0.03897981433617731, -0.04912248699170504, -0.05940078323094247, -0.06925510124285432, -0.07805041383509298, -0.08510618967193917, -0.0897399865721011, -0.09132298014121154, -0.08934364918043657, -0.08347386588733276, -0.07363004307669668, -0.06002108774380708, -0.04317496985500962, -0.023936908523590678, -0.0034345330681530653, 0.016991248272574217, 0.03588686033765934, 0.051811026530912886, 0.06347297492002213, 0.06986971036143766, 0.07040657640544133, 0.06498558144151709, 0.05404824184683762, 0.038563910748833426, 0.01996034560879418, 0, -0.019387603268548395, -0.036300945656162924, -0.049068069230192204, -0.05643149574638259, -0.057694015501266696, -0.05280636655509189, -0.0423839459589055, -0.02764777669577622, -0.010294050326122708, 0.007694458501656245, 0.02427413001985883, 0.03757709159092609, 0.046130194328031594, 0.049029290715542934, 0.04604662379463335, 0.037657019279810675], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y74", "zmin": null, "yaxis": "y", "legendgroup": "y74", "zmax": null, "line": {"color": "rgba(142, 151, 30, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.031663523015490296, 0.04231539213433679, 0.048168396555550407, 0.04843209606376969, 0.04296948728468357, 0.032312457036751126, 0.017597910510974448, 0.00043374057536189843, -0.017287953061458722, -0.033607151643790266, -0.04671568215206028, -0.05515491605013087, -0.05796942058800418, -0.05480063837205414, -0.04591235715727241, -0.03214801971223707, -0.014827765425508264, 0.0044004410358833325, 0.023736856668822536, 0.04141254335987183, 0.05585848817776385, 0.06584418405210897, 0.07057327401292128, 0.06972959592806349, 0.06347297492002213, 0.05238965195590362, 0.037406689332756274, 0.01968263081360716, 0.00048792085273476955, -0.01891185782611035, -0.03735874280383697, -0.05388286907125833, -0.06775585171392955, -0.07851579478480496, -0.0859658163909405, -0.09015045731267568, -0.09131593213649357, -0.08986083578529938, -0.0862837098381358, -0.08113297508032842, -0.07496338046692728, -0.06830155199730398, -0.06162167556787999, -0.05533099588483479, -0.049763776809129065, -0.04518170035546226, -0.04177837921381129, -0.03968567784606773, -0.03897981433617731, -0.03968567784606773, -0.04177837921381129, -0.04518170035546226, -0.049763776809129065, -0.05533099588483479, -0.06162167556787999, -0.06830155199730398, -0.07496338046692728, -0.08113297508032842, -0.0862837098381358, -0.08986083578529938, -0.09131593213649357, -0.09015045731267568, -0.0859658163909405, -0.07851579478480496, -0.06775585171392955, -0.05388286907125833, -0.03735874280383697, -0.01891185782611035, 0.00048792085273476955, 0.01968263081360716, 0.037406689332756274, 0.05238965195590362, 0.06347297492002213, 0.06972959592806349, 0.07057327401292128, 0.06584418405210897, 0.05585848817776385, 0.04141254335987183, 0.023736856668822536, 0.0044004410358833325, -0.014827765425508264, -0.03214801971223707, -0.04591235715727241, -0.05480063837205414, -0.05796942058800418, -0.05515491605013087, -0.04671568215206028, -0.033607151643790266, -0.017287953061458722, 0.00043374057536189843, 0.017597910510974448, 0.032312457036751126, 0.04296948728468357, 0.04843209606376969, 0.048168396555550407, 0.04231539213433679, 0.031663523015490296], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y75", "zmin": null, "yaxis": "y", "legendgroup": "y75", "zmax": null, "line": {"color": "rgba(0, 169, 204, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.024539175695880124, 0.03709064066850363, 0.04559833245211172, 0.048994794645401615, 0.04679818300676425, 0.039165865236553, 0.02687290138972338, 0.011219659651864305, -0.00611885823064855, -0.023282917998618678, -0.03843418261610348, -0.04995406610993753, -0.05661221371282111, -0.057687453256608165, -0.05302986714747128, -0.04305993166613821, -0.02870801983597124, -0.011304076619915043, 0.007567776669795874, 0.026232052236498594, 0.04308380860776664, 0.05673284975057918, 0.06611668562698729, 0.07057327401292128, 0.06986971036143766, 0.06418811665831267, 0.054074408072778656, 0.04035893453427208, 0.024059934036823695, 0.006281225588565149, -0.011885271189354125, -0.029443509031926877, -0.045557704635488014, -0.0595939790935052, -0.07113889402837716, -0.0799969408960797, -0.08617082522939275, -0.08982943791608139, -0.09126872367241032, -0.09087033573293914, -0.08906216203065932, -0.0862837098381358, -0.08295813167342621, -0.07947152951212336, -0.07615921035235956, -0.07329785945563662, -0.07110217746809566, -0.06972438535666871, -0.06925510124285432, -0.06972438535666871, -0.07110217746809566, -0.07329785945563662, -0.07615921035235956, -0.07947152951212336, -0.08295813167342621, -0.0862837098381358, -0.08906216203065932, -0.09087033573293914, -0.09126872367241032, -0.08982943791608139, -0.08617082522939275, -0.0799969408960797, -0.07113889402837716, -0.0595939790935052, -0.045557704635488014, -0.029443509031926877, -0.011885271189354125, 0.006281225588565149, 0.024059934036823695, 0.04035893453427208, 0.054074408072778656, 0.06418811665831267, 0.06986971036143766, 0.07057327401292128, 0.06611668562698729, 0.05673284975057918, 0.04308380860776664, 0.026232052236498594, 0.007567776669795874, -0.011304076619915043, -0.02870801983597124, -0.04305993166613821, -0.05302986714747128, -0.057687453256608165, -0.05661221371282111, -0.04995406610993753, -0.03843418261610348, -0.023282917998618678, -0.00611885823064855, 0.011219659651864305, 0.02687290138972338, 0.039165865236553, 0.04679818300676425, 0.048994794645401615, 0.04559833245211172, 0.03709064066850363, 0.024539175695880124], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y76", "zmin": null, "yaxis": "y", "legendgroup": "y76", "zmax": null, "line": {"color": "rgba(155, 127, 233, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.016468432833891142, 0.030464539527382976, 0.0412967222832713, 0.04766978588826198, 0.04878999598770127, 0.044452110907271664, 0.03505762467538453, 0.021563933760609683, 0.005372266208323732, -0.011830930510913693, -0.028259636347245782, -0.04221915632873505, -0.05228088690510248, -0.05742245611121293, -0.05711962618109622, -0.05138252152197142, -0.04073539091869543, -0.026145408407212398, -0.00891124103891014, 0.009474273505160937, 0.027471290307035087, 0.04363415771542717, 0.05673284975057918, 0.06584418405210897, 0.07040657640544133, 0.07023654641869881, 0.06550937234944648, 0.056709742354204826, 0.04456065007960515, 0.029939983781014083, 0.013794273074033596, -0.002941958651092874, -0.01941457519099837, -0.03490152117034324, -0.048845774019986375, -0.06086969918321609, -0.07077275885017735, -0.07851579478480496, -0.08419578943425635, -0.08801513635410305, -0.09024911408346632, -0.09121458954930939, -0.09124212528894639, -0.09065276956548936, -0.0897399865721011, -0.08875651898175305, -0.08790551471036315, -0.08733500824005588, -0.08713481150850413, -0.08733500824005588, -0.08790551471036315, -0.08875651898175305, -0.0897399865721011, -0.09065276956548936, -0.09124212528894639, -0.09121458954930939, -0.09024911408346632, -0.08801513635410305, -0.08419578943425635, -0.07851579478480496, -0.07077275885017735, -0.06086969918321609, -0.048845774019986375, -0.03490152117034324, -0.01941457519099837, -0.002941958651092874, 0.013794273074033596, 0.029939983781014083, 0.04456065007960515, 0.056709742354204826, 0.06550937234944648, 0.07023654641869881, 0.07040657640544133, 0.06584418405210897, 0.05673284975057918, 0.04363415771542717, 0.027471290307035087, 0.009474273505160937, -0.00891124103891014, -0.026145408407212398, -0.04073539091869543, -0.05138252152197142, -0.05711962618109622, -0.05742245611121293, -0.05228088690510248, -0.04221915632873505, -0.028259636347245782, -0.011830930510913693, 0.005372266208323732, 0.021563933760609683, 0.03505762467538453, 0.044452110907271664, 0.04878999598770127, 0.04766978588826198, 0.0412967222832713, 0.030464539527382976, 0.016468432833891142], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y77", "zmin": null, "yaxis": "y", "legendgroup": "y77", "zmax": null, "line": {"color": "rgba(97, 141, 246, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.007705272543624346, 0.022610825025533014, 0.035327037476218376, 0.044389432277917196, 0.04873768884958524, 0.047830331881385045, 0.04169879060561669, 0.030936494557518655, 0.016626356821187495, 0.00021694266699616769, -0.016636970578023727, -0.03225043575504232, -0.04508105740142656, -0.0538799077791263, -0.05780562875263666, -0.05649168180961626, -0.05006248663690296, -0.039100037980666615, -0.02456782186324457, -0.007702905313111807, 0.010110423611683293, 0.027471290307035087, 0.04308380860776664, 0.05585848817776385, 0.06498558144151709, 0.06997620892337074, 0.07067086655717086, 0.06721828316370318, 0.06003022646602355, 0.04971954596694955, 0.03702942351966614, 0.022761539499926882, 0.007709820474616166, -0.007395151467245612, -0.021927852103724617, -0.035394322328442085, -0.04744383216498181, -0.057867404585463175, -0.06658580427022456, -0.07363004307669668, -0.07911748638021394, -0.08322634620436055, -0.08617082522939275, -0.08817854255140753, -0.08947122957553463, -0.09024911408346632, -0.09067896751241898, -0.09088550285539078, -0.09094568176679733, -0.09088550285539078, -0.09067896751241898, -0.09024911408346632, -0.08947122957553463, -0.08817854255140753, -0.08617082522939275, -0.08322634620436055, -0.07911748638021394, -0.07363004307669668, -0.06658580427022456, -0.057867404585463175, -0.04744383216498181, -0.035394322328442085, -0.021927852103724617, -0.007395151467245612, 0.007709820474616166, 0.022761539499926882, 0.03702942351966614, 0.04971954596694955, 0.06003022646602355, 0.06721828316370318, 0.07067086655717086, 0.06997620892337074, 0.06498558144151709, 0.05585848817776385, 0.04308380860776664, 0.027471290307035087, 0.010110423611683293, -0.007702905313111807, -0.02456782186324457, -0.039100037980666615, -0.05006248663690296, -0.05649168180961626, -0.05780562875263666, -0.0538799077791263, -0.04508105740142656, -0.03225043575504232, -0.016636970578023727, 0.00021694266699616769, 0.016626356821187495, 0.030936494557518655, 0.04169879060561669, 0.047830331881385045, 0.04873768884958524, 0.044389432277917196, 0.035327037476218376, 0.022610825025533014, 0.007705272543624346], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y78", "zmin": null, "yaxis": "y", "legendgroup": "y78", "zmax": null, "line": {"color": "rgba(240, 96, 115, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.001431630441634243, 0.013786222773882296, 0.027847141666311193, 0.039182857494045126, 0.046522686476480175, 0.049029254407155574, 0.04638321060292966, 0.038809151597143106, 0.027042004306541426, 0.012239893896977237, -0.00414474927275206, -0.020520025916277676, -0.035317511990522577, -0.04714561202979198, -0.05491775508052088, -0.05794360707372231, -0.05597627019066032, -0.04921365683929495, -0.03825722809959497, -0.024035517556369672, -0.007702905313111807, 0.009474273505160937, 0.026232052236498594, 0.04141254335987183, 0.05404824184683762, 0.06342106706713174, 0.06909350912525554, 0.07091235022770864, 0.06898808845801678, 0.06365516281997069, 0.0554192394536295, 0.04489815696022981, 0.032762729660471696, 0.01968263081360716, 0.006281225588565149, -0.006898290828732119, -0.01941457519099837, -0.03093805295208876, -0.041250477502671586, -0.05023618574433825, -0.057867404585463175, -0.06418596062862286, -0.06928351001764697, -0.07328202023313929, -0.07631578350383601, -0.07851579478480496, -0.0799969408960797, -0.08084815582153988, -0.08112551416309005, -0.08084815582153988, -0.0799969408960797, -0.07851579478480496, -0.07631578350383601, -0.07328202023313929, -0.06928351001764697, -0.06418596062862286, -0.057867404585463175, -0.05023618574433825, -0.041250477502671586, -0.03093805295208876, -0.01941457519099837, -0.006898290828732119, 0.006281225588565149, 0.01968263081360716, 0.032762729660471696, 0.04489815696022981, 0.0554192394536295, 0.06365516281997069, 0.06898808845801678, 0.07091235022770864, 0.06909350912525554, 0.06342106706713174, 0.05404824184683762, 0.04141254335987183, 0.026232052236498594, 0.009474273505160937, -0.007702905313111807, -0.024035517556369672, -0.03825722809959497, -0.04921365683929495, -0.05597627019066032, -0.05794360707372231, -0.05491775508052088, -0.04714561202979198, -0.035317511990522577, -0.020520025916277676, -0.00414474927275206, 0.012239893896977237, 0.027042004306541426, 0.038809151597143106, 0.04638321060292966, 0.049029254407155574, 0.046522686476480175, 0.039182857494045126, 0.027847141666311193, 0.013786222773882296, -0.001431630441634243], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y79", "zmin": null, "yaxis": "y", "legendgroup": "y79", "zmax": null, "line": {"color": "rgba(221, 101, 182, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.010568928699422074, 0.004326348446401224, 0.01911254521144837, 0.032187410052808826, 0.042134866483123944, 0.047874580410804536, 0.04877116322922048, 0.04469247054348279, 0.03601265264628425, 0.02356198332998537, 0.008531279966773837, -0.007656711234980534, -0.023493708108486083, -0.03753382386867845, -0.048527693650739875, -0.05552998670483286, -0.05797124859337839, -0.05568946443231503, -0.048921309502863976, -0.03825722809959497, -0.02456782186324457, -0.00891124103891014, 0.007567776669795874, 0.023736856668822536, 0.038563910748833426, 0.05118715444511622, 0.06096293760071619, 0.06748982028909199, 0.07060984119315501, 0.07038999382283674, 0.0670883852046823, 0.06111033330226716, 0.05295978330335918, 0.04319098161399095, 0.03236448254360126, 0.021010443372916018, 0.009600955849587763, -0.0014679872505029663, -0.011885271189354125, -0.02142530404701613, -0.02994211931113844, -0.03735874280383697, -0.0436536254098885, -0.048845774019986375, -0.052979942159562435, -0.05611292821370759, -0.05830172241169848, -0.0595939790935052, -0.06002108774380708, -0.0595939790935052, -0.05830172241169848, -0.05611292821370759, -0.052979942159562435, -0.048845774019986375, -0.0436536254098885, -0.03735874280383697, -0.02994211931113844, -0.02142530404701613, -0.011885271189354125, -0.0014679872505029663, 0.009600955849587763, 0.021010443372916018, 0.03236448254360126, 0.04319098161399095, 0.05295978330335918, 0.06111033330226716, 0.0670883852046823, 0.07038999382283674, 0.07060984119315501, 0.06748982028909199, 0.06096293760071619, 0.05118715444511622, 0.038563910748833426, 0.023736856668822536, 0.007567776669795874, -0.00891124103891014, -0.02456782186324457, -0.03825722809959497, -0.048921309502863976, -0.05568946443231503, -0.05797124859337839, -0.05552998670483286, -0.048527693650739875, -0.03753382386867845, -0.023493708108486083, -0.007656711234980534, 0.008531279966773837, 0.02356198332998537, 0.03601265264628425, 0.04469247054348279, 0.04877116322922048, 0.047874580410804536, 0.042134866483123944, 0.032187410052808826, 0.01911254521144837, 0.004326348446401224, -0.010568928699422074], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y80", "zmin": null, "yaxis": "y", "legendgroup": "y80", "zmax": null, "line": {"color": "rgba(108, 159, 51, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.019293987538109965, -0.005364574400158507, 0.009473182752142746, 0.023654002630535617, 0.03568729784209614, 0.04431312954801783, 0.048629002229383385, 0.0481749363813936, 0.04296948728468357, 0.03349514476667778, 0.020637150322859062, 0.0055845682765417, -0.010294050326122708, -0.025586176755546662, -0.038967558916015534, -0.04931819101787035, -0.05581166934969179, -0.057971193186890924, -0.05568946443231503, -0.04921365683929495, -0.039100037980666615, -0.026145408407212398, -0.011304076619915043, 0.0044004410358833325, 0.01996034560879418, 0.03445782405725266, 0.04712332320782043, 0.057374725169627945, 0.06483656306820804, 0.06934042498664442, 0.07090928797611137, 0.06972959592806349, 0.06611541377092878, 0.06046899227255463, 0.053241651373662324, 0.04489815696022981, 0.03588686033765934, 0.02661691958010542, 0.017443035399983122, 0.008657389947079534, 0.00048792085273476955, -0.006898290828732119, -0.01338790351687593, -0.01891185782611035, -0.023434855005557163, -0.026944861111601357, -0.029443509031926877, -0.03093805295208876, -0.031435334142078476, -0.03093805295208876, -0.029443509031926877, -0.026944861111601357, -0.023434855005557163, -0.01891185782611035, -0.01338790351687593, -0.006898290828732119, 0.00048792085273476955, 0.008657389947079534, 0.017443035399983122, 0.02661691958010542, 0.03588686033765934, 0.04489815696022981, 0.053241651373662324, 0.06046899227255463, 0.06611541377092878, 0.06972959592806349, 0.07090928797611137, 0.06934042498664442, 0.06483656306820804, 0.057374725169627945, 0.04712332320782043, 0.03445782405725266, 0.01996034560879418, 0.0044004410358833325, -0.011304076619915043, -0.026145408407212398, -0.039100037980666615, -0.04921365683929495, -0.05568946443231503, -0.057971193186890924, -0.05581166934969179, -0.04931819101787035, -0.038967558916015534, -0.025586176755546662, -0.010294050326122708, 0.0055845682765417, 0.020637150322859062, 0.03349514476667778, 0.04296948728468357, 0.0481749363813936, 0.048629002229383385, 0.04431312954801783, 0.03568729784209614, 0.023654002630535617, 0.009473182752142746, -0.005364574400158507, -0.019293987538109965], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y81", "zmin": null, "yaxis": "y", "legendgroup": "y81", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.027175371195658795, -0.014830430313707977, -0.0006371247782392889, 0.013944869860128403, 0.027423876669558294, 0.03843117863903444, 0.045858095098109314, 0.04896135001030587, 0.047427087991378736, 0.04138889936988247, 0.031400420505200956, 0.01836787339008987, 0.003451784659844099, -0.01205028948070265, -0.026827098138887163, -0.039670529079745095, -0.049575063814172045, -0.05581166934969179, -0.05797124859337839, -0.05597627019066032, -0.05006248663690296, -0.04073539091869543, -0.02870801983597124, -0.014827765425508264, 0, 0.014884346332942059, 0.029011417275877496, 0.04169314253555411, 0.052399782143584296, 0.06077588090795559, 0.06664079941000567, 0.06997620892337074, 0.07090372337244864, 0.06965618377580868, 0.06654605187084454, 0.06193398888033367, 0.05620009257242416, 0.04971954596694955, 0.04284369112727859, 0.03588686033765934, 0.0291187299374325, 0.022761539499926882, 0.016991248272574217, 0.01194157076537377, 0.007709820474616166, 0.00436356498686016, 0.001947226385121772, 0.00048792085273476955, 0, 0.00048792085273476955, 0.001947226385121772, 0.00436356498686016, 0.007709820474616166, 0.01194157076537377, 0.016991248272574217, 0.022761539499926882, 0.0291187299374325, 0.03588686033765934, 0.04284369112727859, 0.04971954596694955, 0.05620009257242416, 0.06193398888033367, 0.06654605187084454, 0.06965618377580868, 0.07090372337244864, 0.06997620892337074, 0.06664079941000567, 0.06077588090795559, 0.052399782143584296, 0.04169314253555411, 0.029011417275877496, 0.014884346332942059, 0, -0.014827765425508264, -0.02870801983597124, -0.04073539091869543, -0.05006248663690296, -0.05597627019066032, -0.05797124859337839, -0.05581166934969179, -0.049575063814172045, -0.039670529079745095, -0.026827098138887163, -0.01205028948070265, 0.003451784659844099, 0.01836787339008987, 0.031400420505200956, 0.04138889936988247, 0.047427087991378736, 0.04896135001030587, 0.045858095098109314, 0.03843117863903444, 0.027423876669558294, 0.013944869860128403, -0.0006371247782392889, -0.014830430313707977, -0.027175371195658795], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y82", "zmin": null, "yaxis": "y", "legendgroup": "y82", "zmax": null, "line": {"color": "rgba(227, 111, 71, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03378768578473035, -0.023586099996342147, -0.010718867722094379, 0.0035227088628487697, 0.01771809742553514, 0.030464539527382976, 0.0405170354164538, 0.04690697628999974, 0.049028181942451454, 0.04668323364055051, 0.04008762606051746, 0.0298338410564352, 0.01682146201112624, 0.002162498187170594, -0.012927084182596107, -0.027238119104118063, -0.039670529079745095, -0.04931819101787035, -0.05552998670483286, -0.05794360707372231, -0.05649168180961626, -0.05138252152197142, -0.04305993166613821, -0.03214801971223707, -0.019387603268548395, -0.005570765122896035, 0.008520601341770602, 0.022167593022248883, 0.03475524623357991, 0.045799991341126285, 0.05496344021683955, 0.06205358088274775, 0.06701538684882409, 0.06991342678236025, 0.07090928797611137, 0.07023654641869881, 0.06817569432179703, 0.06503095272323879, 0.06111033330226716, 0.056709742354204826, 0.05210139849521898, 0.047526403324657414, 0.04319098161399095, 0.03926569882297806, 0.03588686033765934, 0.03315928197343901, 0.031159674327330144, 0.029939983781014083, 0.0295301623758919, 0.029939983781014083, 0.031159674327330144, 0.03315928197343901, 0.03588686033765934, 0.03926569882297806, 0.04319098161399095, 0.047526403324657414, 0.05210139849521898, 0.056709742354204826, 0.06111033330226716, 0.06503095272323879, 0.06817569432179703, 0.07023654641869881, 0.07090928797611137, 0.06991342678236025, 0.06701538684882409, 0.06205358088274775, 0.05496344021683955, 0.045799991341126285, 0.03475524623357991, 0.022167593022248883, 0.008520601341770602, -0.005570765122896035, -0.019387603268548395, -0.03214801971223707, -0.04305993166613821, -0.05138252152197142, -0.05649168180961626, -0.05794360707372231, -0.05552998670483286, -0.04931819101787035, -0.039670529079745095, -0.027238119104118063, -0.012927084182596107, 0.002162498187170594, 0.01682146201112624, 0.0298338410564352, 0.04008762606051746, 0.04668323364055051, 0.049028181942451454, 0.04690697628999974, 0.0405170354164538, 0.030464539527382976, 0.01771809742553514, 0.0035227088628487697, -0.010718867722094379, -0.023586099996342147, -0.03378768578473035], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y83", "zmin": null, "yaxis": "y", "legendgroup": "y83", "zmax": null, "line": {"color": "rgba(62, 164, 78, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03873952880027733, -0.03114567451828078, -0.020232429911833317, -0.007069234510857113, 0.007061712189233647, 0.020798277520802256, 0.032834211214922644, 0.04204381565564756, 0.04758335092470511, 0.04896024829755483, 0.046065136943488356, 0.039165865236553, 0.028866640071341296, 0.016038701730919914, 0.0017312945144323656, -0.012927084182596107, -0.026827098138887163, -0.038967558916015534, -0.048527693650739875, -0.05491775508052088, -0.05780562875263666, -0.05711962618109622, -0.05302986714747128, -0.04591235715727241, -0.036300945656162924, -0.02483277825192081, -0.012192678126517526, 0.0009387864588941174, 0.013929826013452875, 0.026232052236498594, 0.037403975055435114, 0.04712332320782043, 0.05518911230603298, 0.061515098519999166, 0.06611668562698729, 0.06909350912525554, 0.07060984119315501, 0.07087469966135411, 0.07012316566041692, 0.06859998001328096, 0.06654605187084454, 0.06418811665831267, 0.06173145237928255, 0.05935531840278692, 0.05721062202138408, 0.0554192394536295, 0.054074408072778656, 0.053241651373662324, 0.05295978330335918, 0.053241651373662324, 0.054074408072778656, 0.0554192394536295, 0.05721062202138408, 0.05935531840278692, 0.06173145237928255, 0.06418811665831267, 0.06654605187084454, 0.06859998001328096, 0.07012316566041692, 0.07087469966135411, 0.07060984119315501, 0.06909350912525554, 0.06611668562698729, 0.061515098519999166, 0.05518911230603298, 0.04712332320782043, 0.037403975055435114, 0.026232052236498594, 0.013929826013452875, 0.0009387864588941174, -0.012192678126517526, -0.02483277825192081, -0.036300945656162924, -0.04591235715727241, -0.05302986714747128, -0.05711962618109622, -0.05780562875263666, -0.05491775508052088, -0.048527693650739875, -0.038967558916015534, -0.026827098138887163, -0.012927084182596107, 0.0017312945144323656, 0.016038701730919914, 0.028866640071341296, 0.039165865236553, 0.046065136943488356, 0.04896024829755483, 0.04758335092470511, 0.04204381565564756, 0.032834211214922644, 0.020798277520802256, 0.007061712189233647, -0.007069234510857113, -0.020232429911833317, -0.03114567451828078, -0.03873952880027733], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y84", "zmin": null, "yaxis": "y", "legendgroup": "y84", "zmax": null, "line": {"color": "rgba(195, 113, 210, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.041702812083432156, -0.037054539418786586, -0.028630077109198487, -0.017235823941080572, -0.003957242641285151, 0.00995460514009024, 0.02320826998617824, 0.03459557498187183, 0.04310142057239088, 0.047989667034859795, 0.04885816899945481, 0.04565966611001241, 0.03868891633990796, 0.028539790576024824, 0.016038701730919914, 0.002162498187170594, -0.01205028948070265, -0.025586176755546662, -0.03753382386867845, -0.04714561202979198, -0.0538799077791263, -0.05742245611121293, -0.057687453256608165, -0.05480063837205414, -0.049068069230192204, -0.04093503863980408, -0.030939841517149867, -0.019666871213569893, -0.007702905313111807, 0.0044004410358833325, 0.016156130789798474, 0.027162049922227857, 0.03711227165921393, 0.045799991341126285, 0.05311343251576602, 0.05902634928653124, 0.06358486245215166, 0.06689229989447039, 0.06909350912525554, 0.07035982049581486, 0.07087551011001388, 0.07082628231212139, 0.07038999382283674, 0.06972959592806349, 0.06898808845801678, 0.06828516210333851, 0.06771515004642782, 0.06734590797103036, 0.06721828316370318, 0.06734590797103036, 0.06771515004642782, 0.06828516210333851, 0.06898808845801678, 0.06972959592806349, 0.07038999382283674, 0.07082628231212139, 0.07087551011001388, 0.07035982049581486, 0.06909350912525554, 0.06689229989447039, 0.06358486245215166, 0.05902634928653124, 0.05311343251576602, 0.045799991341126285, 0.03711227165921393, 0.027162049922227857, 0.016156130789798474, 0.0044004410358833325, -0.007702905313111807, -0.019666871213569893, -0.030939841517149867, -0.04093503863980408, -0.049068069230192204, -0.05480063837205414, -0.057687453256608165, -0.05742245611121293, -0.0538799077791263, -0.04714561202979198, -0.03753382386867845, -0.025586176755546662, -0.01205028948070265, 0.002162498187170594, 0.016038701730919914, 0.028539790576024824, 0.03868891633990796, 0.04565966611001241, 0.04885816899945481, 0.047989667034859795, 0.04310142057239088, 0.03459557498187183, 0.02320826998617824, 0.00995460514009024, -0.003957242641285151, -0.017235823941080572, -0.028630077109198487, -0.037054539418786586, -0.041702812083432156], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y85", "zmin": null, "yaxis": "y", "legendgroup": "y85", "zmax": null, "line": {"color": "rgba(172, 142, 24, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.04244131815783876, -0.04092329280348354, -0.03539264198988428, -0.0263662816835029, -0.014686672893891698, -0.001431630441634243, 0.012194803516759327, 0.024978502418535366, 0.035806561097454795, 0.04376321952076582, 0.048202170295002, 0.04878999598770127, 0.04551875419121116, 0.03868891633990796, 0.028866640071341296, 0.01682146201112624, 0.003451784659844099, -0.010294050326122708, -0.023493708108486083, -0.035317511990522577, -0.04508105740142656, -0.05228088690510248, -0.05661221371282111, -0.05796942058800418, -0.05643149574638259, -0.0522355964429413, -0.04574251095070121, -0.03739793090036873, -0.027693203193403574, -0.017128690011925362, -0.0061821296920366335, 0.0047164340701690375, 0.015202405882377333, 0.02498706047190853, 0.033861212803747966, 0.04169314253555411, 0.04842202918439252, 0.05404824184683762, 0.05862177844952994, 0.062229998909092525, 0.06498558144151709, 0.06701538684882409, 0.0684506720218071, 0.06941887418516075, 0.0700370069734079, 0.07040657640544133, 0.07060984119315501, 0.07070720480428683, 0.0707355302630646, 0.07070720480428683, 0.07060984119315501, 0.07040657640544133, 0.0700370069734079, 0.06941887418516075, 0.0684506720218071, 0.06701538684882409, 0.06498558144151709, 0.062229998909092525, 0.05862177844952994, 0.05404824184683762, 0.04842202918439252, 0.04169314253555411, 0.033861212803747966, 0.02498706047190853, 0.015202405882377333, 0.0047164340701690375, -0.0061821296920366335, -0.017128690011925362, -0.027693203193403574, -0.03739793090036873, -0.04574251095070121, -0.0522355964429413, -0.05643149574638259, -0.05796942058800418, -0.05661221371282111, -0.05228088690510248, -0.04508105740142656, -0.035317511990522577, -0.023493708108486083, -0.010294050326122708, 0.003451784659844099, 0.01682146201112624, 0.028866640071341296, 0.03868891633990796, 0.04551875419121116, 0.04878999598770127, 0.048202170295002, 0.04376321952076582, 0.035806561097454795, 0.024978502418535366, 0.012194803516759327, -0.001431630441634243, -0.014686672893891698, -0.0263662816835029, -0.03539264198988428, -0.04092329280348354, -0.04244131815783876], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y86", "zmin": null, "yaxis": "y", "legendgroup": "y86", "zmax": null, "line": {"color": "rgba(0, 170, 174, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.04083607358767439, -0.042460977170579235, -0.0400685073182753, -0.03387600471170934, -0.024451519180285236, -0.012649365505976515, 0.0004786509491550012, 0.013786222773882296, 0.02613889164358011, 0.036513357564663645, 0.04408082504349423, 0.04826773694892544, 0.04878999598770127, 0.04565966611001241, 0.039165865236553, 0.0298338410564352, 0.01836787339008987, 0.0055845682765417, -0.007656711234980534, -0.020520025916277676, -0.03225043575504232, -0.04221915632873505, -0.04995406610993753, -0.05515491605013087, -0.057694015501266696, -0.05760431515473211, -0.05505760697435419, -0.050335988755707724, -0.04379981483193957, -0.035855125862322736, -0.026923093169523554, -0.017413410827150585, -0.007702905313111807, 0.001880017630607545, 0.011065047478789601, 0.019644189549118916, 0.027471290307035087, 0.03445782405725266, 0.04056597152205359, 0.045799991341126285, 0.05019677946332084, 0.053816356897235, 0.05673284975057918, 0.05902634928653124, 0.06077588090795559, 0.06205358088274775, 0.06292008416246539, 0.06342106706713174, 0.06358486245215166, 0.06342106706713174, 0.06292008416246539, 0.06205358088274775, 0.06077588090795559, 0.05902634928653124, 0.05673284975057918, 0.053816356897235, 0.05019677946332084, 0.045799991341126285, 0.04056597152205359, 0.03445782405725266, 0.027471290307035087, 0.019644189549118916, 0.011065047478789601, 0.001880017630607545, -0.007702905313111807, -0.017413410827150585, -0.026923093169523554, -0.035855125862322736, -0.04379981483193957, -0.050335988755707724, -0.05505760697435419, -0.05760431515473211, -0.057694015501266696, -0.05515491605013087, -0.04995406610993753, -0.04221915632873505, -0.03225043575504232, -0.020520025916277676, -0.007656711234980534, 0.0055845682765417, 0.01836787339008987, 0.0298338410564352, 0.039165865236553, 0.04565966611001241, 0.04878999598770127, 0.04826773694892544, 0.04408082504349423, 0.036513357564663645, 0.02613889164358011, 0.013786222773882296, 0.0004786509491550012, -0.012649365505976515, -0.024451519180285236, -0.03387600471170934, -0.0400685073182753, -0.042460977170579235, -0.04083607358767439], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y87", "zmin": null, "yaxis": "y", "legendgroup": "y87", "zmax": null, "line": {"color": "rgba(237, 94, 147, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03690502849914266, -0.04150478158647204, -0.042311921266756425, -0.03925111477774544, -0.03260130122266114, -0.022957945344184216, -0.011167483821793561, 0.0017580172239592287, 0.014736589019986942, 0.026712753398827963, 0.03674556407346923, 0.04408082504349423, 0.048202170295002, 0.04885816899945481, 0.046065136943488356, 0.04008762606051746, 0.031400420505200956, 0.020637150322859062, 0.008531279966773837, -0.00414474927275206, -0.016636970578023727, -0.028259636347245782, -0.03843418261610348, -0.04671568215206028, -0.05280636655509189, -0.05655695505777426, -0.05795744296335416, -0.05711962618109622, -0.054253958142026215, -0.04964337221669045, -0.04361650222140574, -0.03652235697984948, -0.02870801983597124, -0.020500416136265034, -0.012192678126517526, -0.004035181692455175, 0.003769037731855356, 0.011065047478789601, 0.017743676628374457, 0.023736856668822536, 0.029011417275877496, 0.03356204110889651, 0.037403975055435114, 0.04056597152205359, 0.04308380860776664, 0.04499462472466556, 0.04633220955958977, 0.04712332320782043, 0.04738506927142664, 0.04712332320782043, 0.04633220955958977, 0.04499462472466556, 0.04308380860776664, 0.04056597152205359, 0.037403975055435114, 0.03356204110889651, 0.029011417275877496, 0.023736856668822536, 0.017743676628374457, 0.011065047478789601, 0.003769037731855356, -0.004035181692455175, -0.012192678126517526, -0.020500416136265034, -0.02870801983597124, -0.03652235697984948, -0.04361650222140574, -0.04964337221669045, -0.054253958142026215, -0.05711962618109622, -0.05795744296335416, -0.05655695505777426, -0.05280636655509189, -0.04671568215206028, -0.03843418261610348, -0.028259636347245782, -0.016636970578023727, -0.00414474927275206, 0.008531279966773837, 0.020637150322859062, 0.031400420505200956, 0.04008762606051746, 0.046065136943488356, 0.04885816899945481, 0.048202170295002, 0.04408082504349423, 0.03674556407346923, 0.026712753398827963, 0.014736589019986942, 0.0017580172239592287, -0.011167483821793561, -0.022957945344184216, -0.03260130122266114, -0.03925111477774544, -0.042311921266756425, -0.04150478158647204, -0.03690502849914266], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y88", "zmin": null, "yaxis": "y", "legendgroup": "y88", "zmax": null, "line": {"color": "rgba(198, 130, 37, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.030814659542108623, -0.038043269341213194, -0.041917311008633794, -0.04209225488196526, -0.03856075944551718, -0.03164105742946344, -0.02193599117570719, -0.010268460059092235, 0.0023990864415799986, 0.015052530095095969, 0.026712753398827963, 0.036513357564663645, 0.04376321952076582, 0.047989667034859795, 0.04896024829755483, 0.04668323364055051, 0.04138889936988247, 0.03349514476667778, 0.02356198332998537, 0.012239893896977237, 0.00021694266699616769, -0.011830930510913693, -0.023282917998618678, -0.033607151643790266, -0.0423839459589055, -0.04931819101787035, -0.054241547083993175, -0.05710582426521185, -0.05796942058800418, -0.056978936315397015, -0.05434810170674743, -0.050335988755707724, -0.04522617473918571, -0.03930814034277919, -0.03286176877900921, -0.026145408407212398, -0.019387603268548395, -0.01278230543892609, -0.006487170632833471, -0.0006244046480190265, 0.0047164340701690375, 0.009474273505160937, 0.013611565256248178, 0.01710900613069049, 0.01996034560879418, 0.022167593022248883, 0.023736856668822536, 0.024674977052713404, 0.02498706047190853, 0.024674977052713404, 0.023736856668822536, 0.022167593022248883, 0.01996034560879418, 0.01710900613069049, 0.013611565256248178, 0.009474273505160937, 0.0047164340701690375, -0.0006244046480190265, -0.006487170632833471, -0.01278230543892609, -0.019387603268548395, -0.026145408407212398, -0.03286176877900921, -0.03930814034277919, -0.04522617473918571, -0.050335988755707724, -0.05434810170674743, -0.056978936315397015, -0.05796942058800418, -0.05710582426521185, -0.054241547083993175, -0.04931819101787035, -0.0423839459589055, -0.033607151643790266, -0.023282917998618678, -0.011830930510913693, 0.00021694266699616769, 0.012239893896977237, 0.02356198332998537, 0.03349514476667778, 0.04138889936988247, 0.04668323364055051, 0.04896024829755483, 0.047989667034859795, 0.04376321952076582, 0.036513357564663645, 0.026712753398827963, 0.015052530095095969, 0.0023990864415799986, -0.010268460059092235, -0.02193599117570719, -0.03164105742946344, -0.03856075944551718, -0.04209225488196526, -0.041917311008633794, -0.038043269341213194, -0.030814659542108623], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y89", "zmin": null, "yaxis": "y", "legendgroup": "y89", "zmax": null, "line": {"color": "rgba(0, 169, 141, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.022881488599615286, -0.03223035314003258, -0.038846163114352336, -0.04215373868923622, -0.041879499176880296, -0.03806399486581272, -0.031045390212314006, -0.02141738123516561, -0.009967215002439982, 0.0023990864415799986, 0.014736589019986942, 0.02613889164358011, 0.035806561097454795, 0.04310142057239088, 0.04758335092470511, 0.049028181942451454, 0.047427087991378736, 0.04296948728468357, 0.03601265264628425, 0.027042004306541426, 0.016626356821187495, 0.005372266208323732, -0.00611885823064855, -0.017287953061458722, -0.02764777669577622, -0.03680356172899527, -0.04446462634244799, -0.050447486533958925, -0.054671596840365946, -0.05714923632188933, -0.05797124859337839, -0.057290358424637956, -0.05530365530373093, -0.0522355964429413, -0.04832258015319124, -0.04379981483193957, -0.03889089243128978, -0.033800193473608776, -0.02870801983597124, -0.023768179473278847, -0.019107634495847278, -0.014827765425508264, -0.011006791150646839, -0.007702905313111807, -0.004957734516104436, -0.0027997817108104317, -0.0012475810549904855, -0.0003123523378733905, 0, -0.0003123523378733905, -0.0012475810549904855, -0.0027997817108104317, -0.004957734516104436, -0.007702905313111807, -0.011006791150646839, -0.014827765425508264, -0.019107634495847278, -0.023768179473278847, -0.02870801983597124, -0.033800193473608776, -0.03889089243128978, -0.04379981483193957, -0.04832258015319124, -0.0522355964429413, -0.05530365530373093, -0.057290358424637956, -0.05797124859337839, -0.05714923632188933, -0.054671596840365946, -0.050447486533958925, -0.04446462634244799, -0.03680356172899527, -0.02764777669577622, -0.017287953061458722, -0.00611885823064855, 0.005372266208323732, 0.016626356821187495, 0.027042004306541426, 0.03601265264628425, 0.04296948728468357, 0.047427087991378736, 0.049028181942451454, 0.04758335092470511, 0.04310142057239088, 0.035806561097454795, 0.02613889164358011, 0.014736589019986942, 0.0023990864415799986, -0.009967215002439982, -0.02141738123516561, -0.031045390212314006, -0.03806399486581272, -0.041879499176880296, -0.04215373868923622, -0.038846163114352336, -0.03223035314003258, -0.022881488599615286], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y90", "zmin": null, "yaxis": "y", "legendgroup": "y90", "zmax": null, "line": {"color": "rgba(142, 151, 30, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.013562133420842604, -0.024387700766936207, -0.03324326419510057, -0.03937408251080661, -0.042276111494252436, -0.04172945376443669, -0.037804722081310874, -0.030843620652972924, -0.02141738123516561, -0.010268460059092235, 0.0017580172239592287, 0.013786222773882296, 0.024978502418535366, 0.03459557498187183, 0.04204381565564756, 0.04690697628999974, 0.04896135001030587, 0.0481749363813936, 0.04469247054348279, 0.038809151597143106, 0.030936494557518655, 0.021563933760609683, 0.011219659651864305, 0.00043374057536189843, -0.010294050326122708, -0.020520025916277676, -0.029875084633517256, -0.03807572921458141, -0.04492802859668448, -0.05032541829881054, -0.054241547083993175, -0.05671953314497683, -0.05785900766276947, -0.057802223634045365, -0.05672032502303975, -0.05480063837205414, -0.0522355964429413, -0.04921365683929495, -0.04591235715727241, -0.04249346456637444, -0.039100037980666615, -0.035855125862322736, -0.03286176877900921, -0.030203956964135078, -0.027948201779063313, -0.026145408407212398, -0.02483277825192081, -0.024035517556369672, -0.023768179473278847, -0.024035517556369672, -0.02483277825192081, -0.026145408407212398, -0.027948201779063313, -0.030203956964135078, -0.03286176877900921, -0.035855125862322736, -0.039100037980666615, -0.04249346456637444, -0.04591235715727241, -0.04921365683929495, -0.0522355964429413, -0.05480063837205414, -0.05672032502303975, -0.057802223634045365, -0.05785900766276947, -0.05671953314497683, -0.054241547083993175, -0.05032541829881054, -0.04492802859668448, -0.03807572921458141, -0.029875084633517256, -0.020520025916277676, -0.010294050326122708, 0.00043374057536189843, 0.011219659651864305, 0.021563933760609683, 0.030936494557518655, 0.038809151597143106, 0.04469247054348279, 0.0481749363813936, 0.04896135001030587, 0.04690697628999974, 0.04204381565564756, 0.03459557498187183, 0.024978502418535366, 0.013786222773882296, 0.0017580172239592287, -0.010268460059092235, -0.02141738123516561, -0.030843620652972924, -0.037804722081310874, -0.04172945376443669, -0.042276111494252436, -0.03937408251080661, -0.03324326419510057, -0.024387700766936207, -0.013562133420842604], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y91", "zmin": null, "yaxis": "y", "legendgroup": "y91", "zmax": null, "line": {"color": "rgba(0, 169, 204, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.0034313546221492906, -0.014994006772554757, -0.025439667869505817, -0.033894258279227284, -0.039672212892462845, -0.042326632566186004, -0.04167570339032056, -0.037804722081310874, -0.031045390212314006, -0.02193599117570719, -0.011167483821793561, 0.0004786509491550012, 0.012194803516759327, 0.02320826998617824, 0.032834211214922644, 0.0405170354164538, 0.045858095098109314, 0.048629002229383385, 0.04877116322922048, 0.04638321060292966, 0.04169879060561669, 0.03505762467538453, 0.02687290138972338, 0.017597910510974448, 0.007694458501656245, -0.0023949243781995256, -0.012269588164475924, -0.02158740873174328, -0.03007528872626719, -0.03753382386867845, -0.04383682542915307, -0.04892664366437289, -0.05280636655509189, -0.05552998670483286, -0.057191557619154634, -0.057914223509020056, -0.057839829610288405, -0.05711962618109622, -0.055906388452528745, -0.05434810170674743, -0.052583215123440726, -0.05073735510710331, -0.048921309502863976, -0.047230046389992356, -0.04574251095070121, -0.044521946141915236, -0.04361650222140574, -0.04305993166613821, -0.042872205531290765, -0.04305993166613821, -0.04361650222140574, -0.044521946141915236, -0.04574251095070121, -0.047230046389992356, -0.048921309502863976, -0.05073735510710331, -0.052583215123440726, -0.05434810170674743, -0.055906388452528745, -0.05711962618109622, -0.057839829610288405, -0.057914223509020056, -0.057191557619154634, -0.05552998670483286, -0.05280636655509189, -0.04892664366437289, -0.04383682542915307, -0.03753382386867845, -0.03007528872626719, -0.02158740873174328, -0.012269588164475924, -0.0023949243781995256, 0.007694458501656245, 0.017597910510974448, 0.02687290138972338, 0.03505762467538453, 0.04169879060561669, 0.04638321060292966, 0.04877116322922048, 0.048629002229383385, 0.045858095098109314, 0.0405170354164538, 0.032834211214922644, 0.02320826998617824, 0.012194803516759327, 0.0004786509491550012, -0.011167483821793561, -0.02193599117570719, -0.031045390212314006, -0.037804722081310874, -0.04167570339032056, -0.042326632566186004, -0.039672212892462845, -0.033894258279227284, -0.025439667869505817, -0.014994006772554757, -0.0034313546221492906], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y92", "zmin": null, "yaxis": "y", "legendgroup": "y92", "zmax": null, "line": {"color": "rgba(155, 127, 233, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.006851416294724577, -0.004660575821821476, -0.015940665350712795, -0.026060722843086317, -0.03421227260050144, -0.039768448312307546, -0.042326632566186004, -0.04172945376443669, -0.03806399486581272, -0.03164105742946344, -0.022957945344184216, -0.012649365505976515, -0.001431630441634243, 0.00995460514009024, 0.020798277520802256, 0.030464539527382976, 0.03843117863903444, 0.04431312954801783, 0.047874580410804536, 0.049029254407155574, 0.047830331881385045, 0.044452110907271664, 0.039165865236553, 0.032312457036751126, 0.02427413001985883, 0.015447595491992866, 0.006220087412589483, -0.0030504377239427534, -0.01205028948070265, -0.020520025916277676, -0.028259636347245782, -0.03512944010085653, -0.04104742571834398, -0.04598386580627737, -0.04995406610993753, -0.053010059675862406, -0.05523195728282429, -0.05671953314497683, -0.05758447818808817, -0.05794360707372231, -0.05791317112458218, -0.05760431515473211, -0.05711962618109622, -0.05655065735540448, -0.05597627019066032, -0.055461619698071306, -0.05505760697435419, -0.05480063837205414, -0.054712556063479335, -0.05480063837205414, -0.05505760697435419, -0.055461619698071306, -0.05597627019066032, -0.05655065735540448, -0.05711962618109622, -0.05760431515473211, -0.05791317112458218, -0.05794360707372231, -0.05758447818808817, -0.05671953314497683, -0.05523195728282429, -0.053010059675862406, -0.04995406610993753, -0.04598386580627737, -0.04104742571834398, -0.03512944010085653, -0.028259636347245782, -0.020520025916277676, -0.01205028948070265, -0.0030504377239427534, 0.006220087412589483, 0.015447595491992866, 0.02427413001985883, 0.032312457036751126, 0.039165865236553, 0.044452110907271664, 0.047830331881385045, 0.049029254407155574, 0.047874580410804536, 0.04431312954801783, 0.03843117863903444, 0.030464539527382976, 0.020798277520802256, 0.00995460514009024, -0.001431630441634243, -0.012649365505976515, -0.022957945344184216, -0.03164105742946344, -0.03806399486581272, -0.04172945376443669, -0.042326632566186004, -0.039768448312307546, -0.03421227260050144, -0.026060722843086317, -0.015940665350712795, -0.004660575821821476, 0.006851416294724577], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y93", "zmin": null, "yaxis": "y", "legendgroup": "y93", "zmax": null, "line": {"color": "rgba(97, 141, 246, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.01658547024214415, 0.00590613661916961, -0.005398239019399103, -0.01641138412568979, -0.026265997425311285, -0.03421227260050144, -0.039672212892462845, -0.042276111494252436, -0.041879499176880296, -0.03856075944551718, -0.03260130122266114, -0.024451519180285236, -0.014686672893891698, -0.003957242641285151, 0.007061712189233647, 0.01771809742553514, 0.027423876669558294, 0.03568729784209614, 0.042134866483123944, 0.046522686476480175, 0.04873768884958524, 0.04878999598770127, 0.04679818300676425, 0.04296948728468357, 0.03757709159092609, 0.030936494557518655, 0.023382725500691964, 0.015249806171389482, 0.006853457743037402, -0.00152235912107342, -0.00963486393394146, -0.017287953061458722, -0.024334142827309703, -0.030673501865746567, -0.0362502121008708, -0.04104742571834398, -0.04508105740142656, -0.04839308154172929, -0.051044808013775485, -0.0531105011915593, -0.054671596840365946, -0.05581166934969179, -0.05661221371282111, -0.05714923632188933, -0.057490597413702625, -0.057694015501266696, -0.05780562875263666, -0.05785900766276947, -0.057874524760689224, -0.05785900766276947, -0.05780562875263666, -0.057694015501266696, -0.057490597413702625, -0.05714923632188933, -0.05661221371282111, -0.05581166934969179, -0.054671596840365946, -0.0531105011915593, -0.051044808013775485, -0.04839308154172929, -0.04508105740142656, -0.04104742571834398, -0.0362502121008708, -0.030673501865746567, -0.024334142827309703, -0.017287953061458722, -0.00963486393394146, -0.00152235912107342, 0.006853457743037402, 0.015249806171389482, 0.023382725500691964, 0.030936494557518655, 0.03757709159092609, 0.04296948728468357, 0.04679818300676425, 0.04878999598770127, 0.04873768884958524, 0.046522686476480175, 0.042134866483123944, 0.03568729784209614, 0.027423876669558294, 0.01771809742553514, 0.007061712189233647, -0.003957242641285151, -0.014686672893891698, -0.024451519180285236, -0.03260130122266114, -0.03856075944551718, -0.041879499176880296, -0.042276111494252436, -0.039672212892462845, -0.03421227260050144, -0.026265997425311285, -0.01641138412568979, -0.005398239019399103, 0.00590613661916961, 0.01658547024214415], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y94", "zmin": null, "yaxis": "y", "legendgroup": "y94", "zmax": null, "line": {"color": "rgba(240, 96, 115, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.02507943271442966, 0.015953088739132714, 0.005431115411967232, -0.00564409241937702, -0.01641138412568979, -0.026060722843086317, -0.033894258279227284, -0.03937408251080661, -0.04215373868923622, -0.04209225488196526, -0.03925111477774544, -0.03387600471170934, -0.0263662816835029, -0.017235823941080572, -0.007069234510857113, 0.0035227088628487697, 0.013944869860128403, 0.023654002630535617, 0.032187410052808826, 0.039182857494045126, 0.044389432277917196, 0.04766978588826198, 0.048994794645401615, 0.04843209606376969, 0.046130194328031594, 0.04229988967195813, 0.037194697472528085, 0.03109171747407877, 0.02427413001985883, 0.017016172701800475, 0.009571121963339731, 0.002162498187170594, -0.005021549703949415, -0.011830930510913693, -0.018153763500061804, -0.02391447862413198, -0.02907037696294276, -0.033607151643790266, -0.03753382386867845, -0.04087748122332642, -0.04367812669845153, -0.04598386580627737, -0.047846582872775476, -0.04931819101787035, -0.050447486533958925, -0.05127759866399337, -0.05184400011432848, -0.0521730309375773, -0.05228088690510248, -0.0521730309375773, -0.05184400011432848, -0.05127759866399337, -0.050447486533958925, -0.04931819101787035, -0.047846582872775476, -0.04598386580627737, -0.04367812669845153, -0.04087748122332642, -0.03753382386867845, -0.033607151643790266, -0.02907037696294276, -0.02391447862413198, -0.018153763500061804, -0.011830930510913693, -0.005021549703949415, 0.002162498187170594, 0.009571121963339731, 0.017016172701800475, 0.02427413001985883, 0.03109171747407877, 0.037194697472528085, 0.04229988967195813, 0.046130194328031594, 0.04843209606376969, 0.048994794645401615, 0.04766978588826198, 0.044389432277917196, 0.039182857494045126, 0.032187410052808826, 0.023654002630535617, 0.013944869860128403, 0.0035227088628487697, -0.007069234510857113, -0.017235823941080572, -0.0263662816835029, -0.03387600471170934, -0.03925111477774544, -0.04209225488196526, -0.04215373868923622, -0.03937408251080661, -0.033894258279227284, -0.026060722843086317, -0.01641138412568979, -0.00564409241937702, 0.005431115411967232, 0.015953088739132714, 0.02507943271442966], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y95", "zmin": null, "yaxis": "y", "legendgroup": "y95", "zmax": null, "line": {"color": "rgba(221, 101, 182, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.03170541071491634, 0.024737123028501253, 0.015740823424751294, 0.005431115411967232, -0.005398239019399103, -0.015940665350712795, -0.025439667869505817, -0.03324326419510057, -0.038846163114352336, -0.041917311008633794, -0.042311921266756425, -0.0400685073182753, -0.03539264198988428, -0.028630077109198487, -0.020232429911833317, -0.010718867722094379, -0.0006371247782392889, 0.009473182752142746, 0.01911254521144837, 0.027847141666311193, 0.035327037476218376, 0.0412967222832713, 0.04559833245211172, 0.048168396555550407, 0.049029290715542934, 0.04827678748081466, 0.046065136943488356, 0.04259105245152353, 0.038077813090238326, 0.0327604717491532, 0.02687290138972338, 0.020637150322859062, 0.014255332136680298, 0.007904063612150252, 0.0017312945144323656, -0.00414474927275206, -0.00963486393394146, -0.01467679622724445, -0.01923219082552286, -0.023282917998618678, -0.026827098138887163, -0.029875084633517256, -0.03244560848322273, -0.03456223232753799, -0.0362502121008708, -0.03753382386867845, -0.03843418261610348, -0.038967558916015534, -0.03914418765900462, -0.038967558916015534, -0.03843418261610348, -0.03753382386867845, -0.0362502121008708, -0.03456223232753799, -0.03244560848322273, -0.029875084633517256, -0.026827098138887163, -0.023282917998618678, -0.01923219082552286, -0.01467679622724445, -0.00963486393394146, -0.00414474927275206, 0.0017312945144323656, 0.007904063612150252, 0.014255332136680298, 0.020637150322859062, 0.02687290138972338, 0.0327604717491532, 0.038077813090238326, 0.04259105245152353, 0.046065136943488356, 0.04827678748081466, 0.049029290715542934, 0.048168396555550407, 0.04559833245211172, 0.0412967222832713, 0.035327037476218376, 0.027847141666311193, 0.01911254521144837, 0.009473182752142746, -0.0006371247782392889, -0.010718867722094379, -0.020232429911833317, -0.028630077109198487, -0.03539264198988428, -0.0400685073182753, -0.042311921266756425, -0.041917311008633794, -0.038846163114352336, -0.03324326419510057, -0.025439667869505817, -0.015940665350712795, -0.005398239019399103, 0.005431115411967232, 0.015740823424751294, 0.024737123028501253, 0.03170541071491634], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y96", "zmin": null, "yaxis": "y", "legendgroup": "y96", "zmax": null, "line": {"color": "rgba(108, 159, 51, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.03595224959631377, 0.03158504889291611, 0.024737123028501253, 0.015953088739132714, 0.00590613661916961, -0.004660575821821476, -0.014994006772554757, -0.024387700766936207, -0.03223035314003258, -0.038043269341213194, -0.04150478158647204, -0.042460977170579235, -0.04092329280348354, -0.037054539418786586, -0.03114567451828078, -0.023586099996342147, -0.014830430313707977, -0.005364574400158507, 0.004326348446401224, 0.013786222773882296, 0.022610825025533014, 0.030464539527382976, 0.03709064066850363, 0.04231539213433679, 0.04604662379463335, 0.04826773694892544, 0.049028255863867005, 0.04843209606376969, 0.04662467434805535, 0.04377986405969505, 0.04008762606051746, 0.03574294513132674, 0.030936494557518655, 0.02584725600873246, 0.020637150322859062, 0.015447595491992866, 0.010397804581703946, 0.0055845682765417, 0.001083231122454544, -0.0030504377239427534, -0.006777765423001461, -0.010074346320124224, -0.012927084182596107, -0.015331286697460962, -0.017287953061458722, -0.01880135894126013, -0.01987701194604477, -0.020520025916277676, -0.020733943795838993, -0.020520025916277676, -0.01987701194604477, -0.01880135894126013, -0.017287953061458722, -0.015331286697460962, -0.012927084182596107, -0.010074346320124224, -0.006777765423001461, -0.0030504377239427534, 0.001083231122454544, 0.0055845682765417, 0.010397804581703946, 0.015447595491992866, 0.020637150322859062, 0.02584725600873246, 0.030936494557518655, 0.03574294513132674, 0.04008762606051746, 0.04377986405969505, 0.04662467434805535, 0.04843209606376969, 0.049028255863867005, 0.04826773694892544, 0.04604662379463335, 0.04231539213433679, 0.03709064066850363, 0.030464539527382976, 0.022610825025533014, 0.013786222773882296, 0.004326348446401224, -0.005364574400158507, -0.014830430313707977, -0.023586099996342147, -0.03114567451828078, -0.037054539418786586, -0.04092329280348354, -0.042460977170579235, -0.04150478158647204, -0.038043269341213194, -0.03223035314003258, -0.024387700766936207, -0.014994006772554757, -0.004660575821821476, 0.00590613661916961, 0.015953088739132714, 0.024737123028501253, 0.03158504889291611, 0.03595224959631377], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y97", "zmin": null, "yaxis": "y", "legendgroup": "y97", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.03747308294223967, 0.03595224959631377, 0.03170541071491634, 0.02507943271442966, 0.01658547024214415, 0.006851416294724577, -0.0034313546221492906, -0.013562133420842604, -0.022881488599615286, -0.030814659542108623, -0.03690502849914266, -0.04083607358767439, -0.04244131815783876, -0.041702812083432156, -0.03873952880027733, -0.03378768578473035, -0.027175371195658795, -0.019293987538109965, -0.010568928699422074, -0.001431630441634243, 0.007705272543624346, 0.016468432833891142, 0.024539175695880124, 0.031663523015490296, 0.037657019279810675, 0.042404863574605316, 0.045858095098109314, 0.04802672406115692, 0.048970751720583176, 0.04878999598770127, 0.04761355000386343, 0.04558956944539949, 0.04287592892913734, 0.03963212560213236, 0.03601265264628425, 0.0321619272477622, 0.02821074311733881, 0.02427413001985883, 0.020450442195287553, 0.01682146201112624, 0.013453291135757724, 0.010397804581703946, 0.007694458501656245, 0.005372266208323732, 0.003451784659844099, 0.0019469824866320303, 0.000866888257962456, 0.00021694266699616769, 0, 0.00021694266699616769, 0.000866888257962456, 0.0019469824866320303, 0.003451784659844099, 0.005372266208323732, 0.007694458501656245, 0.010397804581703946, 0.013453291135757724, 0.01682146201112624, 0.020450442195287553, 0.02427413001985883, 0.02821074311733881, 0.0321619272477622, 0.03601265264628425, 0.03963212560213236, 0.04287592892913734, 0.04558956944539949, 0.04761355000386343, 0.04878999598770127, 0.048970751720583176, 0.04802672406115692, 0.045858095098109314, 0.042404863574605316, 0.037657019279810675, 0.031663523015490296, 0.024539175695880124, 0.016468432833891142, 0.007705272543624346, -0.001431630441634243, -0.010568928699422074, -0.019293987538109965, -0.027175371195658795, -0.03378768578473035, -0.03873952880027733, -0.041702812083432156, -0.04244131815783876, -0.04083607358767439, -0.03690502849914266, -0.030814659542108623, -0.022881488599615286, -0.013562133420842604, -0.0034313546221492906, 0.006851416294724577, 0.01658547024214415, 0.02507943271442966, 0.03170541071491634, 0.03595224959631377, 0.03747308294223967], "type": "scatter", "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], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 97, "currentCount": 97}}}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-1.8800000000000026, 99.88], "domain": [0.05100612423447069, 0.9934383202099737], "mirror": false, "tickangle": 0, "showline": true, "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, "range": [-0.253722105007693, 1.036516177815758], "domain": [0.03762029746281716, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "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": 516.984375}}
{"id": "91df4089-8fd6-451c-b330-473260c07e7a", "data": [{"showlegend": false, "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "colorscale": [[0, "rgba(0, 0, 4, 1.000)"], [0.00392156862745098, "rgba(1, 0, 5, 1.000)"], [0.00784313725490196, "rgba(1, 1, 6, 1.000)"], [0.011764705882352941, "rgba(1, 1, 8, 1.000)"], [0.01568627450980392, "rgba(2, 1, 10, 1.000)"], [0.0196078431372549, "rgba(2, 2, 12, 1.000)"], [0.023529411764705882, "rgba(2, 2, 14, 1.000)"], [0.027450980392156862, "rgba(3, 2, 16, 1.000)"], [0.03137254901960784, "rgba(4, 3, 18, 1.000)"], [0.03529411764705882, "rgba(4, 3, 20, 1.000)"], [0.0392156862745098, "rgba(5, 4, 23, 1.000)"], [0.043137254901960784, "rgba(6, 4, 25, 1.000)"], [0.047058823529411764, "rgba(7, 5, 27, 1.000)"], [0.050980392156862744, "rgba(8, 5, 29, 1.000)"], [0.054901960784313725, "rgba(9, 6, 31, 1.000)"], [0.058823529411764705, "rgba(10, 7, 34, 1.000)"], [0.06274509803921569, "rgba(11, 7, 36, 1.000)"], [0.06666666666666667, "rgba(12, 8, 38, 1.000)"], [0.07058823529411765, "rgba(13, 8, 41, 1.000)"], [0.07450980392156863, "rgba(14, 9, 43, 1.000)"], [0.0784313725490196, "rgba(16, 9, 45, 1.000)"], [0.08235294117647059, "rgba(17, 10, 48, 1.000)"], [0.08627450980392157, "rgba(18, 10, 50, 1.000)"], [0.09019607843137255, "rgba(20, 11, 52, 1.000)"], [0.09411764705882353, "rgba(21, 11, 55, 1.000)"], [0.09803921568627451, "rgba(22, 11, 57, 1.000)"], [0.10196078431372549, "rgba(24, 12, 60, 1.000)"], [0.10588235294117647, "rgba(25, 12, 62, 1.000)"], [0.10980392156862745, "rgba(27, 12, 65, 1.000)"], [0.11372549019607843, "rgba(28, 12, 67, 1.000)"], [0.11764705882352941, "rgba(30, 12, 69, 1.000)"], [0.12156862745098039, "rgba(31, 12, 72, 1.000)"], [0.12549019607843137, "rgba(33, 12, 74, 1.000)"], [0.12941176470588237, "rgba(35, 12, 76, 1.000)"], [0.13333333333333333, "rgba(36, 12, 79, 1.000)"], [0.13725490196078433, "rgba(38, 12, 81, 1.000)"], [0.1411764705882353, "rgba(40, 11, 83, 1.000)"], [0.1450980392156863, "rgba(41, 11, 85, 1.000)"], [0.14901960784313725, "rgba(43, 11, 87, 1.000)"], [0.15294117647058825, "rgba(45, 11, 89, 1.000)"], [0.1568627450980392, "rgba(47, 10, 91, 1.000)"], [0.1607843137254902, "rgba(49, 10, 92, 1.000)"], [0.16470588235294117, "rgba(50, 10, 94, 1.000)"], [0.16862745098039217, "rgba(52, 10, 95, 1.000)"], [0.17254901960784313, "rgba(54, 9, 97, 1.000)"], [0.17647058823529413, "rgba(56, 9, 98, 1.000)"], [0.1803921568627451, "rgba(57, 9, 99, 1.000)"], [0.1843137254901961, "rgba(59, 9, 100, 1.000)"], [0.18823529411764706, "rgba(61, 9, 101, 1.000)"], [0.19215686274509805, "rgba(62, 9, 102, 1.000)"], [0.19607843137254902, "rgba(64, 10, 103, 1.000)"], [0.2, "rgba(66, 10, 104, 1.000)"], [0.20392156862745098, "rgba(68, 10, 104, 1.000)"], [0.20784313725490197, "rgba(69, 10, 105, 1.000)"], [0.21176470588235294, "rgba(71, 11, 106, 1.000)"], [0.21568627450980393, "rgba(73, 11, 106, 1.000)"], [0.2196078431372549, "rgba(74, 12, 107, 1.000)"], [0.2235294117647059, "rgba(76, 12, 107, 1.000)"], [0.22745098039215686, "rgba(77, 13, 108, 1.000)"], [0.23137254901960785, "rgba(79, 13, 108, 1.000)"], [0.23529411764705882, "rgba(81, 14, 108, 1.000)"], [0.23921568627450981, "rgba(82, 14, 109, 1.000)"], [0.24313725490196078, "rgba(84, 15, 109, 1.000)"], [0.24705882352941178, "rgba(85, 15, 109, 1.000)"], [0.25098039215686274, "rgba(87, 16, 110, 1.000)"], [0.2549019607843137, "rgba(89, 16, 110, 1.000)"], [0.25882352941176473, "rgba(90, 17, 110, 1.000)"], [0.2627450980392157, "rgba(92, 18, 110, 1.000)"], [0.26666666666666666, "rgba(93, 18, 110, 1.000)"], [0.27058823529411763, "rgba(95, 19, 110, 1.000)"], [0.27450980392156865, "rgba(97, 19, 110, 1.000)"], [0.2784313725490196, "rgba(98, 20, 110, 1.000)"], [0.2823529411764706, "rgba(100, 21, 110, 1.000)"], [0.28627450980392155, "rgba(101, 21, 110, 1.000)"], [0.2901960784313726, "rgba(103, 22, 110, 1.000)"], [0.29411764705882354, "rgba(105, 22, 110, 1.000)"], [0.2980392156862745, "rgba(106, 23, 110, 1.000)"], [0.30196078431372547, "rgba(108, 24, 110, 1.000)"], [0.3058823529411765, "rgba(109, 24, 110, 1.000)"], [0.30980392156862746, "rgba(111, 25, 110, 1.000)"], [0.3137254901960784, "rgba(113, 25, 110, 1.000)"], [0.3176470588235294, "rgba(114, 26, 110, 1.000)"], [0.3215686274509804, "rgba(116, 26, 110, 1.000)"], [0.3254901960784314, "rgba(117, 27, 110, 1.000)"], [0.32941176470588235, "rgba(119, 28, 109, 1.000)"], [0.3333333333333333, "rgba(120, 28, 109, 1.000)"], [0.33725490196078434, "rgba(122, 29, 109, 1.000)"], [0.3411764705882353, "rgba(124, 29, 109, 1.000)"], [0.34509803921568627, "rgba(125, 30, 109, 1.000)"], [0.34901960784313724, "rgba(127, 30, 108, 1.000)"], [0.35294117647058826, "rgba(128, 31, 108, 1.000)"], [0.3568627450980392, "rgba(130, 32, 108, 1.000)"], [0.3607843137254902, "rgba(132, 32, 107, 1.000)"], [0.36470588235294116, "rgba(133, 33, 107, 1.000)"], [0.3686274509803922, "rgba(135, 33, 107, 1.000)"], [0.37254901960784315, "rgba(136, 34, 106, 1.000)"], [0.3764705882352941, "rgba(138, 34, 106, 1.000)"], [0.3803921568627451, "rgba(140, 35, 105, 1.000)"], [0.3843137254901961, "rgba(141, 35, 105, 1.000)"], [0.38823529411764707, "rgba(143, 36, 105, 1.000)"], [0.39215686274509803, "rgba(144, 37, 104, 1.000)"], [0.396078431372549, "rgba(146, 37, 104, 1.000)"], [0.4, "rgba(147, 38, 103, 1.000)"], [0.403921568627451, "rgba(149, 38, 103, 1.000)"], [0.40784313725490196, "rgba(151, 39, 102, 1.000)"], [0.4117647058823529, "rgba(152, 39, 102, 1.000)"], [0.41568627450980394, "rgba(154, 40, 101, 1.000)"], [0.4196078431372549, "rgba(155, 41, 100, 1.000)"], [0.4235294117647059, "rgba(157, 41, 100, 1.000)"], [0.42745098039215684, "rgba(159, 42, 99, 1.000)"], [0.43137254901960786, "rgba(160, 42, 99, 1.000)"], [0.43529411764705883, "rgba(162, 43, 98, 1.000)"], [0.4392156862745098, "rgba(163, 44, 97, 1.000)"], [0.44313725490196076, "rgba(165, 44, 96, 1.000)"], [0.4470588235294118, "rgba(166, 45, 96, 1.000)"], [0.45098039215686275, "rgba(168, 46, 95, 1.000)"], [0.4549019607843137, "rgba(169, 46, 94, 1.000)"], [0.4588235294117647, "rgba(171, 47, 94, 1.000)"], [0.4627450980392157, "rgba(173, 48, 93, 1.000)"], [0.4666666666666667, "rgba(174, 48, 92, 1.000)"], [0.47058823529411764, "rgba(176, 49, 91, 1.000)"], [0.4745098039215686, "rgba(177, 50, 90, 1.000)"], [0.47843137254901963, "rgba(179, 50, 90, 1.000)"], [0.4823529411764706, "rgba(180, 51, 89, 1.000)"], [0.48627450980392156, "rgba(182, 52, 88, 1.000)"], [0.49019607843137253, "rgba(183, 53, 87, 1.000)"], [0.49411764705882355, "rgba(185, 53, 86, 1.000)"], [0.4980392156862745, "rgba(186, 54, 85, 1.000)"], [0.5019607843137255, "rgba(188, 55, 84, 1.000)"], [0.5058823529411764, "rgba(189, 56, 83, 1.000)"], [0.5098039215686274, "rgba(191, 57, 82, 1.000)"], [0.5137254901960784, "rgba(192, 58, 81, 1.000)"], [0.5176470588235295, "rgba(193, 58, 80, 1.000)"], [0.5215686274509804, "rgba(195, 59, 79, 1.000)"], [0.5254901960784314, "rgba(196, 60, 78, 1.000)"], [0.5294117647058824, "rgba(198, 61, 77, 1.000)"], [0.5333333333333333, "rgba(199, 62, 76, 1.000)"], [0.5372549019607843, "rgba(200, 63, 75, 1.000)"], [0.5411764705882353, "rgba(202, 64, 74, 1.000)"], [0.5450980392156862, "rgba(203, 65, 73, 1.000)"], [0.5490196078431373, "rgba(204, 66, 72, 1.000)"], [0.5529411764705883, "rgba(206, 67, 71, 1.000)"], [0.5568627450980392, "rgba(207, 68, 70, 1.000)"], [0.5607843137254902, "rgba(208, 69, 69, 1.000)"], [0.5647058823529412, "rgba(210, 70, 68, 1.000)"], [0.5686274509803921, "rgba(211, 71, 67, 1.000)"], [0.5725490196078431, "rgba(212, 72, 66, 1.000)"], [0.5764705882352941, "rgba(213, 74, 65, 1.000)"], [0.5803921568627451, "rgba(215, 75, 63, 1.000)"], [0.5843137254901961, "rgba(216, 76, 62, 1.000)"], [0.5882352941176471, "rgba(217, 77, 61, 1.000)"], [0.592156862745098, "rgba(218, 78, 60, 1.000)"], [0.596078431372549, "rgba(219, 80, 59, 1.000)"], [0.6, "rgba(221, 81, 58, 1.000)"], [0.6039215686274509, "rgba(222, 82, 56, 1.000)"], [0.6078431372549019, "rgba(223, 83, 55, 1.000)"], [0.611764705882353, "rgba(224, 85, 54, 1.000)"], [0.615686274509804, "rgba(225, 86, 53, 1.000)"], [0.6196078431372549, "rgba(226, 87, 52, 1.000)"], [0.6235294117647059, "rgba(227, 89, 51, 1.000)"], [0.6274509803921569, "rgba(228, 90, 49, 1.000)"], [0.6313725490196078, "rgba(229, 92, 48, 1.000)"], [0.6352941176470588, "rgba(230, 93, 47, 1.000)"], [0.6392156862745098, "rgba(231, 94, 46, 1.000)"], [0.6431372549019608, "rgba(232, 96, 45, 1.000)"], [0.6470588235294118, "rgba(233, 97, 43, 1.000)"], [0.6509803921568628, "rgba(234, 99, 42, 1.000)"], [0.6549019607843137, "rgba(235, 100, 41, 1.000)"], [0.6588235294117647, "rgba(235, 102, 40, 1.000)"], [0.6627450980392157, "rgba(236, 103, 38, 1.000)"], [0.6666666666666666, "rgba(237, 105, 37, 1.000)"], [0.6705882352941176, "rgba(238, 106, 36, 1.000)"], [0.6745098039215687, "rgba(239, 108, 35, 1.000)"], [0.6784313725490196, "rgba(239, 110, 33, 1.000)"], [0.6823529411764706, "rgba(240, 111, 32, 1.000)"], [0.6862745098039216, "rgba(241, 113, 31, 1.000)"], [0.6901960784313725, "rgba(241, 115, 29, 1.000)"], [0.6941176470588235, "rgba(242, 116, 28, 1.000)"], [0.6980392156862745, "rgba(243, 118, 27, 1.000)"], [0.7019607843137254, "rgba(243, 120, 25, 1.000)"], [0.7058823529411765, "rgba(244, 121, 24, 1.000)"], [0.7098039215686275, "rgba(245, 123, 23, 1.000)"], [0.7137254901960784, "rgba(245, 125, 21, 1.000)"], [0.7176470588235294, "rgba(246, 126, 20, 1.000)"], [0.7215686274509804, "rgba(246, 128, 19, 1.000)"], [0.7254901960784313, "rgba(247, 130, 18, 1.000)"], [0.7294117647058823, "rgba(247, 132, 16, 1.000)"], [0.7333333333333333, "rgba(248, 133, 15, 1.000)"], [0.7372549019607844, "rgba(248, 135, 14, 1.000)"], [0.7411764705882353, "rgba(248, 137, 12, 1.000)"], [0.7450980392156863, "rgba(249, 139, 11, 1.000)"], [0.7490196078431373, "rgba(249, 140, 10, 1.000)"], [0.7529411764705882, "rgba(249, 142, 9, 1.000)"], [0.7568627450980392, "rgba(250, 144, 8, 1.000)"], [0.7607843137254902, "rgba(250, 146, 7, 1.000)"], [0.7647058823529411, "rgba(250, 148, 7, 1.000)"], [0.7686274509803922, "rgba(251, 150, 6, 1.000)"], [0.7725490196078432, "rgba(251, 151, 6, 1.000)"], [0.7764705882352941, "rgba(251, 153, 6, 1.000)"], [0.7803921568627451, "rgba(251, 155, 6, 1.000)"], [0.7843137254901961, "rgba(251, 157, 7, 1.000)"], [0.788235294117647, "rgba(252, 159, 7, 1.000)"], [0.792156862745098, "rgba(252, 161, 8, 1.000)"], [0.796078431372549, "rgba(252, 163, 9, 1.000)"], [0.8, "rgba(252, 165, 10, 1.000)"], [0.803921568627451, "rgba(252, 166, 12, 1.000)"], [0.807843137254902, "rgba(252, 168, 13, 1.000)"], [0.8117647058823529, "rgba(252, 170, 15, 1.000)"], [0.8156862745098039, "rgba(252, 172, 17, 1.000)"], [0.8196078431372549, "rgba(252, 174, 18, 1.000)"], [0.8235294117647058, "rgba(252, 176, 20, 1.000)"], [0.8274509803921568, "rgba(252, 178, 22, 1.000)"], [0.8313725490196079, "rgba(252, 180, 24, 1.000)"], [0.8352941176470589, "rgba(251, 182, 26, 1.000)"], [0.8392156862745098, "rgba(251, 184, 29, 1.000)"], [0.8431372549019608, "rgba(251, 186, 31, 1.000)"], [0.8470588235294118, "rgba(251, 188, 33, 1.000)"], [0.8509803921568627, "rgba(251, 190, 35, 1.000)"], [0.8549019607843137, "rgba(250, 192, 38, 1.000)"], [0.8588235294117647, "rgba(250, 194, 40, 1.000)"], [0.8627450980392157, "rgba(250, 196, 42, 1.000)"], [0.8666666666666667, "rgba(250, 198, 45, 1.000)"], [0.8705882352941177, "rgba(249, 199, 47, 1.000)"], [0.8745098039215686, "rgba(249, 201, 50, 1.000)"], [0.8784313725490196, "rgba(249, 203, 53, 1.000)"], [0.8823529411764706, "rgba(248, 205, 55, 1.000)"], [0.8862745098039215, "rgba(248, 207, 58, 1.000)"], [0.8901960784313725, "rgba(247, 209, 61, 1.000)"], [0.8941176470588236, "rgba(247, 211, 64, 1.000)"], [0.8980392156862745, "rgba(246, 213, 67, 1.000)"], [0.9019607843137255, "rgba(246, 215, 70, 1.000)"], [0.9058823529411765, "rgba(245, 217, 73, 1.000)"], [0.9098039215686274, "rgba(245, 219, 76, 1.000)"], [0.9137254901960784, "rgba(244, 221, 79, 1.000)"], [0.9176470588235294, "rgba(244, 223, 83, 1.000)"], [0.9215686274509803, "rgba(244, 225, 86, 1.000)"], [0.9254901960784314, "rgba(243, 227, 90, 1.000)"], [0.9294117647058824, "rgba(243, 229, 93, 1.000)"], [0.9333333333333333, "rgba(242, 230, 97, 1.000)"], [0.9372549019607843, "rgba(242, 232, 101, 1.000)"], [0.9411764705882353, "rgba(242, 234, 105, 1.000)"], [0.9450980392156862, "rgba(241, 236, 109, 1.000)"], [0.9490196078431372, "rgba(241, 237, 113, 1.000)"], [0.9529411764705882, "rgba(241, 239, 117, 1.000)"], [0.9568627450980393, "rgba(241, 241, 121, 1.000)"], [0.9607843137254902, "rgba(242, 242, 125, 1.000)"], [0.9647058823529412, "rgba(242, 244, 130, 1.000)"], [0.9686274509803922, "rgba(243, 245, 134, 1.000)"], [0.9725490196078431, "rgba(243, 246, 138, 1.000)"], [0.9764705882352941, "rgba(244, 248, 142, 1.000)"], [0.9803921568627451, "rgba(245, 249, 146, 1.000)"], [0.984313725490196, "rgba(246, 250, 150, 1.000)"], [0.9882352941176471, "rgba(248, 251, 154, 1.000)"], [0.9921568627450981, "rgba(249, 252, 157, 1.000)"], [0.996078431372549, "rgba(250, 253, 161, 1.000)"], [1, "rgba(252, 255, 164, 1.000)"]], "yaxis": "y", "zmin": -0.2172059271919349, "z": [[0.03747308294223967, 0.03595224959631377, 0.03170541071491634, 0.02507943271442966, 0.01658547024214415, 0.006851416294724577, -0.0034313546221492906, -0.013562133420842604, -0.022881488599615286, -0.030814659542108623, -0.03690502849914266, -0.04083607358767439, -0.04244131815783876, -0.041702812083432156, -0.03873952880027733, -0.03378768578473035, -0.027175371195658795, -0.019293987538109965, -0.010568928699422074, -0.001431630441634243, 0.007705272543624346, 0.016468432833891142, 0.024539175695880124, 0.031663523015490296, 0.037657019279810675, 0.042404863574605316, 0.045858095098109314, 0.04802672406115692, 0.048970751720583176, 0.04878999598770127, 0.04761355000386343, 0.04558956944539949, 0.04287592892913734, 0.03963212560213236, 0.03601265264628425, 0.0321619272477622, 0.02821074311733881, 0.02427413001985883, 0.020450442195287553, 0.01682146201112624, 0.013453291135757724, 0.010397804581703946, 0.007694458501656245, 0.005372266208323732, 0.003451784659844099, 0.0019469824866320303, 0.000866888257962456, 0.00021694266699616769, 0, 0.00021694266699616769, 0.000866888257962456, 0.0019469824866320303, 0.003451784659844099, 0.005372266208323732, 0.007694458501656245, 0.010397804581703946, 0.013453291135757724, 0.01682146201112624, 0.020450442195287553, 0.02427413001985883, 0.02821074311733881, 0.0321619272477622, 0.03601265264628425, 0.03963212560213236, 0.04287592892913734, 0.04558956944539949, 0.04761355000386343, 0.04878999598770127, 0.048970751720583176, 0.04802672406115692, 0.045858095098109314, 0.042404863574605316, 0.037657019279810675, 0.031663523015490296, 0.024539175695880124, 0.016468432833891142, 0.007705272543624346, -0.001431630441634243, -0.010568928699422074, -0.019293987538109965, -0.027175371195658795, -0.03378768578473035, -0.03873952880027733, -0.041702812083432156, -0.04244131815783876, -0.04083607358767439, -0.03690502849914266, -0.030814659542108623, -0.022881488599615286, -0.013562133420842604, -0.0034313546221492906, 0.006851416294724577, 0.01658547024214415, 0.02507943271442966, 0.03170541071491634, 0.03595224959631377, 0.03747308294223967], [0.03595224959631377, 0.03158504889291611, 0.024737123028501253, 0.015953088739132714, 0.00590613661916961, -0.004660575821821476, -0.014994006772554757, -0.024387700766936207, -0.03223035314003258, -0.038043269341213194, -0.04150478158647204, -0.042460977170579235, -0.04092329280348354, -0.037054539418786586, -0.03114567451828078, -0.023586099996342147, -0.014830430313707977, -0.005364574400158507, 0.004326348446401224, 0.013786222773882296, 0.022610825025533014, 0.030464539527382976, 0.03709064066850363, 0.04231539213433679, 0.04604662379463335, 0.04826773694892544, 0.049028255863867005, 0.04843209606376969, 0.04662467434805535, 0.04377986405969505, 0.04008762606051746, 0.03574294513132674, 0.030936494557518655, 0.02584725600873246, 0.020637150322859062, 0.015447595491992866, 0.010397804581703946, 0.0055845682765417, 0.001083231122454544, -0.0030504377239427534, -0.006777765423001461, -0.010074346320124224, -0.012927084182596107, -0.015331286697460962, -0.017287953061458722, -0.01880135894126013, -0.01987701194604477, -0.020520025916277676, -0.020733943795838993, -0.020520025916277676, -0.01987701194604477, -0.01880135894126013, -0.017287953061458722, -0.015331286697460962, -0.012927084182596107, -0.010074346320124224, -0.006777765423001461, -0.0030504377239427534, 0.001083231122454544, 0.0055845682765417, 0.010397804581703946, 0.015447595491992866, 0.020637150322859062, 0.02584725600873246, 0.030936494557518655, 0.03574294513132674, 0.04008762606051746, 0.04377986405969505, 0.04662467434805535, 0.04843209606376969, 0.049028255863867005, 0.04826773694892544, 0.04604662379463335, 0.04231539213433679, 0.03709064066850363, 0.030464539527382976, 0.022610825025533014, 0.013786222773882296, 0.004326348446401224, -0.005364574400158507, -0.014830430313707977, -0.023586099996342147, -0.03114567451828078, -0.037054539418786586, -0.04092329280348354, -0.042460977170579235, -0.04150478158647204, -0.038043269341213194, -0.03223035314003258, -0.024387700766936207, -0.014994006772554757, -0.004660575821821476, 0.00590613661916961, 0.015953088739132714, 0.024737123028501253, 0.03158504889291611, 0.03595224959631377], [0.03170541071491634, 0.024737123028501253, 0.015740823424751294, 0.005431115411967232, -0.005398239019399103, -0.015940665350712795, -0.025439667869505817, -0.03324326419510057, -0.038846163114352336, -0.041917311008633794, -0.042311921266756425, -0.0400685073182753, -0.03539264198988428, -0.028630077109198487, -0.020232429911833317, -0.010718867722094379, -0.0006371247782392889, 0.009473182752142746, 0.01911254521144837, 0.027847141666311193, 0.035327037476218376, 0.0412967222832713, 0.04559833245211172, 0.048168396555550407, 0.049029290715542934, 0.04827678748081466, 0.046065136943488356, 0.04259105245152353, 0.038077813090238326, 0.0327604717491532, 0.02687290138972338, 0.020637150322859062, 0.014255332136680298, 0.007904063612150252, 0.0017312945144323656, -0.00414474927275206, -0.00963486393394146, -0.01467679622724445, -0.01923219082552286, -0.023282917998618678, -0.026827098138887163, -0.029875084633517256, -0.03244560848322273, -0.03456223232753799, -0.0362502121008708, -0.03753382386867845, -0.03843418261610348, -0.038967558916015534, -0.03914418765900462, -0.038967558916015534, -0.03843418261610348, -0.03753382386867845, -0.0362502121008708, -0.03456223232753799, -0.03244560848322273, -0.029875084633517256, -0.026827098138887163, -0.023282917998618678, -0.01923219082552286, -0.01467679622724445, -0.00963486393394146, -0.00414474927275206, 0.0017312945144323656, 0.007904063612150252, 0.014255332136680298, 0.020637150322859062, 0.02687290138972338, 0.0327604717491532, 0.038077813090238326, 0.04259105245152353, 0.046065136943488356, 0.04827678748081466, 0.049029290715542934, 0.048168396555550407, 0.04559833245211172, 0.0412967222832713, 0.035327037476218376, 0.027847141666311193, 0.01911254521144837, 0.009473182752142746, -0.0006371247782392889, -0.010718867722094379, -0.020232429911833317, -0.028630077109198487, -0.03539264198988428, -0.0400685073182753, -0.042311921266756425, -0.041917311008633794, -0.038846163114352336, -0.03324326419510057, -0.025439667869505817, -0.015940665350712795, -0.005398239019399103, 0.005431115411967232, 0.015740823424751294, 0.024737123028501253, 0.03170541071491634], [0.02507943271442966, 0.015953088739132714, 0.005431115411967232, -0.00564409241937702, -0.01641138412568979, -0.026060722843086317, -0.033894258279227284, -0.03937408251080661, -0.04215373868923622, -0.04209225488196526, -0.03925111477774544, -0.03387600471170934, -0.0263662816835029, -0.017235823941080572, -0.007069234510857113, 0.0035227088628487697, 0.013944869860128403, 0.023654002630535617, 0.032187410052808826, 0.039182857494045126, 0.044389432277917196, 0.04766978588826198, 0.048994794645401615, 0.04843209606376969, 0.046130194328031594, 0.04229988967195813, 0.037194697472528085, 0.03109171747407877, 0.02427413001985883, 0.017016172701800475, 0.009571121963339731, 0.002162498187170594, -0.005021549703949415, -0.011830930510913693, -0.018153763500061804, -0.02391447862413198, -0.02907037696294276, -0.033607151643790266, -0.03753382386867845, -0.04087748122332642, -0.04367812669845153, -0.04598386580627737, -0.047846582872775476, -0.04931819101787035, -0.050447486533958925, -0.05127759866399337, -0.05184400011432848, -0.0521730309375773, -0.05228088690510248, -0.0521730309375773, -0.05184400011432848, -0.05127759866399337, -0.050447486533958925, -0.04931819101787035, -0.047846582872775476, -0.04598386580627737, -0.04367812669845153, -0.04087748122332642, -0.03753382386867845, -0.033607151643790266, -0.02907037696294276, -0.02391447862413198, -0.018153763500061804, -0.011830930510913693, -0.005021549703949415, 0.002162498187170594, 0.009571121963339731, 0.017016172701800475, 0.02427413001985883, 0.03109171747407877, 0.037194697472528085, 0.04229988967195813, 0.046130194328031594, 0.04843209606376969, 0.048994794645401615, 0.04766978588826198, 0.044389432277917196, 0.039182857494045126, 0.032187410052808826, 0.023654002630535617, 0.013944869860128403, 0.0035227088628487697, -0.007069234510857113, -0.017235823941080572, -0.0263662816835029, -0.03387600471170934, -0.03925111477774544, -0.04209225488196526, -0.04215373868923622, -0.03937408251080661, -0.033894258279227284, -0.026060722843086317, -0.01641138412568979, -0.00564409241937702, 0.005431115411967232, 0.015953088739132714, 0.02507943271442966], [0.01658547024214415, 0.00590613661916961, -0.005398239019399103, -0.01641138412568979, -0.026265997425311285, -0.03421227260050144, -0.039672212892462845, -0.042276111494252436, -0.041879499176880296, -0.03856075944551718, -0.03260130122266114, -0.024451519180285236, -0.014686672893891698, -0.003957242641285151, 0.007061712189233647, 0.01771809742553514, 0.027423876669558294, 0.03568729784209614, 0.042134866483123944, 0.046522686476480175, 0.04873768884958524, 0.04878999598770127, 0.04679818300676425, 0.04296948728468357, 0.03757709159092609, 0.030936494557518655, 0.023382725500691964, 0.015249806171389482, 0.006853457743037402, -0.00152235912107342, -0.00963486393394146, -0.017287953061458722, -0.024334142827309703, -0.030673501865746567, -0.0362502121008708, -0.04104742571834398, -0.04508105740142656, -0.04839308154172929, -0.051044808013775485, -0.0531105011915593, -0.054671596840365946, -0.05581166934969179, -0.05661221371282111, -0.05714923632188933, -0.057490597413702625, -0.057694015501266696, -0.05780562875263666, -0.05785900766276947, -0.057874524760689224, -0.05785900766276947, -0.05780562875263666, -0.057694015501266696, -0.057490597413702625, -0.05714923632188933, -0.05661221371282111, -0.05581166934969179, -0.054671596840365946, -0.0531105011915593, -0.051044808013775485, -0.04839308154172929, -0.04508105740142656, -0.04104742571834398, -0.0362502121008708, -0.030673501865746567, -0.024334142827309703, -0.017287953061458722, -0.00963486393394146, -0.00152235912107342, 0.006853457743037402, 0.015249806171389482, 0.023382725500691964, 0.030936494557518655, 0.03757709159092609, 0.04296948728468357, 0.04679818300676425, 0.04878999598770127, 0.04873768884958524, 0.046522686476480175, 0.042134866483123944, 0.03568729784209614, 0.027423876669558294, 0.01771809742553514, 0.007061712189233647, -0.003957242641285151, -0.014686672893891698, -0.024451519180285236, -0.03260130122266114, -0.03856075944551718, -0.041879499176880296, -0.042276111494252436, -0.039672212892462845, -0.03421227260050144, -0.026265997425311285, -0.01641138412568979, -0.005398239019399103, 0.00590613661916961, 0.01658547024214415], [0.006851416294724577, -0.004660575821821476, -0.015940665350712795, -0.026060722843086317, -0.03421227260050144, -0.039768448312307546, -0.042326632566186004, -0.04172945376443669, -0.03806399486581272, -0.03164105742946344, -0.022957945344184216, -0.012649365505976515, -0.001431630441634243, 0.00995460514009024, 0.020798277520802256, 0.030464539527382976, 0.03843117863903444, 0.04431312954801783, 0.047874580410804536, 0.049029254407155574, 0.047830331881385045, 0.044452110907271664, 0.039165865236553, 0.032312457036751126, 0.02427413001985883, 0.015447595491992866, 0.006220087412589483, -0.0030504377239427534, -0.01205028948070265, -0.020520025916277676, -0.028259636347245782, -0.03512944010085653, -0.04104742571834398, -0.04598386580627737, -0.04995406610993753, -0.053010059675862406, -0.05523195728282429, -0.05671953314497683, -0.05758447818808817, -0.05794360707372231, -0.05791317112458218, -0.05760431515473211, -0.05711962618109622, -0.05655065735540448, -0.05597627019066032, -0.055461619698071306, -0.05505760697435419, -0.05480063837205414, -0.054712556063479335, -0.05480063837205414, -0.05505760697435419, -0.055461619698071306, -0.05597627019066032, -0.05655065735540448, -0.05711962618109622, -0.05760431515473211, -0.05791317112458218, -0.05794360707372231, -0.05758447818808817, -0.05671953314497683, -0.05523195728282429, -0.053010059675862406, -0.04995406610993753, -0.04598386580627737, -0.04104742571834398, -0.03512944010085653, -0.028259636347245782, -0.020520025916277676, -0.01205028948070265, -0.0030504377239427534, 0.006220087412589483, 0.015447595491992866, 0.02427413001985883, 0.032312457036751126, 0.039165865236553, 0.044452110907271664, 0.047830331881385045, 0.049029254407155574, 0.047874580410804536, 0.04431312954801783, 0.03843117863903444, 0.030464539527382976, 0.020798277520802256, 0.00995460514009024, -0.001431630441634243, -0.012649365505976515, -0.022957945344184216, -0.03164105742946344, -0.03806399486581272, -0.04172945376443669, -0.042326632566186004, -0.039768448312307546, -0.03421227260050144, -0.026060722843086317, -0.015940665350712795, -0.004660575821821476, 0.006851416294724577], [-0.0034313546221492906, -0.014994006772554757, -0.025439667869505817, -0.033894258279227284, -0.039672212892462845, -0.042326632566186004, -0.04167570339032056, -0.037804722081310874, -0.031045390212314006, -0.02193599117570719, -0.011167483821793561, 0.0004786509491550012, 0.012194803516759327, 0.02320826998617824, 0.032834211214922644, 0.0405170354164538, 0.045858095098109314, 0.048629002229383385, 0.04877116322922048, 0.04638321060292966, 0.04169879060561669, 0.03505762467538453, 0.02687290138972338, 0.017597910510974448, 0.007694458501656245, -0.0023949243781995256, -0.012269588164475924, -0.02158740873174328, -0.03007528872626719, -0.03753382386867845, -0.04383682542915307, -0.04892664366437289, -0.05280636655509189, -0.05552998670483286, -0.057191557619154634, -0.057914223509020056, -0.057839829610288405, -0.05711962618109622, -0.055906388452528745, -0.05434810170674743, -0.052583215123440726, -0.05073735510710331, -0.048921309502863976, -0.047230046389992356, -0.04574251095070121, -0.044521946141915236, -0.04361650222140574, -0.04305993166613821, -0.042872205531290765, -0.04305993166613821, -0.04361650222140574, -0.044521946141915236, -0.04574251095070121, -0.047230046389992356, -0.048921309502863976, -0.05073735510710331, -0.052583215123440726, -0.05434810170674743, -0.055906388452528745, -0.05711962618109622, -0.057839829610288405, -0.057914223509020056, -0.057191557619154634, -0.05552998670483286, -0.05280636655509189, -0.04892664366437289, -0.04383682542915307, -0.03753382386867845, -0.03007528872626719, -0.02158740873174328, -0.012269588164475924, -0.0023949243781995256, 0.007694458501656245, 0.017597910510974448, 0.02687290138972338, 0.03505762467538453, 0.04169879060561669, 0.04638321060292966, 0.04877116322922048, 0.048629002229383385, 0.045858095098109314, 0.0405170354164538, 0.032834211214922644, 0.02320826998617824, 0.012194803516759327, 0.0004786509491550012, -0.011167483821793561, -0.02193599117570719, -0.031045390212314006, -0.037804722081310874, -0.04167570339032056, -0.042326632566186004, -0.039672212892462845, -0.033894258279227284, -0.025439667869505817, -0.014994006772554757, -0.0034313546221492906], [-0.013562133420842604, -0.024387700766936207, -0.03324326419510057, -0.03937408251080661, -0.042276111494252436, -0.04172945376443669, -0.037804722081310874, -0.030843620652972924, -0.02141738123516561, -0.010268460059092235, 0.0017580172239592287, 0.013786222773882296, 0.024978502418535366, 0.03459557498187183, 0.04204381565564756, 0.04690697628999974, 0.04896135001030587, 0.0481749363813936, 0.04469247054348279, 0.038809151597143106, 0.030936494557518655, 0.021563933760609683, 0.011219659651864305, 0.00043374057536189843, -0.010294050326122708, -0.020520025916277676, -0.029875084633517256, -0.03807572921458141, -0.04492802859668448, -0.05032541829881054, -0.054241547083993175, -0.05671953314497683, -0.05785900766276947, -0.057802223634045365, -0.05672032502303975, -0.05480063837205414, -0.0522355964429413, -0.04921365683929495, -0.04591235715727241, -0.04249346456637444, -0.039100037980666615, -0.035855125862322736, -0.03286176877900921, -0.030203956964135078, -0.027948201779063313, -0.026145408407212398, -0.02483277825192081, -0.024035517556369672, -0.023768179473278847, -0.024035517556369672, -0.02483277825192081, -0.026145408407212398, -0.027948201779063313, -0.030203956964135078, -0.03286176877900921, -0.035855125862322736, -0.039100037980666615, -0.04249346456637444, -0.04591235715727241, -0.04921365683929495, -0.0522355964429413, -0.05480063837205414, -0.05672032502303975, -0.057802223634045365, -0.05785900766276947, -0.05671953314497683, -0.054241547083993175, -0.05032541829881054, -0.04492802859668448, -0.03807572921458141, -0.029875084633517256, -0.020520025916277676, -0.010294050326122708, 0.00043374057536189843, 0.011219659651864305, 0.021563933760609683, 0.030936494557518655, 0.038809151597143106, 0.04469247054348279, 0.0481749363813936, 0.04896135001030587, 0.04690697628999974, 0.04204381565564756, 0.03459557498187183, 0.024978502418535366, 0.013786222773882296, 0.0017580172239592287, -0.010268460059092235, -0.02141738123516561, -0.030843620652972924, -0.037804722081310874, -0.04172945376443669, -0.042276111494252436, -0.03937408251080661, -0.03324326419510057, -0.024387700766936207, -0.013562133420842604], [-0.022881488599615286, -0.03223035314003258, -0.038846163114352336, -0.04215373868923622, -0.041879499176880296, -0.03806399486581272, -0.031045390212314006, -0.02141738123516561, -0.009967215002439982, 0.0023990864415799986, 0.014736589019986942, 0.02613889164358011, 0.035806561097454795, 0.04310142057239088, 0.04758335092470511, 0.049028181942451454, 0.047427087991378736, 0.04296948728468357, 0.03601265264628425, 0.027042004306541426, 0.016626356821187495, 0.005372266208323732, -0.00611885823064855, -0.017287953061458722, -0.02764777669577622, -0.03680356172899527, -0.04446462634244799, -0.050447486533958925, -0.054671596840365946, -0.05714923632188933, -0.05797124859337839, -0.057290358424637956, -0.05530365530373093, -0.0522355964429413, -0.04832258015319124, -0.04379981483193957, -0.03889089243128978, -0.033800193473608776, -0.02870801983597124, -0.023768179473278847, -0.019107634495847278, -0.014827765425508264, -0.011006791150646839, -0.007702905313111807, -0.004957734516104436, -0.0027997817108104317, -0.0012475810549904855, -0.0003123523378733905, 0, -0.0003123523378733905, -0.0012475810549904855, -0.0027997817108104317, -0.004957734516104436, -0.007702905313111807, -0.011006791150646839, -0.014827765425508264, -0.019107634495847278, -0.023768179473278847, -0.02870801983597124, -0.033800193473608776, -0.03889089243128978, -0.04379981483193957, -0.04832258015319124, -0.0522355964429413, -0.05530365530373093, -0.057290358424637956, -0.05797124859337839, -0.05714923632188933, -0.054671596840365946, -0.050447486533958925, -0.04446462634244799, -0.03680356172899527, -0.02764777669577622, -0.017287953061458722, -0.00611885823064855, 0.005372266208323732, 0.016626356821187495, 0.027042004306541426, 0.03601265264628425, 0.04296948728468357, 0.047427087991378736, 0.049028181942451454, 0.04758335092470511, 0.04310142057239088, 0.035806561097454795, 0.02613889164358011, 0.014736589019986942, 0.0023990864415799986, -0.009967215002439982, -0.02141738123516561, -0.031045390212314006, -0.03806399486581272, -0.041879499176880296, -0.04215373868923622, -0.038846163114352336, -0.03223035314003258, -0.022881488599615286], [-0.030814659542108623, -0.038043269341213194, -0.041917311008633794, -0.04209225488196526, -0.03856075944551718, -0.03164105742946344, -0.02193599117570719, -0.010268460059092235, 0.0023990864415799986, 0.015052530095095969, 0.026712753398827963, 0.036513357564663645, 0.04376321952076582, 0.047989667034859795, 0.04896024829755483, 0.04668323364055051, 0.04138889936988247, 0.03349514476667778, 0.02356198332998537, 0.012239893896977237, 0.00021694266699616769, -0.011830930510913693, -0.023282917998618678, -0.033607151643790266, -0.0423839459589055, -0.04931819101787035, -0.054241547083993175, -0.05710582426521185, -0.05796942058800418, -0.056978936315397015, -0.05434810170674743, -0.050335988755707724, -0.04522617473918571, -0.03930814034277919, -0.03286176877900921, -0.026145408407212398, -0.019387603268548395, -0.01278230543892609, -0.006487170632833471, -0.0006244046480190265, 0.0047164340701690375, 0.009474273505160937, 0.013611565256248178, 0.01710900613069049, 0.01996034560879418, 0.022167593022248883, 0.023736856668822536, 0.024674977052713404, 0.02498706047190853, 0.024674977052713404, 0.023736856668822536, 0.022167593022248883, 0.01996034560879418, 0.01710900613069049, 0.013611565256248178, 0.009474273505160937, 0.0047164340701690375, -0.0006244046480190265, -0.006487170632833471, -0.01278230543892609, -0.019387603268548395, -0.026145408407212398, -0.03286176877900921, -0.03930814034277919, -0.04522617473918571, -0.050335988755707724, -0.05434810170674743, -0.056978936315397015, -0.05796942058800418, -0.05710582426521185, -0.054241547083993175, -0.04931819101787035, -0.0423839459589055, -0.033607151643790266, -0.023282917998618678, -0.011830930510913693, 0.00021694266699616769, 0.012239893896977237, 0.02356198332998537, 0.03349514476667778, 0.04138889936988247, 0.04668323364055051, 0.04896024829755483, 0.047989667034859795, 0.04376321952076582, 0.036513357564663645, 0.026712753398827963, 0.015052530095095969, 0.0023990864415799986, -0.010268460059092235, -0.02193599117570719, -0.03164105742946344, -0.03856075944551718, -0.04209225488196526, -0.041917311008633794, -0.038043269341213194, -0.030814659542108623], [-0.03690502849914266, -0.04150478158647204, -0.042311921266756425, -0.03925111477774544, -0.03260130122266114, -0.022957945344184216, -0.011167483821793561, 0.0017580172239592287, 0.014736589019986942, 0.026712753398827963, 0.03674556407346923, 0.04408082504349423, 0.048202170295002, 0.04885816899945481, 0.046065136943488356, 0.04008762606051746, 0.031400420505200956, 0.020637150322859062, 0.008531279966773837, -0.00414474927275206, -0.016636970578023727, -0.028259636347245782, -0.03843418261610348, -0.04671568215206028, -0.05280636655509189, -0.05655695505777426, -0.05795744296335416, -0.05711962618109622, -0.054253958142026215, -0.04964337221669045, -0.04361650222140574, -0.03652235697984948, -0.02870801983597124, -0.020500416136265034, -0.012192678126517526, -0.004035181692455175, 0.003769037731855356, 0.011065047478789601, 0.017743676628374457, 0.023736856668822536, 0.029011417275877496, 0.03356204110889651, 0.037403975055435114, 0.04056597152205359, 0.04308380860776664, 0.04499462472466556, 0.04633220955958977, 0.04712332320782043, 0.04738506927142664, 0.04712332320782043, 0.04633220955958977, 0.04499462472466556, 0.04308380860776664, 0.04056597152205359, 0.037403975055435114, 0.03356204110889651, 0.029011417275877496, 0.023736856668822536, 0.017743676628374457, 0.011065047478789601, 0.003769037731855356, -0.004035181692455175, -0.012192678126517526, -0.020500416136265034, -0.02870801983597124, -0.03652235697984948, -0.04361650222140574, -0.04964337221669045, -0.054253958142026215, -0.05711962618109622, -0.05795744296335416, -0.05655695505777426, -0.05280636655509189, -0.04671568215206028, -0.03843418261610348, -0.028259636347245782, -0.016636970578023727, -0.00414474927275206, 0.008531279966773837, 0.020637150322859062, 0.031400420505200956, 0.04008762606051746, 0.046065136943488356, 0.04885816899945481, 0.048202170295002, 0.04408082504349423, 0.03674556407346923, 0.026712753398827963, 0.014736589019986942, 0.0017580172239592287, -0.011167483821793561, -0.022957945344184216, -0.03260130122266114, -0.03925111477774544, -0.042311921266756425, -0.04150478158647204, -0.03690502849914266], [-0.04083607358767439, -0.042460977170579235, -0.0400685073182753, -0.03387600471170934, -0.024451519180285236, -0.012649365505976515, 0.0004786509491550012, 0.013786222773882296, 0.02613889164358011, 0.036513357564663645, 0.04408082504349423, 0.04826773694892544, 0.04878999598770127, 0.04565966611001241, 0.039165865236553, 0.0298338410564352, 0.01836787339008987, 0.0055845682765417, -0.007656711234980534, -0.020520025916277676, -0.03225043575504232, -0.04221915632873505, -0.04995406610993753, -0.05515491605013087, -0.057694015501266696, -0.05760431515473211, -0.05505760697435419, -0.050335988755707724, -0.04379981483193957, -0.035855125862322736, -0.026923093169523554, -0.017413410827150585, -0.007702905313111807, 0.001880017630607545, 0.011065047478789601, 0.019644189549118916, 0.027471290307035087, 0.03445782405725266, 0.04056597152205359, 0.045799991341126285, 0.05019677946332084, 0.053816356897235, 0.05673284975057918, 0.05902634928653124, 0.06077588090795559, 0.06205358088274775, 0.06292008416246539, 0.06342106706713174, 0.06358486245215166, 0.06342106706713174, 0.06292008416246539, 0.06205358088274775, 0.06077588090795559, 0.05902634928653124, 0.05673284975057918, 0.053816356897235, 0.05019677946332084, 0.045799991341126285, 0.04056597152205359, 0.03445782405725266, 0.027471290307035087, 0.019644189549118916, 0.011065047478789601, 0.001880017630607545, -0.007702905313111807, -0.017413410827150585, -0.026923093169523554, -0.035855125862322736, -0.04379981483193957, -0.050335988755707724, -0.05505760697435419, -0.05760431515473211, -0.057694015501266696, -0.05515491605013087, -0.04995406610993753, -0.04221915632873505, -0.03225043575504232, -0.020520025916277676, -0.007656711234980534, 0.0055845682765417, 0.01836787339008987, 0.0298338410564352, 0.039165865236553, 0.04565966611001241, 0.04878999598770127, 0.04826773694892544, 0.04408082504349423, 0.036513357564663645, 0.02613889164358011, 0.013786222773882296, 0.0004786509491550012, -0.012649365505976515, -0.024451519180285236, -0.03387600471170934, -0.0400685073182753, -0.042460977170579235, -0.04083607358767439], [-0.04244131815783876, -0.04092329280348354, -0.03539264198988428, -0.0263662816835029, -0.014686672893891698, -0.001431630441634243, 0.012194803516759327, 0.024978502418535366, 0.035806561097454795, 0.04376321952076582, 0.048202170295002, 0.04878999598770127, 0.04551875419121116, 0.03868891633990796, 0.028866640071341296, 0.01682146201112624, 0.003451784659844099, -0.010294050326122708, -0.023493708108486083, -0.035317511990522577, -0.04508105740142656, -0.05228088690510248, -0.05661221371282111, -0.05796942058800418, -0.05643149574638259, -0.0522355964429413, -0.04574251095070121, -0.03739793090036873, -0.027693203193403574, -0.017128690011925362, -0.0061821296920366335, 0.0047164340701690375, 0.015202405882377333, 0.02498706047190853, 0.033861212803747966, 0.04169314253555411, 0.04842202918439252, 0.05404824184683762, 0.05862177844952994, 0.062229998909092525, 0.06498558144151709, 0.06701538684882409, 0.0684506720218071, 0.06941887418516075, 0.0700370069734079, 0.07040657640544133, 0.07060984119315501, 0.07070720480428683, 0.0707355302630646, 0.07070720480428683, 0.07060984119315501, 0.07040657640544133, 0.0700370069734079, 0.06941887418516075, 0.0684506720218071, 0.06701538684882409, 0.06498558144151709, 0.062229998909092525, 0.05862177844952994, 0.05404824184683762, 0.04842202918439252, 0.04169314253555411, 0.033861212803747966, 0.02498706047190853, 0.015202405882377333, 0.0047164340701690375, -0.0061821296920366335, -0.017128690011925362, -0.027693203193403574, -0.03739793090036873, -0.04574251095070121, -0.0522355964429413, -0.05643149574638259, -0.05796942058800418, -0.05661221371282111, -0.05228088690510248, -0.04508105740142656, -0.035317511990522577, -0.023493708108486083, -0.010294050326122708, 0.003451784659844099, 0.01682146201112624, 0.028866640071341296, 0.03868891633990796, 0.04551875419121116, 0.04878999598770127, 0.048202170295002, 0.04376321952076582, 0.035806561097454795, 0.024978502418535366, 0.012194803516759327, -0.001431630441634243, -0.014686672893891698, -0.0263662816835029, -0.03539264198988428, -0.04092329280348354, -0.04244131815783876], [-0.041702812083432156, -0.037054539418786586, -0.028630077109198487, -0.017235823941080572, -0.003957242641285151, 0.00995460514009024, 0.02320826998617824, 0.03459557498187183, 0.04310142057239088, 0.047989667034859795, 0.04885816899945481, 0.04565966611001241, 0.03868891633990796, 0.028539790576024824, 0.016038701730919914, 0.002162498187170594, -0.01205028948070265, -0.025586176755546662, -0.03753382386867845, -0.04714561202979198, -0.0538799077791263, -0.05742245611121293, -0.057687453256608165, -0.05480063837205414, -0.049068069230192204, -0.04093503863980408, -0.030939841517149867, -0.019666871213569893, -0.007702905313111807, 0.0044004410358833325, 0.016156130789798474, 0.027162049922227857, 0.03711227165921393, 0.045799991341126285, 0.05311343251576602, 0.05902634928653124, 0.06358486245215166, 0.06689229989447039, 0.06909350912525554, 0.07035982049581486, 0.07087551011001388, 0.07082628231212139, 0.07038999382283674, 0.06972959592806349, 0.06898808845801678, 0.06828516210333851, 0.06771515004642782, 0.06734590797103036, 0.06721828316370318, 0.06734590797103036, 0.06771515004642782, 0.06828516210333851, 0.06898808845801678, 0.06972959592806349, 0.07038999382283674, 0.07082628231212139, 0.07087551011001388, 0.07035982049581486, 0.06909350912525554, 0.06689229989447039, 0.06358486245215166, 0.05902634928653124, 0.05311343251576602, 0.045799991341126285, 0.03711227165921393, 0.027162049922227857, 0.016156130789798474, 0.0044004410358833325, -0.007702905313111807, -0.019666871213569893, -0.030939841517149867, -0.04093503863980408, -0.049068069230192204, -0.05480063837205414, -0.057687453256608165, -0.05742245611121293, -0.0538799077791263, -0.04714561202979198, -0.03753382386867845, -0.025586176755546662, -0.01205028948070265, 0.002162498187170594, 0.016038701730919914, 0.028539790576024824, 0.03868891633990796, 0.04565966611001241, 0.04885816899945481, 0.047989667034859795, 0.04310142057239088, 0.03459557498187183, 0.02320826998617824, 0.00995460514009024, -0.003957242641285151, -0.017235823941080572, -0.028630077109198487, -0.037054539418786586, -0.041702812083432156], [-0.03873952880027733, -0.03114567451828078, -0.020232429911833317, -0.007069234510857113, 0.007061712189233647, 0.020798277520802256, 0.032834211214922644, 0.04204381565564756, 0.04758335092470511, 0.04896024829755483, 0.046065136943488356, 0.039165865236553, 0.028866640071341296, 0.016038701730919914, 0.0017312945144323656, -0.012927084182596107, -0.026827098138887163, -0.038967558916015534, -0.048527693650739875, -0.05491775508052088, -0.05780562875263666, -0.05711962618109622, -0.05302986714747128, -0.04591235715727241, -0.036300945656162924, -0.02483277825192081, -0.012192678126517526, 0.0009387864588941174, 0.013929826013452875, 0.026232052236498594, 0.037403975055435114, 0.04712332320782043, 0.05518911230603298, 0.061515098519999166, 0.06611668562698729, 0.06909350912525554, 0.07060984119315501, 0.07087469966135411, 0.07012316566041692, 0.06859998001328096, 0.06654605187084454, 0.06418811665831267, 0.06173145237928255, 0.05935531840278692, 0.05721062202138408, 0.0554192394536295, 0.054074408072778656, 0.053241651373662324, 0.05295978330335918, 0.053241651373662324, 0.054074408072778656, 0.0554192394536295, 0.05721062202138408, 0.05935531840278692, 0.06173145237928255, 0.06418811665831267, 0.06654605187084454, 0.06859998001328096, 0.07012316566041692, 0.07087469966135411, 0.07060984119315501, 0.06909350912525554, 0.06611668562698729, 0.061515098519999166, 0.05518911230603298, 0.04712332320782043, 0.037403975055435114, 0.026232052236498594, 0.013929826013452875, 0.0009387864588941174, -0.012192678126517526, -0.02483277825192081, -0.036300945656162924, -0.04591235715727241, -0.05302986714747128, -0.05711962618109622, -0.05780562875263666, -0.05491775508052088, -0.048527693650739875, -0.038967558916015534, -0.026827098138887163, -0.012927084182596107, 0.0017312945144323656, 0.016038701730919914, 0.028866640071341296, 0.039165865236553, 0.046065136943488356, 0.04896024829755483, 0.04758335092470511, 0.04204381565564756, 0.032834211214922644, 0.020798277520802256, 0.007061712189233647, -0.007069234510857113, -0.020232429911833317, -0.03114567451828078, -0.03873952880027733], [-0.03378768578473035, -0.023586099996342147, -0.010718867722094379, 0.0035227088628487697, 0.01771809742553514, 0.030464539527382976, 0.0405170354164538, 0.04690697628999974, 0.049028181942451454, 0.04668323364055051, 0.04008762606051746, 0.0298338410564352, 0.01682146201112624, 0.002162498187170594, -0.012927084182596107, -0.027238119104118063, -0.039670529079745095, -0.04931819101787035, -0.05552998670483286, -0.05794360707372231, -0.05649168180961626, -0.05138252152197142, -0.04305993166613821, -0.03214801971223707, -0.019387603268548395, -0.005570765122896035, 0.008520601341770602, 0.022167593022248883, 0.03475524623357991, 0.045799991341126285, 0.05496344021683955, 0.06205358088274775, 0.06701538684882409, 0.06991342678236025, 0.07090928797611137, 0.07023654641869881, 0.06817569432179703, 0.06503095272323879, 0.06111033330226716, 0.056709742354204826, 0.05210139849521898, 0.047526403324657414, 0.04319098161399095, 0.03926569882297806, 0.03588686033765934, 0.03315928197343901, 0.031159674327330144, 0.029939983781014083, 0.0295301623758919, 0.029939983781014083, 0.031159674327330144, 0.03315928197343901, 0.03588686033765934, 0.03926569882297806, 0.04319098161399095, 0.047526403324657414, 0.05210139849521898, 0.056709742354204826, 0.06111033330226716, 0.06503095272323879, 0.06817569432179703, 0.07023654641869881, 0.07090928797611137, 0.06991342678236025, 0.06701538684882409, 0.06205358088274775, 0.05496344021683955, 0.045799991341126285, 0.03475524623357991, 0.022167593022248883, 0.008520601341770602, -0.005570765122896035, -0.019387603268548395, -0.03214801971223707, -0.04305993166613821, -0.05138252152197142, -0.05649168180961626, -0.05794360707372231, -0.05552998670483286, -0.04931819101787035, -0.039670529079745095, -0.027238119104118063, -0.012927084182596107, 0.002162498187170594, 0.01682146201112624, 0.0298338410564352, 0.04008762606051746, 0.04668323364055051, 0.049028181942451454, 0.04690697628999974, 0.0405170354164538, 0.030464539527382976, 0.01771809742553514, 0.0035227088628487697, -0.010718867722094379, -0.023586099996342147, -0.03378768578473035], [-0.027175371195658795, -0.014830430313707977, -0.0006371247782392889, 0.013944869860128403, 0.027423876669558294, 0.03843117863903444, 0.045858095098109314, 0.04896135001030587, 0.047427087991378736, 0.04138889936988247, 0.031400420505200956, 0.01836787339008987, 0.003451784659844099, -0.01205028948070265, -0.026827098138887163, -0.039670529079745095, -0.049575063814172045, -0.05581166934969179, -0.05797124859337839, -0.05597627019066032, -0.05006248663690296, -0.04073539091869543, -0.02870801983597124, -0.014827765425508264, 0, 0.014884346332942059, 0.029011417275877496, 0.04169314253555411, 0.052399782143584296, 0.06077588090795559, 0.06664079941000567, 0.06997620892337074, 0.07090372337244864, 0.06965618377580868, 0.06654605187084454, 0.06193398888033367, 0.05620009257242416, 0.04971954596694955, 0.04284369112727859, 0.03588686033765934, 0.0291187299374325, 0.022761539499926882, 0.016991248272574217, 0.01194157076537377, 0.007709820474616166, 0.00436356498686016, 0.001947226385121772, 0.00048792085273476955, 0, 0.00048792085273476955, 0.001947226385121772, 0.00436356498686016, 0.007709820474616166, 0.01194157076537377, 0.016991248272574217, 0.022761539499926882, 0.0291187299374325, 0.03588686033765934, 0.04284369112727859, 0.04971954596694955, 0.05620009257242416, 0.06193398888033367, 0.06654605187084454, 0.06965618377580868, 0.07090372337244864, 0.06997620892337074, 0.06664079941000567, 0.06077588090795559, 0.052399782143584296, 0.04169314253555411, 0.029011417275877496, 0.014884346332942059, 0, -0.014827765425508264, -0.02870801983597124, -0.04073539091869543, -0.05006248663690296, -0.05597627019066032, -0.05797124859337839, -0.05581166934969179, -0.049575063814172045, -0.039670529079745095, -0.026827098138887163, -0.01205028948070265, 0.003451784659844099, 0.01836787339008987, 0.031400420505200956, 0.04138889936988247, 0.047427087991378736, 0.04896135001030587, 0.045858095098109314, 0.03843117863903444, 0.027423876669558294, 0.013944869860128403, -0.0006371247782392889, -0.014830430313707977, -0.027175371195658795], [-0.019293987538109965, -0.005364574400158507, 0.009473182752142746, 0.023654002630535617, 0.03568729784209614, 0.04431312954801783, 0.048629002229383385, 0.0481749363813936, 0.04296948728468357, 0.03349514476667778, 0.020637150322859062, 0.0055845682765417, -0.010294050326122708, -0.025586176755546662, -0.038967558916015534, -0.04931819101787035, -0.05581166934969179, -0.057971193186890924, -0.05568946443231503, -0.04921365683929495, -0.039100037980666615, -0.026145408407212398, -0.011304076619915043, 0.0044004410358833325, 0.01996034560879418, 0.03445782405725266, 0.04712332320782043, 0.057374725169627945, 0.06483656306820804, 0.06934042498664442, 0.07090928797611137, 0.06972959592806349, 0.06611541377092878, 0.06046899227255463, 0.053241651373662324, 0.04489815696022981, 0.03588686033765934, 0.02661691958010542, 0.017443035399983122, 0.008657389947079534, 0.00048792085273476955, -0.006898290828732119, -0.01338790351687593, -0.01891185782611035, -0.023434855005557163, -0.026944861111601357, -0.029443509031926877, -0.03093805295208876, -0.031435334142078476, -0.03093805295208876, -0.029443509031926877, -0.026944861111601357, -0.023434855005557163, -0.01891185782611035, -0.01338790351687593, -0.006898290828732119, 0.00048792085273476955, 0.008657389947079534, 0.017443035399983122, 0.02661691958010542, 0.03588686033765934, 0.04489815696022981, 0.053241651373662324, 0.06046899227255463, 0.06611541377092878, 0.06972959592806349, 0.07090928797611137, 0.06934042498664442, 0.06483656306820804, 0.057374725169627945, 0.04712332320782043, 0.03445782405725266, 0.01996034560879418, 0.0044004410358833325, -0.011304076619915043, -0.026145408407212398, -0.039100037980666615, -0.04921365683929495, -0.05568946443231503, -0.057971193186890924, -0.05581166934969179, -0.04931819101787035, -0.038967558916015534, -0.025586176755546662, -0.010294050326122708, 0.0055845682765417, 0.020637150322859062, 0.03349514476667778, 0.04296948728468357, 0.0481749363813936, 0.048629002229383385, 0.04431312954801783, 0.03568729784209614, 0.023654002630535617, 0.009473182752142746, -0.005364574400158507, -0.019293987538109965], [-0.010568928699422074, 0.004326348446401224, 0.01911254521144837, 0.032187410052808826, 0.042134866483123944, 0.047874580410804536, 0.04877116322922048, 0.04469247054348279, 0.03601265264628425, 0.02356198332998537, 0.008531279966773837, -0.007656711234980534, -0.023493708108486083, -0.03753382386867845, -0.048527693650739875, -0.05552998670483286, -0.05797124859337839, -0.05568946443231503, -0.048921309502863976, -0.03825722809959497, -0.02456782186324457, -0.00891124103891014, 0.007567776669795874, 0.023736856668822536, 0.038563910748833426, 0.05118715444511622, 0.06096293760071619, 0.06748982028909199, 0.07060984119315501, 0.07038999382283674, 0.0670883852046823, 0.06111033330226716, 0.05295978330335918, 0.04319098161399095, 0.03236448254360126, 0.021010443372916018, 0.009600955849587763, -0.0014679872505029663, -0.011885271189354125, -0.02142530404701613, -0.02994211931113844, -0.03735874280383697, -0.0436536254098885, -0.048845774019986375, -0.052979942159562435, -0.05611292821370759, -0.05830172241169848, -0.0595939790935052, -0.06002108774380708, -0.0595939790935052, -0.05830172241169848, -0.05611292821370759, -0.052979942159562435, -0.048845774019986375, -0.0436536254098885, -0.03735874280383697, -0.02994211931113844, -0.02142530404701613, -0.011885271189354125, -0.0014679872505029663, 0.009600955849587763, 0.021010443372916018, 0.03236448254360126, 0.04319098161399095, 0.05295978330335918, 0.06111033330226716, 0.0670883852046823, 0.07038999382283674, 0.07060984119315501, 0.06748982028909199, 0.06096293760071619, 0.05118715444511622, 0.038563910748833426, 0.023736856668822536, 0.007567776669795874, -0.00891124103891014, -0.02456782186324457, -0.03825722809959497, -0.048921309502863976, -0.05568946443231503, -0.05797124859337839, -0.05552998670483286, -0.048527693650739875, -0.03753382386867845, -0.023493708108486083, -0.007656711234980534, 0.008531279966773837, 0.02356198332998537, 0.03601265264628425, 0.04469247054348279, 0.04877116322922048, 0.047874580410804536, 0.042134866483123944, 0.032187410052808826, 0.01911254521144837, 0.004326348446401224, -0.010568928699422074], [-0.001431630441634243, 0.013786222773882296, 0.027847141666311193, 0.039182857494045126, 0.046522686476480175, 0.049029254407155574, 0.04638321060292966, 0.038809151597143106, 0.027042004306541426, 0.012239893896977237, -0.00414474927275206, -0.020520025916277676, -0.035317511990522577, -0.04714561202979198, -0.05491775508052088, -0.05794360707372231, -0.05597627019066032, -0.04921365683929495, -0.03825722809959497, -0.024035517556369672, -0.007702905313111807, 0.009474273505160937, 0.026232052236498594, 0.04141254335987183, 0.05404824184683762, 0.06342106706713174, 0.06909350912525554, 0.07091235022770864, 0.06898808845801678, 0.06365516281997069, 0.0554192394536295, 0.04489815696022981, 0.032762729660471696, 0.01968263081360716, 0.006281225588565149, -0.006898290828732119, -0.01941457519099837, -0.03093805295208876, -0.041250477502671586, -0.05023618574433825, -0.057867404585463175, -0.06418596062862286, -0.06928351001764697, -0.07328202023313929, -0.07631578350383601, -0.07851579478480496, -0.0799969408960797, -0.08084815582153988, -0.08112551416309005, -0.08084815582153988, -0.0799969408960797, -0.07851579478480496, -0.07631578350383601, -0.07328202023313929, -0.06928351001764697, -0.06418596062862286, -0.057867404585463175, -0.05023618574433825, -0.041250477502671586, -0.03093805295208876, -0.01941457519099837, -0.006898290828732119, 0.006281225588565149, 0.01968263081360716, 0.032762729660471696, 0.04489815696022981, 0.0554192394536295, 0.06365516281997069, 0.06898808845801678, 0.07091235022770864, 0.06909350912525554, 0.06342106706713174, 0.05404824184683762, 0.04141254335987183, 0.026232052236498594, 0.009474273505160937, -0.007702905313111807, -0.024035517556369672, -0.03825722809959497, -0.04921365683929495, -0.05597627019066032, -0.05794360707372231, -0.05491775508052088, -0.04714561202979198, -0.035317511990522577, -0.020520025916277676, -0.00414474927275206, 0.012239893896977237, 0.027042004306541426, 0.038809151597143106, 0.04638321060292966, 0.049029254407155574, 0.046522686476480175, 0.039182857494045126, 0.027847141666311193, 0.013786222773882296, -0.001431630441634243], [0.007705272543624346, 0.022610825025533014, 0.035327037476218376, 0.044389432277917196, 0.04873768884958524, 0.047830331881385045, 0.04169879060561669, 0.030936494557518655, 0.016626356821187495, 0.00021694266699616769, -0.016636970578023727, -0.03225043575504232, -0.04508105740142656, -0.0538799077791263, -0.05780562875263666, -0.05649168180961626, -0.05006248663690296, -0.039100037980666615, -0.02456782186324457, -0.007702905313111807, 0.010110423611683293, 0.027471290307035087, 0.04308380860776664, 0.05585848817776385, 0.06498558144151709, 0.06997620892337074, 0.07067086655717086, 0.06721828316370318, 0.06003022646602355, 0.04971954596694955, 0.03702942351966614, 0.022761539499926882, 0.007709820474616166, -0.007395151467245612, -0.021927852103724617, -0.035394322328442085, -0.04744383216498181, -0.057867404585463175, -0.06658580427022456, -0.07363004307669668, -0.07911748638021394, -0.08322634620436055, -0.08617082522939275, -0.08817854255140753, -0.08947122957553463, -0.09024911408346632, -0.09067896751241898, -0.09088550285539078, -0.09094568176679733, -0.09088550285539078, -0.09067896751241898, -0.09024911408346632, -0.08947122957553463, -0.08817854255140753, -0.08617082522939275, -0.08322634620436055, -0.07911748638021394, -0.07363004307669668, -0.06658580427022456, -0.057867404585463175, -0.04744383216498181, -0.035394322328442085, -0.021927852103724617, -0.007395151467245612, 0.007709820474616166, 0.022761539499926882, 0.03702942351966614, 0.04971954596694955, 0.06003022646602355, 0.06721828316370318, 0.07067086655717086, 0.06997620892337074, 0.06498558144151709, 0.05585848817776385, 0.04308380860776664, 0.027471290307035087, 0.010110423611683293, -0.007702905313111807, -0.02456782186324457, -0.039100037980666615, -0.05006248663690296, -0.05649168180961626, -0.05780562875263666, -0.0538799077791263, -0.04508105740142656, -0.03225043575504232, -0.016636970578023727, 0.00021694266699616769, 0.016626356821187495, 0.030936494557518655, 0.04169879060561669, 0.047830331881385045, 0.04873768884958524, 0.044389432277917196, 0.035327037476218376, 0.022610825025533014, 0.007705272543624346], [0.016468432833891142, 0.030464539527382976, 0.0412967222832713, 0.04766978588826198, 0.04878999598770127, 0.044452110907271664, 0.03505762467538453, 0.021563933760609683, 0.005372266208323732, -0.011830930510913693, -0.028259636347245782, -0.04221915632873505, -0.05228088690510248, -0.05742245611121293, -0.05711962618109622, -0.05138252152197142, -0.04073539091869543, -0.026145408407212398, -0.00891124103891014, 0.009474273505160937, 0.027471290307035087, 0.04363415771542717, 0.05673284975057918, 0.06584418405210897, 0.07040657640544133, 0.07023654641869881, 0.06550937234944648, 0.056709742354204826, 0.04456065007960515, 0.029939983781014083, 0.013794273074033596, -0.002941958651092874, -0.01941457519099837, -0.03490152117034324, -0.048845774019986375, -0.06086969918321609, -0.07077275885017735, -0.07851579478480496, -0.08419578943425635, -0.08801513635410305, -0.09024911408346632, -0.09121458954930939, -0.09124212528894639, -0.09065276956548936, -0.0897399865721011, -0.08875651898175305, -0.08790551471036315, -0.08733500824005588, -0.08713481150850413, -0.08733500824005588, -0.08790551471036315, -0.08875651898175305, -0.0897399865721011, -0.09065276956548936, -0.09124212528894639, -0.09121458954930939, -0.09024911408346632, -0.08801513635410305, -0.08419578943425635, -0.07851579478480496, -0.07077275885017735, -0.06086969918321609, -0.048845774019986375, -0.03490152117034324, -0.01941457519099837, -0.002941958651092874, 0.013794273074033596, 0.029939983781014083, 0.04456065007960515, 0.056709742354204826, 0.06550937234944648, 0.07023654641869881, 0.07040657640544133, 0.06584418405210897, 0.05673284975057918, 0.04363415771542717, 0.027471290307035087, 0.009474273505160937, -0.00891124103891014, -0.026145408407212398, -0.04073539091869543, -0.05138252152197142, -0.05711962618109622, -0.05742245611121293, -0.05228088690510248, -0.04221915632873505, -0.028259636347245782, -0.011830930510913693, 0.005372266208323732, 0.021563933760609683, 0.03505762467538453, 0.044452110907271664, 0.04878999598770127, 0.04766978588826198, 0.0412967222832713, 0.030464539527382976, 0.016468432833891142], [0.024539175695880124, 0.03709064066850363, 0.04559833245211172, 0.048994794645401615, 0.04679818300676425, 0.039165865236553, 0.02687290138972338, 0.011219659651864305, -0.00611885823064855, -0.023282917998618678, -0.03843418261610348, -0.04995406610993753, -0.05661221371282111, -0.057687453256608165, -0.05302986714747128, -0.04305993166613821, -0.02870801983597124, -0.011304076619915043, 0.007567776669795874, 0.026232052236498594, 0.04308380860776664, 0.05673284975057918, 0.06611668562698729, 0.07057327401292128, 0.06986971036143766, 0.06418811665831267, 0.054074408072778656, 0.04035893453427208, 0.024059934036823695, 0.006281225588565149, -0.011885271189354125, -0.029443509031926877, -0.045557704635488014, -0.0595939790935052, -0.07113889402837716, -0.0799969408960797, -0.08617082522939275, -0.08982943791608139, -0.09126872367241032, -0.09087033573293914, -0.08906216203065932, -0.0862837098381358, -0.08295813167342621, -0.07947152951212336, -0.07615921035235956, -0.07329785945563662, -0.07110217746809566, -0.06972438535666871, -0.06925510124285432, -0.06972438535666871, -0.07110217746809566, -0.07329785945563662, -0.07615921035235956, -0.07947152951212336, -0.08295813167342621, -0.0862837098381358, -0.08906216203065932, -0.09087033573293914, -0.09126872367241032, -0.08982943791608139, -0.08617082522939275, -0.0799969408960797, -0.07113889402837716, -0.0595939790935052, -0.045557704635488014, -0.029443509031926877, -0.011885271189354125, 0.006281225588565149, 0.024059934036823695, 0.04035893453427208, 0.054074408072778656, 0.06418811665831267, 0.06986971036143766, 0.07057327401292128, 0.06611668562698729, 0.05673284975057918, 0.04308380860776664, 0.026232052236498594, 0.007567776669795874, -0.011304076619915043, -0.02870801983597124, -0.04305993166613821, -0.05302986714747128, -0.057687453256608165, -0.05661221371282111, -0.04995406610993753, -0.03843418261610348, -0.023282917998618678, -0.00611885823064855, 0.011219659651864305, 0.02687290138972338, 0.039165865236553, 0.04679818300676425, 0.048994794645401615, 0.04559833245211172, 0.03709064066850363, 0.024539175695880124], [0.031663523015490296, 0.04231539213433679, 0.048168396555550407, 0.04843209606376969, 0.04296948728468357, 0.032312457036751126, 0.017597910510974448, 0.00043374057536189843, -0.017287953061458722, -0.033607151643790266, -0.04671568215206028, -0.05515491605013087, -0.05796942058800418, -0.05480063837205414, -0.04591235715727241, -0.03214801971223707, -0.014827765425508264, 0.0044004410358833325, 0.023736856668822536, 0.04141254335987183, 0.05585848817776385, 0.06584418405210897, 0.07057327401292128, 0.06972959592806349, 0.06347297492002213, 0.05238965195590362, 0.037406689332756274, 0.01968263081360716, 0.00048792085273476955, -0.01891185782611035, -0.03735874280383697, -0.05388286907125833, -0.06775585171392955, -0.07851579478480496, -0.0859658163909405, -0.09015045731267568, -0.09131593213649357, -0.08986083578529938, -0.0862837098381358, -0.08113297508032842, -0.07496338046692728, -0.06830155199730398, -0.06162167556787999, -0.05533099588483479, -0.049763776809129065, -0.04518170035546226, -0.04177837921381129, -0.03968567784606773, -0.03897981433617731, -0.03968567784606773, -0.04177837921381129, -0.04518170035546226, -0.049763776809129065, -0.05533099588483479, -0.06162167556787999, -0.06830155199730398, -0.07496338046692728, -0.08113297508032842, -0.0862837098381358, -0.08986083578529938, -0.09131593213649357, -0.09015045731267568, -0.0859658163909405, -0.07851579478480496, -0.06775585171392955, -0.05388286907125833, -0.03735874280383697, -0.01891185782611035, 0.00048792085273476955, 0.01968263081360716, 0.037406689332756274, 0.05238965195590362, 0.06347297492002213, 0.06972959592806349, 0.07057327401292128, 0.06584418405210897, 0.05585848817776385, 0.04141254335987183, 0.023736856668822536, 0.0044004410358833325, -0.014827765425508264, -0.03214801971223707, -0.04591235715727241, -0.05480063837205414, -0.05796942058800418, -0.05515491605013087, -0.04671568215206028, -0.033607151643790266, -0.017287953061458722, 0.00043374057536189843, 0.017597910510974448, 0.032312457036751126, 0.04296948728468357, 0.04843209606376969, 0.048168396555550407, 0.04231539213433679, 0.031663523015490296], [0.037657019279810675, 0.04604662379463335, 0.049029290715542934, 0.046130194328031594, 0.03757709159092609, 0.02427413001985883, 0.007694458501656245, -0.010294050326122708, -0.02764777669577622, -0.0423839459589055, -0.05280636655509189, -0.057694015501266696, -0.05643149574638259, -0.049068069230192204, -0.036300945656162924, -0.019387603268548395, 0, 0.01996034560879418, 0.038563910748833426, 0.05404824184683762, 0.06498558144151709, 0.07040657640544133, 0.06986971036143766, 0.06347297492002213, 0.051811026530912886, 0.03588686033765934, 0.016991248272574217, -0.0034345330681530653, -0.023936908523590678, -0.04317496985500962, -0.06002108774380708, -0.07363004307669668, -0.08347386588733276, -0.08934364918043657, -0.09132298014121154, -0.0897399865721011, -0.08510618967193917, -0.07805041383509298, -0.06925510124285432, -0.05940078323094247, -0.04912248699170504, -0.03897981433617731, -0.02944057949570285, -0.020876418883192742, -0.013567782945136511, -0.007715201506788209, -0.003453627382958198, -0.0008669172451297127, 0, -0.0008669172451297127, -0.003453627382958198, -0.007715201506788209, -0.013567782945136511, -0.020876418883192742, -0.02944057949570285, -0.03897981433617731, -0.04912248699170504, -0.05940078323094247, -0.06925510124285432, -0.07805041383509298, -0.08510618967193917, -0.0897399865721011, -0.09132298014121154, -0.08934364918043657, -0.08347386588733276, -0.07363004307669668, -0.06002108774380708, -0.04317496985500962, -0.023936908523590678, -0.0034345330681530653, 0.016991248272574217, 0.03588686033765934, 0.051811026530912886, 0.06347297492002213, 0.06986971036143766, 0.07040657640544133, 0.06498558144151709, 0.05404824184683762, 0.038563910748833426, 0.01996034560879418, 0, -0.019387603268548395, -0.036300945656162924, -0.049068069230192204, -0.05643149574638259, -0.057694015501266696, -0.05280636655509189, -0.0423839459589055, -0.02764777669577622, -0.010294050326122708, 0.007694458501656245, 0.02427413001985883, 0.03757709159092609, 0.046130194328031594, 0.049029290715542934, 0.04604662379463335, 0.037657019279810675], [0.042404863574605316, 0.04826773694892544, 0.04827678748081466, 0.04229988967195813, 0.030936494557518655, 0.015447595491992866, -0.0023949243781995256, -0.020520025916277676, -0.03680356172899527, -0.04931819101787035, -0.05655695505777426, -0.05760431515473211, -0.0522355964429413, -0.04093503863980408, -0.02483277825192081, -0.005570765122896035, 0.014884346332942059, 0.03445782405725266, 0.05118715444511622, 0.06342106706713174, 0.06997620892337074, 0.07023654641869881, 0.06418811665831267, 0.05238965195590362, 0.03588686033765934, 0.016083912967990648, -0.005410625244593429, -0.026944861111601357, -0.04697406248754969, -0.06418596062862286, -0.0775906272066803, -0.08656978293988553, -0.09088550285539078, -0.09065276956548936, -0.0862837098381358, -0.07841335241628748, -0.06781730438134298, -0.05533099588483479, -0.04177837921381129, -0.027915570341068115, -0.014392296041115405, -0.0017315258985832118, 0.00967439124622255, 0.019554233149479044, 0.027739020100814565, 0.034137934869462254, 0.038712993386835384, 0.041455847041530124, 0.04236936340888838, 0.041455847041530124, 0.038712993386835384, 0.034137934869462254, 0.027739020100814565, 0.019554233149479044, 0.00967439124622255, -0.0017315258985832118, -0.014392296041115405, -0.027915570341068115, -0.04177837921381129, -0.05533099588483479, -0.06781730438134298, -0.07841335241628748, -0.0862837098381358, -0.09065276956548936, -0.09088550285539078, -0.08656978293988553, -0.0775906272066803, -0.06418596062862286, -0.04697406248754969, -0.026944861111601357, -0.005410625244593429, 0.016083912967990648, 0.03588686033765934, 0.05238965195590362, 0.06418811665831267, 0.07023654641869881, 0.06997620892337074, 0.06342106706713174, 0.05118715444511622, 0.03445782405725266, 0.014884346332942059, -0.005570765122896035, -0.02483277825192081, -0.04093503863980408, -0.0522355964429413, -0.05760431515473211, -0.05655695505777426, -0.04931819101787035, -0.03680356172899527, -0.020520025916277676, -0.0023949243781995256, 0.015447595491992866, 0.030936494557518655, 0.04229988967195813, 0.04827678748081466, 0.04826773694892544, 0.042404863574605316], [0.045858095098109314, 0.049028255863867005, 0.046065136943488356, 0.037194697472528085, 0.023382725500691964, 0.006220087412589483, -0.012269588164475924, -0.029875084633517256, -0.04446462634244799, -0.054241547083993175, -0.05795744296335416, -0.05505760697435419, -0.04574251095070121, -0.030939841517149867, -0.012192678126517526, 0.008520601341770602, 0.029011417275877496, 0.04712332320782043, 0.06096293760071619, 0.06909350912525554, 0.07067086655717086, 0.06550937234944648, 0.054074408072778656, 0.037406689332756274, 0.016991248272574217, -0.005410625244593429, -0.027945356141086012, -0.048845774019986375, -0.06658580427022456, -0.0799969408960797, -0.08833804594774992, -0.09131620598746587, -0.08906216203065932, -0.08206853029927091, -0.07110217746809566, -0.05710349539479912, -0.041084986730345295, -0.024039798754518064, -0.0068680615855205, 0.00967439124622255, 0.025003614325888802, 0.038712993386835384, 0.0505602074281885, 0.060440656169643954, 0.06835274705237276, 0.07436019359323173, 0.0785557589578467, 0.08102992044248501, 0.0818469378324642, 0.08102992044248501, 0.0785557589578467, 0.07436019359323173, 0.06835274705237276, 0.060440656169643954, 0.0505602074281885, 0.038712993386835384, 0.025003614325888802, 0.00967439124622255, -0.0068680615855205, -0.024039798754518064, -0.041084986730345295, -0.05710349539479912, -0.07110217746809566, -0.08206853029927091, -0.08906216203065932, -0.09131620598746587, -0.08833804594774992, -0.0799969408960797, -0.06658580427022456, -0.048845774019986375, -0.027945356141086012, -0.005410625244593429, 0.016991248272574217, 0.037406689332756274, 0.054074408072778656, 0.06550937234944648, 0.07067086655717086, 0.06909350912525554, 0.06096293760071619, 0.04712332320782043, 0.029011417275877496, 0.008520601341770602, -0.012192678126517526, -0.030939841517149867, -0.04574251095070121, -0.05505760697435419, -0.05795744296335416, -0.054241547083993175, -0.04446462634244799, -0.029875084633517256, -0.012269588164475924, 0.006220087412589483, 0.023382725500691964, 0.037194697472528085, 0.046065136943488356, 0.049028255863867005, 0.045858095098109314], [0.04802672406115692, 0.04843209606376969, 0.04259105245152353, 0.03109171747407877, 0.015249806171389482, -0.0030504377239427534, -0.02158740873174328, -0.03807572921458141, -0.050447486533958925, -0.05710582426521185, -0.05711962618109622, -0.050335988755707724, -0.03739793090036873, -0.019666871213569893, 0.0009387864588941174, 0.022167593022248883, 0.04169314253555411, 0.057374725169627945, 0.06748982028909199, 0.07091235022770864, 0.06721828316370318, 0.056709742354204826, 0.04035893453427208, 0.01968263081360716, -0.0034345330681530653, -0.026944861111601357, -0.048845774019986375, -0.06736811143426903, -0.08112551416309005, -0.08921201129164351, -0.09124212528894639, -0.08733500824005588, -0.07805041383509298, -0.06428897815930346, -0.04717189993207514, -0.027915570341068115, -0.007715201506788209, 0.012351515641047391, 0.031393629131117665, 0.04874612699774812, 0.0639800988386149, 0.07688790726900409, 0.08744941827251093, 0.09578619857909153, 0.10211042775684408, 0.1066743541570273, 0.10972478180637592, 0.11146564438509889, 0.1120304719395053, 0.11146564438509889, 0.10972478180637592, 0.1066743541570273, 0.10211042775684408, 0.09578619857909153, 0.08744941827251093, 0.07688790726900409, 0.0639800988386149, 0.04874612699774812, 0.031393629131117665, 0.012351515641047391, -0.007715201506788209, -0.027915570341068115, -0.04717189993207514, -0.06428897815930346, -0.07805041383509298, -0.08733500824005588, -0.09124212528894639, -0.08921201129164351, -0.08112551416309005, -0.06736811143426903, -0.048845774019986375, -0.026944861111601357, -0.0034345330681530653, 0.01968263081360716, 0.04035893453427208, 0.056709742354204826, 0.06721828316370318, 0.07091235022770864, 0.06748982028909199, 0.057374725169627945, 0.04169314253555411, 0.022167593022248883, 0.0009387864588941174, -0.019666871213569893, -0.03739793090036873, -0.050335988755707724, -0.05711962618109622, -0.05710582426521185, -0.050447486533958925, -0.03807572921458141, -0.02158740873174328, -0.0030504377239427534, 0.015249806171389482, 0.03109171747407877, 0.04259105245152353, 0.04843209606376969, 0.04802672406115692], [0.048970751720583176, 0.04662467434805535, 0.038077813090238326, 0.02427413001985883, 0.006853457743037402, -0.01205028948070265, -0.03007528872626719, -0.04492802859668448, -0.054671596840365946, -0.05796942058800418, -0.054253958142026215, -0.04379981483193957, -0.027693203193403574, -0.007702905313111807, 0.013929826013452875, 0.03475524623357991, 0.052399782143584296, 0.06483656306820804, 0.07060984119315501, 0.06898808845801678, 0.06003022646602355, 0.04456065007960515, 0.024059934036823695, 0.00048792085273476955, -0.023936908523590678, -0.04697406248754969, -0.06658580427022456, -0.08112551416309005, -0.08947122957553463, -0.09109388026307519, -0.08605832553797192, -0.07496338046692728, -0.058833585688961035, -0.03897981433617731, -0.01684756863873484, 0.006128967559588576, 0.028652003881607768, 0.04965369863847285, 0.06835274705237276, 0.08427368513437312, 0.09723295711056688, 0.10729890319164657, 0.1147344419427747, 0.11993137750541569, 0.12334421567515366, 0.12542954171329684, 0.12659488019303988, 0.12715897675548665, 0.12732395447351627, 0.12715897675548665, 0.12659488019303988, 0.12542954171329684, 0.12334421567515366, 0.11993137750541569, 0.1147344419427747, 0.10729890319164657, 0.09723295711056688, 0.08427368513437312, 0.06835274705237276, 0.04965369863847285, 0.028652003881607768, 0.006128967559588576, -0.01684756863873484, -0.03897981433617731, -0.058833585688961035, -0.07496338046692728, -0.08605832553797192, -0.09109388026307519, -0.08947122957553463, -0.08112551416309005, -0.06658580427022456, -0.04697406248754969, -0.023936908523590678, 0.00048792085273476955, 0.024059934036823695, 0.04456065007960515, 0.06003022646602355, 0.06898808845801678, 0.07060984119315501, 0.06483656306820804, 0.052399782143584296, 0.03475524623357991, 0.013929826013452875, -0.007702905313111807, -0.027693203193403574, -0.04379981483193957, -0.054253958142026215, -0.05796942058800418, -0.054671596840365946, -0.04492802859668448, -0.03007528872626719, -0.01205028948070265, 0.006853457743037402, 0.02427413001985883, 0.038077813090238326, 0.04662467434805535, 0.048970751720583176], [0.04878999598770127, 0.04377986405969505, 0.0327604717491532, 0.017016172701800475, -0.00152235912107342, -0.020520025916277676, -0.03753382386867845, -0.05032541829881054, -0.05714923632188933, -0.056978936315397015, -0.04964337221669045, -0.035855125862322736, -0.017128690011925362, 0.0044004410358833325, 0.026232052236498594, 0.045799991341126285, 0.06077588090795559, 0.06934042498664442, 0.07038999382283674, 0.06365516281997069, 0.04971954596694955, 0.029939983781014083, 0.006281225588565149, -0.01891185782611035, -0.04317496985500962, -0.06418596062862286, -0.0799969408960797, -0.08921201129164351, -0.09109388026307519, -0.0855923873615903, -0.07329785945563662, -0.05533099588483479, -0.03318754009892684, -0.008559664271085284, 0.016843465643954603, 0.041455847041530124, 0.0639800988386149, 0.08346890602582428, 0.09935967585773438, 0.11146564438509889, 0.11993137750541569, 0.12516350908341345, 0.1277484855604861, 0.12836820742270624, 0.12772221064751688, 0.12646202687351876, 0.1251402627158088, 0.12417433933411735, 0.12382315319629535, 0.12417433933411735, 0.1251402627158088, 0.12646202687351876, 0.12772221064751688, 0.12836820742270624, 0.1277484855604861, 0.12516350908341345, 0.11993137750541569, 0.11146564438509889, 0.09935967585773438, 0.08346890602582428, 0.0639800988386149, 0.041455847041530124, 0.016843465643954603, -0.008559664271085284, -0.03318754009892684, -0.05533099588483479, -0.07329785945563662, -0.0855923873615903, -0.09109388026307519, -0.08921201129164351, -0.0799969408960797, -0.06418596062862286, -0.04317496985500962, -0.01891185782611035, 0.006281225588565149, 0.029939983781014083, 0.04971954596694955, 0.06365516281997069, 0.07038999382283674, 0.06934042498664442, 0.06077588090795559, 0.045799991341126285, 0.026232052236498594, 0.0044004410358833325, -0.017128690011925362, -0.035855125862322736, -0.04964337221669045, -0.056978936315397015, -0.05714923632188933, -0.05032541829881054, -0.03753382386867845, -0.020520025916277676, -0.00152235912107342, 0.017016172701800475, 0.0327604717491532, 0.04377986405969505, 0.04878999598770127], [0.04761355000386343, 0.04008762606051746, 0.02687290138972338, 0.009571121963339731, -0.00963486393394146, -0.028259636347245782, -0.04383682542915307, -0.054241547083993175, -0.05797124859337839, -0.05434810170674743, -0.04361650222140574, -0.026923093169523554, -0.0061821296920366335, 0.016156130789798474, 0.037403975055435114, 0.05496344021683955, 0.06664079941000567, 0.07090928797611137, 0.0670883852046823, 0.0554192394536295, 0.03702942351966614, 0.013794273074033596, -0.011885271189354125, -0.03735874280383697, -0.06002108774380708, -0.0775906272066803, -0.08833804594774992, -0.09124212528894639, -0.08605832553797192, -0.07329785945563662, -0.054125994016451684, -0.030197528866358098, -0.003453627382958198, 0.024093198877441203, 0.0505602074281885, 0.07436019359323173, 0.0943171278902554, 0.10972478180637592, 0.12034937613997415, 0.12638409069038745, 0.1283681108723834, 0.1270852736905262, 0.12345725364773678, 0.11844394128676645, 0.11295987263220698, 0.10781111157989003, 0.10365274426192721, 0.10096386730405656, 0.10003514623967846, 0.10096386730405656, 0.10365274426192721, 0.10781111157989003, 0.11295987263220698, 0.11844394128676645, 0.12345725364773678, 0.1270852736905262, 0.1283681108723834, 0.12638409069038745, 0.12034937613997415, 0.10972478180637592, 0.0943171278902554, 0.07436019359323173, 0.0505602074281885, 0.024093198877441203, -0.003453627382958198, -0.030197528866358098, -0.054125994016451684, -0.07329785945563662, -0.08605832553797192, -0.09124212528894639, -0.08833804594774992, -0.0775906272066803, -0.06002108774380708, -0.03735874280383697, -0.011885271189354125, 0.013794273074033596, 0.03702942351966614, 0.0554192394536295, 0.0670883852046823, 0.07090928797611137, 0.06664079941000567, 0.05496344021683955, 0.037403975055435114, 0.016156130789798474, -0.0061821296920366335, -0.026923093169523554, -0.04361650222140574, -0.05434810170674743, -0.05797124859337839, -0.054241547083993175, -0.04383682542915307, -0.028259636347245782, -0.00963486393394146, 0.009571121963339731, 0.02687290138972338, 0.04008762606051746, 0.04761355000386343], [0.04558956944539949, 0.03574294513132674, 0.020637150322859062, 0.002162498187170594, -0.017287953061458722, -0.03512944010085653, -0.04892664366437289, -0.05671953314497683, -0.057290358424637956, -0.050335988755707724, -0.03652235697984948, -0.017413410827150585, 0.0047164340701690375, 0.027162049922227857, 0.04712332320782043, 0.06205358088274775, 0.06997620892337074, 0.06972959592806349, 0.06111033330226716, 0.04489815696022981, 0.022761539499926882, -0.002941958651092874, -0.029443509031926877, -0.05388286907125833, -0.07363004307669668, -0.08656978293988553, -0.09131620598746587, -0.08733500824005588, -0.07496338046692728, -0.05533099588483479, -0.030197528866358098, -0.0017315258985832118, 0.027739020100814565, 0.055972856386526326, 0.08102992044248501, 0.10143210762218653, 0.11625731080459428, 0.12516350908341345, 0.12834896279272995, 0.12646202687351876, 0.12047880409415705, 0.11156838694958249, 0.10096386730405656, 0.0898531900234096, 0.07929821732974865, 0.07018417391350773, 0.06319607805439727, 0.058814763461859376, 0.05732325637673133, 0.058814763461859376, 0.06319607805439727, 0.07018417391350773, 0.07929821732974865, 0.0898531900234096, 0.10096386730405656, 0.11156838694958249, 0.12047880409415705, 0.12646202687351876, 0.12834896279272995, 0.12516350908341345, 0.11625731080459428, 0.10143210762218653, 0.08102992044248501, 0.055972856386526326, 0.027739020100814565, -0.0017315258985832118, -0.030197528866358098, -0.05533099588483479, -0.07496338046692728, -0.08733500824005588, -0.09131620598746587, -0.08656978293988553, -0.07363004307669668, -0.05388286907125833, -0.029443509031926877, -0.002941958651092874, 0.022761539499926882, 0.04489815696022981, 0.06111033330226716, 0.06972959592806349, 0.06997620892337074, 0.06205358088274775, 0.04712332320782043, 0.027162049922227857, 0.0047164340701690375, -0.017413410827150585, -0.03652235697984948, -0.050335988755707724, -0.057290358424637956, -0.05671953314497683, -0.04892664366437289, -0.03512944010085653, -0.017287953061458722, 0.002162498187170594, 0.020637150322859062, 0.03574294513132674, 0.04558956944539949], [0.04287592892913734, 0.030936494557518655, 0.014255332136680298, -0.005021549703949415, -0.024334142827309703, -0.04104742571834398, -0.05280636655509189, -0.05785900766276947, -0.05530365530373093, -0.04522617473918571, -0.02870801983597124, -0.007702905313111807, 0.015202405882377333, 0.03711227165921393, 0.05518911230603298, 0.06701538684882409, 0.07090372337244864, 0.06611541377092878, 0.05295978330335918, 0.032762729660471696, 0.007709820474616166, -0.01941457519099837, -0.045557704635488014, -0.06775585171392955, -0.08347386588733276, -0.09088550285539078, -0.08906216203065932, -0.07805041383509298, -0.058833585688961035, -0.03318754009892684, -0.003453627382958198, 0.027739020100814565, 0.057765239856828854, 0.08427368513437312, 0.10540421227858363, 0.11993137750541569, 0.12732395447351627, 0.12772221064751688, 0.12184527361529092, 0.11084883714465928, 0.09615773797943991, 0.07929821732974865, 0.061751235188300314, 0.04484186185117994, 0.02967176829015202, 0.017093610411863445, 0.007719046480121881, 0.0019473727330142222, 0, 0.0019473727330142222, 0.007719046480121881, 0.017093610411863445, 0.02967176829015202, 0.04484186185117994, 0.061751235188300314, 0.07929821732974865, 0.09615773797943991, 0.11084883714465928, 0.12184527361529092, 0.12772221064751688, 0.12732395447351627, 0.11993137750541569, 0.10540421227858363, 0.08427368513437312, 0.057765239856828854, 0.027739020100814565, -0.003453627382958198, -0.03318754009892684, -0.058833585688961035, -0.07805041383509298, -0.08906216203065932, -0.09088550285539078, -0.08347386588733276, -0.06775585171392955, -0.045557704635488014, -0.01941457519099837, 0.007709820474616166, 0.032762729660471696, 0.05295978330335918, 0.06611541377092878, 0.07090372337244864, 0.06701538684882409, 0.05518911230603298, 0.03711227165921393, 0.015202405882377333, -0.007702905313111807, -0.02870801983597124, -0.04522617473918571, -0.05530365530373093, -0.05785900766276947, -0.05280636655509189, -0.04104742571834398, -0.024334142827309703, -0.005021549703949415, 0.014255332136680298, 0.030936494557518655, 0.04287592892913734], [0.03963212560213236, 0.02584725600873246, 0.007904063612150252, -0.011830930510913693, -0.030673501865746567, -0.04598386580627737, -0.05552998670483286, -0.057802223634045365, -0.0522355964429413, -0.03930814034277919, -0.020500416136265034, 0.001880017630607545, 0.02498706047190853, 0.045799991341126285, 0.061515098519999166, 0.06991342678236025, 0.06965618377580868, 0.06046899227255463, 0.04319098161399095, 0.01968263081360716, -0.007395151467245612, -0.03490152117034324, -0.0595939790935052, -0.07851579478480496, -0.08934364918043657, -0.09065276956548936, -0.08206853029927091, -0.06428897815930346, -0.03897981433617731, -0.008559664271085284, 0.024093198877441203, 0.055972856386526326, 0.08427368513437312, 0.1066743541570273, 0.12154611257274513, 0.1280655746021029, 0.1262261649136082, 0.11675625942134887, 0.10096386730405656, 0.08053585790834274, 0.05732325637673133, 0.03314276244514563, 0.009618882910387172, -0.011917947268232813, -0.03047255125071308, -0.04537133651098209, -0.05620829548270173, -0.06277073679229504, -0.06496635722696219, -0.06277073679229504, -0.05620829548270173, -0.04537133651098209, -0.03047255125071308, -0.011917947268232813, 0.009618882910387172, 0.03314276244514563, 0.05732325637673133, 0.08053585790834274, 0.10096386730405656, 0.11675625942134887, 0.1262261649136082, 0.1280655746021029, 0.12154611257274513, 0.1066743541570273, 0.08427368513437312, 0.055972856386526326, 0.024093198877441203, -0.008559664271085284, -0.03897981433617731, -0.06428897815930346, -0.08206853029927091, -0.09065276956548936, -0.08934364918043657, -0.07851579478480496, -0.0595939790935052, -0.03490152117034324, -0.007395151467245612, 0.01968263081360716, 0.04319098161399095, 0.06046899227255463, 0.06965618377580868, 0.06991342678236025, 0.061515098519999166, 0.045799991341126285, 0.02498706047190853, 0.001880017630607545, -0.020500416136265034, -0.03930814034277919, -0.0522355964429413, -0.057802223634045365, -0.05552998670483286, -0.04598386580627737, -0.030673501865746567, -0.011830930510913693, 0.007904063612150252, 0.02584725600873246, 0.03963212560213236], [0.03601265264628425, 0.020637150322859062, 0.0017312945144323656, -0.018153763500061804, -0.0362502121008708, -0.04995406610993753, -0.057191557619154634, -0.05672032502303975, -0.04832258015319124, -0.03286176877900921, -0.012192678126517526, 0.011065047478789601, 0.033861212803747966, 0.05311343251576602, 0.06611668562698729, 0.07090928797611137, 0.06654605187084454, 0.053241651373662324, 0.03236448254360126, 0.006281225588565149, -0.021927852103724617, -0.048845774019986375, -0.07113889402837716, -0.0859658163909405, -0.09132298014121154, -0.0862837098381358, -0.07110217746809566, -0.04717189993207514, -0.01684756863873484, 0.016843465643954603, 0.0505602074281885, 0.08102992044248501, 0.10540421227858363, 0.12154611257274513, 0.12821612148783826, 0.1251402627158088, 0.11295987263220698, 0.0930787720578656, 0.0674363619373826, 0.03824332783592799, 0.007719046480121881, -0.02213364891206292, -0.04968920817281887, -0.0737805782705446, -0.09369955807552946, -0.10912806601015447, -0.12002257644951186, -0.1264802663529934, -0.1286166165938723, -0.1264802663529934, -0.12002257644951186, -0.10912806601015447, -0.09369955807552946, -0.0737805782705446, -0.04968920817281887, -0.02213364891206292, 0.007719046480121881, 0.03824332783592799, 0.0674363619373826, 0.0930787720578656, 0.11295987263220698, 0.1251402627158088, 0.12821612148783826, 0.12154611257274513, 0.10540421227858363, 0.08102992044248501, 0.0505602074281885, 0.016843465643954603, -0.01684756863873484, -0.04717189993207514, -0.07110217746809566, -0.0862837098381358, -0.09132298014121154, -0.0859658163909405, -0.07113889402837716, -0.048845774019986375, -0.021927852103724617, 0.006281225588565149, 0.03236448254360126, 0.053241651373662324, 0.06654605187084454, 0.07090928797611137, 0.06611668562698729, 0.05311343251576602, 0.033861212803747966, 0.011065047478789601, -0.012192678126517526, -0.03286176877900921, -0.04832258015319124, -0.05672032502303975, -0.057191557619154634, -0.04995406610993753, -0.0362502121008708, -0.018153763500061804, 0.0017312945144323656, 0.020637150322859062, 0.03601265264628425], [0.0321619272477622, 0.015447595491992866, -0.00414474927275206, -0.02391447862413198, -0.04104742571834398, -0.053010059675862406, -0.057914223509020056, -0.05480063837205414, -0.04379981483193957, -0.026145408407212398, -0.004035181692455175, 0.019644189549118916, 0.04169314253555411, 0.05902634928653124, 0.06909350912525554, 0.07023654641869881, 0.06193398888033367, 0.04489815696022981, 0.021010443372916018, -0.006898290828732119, -0.035394322328442085, -0.06086969918321609, -0.0799969408960797, -0.09015045731267568, -0.0897399865721011, -0.07841335241628748, -0.05710349539479912, -0.027915570341068115, 0.006128967559588576, 0.041455847041530124, 0.07436019359323173, 0.10143210762218653, 0.11993137750541569, 0.1280655746021029, 0.1251402627158088, 0.11156838694958249, 0.08874542078444292, 0.058814763461859376, 0.024361694712850233, -0.011917947268232813, -0.04752725507334205, -0.08041470547532921, -0.10912806601015447, -0.13286182852129808, -0.15140128937400707, -0.16498229995422303, -0.1740980863671481, -0.17929156711720928, -0.1809723008253547, -0.17929156711720928, -0.1740980863671481, -0.16498229995422303, -0.15140128937400707, -0.13286182852129808, -0.10912806601015447, -0.08041470547532921, -0.04752725507334205, -0.011917947268232813, 0.024361694712850233, 0.058814763461859376, 0.08874542078444292, 0.11156838694958249, 0.1251402627158088, 0.1280655746021029, 0.11993137750541569, 0.10143210762218653, 0.07436019359323173, 0.041455847041530124, 0.006128967559588576, -0.027915570341068115, -0.05710349539479912, -0.07841335241628748, -0.0897399865721011, -0.09015045731267568, -0.0799969408960797, -0.06086969918321609, -0.035394322328442085, -0.006898290828732119, 0.021010443372916018, 0.04489815696022981, 0.06193398888033367, 0.07023654641869881, 0.06909350912525554, 0.05902634928653124, 0.04169314253555411, 0.019644189549118916, -0.004035181692455175, -0.026145408407212398, -0.04379981483193957, -0.05480063837205414, -0.057914223509020056, -0.053010059675862406, -0.04104742571834398, -0.02391447862413198, -0.00414474927275206, 0.015447595491992866, 0.0321619272477622], [0.02821074311733881, 0.010397804581703946, -0.00963486393394146, -0.02907037696294276, -0.04508105740142656, -0.05523195728282429, -0.057839829610288405, -0.0522355964429413, -0.03889089243128978, -0.019387603268548395, 0.003769037731855356, 0.027471290307035087, 0.04842202918439252, 0.06358486245215166, 0.07060984119315501, 0.06817569432179703, 0.05620009257242416, 0.03588686033765934, 0.009600955849587763, -0.01941457519099837, -0.04744383216498181, -0.07077275885017735, -0.08617082522939275, -0.09131593213649357, -0.08510618967193917, -0.06781730438134298, -0.041084986730345295, -0.007715201506788209, 0.028652003881607768, 0.0639800988386149, 0.0943171278902554, 0.11625731080459428, 0.12732395447351627, 0.1262261649136082, 0.11295987263220698, 0.08874542078444292, 0.055816321017738854, 0.017093610411863445, -0.024205207915655492, -0.06496635722696219, -0.10253368755958539, -0.1349696066991787, -0.16119160012302736, -0.1809723008253547, -0.19481174061549258, -0.20370930239206525, -0.2088772394837565, -0.2114453674933261, -0.2122065907891938, -0.2114453674933261, -0.2088772394837565, -0.20370930239206525, -0.19481174061549258, -0.1809723008253547, -0.16119160012302736, -0.1349696066991787, -0.10253368755958539, -0.06496635722696219, -0.024205207915655492, 0.017093610411863445, 0.055816321017738854, 0.08874542078444292, 0.11295987263220698, 0.1262261649136082, 0.12732395447351627, 0.11625731080459428, 0.0943171278902554, 0.0639800988386149, 0.028652003881607768, -0.007715201506788209, -0.041084986730345295, -0.06781730438134298, -0.08510618967193917, -0.09131593213649357, -0.08617082522939275, -0.07077275885017735, -0.04744383216498181, -0.01941457519099837, 0.009600955849587763, 0.03588686033765934, 0.05620009257242416, 0.06817569432179703, 0.07060984119315501, 0.06358486245215166, 0.04842202918439252, 0.027471290307035087, 0.003769037731855356, -0.019387603268548395, -0.03889089243128978, -0.0522355964429413, -0.057839829610288405, -0.05523195728282429, -0.04508105740142656, -0.02907037696294276, -0.00963486393394146, 0.010397804581703946, 0.02821074311733881], [0.02427413001985883, 0.0055845682765417, -0.01467679622724445, -0.033607151643790266, -0.04839308154172929, -0.05671953314497683, -0.05711962618109622, -0.04921365683929495, -0.033800193473608776, -0.01278230543892609, 0.011065047478789601, 0.03445782405725266, 0.05404824184683762, 0.06689229989447039, 0.07087469966135411, 0.06503095272323879, 0.04971954596694955, 0.02661691958010542, -0.0014679872505029663, -0.03093805295208876, -0.057867404585463175, -0.07851579478480496, -0.08982943791608139, -0.08986083578529938, -0.07805041383509298, -0.05533099588483479, -0.024039798754518064, 0.012351515641047391, 0.04965369863847285, 0.08346890602582428, 0.10972478180637592, 0.12516350908341345, 0.12772221064751688, 0.11675625942134887, 0.0930787720578656, 0.058814763461859376, 0.017093610411863445, -0.02837490037624331, -0.0737805782705446, -0.11568204606697312, -0.15140128937400707, -0.17929156711720928, -0.19884580035609553, -0.21063604857406426, -0.21609918982720208, -0.2172059271919349, -0.21606660702952618, -0.21453573579041268, -0.21387635552087378, -0.21453573579041268, -0.21606660702952618, -0.2172059271919349, -0.21609918982720208, -0.21063604857406426, -0.19884580035609553, -0.17929156711720928, -0.15140128937400707, -0.11568204606697312, -0.0737805782705446, -0.02837490037624331, 0.017093610411863445, 0.058814763461859376, 0.0930787720578656, 0.11675625942134887, 0.12772221064751688, 0.12516350908341345, 0.10972478180637592, 0.08346890602582428, 0.04965369863847285, 0.012351515641047391, -0.024039798754518064, -0.05533099588483479, -0.07805041383509298, -0.08986083578529938, -0.08982943791608139, -0.07851579478480496, -0.057867404585463175, -0.03093805295208876, -0.0014679872505029663, 0.02661691958010542, 0.04971954596694955, 0.06503095272323879, 0.07087469966135411, 0.06689229989447039, 0.05404824184683762, 0.03445782405725266, 0.011065047478789601, -0.01278230543892609, -0.033800193473608776, -0.04921365683929495, -0.05711962618109622, -0.05671953314497683, -0.04839308154172929, -0.033607151643790266, -0.01467679622724445, 0.0055845682765417, 0.02427413001985883], [0.020450442195287553, 0.001083231122454544, -0.01923219082552286, -0.03753382386867845, -0.051044808013775485, -0.05758447818808817, -0.055906388452528745, -0.04591235715727241, -0.02870801983597124, -0.006487170632833471, 0.017743676628374457, 0.04056597152205359, 0.05862177844952994, 0.06909350912525554, 0.07012316566041692, 0.06111033330226716, 0.04284369112727859, 0.017443035399983122, -0.011885271189354125, -0.041250477502671586, -0.06658580427022456, -0.08419578943425635, -0.09126872367241032, -0.0862837098381358, -0.06925510124285432, -0.04177837921381129, -0.0068680615855205, 0.031393629131117665, 0.06835274705237276, 0.09935967585773438, 0.12034937613997415, 0.12834896279272995, 0.12184527361529092, 0.10096386730405656, 0.0674363619373826, 0.024361694712850233, -0.024205207915655492, -0.0737805782705446, -0.12002257644951186, -0.15926805543561576, -0.18896301773824772, -0.20792977681405292, -0.21643700355065953, -0.21606660702952618, -0.20939987758514467, -0.19957051786185215, -0.18975057476915372, -0.18264429055191253, -0.18006326323142124, -0.18264429055191253, -0.18975057476915372, -0.19957051786185215, -0.20939987758514467, -0.21606660702952618, -0.21643700355065953, -0.20792977681405292, -0.18896301773824772, -0.15926805543561576, -0.12002257644951186, -0.0737805782705446, -0.024205207915655492, 0.024361694712850233, 0.0674363619373826, 0.10096386730405656, 0.12184527361529092, 0.12834896279272995, 0.12034937613997415, 0.09935967585773438, 0.06835274705237276, 0.031393629131117665, -0.0068680615855205, -0.04177837921381129, -0.06925510124285432, -0.0862837098381358, -0.09126872367241032, -0.08419578943425635, -0.06658580427022456, -0.041250477502671586, -0.011885271189354125, 0.017443035399983122, 0.04284369112727859, 0.06111033330226716, 0.07012316566041692, 0.06909350912525554, 0.05862177844952994, 0.04056597152205359, 0.017743676628374457, -0.006487170632833471, -0.02870801983597124, -0.04591235715727241, -0.055906388452528745, -0.05758447818808817, -0.051044808013775485, -0.03753382386867845, -0.01923219082552286, 0.001083231122454544, 0.020450442195287553], [0.01682146201112624, -0.0030504377239427534, -0.023282917998618678, -0.04087748122332642, -0.0531105011915593, -0.05794360707372231, -0.05434810170674743, -0.04249346456637444, -0.023768179473278847, -0.0006244046480190265, 0.023736856668822536, 0.045799991341126285, 0.062229998909092525, 0.07035982049581486, 0.06859998001328096, 0.056709742354204826, 0.03588686033765934, 0.008657389947079534, -0.02142530404701613, -0.05023618574433825, -0.07363004307669668, -0.08801513635410305, -0.09087033573293914, -0.08113297508032842, -0.05940078323094247, -0.027915570341068115, 0.00967439124622255, 0.04874612699774812, 0.08427368513437312, 0.11146564438509889, 0.12638409069038745, 0.12646202687351876, 0.11084883714465928, 0.08053585790834274, 0.03824332783592799, -0.011917947268232813, -0.06496635722696219, -0.11568204606697312, -0.15926805543561576, -0.1919516606120709, -0.2114453674933261, -0.2172059271919349, -0.2104570990429376, -0.19397402774903794, -0.17165959794517877, -0.14797152473917702, -0.12727931813411253, -0.11323980384273444, -0.10827726204493697, -0.11323980384273444, -0.12727931813411253, -0.14797152473917702, -0.17165959794517877, -0.19397402774903794, -0.2104570990429376, -0.2172059271919349, -0.2114453674933261, -0.1919516606120709, -0.15926805543561576, -0.11568204606697312, -0.06496635722696219, -0.011917947268232813, 0.03824332783592799, 0.08053585790834274, 0.11084883714465928, 0.12646202687351876, 0.12638409069038745, 0.11146564438509889, 0.08427368513437312, 0.04874612699774812, 0.00967439124622255, -0.027915570341068115, -0.05940078323094247, -0.08113297508032842, -0.09087033573293914, -0.08801513635410305, -0.07363004307669668, -0.05023618574433825, -0.02142530404701613, 0.008657389947079534, 0.03588686033765934, 0.056709742354204826, 0.06859998001328096, 0.07035982049581486, 0.062229998909092525, 0.045799991341126285, 0.023736856668822536, -0.0006244046480190265, -0.023768179473278847, -0.04249346456637444, -0.05434810170674743, -0.05794360707372231, -0.0531105011915593, -0.04087748122332642, -0.023282917998618678, -0.0030504377239427534, 0.01682146201112624], [0.013453291135757724, -0.006777765423001461, -0.026827098138887163, -0.04367812669845153, -0.054671596840365946, -0.05791317112458218, -0.052583215123440726, -0.039100037980666615, -0.019107634495847278, 0.0047164340701690375, 0.029011417275877496, 0.05019677946332084, 0.06498558144151709, 0.07087551011001388, 0.06654605187084454, 0.05210139849521898, 0.0291187299374325, 0.00048792085273476955, -0.02994211931113844, -0.057867404585463175, -0.07911748638021394, -0.09024911408346632, -0.08906216203065932, -0.07496338046692728, -0.04912248699170504, -0.014392296041115405, 0.025003614325888802, 0.0639800988386149, 0.09723295711056688, 0.11993137750541569, 0.1283681108723834, 0.12047880409415705, 0.09615773797943991, 0.05732325637673133, 0.007719046480121881, -0.04752725507334205, -0.10253368755958539, -0.15140128937400707, -0.18896301773824772, -0.2114453674933261, -0.21695429437747638, -0.20571956617182804, -0.18006326323142124, -0.1440946303599098, -0.10316994937368104, -0.06318762824867372, -0.02981100180351453, -0.007721354015809877, 0, -0.007721354015809877, -0.02981100180351453, -0.06318762824867372, -0.10316994937368104, -0.1440946303599098, -0.18006326323142124, -0.20571956617182804, -0.21695429437747638, -0.2114453674933261, -0.18896301773824772, -0.15140128937400707, -0.10253368755958539, -0.04752725507334205, 0.007719046480121881, 0.05732325637673133, 0.09615773797943991, 0.12047880409415705, 0.1283681108723834, 0.11993137750541569, 0.09723295711056688, 0.0639800988386149, 0.025003614325888802, -0.014392296041115405, -0.04912248699170504, -0.07496338046692728, -0.08906216203065932, -0.09024911408346632, -0.07911748638021394, -0.057867404585463175, -0.02994211931113844, 0.00048792085273476955, 0.0291187299374325, 0.05210139849521898, 0.06654605187084454, 0.07087551011001388, 0.06498558144151709, 0.05019677946332084, 0.029011417275877496, 0.0047164340701690375, -0.019107634495847278, -0.039100037980666615, -0.052583215123440726, -0.05791317112458218, -0.054671596840365946, -0.04367812669845153, -0.026827098138887163, -0.006777765423001461, 0.013453291135757724], [0.010397804581703946, -0.010074346320124224, -0.029875084633517256, -0.04598386580627737, -0.05581166934969179, -0.05760431515473211, -0.05073735510710331, -0.035855125862322736, -0.014827765425508264, 0.009474273505160937, 0.03356204110889651, 0.053816356897235, 0.06701538684882409, 0.07082628231212139, 0.06418811665831267, 0.047526403324657414, 0.022761539499926882, -0.006898290828732119, -0.03735874280383697, -0.06418596062862286, -0.08322634620436055, -0.09121458954930939, -0.0862837098381358, -0.06830155199730398, -0.03897981433617731, -0.0017315258985832118, 0.038712993386835384, 0.07688790726900409, 0.10729890319164657, 0.12516350908341345, 0.1270852736905262, 0.11156838694958249, 0.07929821732974865, 0.03314276244514563, -0.02213364891206292, -0.08041470547532921, -0.1349696066991787, -0.17929156711720928, -0.20792977681405292, -0.2172059271919349, -0.20571956617182804, -0.17457264255108246, -0.12727931813411253, -0.06936781517202409, -0.007721354015809877, 0.050260247232070045, 0.09757263308337553, 0.12847653707692527, 0.13921362262920467, 0.12847653707692527, 0.09757263308337553, 0.050260247232070045, -0.007721354015809877, -0.06936781517202409, -0.12727931813411253, -0.17457264255108246, -0.20571956617182804, -0.2172059271919349, -0.20792977681405292, -0.17929156711720928, -0.1349696066991787, -0.08041470547532921, -0.02213364891206292, 0.03314276244514563, 0.07929821732974865, 0.11156838694958249, 0.1270852736905262, 0.12516350908341345, 0.10729890319164657, 0.07688790726900409, 0.038712993386835384, -0.0017315258985832118, -0.03897981433617731, -0.06830155199730398, -0.0862837098381358, -0.09121458954930939, -0.08322634620436055, -0.06418596062862286, -0.03735874280383697, -0.006898290828732119, 0.022761539499926882, 0.047526403324657414, 0.06418811665831267, 0.07082628231212139, 0.06701538684882409, 0.053816356897235, 0.03356204110889651, 0.009474273505160937, -0.014827765425508264, -0.035855125862322736, -0.05073735510710331, -0.05760431515473211, -0.05581166934969179, -0.04598386580627737, -0.029875084633517256, -0.010074346320124224, 0.010397804581703946], [0.007694458501656245, -0.012927084182596107, -0.03244560848322273, -0.047846582872775476, -0.05661221371282111, -0.05711962618109622, -0.048921309502863976, -0.03286176877900921, -0.011006791150646839, 0.013611565256248178, 0.037403975055435114, 0.05673284975057918, 0.0684506720218071, 0.07038999382283674, 0.06173145237928255, 0.04319098161399095, 0.016991248272574217, -0.01338790351687593, -0.0436536254098885, -0.06928351001764697, -0.08617082522939275, -0.09124212528894639, -0.08295813167342621, -0.06162167556787999, -0.02944057949570285, 0.00967439124622255, 0.0505602074281885, 0.08744941827251093, 0.1147344419427747, 0.1277484855604861, 0.12345725364773678, 0.10096386730405656, 0.061751235188300314, 0.009618882910387172, -0.04968920817281887, -0.10912806601015447, -0.16119160012302736, -0.19884580035609553, -0.21643700355065953, -0.2104570990429376, -0.18006326323142124, -0.12727931813411253, -0.05684542146520225, 0.024272562863428722, 0.10765880942561641, 0.18441589483549095, 0.24620752171785285, 0.28624659585899737, 0.3001054387190354, 0.28624659585899737, 0.24620752171785285, 0.18441589483549095, 0.10765880942561641, 0.024272562863428722, -0.05684542146520225, -0.12727931813411253, -0.18006326323142124, -0.2104570990429376, -0.21643700355065953, -0.19884580035609553, -0.16119160012302736, -0.10912806601015447, -0.04968920817281887, 0.009618882910387172, 0.061751235188300314, 0.10096386730405656, 0.12345725364773678, 0.1277484855604861, 0.1147344419427747, 0.08744941827251093, 0.0505602074281885, 0.00967439124622255, -0.02944057949570285, -0.06162167556787999, -0.08295813167342621, -0.09124212528894639, -0.08617082522939275, -0.06928351001764697, -0.0436536254098885, -0.01338790351687593, 0.016991248272574217, 0.04319098161399095, 0.06173145237928255, 0.07038999382283674, 0.0684506720218071, 0.05673284975057918, 0.037403975055435114, 0.013611565256248178, -0.011006791150646839, -0.03286176877900921, -0.048921309502863976, -0.05711962618109622, -0.05661221371282111, -0.047846582872775476, -0.03244560848322273, -0.012927084182596107, 0.007694458501656245], [0.005372266208323732, -0.015331286697460962, -0.03456223232753799, -0.04931819101787035, -0.05714923632188933, -0.05655065735540448, -0.047230046389992356, -0.030203956964135078, -0.007702905313111807, 0.01710900613069049, 0.04056597152205359, 0.05902634928653124, 0.06941887418516075, 0.06972959592806349, 0.05935531840278692, 0.03926569882297806, 0.01194157076537377, -0.01891185782611035, -0.048845774019986375, -0.07328202023313929, -0.08817854255140753, -0.09065276956548936, -0.07947152951212336, -0.05533099588483479, -0.020876418883192742, 0.019554233149479044, 0.060440656169643954, 0.09578619857909153, 0.11993137750541569, 0.12836820742270624, 0.11844394128676645, 0.0898531900234096, 0.04484186185117994, -0.011917947268232813, -0.0737805782705446, -0.13286182852129808, -0.1809723008253547, -0.21063604857406426, -0.21606660702952618, -0.19397402774903794, -0.1440946303599098, -0.06936781517202409, 0.024272562863428722, 0.12847653707692527, 0.23336329447878862, 0.3286107889405816, 0.4046198965764638, 0.453612290553973, 0.4705279821459223, 0.453612290553973, 0.4046198965764638, 0.3286107889405816, 0.23336329447878862, 0.12847653707692527, 0.024272562863428722, -0.06936781517202409, -0.1440946303599098, -0.19397402774903794, -0.21606660702952618, -0.21063604857406426, -0.1809723008253547, -0.13286182852129808, -0.0737805782705446, -0.011917947268232813, 0.04484186185117994, 0.0898531900234096, 0.11844394128676645, 0.12836820742270624, 0.11993137750541569, 0.09578619857909153, 0.060440656169643954, 0.019554233149479044, -0.020876418883192742, -0.05533099588483479, -0.07947152951212336, -0.09065276956548936, -0.08817854255140753, -0.07328202023313929, -0.048845774019986375, -0.01891185782611035, 0.01194157076537377, 0.03926569882297806, 0.05935531840278692, 0.06972959592806349, 0.06941887418516075, 0.05902634928653124, 0.04056597152205359, 0.01710900613069049, -0.007702905313111807, -0.030203956964135078, -0.047230046389992356, -0.05655065735540448, -0.05714923632188933, -0.04931819101787035, -0.03456223232753799, -0.015331286697460962, 0.005372266208323732], [0.003451784659844099, -0.017287953061458722, -0.0362502121008708, -0.050447486533958925, -0.057490597413702625, -0.05597627019066032, -0.04574251095070121, -0.027948201779063313, -0.004957734516104436, 0.01996034560879418, 0.04308380860776664, 0.06077588090795559, 0.0700370069734079, 0.06898808845801678, 0.05721062202138408, 0.03588686033765934, 0.007709820474616166, -0.023434855005557163, -0.052979942159562435, -0.07631578350383601, -0.08947122957553463, -0.0897399865721011, -0.07615921035235956, -0.049763776809129065, -0.013567782945136511, 0.027739020100814565, 0.06835274705237276, 0.10211042775684408, 0.12334421567515366, 0.12772221064751688, 0.11295987263220698, 0.07929821732974865, 0.02967176829015202, -0.03047255125071308, -0.09369955807552946, -0.15140128937400707, -0.19481174061549258, -0.21609918982720208, -0.20939987758514467, -0.17165959794517877, -0.10316994937368104, -0.007721354015809877, 0.10765880942561641, 0.23336329447878862, 0.358187786013244, 0.4705279821459223, 0.5596510513041225, 0.6168903306371777, 0.6366197723675814, 0.6168903306371777, 0.5596510513041225, 0.4705279821459223, 0.358187786013244, 0.23336329447878862, 0.10765880942561641, -0.007721354015809877, -0.10316994937368104, -0.17165959794517877, -0.20939987758514467, -0.21609918982720208, -0.19481174061549258, -0.15140128937400707, -0.09369955807552946, -0.03047255125071308, 0.02967176829015202, 0.07929821732974865, 0.11295987263220698, 0.12772221064751688, 0.12334421567515366, 0.10211042775684408, 0.06835274705237276, 0.027739020100814565, -0.013567782945136511, -0.049763776809129065, -0.07615921035235956, -0.0897399865721011, -0.08947122957553463, -0.07631578350383601, -0.052979942159562435, -0.023434855005557163, 0.007709820474616166, 0.03588686033765934, 0.05721062202138408, 0.06898808845801678, 0.0700370069734079, 0.06077588090795559, 0.04308380860776664, 0.01996034560879418, -0.004957734516104436, -0.027948201779063313, -0.04574251095070121, -0.05597627019066032, -0.057490597413702625, -0.050447486533958925, -0.0362502121008708, -0.017287953061458722, 0.003451784659844099], [0.0019469824866320303, -0.01880135894126013, -0.03753382386867845, -0.05127759866399337, -0.057694015501266696, -0.055461619698071306, -0.044521946141915236, -0.026145408407212398, -0.0027997817108104317, 0.022167593022248883, 0.04499462472466556, 0.06205358088274775, 0.07040657640544133, 0.06828516210333851, 0.0554192394536295, 0.03315928197343901, 0.00436356498686016, -0.026944861111601357, -0.05611292821370759, -0.07851579478480496, -0.09024911408346632, -0.08875651898175305, -0.07329785945563662, -0.04518170035546226, -0.007715201506788209, 0.034137934869462254, 0.07436019359323173, 0.1066743541570273, 0.12542954171329684, 0.12646202687351876, 0.10781111157989003, 0.07018417391350773, 0.017093610411863445, -0.04537133651098209, -0.10912806601015447, -0.16498229995422303, -0.20370930239206525, -0.2172059271919349, -0.19957051786185215, -0.14797152473917702, -0.06318762824867372, 0.050260247232070045, 0.18441589483549095, 0.3286107889405816, 0.4705279821459223, 0.5974882245272354, 0.6978101121849585, 0.762084690877979, 0.7842133035765372, 0.762084690877979, 0.6978101121849585, 0.5974882245272354, 0.4705279821459223, 0.3286107889405816, 0.18441589483549095, 0.050260247232070045, -0.06318762824867372, -0.14797152473917702, -0.19957051786185215, -0.2172059271919349, -0.20370930239206525, -0.16498229995422303, -0.10912806601015447, -0.04537133651098209, 0.017093610411863445, 0.07018417391350773, 0.10781111157989003, 0.12646202687351876, 0.12542954171329684, 0.1066743541570273, 0.07436019359323173, 0.034137934869462254, -0.007715201506788209, -0.04518170035546226, -0.07329785945563662, -0.08875651898175305, -0.09024911408346632, -0.07851579478480496, -0.05611292821370759, -0.026944861111601357, 0.00436356498686016, 0.03315928197343901, 0.0554192394536295, 0.06828516210333851, 0.07040657640544133, 0.06205358088274775, 0.04499462472466556, 0.022167593022248883, -0.0027997817108104317, -0.026145408407212398, -0.044521946141915236, -0.055461619698071306, -0.057694015501266696, -0.05127759866399337, -0.03753382386867845, -0.01880135894126013, 0.0019469824866320303], [0.000866888257962456, -0.01987701194604477, -0.03843418261610348, -0.05184400011432848, -0.05780562875263666, -0.05505760697435419, -0.04361650222140574, -0.02483277825192081, -0.0012475810549904855, 0.023736856668822536, 0.04633220955958977, 0.06292008416246539, 0.07060984119315501, 0.06771515004642782, 0.054074408072778656, 0.031159674327330144, 0.001947226385121772, -0.029443509031926877, -0.05830172241169848, -0.0799969408960797, -0.09067896751241898, -0.08790551471036315, -0.07110217746809566, -0.04177837921381129, -0.003453627382958198, 0.038712993386835384, 0.0785557589578467, 0.10972478180637592, 0.12659488019303988, 0.1251402627158088, 0.10365274426192721, 0.06319607805439727, 0.007719046480121881, -0.05620829548270173, -0.12002257644951186, -0.1740980863671481, -0.2088772394837565, -0.21606660702952618, -0.18975057476915372, -0.12727931813411253, -0.02981100180351453, 0.09757263308337553, 0.24620752171785285, 0.4046198965764638, 0.5596510513041225, 0.6978101121849585, 0.8067004676006326, 0.876354018334807, 0.9003163161571062, 0.876354018334807, 0.8067004676006326, 0.6978101121849585, 0.5596510513041225, 0.4046198965764638, 0.24620752171785285, 0.09757263308337553, -0.02981100180351453, -0.12727931813411253, -0.18975057476915372, -0.21606660702952618, -0.2088772394837565, -0.1740980863671481, -0.12002257644951186, -0.05620829548270173, 0.007719046480121881, 0.06319607805439727, 0.10365274426192721, 0.1251402627158088, 0.12659488019303988, 0.10972478180637592, 0.0785557589578467, 0.038712993386835384, -0.003453627382958198, -0.04177837921381129, -0.07110217746809566, -0.08790551471036315, -0.09067896751241898, -0.0799969408960797, -0.05830172241169848, -0.029443509031926877, 0.001947226385121772, 0.031159674327330144, 0.054074408072778656, 0.06771515004642782, 0.07060984119315501, 0.06292008416246539, 0.04633220955958977, 0.023736856668822536, -0.0012475810549904855, -0.02483277825192081, -0.04361650222140574, -0.05505760697435419, -0.05780562875263666, -0.05184400011432848, -0.03843418261610348, -0.01987701194604477, 0.000866888257962456], [0.00021694266699616769, -0.020520025916277676, -0.038967558916015534, -0.0521730309375773, -0.05785900766276947, -0.05480063837205414, -0.04305993166613821, -0.024035517556369672, -0.0003123523378733905, 0.024674977052713404, 0.04712332320782043, 0.06342106706713174, 0.07070720480428683, 0.06734590797103036, 0.053241651373662324, 0.029939983781014083, 0.00048792085273476955, -0.03093805295208876, -0.0595939790935052, -0.08084815582153988, -0.09088550285539078, -0.08733500824005588, -0.06972438535666871, -0.03968567784606773, -0.0008669172451297127, 0.041455847041530124, 0.08102992044248501, 0.11146564438509889, 0.12715897675548665, 0.12417433933411735, 0.10096386730405656, 0.058814763461859376, 0.0019473727330142222, -0.06277073679229504, -0.1264802663529934, -0.17929156711720928, -0.2114453674933261, -0.21453573579041268, -0.18264429055191253, -0.11323980384273444, -0.007721354015809877, 0.12847653707692527, 0.28624659585899737, 0.453612290553973, 0.6168903306371777, 0.762084690877979, 0.876354018334807, 0.9493827312062388, 0.9744953584044327, 0.9493827312062388, 0.876354018334807, 0.762084690877979, 0.6168903306371777, 0.453612290553973, 0.28624659585899737, 0.12847653707692527, -0.007721354015809877, -0.11323980384273444, -0.18264429055191253, -0.21453573579041268, -0.2114453674933261, -0.17929156711720928, -0.1264802663529934, -0.06277073679229504, 0.0019473727330142222, 0.058814763461859376, 0.10096386730405656, 0.12417433933411735, 0.12715897675548665, 0.11146564438509889, 0.08102992044248501, 0.041455847041530124, -0.0008669172451297127, -0.03968567784606773, -0.06972438535666871, -0.08733500824005588, -0.09088550285539078, -0.08084815582153988, -0.0595939790935052, -0.03093805295208876, 0.00048792085273476955, 0.029939983781014083, 0.053241651373662324, 0.06734590797103036, 0.07070720480428683, 0.06342106706713174, 0.04712332320782043, 0.024674977052713404, -0.0003123523378733905, -0.024035517556369672, -0.04305993166613821, -0.05480063837205414, -0.05785900766276947, -0.0521730309375773, -0.038967558916015534, -0.020520025916277676, 0.00021694266699616769], [0, -0.020733943795838993, -0.03914418765900462, -0.05228088690510248, -0.057874524760689224, -0.054712556063479335, -0.042872205531290765, -0.023768179473278847, 0, 0.02498706047190853, 0.04738506927142664, 0.06358486245215166, 0.0707355302630646, 0.06721828316370318, 0.05295978330335918, 0.0295301623758919, 0, -0.031435334142078476, -0.06002108774380708, -0.08112551416309005, -0.09094568176679733, -0.08713481150850413, -0.06925510124285432, -0.03897981433617731, 0, 0.04236936340888838, 0.0818469378324642, 0.1120304719395053, 0.12732395447351627, 0.12382315319629535, 0.10003514623967846, 0.05732325637673133, 0, -0.06496635722696219, -0.1286166165938723, -0.1809723008253547, -0.2122065907891938, -0.21387635552087378, -0.18006326323142124, -0.10827726204493697, 0, 0.13921362262920467, 0.3001054387190354, 0.4705279821459223, 0.6366197723675814, 0.7842133035765372, 0.9003163161571062, 0.9744953584044327, 1, 0.9744953584044327, 0.9003163161571062, 0.7842133035765372, 0.6366197723675814, 0.4705279821459223, 0.3001054387190354, 0.13921362262920467, 0, -0.10827726204493697, -0.18006326323142124, -0.21387635552087378, -0.2122065907891938, -0.1809723008253547, -0.1286166165938723, -0.06496635722696219, 0, 0.05732325637673133, 0.10003514623967846, 0.12382315319629535, 0.12732395447351627, 0.1120304719395053, 0.0818469378324642, 0.04236936340888838, 0, -0.03897981433617731, -0.06925510124285432, -0.08713481150850413, -0.09094568176679733, -0.08112551416309005, -0.06002108774380708, -0.031435334142078476, 0, 0.0295301623758919, 0.05295978330335918, 0.06721828316370318, 0.0707355302630646, 0.06358486245215166, 0.04738506927142664, 0.02498706047190853, 0, -0.023768179473278847, -0.042872205531290765, -0.054712556063479335, -0.057874524760689224, -0.05228088690510248, -0.03914418765900462, -0.020733943795838993, 0], [0.00021694266699616769, -0.020520025916277676, -0.038967558916015534, -0.0521730309375773, -0.05785900766276947, -0.05480063837205414, -0.04305993166613821, -0.024035517556369672, -0.0003123523378733905, 0.024674977052713404, 0.04712332320782043, 0.06342106706713174, 0.07070720480428683, 0.06734590797103036, 0.053241651373662324, 0.029939983781014083, 0.00048792085273476955, -0.03093805295208876, -0.0595939790935052, -0.08084815582153988, -0.09088550285539078, -0.08733500824005588, -0.06972438535666871, -0.03968567784606773, -0.0008669172451297127, 0.041455847041530124, 0.08102992044248501, 0.11146564438509889, 0.12715897675548665, 0.12417433933411735, 0.10096386730405656, 0.058814763461859376, 0.0019473727330142222, -0.06277073679229504, -0.1264802663529934, -0.17929156711720928, -0.2114453674933261, -0.21453573579041268, -0.18264429055191253, -0.11323980384273444, -0.007721354015809877, 0.12847653707692527, 0.28624659585899737, 0.453612290553973, 0.6168903306371777, 0.762084690877979, 0.876354018334807, 0.9493827312062388, 0.9744953584044327, 0.9493827312062388, 0.876354018334807, 0.762084690877979, 0.6168903306371777, 0.453612290553973, 0.28624659585899737, 0.12847653707692527, -0.007721354015809877, -0.11323980384273444, -0.18264429055191253, -0.21453573579041268, -0.2114453674933261, -0.17929156711720928, -0.1264802663529934, -0.06277073679229504, 0.0019473727330142222, 0.058814763461859376, 0.10096386730405656, 0.12417433933411735, 0.12715897675548665, 0.11146564438509889, 0.08102992044248501, 0.041455847041530124, -0.0008669172451297127, -0.03968567784606773, -0.06972438535666871, -0.08733500824005588, -0.09088550285539078, -0.08084815582153988, -0.0595939790935052, -0.03093805295208876, 0.00048792085273476955, 0.029939983781014083, 0.053241651373662324, 0.06734590797103036, 0.07070720480428683, 0.06342106706713174, 0.04712332320782043, 0.024674977052713404, -0.0003123523378733905, -0.024035517556369672, -0.04305993166613821, -0.05480063837205414, -0.05785900766276947, -0.0521730309375773, -0.038967558916015534, -0.020520025916277676, 0.00021694266699616769], [0.000866888257962456, -0.01987701194604477, -0.03843418261610348, -0.05184400011432848, -0.05780562875263666, -0.05505760697435419, -0.04361650222140574, -0.02483277825192081, -0.0012475810549904855, 0.023736856668822536, 0.04633220955958977, 0.06292008416246539, 0.07060984119315501, 0.06771515004642782, 0.054074408072778656, 0.031159674327330144, 0.001947226385121772, -0.029443509031926877, -0.05830172241169848, -0.0799969408960797, -0.09067896751241898, -0.08790551471036315, -0.07110217746809566, -0.04177837921381129, -0.003453627382958198, 0.038712993386835384, 0.0785557589578467, 0.10972478180637592, 0.12659488019303988, 0.1251402627158088, 0.10365274426192721, 0.06319607805439727, 0.007719046480121881, -0.05620829548270173, -0.12002257644951186, -0.1740980863671481, -0.2088772394837565, -0.21606660702952618, -0.18975057476915372, -0.12727931813411253, -0.02981100180351453, 0.09757263308337553, 0.24620752171785285, 0.4046198965764638, 0.5596510513041225, 0.6978101121849585, 0.8067004676006326, 0.876354018334807, 0.9003163161571062, 0.876354018334807, 0.8067004676006326, 0.6978101121849585, 0.5596510513041225, 0.4046198965764638, 0.24620752171785285, 0.09757263308337553, -0.02981100180351453, -0.12727931813411253, -0.18975057476915372, -0.21606660702952618, -0.2088772394837565, -0.1740980863671481, -0.12002257644951186, -0.05620829548270173, 0.007719046480121881, 0.06319607805439727, 0.10365274426192721, 0.1251402627158088, 0.12659488019303988, 0.10972478180637592, 0.0785557589578467, 0.038712993386835384, -0.003453627382958198, -0.04177837921381129, -0.07110217746809566, -0.08790551471036315, -0.09067896751241898, -0.0799969408960797, -0.05830172241169848, -0.029443509031926877, 0.001947226385121772, 0.031159674327330144, 0.054074408072778656, 0.06771515004642782, 0.07060984119315501, 0.06292008416246539, 0.04633220955958977, 0.023736856668822536, -0.0012475810549904855, -0.02483277825192081, -0.04361650222140574, -0.05505760697435419, -0.05780562875263666, -0.05184400011432848, -0.03843418261610348, -0.01987701194604477, 0.000866888257962456], [0.0019469824866320303, -0.01880135894126013, -0.03753382386867845, -0.05127759866399337, -0.057694015501266696, -0.055461619698071306, -0.044521946141915236, -0.026145408407212398, -0.0027997817108104317, 0.022167593022248883, 0.04499462472466556, 0.06205358088274775, 0.07040657640544133, 0.06828516210333851, 0.0554192394536295, 0.03315928197343901, 0.00436356498686016, -0.026944861111601357, -0.05611292821370759, -0.07851579478480496, -0.09024911408346632, -0.08875651898175305, -0.07329785945563662, -0.04518170035546226, -0.007715201506788209, 0.034137934869462254, 0.07436019359323173, 0.1066743541570273, 0.12542954171329684, 0.12646202687351876, 0.10781111157989003, 0.07018417391350773, 0.017093610411863445, -0.04537133651098209, -0.10912806601015447, -0.16498229995422303, -0.20370930239206525, -0.2172059271919349, -0.19957051786185215, -0.14797152473917702, -0.06318762824867372, 0.050260247232070045, 0.18441589483549095, 0.3286107889405816, 0.4705279821459223, 0.5974882245272354, 0.6978101121849585, 0.762084690877979, 0.7842133035765372, 0.762084690877979, 0.6978101121849585, 0.5974882245272354, 0.4705279821459223, 0.3286107889405816, 0.18441589483549095, 0.050260247232070045, -0.06318762824867372, -0.14797152473917702, -0.19957051786185215, -0.2172059271919349, -0.20370930239206525, -0.16498229995422303, -0.10912806601015447, -0.04537133651098209, 0.017093610411863445, 0.07018417391350773, 0.10781111157989003, 0.12646202687351876, 0.12542954171329684, 0.1066743541570273, 0.07436019359323173, 0.034137934869462254, -0.007715201506788209, -0.04518170035546226, -0.07329785945563662, -0.08875651898175305, -0.09024911408346632, -0.07851579478480496, -0.05611292821370759, -0.026944861111601357, 0.00436356498686016, 0.03315928197343901, 0.0554192394536295, 0.06828516210333851, 0.07040657640544133, 0.06205358088274775, 0.04499462472466556, 0.022167593022248883, -0.0027997817108104317, -0.026145408407212398, -0.044521946141915236, -0.055461619698071306, -0.057694015501266696, -0.05127759866399337, -0.03753382386867845, -0.01880135894126013, 0.0019469824866320303], [0.003451784659844099, -0.017287953061458722, -0.0362502121008708, -0.050447486533958925, -0.057490597413702625, -0.05597627019066032, -0.04574251095070121, -0.027948201779063313, -0.004957734516104436, 0.01996034560879418, 0.04308380860776664, 0.06077588090795559, 0.0700370069734079, 0.06898808845801678, 0.05721062202138408, 0.03588686033765934, 0.007709820474616166, -0.023434855005557163, -0.052979942159562435, -0.07631578350383601, -0.08947122957553463, -0.0897399865721011, -0.07615921035235956, -0.049763776809129065, -0.013567782945136511, 0.027739020100814565, 0.06835274705237276, 0.10211042775684408, 0.12334421567515366, 0.12772221064751688, 0.11295987263220698, 0.07929821732974865, 0.02967176829015202, -0.03047255125071308, -0.09369955807552946, -0.15140128937400707, -0.19481174061549258, -0.21609918982720208, -0.20939987758514467, -0.17165959794517877, -0.10316994937368104, -0.007721354015809877, 0.10765880942561641, 0.23336329447878862, 0.358187786013244, 0.4705279821459223, 0.5596510513041225, 0.6168903306371777, 0.6366197723675814, 0.6168903306371777, 0.5596510513041225, 0.4705279821459223, 0.358187786013244, 0.23336329447878862, 0.10765880942561641, -0.007721354015809877, -0.10316994937368104, -0.17165959794517877, -0.20939987758514467, -0.21609918982720208, -0.19481174061549258, -0.15140128937400707, -0.09369955807552946, -0.03047255125071308, 0.02967176829015202, 0.07929821732974865, 0.11295987263220698, 0.12772221064751688, 0.12334421567515366, 0.10211042775684408, 0.06835274705237276, 0.027739020100814565, -0.013567782945136511, -0.049763776809129065, -0.07615921035235956, -0.0897399865721011, -0.08947122957553463, -0.07631578350383601, -0.052979942159562435, -0.023434855005557163, 0.007709820474616166, 0.03588686033765934, 0.05721062202138408, 0.06898808845801678, 0.0700370069734079, 0.06077588090795559, 0.04308380860776664, 0.01996034560879418, -0.004957734516104436, -0.027948201779063313, -0.04574251095070121, -0.05597627019066032, -0.057490597413702625, -0.050447486533958925, -0.0362502121008708, -0.017287953061458722, 0.003451784659844099], [0.005372266208323732, -0.015331286697460962, -0.03456223232753799, -0.04931819101787035, -0.05714923632188933, -0.05655065735540448, -0.047230046389992356, -0.030203956964135078, -0.007702905313111807, 0.01710900613069049, 0.04056597152205359, 0.05902634928653124, 0.06941887418516075, 0.06972959592806349, 0.05935531840278692, 0.03926569882297806, 0.01194157076537377, -0.01891185782611035, -0.048845774019986375, -0.07328202023313929, -0.08817854255140753, -0.09065276956548936, -0.07947152951212336, -0.05533099588483479, -0.020876418883192742, 0.019554233149479044, 0.060440656169643954, 0.09578619857909153, 0.11993137750541569, 0.12836820742270624, 0.11844394128676645, 0.0898531900234096, 0.04484186185117994, -0.011917947268232813, -0.0737805782705446, -0.13286182852129808, -0.1809723008253547, -0.21063604857406426, -0.21606660702952618, -0.19397402774903794, -0.1440946303599098, -0.06936781517202409, 0.024272562863428722, 0.12847653707692527, 0.23336329447878862, 0.3286107889405816, 0.4046198965764638, 0.453612290553973, 0.4705279821459223, 0.453612290553973, 0.4046198965764638, 0.3286107889405816, 0.23336329447878862, 0.12847653707692527, 0.024272562863428722, -0.06936781517202409, -0.1440946303599098, -0.19397402774903794, -0.21606660702952618, -0.21063604857406426, -0.1809723008253547, -0.13286182852129808, -0.0737805782705446, -0.011917947268232813, 0.04484186185117994, 0.0898531900234096, 0.11844394128676645, 0.12836820742270624, 0.11993137750541569, 0.09578619857909153, 0.060440656169643954, 0.019554233149479044, -0.020876418883192742, -0.05533099588483479, -0.07947152951212336, -0.09065276956548936, -0.08817854255140753, -0.07328202023313929, -0.048845774019986375, -0.01891185782611035, 0.01194157076537377, 0.03926569882297806, 0.05935531840278692, 0.06972959592806349, 0.06941887418516075, 0.05902634928653124, 0.04056597152205359, 0.01710900613069049, -0.007702905313111807, -0.030203956964135078, -0.047230046389992356, -0.05655065735540448, -0.05714923632188933, -0.04931819101787035, -0.03456223232753799, -0.015331286697460962, 0.005372266208323732], [0.007694458501656245, -0.012927084182596107, -0.03244560848322273, -0.047846582872775476, -0.05661221371282111, -0.05711962618109622, -0.048921309502863976, -0.03286176877900921, -0.011006791150646839, 0.013611565256248178, 0.037403975055435114, 0.05673284975057918, 0.0684506720218071, 0.07038999382283674, 0.06173145237928255, 0.04319098161399095, 0.016991248272574217, -0.01338790351687593, -0.0436536254098885, -0.06928351001764697, -0.08617082522939275, -0.09124212528894639, -0.08295813167342621, -0.06162167556787999, -0.02944057949570285, 0.00967439124622255, 0.0505602074281885, 0.08744941827251093, 0.1147344419427747, 0.1277484855604861, 0.12345725364773678, 0.10096386730405656, 0.061751235188300314, 0.009618882910387172, -0.04968920817281887, -0.10912806601015447, -0.16119160012302736, -0.19884580035609553, -0.21643700355065953, -0.2104570990429376, -0.18006326323142124, -0.12727931813411253, -0.05684542146520225, 0.024272562863428722, 0.10765880942561641, 0.18441589483549095, 0.24620752171785285, 0.28624659585899737, 0.3001054387190354, 0.28624659585899737, 0.24620752171785285, 0.18441589483549095, 0.10765880942561641, 0.024272562863428722, -0.05684542146520225, -0.12727931813411253, -0.18006326323142124, -0.2104570990429376, -0.21643700355065953, -0.19884580035609553, -0.16119160012302736, -0.10912806601015447, -0.04968920817281887, 0.009618882910387172, 0.061751235188300314, 0.10096386730405656, 0.12345725364773678, 0.1277484855604861, 0.1147344419427747, 0.08744941827251093, 0.0505602074281885, 0.00967439124622255, -0.02944057949570285, -0.06162167556787999, -0.08295813167342621, -0.09124212528894639, -0.08617082522939275, -0.06928351001764697, -0.0436536254098885, -0.01338790351687593, 0.016991248272574217, 0.04319098161399095, 0.06173145237928255, 0.07038999382283674, 0.0684506720218071, 0.05673284975057918, 0.037403975055435114, 0.013611565256248178, -0.011006791150646839, -0.03286176877900921, -0.048921309502863976, -0.05711962618109622, -0.05661221371282111, -0.047846582872775476, -0.03244560848322273, -0.012927084182596107, 0.007694458501656245], [0.010397804581703946, -0.010074346320124224, -0.029875084633517256, -0.04598386580627737, -0.05581166934969179, -0.05760431515473211, -0.05073735510710331, -0.035855125862322736, -0.014827765425508264, 0.009474273505160937, 0.03356204110889651, 0.053816356897235, 0.06701538684882409, 0.07082628231212139, 0.06418811665831267, 0.047526403324657414, 0.022761539499926882, -0.006898290828732119, -0.03735874280383697, -0.06418596062862286, -0.08322634620436055, -0.09121458954930939, -0.0862837098381358, -0.06830155199730398, -0.03897981433617731, -0.0017315258985832118, 0.038712993386835384, 0.07688790726900409, 0.10729890319164657, 0.12516350908341345, 0.1270852736905262, 0.11156838694958249, 0.07929821732974865, 0.03314276244514563, -0.02213364891206292, -0.08041470547532921, -0.1349696066991787, -0.17929156711720928, -0.20792977681405292, -0.2172059271919349, -0.20571956617182804, -0.17457264255108246, -0.12727931813411253, -0.06936781517202409, -0.007721354015809877, 0.050260247232070045, 0.09757263308337553, 0.12847653707692527, 0.13921362262920467, 0.12847653707692527, 0.09757263308337553, 0.050260247232070045, -0.007721354015809877, -0.06936781517202409, -0.12727931813411253, -0.17457264255108246, -0.20571956617182804, -0.2172059271919349, -0.20792977681405292, -0.17929156711720928, -0.1349696066991787, -0.08041470547532921, -0.02213364891206292, 0.03314276244514563, 0.07929821732974865, 0.11156838694958249, 0.1270852736905262, 0.12516350908341345, 0.10729890319164657, 0.07688790726900409, 0.038712993386835384, -0.0017315258985832118, -0.03897981433617731, -0.06830155199730398, -0.0862837098381358, -0.09121458954930939, -0.08322634620436055, -0.06418596062862286, -0.03735874280383697, -0.006898290828732119, 0.022761539499926882, 0.047526403324657414, 0.06418811665831267, 0.07082628231212139, 0.06701538684882409, 0.053816356897235, 0.03356204110889651, 0.009474273505160937, -0.014827765425508264, -0.035855125862322736, -0.05073735510710331, -0.05760431515473211, -0.05581166934969179, -0.04598386580627737, -0.029875084633517256, -0.010074346320124224, 0.010397804581703946], [0.013453291135757724, -0.006777765423001461, -0.026827098138887163, -0.04367812669845153, -0.054671596840365946, -0.05791317112458218, -0.052583215123440726, -0.039100037980666615, -0.019107634495847278, 0.0047164340701690375, 0.029011417275877496, 0.05019677946332084, 0.06498558144151709, 0.07087551011001388, 0.06654605187084454, 0.05210139849521898, 0.0291187299374325, 0.00048792085273476955, -0.02994211931113844, -0.057867404585463175, -0.07911748638021394, -0.09024911408346632, -0.08906216203065932, -0.07496338046692728, -0.04912248699170504, -0.014392296041115405, 0.025003614325888802, 0.0639800988386149, 0.09723295711056688, 0.11993137750541569, 0.1283681108723834, 0.12047880409415705, 0.09615773797943991, 0.05732325637673133, 0.007719046480121881, -0.04752725507334205, -0.10253368755958539, -0.15140128937400707, -0.18896301773824772, -0.2114453674933261, -0.21695429437747638, -0.20571956617182804, -0.18006326323142124, -0.1440946303599098, -0.10316994937368104, -0.06318762824867372, -0.02981100180351453, -0.007721354015809877, 0, -0.007721354015809877, -0.02981100180351453, -0.06318762824867372, -0.10316994937368104, -0.1440946303599098, -0.18006326323142124, -0.20571956617182804, -0.21695429437747638, -0.2114453674933261, -0.18896301773824772, -0.15140128937400707, -0.10253368755958539, -0.04752725507334205, 0.007719046480121881, 0.05732325637673133, 0.09615773797943991, 0.12047880409415705, 0.1283681108723834, 0.11993137750541569, 0.09723295711056688, 0.0639800988386149, 0.025003614325888802, -0.014392296041115405, -0.04912248699170504, -0.07496338046692728, -0.08906216203065932, -0.09024911408346632, -0.07911748638021394, -0.057867404585463175, -0.02994211931113844, 0.00048792085273476955, 0.0291187299374325, 0.05210139849521898, 0.06654605187084454, 0.07087551011001388, 0.06498558144151709, 0.05019677946332084, 0.029011417275877496, 0.0047164340701690375, -0.019107634495847278, -0.039100037980666615, -0.052583215123440726, -0.05791317112458218, -0.054671596840365946, -0.04367812669845153, -0.026827098138887163, -0.006777765423001461, 0.013453291135757724], [0.01682146201112624, -0.0030504377239427534, -0.023282917998618678, -0.04087748122332642, -0.0531105011915593, -0.05794360707372231, -0.05434810170674743, -0.04249346456637444, -0.023768179473278847, -0.0006244046480190265, 0.023736856668822536, 0.045799991341126285, 0.062229998909092525, 0.07035982049581486, 0.06859998001328096, 0.056709742354204826, 0.03588686033765934, 0.008657389947079534, -0.02142530404701613, -0.05023618574433825, -0.07363004307669668, -0.08801513635410305, -0.09087033573293914, -0.08113297508032842, -0.05940078323094247, -0.027915570341068115, 0.00967439124622255, 0.04874612699774812, 0.08427368513437312, 0.11146564438509889, 0.12638409069038745, 0.12646202687351876, 0.11084883714465928, 0.08053585790834274, 0.03824332783592799, -0.011917947268232813, -0.06496635722696219, -0.11568204606697312, -0.15926805543561576, -0.1919516606120709, -0.2114453674933261, -0.2172059271919349, -0.2104570990429376, -0.19397402774903794, -0.17165959794517877, -0.14797152473917702, -0.12727931813411253, -0.11323980384273444, -0.10827726204493697, -0.11323980384273444, -0.12727931813411253, -0.14797152473917702, -0.17165959794517877, -0.19397402774903794, -0.2104570990429376, -0.2172059271919349, -0.2114453674933261, -0.1919516606120709, -0.15926805543561576, -0.11568204606697312, -0.06496635722696219, -0.011917947268232813, 0.03824332783592799, 0.08053585790834274, 0.11084883714465928, 0.12646202687351876, 0.12638409069038745, 0.11146564438509889, 0.08427368513437312, 0.04874612699774812, 0.00967439124622255, -0.027915570341068115, -0.05940078323094247, -0.08113297508032842, -0.09087033573293914, -0.08801513635410305, -0.07363004307669668, -0.05023618574433825, -0.02142530404701613, 0.008657389947079534, 0.03588686033765934, 0.056709742354204826, 0.06859998001328096, 0.07035982049581486, 0.062229998909092525, 0.045799991341126285, 0.023736856668822536, -0.0006244046480190265, -0.023768179473278847, -0.04249346456637444, -0.05434810170674743, -0.05794360707372231, -0.0531105011915593, -0.04087748122332642, -0.023282917998618678, -0.0030504377239427534, 0.01682146201112624], [0.020450442195287553, 0.001083231122454544, -0.01923219082552286, -0.03753382386867845, -0.051044808013775485, -0.05758447818808817, -0.055906388452528745, -0.04591235715727241, -0.02870801983597124, -0.006487170632833471, 0.017743676628374457, 0.04056597152205359, 0.05862177844952994, 0.06909350912525554, 0.07012316566041692, 0.06111033330226716, 0.04284369112727859, 0.017443035399983122, -0.011885271189354125, -0.041250477502671586, -0.06658580427022456, -0.08419578943425635, -0.09126872367241032, -0.0862837098381358, -0.06925510124285432, -0.04177837921381129, -0.0068680615855205, 0.031393629131117665, 0.06835274705237276, 0.09935967585773438, 0.12034937613997415, 0.12834896279272995, 0.12184527361529092, 0.10096386730405656, 0.0674363619373826, 0.024361694712850233, -0.024205207915655492, -0.0737805782705446, -0.12002257644951186, -0.15926805543561576, -0.18896301773824772, -0.20792977681405292, -0.21643700355065953, -0.21606660702952618, -0.20939987758514467, -0.19957051786185215, -0.18975057476915372, -0.18264429055191253, -0.18006326323142124, -0.18264429055191253, -0.18975057476915372, -0.19957051786185215, -0.20939987758514467, -0.21606660702952618, -0.21643700355065953, -0.20792977681405292, -0.18896301773824772, -0.15926805543561576, -0.12002257644951186, -0.0737805782705446, -0.024205207915655492, 0.024361694712850233, 0.0674363619373826, 0.10096386730405656, 0.12184527361529092, 0.12834896279272995, 0.12034937613997415, 0.09935967585773438, 0.06835274705237276, 0.031393629131117665, -0.0068680615855205, -0.04177837921381129, -0.06925510124285432, -0.0862837098381358, -0.09126872367241032, -0.08419578943425635, -0.06658580427022456, -0.041250477502671586, -0.011885271189354125, 0.017443035399983122, 0.04284369112727859, 0.06111033330226716, 0.07012316566041692, 0.06909350912525554, 0.05862177844952994, 0.04056597152205359, 0.017743676628374457, -0.006487170632833471, -0.02870801983597124, -0.04591235715727241, -0.055906388452528745, -0.05758447818808817, -0.051044808013775485, -0.03753382386867845, -0.01923219082552286, 0.001083231122454544, 0.020450442195287553], [0.02427413001985883, 0.0055845682765417, -0.01467679622724445, -0.033607151643790266, -0.04839308154172929, -0.05671953314497683, -0.05711962618109622, -0.04921365683929495, -0.033800193473608776, -0.01278230543892609, 0.011065047478789601, 0.03445782405725266, 0.05404824184683762, 0.06689229989447039, 0.07087469966135411, 0.06503095272323879, 0.04971954596694955, 0.02661691958010542, -0.0014679872505029663, -0.03093805295208876, -0.057867404585463175, -0.07851579478480496, -0.08982943791608139, -0.08986083578529938, -0.07805041383509298, -0.05533099588483479, -0.024039798754518064, 0.012351515641047391, 0.04965369863847285, 0.08346890602582428, 0.10972478180637592, 0.12516350908341345, 0.12772221064751688, 0.11675625942134887, 0.0930787720578656, 0.058814763461859376, 0.017093610411863445, -0.02837490037624331, -0.0737805782705446, -0.11568204606697312, -0.15140128937400707, -0.17929156711720928, -0.19884580035609553, -0.21063604857406426, -0.21609918982720208, -0.2172059271919349, -0.21606660702952618, -0.21453573579041268, -0.21387635552087378, -0.21453573579041268, -0.21606660702952618, -0.2172059271919349, -0.21609918982720208, -0.21063604857406426, -0.19884580035609553, -0.17929156711720928, -0.15140128937400707, -0.11568204606697312, -0.0737805782705446, -0.02837490037624331, 0.017093610411863445, 0.058814763461859376, 0.0930787720578656, 0.11675625942134887, 0.12772221064751688, 0.12516350908341345, 0.10972478180637592, 0.08346890602582428, 0.04965369863847285, 0.012351515641047391, -0.024039798754518064, -0.05533099588483479, -0.07805041383509298, -0.08986083578529938, -0.08982943791608139, -0.07851579478480496, -0.057867404585463175, -0.03093805295208876, -0.0014679872505029663, 0.02661691958010542, 0.04971954596694955, 0.06503095272323879, 0.07087469966135411, 0.06689229989447039, 0.05404824184683762, 0.03445782405725266, 0.011065047478789601, -0.01278230543892609, -0.033800193473608776, -0.04921365683929495, -0.05711962618109622, -0.05671953314497683, -0.04839308154172929, -0.033607151643790266, -0.01467679622724445, 0.0055845682765417, 0.02427413001985883], [0.02821074311733881, 0.010397804581703946, -0.00963486393394146, -0.02907037696294276, -0.04508105740142656, -0.05523195728282429, -0.057839829610288405, -0.0522355964429413, -0.03889089243128978, -0.019387603268548395, 0.003769037731855356, 0.027471290307035087, 0.04842202918439252, 0.06358486245215166, 0.07060984119315501, 0.06817569432179703, 0.05620009257242416, 0.03588686033765934, 0.009600955849587763, -0.01941457519099837, -0.04744383216498181, -0.07077275885017735, -0.08617082522939275, -0.09131593213649357, -0.08510618967193917, -0.06781730438134298, -0.041084986730345295, -0.007715201506788209, 0.028652003881607768, 0.0639800988386149, 0.0943171278902554, 0.11625731080459428, 0.12732395447351627, 0.1262261649136082, 0.11295987263220698, 0.08874542078444292, 0.055816321017738854, 0.017093610411863445, -0.024205207915655492, -0.06496635722696219, -0.10253368755958539, -0.1349696066991787, -0.16119160012302736, -0.1809723008253547, -0.19481174061549258, -0.20370930239206525, -0.2088772394837565, -0.2114453674933261, -0.2122065907891938, -0.2114453674933261, -0.2088772394837565, -0.20370930239206525, -0.19481174061549258, -0.1809723008253547, -0.16119160012302736, -0.1349696066991787, -0.10253368755958539, -0.06496635722696219, -0.024205207915655492, 0.017093610411863445, 0.055816321017738854, 0.08874542078444292, 0.11295987263220698, 0.1262261649136082, 0.12732395447351627, 0.11625731080459428, 0.0943171278902554, 0.0639800988386149, 0.028652003881607768, -0.007715201506788209, -0.041084986730345295, -0.06781730438134298, -0.08510618967193917, -0.09131593213649357, -0.08617082522939275, -0.07077275885017735, -0.04744383216498181, -0.01941457519099837, 0.009600955849587763, 0.03588686033765934, 0.05620009257242416, 0.06817569432179703, 0.07060984119315501, 0.06358486245215166, 0.04842202918439252, 0.027471290307035087, 0.003769037731855356, -0.019387603268548395, -0.03889089243128978, -0.0522355964429413, -0.057839829610288405, -0.05523195728282429, -0.04508105740142656, -0.02907037696294276, -0.00963486393394146, 0.010397804581703946, 0.02821074311733881], [0.0321619272477622, 0.015447595491992866, -0.00414474927275206, -0.02391447862413198, -0.04104742571834398, -0.053010059675862406, -0.057914223509020056, -0.05480063837205414, -0.04379981483193957, -0.026145408407212398, -0.004035181692455175, 0.019644189549118916, 0.04169314253555411, 0.05902634928653124, 0.06909350912525554, 0.07023654641869881, 0.06193398888033367, 0.04489815696022981, 0.021010443372916018, -0.006898290828732119, -0.035394322328442085, -0.06086969918321609, -0.0799969408960797, -0.09015045731267568, -0.0897399865721011, -0.07841335241628748, -0.05710349539479912, -0.027915570341068115, 0.006128967559588576, 0.041455847041530124, 0.07436019359323173, 0.10143210762218653, 0.11993137750541569, 0.1280655746021029, 0.1251402627158088, 0.11156838694958249, 0.08874542078444292, 0.058814763461859376, 0.024361694712850233, -0.011917947268232813, -0.04752725507334205, -0.08041470547532921, -0.10912806601015447, -0.13286182852129808, -0.15140128937400707, -0.16498229995422303, -0.1740980863671481, -0.17929156711720928, -0.1809723008253547, -0.17929156711720928, -0.1740980863671481, -0.16498229995422303, -0.15140128937400707, -0.13286182852129808, -0.10912806601015447, -0.08041470547532921, -0.04752725507334205, -0.011917947268232813, 0.024361694712850233, 0.058814763461859376, 0.08874542078444292, 0.11156838694958249, 0.1251402627158088, 0.1280655746021029, 0.11993137750541569, 0.10143210762218653, 0.07436019359323173, 0.041455847041530124, 0.006128967559588576, -0.027915570341068115, -0.05710349539479912, -0.07841335241628748, -0.0897399865721011, -0.09015045731267568, -0.0799969408960797, -0.06086969918321609, -0.035394322328442085, -0.006898290828732119, 0.021010443372916018, 0.04489815696022981, 0.06193398888033367, 0.07023654641869881, 0.06909350912525554, 0.05902634928653124, 0.04169314253555411, 0.019644189549118916, -0.004035181692455175, -0.026145408407212398, -0.04379981483193957, -0.05480063837205414, -0.057914223509020056, -0.053010059675862406, -0.04104742571834398, -0.02391447862413198, -0.00414474927275206, 0.015447595491992866, 0.0321619272477622], [0.03601265264628425, 0.020637150322859062, 0.0017312945144323656, -0.018153763500061804, -0.0362502121008708, -0.04995406610993753, -0.057191557619154634, -0.05672032502303975, -0.04832258015319124, -0.03286176877900921, -0.012192678126517526, 0.011065047478789601, 0.033861212803747966, 0.05311343251576602, 0.06611668562698729, 0.07090928797611137, 0.06654605187084454, 0.053241651373662324, 0.03236448254360126, 0.006281225588565149, -0.021927852103724617, -0.048845774019986375, -0.07113889402837716, -0.0859658163909405, -0.09132298014121154, -0.0862837098381358, -0.07110217746809566, -0.04717189993207514, -0.01684756863873484, 0.016843465643954603, 0.0505602074281885, 0.08102992044248501, 0.10540421227858363, 0.12154611257274513, 0.12821612148783826, 0.1251402627158088, 0.11295987263220698, 0.0930787720578656, 0.0674363619373826, 0.03824332783592799, 0.007719046480121881, -0.02213364891206292, -0.04968920817281887, -0.0737805782705446, -0.09369955807552946, -0.10912806601015447, -0.12002257644951186, -0.1264802663529934, -0.1286166165938723, -0.1264802663529934, -0.12002257644951186, -0.10912806601015447, -0.09369955807552946, -0.0737805782705446, -0.04968920817281887, -0.02213364891206292, 0.007719046480121881, 0.03824332783592799, 0.0674363619373826, 0.0930787720578656, 0.11295987263220698, 0.1251402627158088, 0.12821612148783826, 0.12154611257274513, 0.10540421227858363, 0.08102992044248501, 0.0505602074281885, 0.016843465643954603, -0.01684756863873484, -0.04717189993207514, -0.07110217746809566, -0.0862837098381358, -0.09132298014121154, -0.0859658163909405, -0.07113889402837716, -0.048845774019986375, -0.021927852103724617, 0.006281225588565149, 0.03236448254360126, 0.053241651373662324, 0.06654605187084454, 0.07090928797611137, 0.06611668562698729, 0.05311343251576602, 0.033861212803747966, 0.011065047478789601, -0.012192678126517526, -0.03286176877900921, -0.04832258015319124, -0.05672032502303975, -0.057191557619154634, -0.04995406610993753, -0.0362502121008708, -0.018153763500061804, 0.0017312945144323656, 0.020637150322859062, 0.03601265264628425], [0.03963212560213236, 0.02584725600873246, 0.007904063612150252, -0.011830930510913693, -0.030673501865746567, -0.04598386580627737, -0.05552998670483286, -0.057802223634045365, -0.0522355964429413, -0.03930814034277919, -0.020500416136265034, 0.001880017630607545, 0.02498706047190853, 0.045799991341126285, 0.061515098519999166, 0.06991342678236025, 0.06965618377580868, 0.06046899227255463, 0.04319098161399095, 0.01968263081360716, -0.007395151467245612, -0.03490152117034324, -0.0595939790935052, -0.07851579478480496, -0.08934364918043657, -0.09065276956548936, -0.08206853029927091, -0.06428897815930346, -0.03897981433617731, -0.008559664271085284, 0.024093198877441203, 0.055972856386526326, 0.08427368513437312, 0.1066743541570273, 0.12154611257274513, 0.1280655746021029, 0.1262261649136082, 0.11675625942134887, 0.10096386730405656, 0.08053585790834274, 0.05732325637673133, 0.03314276244514563, 0.009618882910387172, -0.011917947268232813, -0.03047255125071308, -0.04537133651098209, -0.05620829548270173, -0.06277073679229504, -0.06496635722696219, -0.06277073679229504, -0.05620829548270173, -0.04537133651098209, -0.03047255125071308, -0.011917947268232813, 0.009618882910387172, 0.03314276244514563, 0.05732325637673133, 0.08053585790834274, 0.10096386730405656, 0.11675625942134887, 0.1262261649136082, 0.1280655746021029, 0.12154611257274513, 0.1066743541570273, 0.08427368513437312, 0.055972856386526326, 0.024093198877441203, -0.008559664271085284, -0.03897981433617731, -0.06428897815930346, -0.08206853029927091, -0.09065276956548936, -0.08934364918043657, -0.07851579478480496, -0.0595939790935052, -0.03490152117034324, -0.007395151467245612, 0.01968263081360716, 0.04319098161399095, 0.06046899227255463, 0.06965618377580868, 0.06991342678236025, 0.061515098519999166, 0.045799991341126285, 0.02498706047190853, 0.001880017630607545, -0.020500416136265034, -0.03930814034277919, -0.0522355964429413, -0.057802223634045365, -0.05552998670483286, -0.04598386580627737, -0.030673501865746567, -0.011830930510913693, 0.007904063612150252, 0.02584725600873246, 0.03963212560213236], [0.04287592892913734, 0.030936494557518655, 0.014255332136680298, -0.005021549703949415, -0.024334142827309703, -0.04104742571834398, -0.05280636655509189, -0.05785900766276947, -0.05530365530373093, -0.04522617473918571, -0.02870801983597124, -0.007702905313111807, 0.015202405882377333, 0.03711227165921393, 0.05518911230603298, 0.06701538684882409, 0.07090372337244864, 0.06611541377092878, 0.05295978330335918, 0.032762729660471696, 0.007709820474616166, -0.01941457519099837, -0.045557704635488014, -0.06775585171392955, -0.08347386588733276, -0.09088550285539078, -0.08906216203065932, -0.07805041383509298, -0.058833585688961035, -0.03318754009892684, -0.003453627382958198, 0.027739020100814565, 0.057765239856828854, 0.08427368513437312, 0.10540421227858363, 0.11993137750541569, 0.12732395447351627, 0.12772221064751688, 0.12184527361529092, 0.11084883714465928, 0.09615773797943991, 0.07929821732974865, 0.061751235188300314, 0.04484186185117994, 0.02967176829015202, 0.017093610411863445, 0.007719046480121881, 0.0019473727330142222, 0, 0.0019473727330142222, 0.007719046480121881, 0.017093610411863445, 0.02967176829015202, 0.04484186185117994, 0.061751235188300314, 0.07929821732974865, 0.09615773797943991, 0.11084883714465928, 0.12184527361529092, 0.12772221064751688, 0.12732395447351627, 0.11993137750541569, 0.10540421227858363, 0.08427368513437312, 0.057765239856828854, 0.027739020100814565, -0.003453627382958198, -0.03318754009892684, -0.058833585688961035, -0.07805041383509298, -0.08906216203065932, -0.09088550285539078, -0.08347386588733276, -0.06775585171392955, -0.045557704635488014, -0.01941457519099837, 0.007709820474616166, 0.032762729660471696, 0.05295978330335918, 0.06611541377092878, 0.07090372337244864, 0.06701538684882409, 0.05518911230603298, 0.03711227165921393, 0.015202405882377333, -0.007702905313111807, -0.02870801983597124, -0.04522617473918571, -0.05530365530373093, -0.05785900766276947, -0.05280636655509189, -0.04104742571834398, -0.024334142827309703, -0.005021549703949415, 0.014255332136680298, 0.030936494557518655, 0.04287592892913734], [0.04558956944539949, 0.03574294513132674, 0.020637150322859062, 0.002162498187170594, -0.017287953061458722, -0.03512944010085653, -0.04892664366437289, -0.05671953314497683, -0.057290358424637956, -0.050335988755707724, -0.03652235697984948, -0.017413410827150585, 0.0047164340701690375, 0.027162049922227857, 0.04712332320782043, 0.06205358088274775, 0.06997620892337074, 0.06972959592806349, 0.06111033330226716, 0.04489815696022981, 0.022761539499926882, -0.002941958651092874, -0.029443509031926877, -0.05388286907125833, -0.07363004307669668, -0.08656978293988553, -0.09131620598746587, -0.08733500824005588, -0.07496338046692728, -0.05533099588483479, -0.030197528866358098, -0.0017315258985832118, 0.027739020100814565, 0.055972856386526326, 0.08102992044248501, 0.10143210762218653, 0.11625731080459428, 0.12516350908341345, 0.12834896279272995, 0.12646202687351876, 0.12047880409415705, 0.11156838694958249, 0.10096386730405656, 0.0898531900234096, 0.07929821732974865, 0.07018417391350773, 0.06319607805439727, 0.058814763461859376, 0.05732325637673133, 0.058814763461859376, 0.06319607805439727, 0.07018417391350773, 0.07929821732974865, 0.0898531900234096, 0.10096386730405656, 0.11156838694958249, 0.12047880409415705, 0.12646202687351876, 0.12834896279272995, 0.12516350908341345, 0.11625731080459428, 0.10143210762218653, 0.08102992044248501, 0.055972856386526326, 0.027739020100814565, -0.0017315258985832118, -0.030197528866358098, -0.05533099588483479, -0.07496338046692728, -0.08733500824005588, -0.09131620598746587, -0.08656978293988553, -0.07363004307669668, -0.05388286907125833, -0.029443509031926877, -0.002941958651092874, 0.022761539499926882, 0.04489815696022981, 0.06111033330226716, 0.06972959592806349, 0.06997620892337074, 0.06205358088274775, 0.04712332320782043, 0.027162049922227857, 0.0047164340701690375, -0.017413410827150585, -0.03652235697984948, -0.050335988755707724, -0.057290358424637956, -0.05671953314497683, -0.04892664366437289, -0.03512944010085653, -0.017287953061458722, 0.002162498187170594, 0.020637150322859062, 0.03574294513132674, 0.04558956944539949], [0.04761355000386343, 0.04008762606051746, 0.02687290138972338, 0.009571121963339731, -0.00963486393394146, -0.028259636347245782, -0.04383682542915307, -0.054241547083993175, -0.05797124859337839, -0.05434810170674743, -0.04361650222140574, -0.026923093169523554, -0.0061821296920366335, 0.016156130789798474, 0.037403975055435114, 0.05496344021683955, 0.06664079941000567, 0.07090928797611137, 0.0670883852046823, 0.0554192394536295, 0.03702942351966614, 0.013794273074033596, -0.011885271189354125, -0.03735874280383697, -0.06002108774380708, -0.0775906272066803, -0.08833804594774992, -0.09124212528894639, -0.08605832553797192, -0.07329785945563662, -0.054125994016451684, -0.030197528866358098, -0.003453627382958198, 0.024093198877441203, 0.0505602074281885, 0.07436019359323173, 0.0943171278902554, 0.10972478180637592, 0.12034937613997415, 0.12638409069038745, 0.1283681108723834, 0.1270852736905262, 0.12345725364773678, 0.11844394128676645, 0.11295987263220698, 0.10781111157989003, 0.10365274426192721, 0.10096386730405656, 0.10003514623967846, 0.10096386730405656, 0.10365274426192721, 0.10781111157989003, 0.11295987263220698, 0.11844394128676645, 0.12345725364773678, 0.1270852736905262, 0.1283681108723834, 0.12638409069038745, 0.12034937613997415, 0.10972478180637592, 0.0943171278902554, 0.07436019359323173, 0.0505602074281885, 0.024093198877441203, -0.003453627382958198, -0.030197528866358098, -0.054125994016451684, -0.07329785945563662, -0.08605832553797192, -0.09124212528894639, -0.08833804594774992, -0.0775906272066803, -0.06002108774380708, -0.03735874280383697, -0.011885271189354125, 0.013794273074033596, 0.03702942351966614, 0.0554192394536295, 0.0670883852046823, 0.07090928797611137, 0.06664079941000567, 0.05496344021683955, 0.037403975055435114, 0.016156130789798474, -0.0061821296920366335, -0.026923093169523554, -0.04361650222140574, -0.05434810170674743, -0.05797124859337839, -0.054241547083993175, -0.04383682542915307, -0.028259636347245782, -0.00963486393394146, 0.009571121963339731, 0.02687290138972338, 0.04008762606051746, 0.04761355000386343], [0.04878999598770127, 0.04377986405969505, 0.0327604717491532, 0.017016172701800475, -0.00152235912107342, -0.020520025916277676, -0.03753382386867845, -0.05032541829881054, -0.05714923632188933, -0.056978936315397015, -0.04964337221669045, -0.035855125862322736, -0.017128690011925362, 0.0044004410358833325, 0.026232052236498594, 0.045799991341126285, 0.06077588090795559, 0.06934042498664442, 0.07038999382283674, 0.06365516281997069, 0.04971954596694955, 0.029939983781014083, 0.006281225588565149, -0.01891185782611035, -0.04317496985500962, -0.06418596062862286, -0.0799969408960797, -0.08921201129164351, -0.09109388026307519, -0.0855923873615903, -0.07329785945563662, -0.05533099588483479, -0.03318754009892684, -0.008559664271085284, 0.016843465643954603, 0.041455847041530124, 0.0639800988386149, 0.08346890602582428, 0.09935967585773438, 0.11146564438509889, 0.11993137750541569, 0.12516350908341345, 0.1277484855604861, 0.12836820742270624, 0.12772221064751688, 0.12646202687351876, 0.1251402627158088, 0.12417433933411735, 0.12382315319629535, 0.12417433933411735, 0.1251402627158088, 0.12646202687351876, 0.12772221064751688, 0.12836820742270624, 0.1277484855604861, 0.12516350908341345, 0.11993137750541569, 0.11146564438509889, 0.09935967585773438, 0.08346890602582428, 0.0639800988386149, 0.041455847041530124, 0.016843465643954603, -0.008559664271085284, -0.03318754009892684, -0.05533099588483479, -0.07329785945563662, -0.0855923873615903, -0.09109388026307519, -0.08921201129164351, -0.0799969408960797, -0.06418596062862286, -0.04317496985500962, -0.01891185782611035, 0.006281225588565149, 0.029939983781014083, 0.04971954596694955, 0.06365516281997069, 0.07038999382283674, 0.06934042498664442, 0.06077588090795559, 0.045799991341126285, 0.026232052236498594, 0.0044004410358833325, -0.017128690011925362, -0.035855125862322736, -0.04964337221669045, -0.056978936315397015, -0.05714923632188933, -0.05032541829881054, -0.03753382386867845, -0.020520025916277676, -0.00152235912107342, 0.017016172701800475, 0.0327604717491532, 0.04377986405969505, 0.04878999598770127], [0.048970751720583176, 0.04662467434805535, 0.038077813090238326, 0.02427413001985883, 0.006853457743037402, -0.01205028948070265, -0.03007528872626719, -0.04492802859668448, -0.054671596840365946, -0.05796942058800418, -0.054253958142026215, -0.04379981483193957, -0.027693203193403574, -0.007702905313111807, 0.013929826013452875, 0.03475524623357991, 0.052399782143584296, 0.06483656306820804, 0.07060984119315501, 0.06898808845801678, 0.06003022646602355, 0.04456065007960515, 0.024059934036823695, 0.00048792085273476955, -0.023936908523590678, -0.04697406248754969, -0.06658580427022456, -0.08112551416309005, -0.08947122957553463, -0.09109388026307519, -0.08605832553797192, -0.07496338046692728, -0.058833585688961035, -0.03897981433617731, -0.01684756863873484, 0.006128967559588576, 0.028652003881607768, 0.04965369863847285, 0.06835274705237276, 0.08427368513437312, 0.09723295711056688, 0.10729890319164657, 0.1147344419427747, 0.11993137750541569, 0.12334421567515366, 0.12542954171329684, 0.12659488019303988, 0.12715897675548665, 0.12732395447351627, 0.12715897675548665, 0.12659488019303988, 0.12542954171329684, 0.12334421567515366, 0.11993137750541569, 0.1147344419427747, 0.10729890319164657, 0.09723295711056688, 0.08427368513437312, 0.06835274705237276, 0.04965369863847285, 0.028652003881607768, 0.006128967559588576, -0.01684756863873484, -0.03897981433617731, -0.058833585688961035, -0.07496338046692728, -0.08605832553797192, -0.09109388026307519, -0.08947122957553463, -0.08112551416309005, -0.06658580427022456, -0.04697406248754969, -0.023936908523590678, 0.00048792085273476955, 0.024059934036823695, 0.04456065007960515, 0.06003022646602355, 0.06898808845801678, 0.07060984119315501, 0.06483656306820804, 0.052399782143584296, 0.03475524623357991, 0.013929826013452875, -0.007702905313111807, -0.027693203193403574, -0.04379981483193957, -0.054253958142026215, -0.05796942058800418, -0.054671596840365946, -0.04492802859668448, -0.03007528872626719, -0.01205028948070265, 0.006853457743037402, 0.02427413001985883, 0.038077813090238326, 0.04662467434805535, 0.048970751720583176], [0.04802672406115692, 0.04843209606376969, 0.04259105245152353, 0.03109171747407877, 0.015249806171389482, -0.0030504377239427534, -0.02158740873174328, -0.03807572921458141, -0.050447486533958925, -0.05710582426521185, -0.05711962618109622, -0.050335988755707724, -0.03739793090036873, -0.019666871213569893, 0.0009387864588941174, 0.022167593022248883, 0.04169314253555411, 0.057374725169627945, 0.06748982028909199, 0.07091235022770864, 0.06721828316370318, 0.056709742354204826, 0.04035893453427208, 0.01968263081360716, -0.0034345330681530653, -0.026944861111601357, -0.048845774019986375, -0.06736811143426903, -0.08112551416309005, -0.08921201129164351, -0.09124212528894639, -0.08733500824005588, -0.07805041383509298, -0.06428897815930346, -0.04717189993207514, -0.027915570341068115, -0.007715201506788209, 0.012351515641047391, 0.031393629131117665, 0.04874612699774812, 0.0639800988386149, 0.07688790726900409, 0.08744941827251093, 0.09578619857909153, 0.10211042775684408, 0.1066743541570273, 0.10972478180637592, 0.11146564438509889, 0.1120304719395053, 0.11146564438509889, 0.10972478180637592, 0.1066743541570273, 0.10211042775684408, 0.09578619857909153, 0.08744941827251093, 0.07688790726900409, 0.0639800988386149, 0.04874612699774812, 0.031393629131117665, 0.012351515641047391, -0.007715201506788209, -0.027915570341068115, -0.04717189993207514, -0.06428897815930346, -0.07805041383509298, -0.08733500824005588, -0.09124212528894639, -0.08921201129164351, -0.08112551416309005, -0.06736811143426903, -0.048845774019986375, -0.026944861111601357, -0.0034345330681530653, 0.01968263081360716, 0.04035893453427208, 0.056709742354204826, 0.06721828316370318, 0.07091235022770864, 0.06748982028909199, 0.057374725169627945, 0.04169314253555411, 0.022167593022248883, 0.0009387864588941174, -0.019666871213569893, -0.03739793090036873, -0.050335988755707724, -0.05711962618109622, -0.05710582426521185, -0.050447486533958925, -0.03807572921458141, -0.02158740873174328, -0.0030504377239427534, 0.015249806171389482, 0.03109171747407877, 0.04259105245152353, 0.04843209606376969, 0.04802672406115692], [0.045858095098109314, 0.049028255863867005, 0.046065136943488356, 0.037194697472528085, 0.023382725500691964, 0.006220087412589483, -0.012269588164475924, -0.029875084633517256, -0.04446462634244799, -0.054241547083993175, -0.05795744296335416, -0.05505760697435419, -0.04574251095070121, -0.030939841517149867, -0.012192678126517526, 0.008520601341770602, 0.029011417275877496, 0.04712332320782043, 0.06096293760071619, 0.06909350912525554, 0.07067086655717086, 0.06550937234944648, 0.054074408072778656, 0.037406689332756274, 0.016991248272574217, -0.005410625244593429, -0.027945356141086012, -0.048845774019986375, -0.06658580427022456, -0.0799969408960797, -0.08833804594774992, -0.09131620598746587, -0.08906216203065932, -0.08206853029927091, -0.07110217746809566, -0.05710349539479912, -0.041084986730345295, -0.024039798754518064, -0.0068680615855205, 0.00967439124622255, 0.025003614325888802, 0.038712993386835384, 0.0505602074281885, 0.060440656169643954, 0.06835274705237276, 0.07436019359323173, 0.0785557589578467, 0.08102992044248501, 0.0818469378324642, 0.08102992044248501, 0.0785557589578467, 0.07436019359323173, 0.06835274705237276, 0.060440656169643954, 0.0505602074281885, 0.038712993386835384, 0.025003614325888802, 0.00967439124622255, -0.0068680615855205, -0.024039798754518064, -0.041084986730345295, -0.05710349539479912, -0.07110217746809566, -0.08206853029927091, -0.08906216203065932, -0.09131620598746587, -0.08833804594774992, -0.0799969408960797, -0.06658580427022456, -0.048845774019986375, -0.027945356141086012, -0.005410625244593429, 0.016991248272574217, 0.037406689332756274, 0.054074408072778656, 0.06550937234944648, 0.07067086655717086, 0.06909350912525554, 0.06096293760071619, 0.04712332320782043, 0.029011417275877496, 0.008520601341770602, -0.012192678126517526, -0.030939841517149867, -0.04574251095070121, -0.05505760697435419, -0.05795744296335416, -0.054241547083993175, -0.04446462634244799, -0.029875084633517256, -0.012269588164475924, 0.006220087412589483, 0.023382725500691964, 0.037194697472528085, 0.046065136943488356, 0.049028255863867005, 0.045858095098109314], [0.042404863574605316, 0.04826773694892544, 0.04827678748081466, 0.04229988967195813, 0.030936494557518655, 0.015447595491992866, -0.0023949243781995256, -0.020520025916277676, -0.03680356172899527, -0.04931819101787035, -0.05655695505777426, -0.05760431515473211, -0.0522355964429413, -0.04093503863980408, -0.02483277825192081, -0.005570765122896035, 0.014884346332942059, 0.03445782405725266, 0.05118715444511622, 0.06342106706713174, 0.06997620892337074, 0.07023654641869881, 0.06418811665831267, 0.05238965195590362, 0.03588686033765934, 0.016083912967990648, -0.005410625244593429, -0.026944861111601357, -0.04697406248754969, -0.06418596062862286, -0.0775906272066803, -0.08656978293988553, -0.09088550285539078, -0.09065276956548936, -0.0862837098381358, -0.07841335241628748, -0.06781730438134298, -0.05533099588483479, -0.04177837921381129, -0.027915570341068115, -0.014392296041115405, -0.0017315258985832118, 0.00967439124622255, 0.019554233149479044, 0.027739020100814565, 0.034137934869462254, 0.038712993386835384, 0.041455847041530124, 0.04236936340888838, 0.041455847041530124, 0.038712993386835384, 0.034137934869462254, 0.027739020100814565, 0.019554233149479044, 0.00967439124622255, -0.0017315258985832118, -0.014392296041115405, -0.027915570341068115, -0.04177837921381129, -0.05533099588483479, -0.06781730438134298, -0.07841335241628748, -0.0862837098381358, -0.09065276956548936, -0.09088550285539078, -0.08656978293988553, -0.0775906272066803, -0.06418596062862286, -0.04697406248754969, -0.026944861111601357, -0.005410625244593429, 0.016083912967990648, 0.03588686033765934, 0.05238965195590362, 0.06418811665831267, 0.07023654641869881, 0.06997620892337074, 0.06342106706713174, 0.05118715444511622, 0.03445782405725266, 0.014884346332942059, -0.005570765122896035, -0.02483277825192081, -0.04093503863980408, -0.0522355964429413, -0.05760431515473211, -0.05655695505777426, -0.04931819101787035, -0.03680356172899527, -0.020520025916277676, -0.0023949243781995256, 0.015447595491992866, 0.030936494557518655, 0.04229988967195813, 0.04827678748081466, 0.04826773694892544, 0.042404863574605316], [0.037657019279810675, 0.04604662379463335, 0.049029290715542934, 0.046130194328031594, 0.03757709159092609, 0.02427413001985883, 0.007694458501656245, -0.010294050326122708, -0.02764777669577622, -0.0423839459589055, -0.05280636655509189, -0.057694015501266696, -0.05643149574638259, -0.049068069230192204, -0.036300945656162924, -0.019387603268548395, 0, 0.01996034560879418, 0.038563910748833426, 0.05404824184683762, 0.06498558144151709, 0.07040657640544133, 0.06986971036143766, 0.06347297492002213, 0.051811026530912886, 0.03588686033765934, 0.016991248272574217, -0.0034345330681530653, -0.023936908523590678, -0.04317496985500962, -0.06002108774380708, -0.07363004307669668, -0.08347386588733276, -0.08934364918043657, -0.09132298014121154, -0.0897399865721011, -0.08510618967193917, -0.07805041383509298, -0.06925510124285432, -0.05940078323094247, -0.04912248699170504, -0.03897981433617731, -0.02944057949570285, -0.020876418883192742, -0.013567782945136511, -0.007715201506788209, -0.003453627382958198, -0.0008669172451297127, 0, -0.0008669172451297127, -0.003453627382958198, -0.007715201506788209, -0.013567782945136511, -0.020876418883192742, -0.02944057949570285, -0.03897981433617731, -0.04912248699170504, -0.05940078323094247, -0.06925510124285432, -0.07805041383509298, -0.08510618967193917, -0.0897399865721011, -0.09132298014121154, -0.08934364918043657, -0.08347386588733276, -0.07363004307669668, -0.06002108774380708, -0.04317496985500962, -0.023936908523590678, -0.0034345330681530653, 0.016991248272574217, 0.03588686033765934, 0.051811026530912886, 0.06347297492002213, 0.06986971036143766, 0.07040657640544133, 0.06498558144151709, 0.05404824184683762, 0.038563910748833426, 0.01996034560879418, 0, -0.019387603268548395, -0.036300945656162924, -0.049068069230192204, -0.05643149574638259, -0.057694015501266696, -0.05280636655509189, -0.0423839459589055, -0.02764777669577622, -0.010294050326122708, 0.007694458501656245, 0.02427413001985883, 0.03757709159092609, 0.046130194328031594, 0.049029290715542934, 0.04604662379463335, 0.037657019279810675], [0.031663523015490296, 0.04231539213433679, 0.048168396555550407, 0.04843209606376969, 0.04296948728468357, 0.032312457036751126, 0.017597910510974448, 0.00043374057536189843, -0.017287953061458722, -0.033607151643790266, -0.04671568215206028, -0.05515491605013087, -0.05796942058800418, -0.05480063837205414, -0.04591235715727241, -0.03214801971223707, -0.014827765425508264, 0.0044004410358833325, 0.023736856668822536, 0.04141254335987183, 0.05585848817776385, 0.06584418405210897, 0.07057327401292128, 0.06972959592806349, 0.06347297492002213, 0.05238965195590362, 0.037406689332756274, 0.01968263081360716, 0.00048792085273476955, -0.01891185782611035, -0.03735874280383697, -0.05388286907125833, -0.06775585171392955, -0.07851579478480496, -0.0859658163909405, -0.09015045731267568, -0.09131593213649357, -0.08986083578529938, -0.0862837098381358, -0.08113297508032842, -0.07496338046692728, -0.06830155199730398, -0.06162167556787999, -0.05533099588483479, -0.049763776809129065, -0.04518170035546226, -0.04177837921381129, -0.03968567784606773, -0.03897981433617731, -0.03968567784606773, -0.04177837921381129, -0.04518170035546226, -0.049763776809129065, -0.05533099588483479, -0.06162167556787999, -0.06830155199730398, -0.07496338046692728, -0.08113297508032842, -0.0862837098381358, -0.08986083578529938, -0.09131593213649357, -0.09015045731267568, -0.0859658163909405, -0.07851579478480496, -0.06775585171392955, -0.05388286907125833, -0.03735874280383697, -0.01891185782611035, 0.00048792085273476955, 0.01968263081360716, 0.037406689332756274, 0.05238965195590362, 0.06347297492002213, 0.06972959592806349, 0.07057327401292128, 0.06584418405210897, 0.05585848817776385, 0.04141254335987183, 0.023736856668822536, 0.0044004410358833325, -0.014827765425508264, -0.03214801971223707, -0.04591235715727241, -0.05480063837205414, -0.05796942058800418, -0.05515491605013087, -0.04671568215206028, -0.033607151643790266, -0.017287953061458722, 0.00043374057536189843, 0.017597910510974448, 0.032312457036751126, 0.04296948728468357, 0.04843209606376969, 0.048168396555550407, 0.04231539213433679, 0.031663523015490296], [0.024539175695880124, 0.03709064066850363, 0.04559833245211172, 0.048994794645401615, 0.04679818300676425, 0.039165865236553, 0.02687290138972338, 0.011219659651864305, -0.00611885823064855, -0.023282917998618678, -0.03843418261610348, -0.04995406610993753, -0.05661221371282111, -0.057687453256608165, -0.05302986714747128, -0.04305993166613821, -0.02870801983597124, -0.011304076619915043, 0.007567776669795874, 0.026232052236498594, 0.04308380860776664, 0.05673284975057918, 0.06611668562698729, 0.07057327401292128, 0.06986971036143766, 0.06418811665831267, 0.054074408072778656, 0.04035893453427208, 0.024059934036823695, 0.006281225588565149, -0.011885271189354125, -0.029443509031926877, -0.045557704635488014, -0.0595939790935052, -0.07113889402837716, -0.0799969408960797, -0.08617082522939275, -0.08982943791608139, -0.09126872367241032, -0.09087033573293914, -0.08906216203065932, -0.0862837098381358, -0.08295813167342621, -0.07947152951212336, -0.07615921035235956, -0.07329785945563662, -0.07110217746809566, -0.06972438535666871, -0.06925510124285432, -0.06972438535666871, -0.07110217746809566, -0.07329785945563662, -0.07615921035235956, -0.07947152951212336, -0.08295813167342621, -0.0862837098381358, -0.08906216203065932, -0.09087033573293914, -0.09126872367241032, -0.08982943791608139, -0.08617082522939275, -0.0799969408960797, -0.07113889402837716, -0.0595939790935052, -0.045557704635488014, -0.029443509031926877, -0.011885271189354125, 0.006281225588565149, 0.024059934036823695, 0.04035893453427208, 0.054074408072778656, 0.06418811665831267, 0.06986971036143766, 0.07057327401292128, 0.06611668562698729, 0.05673284975057918, 0.04308380860776664, 0.026232052236498594, 0.007567776669795874, -0.011304076619915043, -0.02870801983597124, -0.04305993166613821, -0.05302986714747128, -0.057687453256608165, -0.05661221371282111, -0.04995406610993753, -0.03843418261610348, -0.023282917998618678, -0.00611885823064855, 0.011219659651864305, 0.02687290138972338, 0.039165865236553, 0.04679818300676425, 0.048994794645401615, 0.04559833245211172, 0.03709064066850363, 0.024539175695880124], [0.016468432833891142, 0.030464539527382976, 0.0412967222832713, 0.04766978588826198, 0.04878999598770127, 0.044452110907271664, 0.03505762467538453, 0.021563933760609683, 0.005372266208323732, -0.011830930510913693, -0.028259636347245782, -0.04221915632873505, -0.05228088690510248, -0.05742245611121293, -0.05711962618109622, -0.05138252152197142, -0.04073539091869543, -0.026145408407212398, -0.00891124103891014, 0.009474273505160937, 0.027471290307035087, 0.04363415771542717, 0.05673284975057918, 0.06584418405210897, 0.07040657640544133, 0.07023654641869881, 0.06550937234944648, 0.056709742354204826, 0.04456065007960515, 0.029939983781014083, 0.013794273074033596, -0.002941958651092874, -0.01941457519099837, -0.03490152117034324, -0.048845774019986375, -0.06086969918321609, -0.07077275885017735, -0.07851579478480496, -0.08419578943425635, -0.08801513635410305, -0.09024911408346632, -0.09121458954930939, -0.09124212528894639, -0.09065276956548936, -0.0897399865721011, -0.08875651898175305, -0.08790551471036315, -0.08733500824005588, -0.08713481150850413, -0.08733500824005588, -0.08790551471036315, -0.08875651898175305, -0.0897399865721011, -0.09065276956548936, -0.09124212528894639, -0.09121458954930939, -0.09024911408346632, -0.08801513635410305, -0.08419578943425635, -0.07851579478480496, -0.07077275885017735, -0.06086969918321609, -0.048845774019986375, -0.03490152117034324, -0.01941457519099837, -0.002941958651092874, 0.013794273074033596, 0.029939983781014083, 0.04456065007960515, 0.056709742354204826, 0.06550937234944648, 0.07023654641869881, 0.07040657640544133, 0.06584418405210897, 0.05673284975057918, 0.04363415771542717, 0.027471290307035087, 0.009474273505160937, -0.00891124103891014, -0.026145408407212398, -0.04073539091869543, -0.05138252152197142, -0.05711962618109622, -0.05742245611121293, -0.05228088690510248, -0.04221915632873505, -0.028259636347245782, -0.011830930510913693, 0.005372266208323732, 0.021563933760609683, 0.03505762467538453, 0.044452110907271664, 0.04878999598770127, 0.04766978588826198, 0.0412967222832713, 0.030464539527382976, 0.016468432833891142], [0.007705272543624346, 0.022610825025533014, 0.035327037476218376, 0.044389432277917196, 0.04873768884958524, 0.047830331881385045, 0.04169879060561669, 0.030936494557518655, 0.016626356821187495, 0.00021694266699616769, -0.016636970578023727, -0.03225043575504232, -0.04508105740142656, -0.0538799077791263, -0.05780562875263666, -0.05649168180961626, -0.05006248663690296, -0.039100037980666615, -0.02456782186324457, -0.007702905313111807, 0.010110423611683293, 0.027471290307035087, 0.04308380860776664, 0.05585848817776385, 0.06498558144151709, 0.06997620892337074, 0.07067086655717086, 0.06721828316370318, 0.06003022646602355, 0.04971954596694955, 0.03702942351966614, 0.022761539499926882, 0.007709820474616166, -0.007395151467245612, -0.021927852103724617, -0.035394322328442085, -0.04744383216498181, -0.057867404585463175, -0.06658580427022456, -0.07363004307669668, -0.07911748638021394, -0.08322634620436055, -0.08617082522939275, -0.08817854255140753, -0.08947122957553463, -0.09024911408346632, -0.09067896751241898, -0.09088550285539078, -0.09094568176679733, -0.09088550285539078, -0.09067896751241898, -0.09024911408346632, -0.08947122957553463, -0.08817854255140753, -0.08617082522939275, -0.08322634620436055, -0.07911748638021394, -0.07363004307669668, -0.06658580427022456, -0.057867404585463175, -0.04744383216498181, -0.035394322328442085, -0.021927852103724617, -0.007395151467245612, 0.007709820474616166, 0.022761539499926882, 0.03702942351966614, 0.04971954596694955, 0.06003022646602355, 0.06721828316370318, 0.07067086655717086, 0.06997620892337074, 0.06498558144151709, 0.05585848817776385, 0.04308380860776664, 0.027471290307035087, 0.010110423611683293, -0.007702905313111807, -0.02456782186324457, -0.039100037980666615, -0.05006248663690296, -0.05649168180961626, -0.05780562875263666, -0.0538799077791263, -0.04508105740142656, -0.03225043575504232, -0.016636970578023727, 0.00021694266699616769, 0.016626356821187495, 0.030936494557518655, 0.04169879060561669, 0.047830331881385045, 0.04873768884958524, 0.044389432277917196, 0.035327037476218376, 0.022610825025533014, 0.007705272543624346], [-0.001431630441634243, 0.013786222773882296, 0.027847141666311193, 0.039182857494045126, 0.046522686476480175, 0.049029254407155574, 0.04638321060292966, 0.038809151597143106, 0.027042004306541426, 0.012239893896977237, -0.00414474927275206, -0.020520025916277676, -0.035317511990522577, -0.04714561202979198, -0.05491775508052088, -0.05794360707372231, -0.05597627019066032, -0.04921365683929495, -0.03825722809959497, -0.024035517556369672, -0.007702905313111807, 0.009474273505160937, 0.026232052236498594, 0.04141254335987183, 0.05404824184683762, 0.06342106706713174, 0.06909350912525554, 0.07091235022770864, 0.06898808845801678, 0.06365516281997069, 0.0554192394536295, 0.04489815696022981, 0.032762729660471696, 0.01968263081360716, 0.006281225588565149, -0.006898290828732119, -0.01941457519099837, -0.03093805295208876, -0.041250477502671586, -0.05023618574433825, -0.057867404585463175, -0.06418596062862286, -0.06928351001764697, -0.07328202023313929, -0.07631578350383601, -0.07851579478480496, -0.0799969408960797, -0.08084815582153988, -0.08112551416309005, -0.08084815582153988, -0.0799969408960797, -0.07851579478480496, -0.07631578350383601, -0.07328202023313929, -0.06928351001764697, -0.06418596062862286, -0.057867404585463175, -0.05023618574433825, -0.041250477502671586, -0.03093805295208876, -0.01941457519099837, -0.006898290828732119, 0.006281225588565149, 0.01968263081360716, 0.032762729660471696, 0.04489815696022981, 0.0554192394536295, 0.06365516281997069, 0.06898808845801678, 0.07091235022770864, 0.06909350912525554, 0.06342106706713174, 0.05404824184683762, 0.04141254335987183, 0.026232052236498594, 0.009474273505160937, -0.007702905313111807, -0.024035517556369672, -0.03825722809959497, -0.04921365683929495, -0.05597627019066032, -0.05794360707372231, -0.05491775508052088, -0.04714561202979198, -0.035317511990522577, -0.020520025916277676, -0.00414474927275206, 0.012239893896977237, 0.027042004306541426, 0.038809151597143106, 0.04638321060292966, 0.049029254407155574, 0.046522686476480175, 0.039182857494045126, 0.027847141666311193, 0.013786222773882296, -0.001431630441634243], [-0.010568928699422074, 0.004326348446401224, 0.01911254521144837, 0.032187410052808826, 0.042134866483123944, 0.047874580410804536, 0.04877116322922048, 0.04469247054348279, 0.03601265264628425, 0.02356198332998537, 0.008531279966773837, -0.007656711234980534, -0.023493708108486083, -0.03753382386867845, -0.048527693650739875, -0.05552998670483286, -0.05797124859337839, -0.05568946443231503, -0.048921309502863976, -0.03825722809959497, -0.02456782186324457, -0.00891124103891014, 0.007567776669795874, 0.023736856668822536, 0.038563910748833426, 0.05118715444511622, 0.06096293760071619, 0.06748982028909199, 0.07060984119315501, 0.07038999382283674, 0.0670883852046823, 0.06111033330226716, 0.05295978330335918, 0.04319098161399095, 0.03236448254360126, 0.021010443372916018, 0.009600955849587763, -0.0014679872505029663, -0.011885271189354125, -0.02142530404701613, -0.02994211931113844, -0.03735874280383697, -0.0436536254098885, -0.048845774019986375, -0.052979942159562435, -0.05611292821370759, -0.05830172241169848, -0.0595939790935052, -0.06002108774380708, -0.0595939790935052, -0.05830172241169848, -0.05611292821370759, -0.052979942159562435, -0.048845774019986375, -0.0436536254098885, -0.03735874280383697, -0.02994211931113844, -0.02142530404701613, -0.011885271189354125, -0.0014679872505029663, 0.009600955849587763, 0.021010443372916018, 0.03236448254360126, 0.04319098161399095, 0.05295978330335918, 0.06111033330226716, 0.0670883852046823, 0.07038999382283674, 0.07060984119315501, 0.06748982028909199, 0.06096293760071619, 0.05118715444511622, 0.038563910748833426, 0.023736856668822536, 0.007567776669795874, -0.00891124103891014, -0.02456782186324457, -0.03825722809959497, -0.048921309502863976, -0.05568946443231503, -0.05797124859337839, -0.05552998670483286, -0.048527693650739875, -0.03753382386867845, -0.023493708108486083, -0.007656711234980534, 0.008531279966773837, 0.02356198332998537, 0.03601265264628425, 0.04469247054348279, 0.04877116322922048, 0.047874580410804536, 0.042134866483123944, 0.032187410052808826, 0.01911254521144837, 0.004326348446401224, -0.010568928699422074], [-0.019293987538109965, -0.005364574400158507, 0.009473182752142746, 0.023654002630535617, 0.03568729784209614, 0.04431312954801783, 0.048629002229383385, 0.0481749363813936, 0.04296948728468357, 0.03349514476667778, 0.020637150322859062, 0.0055845682765417, -0.010294050326122708, -0.025586176755546662, -0.038967558916015534, -0.04931819101787035, -0.05581166934969179, -0.057971193186890924, -0.05568946443231503, -0.04921365683929495, -0.039100037980666615, -0.026145408407212398, -0.011304076619915043, 0.0044004410358833325, 0.01996034560879418, 0.03445782405725266, 0.04712332320782043, 0.057374725169627945, 0.06483656306820804, 0.06934042498664442, 0.07090928797611137, 0.06972959592806349, 0.06611541377092878, 0.06046899227255463, 0.053241651373662324, 0.04489815696022981, 0.03588686033765934, 0.02661691958010542, 0.017443035399983122, 0.008657389947079534, 0.00048792085273476955, -0.006898290828732119, -0.01338790351687593, -0.01891185782611035, -0.023434855005557163, -0.026944861111601357, -0.029443509031926877, -0.03093805295208876, -0.031435334142078476, -0.03093805295208876, -0.029443509031926877, -0.026944861111601357, -0.023434855005557163, -0.01891185782611035, -0.01338790351687593, -0.006898290828732119, 0.00048792085273476955, 0.008657389947079534, 0.017443035399983122, 0.02661691958010542, 0.03588686033765934, 0.04489815696022981, 0.053241651373662324, 0.06046899227255463, 0.06611541377092878, 0.06972959592806349, 0.07090928797611137, 0.06934042498664442, 0.06483656306820804, 0.057374725169627945, 0.04712332320782043, 0.03445782405725266, 0.01996034560879418, 0.0044004410358833325, -0.011304076619915043, -0.026145408407212398, -0.039100037980666615, -0.04921365683929495, -0.05568946443231503, -0.057971193186890924, -0.05581166934969179, -0.04931819101787035, -0.038967558916015534, -0.025586176755546662, -0.010294050326122708, 0.0055845682765417, 0.020637150322859062, 0.03349514476667778, 0.04296948728468357, 0.0481749363813936, 0.048629002229383385, 0.04431312954801783, 0.03568729784209614, 0.023654002630535617, 0.009473182752142746, -0.005364574400158507, -0.019293987538109965], [-0.027175371195658795, -0.014830430313707977, -0.0006371247782392889, 0.013944869860128403, 0.027423876669558294, 0.03843117863903444, 0.045858095098109314, 0.04896135001030587, 0.047427087991378736, 0.04138889936988247, 0.031400420505200956, 0.01836787339008987, 0.003451784659844099, -0.01205028948070265, -0.026827098138887163, -0.039670529079745095, -0.049575063814172045, -0.05581166934969179, -0.05797124859337839, -0.05597627019066032, -0.05006248663690296, -0.04073539091869543, -0.02870801983597124, -0.014827765425508264, 0, 0.014884346332942059, 0.029011417275877496, 0.04169314253555411, 0.052399782143584296, 0.06077588090795559, 0.06664079941000567, 0.06997620892337074, 0.07090372337244864, 0.06965618377580868, 0.06654605187084454, 0.06193398888033367, 0.05620009257242416, 0.04971954596694955, 0.04284369112727859, 0.03588686033765934, 0.0291187299374325, 0.022761539499926882, 0.016991248272574217, 0.01194157076537377, 0.007709820474616166, 0.00436356498686016, 0.001947226385121772, 0.00048792085273476955, 0, 0.00048792085273476955, 0.001947226385121772, 0.00436356498686016, 0.007709820474616166, 0.01194157076537377, 0.016991248272574217, 0.022761539499926882, 0.0291187299374325, 0.03588686033765934, 0.04284369112727859, 0.04971954596694955, 0.05620009257242416, 0.06193398888033367, 0.06654605187084454, 0.06965618377580868, 0.07090372337244864, 0.06997620892337074, 0.06664079941000567, 0.06077588090795559, 0.052399782143584296, 0.04169314253555411, 0.029011417275877496, 0.014884346332942059, 0, -0.014827765425508264, -0.02870801983597124, -0.04073539091869543, -0.05006248663690296, -0.05597627019066032, -0.05797124859337839, -0.05581166934969179, -0.049575063814172045, -0.039670529079745095, -0.026827098138887163, -0.01205028948070265, 0.003451784659844099, 0.01836787339008987, 0.031400420505200956, 0.04138889936988247, 0.047427087991378736, 0.04896135001030587, 0.045858095098109314, 0.03843117863903444, 0.027423876669558294, 0.013944869860128403, -0.0006371247782392889, -0.014830430313707977, -0.027175371195658795], [-0.03378768578473035, -0.023586099996342147, -0.010718867722094379, 0.0035227088628487697, 0.01771809742553514, 0.030464539527382976, 0.0405170354164538, 0.04690697628999974, 0.049028181942451454, 0.04668323364055051, 0.04008762606051746, 0.0298338410564352, 0.01682146201112624, 0.002162498187170594, -0.012927084182596107, -0.027238119104118063, -0.039670529079745095, -0.04931819101787035, -0.05552998670483286, -0.05794360707372231, -0.05649168180961626, -0.05138252152197142, -0.04305993166613821, -0.03214801971223707, -0.019387603268548395, -0.005570765122896035, 0.008520601341770602, 0.022167593022248883, 0.03475524623357991, 0.045799991341126285, 0.05496344021683955, 0.06205358088274775, 0.06701538684882409, 0.06991342678236025, 0.07090928797611137, 0.07023654641869881, 0.06817569432179703, 0.06503095272323879, 0.06111033330226716, 0.056709742354204826, 0.05210139849521898, 0.047526403324657414, 0.04319098161399095, 0.03926569882297806, 0.03588686033765934, 0.03315928197343901, 0.031159674327330144, 0.029939983781014083, 0.0295301623758919, 0.029939983781014083, 0.031159674327330144, 0.03315928197343901, 0.03588686033765934, 0.03926569882297806, 0.04319098161399095, 0.047526403324657414, 0.05210139849521898, 0.056709742354204826, 0.06111033330226716, 0.06503095272323879, 0.06817569432179703, 0.07023654641869881, 0.07090928797611137, 0.06991342678236025, 0.06701538684882409, 0.06205358088274775, 0.05496344021683955, 0.045799991341126285, 0.03475524623357991, 0.022167593022248883, 0.008520601341770602, -0.005570765122896035, -0.019387603268548395, -0.03214801971223707, -0.04305993166613821, -0.05138252152197142, -0.05649168180961626, -0.05794360707372231, -0.05552998670483286, -0.04931819101787035, -0.039670529079745095, -0.027238119104118063, -0.012927084182596107, 0.002162498187170594, 0.01682146201112624, 0.0298338410564352, 0.04008762606051746, 0.04668323364055051, 0.049028181942451454, 0.04690697628999974, 0.0405170354164538, 0.030464539527382976, 0.01771809742553514, 0.0035227088628487697, -0.010718867722094379, -0.023586099996342147, -0.03378768578473035], [-0.03873952880027733, -0.03114567451828078, -0.020232429911833317, -0.007069234510857113, 0.007061712189233647, 0.020798277520802256, 0.032834211214922644, 0.04204381565564756, 0.04758335092470511, 0.04896024829755483, 0.046065136943488356, 0.039165865236553, 0.028866640071341296, 0.016038701730919914, 0.0017312945144323656, -0.012927084182596107, -0.026827098138887163, -0.038967558916015534, -0.048527693650739875, -0.05491775508052088, -0.05780562875263666, -0.05711962618109622, -0.05302986714747128, -0.04591235715727241, -0.036300945656162924, -0.02483277825192081, -0.012192678126517526, 0.0009387864588941174, 0.013929826013452875, 0.026232052236498594, 0.037403975055435114, 0.04712332320782043, 0.05518911230603298, 0.061515098519999166, 0.06611668562698729, 0.06909350912525554, 0.07060984119315501, 0.07087469966135411, 0.07012316566041692, 0.06859998001328096, 0.06654605187084454, 0.06418811665831267, 0.06173145237928255, 0.05935531840278692, 0.05721062202138408, 0.0554192394536295, 0.054074408072778656, 0.053241651373662324, 0.05295978330335918, 0.053241651373662324, 0.054074408072778656, 0.0554192394536295, 0.05721062202138408, 0.05935531840278692, 0.06173145237928255, 0.06418811665831267, 0.06654605187084454, 0.06859998001328096, 0.07012316566041692, 0.07087469966135411, 0.07060984119315501, 0.06909350912525554, 0.06611668562698729, 0.061515098519999166, 0.05518911230603298, 0.04712332320782043, 0.037403975055435114, 0.026232052236498594, 0.013929826013452875, 0.0009387864588941174, -0.012192678126517526, -0.02483277825192081, -0.036300945656162924, -0.04591235715727241, -0.05302986714747128, -0.05711962618109622, -0.05780562875263666, -0.05491775508052088, -0.048527693650739875, -0.038967558916015534, -0.026827098138887163, -0.012927084182596107, 0.0017312945144323656, 0.016038701730919914, 0.028866640071341296, 0.039165865236553, 0.046065136943488356, 0.04896024829755483, 0.04758335092470511, 0.04204381565564756, 0.032834211214922644, 0.020798277520802256, 0.007061712189233647, -0.007069234510857113, -0.020232429911833317, -0.03114567451828078, -0.03873952880027733], [-0.041702812083432156, -0.037054539418786586, -0.028630077109198487, -0.017235823941080572, -0.003957242641285151, 0.00995460514009024, 0.02320826998617824, 0.03459557498187183, 0.04310142057239088, 0.047989667034859795, 0.04885816899945481, 0.04565966611001241, 0.03868891633990796, 0.028539790576024824, 0.016038701730919914, 0.002162498187170594, -0.01205028948070265, -0.025586176755546662, -0.03753382386867845, -0.04714561202979198, -0.0538799077791263, -0.05742245611121293, -0.057687453256608165, -0.05480063837205414, -0.049068069230192204, -0.04093503863980408, -0.030939841517149867, -0.019666871213569893, -0.007702905313111807, 0.0044004410358833325, 0.016156130789798474, 0.027162049922227857, 0.03711227165921393, 0.045799991341126285, 0.05311343251576602, 0.05902634928653124, 0.06358486245215166, 0.06689229989447039, 0.06909350912525554, 0.07035982049581486, 0.07087551011001388, 0.07082628231212139, 0.07038999382283674, 0.06972959592806349, 0.06898808845801678, 0.06828516210333851, 0.06771515004642782, 0.06734590797103036, 0.06721828316370318, 0.06734590797103036, 0.06771515004642782, 0.06828516210333851, 0.06898808845801678, 0.06972959592806349, 0.07038999382283674, 0.07082628231212139, 0.07087551011001388, 0.07035982049581486, 0.06909350912525554, 0.06689229989447039, 0.06358486245215166, 0.05902634928653124, 0.05311343251576602, 0.045799991341126285, 0.03711227165921393, 0.027162049922227857, 0.016156130789798474, 0.0044004410358833325, -0.007702905313111807, -0.019666871213569893, -0.030939841517149867, -0.04093503863980408, -0.049068069230192204, -0.05480063837205414, -0.057687453256608165, -0.05742245611121293, -0.0538799077791263, -0.04714561202979198, -0.03753382386867845, -0.025586176755546662, -0.01205028948070265, 0.002162498187170594, 0.016038701730919914, 0.028539790576024824, 0.03868891633990796, 0.04565966611001241, 0.04885816899945481, 0.047989667034859795, 0.04310142057239088, 0.03459557498187183, 0.02320826998617824, 0.00995460514009024, -0.003957242641285151, -0.017235823941080572, -0.028630077109198487, -0.037054539418786586, -0.041702812083432156], [-0.04244131815783876, -0.04092329280348354, -0.03539264198988428, -0.0263662816835029, -0.014686672893891698, -0.001431630441634243, 0.012194803516759327, 0.024978502418535366, 0.035806561097454795, 0.04376321952076582, 0.048202170295002, 0.04878999598770127, 0.04551875419121116, 0.03868891633990796, 0.028866640071341296, 0.01682146201112624, 0.003451784659844099, -0.010294050326122708, -0.023493708108486083, -0.035317511990522577, -0.04508105740142656, -0.05228088690510248, -0.05661221371282111, -0.05796942058800418, -0.05643149574638259, -0.0522355964429413, -0.04574251095070121, -0.03739793090036873, -0.027693203193403574, -0.017128690011925362, -0.0061821296920366335, 0.0047164340701690375, 0.015202405882377333, 0.02498706047190853, 0.033861212803747966, 0.04169314253555411, 0.04842202918439252, 0.05404824184683762, 0.05862177844952994, 0.062229998909092525, 0.06498558144151709, 0.06701538684882409, 0.0684506720218071, 0.06941887418516075, 0.0700370069734079, 0.07040657640544133, 0.07060984119315501, 0.07070720480428683, 0.0707355302630646, 0.07070720480428683, 0.07060984119315501, 0.07040657640544133, 0.0700370069734079, 0.06941887418516075, 0.0684506720218071, 0.06701538684882409, 0.06498558144151709, 0.062229998909092525, 0.05862177844952994, 0.05404824184683762, 0.04842202918439252, 0.04169314253555411, 0.033861212803747966, 0.02498706047190853, 0.015202405882377333, 0.0047164340701690375, -0.0061821296920366335, -0.017128690011925362, -0.027693203193403574, -0.03739793090036873, -0.04574251095070121, -0.0522355964429413, -0.05643149574638259, -0.05796942058800418, -0.05661221371282111, -0.05228088690510248, -0.04508105740142656, -0.035317511990522577, -0.023493708108486083, -0.010294050326122708, 0.003451784659844099, 0.01682146201112624, 0.028866640071341296, 0.03868891633990796, 0.04551875419121116, 0.04878999598770127, 0.048202170295002, 0.04376321952076582, 0.035806561097454795, 0.024978502418535366, 0.012194803516759327, -0.001431630441634243, -0.014686672893891698, -0.0263662816835029, -0.03539264198988428, -0.04092329280348354, -0.04244131815783876], [-0.04083607358767439, -0.042460977170579235, -0.0400685073182753, -0.03387600471170934, -0.024451519180285236, -0.012649365505976515, 0.0004786509491550012, 0.013786222773882296, 0.02613889164358011, 0.036513357564663645, 0.04408082504349423, 0.04826773694892544, 0.04878999598770127, 0.04565966611001241, 0.039165865236553, 0.0298338410564352, 0.01836787339008987, 0.0055845682765417, -0.007656711234980534, -0.020520025916277676, -0.03225043575504232, -0.04221915632873505, -0.04995406610993753, -0.05515491605013087, -0.057694015501266696, -0.05760431515473211, -0.05505760697435419, -0.050335988755707724, -0.04379981483193957, -0.035855125862322736, -0.026923093169523554, -0.017413410827150585, -0.007702905313111807, 0.001880017630607545, 0.011065047478789601, 0.019644189549118916, 0.027471290307035087, 0.03445782405725266, 0.04056597152205359, 0.045799991341126285, 0.05019677946332084, 0.053816356897235, 0.05673284975057918, 0.05902634928653124, 0.06077588090795559, 0.06205358088274775, 0.06292008416246539, 0.06342106706713174, 0.06358486245215166, 0.06342106706713174, 0.06292008416246539, 0.06205358088274775, 0.06077588090795559, 0.05902634928653124, 0.05673284975057918, 0.053816356897235, 0.05019677946332084, 0.045799991341126285, 0.04056597152205359, 0.03445782405725266, 0.027471290307035087, 0.019644189549118916, 0.011065047478789601, 0.001880017630607545, -0.007702905313111807, -0.017413410827150585, -0.026923093169523554, -0.035855125862322736, -0.04379981483193957, -0.050335988755707724, -0.05505760697435419, -0.05760431515473211, -0.057694015501266696, -0.05515491605013087, -0.04995406610993753, -0.04221915632873505, -0.03225043575504232, -0.020520025916277676, -0.007656711234980534, 0.0055845682765417, 0.01836787339008987, 0.0298338410564352, 0.039165865236553, 0.04565966611001241, 0.04878999598770127, 0.04826773694892544, 0.04408082504349423, 0.036513357564663645, 0.02613889164358011, 0.013786222773882296, 0.0004786509491550012, -0.012649365505976515, -0.024451519180285236, -0.03387600471170934, -0.0400685073182753, -0.042460977170579235, -0.04083607358767439], [-0.03690502849914266, -0.04150478158647204, -0.042311921266756425, -0.03925111477774544, -0.03260130122266114, -0.022957945344184216, -0.011167483821793561, 0.0017580172239592287, 0.014736589019986942, 0.026712753398827963, 0.03674556407346923, 0.04408082504349423, 0.048202170295002, 0.04885816899945481, 0.046065136943488356, 0.04008762606051746, 0.031400420505200956, 0.020637150322859062, 0.008531279966773837, -0.00414474927275206, -0.016636970578023727, -0.028259636347245782, -0.03843418261610348, -0.04671568215206028, -0.05280636655509189, -0.05655695505777426, -0.05795744296335416, -0.05711962618109622, -0.054253958142026215, -0.04964337221669045, -0.04361650222140574, -0.03652235697984948, -0.02870801983597124, -0.020500416136265034, -0.012192678126517526, -0.004035181692455175, 0.003769037731855356, 0.011065047478789601, 0.017743676628374457, 0.023736856668822536, 0.029011417275877496, 0.03356204110889651, 0.037403975055435114, 0.04056597152205359, 0.04308380860776664, 0.04499462472466556, 0.04633220955958977, 0.04712332320782043, 0.04738506927142664, 0.04712332320782043, 0.04633220955958977, 0.04499462472466556, 0.04308380860776664, 0.04056597152205359, 0.037403975055435114, 0.03356204110889651, 0.029011417275877496, 0.023736856668822536, 0.017743676628374457, 0.011065047478789601, 0.003769037731855356, -0.004035181692455175, -0.012192678126517526, -0.020500416136265034, -0.02870801983597124, -0.03652235697984948, -0.04361650222140574, -0.04964337221669045, -0.054253958142026215, -0.05711962618109622, -0.05795744296335416, -0.05655695505777426, -0.05280636655509189, -0.04671568215206028, -0.03843418261610348, -0.028259636347245782, -0.016636970578023727, -0.00414474927275206, 0.008531279966773837, 0.020637150322859062, 0.031400420505200956, 0.04008762606051746, 0.046065136943488356, 0.04885816899945481, 0.048202170295002, 0.04408082504349423, 0.03674556407346923, 0.026712753398827963, 0.014736589019986942, 0.0017580172239592287, -0.011167483821793561, -0.022957945344184216, -0.03260130122266114, -0.03925111477774544, -0.042311921266756425, -0.04150478158647204, -0.03690502849914266], [-0.030814659542108623, -0.038043269341213194, -0.041917311008633794, -0.04209225488196526, -0.03856075944551718, -0.03164105742946344, -0.02193599117570719, -0.010268460059092235, 0.0023990864415799986, 0.015052530095095969, 0.026712753398827963, 0.036513357564663645, 0.04376321952076582, 0.047989667034859795, 0.04896024829755483, 0.04668323364055051, 0.04138889936988247, 0.03349514476667778, 0.02356198332998537, 0.012239893896977237, 0.00021694266699616769, -0.011830930510913693, -0.023282917998618678, -0.033607151643790266, -0.0423839459589055, -0.04931819101787035, -0.054241547083993175, -0.05710582426521185, -0.05796942058800418, -0.056978936315397015, -0.05434810170674743, -0.050335988755707724, -0.04522617473918571, -0.03930814034277919, -0.03286176877900921, -0.026145408407212398, -0.019387603268548395, -0.01278230543892609, -0.006487170632833471, -0.0006244046480190265, 0.0047164340701690375, 0.009474273505160937, 0.013611565256248178, 0.01710900613069049, 0.01996034560879418, 0.022167593022248883, 0.023736856668822536, 0.024674977052713404, 0.02498706047190853, 0.024674977052713404, 0.023736856668822536, 0.022167593022248883, 0.01996034560879418, 0.01710900613069049, 0.013611565256248178, 0.009474273505160937, 0.0047164340701690375, -0.0006244046480190265, -0.006487170632833471, -0.01278230543892609, -0.019387603268548395, -0.026145408407212398, -0.03286176877900921, -0.03930814034277919, -0.04522617473918571, -0.050335988755707724, -0.05434810170674743, -0.056978936315397015, -0.05796942058800418, -0.05710582426521185, -0.054241547083993175, -0.04931819101787035, -0.0423839459589055, -0.033607151643790266, -0.023282917998618678, -0.011830930510913693, 0.00021694266699616769, 0.012239893896977237, 0.02356198332998537, 0.03349514476667778, 0.04138889936988247, 0.04668323364055051, 0.04896024829755483, 0.047989667034859795, 0.04376321952076582, 0.036513357564663645, 0.026712753398827963, 0.015052530095095969, 0.0023990864415799986, -0.010268460059092235, -0.02193599117570719, -0.03164105742946344, -0.03856075944551718, -0.04209225488196526, -0.041917311008633794, -0.038043269341213194, -0.030814659542108623], [-0.022881488599615286, -0.03223035314003258, -0.038846163114352336, -0.04215373868923622, -0.041879499176880296, -0.03806399486581272, -0.031045390212314006, -0.02141738123516561, -0.009967215002439982, 0.0023990864415799986, 0.014736589019986942, 0.02613889164358011, 0.035806561097454795, 0.04310142057239088, 0.04758335092470511, 0.049028181942451454, 0.047427087991378736, 0.04296948728468357, 0.03601265264628425, 0.027042004306541426, 0.016626356821187495, 0.005372266208323732, -0.00611885823064855, -0.017287953061458722, -0.02764777669577622, -0.03680356172899527, -0.04446462634244799, -0.050447486533958925, -0.054671596840365946, -0.05714923632188933, -0.05797124859337839, -0.057290358424637956, -0.05530365530373093, -0.0522355964429413, -0.04832258015319124, -0.04379981483193957, -0.03889089243128978, -0.033800193473608776, -0.02870801983597124, -0.023768179473278847, -0.019107634495847278, -0.014827765425508264, -0.011006791150646839, -0.007702905313111807, -0.004957734516104436, -0.0027997817108104317, -0.0012475810549904855, -0.0003123523378733905, 0, -0.0003123523378733905, -0.0012475810549904855, -0.0027997817108104317, -0.004957734516104436, -0.007702905313111807, -0.011006791150646839, -0.014827765425508264, -0.019107634495847278, -0.023768179473278847, -0.02870801983597124, -0.033800193473608776, -0.03889089243128978, -0.04379981483193957, -0.04832258015319124, -0.0522355964429413, -0.05530365530373093, -0.057290358424637956, -0.05797124859337839, -0.05714923632188933, -0.054671596840365946, -0.050447486533958925, -0.04446462634244799, -0.03680356172899527, -0.02764777669577622, -0.017287953061458722, -0.00611885823064855, 0.005372266208323732, 0.016626356821187495, 0.027042004306541426, 0.03601265264628425, 0.04296948728468357, 0.047427087991378736, 0.049028181942451454, 0.04758335092470511, 0.04310142057239088, 0.035806561097454795, 0.02613889164358011, 0.014736589019986942, 0.0023990864415799986, -0.009967215002439982, -0.02141738123516561, -0.031045390212314006, -0.03806399486581272, -0.041879499176880296, -0.04215373868923622, -0.038846163114352336, -0.03223035314003258, -0.022881488599615286], [-0.013562133420842604, -0.024387700766936207, -0.03324326419510057, -0.03937408251080661, -0.042276111494252436, -0.04172945376443669, -0.037804722081310874, -0.030843620652972924, -0.02141738123516561, -0.010268460059092235, 0.0017580172239592287, 0.013786222773882296, 0.024978502418535366, 0.03459557498187183, 0.04204381565564756, 0.04690697628999974, 0.04896135001030587, 0.0481749363813936, 0.04469247054348279, 0.038809151597143106, 0.030936494557518655, 0.021563933760609683, 0.011219659651864305, 0.00043374057536189843, -0.010294050326122708, -0.020520025916277676, -0.029875084633517256, -0.03807572921458141, -0.04492802859668448, -0.05032541829881054, -0.054241547083993175, -0.05671953314497683, -0.05785900766276947, -0.057802223634045365, -0.05672032502303975, -0.05480063837205414, -0.0522355964429413, -0.04921365683929495, -0.04591235715727241, -0.04249346456637444, -0.039100037980666615, -0.035855125862322736, -0.03286176877900921, -0.030203956964135078, -0.027948201779063313, -0.026145408407212398, -0.02483277825192081, -0.024035517556369672, -0.023768179473278847, -0.024035517556369672, -0.02483277825192081, -0.026145408407212398, -0.027948201779063313, -0.030203956964135078, -0.03286176877900921, -0.035855125862322736, -0.039100037980666615, -0.04249346456637444, -0.04591235715727241, -0.04921365683929495, -0.0522355964429413, -0.05480063837205414, -0.05672032502303975, -0.057802223634045365, -0.05785900766276947, -0.05671953314497683, -0.054241547083993175, -0.05032541829881054, -0.04492802859668448, -0.03807572921458141, -0.029875084633517256, -0.020520025916277676, -0.010294050326122708, 0.00043374057536189843, 0.011219659651864305, 0.021563933760609683, 0.030936494557518655, 0.038809151597143106, 0.04469247054348279, 0.0481749363813936, 0.04896135001030587, 0.04690697628999974, 0.04204381565564756, 0.03459557498187183, 0.024978502418535366, 0.013786222773882296, 0.0017580172239592287, -0.010268460059092235, -0.02141738123516561, -0.030843620652972924, -0.037804722081310874, -0.04172945376443669, -0.042276111494252436, -0.03937408251080661, -0.03324326419510057, -0.024387700766936207, -0.013562133420842604], [-0.0034313546221492906, -0.014994006772554757, -0.025439667869505817, -0.033894258279227284, -0.039672212892462845, -0.042326632566186004, -0.04167570339032056, -0.037804722081310874, -0.031045390212314006, -0.02193599117570719, -0.011167483821793561, 0.0004786509491550012, 0.012194803516759327, 0.02320826998617824, 0.032834211214922644, 0.0405170354164538, 0.045858095098109314, 0.048629002229383385, 0.04877116322922048, 0.04638321060292966, 0.04169879060561669, 0.03505762467538453, 0.02687290138972338, 0.017597910510974448, 0.007694458501656245, -0.0023949243781995256, -0.012269588164475924, -0.02158740873174328, -0.03007528872626719, -0.03753382386867845, -0.04383682542915307, -0.04892664366437289, -0.05280636655509189, -0.05552998670483286, -0.057191557619154634, -0.057914223509020056, -0.057839829610288405, -0.05711962618109622, -0.055906388452528745, -0.05434810170674743, -0.052583215123440726, -0.05073735510710331, -0.048921309502863976, -0.047230046389992356, -0.04574251095070121, -0.044521946141915236, -0.04361650222140574, -0.04305993166613821, -0.042872205531290765, -0.04305993166613821, -0.04361650222140574, -0.044521946141915236, -0.04574251095070121, -0.047230046389992356, -0.048921309502863976, -0.05073735510710331, -0.052583215123440726, -0.05434810170674743, -0.055906388452528745, -0.05711962618109622, -0.057839829610288405, -0.057914223509020056, -0.057191557619154634, -0.05552998670483286, -0.05280636655509189, -0.04892664366437289, -0.04383682542915307, -0.03753382386867845, -0.03007528872626719, -0.02158740873174328, -0.012269588164475924, -0.0023949243781995256, 0.007694458501656245, 0.017597910510974448, 0.02687290138972338, 0.03505762467538453, 0.04169879060561669, 0.04638321060292966, 0.04877116322922048, 0.048629002229383385, 0.045858095098109314, 0.0405170354164538, 0.032834211214922644, 0.02320826998617824, 0.012194803516759327, 0.0004786509491550012, -0.011167483821793561, -0.02193599117570719, -0.031045390212314006, -0.037804722081310874, -0.04167570339032056, -0.042326632566186004, -0.039672212892462845, -0.033894258279227284, -0.025439667869505817, -0.014994006772554757, -0.0034313546221492906], [0.006851416294724577, -0.004660575821821476, -0.015940665350712795, -0.026060722843086317, -0.03421227260050144, -0.039768448312307546, -0.042326632566186004, -0.04172945376443669, -0.03806399486581272, -0.03164105742946344, -0.022957945344184216, -0.012649365505976515, -0.001431630441634243, 0.00995460514009024, 0.020798277520802256, 0.030464539527382976, 0.03843117863903444, 0.04431312954801783, 0.047874580410804536, 0.049029254407155574, 0.047830331881385045, 0.044452110907271664, 0.039165865236553, 0.032312457036751126, 0.02427413001985883, 0.015447595491992866, 0.006220087412589483, -0.0030504377239427534, -0.01205028948070265, -0.020520025916277676, -0.028259636347245782, -0.03512944010085653, -0.04104742571834398, -0.04598386580627737, -0.04995406610993753, -0.053010059675862406, -0.05523195728282429, -0.05671953314497683, -0.05758447818808817, -0.05794360707372231, -0.05791317112458218, -0.05760431515473211, -0.05711962618109622, -0.05655065735540448, -0.05597627019066032, -0.055461619698071306, -0.05505760697435419, -0.05480063837205414, -0.054712556063479335, -0.05480063837205414, -0.05505760697435419, -0.055461619698071306, -0.05597627019066032, -0.05655065735540448, -0.05711962618109622, -0.05760431515473211, -0.05791317112458218, -0.05794360707372231, -0.05758447818808817, -0.05671953314497683, -0.05523195728282429, -0.053010059675862406, -0.04995406610993753, -0.04598386580627737, -0.04104742571834398, -0.03512944010085653, -0.028259636347245782, -0.020520025916277676, -0.01205028948070265, -0.0030504377239427534, 0.006220087412589483, 0.015447595491992866, 0.02427413001985883, 0.032312457036751126, 0.039165865236553, 0.044452110907271664, 0.047830331881385045, 0.049029254407155574, 0.047874580410804536, 0.04431312954801783, 0.03843117863903444, 0.030464539527382976, 0.020798277520802256, 0.00995460514009024, -0.001431630441634243, -0.012649365505976515, -0.022957945344184216, -0.03164105742946344, -0.03806399486581272, -0.04172945376443669, -0.042326632566186004, -0.039768448312307546, -0.03421227260050144, -0.026060722843086317, -0.015940665350712795, -0.004660575821821476, 0.006851416294724577], [0.01658547024214415, 0.00590613661916961, -0.005398239019399103, -0.01641138412568979, -0.026265997425311285, -0.03421227260050144, -0.039672212892462845, -0.042276111494252436, -0.041879499176880296, -0.03856075944551718, -0.03260130122266114, -0.024451519180285236, -0.014686672893891698, -0.003957242641285151, 0.007061712189233647, 0.01771809742553514, 0.027423876669558294, 0.03568729784209614, 0.042134866483123944, 0.046522686476480175, 0.04873768884958524, 0.04878999598770127, 0.04679818300676425, 0.04296948728468357, 0.03757709159092609, 0.030936494557518655, 0.023382725500691964, 0.015249806171389482, 0.006853457743037402, -0.00152235912107342, -0.00963486393394146, -0.017287953061458722, -0.024334142827309703, -0.030673501865746567, -0.0362502121008708, -0.04104742571834398, -0.04508105740142656, -0.04839308154172929, -0.051044808013775485, -0.0531105011915593, -0.054671596840365946, -0.05581166934969179, -0.05661221371282111, -0.05714923632188933, -0.057490597413702625, -0.057694015501266696, -0.05780562875263666, -0.05785900766276947, -0.057874524760689224, -0.05785900766276947, -0.05780562875263666, -0.057694015501266696, -0.057490597413702625, -0.05714923632188933, -0.05661221371282111, -0.05581166934969179, -0.054671596840365946, -0.0531105011915593, -0.051044808013775485, -0.04839308154172929, -0.04508105740142656, -0.04104742571834398, -0.0362502121008708, -0.030673501865746567, -0.024334142827309703, -0.017287953061458722, -0.00963486393394146, -0.00152235912107342, 0.006853457743037402, 0.015249806171389482, 0.023382725500691964, 0.030936494557518655, 0.03757709159092609, 0.04296948728468357, 0.04679818300676425, 0.04878999598770127, 0.04873768884958524, 0.046522686476480175, 0.042134866483123944, 0.03568729784209614, 0.027423876669558294, 0.01771809742553514, 0.007061712189233647, -0.003957242641285151, -0.014686672893891698, -0.024451519180285236, -0.03260130122266114, -0.03856075944551718, -0.041879499176880296, -0.042276111494252436, -0.039672212892462845, -0.03421227260050144, -0.026265997425311285, -0.01641138412568979, -0.005398239019399103, 0.00590613661916961, 0.01658547024214415], [0.02507943271442966, 0.015953088739132714, 0.005431115411967232, -0.00564409241937702, -0.01641138412568979, -0.026060722843086317, -0.033894258279227284, -0.03937408251080661, -0.04215373868923622, -0.04209225488196526, -0.03925111477774544, -0.03387600471170934, -0.0263662816835029, -0.017235823941080572, -0.007069234510857113, 0.0035227088628487697, 0.013944869860128403, 0.023654002630535617, 0.032187410052808826, 0.039182857494045126, 0.044389432277917196, 0.04766978588826198, 0.048994794645401615, 0.04843209606376969, 0.046130194328031594, 0.04229988967195813, 0.037194697472528085, 0.03109171747407877, 0.02427413001985883, 0.017016172701800475, 0.009571121963339731, 0.002162498187170594, -0.005021549703949415, -0.011830930510913693, -0.018153763500061804, -0.02391447862413198, -0.02907037696294276, -0.033607151643790266, -0.03753382386867845, -0.04087748122332642, -0.04367812669845153, -0.04598386580627737, -0.047846582872775476, -0.04931819101787035, -0.050447486533958925, -0.05127759866399337, -0.05184400011432848, -0.0521730309375773, -0.05228088690510248, -0.0521730309375773, -0.05184400011432848, -0.05127759866399337, -0.050447486533958925, -0.04931819101787035, -0.047846582872775476, -0.04598386580627737, -0.04367812669845153, -0.04087748122332642, -0.03753382386867845, -0.033607151643790266, -0.02907037696294276, -0.02391447862413198, -0.018153763500061804, -0.011830930510913693, -0.005021549703949415, 0.002162498187170594, 0.009571121963339731, 0.017016172701800475, 0.02427413001985883, 0.03109171747407877, 0.037194697472528085, 0.04229988967195813, 0.046130194328031594, 0.04843209606376969, 0.048994794645401615, 0.04766978588826198, 0.044389432277917196, 0.039182857494045126, 0.032187410052808826, 0.023654002630535617, 0.013944869860128403, 0.0035227088628487697, -0.007069234510857113, -0.017235823941080572, -0.0263662816835029, -0.03387600471170934, -0.03925111477774544, -0.04209225488196526, -0.04215373868923622, -0.03937408251080661, -0.033894258279227284, -0.026060722843086317, -0.01641138412568979, -0.00564409241937702, 0.005431115411967232, 0.015953088739132714, 0.02507943271442966], [0.03170541071491634, 0.024737123028501253, 0.015740823424751294, 0.005431115411967232, -0.005398239019399103, -0.015940665350712795, -0.025439667869505817, -0.03324326419510057, -0.038846163114352336, -0.041917311008633794, -0.042311921266756425, -0.0400685073182753, -0.03539264198988428, -0.028630077109198487, -0.020232429911833317, -0.010718867722094379, -0.0006371247782392889, 0.009473182752142746, 0.01911254521144837, 0.027847141666311193, 0.035327037476218376, 0.0412967222832713, 0.04559833245211172, 0.048168396555550407, 0.049029290715542934, 0.04827678748081466, 0.046065136943488356, 0.04259105245152353, 0.038077813090238326, 0.0327604717491532, 0.02687290138972338, 0.020637150322859062, 0.014255332136680298, 0.007904063612150252, 0.0017312945144323656, -0.00414474927275206, -0.00963486393394146, -0.01467679622724445, -0.01923219082552286, -0.023282917998618678, -0.026827098138887163, -0.029875084633517256, -0.03244560848322273, -0.03456223232753799, -0.0362502121008708, -0.03753382386867845, -0.03843418261610348, -0.038967558916015534, -0.03914418765900462, -0.038967558916015534, -0.03843418261610348, -0.03753382386867845, -0.0362502121008708, -0.03456223232753799, -0.03244560848322273, -0.029875084633517256, -0.026827098138887163, -0.023282917998618678, -0.01923219082552286, -0.01467679622724445, -0.00963486393394146, -0.00414474927275206, 0.0017312945144323656, 0.007904063612150252, 0.014255332136680298, 0.020637150322859062, 0.02687290138972338, 0.0327604717491532, 0.038077813090238326, 0.04259105245152353, 0.046065136943488356, 0.04827678748081466, 0.049029290715542934, 0.048168396555550407, 0.04559833245211172, 0.0412967222832713, 0.035327037476218376, 0.027847141666311193, 0.01911254521144837, 0.009473182752142746, -0.0006371247782392889, -0.010718867722094379, -0.020232429911833317, -0.028630077109198487, -0.03539264198988428, -0.0400685073182753, -0.042311921266756425, -0.041917311008633794, -0.038846163114352336, -0.03324326419510057, -0.025439667869505817, -0.015940665350712795, -0.005398239019399103, 0.005431115411967232, 0.015740823424751294, 0.024737123028501253, 0.03170541071491634], [0.03595224959631377, 0.03158504889291611, 0.024737123028501253, 0.015953088739132714, 0.00590613661916961, -0.004660575821821476, -0.014994006772554757, -0.024387700766936207, -0.03223035314003258, -0.038043269341213194, -0.04150478158647204, -0.042460977170579235, -0.04092329280348354, -0.037054539418786586, -0.03114567451828078, -0.023586099996342147, -0.014830430313707977, -0.005364574400158507, 0.004326348446401224, 0.013786222773882296, 0.022610825025533014, 0.030464539527382976, 0.03709064066850363, 0.04231539213433679, 0.04604662379463335, 0.04826773694892544, 0.049028255863867005, 0.04843209606376969, 0.04662467434805535, 0.04377986405969505, 0.04008762606051746, 0.03574294513132674, 0.030936494557518655, 0.02584725600873246, 0.020637150322859062, 0.015447595491992866, 0.010397804581703946, 0.0055845682765417, 0.001083231122454544, -0.0030504377239427534, -0.006777765423001461, -0.010074346320124224, -0.012927084182596107, -0.015331286697460962, -0.017287953061458722, -0.01880135894126013, -0.01987701194604477, -0.020520025916277676, -0.020733943795838993, -0.020520025916277676, -0.01987701194604477, -0.01880135894126013, -0.017287953061458722, -0.015331286697460962, -0.012927084182596107, -0.010074346320124224, -0.006777765423001461, -0.0030504377239427534, 0.001083231122454544, 0.0055845682765417, 0.010397804581703946, 0.015447595491992866, 0.020637150322859062, 0.02584725600873246, 0.030936494557518655, 0.03574294513132674, 0.04008762606051746, 0.04377986405969505, 0.04662467434805535, 0.04843209606376969, 0.049028255863867005, 0.04826773694892544, 0.04604662379463335, 0.04231539213433679, 0.03709064066850363, 0.030464539527382976, 0.022610825025533014, 0.013786222773882296, 0.004326348446401224, -0.005364574400158507, -0.014830430313707977, -0.023586099996342147, -0.03114567451828078, -0.037054539418786586, -0.04092329280348354, -0.042460977170579235, -0.04150478158647204, -0.038043269341213194, -0.03223035314003258, -0.024387700766936207, -0.014994006772554757, -0.004660575821821476, 0.00590613661916961, 0.015953088739132714, 0.024737123028501253, 0.03158504889291611, 0.03595224959631377], [0.03747308294223967, 0.03595224959631377, 0.03170541071491634, 0.02507943271442966, 0.01658547024214415, 0.006851416294724577, -0.0034313546221492906, -0.013562133420842604, -0.022881488599615286, -0.030814659542108623, -0.03690502849914266, -0.04083607358767439, -0.04244131815783876, -0.041702812083432156, -0.03873952880027733, -0.03378768578473035, -0.027175371195658795, -0.019293987538109965, -0.010568928699422074, -0.001431630441634243, 0.007705272543624346, 0.016468432833891142, 0.024539175695880124, 0.031663523015490296, 0.037657019279810675, 0.042404863574605316, 0.045858095098109314, 0.04802672406115692, 0.048970751720583176, 0.04878999598770127, 0.04761355000386343, 0.04558956944539949, 0.04287592892913734, 0.03963212560213236, 0.03601265264628425, 0.0321619272477622, 0.02821074311733881, 0.02427413001985883, 0.020450442195287553, 0.01682146201112624, 0.013453291135757724, 0.010397804581703946, 0.007694458501656245, 0.005372266208323732, 0.003451784659844099, 0.0019469824866320303, 0.000866888257962456, 0.00021694266699616769, 0, 0.00021694266699616769, 0.000866888257962456, 0.0019469824866320303, 0.003451784659844099, 0.005372266208323732, 0.007694458501656245, 0.010397804581703946, 0.013453291135757724, 0.01682146201112624, 0.020450442195287553, 0.02427413001985883, 0.02821074311733881, 0.0321619272477622, 0.03601265264628425, 0.03963212560213236, 0.04287592892913734, 0.04558956944539949, 0.04761355000386343, 0.04878999598770127, 0.048970751720583176, 0.04802672406115692, 0.045858095098109314, 0.042404863574605316, 0.037657019279810675, 0.031663523015490296, 0.024539175695880124, 0.016468432833891142, 0.007705272543624346, -0.001431630441634243, -0.010568928699422074, -0.019293987538109965, -0.027175371195658795, -0.03378768578473035, -0.03873952880027733, -0.041702812083432156, -0.04244131815783876, -0.04083607358767439, -0.03690502849914266, -0.030814659542108623, -0.022881488599615286, -0.013562133420842604, -0.0034313546221492906, 0.006851416294724577, 0.01658547024214415, 0.02507943271442966, 0.03170541071491634, 0.03595224959631377, 0.03747308294223967]], "zmax": 1, "y": [0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5, 8.5, 9.5, 10.5, 11.5, 12.5, 13.5, 14.5, 15.5, 16.5, 17.5, 18.5, 19.5, 20.5, 21.5, 22.5, 23.5, 24.5, 25.5, 26.5, 27.5, 28.5, 29.5, 30.5, 31.5, 32.5, 33.5, 34.5, 35.5, 36.5, 37.5, 38.5, 39.5, 40.5, 41.5, 42.5, 43.5, 44.5, 45.5, 46.5, 47.5, 48.5, 49.5, 50.5, 51.5, 52.5, 53.5, 54.5, 55.5, 56.5, 57.5, 58.5, 59.5, 60.5, 61.5, 62.5, 63.5, 64.5, 65.5, 66.5, 67.5, 68.5, 69.5, 70.5, 71.5, 72.5, 73.5, 74.5, 75.5, 76.5, 77.5, 78.5, 79.5, 80.5, 81.5, 82.5, 83.5, 84.5, 85.5, 86.5, 87.5, 88.5, 89.5, 90.5, 91.5, 92.5, 93.5, 94.5, 95.5, 96.5, 97.5], "type": "heatmap", "showscale": true, "x": [0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5, 8.5, 9.5, 10.5, 11.5, 12.5, 13.5, 14.5, 15.5, 16.5, 17.5, 18.5, 19.5, 20.5, 21.5, 22.5, 23.5, 24.5, 25.5, 26.5, 27.5, 28.5, 29.5, 30.5, 31.5, 32.5, 33.5, 34.5, 35.5, 36.5, 37.5, 38.5, 39.5, 40.5, 41.5, 42.5, 43.5, 44.5, 45.5, 46.5, 47.5, 48.5, 49.5, 50.5, 51.5, 52.5, 53.5, 54.5, 55.5, 56.5, 57.5, 58.5, 59.5, 60.5, 61.5, 62.5, 63.5, 64.5, 65.5, 66.5, 67.5, 68.5, 69.5, 70.5, 71.5, 72.5, 73.5, 74.5, 75.5, 76.5, 77.5, 78.5, 79.5, 80.5, 81.5, 82.5, 83.5, 84.5, 85.5, 86.5, 87.5, 88.5, 89.5, 90.5, 91.5, 92.5, 93.5, 94.5, 95.5, 96.5, 97.5], "zaxis": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 98, "currentCount": 98}}}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [0.5, 97.5], "domain": [0.03619130941965587, 0.9934383202099738], "mirror": false, "tickangle": 0, "showline": true, "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, "range": [0.5, 97.5], "domain": [0.03762029746281716, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "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": 516.984375}}
{"id": "a3a93ee2-60ef-47a1-a4ac-bedbcf6b822f", "data": [{"showlegend": false, "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "colorscale": [[0, "rgba(0, 0, 4, 1.000)"], [0.00392156862745098, "rgba(1, 0, 5, 1.000)"], [0.00784313725490196, "rgba(1, 1, 6, 1.000)"], [0.011764705882352941, "rgba(1, 1, 8, 1.000)"], [0.01568627450980392, "rgba(2, 1, 10, 1.000)"], [0.0196078431372549, "rgba(2, 2, 12, 1.000)"], [0.023529411764705882, "rgba(2, 2, 14, 1.000)"], [0.027450980392156862, "rgba(3, 2, 16, 1.000)"], [0.03137254901960784, "rgba(4, 3, 18, 1.000)"], [0.03529411764705882, "rgba(4, 3, 20, 1.000)"], [0.0392156862745098, "rgba(5, 4, 23, 1.000)"], [0.043137254901960784, "rgba(6, 4, 25, 1.000)"], [0.047058823529411764, "rgba(7, 5, 27, 1.000)"], [0.050980392156862744, "rgba(8, 5, 29, 1.000)"], [0.054901960784313725, "rgba(9, 6, 31, 1.000)"], [0.058823529411764705, "rgba(10, 7, 34, 1.000)"], [0.06274509803921569, "rgba(11, 7, 36, 1.000)"], [0.06666666666666667, "rgba(12, 8, 38, 1.000)"], [0.07058823529411765, "rgba(13, 8, 41, 1.000)"], [0.07450980392156863, "rgba(14, 9, 43, 1.000)"], [0.0784313725490196, "rgba(16, 9, 45, 1.000)"], [0.08235294117647059, "rgba(17, 10, 48, 1.000)"], [0.08627450980392157, "rgba(18, 10, 50, 1.000)"], [0.09019607843137255, "rgba(20, 11, 52, 1.000)"], [0.09411764705882353, "rgba(21, 11, 55, 1.000)"], [0.09803921568627451, "rgba(22, 11, 57, 1.000)"], [0.10196078431372549, "rgba(24, 12, 60, 1.000)"], [0.10588235294117647, "rgba(25, 12, 62, 1.000)"], [0.10980392156862745, "rgba(27, 12, 65, 1.000)"], [0.11372549019607843, "rgba(28, 12, 67, 1.000)"], [0.11764705882352941, "rgba(30, 12, 69, 1.000)"], [0.12156862745098039, "rgba(31, 12, 72, 1.000)"], [0.12549019607843137, "rgba(33, 12, 74, 1.000)"], [0.12941176470588237, "rgba(35, 12, 76, 1.000)"], [0.13333333333333333, "rgba(36, 12, 79, 1.000)"], [0.13725490196078433, "rgba(38, 12, 81, 1.000)"], [0.1411764705882353, "rgba(40, 11, 83, 1.000)"], [0.1450980392156863, "rgba(41, 11, 85, 1.000)"], [0.14901960784313725, "rgba(43, 11, 87, 1.000)"], [0.15294117647058825, "rgba(45, 11, 89, 1.000)"], [0.1568627450980392, "rgba(47, 10, 91, 1.000)"], [0.1607843137254902, "rgba(49, 10, 92, 1.000)"], [0.16470588235294117, "rgba(50, 10, 94, 1.000)"], [0.16862745098039217, "rgba(52, 10, 95, 1.000)"], [0.17254901960784313, "rgba(54, 9, 97, 1.000)"], [0.17647058823529413, "rgba(56, 9, 98, 1.000)"], [0.1803921568627451, "rgba(57, 9, 99, 1.000)"], [0.1843137254901961, "rgba(59, 9, 100, 1.000)"], [0.18823529411764706, "rgba(61, 9, 101, 1.000)"], [0.19215686274509805, "rgba(62, 9, 102, 1.000)"], [0.19607843137254902, "rgba(64, 10, 103, 1.000)"], [0.2, "rgba(66, 10, 104, 1.000)"], [0.20392156862745098, "rgba(68, 10, 104, 1.000)"], [0.20784313725490197, "rgba(69, 10, 105, 1.000)"], [0.21176470588235294, "rgba(71, 11, 106, 1.000)"], [0.21568627450980393, "rgba(73, 11, 106, 1.000)"], [0.2196078431372549, "rgba(74, 12, 107, 1.000)"], [0.2235294117647059, "rgba(76, 12, 107, 1.000)"], [0.22745098039215686, "rgba(77, 13, 108, 1.000)"], [0.23137254901960785, "rgba(79, 13, 108, 1.000)"], [0.23529411764705882, "rgba(81, 14, 108, 1.000)"], [0.23921568627450981, "rgba(82, 14, 109, 1.000)"], [0.24313725490196078, "rgba(84, 15, 109, 1.000)"], [0.24705882352941178, "rgba(85, 15, 109, 1.000)"], [0.25098039215686274, "rgba(87, 16, 110, 1.000)"], [0.2549019607843137, "rgba(89, 16, 110, 1.000)"], [0.25882352941176473, "rgba(90, 17, 110, 1.000)"], [0.2627450980392157, "rgba(92, 18, 110, 1.000)"], [0.26666666666666666, "rgba(93, 18, 110, 1.000)"], [0.27058823529411763, "rgba(95, 19, 110, 1.000)"], [0.27450980392156865, "rgba(97, 19, 110, 1.000)"], [0.2784313725490196, "rgba(98, 20, 110, 1.000)"], [0.2823529411764706, "rgba(100, 21, 110, 1.000)"], [0.28627450980392155, "rgba(101, 21, 110, 1.000)"], [0.2901960784313726, "rgba(103, 22, 110, 1.000)"], [0.29411764705882354, "rgba(105, 22, 110, 1.000)"], [0.2980392156862745, "rgba(106, 23, 110, 1.000)"], [0.30196078431372547, "rgba(108, 24, 110, 1.000)"], [0.3058823529411765, "rgba(109, 24, 110, 1.000)"], [0.30980392156862746, "rgba(111, 25, 110, 1.000)"], [0.3137254901960784, "rgba(113, 25, 110, 1.000)"], [0.3176470588235294, "rgba(114, 26, 110, 1.000)"], [0.3215686274509804, "rgba(116, 26, 110, 1.000)"], [0.3254901960784314, "rgba(117, 27, 110, 1.000)"], [0.32941176470588235, "rgba(119, 28, 109, 1.000)"], [0.3333333333333333, "rgba(120, 28, 109, 1.000)"], [0.33725490196078434, "rgba(122, 29, 109, 1.000)"], [0.3411764705882353, "rgba(124, 29, 109, 1.000)"], [0.34509803921568627, "rgba(125, 30, 109, 1.000)"], [0.34901960784313724, "rgba(127, 30, 108, 1.000)"], [0.35294117647058826, "rgba(128, 31, 108, 1.000)"], [0.3568627450980392, "rgba(130, 32, 108, 1.000)"], [0.3607843137254902, "rgba(132, 32, 107, 1.000)"], [0.36470588235294116, "rgba(133, 33, 107, 1.000)"], [0.3686274509803922, "rgba(135, 33, 107, 1.000)"], [0.37254901960784315, "rgba(136, 34, 106, 1.000)"], [0.3764705882352941, "rgba(138, 34, 106, 1.000)"], [0.3803921568627451, "rgba(140, 35, 105, 1.000)"], [0.3843137254901961, "rgba(141, 35, 105, 1.000)"], [0.38823529411764707, "rgba(143, 36, 105, 1.000)"], [0.39215686274509803, "rgba(144, 37, 104, 1.000)"], [0.396078431372549, "rgba(146, 37, 104, 1.000)"], [0.4, "rgba(147, 38, 103, 1.000)"], [0.403921568627451, "rgba(149, 38, 103, 1.000)"], [0.40784313725490196, "rgba(151, 39, 102, 1.000)"], [0.4117647058823529, "rgba(152, 39, 102, 1.000)"], [0.41568627450980394, "rgba(154, 40, 101, 1.000)"], [0.4196078431372549, "rgba(155, 41, 100, 1.000)"], [0.4235294117647059, "rgba(157, 41, 100, 1.000)"], [0.42745098039215684, "rgba(159, 42, 99, 1.000)"], [0.43137254901960786, "rgba(160, 42, 99, 1.000)"], [0.43529411764705883, "rgba(162, 43, 98, 1.000)"], [0.4392156862745098, "rgba(163, 44, 97, 1.000)"], [0.44313725490196076, "rgba(165, 44, 96, 1.000)"], [0.4470588235294118, "rgba(166, 45, 96, 1.000)"], [0.45098039215686275, "rgba(168, 46, 95, 1.000)"], [0.4549019607843137, "rgba(169, 46, 94, 1.000)"], [0.4588235294117647, "rgba(171, 47, 94, 1.000)"], [0.4627450980392157, "rgba(173, 48, 93, 1.000)"], [0.4666666666666667, "rgba(174, 48, 92, 1.000)"], [0.47058823529411764, "rgba(176, 49, 91, 1.000)"], [0.4745098039215686, "rgba(177, 50, 90, 1.000)"], [0.47843137254901963, "rgba(179, 50, 90, 1.000)"], [0.4823529411764706, "rgba(180, 51, 89, 1.000)"], [0.48627450980392156, "rgba(182, 52, 88, 1.000)"], [0.49019607843137253, "rgba(183, 53, 87, 1.000)"], [0.49411764705882355, "rgba(185, 53, 86, 1.000)"], [0.4980392156862745, "rgba(186, 54, 85, 1.000)"], [0.5019607843137255, "rgba(188, 55, 84, 1.000)"], [0.5058823529411764, "rgba(189, 56, 83, 1.000)"], [0.5098039215686274, "rgba(191, 57, 82, 1.000)"], [0.5137254901960784, "rgba(192, 58, 81, 1.000)"], [0.5176470588235295, "rgba(193, 58, 80, 1.000)"], [0.5215686274509804, "rgba(195, 59, 79, 1.000)"], [0.5254901960784314, "rgba(196, 60, 78, 1.000)"], [0.5294117647058824, "rgba(198, 61, 77, 1.000)"], [0.5333333333333333, "rgba(199, 62, 76, 1.000)"], [0.5372549019607843, "rgba(200, 63, 75, 1.000)"], [0.5411764705882353, "rgba(202, 64, 74, 1.000)"], [0.5450980392156862, "rgba(203, 65, 73, 1.000)"], [0.5490196078431373, "rgba(204, 66, 72, 1.000)"], [0.5529411764705883, "rgba(206, 67, 71, 1.000)"], [0.5568627450980392, "rgba(207, 68, 70, 1.000)"], [0.5607843137254902, "rgba(208, 69, 69, 1.000)"], [0.5647058823529412, "rgba(210, 70, 68, 1.000)"], [0.5686274509803921, "rgba(211, 71, 67, 1.000)"], [0.5725490196078431, "rgba(212, 72, 66, 1.000)"], [0.5764705882352941, "rgba(213, 74, 65, 1.000)"], [0.5803921568627451, "rgba(215, 75, 63, 1.000)"], [0.5843137254901961, "rgba(216, 76, 62, 1.000)"], [0.5882352941176471, "rgba(217, 77, 61, 1.000)"], [0.592156862745098, "rgba(218, 78, 60, 1.000)"], [0.596078431372549, "rgba(219, 80, 59, 1.000)"], [0.6, "rgba(221, 81, 58, 1.000)"], [0.6039215686274509, "rgba(222, 82, 56, 1.000)"], [0.6078431372549019, "rgba(223, 83, 55, 1.000)"], [0.611764705882353, "rgba(224, 85, 54, 1.000)"], [0.615686274509804, "rgba(225, 86, 53, 1.000)"], [0.6196078431372549, "rgba(226, 87, 52, 1.000)"], [0.6235294117647059, "rgba(227, 89, 51, 1.000)"], [0.6274509803921569, "rgba(228, 90, 49, 1.000)"], [0.6313725490196078, "rgba(229, 92, 48, 1.000)"], [0.6352941176470588, "rgba(230, 93, 47, 1.000)"], [0.6392156862745098, "rgba(231, 94, 46, 1.000)"], [0.6431372549019608, "rgba(232, 96, 45, 1.000)"], [0.6470588235294118, "rgba(233, 97, 43, 1.000)"], [0.6509803921568628, "rgba(234, 99, 42, 1.000)"], [0.6549019607843137, "rgba(235, 100, 41, 1.000)"], [0.6588235294117647, "rgba(235, 102, 40, 1.000)"], [0.6627450980392157, "rgba(236, 103, 38, 1.000)"], [0.6666666666666666, "rgba(237, 105, 37, 1.000)"], [0.6705882352941176, "rgba(238, 106, 36, 1.000)"], [0.6745098039215687, "rgba(239, 108, 35, 1.000)"], [0.6784313725490196, "rgba(239, 110, 33, 1.000)"], [0.6823529411764706, "rgba(240, 111, 32, 1.000)"], [0.6862745098039216, "rgba(241, 113, 31, 1.000)"], [0.6901960784313725, "rgba(241, 115, 29, 1.000)"], [0.6941176470588235, "rgba(242, 116, 28, 1.000)"], [0.6980392156862745, "rgba(243, 118, 27, 1.000)"], [0.7019607843137254, "rgba(243, 120, 25, 1.000)"], [0.7058823529411765, "rgba(244, 121, 24, 1.000)"], [0.7098039215686275, "rgba(245, 123, 23, 1.000)"], [0.7137254901960784, "rgba(245, 125, 21, 1.000)"], [0.7176470588235294, "rgba(246, 126, 20, 1.000)"], [0.7215686274509804, "rgba(246, 128, 19, 1.000)"], [0.7254901960784313, "rgba(247, 130, 18, 1.000)"], [0.7294117647058823, "rgba(247, 132, 16, 1.000)"], [0.7333333333333333, "rgba(248, 133, 15, 1.000)"], [0.7372549019607844, "rgba(248, 135, 14, 1.000)"], [0.7411764705882353, "rgba(248, 137, 12, 1.000)"], [0.7450980392156863, "rgba(249, 139, 11, 1.000)"], [0.7490196078431373, "rgba(249, 140, 10, 1.000)"], [0.7529411764705882, "rgba(249, 142, 9, 1.000)"], [0.7568627450980392, "rgba(250, 144, 8, 1.000)"], [0.7607843137254902, "rgba(250, 146, 7, 1.000)"], [0.7647058823529411, "rgba(250, 148, 7, 1.000)"], [0.7686274509803922, "rgba(251, 150, 6, 1.000)"], [0.7725490196078432, "rgba(251, 151, 6, 1.000)"], [0.7764705882352941, "rgba(251, 153, 6, 1.000)"], [0.7803921568627451, "rgba(251, 155, 6, 1.000)"], [0.7843137254901961, "rgba(251, 157, 7, 1.000)"], [0.788235294117647, "rgba(252, 159, 7, 1.000)"], [0.792156862745098, "rgba(252, 161, 8, 1.000)"], [0.796078431372549, "rgba(252, 163, 9, 1.000)"], [0.8, "rgba(252, 165, 10, 1.000)"], [0.803921568627451, "rgba(252, 166, 12, 1.000)"], [0.807843137254902, "rgba(252, 168, 13, 1.000)"], [0.8117647058823529, "rgba(252, 170, 15, 1.000)"], [0.8156862745098039, "rgba(252, 172, 17, 1.000)"], [0.8196078431372549, "rgba(252, 174, 18, 1.000)"], [0.8235294117647058, "rgba(252, 176, 20, 1.000)"], [0.8274509803921568, "rgba(252, 178, 22, 1.000)"], [0.8313725490196079, "rgba(252, 180, 24, 1.000)"], [0.8352941176470589, "rgba(251, 182, 26, 1.000)"], [0.8392156862745098, "rgba(251, 184, 29, 1.000)"], [0.8431372549019608, "rgba(251, 186, 31, 1.000)"], [0.8470588235294118, "rgba(251, 188, 33, 1.000)"], [0.8509803921568627, "rgba(251, 190, 35, 1.000)"], [0.8549019607843137, "rgba(250, 192, 38, 1.000)"], [0.8588235294117647, "rgba(250, 194, 40, 1.000)"], [0.8627450980392157, "rgba(250, 196, 42, 1.000)"], [0.8666666666666667, "rgba(250, 198, 45, 1.000)"], [0.8705882352941177, "rgba(249, 199, 47, 1.000)"], [0.8745098039215686, "rgba(249, 201, 50, 1.000)"], [0.8784313725490196, "rgba(249, 203, 53, 1.000)"], [0.8823529411764706, "rgba(248, 205, 55, 1.000)"], [0.8862745098039215, "rgba(248, 207, 58, 1.000)"], [0.8901960784313725, "rgba(247, 209, 61, 1.000)"], [0.8941176470588236, "rgba(247, 211, 64, 1.000)"], [0.8980392156862745, "rgba(246, 213, 67, 1.000)"], [0.9019607843137255, "rgba(246, 215, 70, 1.000)"], [0.9058823529411765, "rgba(245, 217, 73, 1.000)"], [0.9098039215686274, "rgba(245, 219, 76, 1.000)"], [0.9137254901960784, "rgba(244, 221, 79, 1.000)"], [0.9176470588235294, "rgba(244, 223, 83, 1.000)"], [0.9215686274509803, "rgba(244, 225, 86, 1.000)"], [0.9254901960784314, "rgba(243, 227, 90, 1.000)"], [0.9294117647058824, "rgba(243, 229, 93, 1.000)"], [0.9333333333333333, "rgba(242, 230, 97, 1.000)"], [0.9372549019607843, "rgba(242, 232, 101, 1.000)"], [0.9411764705882353, "rgba(242, 234, 105, 1.000)"], [0.9450980392156862, "rgba(241, 236, 109, 1.000)"], [0.9490196078431372, "rgba(241, 237, 113, 1.000)"], [0.9529411764705882, "rgba(241, 239, 117, 1.000)"], [0.9568627450980393, "rgba(241, 241, 121, 1.000)"], [0.9607843137254902, "rgba(242, 242, 125, 1.000)"], [0.9647058823529412, "rgba(242, 244, 130, 1.000)"], [0.9686274509803922, "rgba(243, 245, 134, 1.000)"], [0.9725490196078431, "rgba(243, 246, 138, 1.000)"], [0.9764705882352941, "rgba(244, 248, 142, 1.000)"], [0.9803921568627451, "rgba(245, 249, 146, 1.000)"], [0.984313725490196, "rgba(246, 250, 150, 1.000)"], [0.9882352941176471, "rgba(248, 251, 154, 1.000)"], [0.9921568627450981, "rgba(249, 252, 157, 1.000)"], [0.996078431372549, "rgba(250, 253, 161, 1.000)"], [1, "rgba(252, 255, 164, 1.000)"]], "yaxis": "y", "zmin": 1.829079630697975e-07, "z": [[1.8290796454923756e-07, 5.497066917000584e-07, 9.19466956486331e-07, 1.2942068969747099e-06, 1.6760115500849296e-06, 2.067061970765561e-06, 2.4696667560181836e-06, 2.886297066428657e-06, 3.319625927107903e-06, 3.7725731971260704e-06, 4.248357608663748e-06, 4.7505577785000356e-06, 5.28318437432517e-06, 5.850766377517567e-06, 6.458455090232624e-06, 7.112150541701321e-06, 7.818656363004787e-06, 8.585871232060479e-06, 9.423027155590325e-06, 1.0340988938143452e-05, 1.1352633515253903e-05, 1.2473335093816992e-05, 1.3721591817718338e-05, 1.5119843612815173e-05, 1.66955521446661e-05, 1.84826442802448e-05, 2.0523468387958854e-05, 2.287148502888285e-05, 2.5595030177951444e-05, 2.8782676493826547e-05, 3.2551031665249904e-05, 3.7056352578215185e-05, 4.251231484880748e-05, 4.9218062599172924e-05, 5.760413605966685e-05, 6.831102188984554e-05, 8.23307954029726e-05, 0.00010127987763255019, 0.00012797033787642807, 0.0001677476822599226, 0.00023214389773265382, 0.00035105343734426176, 0.0006169695102927634, 0.0012553300945576532, 0.001972996008401359, 0.0006323364740403615, 0.005385012867511639, 0.002884706274792965, 0.003182224419411687, 0.0028847062747929656, 0.0053850128675116396, 0.0006323364740403615, 0.001972996008401359, 0.0012553300945576532, 0.0006169695102927635, 0.00035105343734426165, 0.0002321438977326537, 0.0001677476822599227, 0.00012797033787642804, 0.00010127987763255016, 8.233079540297267e-05, 6.831102188984549e-05, 5.7604136059667045e-05, 4.921806259917277e-05, 4.2512314848807374e-05, 3.705635257821507e-05, 3.2551031665249945e-05, 2.8782676493826757e-05, 2.5595030177951665e-05, 2.2871485028882877e-05, 2.0523468387958766e-05, 1.848264428024449e-05, 1.6695552144666104e-05, 1.5119843612815508e-05, 1.3721591817718216e-05, 1.2473335093816985e-05, 1.1352633515253473e-05, 1.0340988938143496e-05, 9.423027155590738e-06, 8.585871232060037e-06, 7.818656363005258e-06, 7.112150541701334e-06, 6.4584550902325694e-06, 5.850766377517445e-06, 5.283184374325131e-06, 4.750557778500084e-06, 4.248357608663676e-06, 3.7725731971259082e-06, 3.31962592710784e-06, 2.886297066428969e-06, 2.469666756018088e-06, 2.0670619707654306e-06, 1.6760115500848465e-06, 1.2942068969750364e-06, 9.194669564867853e-07, 5.497066916996206e-07, 1.829079645492175e-07], [5.497066935761536e-07, 1.6520738408154143e-06, 2.763341445359071e-06, 3.889574866234635e-06, 5.03704040046937e-06, 6.212292890623248e-06, 7.42227057592601e-06, 8.674400176398819e-06, 9.97671516100943e-06, 1.1337990757484067e-05, 1.276790050033008e-05, 1.4277199444801807e-05, 1.587794113530279e-05, 1.7583736883986736e-05, 1.9410068242309727e-05, 2.137466698193075e-05, 2.3497980596086792e-05, 2.5803747483048402e-05, 2.8319713345942352e-05, 3.1078530925315325e-05, 3.411890017295283e-05, 3.748702635800465e-05, 4.123850322527894e-05, 4.5440771177432655e-05, 5.017636262395393e-05, 5.5547240507115324e-05, 6.168067731921439e-05, 6.873734191526557e-05, 7.692260927517677e-05, 8.650267302430335e-05, 9.782798248986145e-05, 0.00011136814736525675, 0.00012776534185710687, 0.00014791860442191785, 0.00017312186708413194, 0.00020530002760685853, 0.0002474346360037934, 0.00030438362809925135, 0.0003845982953707618, 0.0005041438189106111, 0.0006976779726141801, 0.0010550443878982595, 0.0018542204855418114, 0.003772751634667398, 0.005929710670402133, 0.0019003262279328555, 0.0161844413219065, 0.008669997665554924, 0.009564049903614591, 0.008669997665554924, 0.0161844413219065, 0.0019003262279328552, 0.005929710670402133, 0.003772751634667398, 0.0018542204855418111, 0.0010550443878982595, 0.0006976779726141802, 0.0005041438189106111, 0.00038459829537076197, 0.00030438362809925146, 0.0002474346360037934, 0.0002053000276068585, 0.0001731218670841325, 0.0001479186044219177, 0.0001277653418571066, 0.00011136814736525633, 9.782798248986118e-05, 8.65026730243043e-05, 7.692260927517715e-05, 6.873734191526528e-05, 6.168067731921422e-05, 5.554724050711474e-05, 5.017636262395351e-05, 4.544077117743105e-05, 4.123850322527848e-05, 3.748702635800673e-05, 3.411890017295234e-05, 3.107853092531553e-05, 2.8319713345941667e-05, 2.5803747483047264e-05, 2.3497980596087784e-05, 2.1374666981932303e-05, 1.9410068242310263e-05, 1.7583736883985895e-05, 1.5877941135304245e-05, 1.42771994448014e-05, 1.2767900500329387e-05, 1.133799075748301e-05, 9.976715161009728e-06, 8.67440017639788e-06, 7.422270575926642e-06, 6.21229289062392e-06, 5.037040400469733e-06, 3.889574866235196e-06, 2.7633414453600205e-06, 1.6520738408142043e-06, 5.497066935757494e-07], [9.19466958585288e-07, 2.763341443116317e-06, 4.62210331910619e-06, 6.505897733181273e-06, 8.425206056522666e-06, 1.0390992208589221e-05, 1.2414861448204657e-05, 1.4509236091347435e-05, 1.6687553276744435e-05, 1.8964490938438336e-05, 2.1356229465505377e-05, 2.3880758306012128e-05, 2.6558238838583424e-05, 2.9411437981434662e-05, 3.2466250980772336e-05, 3.5752336812563706e-05, 3.930389699800212e-05, 4.3160637566721565e-05, 4.736896728682558e-05, 5.198350277502678e-05, 5.706897544898865e-05, 6.270267047817473e-05, 6.89775766711461e-05, 7.600649808795687e-05, 8.392748245178562e-05, 9.291107787579196e-05, 0.00010317016640922034, 0.00011497349042689603, 0.00012866456988276605, 0.0001446886527265618, 0.00016363191692695856, 0.00018627985335945767, 0.0002137065920246706, 0.0002474159053225588, 0.0002895720815175325, 0.0003433947886219923, 0.0004138710940411968, 0.0005091265814189354, 0.0006432972148573996, 0.0008432542180365521, 0.0011669674084649152, 0.001764712533033322, 0.0031014512257559208, 0.0063105472796519575, 0.009918737923218202, 0.0031783088468576542, 0.027072477326370113, 0.014503143735396346, 0.01599824138890642, 0.014503143735396346, 0.027072477326370116, 0.003178308846857654, 0.009918737923218204, 0.006310547279651956, 0.0031014512257559203, 0.0017647125330333224, 0.001166967408464915, 0.0008432542180365518, 0.0006432972148573996, 0.0005091265814189356, 0.0004138710940411976, 0.0003433947886219925, 0.00028957208151753256, 0.0002474159053225577, 0.00021370659202467118, 0.00018627985335945815, 0.00016363191692695856, 0.00014468865272656339, 0.00012866456988276702, 0.00011497349042689468, 0.00010317016640922081, 9.291107787579211e-05, 8.392748245178392e-05, 7.600649808795714e-05, 6.897757667114546e-05, 6.27026704781762e-05, 5.7068975448988655e-05, 5.1983502775027185e-05, 4.736896728682582e-05, 4.3160637566720976e-05, 3.930389699800378e-05, 3.5752336812563055e-05, 3.2466250980772166e-05, 2.9411437981435713e-05, 2.655823883858406e-05, 2.3880758306012253e-05, 2.1356229465503666e-05, 1.8964490938435677e-05, 1.6687553276744177e-05, 1.4509236091348992e-05, 1.2414861448204222e-05, 1.0390992208589772e-05, 8.425206056523977e-06, 6.505897733182068e-06, 4.6221033191067245e-06, 2.7633414431159715e-06, 9.194669585841073e-07], [1.2942068959189399e-06, 3.889574865395584e-06, 6.505897733217946e-06, 9.157455452588845e-06, 1.1859001181459481e-05, 1.4625967325674326e-05, 1.747468900506744e-05, 2.042265140015032e-05, 2.3488768092598032e-05, 2.669369916874868e-05, 3.0060219552507305e-05, 3.361365048344715e-05, 3.7382370324896625e-05, 4.1398424913416816e-05, 4.569826337800217e-05, 5.0323632595155816e-05, 5.532267324336957e-05, 6.075127397883531e-05, 6.66747579859182e-05, 7.31700014244984e-05, 8.032811772754647e-05, 8.825789040648242e-05, 9.709020683299113e-05, 0.00010698384548382586, 0.00011813311676725608, 0.00013077807734681205, 0.00014521837132949034, 0.0001618322694916459, 0.00018110329631626333, 0.00020365816427341037, 0.00023032195277710834, 0.00026220028529665916, 0.0003008050607202062, 0.00034825292284817197, 0.00040759022662745345, 0.0004833488284783052, 0.000582548287966456, 0.0007166257774124314, 0.0009054783549967816, 0.0011869285068248567, 0.0016425712676048137, 0.0024839265159387405, 0.004365462340873328, 0.008882602202193427, 0.013962105372997453, 0.004473088743346146, 0.038109534181743156, 0.020416780491624674, 0.022520502511696332, 0.02041678049162467, 0.038109534181743156, 0.004473088743346147, 0.013962105372997453, 0.008882602202193425, 0.004365462340873328, 0.0024839265159387414, 0.001642571267604814, 0.0011869285068248556, 0.0009054783549967818, 0.0007166257774124314, 0.0005825482879664565, 0.0004833488284783055, 0.0004075902266274545, 0.000348252922848172, 0.0003008050607202062, 0.00026220028529665824, 0.00023032195277710972, 0.00020365816427341104, 0.00018110329631626553, 0.00016183226949164546, 0.00014521837132949113, 0.00013077807734681161, 0.00011813311676725314, 0.0001069838454838252, 9.709020683299146e-05, 8.82578904064831e-05, 8.032811772754445e-05, 7.317000142450036e-05, 6.667475798591823e-05, 6.075127397883669e-05, 5.532267324337159e-05, 5.0323632595156196e-05, 4.569826337800215e-05, 4.139842491341776e-05, 3.738237032489745e-05, 3.3613650483447364e-05, 3.0060219552506116e-05, 2.6693699168745767e-05, 2.348876809259525e-05, 2.0422651400150297e-05, 1.747468900506765e-05, 1.4625967325675772e-05, 1.185900118146321e-05, 9.157455452588735e-06, 6.505897733219518e-06, 3.889574865393066e-06, 1.2942068959200442e-06], [1.6760115479378958e-06, 5.0370404045445285e-06, 8.425206055180554e-06, 1.185900118255229e-05, 1.535753130039521e-05, 1.894078149757544e-05, 2.2629905922599533e-05, 2.644754807053947e-05, 3.0418201189066894e-05, 3.4568620315924405e-05, 3.892829918232945e-05, 4.353002904567143e-05, 4.8410560145920206e-05, 5.3611392143385315e-05, 5.917972702007595e-05, 6.516962734323584e-05, 7.164343572182981e-05, 7.867352846697568e-05, 8.634449968992179e-05, 9.475590470367985e-05, 0.00010402573612806921, 0.00011429486955246734, 0.0001257328051652852, 0.0001385451623559671, 0.00015298357460881925, 0.00016935891703618845, 0.0001880592308692392, 0.00020957437930691286, 0.0002345305295725827, 0.0002637392779523709, 0.000298269106583864, 0.0003395518028974204, 0.0003895452817069582, 0.00045099060274894306, 0.0005278328009763881, 0.0006259406320671129, 0.0007544044162312754, 0.0009280352519303166, 0.001172599707593556, 0.0015370775482010832, 0.0021271333066786107, 0.0032166829575390513, 0.005653279473471949, 0.011503263242531533, 0.01808258253124902, 0.0057916876575133175, 0.04935807405567346, 0.026444663478315002, 0.029167747919093167, 0.026444663478315002, 0.04935807405567346, 0.0057916876575133175, 0.01808258253124902, 0.011503263242531533, 0.005653279473471949, 0.0032166829575390504, 0.0021271333066786103, 0.0015370775482010826, 0.0011725997075935559, 0.000928035251930316, 0.0007544044162312774, 0.0006259406320671118, 0.0005278328009763897, 0.00045099060274894273, 0.00038954528170695755, 0.00033955180289742124, 0.0002982691065838644, 0.0002637392779523706, 0.00023453052957258424, 0.00020957437930691207, 0.00018805923086924158, 0.00016935891703618775, 0.00015298357460881692, 0.00013854516235596766, 0.0001257328051652855, 0.00011429486955246556, 0.00010402573612806768, 9.47559047036811e-05, 8.634449968992103e-05, 7.867352846697465e-05, 7.164343572183271e-05, 6.516962734323297e-05, 5.917972702007546e-05, 5.361139214338683e-05, 4.841056014592174e-05, 4.35300290456727e-05, 3.892829918232856e-05, 3.456862031592217e-05, 3.0418201189064495e-05, 2.644754807054087e-05, 2.2629905922600834e-05, 1.8940781497576794e-05, 1.5357531300393135e-05, 1.1859001182551306e-05, 8.42520605518697e-06, 5.037040404544453e-06, 1.6760115479377663e-06], [2.0670619708144632e-06, 6.212292889604493e-06, 1.0390992209320951e-05, 1.4625967325015256e-05, 1.8940781498729382e-05, 2.3360082745940284e-05, 2.7909960958912277e-05, 3.26183427839672e-05, 3.751543632543122e-05, 4.263423909248561e-05, 4.8011126334278046e-05, 5.3686540190504484e-05, 5.970580548851995e-05, 6.612010465378443e-05, 7.298765280287757e-05, 8.037512642767492e-05, 8.835941395943011e-05, 9.702977852340618e-05, 0.00010649055173255246, 0.00011686451712743102, 0.0001282971973226035, 0.00014096233689108283, 0.0001550689836778136, 0.00017087073193049649, 0.00018867792589737827, 0.00020887397353010323, 0.00023193745297535464, 0.0002584725210425407, 0.0002892514403454423, 0.00032527516578742104, 0.0003678614731148421, 0.0004187762070002288, 0.000480434090959806, 0.0005562157090351467, 0.0006509865178301425, 0.0007719845110061808, 0.0009304208505618813, 0.0011445621403990967, 0.0014461863392127947, 0.0018957000942337388, 0.00262341883941233, 0.003967162155412796, 0.006972251240811971, 0.01418753994156834, 0.022304004315729306, 0.007141438876896833, 0.06088350205245601, 0.0326221568972262, 0.0359786317290232, 0.032622156897226195, 0.060883502052456025, 0.007141438876896834, 0.022304004315729306, 0.01418753994156834, 0.006972251240811971, 0.003967162155412796, 0.002623418839412331, 0.0018957000942337384, 0.0014461863392127962, 0.0011445621403990982, 0.0009304208505618814, 0.0007719845110061793, 0.0006509865178301431, 0.0005562157090351484, 0.0004804340909598028, 0.0004187762070002281, 0.00036786147311484074, 0.0003252751657874221, 0.00028925144034544275, 0.0002584725210425375, 0.00023193745297535518, 0.0002088739735301007, 0.00018867792589737713, 0.0001708707319304946, 0.0001550689836778117, 0.00014096233689108391, 0.0001282971973226016, 0.00011686451712743351, 0.00010649055173255097, 9.702977852340535e-05, 8.835941395943386e-05, 8.037512642767363e-05, 7.298765280287798e-05, 6.612010465378366e-05, 5.970580548852296e-05, 5.3686540190509546e-05, 4.8011126334275044e-05, 4.2634239092483915e-05, 3.751543632542892e-05, 3.2618342783965456e-05, 2.790996095891498e-05, 2.3360082745942456e-05, 1.8940781498733722e-05, 1.4625967325014617e-05, 1.0390992209328181e-05, 6.212292889605433e-06, 2.0670619708075875e-06], [2.469666755982446e-06, 7.422270576876523e-06, 1.2414861445553334e-05, 1.7474689006153488e-05, 2.2629905922010995e-05, 2.7909960958363268e-05, 3.334602549446937e-05, 3.897146552784488e-05, 4.482237274916257e-05, 5.093817165115077e-05, 5.736232227052066e-05, 6.414314368286821e-05, 7.13347886329807e-05, 7.899840831812804e-05, 8.720355642762575e-05, 9.602989600664663e-05, 0.00010556929097409319, 0.00011592839019515267, 0.00012723184585178093, 0.00013962635586872886, 0.00015328578612715032, 0.00016841772113002665, 0.0001852719245734941, 0.0002041513826847098, 0.00022542688466068047, 0.00024955651364499585, 0.0002771120588338691, 0.00030881534623094055, 0.00034558904850565505, 0.00038862907131362697, 0.0004395098456121382, 0.0005003411372639272, 0.0005740079659966455, 0.0006645493203146595, 0.0007777782481937232, 0.0009223423933474855, 0.0011116363430830622, 0.001367484150986524, 0.001727852462498031, 0.002264911705477022, 0.0031343547317294836, 0.004739788512718765, 0.008330155496441873, 0.016951322752725213, 0.02665162264456194, 0.008530089081459462, 0.07275513862419558, 0.03898676618661167, 0.04299412230374031, 0.03898676618661166, 0.07275513862419558, 0.008530089081459462, 0.02665162264456194, 0.016951322752725213, 0.008330155496441873, 0.004739788512718766, 0.0031343547317294828, 0.002264911705477022, 0.0017278524624980312, 0.0013674841509865253, 0.0011116363430830627, 0.0009223423933474835, 0.0007777782481937245, 0.0006645493203146611, 0.0005740079659966423, 0.000500341137263926, 0.0004395098456121396, 0.0003886290713136294, 0.0003455890485056558, 0.00030881534623093985, 0.00027711205883386897, 0.00024955651364499156, 0.00022542688466067952, 0.0002041513826847137, 0.00018527192457349405, 0.00016841772113002743, 0.00015328578612714482, 0.0001396263558687312, 0.00012723184585178025, 0.00011592839019514874, 0.00010556929097409653, 9.602989600665387e-05, 8.720355642762931e-05, 7.8998408318126e-05, 7.133478863297973e-05, 6.414314368287006e-05, 5.736232227051579e-05, 5.09381716511493e-05, 4.482237274916323e-05, 3.897146552784351e-05, 3.334602549446936e-05, 2.7909960958364392e-05, 2.262990592201488e-05, 1.7474689006155135e-05, 1.2414861445559322e-05, 7.422270576871678e-06, 2.4696667559840486e-06], [2.886297061149512e-06, 8.674400178298983e-06, 1.4509236089488924e-05, 2.0422651401956588e-05, 2.64475480691012e-05, 3.261834278604349e-05, 3.8971465522953976e-05, 4.554591101484364e-05, 5.2383859560840036e-05, 5.953138645620355e-05, 6.703928334967572e-05, 7.496402061787229e-05, 8.336888640519135e-05, 9.232534797721389e-05, 0.00010191469249705135, 0.00011223002189738077, 0.00012337869724499237, 0.00013548535867340897, 0.00014869568669599416, 0.0001631811266073133, 0.00017914487467550756, 0.00019682953395113887, 0.00021652700200138397, 0.00023859137721886093, 0.0002634559987956029, 0.00029165622563027125, 0.000323860303872122, 0.0003609118262361071, 0.00040388911283935304, 0.00045418980802061073, 0.0005136539337662466, 0.000584747150526637, 0.0006708411456780378, 0.000776656229698145, 0.0009089860211830354, 0.0010779368668412477, 0.0012991627438153316, 0.0015981688952882971, 0.0020193258532532126, 0.002646976742997097, 0.0036630736445452, 0.005539297381428365, 0.00973531687429837, 0.01981162455872173, 0.03115249618102794, 0.009965910494792007, 0.08504729843516451, 0.04557872970506097, 0.05025813995668567, 0.045578729705060966, 0.08504729843516451, 0.009965910494792007, 0.031152496181027937, 0.01981162455872173, 0.00973531687429837, 0.005539297381428368, 0.0036630736445452004, 0.0026469767429970967, 0.002019325853253215, 0.0015981688952882954, 0.0012991627438153348, 0.0010779368668412492, 0.000908986021183036, 0.0007766562296981498, 0.0006708411456780376, 0.0005847471505266355, 0.0005136539337662496, 0.00045418980802061035, 0.000403889112839358, 0.0003609118262361029, 0.0003238603038721243, 0.00029165622563027206, 0.0002634559987955964, 0.00023859137721886557, 0.00021652700200138278, 0.0001968295339511379, 0.00017914487467550784, 0.0001631811266073163, 0.00014869568669599367, 0.0001354853586734105, 0.00012337869724499115, 0.00011223002189738525, 0.00010191469249704858, 9.232534797721513e-05, 8.336888640518904e-05, 7.496402061787558e-05, 6.703928334967561e-05, 5.9531386456201096e-05, 5.238385956083316e-05, 4.554591101483505e-05, 3.897146552295064e-05, 3.2618342786053535e-05, 2.64475480691082e-05, 2.0422651401955033e-05, 1.4509236089491799e-05, 8.674400178292505e-06, 2.8862970611467256e-06], [3.3196259279993126e-06, 9.976715161738805e-06, 1.668755327529504e-05, 2.348876809422347e-05, 3.041820118898162e-05, 3.751543632563087e-05, 4.4822372750388944e-05, 5.2383859564593897e-05, 6.0248409670965726e-05, 6.846901569638696e-05, 7.71040947413125e-05, 8.62185951403376e-05, 9.588530658817947e-05, 0.0001061864257399876, 0.0001172154435176944, 0.0001290794392790559, 0.00014190189225580347, 0.0001558261548232458, 0.00017101977847937234, 0.0001876799475201074, 0.00020604036395360575, 0.0002263800525421969, 0.0002490347330124136, 0.0002744116638794719, 0.0003030092405368923, 0.00033544319374501856, 0.0003724820911399563, 0.00041509617045372855, 0.00046452563462591283, 0.0005223779480614585, 0.000590769362472764, 0.0006725356875970424, 0.0007715547695276697, 0.0008932555247621806, 0.0010454514052992009, 0.0012397658595084424, 0.0014942026910438736, 0.001838095644850425, 0.0023224753312492187, 0.003044344373296631, 0.004212963823878749, 0.006370810281484215, 0.011196739066082843, 0.022786852635639218, 0.035835929986944154, 0.011457826437817693, 0.09784050859444009, 0.052441687882063374, 0.05781827705300325, 0.05244168788206337, 0.09784050859444007, 0.011457826437817693, 0.035835929986944154, 0.022786852635639225, 0.01119673906608284, 0.006370810281484214, 0.004212963823878751, 0.003044344373296631, 0.00232247533124922, 0.0018380956448504262, 0.0014942026910438745, 0.0012397658595084471, 0.001045451405299204, 0.0008932555247621815, 0.0007715547695276689, 0.0006725356875970418, 0.0005907693624727688, 0.0005223779480614609, 0.00046452563462591635, 0.0004150961704537288, 0.0003724820911399607, 0.00033544319374501807, 0.00030300924053688796, 0.00027441166387947067, 0.00024903473301241176, 0.00022638005254219887, 0.00020604036395360396, 0.00018767994752011074, 0.00017101977847937098, 0.00015582615482324528, 0.00014190189225580553, 0.0001290794392790557, 0.00011721544351769536, 0.0001061864257399922, 9.588530658818542e-05, 8.621859514033668e-05, 7.71040947413079e-05, 6.846901569638226e-05, 6.0248409670959804e-05, 5.238385956459182e-05, 4.482237275038824e-05, 3.751543632563221e-05, 3.041820118897551e-05, 2.348876809421726e-05, 1.668755327529637e-05, 9.976715161738673e-06, 3.3196259280048666e-06], [3.7725731962467215e-06, 1.1337990756518737e-05, 1.8964490938272345e-05, 2.6693699168447947e-05, 3.4568620313837526e-05, 4.263423909174479e-05, 5.0938171650148874e-05, 5.95313864550346e-05, 6.846901569525374e-05, 7.781128251282976e-05, 8.762457461101797e-05, 9.798270207638971e-05, 0.00010896838627945839, 0.00012067503898606869, 0.00013320890727141032, 0.0001466916806596395, 0.00016126368613003696, 0.00017708783533710245, 0.00019435454075778603, 0.0002132878907490989, 0.00023415347380274386, 0.0002572683849739796, 0.0002830141495910781, 0.000311853592343623, 0.0003443531091518845, 0.00038121244014914935, 0.0004233050145053784, 0.00047173344623302287, 0.0005279071465589136, 0.0005936528942623079, 0.0006713756691435391, 0.0007642981770470998, 0.000876827320975395, 0.0010151326769242772, 0.0011880936560677564, 0.001408919414393132, 0.0016980698248056966, 0.0020888801904878013, 0.002639342159322557, 0.0034596897057243645, 0.004787725985488562, 0.007239920831726007, 0.012724255940648632, 0.025897119577129896, 0.040733979137208186, 0.013015553936255527, 0.11122290566305088, 0.05962345187106158, 0.06572662380226535, 0.059623451871061585, 0.11122290566305088, 0.013015553936255525, 0.04073397913720818, 0.025897119577129896, 0.01272425594064863, 0.007239920831726007, 0.004787725985488562, 0.003459689705724366, 0.0026393421593225584, 0.002088880190487803, 0.001698069824805701, 0.0014089194143931325, 0.0011880936560677592, 0.0010151326769242749, 0.0008768273209753956, 0.0007642981770470995, 0.0006713756691435397, 0.0005936528942623104, 0.000527907146558921, 0.00047173344623301804, 0.00042330501450538275, 0.0003812124401491465, 0.00034435310915187535, 0.0003118535923436261, 0.00028301414959107536, 0.00025726838497398195, 0.00023415347380274066, 0.000213287890749109, 0.00019435454075778817, 0.0001770878353370906, 0.00016126368613003707, 0.0001466916806596349, 0.00013320890727141314, 0.00012067503898607323, 0.00010896838627945922, 9.79827020763886e-05, 8.762457461101617e-05, 7.781128251282621e-05, 6.846901569524398e-05, 5.953138645504323e-05, 5.0938171650148996e-05, 4.2634239091752946e-05, 3.4568620313842005e-05, 2.669369916845143e-05, 1.896449093827275e-05, 1.1337990756514199e-05, 3.772573196243282e-06], [4.248357609773544e-06, 1.276790050028408e-05, 2.1356229467166338e-05, 3.0060219552152805e-05, 3.892829918416218e-05, 4.8011126333886743e-05, 5.736232227278102e-05, 6.703928335034973e-05, 7.710409474338582e-05, 8.762457460951256e-05, 9.867548312280981e-05, 0.00011033993885468571, 0.00012271109549731948, 0.00013589414537717068, 0.0001500087347521403, 0.00016519189980719083, 0.0001816016646199612, 0.00019942148604840145, 0.00021886578999753017, 0.00024018692503894974, 0.0002636839735029128, 0.0002897140196577301, 0.00031870670329035996, 0.0003511832160048431, 0.00038778138167545797, 0.00042928918383117567, 0.000476690198189355, 0.0005312260862996641, 0.0005944839948556248, 0.0006685210685547294, 0.0007560455638545976, 0.0008606865762133228, 0.0009874067195061826, 0.0011431535395777371, 0.0013379260971688913, 0.0015865991123224063, 0.0019122121910247992, 0.002352303625093671, 0.0029721763971200677, 0.003895961419252941, 0.005391439169133147, 0.008152794222884618, 0.014328706484629703, 0.029164603506710907, 0.0458820333975282, 0.014649767761369713, 0.1252918594805057, 0.0671768986410838, 0.07404072815083791, 0.06717689864108378, 0.1252918594805057, 0.014649767761369713, 0.04588203339752821, 0.029164603506710903, 0.014328706484629703, 0.008152794222884615, 0.005391439169133149, 0.0038959614192529404, 0.0029721763971200703, 0.002352303625093673, 0.0019122121910247968, 0.0015865991123224085, 0.0013379260971688944, 0.001143153539577743, 0.0009874067195061815, 0.0008606865762133249, 0.0007560455638545985, 0.0006685210685547347, 0.0005944839948556281, 0.0005312260862996604, 0.00047669019818935066, 0.00042928918383117, 0.00038778138167545157, 0.0003511832160048353, 0.00031870670329035817, 0.00028971401965773583, 0.0002636839735029114, 0.0002401869250389542, 0.00021886578999753082, 0.0001994214860483992, 0.00018160166461995785, 0.0001651918998071973, 0.00015000873475214485, 0.00013589414537717667, 0.0001227110954973236, 0.00011033993885468665, 9.867548312280234e-05, 8.76245746094997e-05, 7.710409474338408e-05, 6.703928335034611e-05, 5.7362322272774985e-05, 4.8011126333891656e-05, 3.892829918415743e-05, 3.0060219552150396e-05, 2.1356229467173876e-05, 1.2767900500290742e-05, 4.248357609775033e-06], [4.750557778529834e-06, 1.4277199442823822e-05, 2.3880758306909597e-05, 3.361365048278872e-05, 4.3530029046128063e-05, 5.368654018868832e-05, 6.414314368284485e-05, 7.49640206158871e-05, 8.62185951410036e-05, 9.798270207457595e-05, 0.00011033993885696746, 0.00012338324930274343, 0.00013721679858309867, 0.00015195821350740042, 0.00016774128336243901, 0.00018471924294082264, 0.00020306879574693535, 0.00022299508438145514, 0.00024473788105695534, 0.0002685793633100228, 0.00029485396638350385, 0.00032396098349775024, 0.0003563808394392968, 0.0003926963322555625, 0.000433620678161279, 0.00048003500162144963, 0.0005330391377286431, 0.0005940215121244365, 0.0006647568699656472, 0.0007475455048012127, 0.000845415777324291, 0.0009624257198537125, 0.0011041244860537894, 0.0012782807461789126, 0.0014960753099593374, 0.001774140824363468, 0.00213823965742603, 0.002630346059210287, 0.003323479484187554, 0.0043564375479773, 0.006028637869523178, 0.009116283713878152, 0.016022139689135597, 0.03261397029619146, 0.051319504093150496, 0.016372291230645476, 0.14015588328044054, 0.0751610259383773, 0.08282472493821996, 0.0751610259383773, 0.14015588328044054, 0.016372291230645476, 0.051319504093150496, 0.03261397029619146, 0.016022139689135597, 0.009116283713878156, 0.00602863786952318, 0.0043564375479772975, 0.0033234794841875566, 0.0026303460592102847, 0.002138239657426029, 0.0017741408243634675, 0.0014960753099593422, 0.00127828074617891, 0.001104124486053788, 0.0009624257198537135, 0.0008454157773242956, 0.000747545504801211, 0.0006647568699656503, 0.0005940215121244333, 0.0005330391377286417, 0.000480035001621449, 0.0004336206781612672, 0.0003926963322555711, 0.00035638083943929515, 0.0003239609834977581, 0.0002948539663835042, 0.000268579363310029, 0.00024473788105695225, 0.0002229950843814403, 0.00020306879574693353, 0.000184719242940825, 0.00016774128336244522, 0.0001519582135074008, 0.00013721679858310485, 0.00012338324930274535, 0.00011033993885696537, 9.798270207457755e-05, 8.621859514100284e-05, 7.496402061589e-05, 6.414314368284675e-05, 5.368654018868829e-05, 4.353002904612377e-05, 3.3613650482788596e-05, 2.3880758306917088e-05, 1.4277199442809702e-05, 4.75055777852085e-06], [5.283184372085326e-06, 1.5877941138471172e-05, 2.6558238838241335e-05, 3.7382370325052716e-05, 4.841056014795428e-05, 5.970580548946019e-05, 7.133478863477019e-05, 8.33688864064536e-05, 9.588530659029525e-05, 0.00010896838627593597, 0.0001227110954981015, 0.00013721679857961157, 0.00015260133919614674, 0.00016899553191253883, 0.00018654816579530135, 0.00020542965545721054, 0.000225836515401611, 0.00024799688753946656, 0.0002721774257760252, 0.0002986919433589345, 0.0003279123699082644, 0.0003602827641085421, 0.00039633741176434514, 0.00043672444870522173, 0.00048223704965704817, 0.0005338551209511196, 0.0005928017978254122, 0.0006606211577766572, 0.0007392869045813081, 0.000831357203736936, 0.0009401999017879549, 0.0010703279370591944, 0.0012279125106486174, 0.0014215931204379353, 0.001663803847655584, 0.0019730416428807352, 0.0023779563640259644, 0.002925226527614606, 0.0036960546404482017, 0.004844791505071235, 0.00670440331713665, 0.01013806848759169, 0.017818057010333333, 0.03627287365035971, 0.057090639605008806, 0.018196320323796925, 0.15593690466206186, 0.08364220915563764, 0.09215067840976783, 0.08364220915563765, 0.15593690466206186, 0.018196320323796922, 0.057090639605008806, 0.036272873650359715, 0.017818057010333326, 0.01013806848759169, 0.006704403317136653, 0.004844791505071236, 0.003696054640448201, 0.0029252265276146078, 0.0023779563640259696, 0.0019730416428807352, 0.0016638038476555906, 0.001421593120437935, 0.0012279125106486187, 0.001070327937059189, 0.0009401999017879595, 0.0008313572037369374, 0.0007392869045813151, 0.000660621157776649, 0.0005928017978254136, 0.0005338551209511223, 0.00048223704965703906, 0.00043672444870522574, 0.0003963374117643506, 0.0003602827641085489, 0.00032791236990825716, 0.000298691943358943, 0.000272177425776026, 0.0002479968875394632, 0.0002258365154016131, 0.00020542965545721672, 0.00018654816579530143, 0.00016899553191254165, 0.00015260133919614983, 0.00013721679857961293, 0.00012271109549809686, 0.00010896838627592878, 9.588530659029828e-05, 8.336888640645042e-05, 7.133478863476156e-05, 5.970580548946133e-05, 4.841056014796005e-05, 3.73823703250422e-05, 2.655823883826017e-05, 1.5877941138468963e-05, 5.2831843720748355e-06], [5.85076638010369e-06, 1.7583736881894442e-05, 2.9411437982066396e-05, 4.139842491165026e-05, 5.3611392144881134e-05, 6.612010465148237e-05, 7.899840832019235e-05, 9.232534797218887e-05, 0.00010618642574184495, 0.00012067503898733268, 0.0001358941453763633, 0.00015195821350931578, 0.00016899553191251367, 0.00018715096828882385, 0.0002065892957312622, 0.00022749923600155756, 0.0002500984145215466, 0.00027463948161773617, 0.0003014177366830347, 0.0003307807044685954, 0.00036314026899839015, 0.00039898819155296405, 0.000438916152686499, 0.00048364191270154627, 0.0005340438504330561, 0.0005912071344979394, 0.0006564862888236038, 0.0007315912531292321, 0.0008187077402844993, 0.0009206687016264408, 0.0010412037349990552, 0.0011853105176350943, 0.001359823088327769, 0.0015743088698691311, 0.0018425373765226303, 0.002184992061191896, 0.002633399497175388, 0.0032394506709880924, 0.004093067084836989, 0.005365170964434564, 0.007424472527868346, 0.011226818325537506, 0.019731702010181033, 0.040172553055233484, 0.06324550294629676, 0.02013668926230776, 0.172772991982187, 0.09269571357898058, 0.10210019400685767, 0.09269571357898056, 0.17277299198218704, 0.02013668926230776, 0.06324550294629676, 0.040172553055233484, 0.01973170201018103, 0.011226818325537508, 0.007424472527868345, 0.005365170964434564, 0.0040930670848369904, 0.0032394506709880946, 0.00263339949717539, 0.002184992061191894, 0.0018425373765226308, 0.001574308869869125, 0.001359823088327767, 0.001185310517635094, 0.0010412037349990578, 0.0009206687016264489, 0.0008187077402845089, 0.0007315912531292277, 0.0006564862888236056, 0.0005912071344979394, 0.0005340438504330547, 0.0004836419127015366, 0.0004389161526864915, 0.00039898819155297164, 0.0003631402689983848, 0.00033078070446860083, 0.0003014177366830415, 0.0002746394816177184, 0.0002500984145215488, 0.0002274992360015572, 0.00020658929573126906, 0.00018715096828882246, 0.00016899553191252194, 0.00015195821350931821, 0.0001358941453763613, 0.00012067503898731044, 0.00010618642574184093, 9.232534797219053e-05, 7.899840832019176e-05, 6.612010465149032e-05, 5.361139214488332e-05, 4.139842491164943e-05, 2.941143798208764e-05, 1.7583736881905278e-05, 5.850766380090214e-06], [6.4584550917693455e-06, 1.9410068244624706e-05, 3.246625098042274e-05, 4.569826337808783e-05, 5.9179727019390955e-05, 7.298765280368247e-05, 8.720355642873268e-05, 0.00010191469249927357, 0.00011721544351530991, 0.00013320890727384492, 0.00015000873474951923, 0.00016774128336239624, 0.00018654816579283883, 0.00020658929573154214, 0.00022804655959875948, 0.0002511282797423091, 0.0002760746839281948, 0.00030316466239060035, 0.0003327241837786325, 0.0003651368658753652, 0.0004008573696720653, 0.00044042852887447593, 0.0004845034732441457, 0.0005338745056747716, 0.0005895112277626394, 0.0006526115054396144, 0.0007246705315217091, 0.0008075758225027804, 0.0009037400733594754, 0.0010162904266711793, 0.0011493437767368855, 0.0013084167667767536, 0.0015010530712458127, 0.0017378135438696042, 0.002033897392254372, 0.0024119147627850797, 0.0029068860268635054, 0.0035758682090009657, 0.0045181166169859345, 0.005922292932614541, 0.00819536972491249, 0.012392392046168047, 0.021780409395132812, 0.04434855506001839, 0.06984115418854667, 0.022210187771678887, 0.19082165735334214, 0.1024075307504603, 0.11276637110123497, 0.1024075307504603, 0.19082165735334217, 0.022210187771678883, 0.06984115418854667, 0.0443485550600184, 0.021780409395132816, 0.012392392046168042, 0.008195369724912496, 0.00592229293261454, 0.004518116616985939, 0.003575868209000964, 0.002906886026863504, 0.002411914762785077, 0.002033897392254375, 0.001737813543869608, 0.001501053071245807, 0.0013084167667767516, 0.0011493437767368807, 0.0010162904266711895, 0.000903740073359489, 0.0008075758225027807, 0.0007246705315217166, 0.000652611505439607, 0.0005895112277626267, 0.00053387450567477, 0.0004845034732441348, 0.00044042852887448314, 0.0004008573696720595, 0.00036513686587538215, 0.0003327241837786328, 0.0003031646623905551, 0.00027607468392820055, 0.00025112827974232456, 0.00022804655959877824, 0.00020658929573155578, 0.00018654816579285598, 0.0001677412833623931, 0.00015000873474951316, 0.00013320890727383655, 0.00011721544351530164, 0.0001019146924992685, 8.720355642873573e-05, 7.298765280368472e-05, 5.917972701941671e-05, 4.569826337809246e-05, 3.246625098044377e-05, 1.94100682446143e-05, 6.458455091764134e-06], [7.112150541524797e-06, 2.1374666981781965e-05, 3.5752336813208555e-05, 5.03236325920171e-05, 6.516962734404704e-05, 8.03751264276491e-05, 9.602989600773795e-05, 0.00011223002189680837, 0.0001290794392807684, 0.00014669168065807456, 0.00016519189980882418, 0.00018471924293825308, 0.00020542965545939848, 0.0002274992359988254, 0.00025112827974248226, 0.00027654619320379304, 0.0003040175173990814, 0.00033384936861980725, 0.0003664007061229985, 0.00040209397258667413, 0.00044142984368731485, 0.0004850060910041914, 0.0005335419442193986, 0.0005879098903619405, 0.0006491776574277745, 0.0007186643372489545, 0.0007980164363844064, 0.0008893124853421039, 0.0009952093359655004, 0.0011191505809112878, 0.0012656697119963146, 0.0014408415977668482, 0.0016529732260821925, 0.0019136940170360057, 0.002239740986613874, 0.002656011768743739, 0.0032010695137149833, 0.003937742794265846, 0.004975325831532418, 0.006521559290831907, 0.009024566044669013, 0.013646078623046808, 0.023984029141306883, 0.048841610643187226, 0.07694309295445223, 0.024435942947726573, 0.21026389310039417, 0.11287662820977308, 0.12425618943823871, 0.11287662820977308, 0.2102638931003942, 0.02443594294772657, 0.07694309295445223, 0.04884161064318722, 0.02398402914130688, 0.013646078623046813, 0.009024566044669004, 0.006521559290831905, 0.004975325831532423, 0.003937742794265848, 0.0032010695137149833, 0.002656011768743738, 0.0022397409866138783, 0.0019136940170360113, 0.0016529732260821969, 0.0014408415977668434, 0.0012656697119963077, 0.0011191505809113019, 0.0009952093359655153, 0.0008893124853420851, 0.0007980164363844023, 0.0007186643372489514, 0.0006491776574277628, 0.0005879098903619422, 0.0005335419442193976, 0.00048500609100419703, 0.00044142984368730943, 0.00040209397258668893, 0.0003664007061229973, 0.00033384936861980216, 0.0003040175173990902, 0.0002765461932037884, 0.00025112827974248296, 0.00022749923599882051, 0.0002054296554594004, 0.000184719242938264, 0.000165191899808829, 0.00014669168065807264, 0.00012907943928076645, 0.00011223002189681019, 9.602989600773571e-05, 8.037512642766332e-05, 6.516962734404807e-05, 5.03236325920218e-05, 3.575233681321883e-05, 2.1374666981752278e-05, 7.112150541529718e-06], [7.818656366438704e-06, 2.3497980594280325e-05, 3.930389700010208e-05, 5.532267324251022e-05, 7.16434357224814e-05, 8.835941395682703e-05, 0.00010556929097550147, 0.00012337869724256178, 0.00014190189225704973, 0.0001612636861294701, 0.00018160166462057118, 0.00020306879574671338, 0.000225836515402436, 0.00025009841452180835, 0.0002760746839309525, 0.0003040175173969848, 0.000334217732981113, 0.0003670129528740921, 0.0004027977915402407, 0.0004420366523288272, 0.0004852799419852413, 0.0005331848069446375, 0.0005865419151063836, 0.000646310413217834, 0.0007136640799544097, 0.0007900530224205494, 0.0008772872794477741, 0.0009776518190603906, 0.0010940673634552895, 0.0012303195042269374, 0.0013913919625391765, 0.001583962893590675, 0.0018171642088616721, 0.0021037801323040076, 0.002462209576687356, 0.0029198222104554476, 0.0035190097167075228, 0.004328837604657622, 0.0054694482030261775, 0.007169198355356206, 0.00992067518892409, 0.015000892537533188, 0.026365446036327896, 0.05369871116961028, 0.08462703295192678, 0.02683588218950526, 0.23130914669514666, 0.12421772970283666, 0.13669345054836282, 0.12421772970283668, 0.23130914669514666, 0.026835882189505264, 0.08462703295192678, 0.05369871116961029, 0.02636544603632789, 0.01500089253753319, 0.009920675188924085, 0.007169198355356197, 0.0054694482030261775, 0.004328837604657627, 0.003519009716707533, 0.0029198222104554325, 0.002462209576687356, 0.002103780132304001, 0.0018171642088616615, 0.001583962893590679, 0.0013913919625391789, 0.0012303195042269563, 0.0010940673634552852, 0.0009776518190603742, 0.0008772872794477791, 0.0007900530224205287, 0.0007136640799543987, 0.000646310413217829, 0.0005865419151063973, 0.0005331848069446422, 0.0004852799419852344, 0.00044203665232882673, 0.0004027977915402491, 0.00036701295287407457, 0.0003342177329811308, 0.0003040175173969831, 0.0002760746839309614, 0.00025009841452181594, 0.00022583651540245383, 0.00020306879574671411, 0.0001816016646205868, 0.00016126368612946632, 0.00014190189225704388, 0.00012337869724256566, 0.00010556929097551622, 8.835941395682384e-05, 7.16434357224637e-05, 5.5322673242508925e-05, 3.930389700011569e-05, 2.34979805942902e-05, 7.818656366447447e-06], [8.585871230922968e-06, 2.5803747479643235e-05, 4.31606375681126e-05, 6.0751273978179446e-05, 7.867352846742753e-05, 9.702977852392871e-05, 0.00011592839019569287, 0.00013548535867305731, 0.00015582615482561985, 0.00017708783533573898, 0.00019942148605006676, 0.00022299508437995775, 0.0002479968875401585, 0.00027463948161650934, 0.0003031646623901283, 0.00033384936861989513, 0.000367012952875787, 0.0004030261639796193, 0.00044232233469049075, 0.0004854114337020318, 0.0005328978709266075, 0.0005855032680722985, 0.0006440958677868086, 0.0007097289202889819, 0.0007836913640915679, 0.0008675755744821119, 0.000963369167856495, 0.0010735812790137352, 0.0012014191610557983, 0.0013510397723942903, 0.0015279157223722524, 0.0017393802491307165, 0.0019954610053800896, 0.0023101961429242753, 0.0027037890997644374, 0.003206293694428364, 0.0038642585754885056, 0.004753521067100373, 0.006006001586913452, 0.007872439715000314, 0.010893695047091947, 0.016471938478696296, 0.02895122122916806, 0.058974438625857384, 0.09298110328101715, 0.029435298330609424, 0.25420150481730514, 0.1365647810095704, 0.15022243421384687, 0.1365647810095704, 0.2542015048173051, 0.029435298330609427, 0.09298110328101714, 0.058974438625857384, 0.028951221229168066, 0.016471938478696296, 0.010893695047091949, 0.007872439715000313, 0.006006001586913457, 0.004753521067100368, 0.0038642585754885108, 0.0032062936944283653, 0.002703789099764446, 0.0023101961429242723, 0.001995461005380085, 0.0017393802491307091, 0.0015279157223722565, 0.0013510397723942955, 0.001201419161055799, 0.0010735812790137267, 0.000963369167856507, 0.000867575574482106, 0.0007836913640915558, 0.0007097289202889787, 0.0006440958677867989, 0.0005855032680723168, 0.0005328978709266016, 0.00048541143370203115, 0.0004423223346904857, 0.000403026163979603, 0.0003670129528757849, 0.00033384936861990033, 0.000303164662390143, 0.0002746394816164973, 0.0002479968875401479, 0.0002229950843799635, 0.00019942148605005893, 0.00017708783533573394, 0.00015582615482562934, 0.00013548535867304666, 0.0001159283901957081, 9.702977852395445e-05, 7.867352846743115e-05, 6.075127397819639e-05, 4.316063756813992e-05, 2.580374747963758e-05, 8.585871230951322e-06], [9.423027154649478e-06, 2.8319713345954624e-05, 4.736896728648815e-05, 6.667475798760788e-05, 8.63444996900233e-05, 0.00010649055173368565, 0.0001272318458509949, 0.00014869568669641987, 0.00017101977847871274, 0.00019435454075741664, 0.00021886578999705296, 0.00024473788105881285, 0.00027217742577554597, 0.0003014177366851143, 0.0003327241837797871, 0.0003664007061231877, 0.0004027977915406645, 0.0004423223346907586, 0.00048544991535513516, 0.0005327402203265635, 0.0005848565842353613, 0.0006425909798985083, 0.0007068962940903259, 0.0007789284559263135, 0.0008601020575065168, 0.0009521647058560104, 0.0010572977749830383, 0.0011782549906242553, 0.0013185562412028526, 0.0014827636832087862, 0.0016768833477092682, 0.0019089632226206756, 0.002190008279148927, 0.002535424779703786, 0.0029673849804206787, 0.003518871178901845, 0.004240967288771857, 0.005216898516790892, 0.006591434462636796, 0.008639731933759283, 0.011955308526570703, 0.018076865345245885, 0.03177239089966235, 0.06473262379310529, 0.10210860244439979, 0.03226354428997166, 0.27922744750958833, 0.15007530915806813, 0.1650124835170361, 0.15007530915806816, 0.27922744750958833, 0.03226354428997166, 0.10210860244439977, 0.06473262379310528, 0.03177239089966234, 0.018076865345245885, 0.011955308526570708, 0.00863973193375928, 0.006591434462636806, 0.0052168985167908985, 0.00424096728877186, 0.0035188711789018367, 0.002967384980420685, 0.0025354247797037873, 0.0021900082791489204, 0.001908963222620673, 0.0016768833477092604, 0.0014827636832087934, 0.0013185562412028756, 0.001178254990624253, 0.0010572977749830324, 0.0009521647058560114, 0.0008601020575065005, 0.0007789284559263284, 0.0007068962940903027, 0.0006425909798985328, 0.000584856584235351, 0.0005327402203265898, 0.00048544991535513565, 0.00044232233469077, 0.00040279779154070536, 0.0003664007061231651, 0.00033272418377978095, 0.00030141773668510816, 0.00027217742577555524, 0.00024473788105879707, 0.00021886578999703345, 0.0001943545407574051, 0.00017101977847870246, 0.0001486956866964255, 0.00012723184585100927, 0.00010649055173367573, 8.634449968998199e-05, 6.66747579876082e-05, 4.73689672865013e-05, 2.8319713345959828e-05, 9.423027154634685e-06], [1.0340988939470786e-05, 3.107853092573952e-05, 5.1983502773688486e-05, 7.317000142516227e-05, 9.475590470108099e-05, 0.00011686451712843142, 0.0001396263558679814, 0.0001631811266068169, 0.00018767994752255356, 0.00021328789074824244, 0.00024018692504003004, 0.00026857936330715483, 0.0002986919433608007, 0.0003307807044650834, 0.00036513686587465, 0.00040209397258785077, 0.0004420366523290501, 0.0004854114337037758, 0.0005327402203269915, 0.0005846372146634818, 0.0006418303620028176, 0.0007051887745452017, 0.0007757581503722166, 0.0008548070045113603, 0.0009438877059085559, 0.0010449180696752937, 0.0011602919197865203, 0.0012930311678882225, 0.0014469984949564375, 0.0016272003385093521, 0.0018402275976242873, 0.0020949119376216744, 0.002403329885641471, 0.0027823877151601454, 0.003256416282683533, 0.0038616085928431052, 0.004654020789059282, 0.005724977535898207, 0.007233334692144599, 0.00948101590953864, 0.013119261248627619, 0.019836436159154314, 0.03486546886846327, 0.07104843076772271, 0.11213147422137934, 0.035354892822490054, 0.3067256590567381, 0.16493595634225838, 0.18126380635657624, 0.16493595634225838, 0.3067256590567381, 0.035354892822490054, 0.11213147422137935, 0.07104843076772271, 0.03486546886846327, 0.019836436159154317, 0.013119261248627612, 0.009481015909538638, 0.007233334692144598, 0.005724977535898218, 0.00465402078905928, 0.003861608592843108, 0.003256416282683541, 0.0027823877151601497, 0.0024033298856414704, 0.00209491193762167, 0.0018402275976242802, 0.001627200338509349, 0.0014469984949564562, 0.0012930311678882082, 0.0011602919197865173, 0.001044918069675292, 0.0009438877059085366, 0.0008548070045113626, 0.0007757581503722294, 0.0007051887745452317, 0.0006418303620027978, 0.0005846372146634874, 0.0005327402203269958, 0.0004854114337037559, 0.00044203665232904693, 0.0004020939725878325, 0.00036513686587466646, 0.00033078070446507663, 0.00029869194336082605, 0.0002685793633071491, 0.00024018692504002977, 0.00021328789074822506, 0.00018767994752255364, 0.00016318112660682413, 0.00013962635586799703, 0.00011686451712842065, 9.475590470107802e-05, 7.317000142517903e-05, 5.1983502773697194e-05, 3.107853092573706e-05, 1.0340988939441149e-05], [1.1352633514267345e-05, 3.411890017280125e-05, 5.7068975452367355e-05, 8.032811772665971e-05, 0.0001040257361298075, 0.00012829719732200198, 0.00015328578612674263, 0.00017914487467368036, 0.00020604036395283692, 0.00023415347380173888, 0.00026368397350134514, 0.0002948539663846309, 0.0003279123699087032, 0.00036314026899823365, 0.0004008573696726222, 0.00044142984368607767, 0.0004852799419821269, 0.0005328978709250777, 0.0005848565842367164, 0.0006418303620041673, 0.000704618351860822, 0.0007741746750598561, 0.00085164730917839, 0.0009384288402346217, 0.0010362234683607974, 0.0011471365784344399, 0.0012737961138676818, 0.0014195195250151413, 0.001588547245045227, 0.0017863752989824334, 0.002020239091616946, 0.0022998338669970053, 0.002638416947049538, 0.0030545475105415785, 0.003574934997576017, 0.004239310250211948, 0.005109208108639272, 0.006284877412703443, 0.007940693970952156, 0.010408071131287115, 0.014401839907965617, 0.021775249746498967, 0.03827371623658917, 0.07801100070156856, 0.12319473515022208, 0.03874960803862237, 0.33709955914695944, 0.1813695739481257, 0.19921488602430132, 0.1813695739481257, 0.33709955914695944, 0.038749608038622374, 0.1231947351502221, 0.07801100070156856, 0.03827371623658917, 0.021775249746498977, 0.014401839907965616, 0.010408071131287116, 0.007940693970952165, 0.0062848774127034395, 0.005109208108639274, 0.004239310250211953, 0.0035749349975760223, 0.0030545475105415733, 0.002638416947049538, 0.002299833866997002, 0.0020202390916169446, 0.0017863752989824351, 0.001588547245045243, 0.0014195195250151314, 0.0012737961138676993, 0.0011471365784344253, 0.0010362234683607867, 0.0009384288402346032, 0.0008516473091783957, 0.000774174675059867, 0.0007046183518608021, 0.0006418303620041678, 0.0005848565842367042, 0.0005328978709250947, 0.00048527994198212227, 0.0004414298436860608, 0.0004008573696726301, 0.0003631402689982326, 0.0003279123699087159, 0.0002948539663846341, 0.000263683973501336, 0.00023415347380173842, 0.0002060403639528272, 0.00017914487467366006, 0.00015328578612674673, 0.00012829719732203304, 0.00010402573612981511, 8.03281177266477e-05, 5.706897545240248e-05, 3.411890017281126e-05, 1.1352633514221892e-05], [1.2473335092137082e-05, 3.748702635905012e-05, 6.270267047459481e-05, 8.825789040873095e-05, 0.00011429486954823431, 0.00014096233689421216, 0.00016841772112855118, 0.00019682953395470896, 0.0002263800525402881, 0.0002572683849732066, 0.00028971401965864466, 0.00032396098349643266, 0.000360282764109994, 0.0003989881915529619, 0.00044042852887497363, 0.0004850060910057733, 0.0005331848069472284, 0.0005855032680723328, 0.0006425909799003181, 0.000705188774543291, 0.0007741746750596241, 0.0008505969723803016, 0.0009357169449737023, 0.0010310646188948153, 0.0011385123850280515, 0.0012603734074931984, 0.0013995349725308413, 0.0015596419078791604, 0.0017453530915706359, 0.0019627068717142726, 0.002219652574660699, 0.0025268420236452998, 0.0028988404804078773, 0.0033560379813368903, 0.00392777857979318, 0.0046577116762574955, 0.00561344021949658, 0.006905096956630562, 0.008724245935263247, 0.011434958337729225, 0.01582248372976521, 0.023922663036407252, 0.04204876400691328, 0.08572683618829312, 0.13547216933885198, 0.042495290346839174, 0.3708334702357224, 0.19964441138071198, 0.2191520428050274, 0.199644411380712, 0.37083347023572233, 0.042495290346839174, 0.13547216933885195, 0.08572683618829312, 0.04204876400691328, 0.023922663036407246, 0.01582248372976521, 0.011434958337729239, 0.008724245935263244, 0.006905096956630566, 0.005613440219496596, 0.0046577116762575, 0.003927778579793191, 0.003356037981336889, 0.002898840480407868, 0.0025268420236452867, 0.002219652574660716, 0.0019627068717142896, 0.0017453530915706552, 0.0015596419078791415, 0.0013995349725308402, 0.0012603734074931663, 0.0011385123850280396, 0.0010310646188948383, 0.0009357169449737061, 0.0008505969723803041, 0.000774174675059611, 0.0007051887745433158, 0.0006425909799003406, 0.0005855032680722993, 0.000533184806947248, 0.0004850060910057685, 0.00044042852887497927, 0.00039898819155298584, 0.0003602827641099935, 0.0003239609834964128, 0.0002897140196586502, 0.00025726838497318436, 0.00022638005254029895, 0.00019682953395471764, 0.00016841772112855295, 0.00014096233689423078, 0.00011429486954824001, 8.825789040874734e-05, 6.27026704746117e-05, 3.7487026359013756e-05, 1.2473335092121469e-05], [1.3721591816084157e-05, 4.1238503226469915e-05, 6.897757667088462e-05, 9.70902068344729e-05, 0.0001257328051641366, 0.000155068983678116, 0.0001852719245735469, 0.00021652700199913179, 0.000249034733011864, 0.00028301414959221524, 0.00031870670328978945, 0.0003563808394417497, 0.0003963374117617886, 0.0004389161526887663, 0.00048450347324356674, 0.0005335419442187302, 0.0005865419151042708, 0.0006440958677866991, 0.0007068962940884115, 0.0007757581503727329, 0.0008516473091811465, 0.0009357169449711761, 0.0010293545270633933, 0.0011342431570926887, 0.001252442549670541, 0.001386497283453106, 0.0015395834865246263, 0.0017157105991217776, 0.0019200035335600976, 0.0021591046335504333, 0.0024417583253132052, 0.0027796817685338624, 0.003188896848581512, 0.0036918325520944586, 0.004320766930418301, 0.0051237131164979955, 0.006175031329367978, 0.007595860310342786, 0.0095969027081038, 0.012578590998670333, 0.01740457375369238, 0.02631398132884754, 0.0462527071850573, 0.09432417701444426, 0.14917372998547324, 0.04664857684233054, 0.4085137020955805, 0.22008615164016668, 0.24142190466715366, 0.22008615164016673, 0.4085137020955805, 0.04664857684233054, 0.14917372998547324, 0.09432417701444425, 0.0462527071850573, 0.026313981328847543, 0.01740457375369239, 0.012578590998670333, 0.009596902708103814, 0.007595860310342795, 0.006175031329367979, 0.0051237131164979886, 0.004320766930418305, 0.0036918325520944578, 0.003188896848581514, 0.0027796817685338576, 0.0024417583253131987, 0.002159104633550438, 0.0019200035335601153, 0.001715710599121777, 0.0015395834865246155, 0.0013864972834531, 0.0012524425496705273, 0.0011342431570926532, 0.0010293545270633623, 0.0009357169449712114, 0.0008516473091811207, 0.0007757581503727598, 0.0007068962940883813, 0.0006440958677866489, 0.0005865419151042993, 0.0005335419442187457, 0.0004845034732435709, 0.000438916152688756, 0.00039633741176184795, 0.0003563808394417563, 0.0003187067032897655, 0.0002830141495922117, 0.0002490347330118291, 0.00021652700199915198, 0.00018527192457352723, 0.00015506898367811966, 0.0001257328051640955, 9.709020683447389e-05, 6.897757667088977e-05, 4.123850322651033e-05, 1.3721591816072354e-05], [1.5119843612668776e-05, 4.54407711756214e-05, 7.600649808823514e-05, 0.00010698384548177558, 0.0001385451623581018, 0.00017087073192694662, 0.00020415138268817148, 0.00023859137721767574, 0.00027441166388098666, 0.00031185359234194997, 0.00035118321600522524, 0.0003926963322535269, 0.0004367244487056472, 0.00048364191269852476, 0.0005338745056756446, 0.0005879098903615608, 0.0006463104132195617, 0.0007097289202904152, 0.0007789284559267784, 0.0008548070045099495, 0.0009384288402332175, 0.0010310646188981369, 0.001134243157091703, 0.0012498190167894974, 0.0013800617332804643, 0.0015277750902473767, 0.0016964587425124624, 0.0018905305233138732, 0.002115637333309234, 0.0023790980233716506, 0.0026905475633955344, 0.00306289631619938, 0.0035137975950311024, 0.004067963979660524, 0.004760959476954173, 0.0056456842774007185, 0.0068040659723881056, 0.008369568209318074, 0.010574324517571006, 0.013859480918690685, 0.019176462428713726, 0.02899201057996561, 0.05096083581892997, 0.10395871827194432, 0.16455526749150004, 0.0512773070014391, 0.45085637081175, 0.24309386682255488, 0.26644786262379855, 0.24309386682255482, 0.45085637081175, 0.0512773070014391, 0.1645552674915, 0.1039587182719443, 0.05096083581892997, 0.028992010579965612, 0.01917646242871374, 0.0138594809186907, 0.010574324517571003, 0.008369568209318062, 0.006804065972388108, 0.005645684277400723, 0.004760959476954177, 0.004067963979660538, 0.003513797595031092, 0.0030628963161993977, 0.002690547563395533, 0.0023790980233716692, 0.0021156373333092457, 0.0018905305233138609, 0.0016964587425124622, 0.0015277750902473733, 0.0013800617332804424, 0.0012498190167894612, 0.0011342431570916967, 0.0010310646188981462, 0.0009384288402332136, 0.0008548070045100007, 0.0007789284559267524, 0.0007097289202903872, 0.0006463104132195829, 0.0005879098903615632, 0.0005338745056756278, 0.00048364191269851154, 0.00043672444870568083, 0.0003926963322535343, 0.00035118321600521125, 0.000311853592341919, 0.0002744116638809849, 0.0002385913772176384, 0.0002041513826881447, 0.00017087073192697904, 0.0001385451623580753, 0.00010698384548175378, 7.600649808825234e-05, 4.544077117564922e-05, 1.5119843612638398e-05], [1.6695552140983645e-05, 5.017636262801501e-05, 8.392748244835576e-05, 0.00011813311676922155, 0.00015298357460713792, 0.00018867792589860504, 0.00022542688465970555, 0.0002634559987947828, 0.00030300924053567853, 0.0003443531091535029, 0.0003877813816751193, 0.00043362067816271854, 0.00048223704965890595, 0.0005340438504347597, 0.0005895112277621149, 0.0006491776574265989, 0.0007136640799555888, 0.0007836913640876171, 0.0008601020575085411, 0.0009438877059079919, 0.0010362234683609774, 0.0011385123850268695, 0.0012524425496708632, 0.0013800617332788158, 0.001523875904836759, 0.0016869809280066579, 0.0018732410143902814, 0.002087534179239304, 0.00233609550005552, 0.0026270061078108643, 0.002970904413073472, 0.0033820452271147846, 0.0038799200502853976, 0.004491814410322457, 0.0052569945360132035, 0.006233866590910356, 0.00751288355531524, 0.00924139359230965, 0.011675671463692073, 0.015302722144046817, 0.021172832022003443, 0.03200910486556747, 0.05626523722206103, 0.11482116915735548, 0.18193147176021218, 0.05646330173497919, 0.4987445706109536, 0.26916144999612857, 0.2947520607549797, 0.26916144999612857, 0.4987445706109537, 0.056463301734979196, 0.18193147176021218, 0.11482116915735548, 0.056265237222061025, 0.03200910486556748, 0.02117283202200345, 0.015302722144046824, 0.011675671463692064, 0.00924139359230964, 0.007512883555315245, 0.006233866590910368, 0.005256994536013218, 0.004491814410322447, 0.0038799200502854, 0.003382045227114785, 0.002970904413073477, 0.002627006107810875, 0.00233609550005553, 0.0020875341792393172, 0.0018732410143902948, 0.0016869809280066566, 0.0015238759048367546, 0.0013800617332787879, 0.0012524425496708443, 0.001138512385026878, 0.001036223468360969, 0.0009438877059079878, 0.0008601020575085442, 0.000783691364087577, 0.0007136640799556219, 0.0006491776574265828, 0.0005895112277621304, 0.000534043850434747, 0.000482237049658928, 0.00043362067816272933, 0.00038778138167510143, 0.000344353109153504, 0.0003030092405356856, 0.00026345599879475177, 0.00022542688465971336, 0.0001886779258986494, 0.0001529835746071224, 0.00011813311676922683, 8.392748244836022e-05, 5.017636262800349e-05, 1.6695552140958573e-05], [1.84826442820423e-05, 5.554724050651198e-05, 9.291107787623831e-05, 0.00013077807734749965, 0.00016935891703584812, 0.0002088739735306681, 0.00024955651364636167, 0.0002916562256289168, 0.0003354431937455291, 0.00038121244014791065, 0.0004292891838318155, 0.0004800350016221296, 0.0005338551209494782, 0.0005912071344965627, 0.000652611505439441, 0.0007186643372487782, 0.0007900530224202896, 0.0008675755744868683, 0.000952164705855545, 0.0010449180696741587, 0.0011471365784354462, 0.0012603734074929792, 0.0013864972834545573, 0.00152777509024889, 0.0016869809280067704, 0.00186754189546187, 0.002073735628593705, 0.0023109620054952906, 0.002586123109685269, 0.0029081645043554484, 0.003288862493405356, 0.0037439964546518542, 0.0042951422974062394, 0.004972503066641007, 0.005819542888105639, 0.006900910839762084, 0.008316725919932459, 0.01023007753984377, 0.012924608040593153, 0.01693930549233571, 0.023436509109878833, 0.035429900420470874, 0.062279606025793355, 0.12714737084966676, 0.2016933203343605, 0.06230595634337357, 0.553278735941049, 0.2989068209535672, 0.32698519291905576, 0.29890682095356724, 0.553278735941049, 0.06230595634337357, 0.20169332033436052, 0.12714737084966674, 0.06227960602579335, 0.035429900420470894, 0.023436509109878826, 0.01693930549233571, 0.012924608040593153, 0.010230077539843771, 0.008316725919932468, 0.006900910839762088, 0.005819542888105634, 0.004972503066641024, 0.004295142297406192, 0.0037439964546518373, 0.0032888624934053687, 0.0029081645043554823, 0.002586123109685305, 0.002310962005495259, 0.0020737356285936955, 0.0018675418954618398, 0.0016869809280067637, 0.001527775090248951, 0.00138649728345456, 0.001260373407492956, 0.0011471365784354397, 0.0010449180696741783, 0.0009521647058555421, 0.0008675755744868047, 0.0007900530224203524, 0.0007186643372487651, 0.0006526115054394875, 0.0005912071344965267, 0.00053385512094949, 0.00048003500162212504, 0.00042928918383181757, 0.0003812124401479294, 0.00033544319374550997, 0.0002916562256288679, 0.0002495565136463738, 0.00020887397353074635, 0.00016935891703590935, 0.00013077807734749772, 9.291107787629479e-05, 5.554724050645818e-05, 1.8482644282010535e-05], [2.0523468388749024e-05, 6.168067732176667e-05, 0.00010317016640597059, 0.00014521837133005123, 0.00018805923086891166, 0.0002319374529755688, 0.00027711205883277517, 0.00032386030387186835, 0.00037248209113966725, 0.00042330501450607225, 0.0004766901981897263, 0.0005330391377290694, 0.0005928017978250147, 0.0006564862888236378, 0.0007246705315213569, 0.0007980164363826871, 0.0008772872794491353, 0.000963369167850869, 0.0010572977749852147, 0.0011602919197849601, 0.001273796113867045, 0.001399534972530509, 0.0015395834865228658, 0.0016964587425116135, 0.001873241014386906, 0.002073735628596013, 0.0023026922938780806, 0.0025661067759460403, 0.002871642767892173, 0.0032292328555393103, 0.0036519525857707244, 0.004157322046888033, 0.004769297015682688, 0.005521411508928647, 0.00646192228737938, 0.0076626055093347595, 0.009234614583525017, 0.011359007435153798, 0.014350663695595263, 0.0188078987190203, 0.02602092121370907, 0.03933501593027215, 0.06914575388448382, 0.14123202656596603, 0.22433194568452308, 0.06892691988425166, 0.6158459241661747, 0.3331123637673245, 0.363967499661218, 0.33311236376732445, 0.6158459241661747, 0.06892691988425169, 0.22433194568452305, 0.14123202656596603, 0.06914575388448384, 0.03933501593027216, 0.02602092121370906, 0.018807898719020295, 0.014350663695595274, 0.011359007435153806, 0.00923461458352503, 0.007662605509334781, 0.006461922287379398, 0.0055214115089286305, 0.004769297015682675, 0.0041573220468880245, 0.0036519525857707383, 0.003229232855539314, 0.002871642767892203, 0.0025661067759460026, 0.002302692293878086, 0.002073735628596011, 0.0018732410143868909, 0.0016964587425115636, 0.0015395834865228432, 0.0013995349725305839, 0.0012737961138670247, 0.0011602919197849849, 0.0010572977749851984, 0.0009633691678508631, 0.0008772872794491398, 0.0007980164363826661, 0.0007246705315213373, 0.0006564862888235627, 0.0005928017978250904, 0.0005330391377290904, 0.00047669019818970254, 0.0004233050145060123, 0.0003724820911396719, 0.0003238603038718703, 0.00027711205883273115, 0.000231937452975587, 0.00018805923086896134, 0.00014521837133005396, 0.00010317016640606971, 6.168067732176158e-05, 2.0523468388745185e-05], [2.2871485028336584e-05, 6.873734191332512e-05, 0.00011497349042799281, 0.00016183226949203412, 0.0002095743793071689, 0.00025847252104440726, 0.00030881534623057805, 0.00036091182623848535, 0.0004150961704524244, 0.0004717334462347369, 0.0005312260862989423, 0.0005940215121232178, 0.0006606211577774744, 0.0007315912531270693, 0.0008075758225033256, 0.0008893124853429519, 0.0009776518190599195, 0.0010735812790139759, 0.00117825499062631, 0.0012930311678864786, 0.0014195195250158046, 0.0015596419078802764, 0.0017157105991224399, 0.0018905305233141772, 0.0020875341792415624, 0.0023109620054941158, 0.00256610677594642, 0.0028596497476250492, 0.0032001307335444247, 0.003598617725273525, 0.004069680803781068, 0.004632842370581261, 0.0053147956539269315, 0.00615290600819151, 0.007200942542568633, 0.008538878376653443, 0.010290556994848928, 0.01265769936974945, 0.015991103289705738, 0.02095729340977328, 0.028993472597270573, 0.04382613522318282, 0.07704255046135042, 0.1574476161860803, 0.25047181182467876, 0.07647623117139854, 0.6882167554275925, 0.3727819139532214, 0.4067461403489536, 0.37278191395322147, 0.6882167554275924, 0.07647623117139854, 0.25047181182467876, 0.15744761618608027, 0.07704255046135042, 0.043826135223182815, 0.02899347259727058, 0.020957293409773287, 0.01599110328970576, 0.012657699369749465, 0.010290556994848925, 0.008538878376653439, 0.007200942542568645, 0.006152906008191517, 0.005314795653926905, 0.0046328423705812504, 0.004069680803781077, 0.0035986177252735475, 0.0032001307335444385, 0.0028596497476250458, 0.002566106775946441, 0.002310962005494082, 0.002087534179241552, 0.0018905305233142002, 0.001715710599122446, 0.001559641907880263, 0.001419519525015804, 0.0012930311678865094, 0.001178254990626269, 0.0010735812790139442, 0.0009776518190599828, 0.0008893124853429841, 0.0008075758225033233, 0.0007315912531270336, 0.000660621157777463, 0.0005940215121232211, 0.0005312260862989201, 0.00047173344623470213, 0.0004150961704524052, 0.0003609118262385174, 0.00030881534623059946, 0.0002584725210444183, 0.00020957437930715412, 0.00016183226949202897, 0.00011497349042805487, 6.87373419133092e-05, 2.287148502831425e-05], [2.5595030178679368e-05, 7.692260927735558e-05, 0.00012866456988242024, 0.00018110329631683926, 0.00023453052957314615, 0.0002892514403438886, 0.0003455890485033777, 0.00040388911283836555, 0.0004645256346268528, 0.0005279071465575542, 0.0005944839948574716, 0.0006647568699661302, 0.0007392869045810143, 0.000818707740285819, 0.0009037400733586466, 0.0009952093359647442, 0.0010940673634576518, 0.0012014191610537704, 0.0013185562412019638, 0.0014469984949551354, 0.0015885472450438876, 0.0017453530915703052, 0.0019200035335583453, 0.002115637333310176, 0.002336095500051809, 0.0025861231096872073, 0.0028716427678904533, 0.0032001307335439958, 0.0035811428871439857, 0.004027063964964532, 0.004554197239372184, 0.005184387106202536, 0.005947501195306721, 0.006885347586229581, 0.008058087079358369, 0.009555196819833852, 0.01151523286341969, 0.014163870323552919, 0.017893541360641262, 0.023449824206804786, 0.03244026004544503, 0.04903310411457194, 0.08619840599712102, 0.17627089138670451, 0.28091766179857536, 0.08514041111701529, 0.7726836411811782, 0.41922267214908343, 0.4566770173620084, 0.4192226721490834, 0.772683641181178, 0.08514041111701529, 0.28091766179857536, 0.17627089138670451, 0.08619840599712102, 0.04903310411457193, 0.032440260045445014, 0.023449824206804786, 0.01789354136064127, 0.014163870323552903, 0.011515232863419704, 0.009555196819833831, 0.008058087079358425, 0.006885347586229563, 0.005947501195306717, 0.005184387106202568, 0.004554197239372185, 0.004027063964964535, 0.0035811428871440525, 0.003200130733543972, 0.002871642767890521, 0.0025861231096871652, 0.0023360955000517607, 0.002115637333310151, 0.001920003533558357, 0.0017453530915703963, 0.0015885472450438117, 0.0014469984949551816, 0.0013185562412019567, 0.0012014191610536977, 0.0010940673634576602, 0.0009952093359647592, 0.0009037400733586404, 0.000818707740285809, 0.0007392869045811055, 0.0006647568699661248, 0.0005944839948574565, 0.0005279071465574959, 0.0004645256346268192, 0.000403889112838385, 0.0003455890485033703, 0.00028925144034388025, 0.000234530529573157, 0.00018110329631684558, 0.00012866456988246285, 7.692260927734046e-05, 2.5595030178678148e-05], [2.878267649597599e-05, 8.650267302191795e-05, 0.00014468865272949282, 0.0002036581642715331, 0.0002637392779519486, 0.0003252751657869907, 0.0003886290713142454, 0.0004541898080191645, 0.0005223779480608208, 0.0005936528942625672, 0.0006685210685546225, 0.0007475455048028652, 0.000831357203737374, 0.000920668701627278, 0.0010162904266715286, 0.0011191505809114357, 0.0012303195042258565, 0.0013510397723960413, 0.0014827636832109431, 0.0016272003385085893, 0.0017863752989853631, 0.001962706871713807, 0.0021591046335504138, 0.002379098023371423, 0.0026270061078122243, 0.0029081645043539323, 0.003229232855541783, 0.0035986177252729464, 0.004027063964964276, 0.004528497090218992, 0.005121248401150524, 0.005829879202292876, 0.006687971276198819, 0.0077425306052312385, 0.009061195744767546, 0.010744562040271004, 0.012948395512303455, 0.01592638864215762, 0.0201196638588244, 0.026366235381612646, 0.03647278239368982, 0.05512402211018438, 0.09690901826025512, 0.19832068553824045, 0.3167222919726464, 0.09515317350045227, 0.8722621297010217, 0.47416560089241294, 0.5155439901717849, 0.474165600892413, 0.8722621297010218, 0.09515317350045227, 0.31672229197264634, 0.19832068553824037, 0.0969090182602551, 0.05512402211018438, 0.036472782393689826, 0.026366235381612663, 0.02011966385882442, 0.015926388642157632, 0.012948395512303455, 0.010744562040271051, 0.00906119574476759, 0.0077425306052312445, 0.006687971276198753, 0.005829879202292869, 0.005121248401150552, 0.004528497090219016, 0.004027063964964283, 0.0035986177252729213, 0.0032292328555418447, 0.0029081645043539227, 0.002627006107812166, 0.0023790980233714424, 0.0021591046335504155, 0.0019627068717138463, 0.0017863752989853235, 0.0016272003385086186, 0.0014827636832109282, 0.0013510397723959949, 0.001230319504225907, 0.0011191505809114671, 0.0010162904266715178, 0.0009206687016272574, 0.0008313572037373733, 0.0007475455048028759, 0.0006685210685546468, 0.0005936528942624509, 0.0005223779480608093, 0.0004541898080191994, 0.00038862907131422713, 0.00032527516578694876, 0.0002637392779520177, 0.00020365816427152567, 0.0001446886527295496, 8.65026730218862e-05, 2.878267649601804e-05], [3.255103166365217e-05, 9.782798249107061e-05, 0.00016363191692542902, 0.00023032195277794461, 0.0002982691065835489, 0.00036786147311542236, 0.00043950984561223446, 0.0005136539337661595, 0.0005907693624739002, 0.0006713756691419526, 0.0007560455638563665, 0.0008454157773224272, 0.0009401999017886944, 0.0010412037349960164, 0.0011493437767377437, 0.0012656697119963708, 0.001391391962539111, 0.0015279157223717845, 0.0016768833477077377, 0.0018402275976264189, 0.0020202390916128814, 0.002219652574663284, 0.002441758325312547, 0.002690547563398444, 0.0029709044130700156, 0.003288862493405467, 0.003651952585769586, 0.004069680803781748, 0.004554197239371114, 0.005121248401153331, 0.005791562369413182, 0.0065929112501963046, 0.007563265964697136, 0.00875577471111662, 0.010246911739493752, 0.012150408610464116, 0.014642363049475682, 0.018009562989676858, 0.022750637252938927, 0.029812751925075535, 0.04123768533440978, 0.06231988993398601, 0.10956312434764258, 0.22441300752518914, 0.35928661942415724, 0.10680959324159806, 0.9909913631460875, 0.5399469232275628, 0.585736822046392, 0.5399469232275629, 0.9909913631460874, 0.10680959324159807, 0.35928661942415724, 0.22441300752518914, 0.10956312434764258, 0.062319889933986024, 0.04123768533440977, 0.029812751925075532, 0.02275063725293892, 0.018009562989676868, 0.014642363049475731, 0.012150408610464146, 0.010246911739493754, 0.00875577471111663, 0.0075632659646971264, 0.0065929112501963, 0.005791562369413184, 0.005121248401153391, 0.004554197239371172, 0.004069680803781712, 0.003651952585769565, 0.0032888624934054615, 0.002970904413069899, 0.002690547563398502, 0.0024417583253125152, 0.0022196525746633207, 0.0020202390916128545, 0.0018402275976265076, 0.0016768833477077232, 0.001527915722371739, 0.0013913919625390663, 0.0012656697119963396, 0.0011493437767377303, 0.0010412037349959956, 0.0009401999017887323, 0.0008454157773224818, 0.0007560455638563747, 0.0006713756691418594, 0.0005907693624738575, 0.0005136539337660741, 0.00043950984561228905, 0.0003678614731155227, 0.00029826910658373103, 0.00023032195277794591, 0.00016363191692550546, 9.782798249097368e-05, 3.2551031663649046e-05], [3.70563525760299e-05, 0.00011136814736595712, 0.00018627985335835847, 0.0002622002852997819, 0.00033955180289635325, 0.00041877620700080196, 0.0005003411372637005, 0.0005847471505265113, 0.0006725356875945829, 0.0007642981770481988, 0.0008606865762131697, 0.0009624257198556256, 0.0010703279370594596, 0.001185310517633153, 0.001308416766778279, 0.0014408415977668874, 0.0015839628935884348, 0.0017393802491324983, 0.0019089632226199575, 0.0020949119376240054, 0.0022998338669981935, 0.002526842023644685, 0.0027796817685324313, 0.0030628963161974743, 0.0033820452271155622, 0.0037439964546525, 0.004157322046888251, 0.004632842370579844, 0.00518438710620362, 0.0058298792022895415, 0.006592911250199453, 0.007505092576935574, 0.008609639280857239, 0.009967039270958723, 0.01166432431537344, 0.013830920606855394, 0.01666721458781286, 0.02049952501799432, 0.025895156465507902, 0.03393159696989654, 0.046931248572792385, 0.0709163686245553, 0.1246807406302242, 0.25564323706153025, 0.41051125729836213, 0.12048468358531549, 1.1343950198800463, 0.6197897984728479, 0.6705242674259453, 0.619789798472848, 1.1343950198800463, 0.12048468358531546, 0.4105112572983622, 0.25564323706153025, 0.12468074063022419, 0.07091636862455529, 0.04693124857279237, 0.03393159696989653, 0.02589515646550793, 0.02049952501799433, 0.016667214587812843, 0.013830920606855387, 0.011664324315373481, 0.009967039270958775, 0.00860963928085726, 0.007505092576935549, 0.006592911250199397, 0.005829879202289571, 0.005184387106203673, 0.004632842370579798, 0.004157322046888206, 0.0037439964546524197, 0.0033820452271154616, 0.0030628963161974153, 0.00277968176853246, 0.00252684202364483, 0.00229983386699821, 0.002094911937624059, 0.001908963222619936, 0.0017393802491322895, 0.0015839628935884723, 0.001440841597766945, 0.0013084167667782656, 0.0011853105176331095, 0.001070327937059496, 0.0009624257198556505, 0.000860686576213052, 0.0007642981770481629, 0.0006725356875946009, 0.0005847471505265197, 0.0005003411372637539, 0.0004187762070008393, 0.0003395518028962286, 0.00026220028529973883, 0.00018627985335836037, 0.00011136814736591694, 3.7056352576134316e-05], [4.251231485051601e-05, 0.0001277653418563467, 0.00021370659202572174, 0.00030080506071935393, 0.00038954528170582207, 0.00048043409096113404, 0.0005740079659941629, 0.0006708411456786483, 0.0007715547695257844, 0.0008768273209757086, 0.0009874067195048842, 0.001104124486054339, 0.0012279125106475588, 0.0013598230883306028, 0.0015010530712444654, 0.001652973226083198, 0.001817164208862915, 0.0019954610053802163, 0.002190008279148671, 0.002403329885641412, 0.0026384169470499387, 0.0028988404804087564, 0.0031888968485833872, 0.003513797595031826, 0.003879920050284247, 0.004295142297405629, 0.004769297015682644, 0.005314795653929153, 0.005947501195301773, 0.006687971276200213, 0.0075632659646972175, 0.008609639280856287, 0.009876655853699184, 0.011433686587829861, 0.013380539482820511, 0.015865631539312114, 0.019118734912987108, 0.023513986318079855, 0.02970174440150851, 0.03891705947841396, 0.05382150534934, 0.0813169716126213, 0.14297146329665292, 0.29351210054143784, 0.47303294675806123, 0.13665712096369917, 1.3102114980406125, 0.7182564419567807, 0.7744868518872601, 0.7182564419567808, 1.3102114980406123, 0.13665712096369914, 0.47303294675806123, 0.2935121005414378, 0.14297146329665292, 0.08131697161262132, 0.05382150534934001, 0.03891705947841395, 0.02970174440150851, 0.02351398631807986, 0.01911873491298714, 0.015865631539312093, 0.013380539482820548, 0.011433686587829867, 0.009876655853699168, 0.008609639280856276, 0.007563265964697252, 0.006687971276200251, 0.005947501195301845, 0.005314795653929109, 0.004769297015682633, 0.004295142297405591, 0.003879920050284191, 0.003513797595031864, 0.0031888968485833604, 0.002898840480408778, 0.0026384169470499044, 0.002403329885641513, 0.002190008279148624, 0.001995461005380144, 0.0018171642088629326, 0.0016529732260832316, 0.0015010530712444776, 0.0013598230883306696, 0.0012279125106475202, 0.0011041244860543439, 0.0009874067195048647, 0.0008768273209755702, 0.0007715547695258299, 0.0006708411456786024, 0.0005740079659942143, 0.0004804340909611569, 0.0003895452817058172, 0.00030080506071944235, 0.00021370659202585093, 0.0001277653418563565, 4.251231485039792e-05], [4.921806259846986e-05, 0.00014791860442217472, 0.00024741590532314746, 0.0003482529228488943, 0.00045099060275026037, 0.0005562157090352784, 0.0006645493203137961, 0.0007766562296991604, 0.0008932555247632549, 0.0010151326769246346, 0.0011431535395784386, 0.0012782807461798142, 0.00142159312043655, 0.0015743088698706533, 0.0017378135438690932, 0.001913694017038362, 0.0021037801323006036, 0.002310196142924478, 0.0025354247797052705, 0.002782387715158267, 0.003054547510540632, 0.0033560379813368404, 0.0036918325520920213, 0.004067963979659445, 0.004491814410320274, 0.004972503066643151, 0.005521411508926113, 0.006152906008192161, 0.006885347586232659, 0.007742530605230086, 0.008755774711117185, 0.009967039270958126, 0.011433686587829518, 0.013235997231322093, 0.015489468599435167, 0.018365835478908254, 0.022130944970834728, 0.0272176240850616, 0.034378141295673514, 0.045040812780887465, 0.06228307307774045, 0.09408527275556687, 0.16542609803034888, 0.3401248375243922, 0.5506061095848754, 0.15593752458282847, 1.5295948997616573, 0.8420030883123629, 0.9042290592320067, 0.8420030883123628, 1.5295948997616573, 0.15593752458282847, 0.5506061095848753, 0.34012483752439215, 0.16542609803034883, 0.09408527275556687, 0.06228307307774044, 0.04504081278088743, 0.03437814129567349, 0.027217624085061627, 0.022130944970834725, 0.018365835478908327, 0.0154894685994352, 0.013235997231322086, 0.011433686587829466, 0.009967039270958041, 0.008755774711117218, 0.007742530605230149, 0.006885347586232758, 0.006152906008192086, 0.005521411508926055, 0.004972503066643069, 0.004491814410320205, 0.00406796397965941, 0.0036918325520920153, 0.003356037981336904, 0.0030545475105406054, 0.002782387715158253, 0.0025354247797053273, 0.002310196142924237, 0.0021037801323008014, 0.0019136940170383144, 0.001737813543869031, 0.00157430886987058, 0.001421593120436632, 0.0012782807461799012, 0.0011431535395785583, 0.0010151326769244887, 0.0008932555247632986, 0.0007766562296991151, 0.000664549320313846, 0.000556215709035234, 0.00045099060275042343, 0.0003482529228488972, 0.00024741590532332533, 0.00014791860442223446, 4.921806259850064e-05], [5.7604136053746177e-05, 0.00017312186708735215, 0.00028957208151372723, 0.00040759022663111675, 0.000527832800973294, 0.0006509865178321329, 0.0007777782481923332, 0.0009089860211843421, 0.0010454514052967217, 0.0011880936560692299, 0.0013379260971684622, 0.001496075309962515, 0.001663803847653769, 0.0018425373765223226, 0.0020338973922544613, 0.00223974098661213, 0.0024622095766878216, 0.0027037890997639908, 0.0029673849804184448, 0.003256416282685637, 0.0035749349975749654, 0.0039277785797926686, 0.0043207669304223, 0.004760959476953285, 0.0052569945360155315, 0.005819542888103238, 0.006461922287381998, 0.007200942542566383, 0.00805808707935878, 0.009061195744767714, 0.010246911739493733, 0.011664324315372124, 0.013380539482822421, 0.015489468599435003, 0.018126209037388815, 0.02149162033108726, 0.025896598837897414, 0.03184724229277568, 0.04022300228707166, 0.0526932835634095, 0.07285401732596392, 0.110030024501794, 0.1934658833758438, 0.3985177057993314, 0.648743671692323, 0.1790958381068105, 1.809180680601394, 1.001101422529962, 1.069605044206741, 1.001101422529962, 1.8091806806013941, 0.17909583810681048, 0.648743671692323, 0.3985177057993313, 0.19346588337584378, 0.11003002450179399, 0.07285401732596397, 0.05269328356340949, 0.040223002287071694, 0.03184724229277572, 0.025896598837897418, 0.021491620331087268, 0.018126209037388766, 0.01548946859943499, 0.01338053948282235, 0.011664324315372072, 0.010246911739493802, 0.009061195744767818, 0.008058087079358893, 0.007200942542566386, 0.0064619222873819404, 0.005819542888103302, 0.005256994536015496, 0.004760959476953266, 0.0043207669304222455, 0.003927778579792844, 0.0035749349975750023, 0.0032564162826857475, 0.002967384980418522, 0.0027037890997638815, 0.0024622095766879746, 0.0022397409866120716, 0.002033897392254495, 0.0018425373765222652, 0.0016638038476538494, 0.001496075309962471, 0.0013379260971682755, 0.0011880936560692038, 0.0010454514052966907, 0.0009089860211843944, 0.0007777782481922292, 0.0006509865178321661, 0.0005278328009730977, 0.00040759022663109116, 0.0002895720815137466, 0.00017312186708731852, 5.7604136053731594e-05], [6.831102189172726e-05, 0.0002053000276060068, 0.00034339478862230056, 0.0004833488284774292, 0.0006259406320675543, 0.0007719845110028937, 0.0009223423933500446, 0.0010779368668382258, 0.0012397658595118947, 0.0014089194143889709, 0.0015865991123267613, 0.001774140824359793, 0.001973041642884688, 0.0021849920611888766, 0.0024119147627886177, 0.0026560117687404955, 0.0029198222104591404, 0.003206293694427682, 0.0035188711789046648, 0.0038616085928401865, 0.004239310250212365, 0.004657711676255849, 0.005123713116497203, 0.005645684277398744, 0.0062338665909132465, 0.00690091083976175, 0.00766260550933504, 0.008538878376651668, 0.009555196819835885, 0.010744562040268234, 0.012150408610466262, 0.013830920606853925, 0.015865631539314227, 0.018365835478908264, 0.02149162033108924, 0.0254809724455333, 0.030702199145337134, 0.037754742387705424, 0.047680008362539564, 0.06245422843770219, 0.08633276541410556, 0.13034998080306184, 0.22919597876010991, 0.4732167177079057, 0.7758457358849645, 0.20706643503183364, 2.1748360926362307, 1.211487339032837, 1.2859458305849372, 1.211487339032837, 2.1748360926362307, 0.20706643503183367, 0.7758457358849645, 0.47321671770790574, 0.22919597876010994, 0.13034998080306184, 0.08633276541410552, 0.062454228437702215, 0.04768000836253961, 0.037754742387705445, 0.030702199145337145, 0.02548097244553324, 0.021491620331089284, 0.018365835478908275, 0.01586563153931421, 0.013830920606853838, 0.012150408610466176, 0.010744562040268362, 0.00955519681983592, 0.008538878376651593, 0.007662605509334984, 0.006900910839761643, 0.0062338665909132465, 0.0056456842773987504, 0.005123713116497186, 0.004657711676256036, 0.00423931025021235, 0.003861608592840249, 0.0035188711789046934, 0.0032062936944276792, 0.0029198222104592202, 0.002656011768740475, 0.002411914762788702, 0.0021849920611887778, 0.001973041642884862, 0.0017741408243598141, 0.001586599112326681, 0.0014089194143888572, 0.0012397658595119255, 0.001077936866838152, 0.0009223423933501125, 0.0007719845110029041, 0.0006259406320679463, 0.00048334882847741003, 0.00034339478862250146, 0.00020530002760581808, 6.831102189153044e-05], [8.233079540231963e-05, 0.00024743463600235255, 0.0004138710940414075, 0.0005825482879667858, 0.0007544044162324845, 0.0009304208505641025, 0.0011116363430830319, 0.0012991627438169472, 0.0014942026910405885, 0.001698069824807384, 0.0019122121910240069, 0.0021382396574260547, 0.002377956364024782, 0.0026333994971773603, 0.0029068860268610286, 0.003201069513716131, 0.0035190097167054246, 0.003864258575486368, 0.004240967288771349, 0.004654020789058614, 0.005109208108639504, 0.00561344021949511, 0.006175031329370705, 0.006804065972386386, 0.007512883555315204, 0.008316725919931227, 0.009234614583528793, 0.010290556994846217, 0.011515232863420117, 0.01294839551230287, 0.014642363049475991, 0.0166672145878123, 0.01911873491299002, 0.022130944970832584, 0.025896598837898955, 0.030702199145338564, 0.03699104962639769, 0.045484473408494465, 0.05743522017205629, 0.07521961465213929, 0.10395211935506249, 0.15689338341590303, 0.27585860324685935, 0.5712445434127345, 0.9453054060539345, 0.24085754499442572, 2.6689412967164126, 1.499831180442229, 1.5783874953498893, 1.4998311804422289, 2.668941296716413, 0.24085754499442572, 0.9453054060539346, 0.5712445434127345, 0.27585860324685935, 0.15689338341590303, 0.10395211935506246, 0.07521961465213928, 0.057435220172056246, 0.04548447340849439, 0.03699104962639766, 0.030702199145338494, 0.02589659883789903, 0.022130944970832584, 0.019118734912990022, 0.01666721458781227, 0.014642363049476099, 0.012948395512302995, 0.01151523286342023, 0.010290556994846193, 0.009234614583528951, 0.008316725919931123, 0.007512883555315162, 0.006804065972386469, 0.0061750313293707365, 0.005613440219495303, 0.0051092081086393645, 0.004654020789058743, 0.00424096728877126, 0.0038642585754860466, 0.003519009716705587, 0.00320106951371599, 0.002906886026861083, 0.0026333994971771964, 0.0023779563640248043, 0.002138239657426166, 0.0019122121910238106, 0.0016980698248072455, 0.0014942026910403923, 0.0012991627438170086, 0.0011116363430829848, 0.0009304208505642387, 0.000754404416232367, 0.0005825482879668044, 0.00041387109404163863, 0.00024743463600220553, 8.233079540230852e-05], [0.00010127987763435652, 0.00030438362810024144, 0.0005091265814177675, 0.0007166257774118099, 0.0009280352519288145, 0.0011445621403974972, 0.0013674841509876867, 0.001598168895287985, 0.0018380956448496091, 0.0020888801904855535, 0.0023523036250937316, 0.0026303460592086328, 0.00292522652761473, 0.0032394506709891124, 0.0035758682090014115, 0.003937742794266293, 0.004328837604659767, 0.004753521067099479, 0.00521689851679153, 0.005724977535898506, 0.006284877412705277, 0.006905096956630048, 0.007595860310342667, 0.008369568209316636, 0.00924139359231002, 0.010230077539845025, 0.011359007435152212, 0.012657699369748155, 0.014163870323553807, 0.015926388642155526, 0.01800956298967565, 0.0204995250179972, 0.02351398631807709, 0.02721762408506169, 0.03184724229277391, 0.037754742387704064, 0.04548447340849472, 0.05592187334460709, 0.07060404436268392, 0.09244506379251105, 0.1277126191142711, 0.19265373342597927, 0.33869588556805713, 0.704054404785204, 1.1797284441264921, 0.28111274697645383, 3.365782368794883, 1.914136898709973, 1.9910327356445572, 1.914136898709973, 3.365782368794883, 0.28111274697645383, 1.1797284441264926, 0.7040544047852039, 0.338695885568057, 0.19265373342597927, 0.127712619114271, 0.09244506379251106, 0.07060404436268393, 0.05592187334460712, 0.04548447340849473, 0.03775474238770401, 0.03184724229277397, 0.027217624085061634, 0.023513986318076892, 0.02049952501799713, 0.018009562989675786, 0.015926388642155592, 0.014163870323553956, 0.012657699369748084, 0.011359007435152427, 0.01023007753984506, 0.009241393592310122, 0.008369568209316586, 0.0075958603103425375, 0.0069050969566302745, 0.006284877412704984, 0.005724977535898567, 0.005216898516791572, 0.004753521067099504, 0.0043288376046600975, 0.003937742794266434, 0.0035758682090015325, 0.003239450670989149, 0.002925226527614743, 0.002630346059208591, 0.002352303625093692, 0.0020888801904855566, 0.0018380956448495098, 0.0015981688952879445, 0.0013674841509875072, 0.0011445621403975807, 0.0009280352519291594, 0.0007166257774116624, 0.0005091265814179429, 0.00030438362810039643, 0.00010127987763423628], [0.0001279703378737589, 0.0003845982953719687, 0.0006432972148565316, 0.0009054783549980247, 0.0011725997075930099, 0.001446186339215439, 0.001727852462495766, 0.0020193258532535986, 0.002322475331247657, 0.002639342159326816, 0.002972176397119226, 0.003323479484188132, 0.0036960546404466274, 0.004093067084836978, 0.004518116616982203, 0.0049753258315328374, 0.005469448203021506, 0.00600600158691676, 0.006591434462633645, 0.007233334692146666, 0.007940693970952865, 0.008724245935259693, 0.009596902708106324, 0.010574324517571019, 0.011675671463691662, 0.012924608040594695, 0.014350663695594193, 0.01599110328970967, 0.01789354136063723, 0.020119663858827665, 0.02275063725293933, 0.02589515646550756, 0.02970174440150733, 0.03437814129567449, 0.04022300228706972, 0.04768000836254354, 0.057435220172053505, 0.07060404436268647, 0.0891215948877401, 0.11665354845766478, 0.161076440961936, 0.2427981897292704, 0.42673086734047355, 0.8915565176617853, 1.5201935343141413, 0.3263953439938032, 4.407968587991014, 2.5497281424743403, 2.6086580738424394, 2.5497281424743403, 4.407968587991015, 0.3263953439938031, 1.5201935343141413, 0.8915565176617855, 0.4267308673404735, 0.24279818972927034, 0.1610764409619359, 0.11665354845766467, 0.08912159488774017, 0.0706040443626866, 0.057435220172053617, 0.04768000836254339, 0.040223002287070014, 0.03437814129567453, 0.029701744401507503, 0.0258951564655075, 0.02275063725293933, 0.020119663858827734, 0.017893541360637373, 0.01599110328970966, 0.014350663695594283, 0.01292460804059472, 0.01167567146369151, 0.010574324517571078, 0.009596902708106123, 0.008724245935259875, 0.007940693970952732, 0.007233334692146721, 0.006591434462633366, 0.00600600158691627, 0.005469448203021497, 0.0049753258315330656, 0.0045181166169825145, 0.004093067084836953, 0.003696054640446807, 0.0033234794841883156, 0.002972176397119208, 0.0026393421593267625, 0.002322475331247525, 0.0020193258532538554, 0.0017278524624958261, 0.001446186339215573, 0.0011725997075930654, 0.0009054783549978913, 0.0006432972148568878, 0.00038459829537166527, 0.00012797033787322949], [0.00016774768225921678, 0.0005041438189138349, 0.0008432542180388715, 0.0011869285068228017, 0.0015370775482012303, 0.0018957000942299148, 0.0022649117054788378, 0.002646976742997194, 0.0030443443732971415, 0.0034596897057219524, 0.003895961419254637, 0.004356437547974327, 0.004844791505071289, 0.005365170964434133, 0.005922292932615368, 0.006521559290832098, 0.007169198355359156, 0.007872439715000078, 0.008639731933760737, 0.00948101590953772, 0.010408071131286618, 0.011434958337732209, 0.012578590998666884, 0.013859480918692057, 0.015302722144045875, 0.016939305492339553, 0.018807898719018088, 0.020957293409776697, 0.023449824206803783, 0.026366235381612244, 0.029812751925075286, 0.03393159696989589, 0.038917059478413146, 0.04504081278088992, 0.052693283563411276, 0.062454228437697906, 0.07521961465214053, 0.09244506379250916, 0.11665354845766919, 0.15261843005871292, 0.2105805802932568, 0.31704793056535546, 0.556859995398893, 1.1714405028630517, 2.0491706671705523, 0.3662939661318697, 6.107182619139034, 3.6244916243894543, 3.616863528142246, 3.624491624389454, 6.107182619139034, 0.36629396613186965, 2.049170667170552, 1.1714405028630515, 0.5568599953988932, 0.3170479305653554, 0.21058058029325685, 0.15261843005871267, 0.11665354845766929, 0.0924450637925093, 0.07521961465214047, 0.062454228437698156, 0.0526932835634115, 0.045040812780889894, 0.038917059478412994, 0.03393159696989597, 0.029812751925075463, 0.026366235381612542, 0.02344982420680413, 0.020957293409776496, 0.018807898719018286, 0.01693930549233959, 0.01530272214404571, 0.013859480918691902, 0.012578590998666839, 0.011434958337732502, 0.01040807113128601, 0.009481015909538103, 0.00863973193376052, 0.007872439714999046, 0.0071691983553595455, 0.0065215592908321445, 0.005922292932615182, 0.005365170964433926, 0.0048447915050713435, 0.004356437547974572, 0.0038959614192546435, 0.0034596897057214034, 0.0030443443732966918, 0.002646976742997054, 0.002264911705479015, 0.0018957000942304491, 0.0015370775482006784, 0.0011869285068228522, 0.000843254218039138, 0.0005041438189133243, 0.0001677476822586944], [0.0002321438977328891, 0.0006976779726131456, 0.0011669674084666176, 0.0016425712676058142, 0.002127133306678398, 0.0026234188394147627, 0.003134354731728722, 0.003663073644545729, 0.004212963823878789, 0.004787725985489301, 0.005391439169132124, 0.006028637869524318, 0.006704403317132289, 0.00742447252786873, 0.008195369724912152, 0.009024566044670335, 0.009920675188921445, 0.010893695047091185, 0.011955308526569947, 0.01311926124862803, 0.014401839907965733, 0.015822483729764764, 0.01740457375369455, 0.019176462428714257, 0.021172832022003946, 0.02343650910987837, 0.026020921213710527, 0.028993472597269983, 0.032440260045444674, 0.03647278239368966, 0.0412376853344113, 0.04693124857279161, 0.05382150534933949, 0.06228307307774037, 0.07285401732596411, 0.08633276541411006, 0.10395211935506216, 0.12771261911427165, 0.16107644096193402, 0.21058058029325372, 0.2902127929516978, 0.4361018463420958, 0.764784968682842, 1.6241856427693682, 2.957583402908463, 0.3490904878525395, 9.297142448078771, 5.759543120516016, 5.5129267314382, 5.759543120516017, 9.297142448078771, 0.3490904878525394, 2.9575834029084636, 1.6241856427693682, 0.764784968682842, 0.4361018463420957, 0.2902127929516981, 0.21058058029325383, 0.16107644096193421, 0.12771261911427134, 0.10395211935506245, 0.0863327654141099, 0.07285401732596478, 0.06228307307774034, 0.053821505349338813, 0.04693124857279137, 0.04123768533441162, 0.036472782393689694, 0.032440260045445125, 0.028993472597269494, 0.026020921213710534, 0.02343650910987889, 0.021172832022003703, 0.019176462428714, 0.017404573753694353, 0.015822483729765042, 0.014401839907965177, 0.013119261248627974, 0.01195530852656974, 0.010893695047090412, 0.009920675188923086, 0.009024566044670917, 0.00819536972491197, 0.00742447252786803, 0.006704403317133383, 0.006028637869524508, 0.0053914391691315825, 0.004787725985489178, 0.004212963823878514, 0.003663073644545579, 0.0031343547317282806, 0.002623418839415527, 0.0021271333066788657, 0.001642571267605442, 0.001166967408467089, 0.0006976779726128018, 0.00023214389773253382], [0.0003510534373428263, 0.0010550443879006797, 0.0017647125330305317, 0.002483926515938463, 0.0032166829575382304, 0.0039671621554111655, 0.004739788512720676, 0.005539297381429948, 0.00637081028148403, 0.007239920831726017, 0.008152794222886187, 0.009116283713875555, 0.010138068487593948, 0.011226818325539898, 0.01239239204616946, 0.01364607862304478, 0.0150008925375359, 0.016471938478695138, 0.018076865345247464, 0.019836436159155743, 0.021775249746497295, 0.023922663036406965, 0.026313981328844233, 0.028992010579963506, 0.03200910486556609, 0.03542990042047018, 0.039335015930272235, 0.04382613522318507, 0.0490331041145721, 0.05512402211018446, 0.062319889933982194, 0.07091636862455453, 0.08131697161262348, 0.09408527275556627, 0.11003002450179532, 0.13034998080305638, 0.1568933834159049, 0.1926537334259774, 0.24279818972927375, 0.31704793056535424, 0.43610184634209653, 0.6531513780770607, 1.1412967109899572, 2.4562901883378667, 4.79687183187708, 0.025771365847679396, 17.207114625163218, 11.63195356938683, 10.215054520781615, 11.63195356938683, 17.207114625163218, 0.025771365847679698, 4.796871831877082, 2.4562901883378667, 1.1412967109899572, 0.6531513780770613, 0.43610184634209664, 0.31704793056535424, 0.24279818972927364, 0.19265373342597775, 0.15689338341590517, 0.13034998080305665, 0.11003002450179585, 0.09408527275556612, 0.08131697161262326, 0.07091636862455437, 0.06231988993398221, 0.05512402211018466, 0.04903310411457305, 0.04382613522318398, 0.039335015930271555, 0.035429900420469965, 0.03200910486556567, 0.028992010579962764, 0.026313981328844424, 0.02392266303640741, 0.02177524974649728, 0.019836436159156087, 0.018076865345246072, 0.016471938478695783, 0.015000892537535688, 0.013646078623045437, 0.01239239204616908, 0.011226818325539305, 0.010138068487595306, 0.009116283713877621, 0.00815279422288585, 0.00723992083172416, 0.006370810281483767, 0.005539297381429319, 0.004739788512719952, 0.003967162155411962, 0.0032166829575360515, 0.002483926515938122, 0.0017647125330333927, 0.0010550443879011383, 0.0003510534373423364], [0.0006169695103014584, 0.001854220485537276, 0.0031014512257541704, 0.004365462340871997, 0.005653279473474619, 0.006972251240810042, 0.008330155496447276, 0.009735316874290141, 0.011196739066089818, 0.012724255940646046, 0.014328706484627644, 0.01602213968913529, 0.01781805701033426, 0.01973170201017846, 0.021780409395131504, 0.023984029141307248, 0.02636544603632763, 0.02895122122916581, 0.03177239089966855, 0.03486546886846144, 0.038273716236588366, 0.042048764006909496, 0.046252707185061324, 0.05096083581892921, 0.05626523722206748, 0.06227960602579064, 0.06914575388448936, 0.07704255046134817, 0.08619840599711778, 0.09690901826025287, 0.1095631243476388, 0.12468074063022727, 0.1429714632966471, 0.16542609803035327, 0.19346588337584553, 0.22919597876011347, 0.27585860324685735, 0.3386958855680622, 0.4267308673404784, 0.5568599953988939, 0.7647849686828416, 1.1412967109899566, 1.9840986282229525, 4.3678591617398705, 9.894943387919993, 3.9643576942454612, 67.72403923453241, 96.0139831729412, 108.04345246316913, 96.01398317294118, 67.72403923453243, 3.9643576942454626, 9.894943387919993, 4.3678591617398705, 1.9840986282229518, 1.1412967109899552, 0.7647849686828433, 0.5568599953988926, 0.4267308673404791, 0.338695885568062, 0.27585860324685696, 0.22919597876011438, 0.19346588337584955, 0.16542609803035127, 0.14297146329664234, 0.1246807406302271, 0.1095631243476401, 0.09690901826025261, 0.08619840599712392, 0.07704255046134495, 0.06914575388448722, 0.06227960602578801, 0.0562652372220661, 0.05096083581893245, 0.04625270718505537, 0.042048764006907074, 0.03827371623658823, 0.03486546886846228, 0.03177239089966966, 0.028951221229162282, 0.026365446036333805, 0.02398402914130479, 0.02178040939513679, 0.01973170201017598, 0.017818057010332136, 0.01602213968913682, 0.014328706484631595, 0.012724255940640179, 0.01119673906608479, 0.009735316874291099, 0.008330155496446792, 0.006972251240813252, 0.005653279473477412, 0.0043654623408710454, 0.0031014512257687135, 0.0018542204855332626, 0.0006169695102963633], [0.0012553300945611079, 0.003772751634671101, 0.006310547279648754, 0.00888260220219486, 0.01150326324252176, 0.014187539941560858, 0.016951322752728152, 0.019811624558721486, 0.02278685263563144, 0.02589711957713318, 0.02916460350671494, 0.032613970296191036, 0.03627287365036096, 0.04017255305523536, 0.04434855506002057, 0.048841610643178476, 0.05369871116961435, 0.05897443862585159, 0.06473262379310567, 0.0710484307677216, 0.07801100070156625, 0.08572683618828922, 0.0943241770144517, 0.1039587182719463, 0.11482116915735693, 0.12714737084966968, 0.14123202656596023, 0.15744761618608333, 0.17627089138670346, 0.19832068553823554, 0.22441300752519122, 0.2556432370615299, 0.2935121005414432, 0.34012483752438405, 0.3985177057993364, 0.4732167177078919, 0.5712445434127369, 0.7040544047852002, 0.8915565176617933, 1.171440502863048, 1.6241856427693602, 2.4562901883378725, 4.367859161739864, 10.55679299286445, 41.48099372506037, 134.86537964814062, 116.33756976973092, 98.77655745307011, 83.6183090168836, 98.77655745307011, 116.33756976973092, 134.8653796481406, 41.480993725060365, 10.556792992864448, 4.367859161739869, 2.456290188337873, 1.6241856427693626, 1.17144050286305, 0.8915565176617913, 0.7040544047851952, 0.5712445434127336, 0.47321671770789203, 0.3985177057993317, 0.34012483752438866, 0.2935121005414473, 0.2556432370615293, 0.22441300752518792, 0.19832068553823964, 0.17627089138670116, 0.15744761618609007, 0.1412320265659546, 0.12714737084967248, 0.1148211691573538, 0.10395871827194923, 0.09432417701444692, 0.08572683618829849, 0.07801100070157381, 0.07104843076771478, 0.06473262379311609, 0.058974438625851604, 0.05369871116961841, 0.0488416106431715, 0.04434855506002005, 0.0401725530552345, 0.036272873650357855, 0.032613970296187046, 0.029164603506707035, 0.025897119577136744, 0.022786852635640252, 0.019811624558719796, 0.0169513227527182, 0.01418753994156664, 0.011503263242546047, 0.008882602202192542, 0.006310547279642106, 0.0037727516346705093, 0.0012553300945664556], [0.001972996008398541, 0.005929710670403378, 0.009918737923220107, 0.013962105372998258, 0.0180825825312525, 0.022304004315732748, 0.026651622644557837, 0.031152496181024687, 0.035835929986946055, 0.040733979137210205, 0.045882033397530705, 0.05131950409314536, 0.05709063960501099, 0.06324550294630234, 0.06984115418855132, 0.07694309295444927, 0.0846270329519234, 0.09298110328102174, 0.1021086024443982, 0.11213147422138495, 0.12319473515021898, 0.13547216933885542, 0.14917372998547473, 0.16455526749149582, 0.1819314717602136, 0.20169332033436224, 0.22433194568453124, 0.2504718118246818, 0.2809176617985753, 0.31672229197264884, 0.35928661942416346, 0.4105112572983673, 0.4730329467580573, 0.5506061095848799, 0.648743671692324, 0.7758457358849726, 0.9453054060539348, 1.1797284441264886, 1.5201935343141384, 2.049170667170546, 2.9575834029084653, 4.796871831877081, 9.894943387919998, 41.48099372506037, 147.02644692625088, 69.33736761426665, 48.584140899327465, 41.186681332873846, 49.68104723901684, 41.186681332873846, 48.584140899327465, 69.33736761426665, 147.02644692625088, 41.48099372506037, 9.894943387919998, 4.79687183187708, 2.957583402908465, 2.049170667170544, 1.5201935343141362, 1.1797284441264893, 0.9453054060539352, 0.7758457358849683, 0.6487436716923218, 0.5506061095848787, 0.4730329467580579, 0.4105112572983618, 0.3592866194241641, 0.316722291972643, 0.2809176617985792, 0.25047181182468536, 0.2243319456845307, 0.20169332033436768, 0.1819314717602171, 0.16455526749149924, 0.14917372998547915, 0.13547216933885592, 0.12319473515021663, 0.11213147422138843, 0.10210860244439537, 0.09298110328101226, 0.08462703295192368, 0.07694309295446843, 0.06984115418854196, 0.06324550294627733, 0.05709063960501203, 0.051319504093156644, 0.045882033397530435, 0.040733979137208436, 0.03583592998694821, 0.031152496181025845, 0.02665162264456731, 0.02230400431573265, 0.018082582531251775, 0.01396210537299713, 0.00991873792322279, 0.005929710670391438, 0.0019729960084033074], [0.0006323364740430708, 0.0019003262279329238, 0.0031783088468579123, 0.004473088743348915, 0.005791687657518355, 0.007141438876894532, 0.008530089081454617, 0.009965910494806024, 0.011457826437821287, 0.013015553936251334, 0.014649767761366481, 0.0163722912306463, 0.01819632032379163, 0.020136689262310055, 0.0222101877716798, 0.02443594294772529, 0.026835882189505344, 0.02943529833060449, 0.03226354428997517, 0.035354892822479965, 0.0387496080386256, 0.042495290346839444, 0.046648576842327136, 0.0512773070014388, 0.056463301734979314, 0.06230595634337708, 0.0689269198842521, 0.07647623117140452, 0.0851404111170136, 0.09515317350044979, 0.10680959324160363, 0.1204846835853168, 0.1366571209637042, 0.15593752458282442, 0.17909583810680896, 0.2070664350318318, 0.24085754499442058, 0.28111274697645217, 0.32639534399380327, 0.3662939661318774, 0.34909048785253344, 0.02577136584767734, 3.9643576942454604, 134.86537964814062, 69.33736761426665, 50.82098280148837, 65.83257037023046, 52.368959391757286, 55.881957988023935, 52.36895939175728, 65.83257037023046, 50.82098280148837, 69.33736761426665, 134.86537964814065, 3.9643576942454635, 0.02577136584767863, 0.34909048785253327, 0.36629396613187787, 0.32639534399380227, 0.28111274697645244, 0.24085754499442438, 0.20706643503182198, 0.17909583810681667, 0.15593752458282156, 0.13665712096369917, 0.1204846835853213, 0.10680959324160227, 0.09515317350045173, 0.08514041111702032, 0.07647623117139496, 0.06892691988425056, 0.06230595634336696, 0.05646330173497682, 0.05127730700143176, 0.04664857684233328, 0.042495290346844065, 0.03874960803861877, 0.03535489282251118, 0.03226354428996406, 0.02943529833060953, 0.02683588218950036, 0.024435942947732006, 0.022210187771681836, 0.020136689262293034, 0.018196320323808034, 0.016372291230649864, 0.014649767761372326, 0.013015553936257083, 0.011457826437811671, 0.00996591049478157, 0.00853008908146213, 0.007141438876906355, 0.005791687657514408, 0.004473088743338164, 0.003178308846859902, 0.001900326227927974, 0.0006323364740381997], [0.005385012867512054, 0.016184441321910374, 0.027072477326369384, 0.03810953418173699, 0.04935807405567234, 0.06088350205245553, 0.072755138624201, 0.0850472984351587, 0.09784050859443735, 0.11122290566305022, 0.1252918594805002, 0.14015588328044423, 0.15593690466206386, 0.17277299198217588, 0.19082165735334392, 0.21026389310039456, 0.23130914669514918, 0.25420150481730214, 0.27922744750958406, 0.30672565905674726, 0.3370995591469515, 0.37083347023572455, 0.4085137020955784, 0.4508563708117497, 0.49874457061095223, 0.5532787359410531, 0.6158459241661715, 0.6882167554275966, 0.7726836411811719, 0.8722621297010287, 0.9909913631460827, 1.134395019880043, 1.3102114980406117, 1.529594899761659, 1.809180680601399, 2.1748360926362436, 2.66894129671641, 3.3657823687948922, 4.407968587991017, 6.107182619139035, 9.297142448078771, 17.207114625163218, 67.72403923453241, 116.33756976973093, 48.58414089932748, 65.83257037023046, 24.7019498187123, 48.01878609826107, 27.77492001982474, 48.01878609826107, 24.701949818712293, 65.83257037023046, 48.58414089932748, 116.33756976973093, 67.72403923453241, 17.207114625163225, 9.297142448078773, 6.107182619139036, 4.407968587991014, 3.365782368794891, 2.6689412967164103, 2.174836092636239, 1.8091806806013966, 1.5295948997616606, 1.310211498040613, 1.1343950198800488, 0.9909913631460885, 0.8722621297010296, 0.7726836411811687, 0.6882167554275982, 0.6158459241661681, 0.5532787359410576, 0.4987445706109554, 0.45085637081174923, 0.4085137020955837, 0.3708334702357255, 0.33709955914695733, 0.3067256590567295, 0.27922744750958467, 0.2542015048173109, 0.23130914669515265, 0.21026389310039253, 0.19082165735334328, 0.1727729919821982, 0.15593690466205573, 0.14015588328043707, 0.12529185948050256, 0.11122290566305265, 0.09784050859444014, 0.08504729843516157, 0.07275513862419504, 0.06088350205244569, 0.04935807405567077, 0.03810953418174621, 0.02707247732636798, 0.016184441321914125, 0.005385012867504194], [0.002884706274787038, 0.008669997665557342, 0.014503143735396034, 0.020416780491623206, 0.02644466347831261, 0.032622156897226834, 0.0389867661866179, 0.045578729705068585, 0.05244168788205487, 0.05962345187106096, 0.06717689864108649, 0.07516102593837624, 0.08364220915563932, 0.09269571357897621, 0.10240753075046177, 0.11287662820976926, 0.1242177297028387, 0.13656478100956668, 0.15007530915805972, 0.1649359563422561, 0.18136957394812153, 0.1996444113807087, 0.22008615164017045, 0.24309386682254913, 0.2691614499961345, 0.29890682095356214, 0.33311236376732967, 0.3727819139532134, 0.41922267214908393, 0.4741656008924169, 0.5399469232275652, 0.6197897984728418, 0.7182564419567868, 0.8420030883123665, 1.001101422529967, 1.2114873390328296, 1.49983118044223, 1.9141368987099772, 2.5497281424743434, 3.624491624389459, 5.759543120516015, 11.631953569386829, 96.01398317294121, 98.77655745307013, 41.18668133287385, 52.368959391757286, 48.01878609826107, 51.934415061381834, 41.89444110481412, 51.934415061381834, 48.01878609826107, 52.368959391757286, 41.186681332873846, 98.77655745307013, 96.01398317294121, 11.63195356938683, 5.7595431205160175, 3.6244916243894574, 2.5497281424743474, 1.9141368987099767, 1.4998311804422304, 1.2114873390328182, 1.0011014225299655, 0.8420030883123694, 0.7182564419567915, 0.6197897984728447, 0.5399469232275741, 0.47416560089241605, 0.4192226721490817, 0.37278191395321236, 0.33311236376732584, 0.29890682095356086, 0.2691614499961291, 0.2430938668225394, 0.22008615164017264, 0.1996444113807057, 0.18136957394813383, 0.16493595634224764, 0.15007530915806996, 0.136564781009575, 0.12421772970284216, 0.11287662820977072, 0.10240753075045549, 0.09269571357899671, 0.08364220915562078, 0.07516102593837554, 0.06717689864108126, 0.059623451871071334, 0.05244168788205523, 0.045578729705062146, 0.03898676618660409, 0.03262215689721787, 0.026444663478320855, 0.020416780491625, 0.014503143735393485, 0.00866999766556166, 0.0028847062747911056], [0.0031822244194081284, 0.009564049903619833, 0.015998241388904648, 0.022520502511692648, 0.02916774791909525, 0.03597863172902016, 0.04299412230374572, 0.05025813995667799, 0.057818277053003735, 0.06572662380226828, 0.07404072815083738, 0.0828247249382174, 0.09215067840976816, 0.10210019400685864, 0.11276637110123451, 0.12425618943823406, 0.13669345054836543, 0.15022243421384376, 0.16501248351703796, 0.1812638063565815, 0.19921488602430365, 0.21915204280502856, 0.24142190466716149, 0.26644786262379805, 0.294752060754981, 0.32698519291905354, 0.3639674996612236, 0.4067461403489523, 0.4566770173620041, 0.5155439901717873, 0.5857368220463927, 0.6705242674259455, 0.7744868518872601, 0.9042290592320055, 1.0696050442067329, 1.2859458305849325, 1.578387495349889, 1.9910327356445567, 2.6086580738424443, 3.6168635281422414, 5.512926731438204, 10.215054520781612, 108.04345246316915, 83.6183090168836, 49.68104723901685, 55.881957988023935, 27.774920019824737, 41.89444110481413, 30.13906501560181, 41.89444110481413, 27.774920019824734, 55.881957988023935, 49.681047239016856, 83.6183090168836, 108.04345246316915, 10.215054520781612, 5.512926731438206, 3.6168635281422405, 2.608658073842446, 1.991032735644555, 1.5783874953498913, 1.285945830584934, 1.0696050442067342, 0.9042290592320102, 0.7744868518872633, 0.6705242674259474, 0.585736822046394, 0.5155439901717866, 0.45667701736200245, 0.4067461403489475, 0.3639674996612222, 0.3269851929190584, 0.29475206075498017, 0.2664478626237936, 0.24142190466715382, 0.219152042805032, 0.1992148860243067, 0.1812638063565695, 0.1650124835170367, 0.15022243421385167, 0.13669345054836618, 0.12425618943823762, 0.11276637110122975, 0.10210019400686186, 0.09215067840975351, 0.08282472493822142, 0.07404072815083762, 0.06572662380226961, 0.057818277052992625, 0.05025813995669007, 0.04299412230374478, 0.035978631729014644, 0.02916774791909536, 0.02252050251169952, 0.015998241388906237, 0.00956404990361622, 0.0031822244194125385], [0.002884706274787931, 0.008669997665558603, 0.014503143735397466, 0.020416780491626606, 0.026444663478312223, 0.032622156897224176, 0.038986766186612676, 0.04557872970506862, 0.05244168788205667, 0.05962345187106976, 0.06717689864108396, 0.07516102593837286, 0.08364220915563987, 0.09269571357898566, 0.10240753075045834, 0.11287662820976463, 0.1242177297028405, 0.13656478100956246, 0.15007530915806344, 0.1649359563422557, 0.18136957394812447, 0.19964441138070765, 0.22008615164017348, 0.24309386682254516, 0.2691614499961327, 0.2989068209535611, 0.3331123637673285, 0.37278191395320837, 0.4192226721490855, 0.4741656008924158, 0.539946923227572, 0.6197897984728418, 0.7182564419567826, 0.8420030883123645, 1.0011014225299693, 1.211487339032838, 1.4998311804422273, 1.91413689870998, 2.5497281424743496, 3.6244916243894694, 5.759543120516015, 11.63195356938683, 96.01398317294118, 98.77655745307013, 41.186681332873846, 52.36895939175728, 48.01878609826106, 51.934415061381834, 41.89444110481412, 51.934415061381834, 48.01878609826106, 52.368959391757286, 41.18668133287385, 98.77655745307011, 96.01398317294118, 11.631953569386832, 5.759543120516014, 3.6244916243894676, 2.5497281424743505, 1.9141368987099792, 1.4998311804422257, 1.2114873390328371, 1.0011014225299684, 0.8420030883123679, 0.7182564419567884, 0.6197897984728471, 0.5399469232275719, 0.474165600892414, 0.41922267214908326, 0.3727819139532103, 0.33311236376732684, 0.2989068209535663, 0.26916144999613206, 0.24309386682254513, 0.22008615164017248, 0.1996444113807062, 0.18136957394812875, 0.16493595634224834, 0.1500753091580661, 0.13656478100957276, 0.12421772970284173, 0.11287662820977475, 0.10240753075045865, 0.09269571357899616, 0.08364220915562566, 0.07516102593837608, 0.06717689864108148, 0.05962345187106524, 0.052441687882052286, 0.04557872970506384, 0.038986766186609415, 0.03262215689722059, 0.026444663478318944, 0.020416780491623814, 0.014503143735391492, 0.008669997665559814, 0.0028847062747907864], [0.005385012867514046, 0.016184441321917428, 0.02707247732637155, 0.038109534181736335, 0.04935807405567306, 0.06088350205245057, 0.07275513862420345, 0.08504729843515557, 0.09784050859443931, 0.11122290566305562, 0.12529185948050364, 0.14015588328043957, 0.15593690466206994, 0.17277299198218418, 0.1908216573533508, 0.21026389310038648, 0.2313091466951478, 0.25420150481730136, 0.2792274475095841, 0.3067256590567439, 0.33709955914695217, 0.37083347023572477, 0.4085137020955788, 0.4508563708117459, 0.49874457061095595, 0.5532787359410526, 0.6158459241661719, 0.6882167554275956, 0.772683641181173, 0.8722621297010317, 0.990991363146081, 1.1343950198800419, 1.3102114980406057, 1.529594899761654, 1.809180680601399, 2.174836092636239, 2.668941296716409, 3.3657823687948896, 4.407968587991017, 6.107182619139033, 9.297142448078771, 17.207114625163225, 67.72403923453241, 116.33756976973093, 48.58414089932748, 65.83257037023046, 24.7019498187123, 48.01878609826107, 27.77492001982474, 48.01878609826107, 24.701949818712304, 65.83257037023046, 48.58414089932748, 116.33756976973093, 67.72403923453241, 17.20711462516322, 9.29714244807877, 6.1071826191390315, 4.407968587991015, 3.365782368794891, 2.6689412967164063, 2.174836092636244, 1.8091806806013986, 1.5295948997616604, 1.3102114980406119, 1.1343950198800468, 0.9909913631460873, 0.8722621297010283, 0.7726836411811734, 0.6882167554275953, 0.6158459241661662, 0.5532787359410507, 0.4987445706109506, 0.4508563708117461, 0.40851370209558224, 0.3708334702357233, 0.33709955914695666, 0.30672565905673, 0.2792274475095876, 0.2542015048173049, 0.23130914669515948, 0.2102638931003969, 0.1908216573533394, 0.17277299198218996, 0.15593690466205304, 0.14015588328044193, 0.12529185948050156, 0.11122290566305507, 0.09784050859443627, 0.08504729843516766, 0.07275513862419182, 0.06088350205245138, 0.04935807405566983, 0.038109534181748235, 0.027072477326365283, 0.016184441321906332, 0.00538501286750299], [0.0006323364740434457, 0.0019003262279346598, 0.003178308846855517, 0.00447308874334608, 0.005791687657518718, 0.007141438876897792, 0.008530089081460657, 0.009965910494788023, 0.011457826437821889, 0.013015553936253598, 0.014649767761366074, 0.016372291230646114, 0.01819632032379713, 0.020136689262303407, 0.022210187771678543, 0.02443594294772506, 0.02683588218950526, 0.02943529833060259, 0.032263544289972544, 0.035354892822496466, 0.038749608038620716, 0.042495290346838785, 0.04664857684233273, 0.051277307001436616, 0.056463301734978086, 0.0623059563433734, 0.0689269198842515, 0.0764762311714022, 0.08514041111701694, 0.09515317350045055, 0.10680959324160068, 0.12048468358531741, 0.13665712096370253, 0.155937524582833, 0.17909583810681692, 0.20706643503182198, 0.24085754499442286, 0.2811127469764514, 0.3263953439937993, 0.36629396613188464, 0.3490904878525385, 0.025771365847675906, 3.9643576942454595, 134.86537964814065, 69.33736761426665, 50.82098280148836, 65.83257037023046, 52.36895939175728, 55.88195798802394, 52.368959391757286, 65.83257037023046, 50.820982801488356, 69.33736761426665, 134.86537964814065, 3.9643576942454604, 0.025771365847677457, 0.349090487852539, 0.36629396613188464, 0.326395343993802, 0.28111274697645466, 0.24085754499442197, 0.2070664350318318, 0.17909583810681565, 0.15593752458282728, 0.13665712096369706, 0.12048468358531365, 0.1068095932416018, 0.09515317350044984, 0.08514041111702383, 0.07647623117139304, 0.06892691988425702, 0.06230595634337131, 0.05646330173498017, 0.051277307001434465, 0.04664857684233293, 0.042495290346844246, 0.038749608038623415, 0.03535489282249834, 0.032263544289967284, 0.029435298330613213, 0.02683588218949979, 0.02443594294772903, 0.02221018777168328, 0.020136689262301465, 0.01819632032380355, 0.01637229123064719, 0.014649767761369933, 0.013015553936256023, 0.01145782643781313, 0.00996591049480088, 0.00853008908145495, 0.007141438876899216, 0.005791687657512146, 0.004473088743342103, 0.0031783088468612104, 0.0019003262279288539, 0.0006323364740382647], [0.0019729960084051558, 0.005929710670400945, 0.00991873792322305, 0.013962105373002888, 0.018082582531254433, 0.022304004315728262, 0.026651622644567042, 0.031152496181021255, 0.03583592998694453, 0.04073397913720664, 0.04588203339753292, 0.05131950409314886, 0.05709063960500771, 0.06324550294628864, 0.06984115418854278, 0.07694309295444733, 0.08462703295192633, 0.09298110328100949, 0.10210860244439765, 0.11213147422138649, 0.1231947351502183, 0.13547216933885967, 0.14917372998548029, 0.1645552674915006, 0.1819314717602062, 0.20169332033437104, 0.22433194568453113, 0.2504718118246821, 0.2809176617985803, 0.3167222919726498, 0.35928661942416007, 0.41051125729836113, 0.473032946758065, 0.550606109584884, 0.6487436716923191, 0.7758457358849711, 0.9453054060539305, 1.1797284441264886, 1.5201935343141346, 2.0491706671705456, 2.9575834029084676, 4.796871831877078, 9.89494338792, 41.480993725060365, 147.02644692625088, 69.33736761426664, 48.584140899327465, 41.186681332873846, 49.68104723901684, 41.186681332873846, 48.584140899327465, 69.33736761426664, 147.02644692625088, 41.480993725060365, 9.894943387919994, 4.796871831877079, 2.9575834029084653, 2.0491706671705443, 1.5201935343141366, 1.1797284441264886, 0.9453054060539323, 0.7758457358849711, 0.6487436716923283, 0.5506061095848827, 0.47303294675805535, 0.4105112572983597, 0.3592866194241644, 0.3167222919726463, 0.28091766179858396, 0.2504718118246739, 0.22433194568453177, 0.2016933203343571, 0.18193147176021443, 0.1645552674915049, 0.1491737299854816, 0.13547216933885012, 0.12319473515021909, 0.11213147422138596, 0.10210860244439682, 0.09298110328101762, 0.08462703295192443, 0.0769430929544663, 0.06984115418855098, 0.06324550294628593, 0.05709063960501565, 0.051319504093156484, 0.045882033397522726, 0.04073397913721064, 0.03583592998694801, 0.031152496181028295, 0.026651622644559246, 0.022304004315736804, 0.018082582531245454, 0.013962105372994624, 0.009918737923218648, 0.005929710670393449, 0.001972996008396466], [0.001255330094554638, 0.003772751634666479, 0.006310547279650647, 0.008882602202196041, 0.011503263242530811, 0.014187539941559349, 0.01695132275272913, 0.01981162455872109, 0.022786852635636384, 0.025897119577130583, 0.029164603506709658, 0.03261397029619658, 0.036272873650363864, 0.04017255305523065, 0.04434855506002095, 0.0488416106431763, 0.053698711169616865, 0.058974438625859146, 0.06473262379310361, 0.07104843076772041, 0.0780110007015681, 0.08572683618829191, 0.09432417701444548, 0.10395871827194579, 0.1148211691573541, 0.12714737084967023, 0.14123202656595604, 0.15744761618608719, 0.17627089138670898, 0.1983206855382486, 0.2244130075251915, 0.25564323706152936, 0.29351210054144117, 0.3401248375243837, 0.39851770579933044, 0.4732167177078971, 0.571244543412731, 0.7040544047851979, 0.8915565176617856, 1.1714405028630515, 1.6241856427693646, 2.4562901883378685, 4.367859161739862, 10.556792992864443, 41.480993725060365, 134.8653796481406, 116.33756976973092, 98.77655745307011, 83.6183090168836, 98.77655745307011, 116.33756976973093, 134.86537964814065, 41.48099372506037, 10.556792992864446, 4.367859161739861, 2.456290188337867, 1.6241856427693662, 1.171440502863055, 0.891556517661785, 0.7040544047851968, 0.571244543412732, 0.47321671770790275, 0.39851770579932744, 0.3401248375243868, 0.2935121005414458, 0.2556432370615284, 0.22441300752518958, 0.19832068553824211, 0.17627089138670154, 0.15744761618609224, 0.14123202656595826, 0.1271473708496754, 0.11482116915735488, 0.10395871827194585, 0.09432417701445125, 0.08572683618829402, 0.07801100070157346, 0.07104843076771006, 0.06473262379311057, 0.058974438625843485, 0.05369871116961034, 0.04884161064317456, 0.04434855506002633, 0.04017255305524265, 0.03627287365035385, 0.032613970296181224, 0.02916460350671476, 0.0258971195771414, 0.02278685263563726, 0.019811624558718426, 0.0169513227527169, 0.014187539941566962, 0.01150326324253952, 0.008882602202192127, 0.006310547279641713, 0.0037727516346740516, 0.0012553300945755597], [0.0006169695102986517, 0.0018542204855401055, 0.0031014512257563935, 0.004365462340872612, 0.005653279473479087, 0.006972251240811081, 0.008330155496447047, 0.009735316874289987, 0.011196739066089898, 0.012724255940646424, 0.01432870648463212, 0.01602213968913597, 0.017818057010332296, 0.01973170201017774, 0.02178040939513402, 0.023984029141306464, 0.026365446036327737, 0.028951221229166223, 0.03177239089966939, 0.03486546886845755, 0.03827371623659167, 0.0420487640069142, 0.04625270718505666, 0.05096083581893042, 0.05626523722206401, 0.06227960602578917, 0.06914575388448724, 0.07704255046134728, 0.08619840599712283, 0.09690901826025532, 0.10956312434764359, 0.12468074063022878, 0.14297146329664975, 0.16542609803035263, 0.19346588337584322, 0.2291959787601153, 0.2758586032468607, 0.3386958855680569, 0.42673086734047994, 0.5568599953988917, 0.7647849686828417, 1.1412967109899539, 1.9840986282229562, 4.367859161739874, 9.894943387919993, 3.964357694245459, 67.72403923453243, 96.0139831729412, 108.04345246316913, 96.0139831729412, 67.72403923453241, 3.96435769424546, 9.894943387919994, 4.367859161739872, 1.9840986282229556, 1.1412967109899543, 0.7647849686828431, 0.5568599953988905, 0.4267308673404786, 0.3386958855680598, 0.2758586032468588, 0.22919597876011544, 0.1934658833758487, 0.16542609803035285, 0.14297146329664445, 0.12468074063022305, 0.10956312434764486, 0.09690901826025553, 0.08619840599712567, 0.0770425504613451, 0.06914575388448999, 0.06227960602579007, 0.056265237222066666, 0.050960835818932404, 0.04625270718505522, 0.04204876400691221, 0.03827371623658679, 0.034865468868466865, 0.03177239089966695, 0.02895122122915998, 0.026365446036332164, 0.02398402914130904, 0.021780409395136095, 0.01973170201017652, 0.017818057010336133, 0.016022139689137876, 0.014328706484622578, 0.012724255940642998, 0.011196739066083861, 0.009735316874290903, 0.008330155496445753, 0.006972251240812519, 0.005653279473472845, 0.004365462340871271, 0.0031014512257661483, 0.0018542204855318879, 0.0006169695103000354], [0.0003510534373437891, 0.0010550443878994656, 0.0017647125330309472, 0.0024839265159381906, 0.003216682957538146, 0.003967162155411491, 0.0047397885127205865, 0.005539297381428738, 0.0063708102814846995, 0.007239920831725837, 0.0081527942228863, 0.009116283713876648, 0.010138068487594049, 0.011226818325540785, 0.012392392046169433, 0.013646078623044823, 0.015000892537535372, 0.01647193847869587, 0.01807686534524791, 0.019836436159155226, 0.02177524974649688, 0.023922663036406326, 0.02631398132884486, 0.02899201057996409, 0.032009104865566185, 0.0354299004204705, 0.039335015930270945, 0.0438261352231843, 0.04903310411457182, 0.055124022110184356, 0.06231988993398266, 0.0709163686245542, 0.08131697161262325, 0.09408527275556608, 0.11003002450179472, 0.13034998080305665, 0.1568933834159038, 0.19265373342597886, 0.24279818972927392, 0.31704793056535446, 0.43610184634209603, 0.6531513780770601, 1.1412967109899583, 2.456290188337867, 4.796871831877082, 0.025771365847682276, 17.20711462516322, 11.63195356938683, 10.215054520781615, 11.631953569386829, 17.207114625163225, 0.025771365847682207, 4.796871831877082, 2.4562901883378676, 1.141296710989958, 0.65315137807706, 0.4361018463420962, 0.31704793056535446, 0.24279818972927406, 0.19265373342597858, 0.15689338341590342, 0.13034998080305704, 0.11003002450179496, 0.09408527275556637, 0.08131697161262276, 0.07091636862455462, 0.06231988993398286, 0.05512402211018477, 0.049033104114572505, 0.043826135223183335, 0.039335015930271916, 0.03542990042047067, 0.03200910486556576, 0.028992010579962993, 0.026313981328844535, 0.02392266303640797, 0.021775249746496753, 0.019836436159156687, 0.018076865345246395, 0.01647193847869647, 0.015000892537536111, 0.013646078623044526, 0.012392392046168918, 0.011226818325538401, 0.010138068487594826, 0.009116283713877215, 0.008152794222885344, 0.007239920831724684, 0.006370810281483396, 0.005539297381428667, 0.004739788512720655, 0.003967162155412189, 0.003216682957537644, 0.0024839265159379256, 0.0017647125330329404, 0.0010550443879008547, 0.0003510534373430706], [0.00023214389773317673, 0.0006976779726135015, 0.0011669674084660373, 0.0016425712676058559, 0.002127133306677947, 0.0026234188394147506, 0.0031343547317290604, 0.003663073644545123, 0.004212963823878915, 0.004787725985489187, 0.005391439169132423, 0.006028637869523945, 0.006704403317132122, 0.00742447252786865, 0.008195369724911259, 0.00902456604467087, 0.009920675188921434, 0.010893695047092167, 0.011955308526568854, 0.013119261248629156, 0.014401839907964746, 0.015822483729765684, 0.017404573753693676, 0.01917646242871525, 0.021172832022002628, 0.023436509109879686, 0.02602092121371012, 0.028993472597270267, 0.03244026004544418, 0.036472782393689764, 0.04123768533441189, 0.046931248572791684, 0.05382150534933933, 0.06228307307773993, 0.07285401732596536, 0.0863327654141097, 0.10395211935506256, 0.12771261911427073, 0.16107644096193482, 0.21058058029325374, 0.29021279295169805, 0.4361018463420956, 0.7647849686828418, 1.6241856427693702, 2.9575834029084636, 0.3490904878525402, 9.297142448078771, 5.759543120516017, 5.5129267314382, 5.759543120516017, 9.29714244807877, 0.34909048785254015, 2.9575834029084636, 1.62418564276937, 0.7647849686828417, 0.4361018463420956, 0.290212792951698, 0.21058058029325372, 0.16107644096193494, 0.12771261911427076, 0.10395211935506272, 0.08633276541410959, 0.07285401732596561, 0.06228307307773994, 0.05382150534933931, 0.04693124857279126, 0.041237685334412064, 0.03647278239369006, 0.03244026004544465, 0.02899347259727033, 0.02602092121371024, 0.023436509109879506, 0.021172832022002534, 0.01917646242871542, 0.017404573753693437, 0.01582248372976597, 0.014401839907964632, 0.013119261248629017, 0.011955308526568781, 0.010893695047091695, 0.00992067518892171, 0.009024566044671107, 0.00819536972491118, 0.007424472527869335, 0.006704403317132322, 0.006028637869524393, 0.0053914391691319815, 0.00478772598548839, 0.004212963823879096, 0.003663073644544889, 0.003134354731728926, 0.002623418839414949, 0.0021271333066785795, 0.0016425712676054222, 0.0011669674084665111, 0.0006976779726133287, 0.00023214389773271903], [0.0001677476822606786, 0.0005041438189124663, 0.0008432542180395504, 0.0011869285068220848, 0.0015370775482023314, 0.001895700094229159, 0.002264911705479527, 0.002646976742996143, 0.0030443443732968856, 0.003459689705721957, 0.0038959614192554323, 0.004356437547974392, 0.004844791505071131, 0.005365170964434207, 0.005922292932615714, 0.0065215592908311765, 0.007169198355358908, 0.007872439715000366, 0.008639731933760967, 0.009481015909537817, 0.010408071131285964, 0.011434958337732634, 0.012578590998666555, 0.013859480918692792, 0.015302722144044921, 0.01693930549233989, 0.018807898719018907, 0.020957293409776458, 0.023449824206804235, 0.026366235381613163, 0.029812751925074828, 0.033931596969896595, 0.038917059478411835, 0.04504081278088955, 0.05269328356341194, 0.06245422843769753, 0.0752196146521406, 0.09244506379251022, 0.11665354845766912, 0.1526184300587136, 0.21058058029325555, 0.31704793056535546, 0.556859995398891, 1.1714405028630541, 2.0491706671705505, 0.36629396613186854, 6.107182619139036, 3.6244916243894565, 3.616863528142248, 3.6244916243894565, 6.107182619139036, 0.36629396613186843, 2.0491706671705505, 1.1714405028630541, 0.556859995398891, 0.31704793056535546, 0.21058058029325555, 0.1526184300587136, 0.11665354845766922, 0.09244506379251023, 0.07521961465214055, 0.0624542284376975, 0.05269328356341199, 0.045040812780889665, 0.038917059478411745, 0.03393159696989646, 0.029812751925075136, 0.026366235381613253, 0.023449824206804363, 0.02095729340977627, 0.018807898719018976, 0.016939305492339646, 0.015302722144045051, 0.013859480918692603, 0.012578590998666513, 0.011434958337732875, 0.010408071131286067, 0.00948101590953785, 0.008639731933760718, 0.00787243971500016, 0.007169198355359066, 0.006521559290831462, 0.005922292932615453, 0.005365170964433962, 0.0048447915050712715, 0.004356437547974598, 0.003895961419254986, 0.0034596897057220374, 0.0030443443732964216, 0.0026469767429964743, 0.0022649117054797394, 0.0018957000942295226, 0.0015370775482027538, 0.001186928506821961, 0.0008432542180399043, 0.0005041438189122661, 0.00016774768226064324], [0.0001279703378741581, 0.0003845982953715179, 0.0006432972148570503, 0.0009054783549977319, 0.0011725997075928704, 0.0014461863392159836, 0.001727852462495301, 0.0020193258532534824, 0.002322475331247811, 0.002639342159326342, 0.0029721763971189423, 0.0033234794841883355, 0.003696054640446725, 0.004093067084836807, 0.004518116616982828, 0.004975325831533059, 0.005469448203021763, 0.006006001586916505, 0.006591434462633889, 0.00723333469214566, 0.007940693970953493, 0.008724245935259674, 0.009596902708105906, 0.010574324517571291, 0.011675671463691544, 0.01292460804059489, 0.014350663695594233, 0.015991103289709915, 0.01789354136063665, 0.020119663858827873, 0.02275063725293875, 0.025895156465508006, 0.029701744401506643, 0.03437814129567522, 0.040223002287069966, 0.04768000836254303, 0.05743522017205388, 0.0706040443626864, 0.08912159488774062, 0.11665354845766426, 0.1610764409619368, 0.24279818972927053, 0.42673086734047405, 0.8915565176617837, 1.52019353431414, 0.32639534399380316, 4.407968587991014, 2.5497281424743403, 2.60865807384244, 2.5497281424743408, 4.407968587991015, 0.32639534399380316, 1.52019353431414, 0.8915565176617837, 0.42673086734047405, 0.2427981897292705, 0.16107644096193677, 0.11665354845766426, 0.08912159488774067, 0.07060404436268636, 0.057435220172054005, 0.047680008362542915, 0.04022300228706997, 0.034378141295675194, 0.02970174440150667, 0.025895156465507975, 0.022750637252938927, 0.020119663858827845, 0.017893541360636766, 0.015991103289709995, 0.01435066369559414, 0.012924608040594738, 0.011675671463691535, 0.010574324517571242, 0.009596902708105802, 0.008724245935259821, 0.007940693970953648, 0.0072333346921456595, 0.006591434462633928, 0.006006001586916567, 0.005469448203021962, 0.004975325831532912, 0.004518116616982869, 0.004093067084836851, 0.0036960546404469943, 0.003323479484188516, 0.0029721763971188846, 0.002639342159325897, 0.0023224753312478833, 0.0020193258532535253, 0.0017278524624952706, 0.001446186339215937, 0.0011725997075930886, 0.0009054783549978335, 0.0006432972148573757, 0.0003845982953714913, 0.00012797033787418816], [0.00010127987763461489, 0.0003043836280998714, 0.0005091265814176841, 0.0007166257774120779, 0.000928035251929188, 0.0011445621403962517, 0.0013674841509888672, 0.001598168895286957, 0.0018380956448502727, 0.0020888801904855162, 0.0023523036250939866, 0.002630346059208391, 0.0029252265276157414, 0.0032394506709873, 0.0035758682090023036, 0.003937742794266198, 0.004328837604659529, 0.004753521067099944, 0.0052168985167915264, 0.005724977535898502, 0.006284877412705314, 0.006905096956630289, 0.007595860310341905, 0.008369568209318048, 0.009241393592308755, 0.010230077539846125, 0.011359007435151265, 0.012657699369748818, 0.01416387032355379, 0.015926388642156154, 0.018009562989674762, 0.020499525017997726, 0.023513986318076135, 0.027217624085063136, 0.03184724229277304, 0.037754742387704994, 0.045484473408494236, 0.05592187334460723, 0.07060404436268329, 0.09244506379251198, 0.12771261911427026, 0.19265373342598008, 0.3386958855680565, 0.7040544047852036, 1.1797284441264921, 0.2811127469764545, 3.365782368794883, 1.9141368987099725, 1.9910327356445559, 1.9141368987099723, 3.365782368794883, 0.28111274697645444, 1.1797284441264921, 0.7040544047852038, 0.3386958855680565, 0.19265373342598016, 0.12771261911427043, 0.09244506379251204, 0.07060404436268326, 0.05592187334460731, 0.04548447340849425, 0.03775474238770495, 0.031847242292773074, 0.027217624085063005, 0.023513986318075997, 0.02049952501799754, 0.018009562989674873, 0.015926388642156272, 0.014163870323553773, 0.012657699369748738, 0.011359007435151437, 0.010230077539846017, 0.009241393592308633, 0.008369568209318059, 0.007595860310342011, 0.00690509695663015, 0.006284877412705274, 0.005724977535898652, 0.005216898516791399, 0.004753521067100056, 0.004328837604659668, 0.003937742794266177, 0.0035758682090023287, 0.0032394506709875256, 0.0029252265276158026, 0.0026303460592083617, 0.002352303625094003, 0.0020888801904853167, 0.001838095644850366, 0.0015981688952870208, 0.001367484150988817, 0.001144562140396535, 0.000928035251929465, 0.0007166257774121365, 0.0005091265814178439, 0.0003043836280999719, 0.00010127987763452429], [8.233079540117355e-05, 0.00024743463600387006, 0.00041387109404018635, 0.0005825482879674203, 0.0007544044162313443, 0.00093042085056606, 0.0011116363430821292, 0.001299162743817771, 0.0014942026910403211, 0.001698069824807336, 0.0019122121910238857, 0.0021382396574257732, 0.0023779563640254115, 0.002633399497176497, 0.0029068860268616895, 0.0032010695137151073, 0.003519009716705956, 0.0038642585754854715, 0.004240967288772036, 0.004654020789057568, 0.005109208108640428, 0.0056134402194944946, 0.0061750313293714824, 0.006804065972385032, 0.007512883555316038, 0.008316725919930741, 0.009234614583529484, 0.010290556994846184, 0.011515232863420124, 0.01294839551230318, 0.014642363049476135, 0.016667214587812076, 0.019118734912990827, 0.022130944970832456, 0.025896598837899056, 0.030702199145337925, 0.03699104962639784, 0.045484473408494576, 0.057435220172056385, 0.07521961465213961, 0.1039521193550623, 0.15689338341590356, 0.27585860324686023, 0.5712445434127326, 0.9453054060539337, 0.24085754499442413, 2.6689412967164143, 1.4998311804422306, 1.5783874953498915, 1.4998311804422308, 2.6689412967164143, 0.24085754499442413, 0.9453054060539337, 0.5712445434127326, 0.27585860324686023, 0.15689338341590356, 0.1039521193550623, 0.07521961465213964, 0.057435220172056496, 0.04548447340849451, 0.0369910496263979, 0.030702199145337877, 0.025896598837899153, 0.022130944970832466, 0.019118734912990775, 0.016667214587812014, 0.01464236304947615, 0.0129483955123032, 0.011515232863420117, 0.010290556994846121, 0.009234614583529458, 0.008316725919930532, 0.0075128835553161435, 0.0068040659723849935, 0.006175031329371453, 0.005613440219494592, 0.005109208108640341, 0.004654020789057633, 0.004240967288772067, 0.0038642585754852425, 0.0035190097167061706, 0.003201069513715119, 0.002906886026861732, 0.0026333994971765385, 0.0023779563640255546, 0.0021382396574258643, 0.0019122121910238779, 0.001698069824807233, 0.0014942026910404606, 0.0012991627438178077, 0.0011116363430820082, 0.0009304208505660549, 0.0007544044162310903, 0.0005825482879674368, 0.0004138710940404323, 0.0002474346360037048, 8.233079540086856e-05], [6.831102189028634e-05, 0.00020530002760768714, 0.00034339478862151896, 0.0004833488284787691, 0.0006259406320662986, 0.0007719845110042039, 0.000922342393348634, 0.001077936866839373, 0.0012397658595113142, 0.0014089194143889728, 0.0015865991123266338, 0.0017741408243595505, 0.0019730416428842897, 0.002184992061188965, 0.002411914762788669, 0.0026560117687401083, 0.0029198222104601652, 0.003206293694426804, 0.0035188711789053266, 0.003861608592839787, 0.004239310250213366, 0.004657711676254686, 0.005123713116498667, 0.005645684277397935, 0.006233866590914476, 0.006900910839760553, 0.007662605509336451, 0.008538878376650006, 0.009555196819837587, 0.010744562040266767, 0.012150408610467296, 0.013830920606852641, 0.015865631539315413, 0.018365835478907452, 0.021491620331089575, 0.02548097244553313, 0.030702199145336707, 0.03775474238770602, 0.04768000836253871, 0.062454228437702645, 0.08633276541410488, 0.13034998080306232, 0.2291959787601094, 0.47321671770790685, 0.7758457358849662, 0.20706643503183478, 2.174836092636232, 1.2114873390328378, 1.2859458305849378, 1.211487339032838, 2.1748360926362316, 0.20706643503183472, 0.7758457358849661, 0.47321671770790685, 0.22919597876010941, 0.13034998080306234, 0.0863327654141049, 0.06245422843770267, 0.047680008362538724, 0.03775474238770607, 0.0307021991453368, 0.025480972445533143, 0.021491620331089666, 0.018365835478907484, 0.01586563153931534, 0.013830920606852593, 0.01215040861046727, 0.010744562040266827, 0.009555196819837646, 0.008538878376649947, 0.007662605509336398, 0.006900910839760541, 0.0062338665909143455, 0.005645684277397857, 0.005123713116498632, 0.004657711676254742, 0.00423931025021331, 0.003861608592839944, 0.0035188711789053534, 0.003206293694426658, 0.002919822210460204, 0.0026560117687401815, 0.0024119147627887885, 0.0021849920611889885, 0.001973041642884351, 0.001774140824359563, 0.0015865991123265896, 0.0014089194143889457, 0.0012397658595113207, 0.0010779368668395028, 0.0009223423933485907, 0.0007719845110043517, 0.0006259406320664352, 0.00048334882847883825, 0.0003433947886215283, 0.00020530002760744433, 6.831102189022843e-05], [5.760413605537151e-05, 0.00017312186708648916, 0.00028957208151452434, 0.0004075902266307217, 0.0005278328009736825, 0.0006509865178321983, 0.0007777782481925135, 0.0009089860211838782, 0.0010454514052968447, 0.0011880936560695937, 0.0013379260971674708, 0.001496075309962912, 0.0016638038476533043, 0.0018425373765228435, 0.0020338973922535953, 0.0022397409866124793, 0.002462209576688007, 0.002703789099763638, 0.0029673849804190814, 0.0032564162826853944, 0.0035749349975745617, 0.003927778579792997, 0.004320766930422931, 0.004760959476954107, 0.005256994536014871, 0.005819542888104436, 0.0064619222873808745, 0.007200942542568063, 0.00805808707935726, 0.009061195744768703, 0.010246911739493797, 0.01166432431537211, 0.013380539482821332, 0.015489468599435797, 0.01812620903738746, 0.02149162033108889, 0.0258965988378971, 0.03184724229277558, 0.040223002287071485, 0.05269328356341017, 0.07285401732596457, 0.11003002450179453, 0.19346588337584586, 0.3985177057993268, 0.6487436716923269, 0.17909583810681343, 1.8091806806013924, 1.0011014225299604, 1.0696050442067397, 1.0011014225299604, 1.8091806806013926, 0.1790958381068134, 0.648743671692327, 0.3985177057993268, 0.19346588337584586, 0.11003002450179451, 0.07285401732596457, 0.05269328356341019, 0.04022300228707153, 0.031847242292775545, 0.025896598837897113, 0.021491620331088934, 0.018126209037387476, 0.015489468599435762, 0.013380539482821354, 0.011664324315372107, 0.010246911739493878, 0.009061195744768828, 0.00805808707935733, 0.007200942542567956, 0.006461922287380904, 0.005819542888104376, 0.00525699453601476, 0.004760959476954, 0.004320766930422836, 0.003927778579793047, 0.003574934997574526, 0.0032564162826854578, 0.002967384980419118, 0.002703789099763569, 0.0024622095766878766, 0.0022397409866125634, 0.0020338973922537093, 0.001842537376522878, 0.0016638038476533281, 0.0014960753099629344, 0.00133792609716736, 0.0011880936560695447, 0.001045451405296829, 0.0009089860211838125, 0.0007777782481926247, 0.0006509865178323909, 0.0005278328009736494, 0.0004075902266306264, 0.0002895720815146033, 0.00017312186708643755, 5.760413605537989e-05], [4.9218062598454004e-05, 0.00014791860442220562, 0.0002474159053230059, 0.0003482529228493159, 0.00045099060275104153, 0.0005562157090333591, 0.0006645493203145784, 0.0007766562296994208, 0.0008932555247630298, 0.0010151326769244596, 0.0011431535395797065, 0.0012782807461785956, 0.0014215931204379698, 0.0015743088698693844, 0.0017378135438704684, 0.0019136940170374555, 0.0021037801323012793, 0.0023101961429238616, 0.0025354247797043884, 0.0027823877151591414, 0.00305454751054097, 0.0033560379813369384, 0.003691832552091364, 0.0040679639796607665, 0.0044918144103196994, 0.004972503066643991, 0.005521411508925105, 0.0061529060081933745, 0.006885347586231364, 0.007742530605230751, 0.008755774711116144, 0.009967039270958728, 0.011433686587829523, 0.013235997231321767, 0.015489468599435653, 0.01836583547890804, 0.022130944970835106, 0.027217624085061398, 0.0343781412956726, 0.04504081278088773, 0.06228307307774007, 0.09408527275556743, 0.16542609803034766, 0.3401248375243945, 0.5506061095848747, 0.15593752458282692, 1.5295948997616613, 0.8420030883123678, 0.904229059232012, 0.8420030883123679, 1.529594899761661, 0.15593752458282692, 0.5506061095848747, 0.3401248375243945, 0.16542609803034763, 0.09408527275556741, 0.06228307307774009, 0.04504081278088774, 0.034378141295672675, 0.027217624085061388, 0.022130944970835134, 0.018365835478908025, 0.015489468599435683, 0.013235997231321824, 0.011433686587829476, 0.009967039270958638, 0.008755774711116151, 0.007742530605230736, 0.006885347586231449, 0.006152906008193355, 0.005521411508925184, 0.004972503066643971, 0.004491814410319593, 0.004067963979660711, 0.0036918325520913647, 0.0033560379813370195, 0.00305454751054097, 0.0027823877151591874, 0.002535424779704495, 0.0023101961429238408, 0.002103780132301429, 0.0019136940170374518, 0.0017378135438704916, 0.0015743088698694395, 0.0014215931204379978, 0.0012782807461785592, 0.0011431535395795658, 0.0010151326769244438, 0.0008932555247630136, 0.0007766562296993314, 0.0006645493203145601, 0.0005562157090333336, 0.00045099060275096396, 0.00034825292284929114, 0.000247415905323049, 0.00014791860442223004, 4.9218062598270706e-05], [4.251231484747891e-05, 0.00012776534185732487, 0.00021370659202621262, 0.00030080506071853097, 0.00038954528170655076, 0.0004804340909610504, 0.0005740079659948446, 0.0006708411456784101, 0.0007715547695256086, 0.0008768273209757654, 0.0009874067195049083, 0.001104124486053801, 0.0012279125106473502, 0.001359823088331459, 0.0015010530712444286, 0.0016529732260827093, 0.0018171642088627064, 0.0019954610053817294, 0.0021900082791475074, 0.002403329885642745, 0.0026384169470495726, 0.002898840480409021, 0.003188896848581433, 0.00351379759503362, 0.003879920050282578, 0.004295142297407026, 0.004769297015681649, 0.00531479565392829, 0.005947501195303684, 0.0066879712761993585, 0.0075632659646964525, 0.008609639280856807, 0.009876655853699994, 0.011433686587829462, 0.013380539482821703, 0.015865631539310757, 0.019118734912988378, 0.023513986318079726, 0.02970174440150854, 0.038917059478413604, 0.05382150534934037, 0.08131697161262055, 0.1429714632966498, 0.29351210054144233, 0.473032946758058, 0.1366571209636971, 1.3102114980406137, 0.7182564419567811, 0.7744868518872593, 0.7182564419567808, 1.3102114980406137, 0.13665712096369706, 0.473032946758058, 0.2935121005414424, 0.14297146329664978, 0.08131697161262058, 0.05382150534934035, 0.03891705947841358, 0.029701744401508526, 0.023513986318079737, 0.0191187349129884, 0.015865631539310775, 0.013380539482821719, 0.011433686587829468, 0.009876655853699989, 0.008609639280856781, 0.007563265964696498, 0.006687971276199366, 0.005947501195303712, 0.005314795653928258, 0.004769297015681673, 0.004295142297406989, 0.003879920050282479, 0.0035137975950335636, 0.003188896848581463, 0.0028988404804090756, 0.0026384169470495696, 0.002403329885642808, 0.0021900082791474975, 0.0019954610053816726, 0.0018171642088628652, 0.0016529732260825946, 0.0015010530712444117, 0.0013598230883314676, 0.0012279125106473253, 0.001104124486053833, 0.0009874067195048775, 0.0008768273209757275, 0.0007715547695255323, 0.0006708411456783661, 0.00057400796599489, 0.00048043409096109344, 0.0003895452817065363, 0.0003008050607184667, 0.00021370659202629862, 0.00012776534185737946, 4.251231484753852e-05], [3.705635257737102e-05, 0.00011136814736503586, 0.0001862798533589041, 0.00026220028529928005, 0.0003395518028961428, 0.00041877620700099587, 0.0005003411372642094, 0.0005847471505258737, 0.0006725356875947866, 0.0007642981770478174, 0.0008606865762144268, 0.0009624257198546908, 0.0010703279370605702, 0.0011853105176322328, 0.0013084167667790968, 0.001440841597766451, 0.0015839628935883719, 0.0017393802491324933, 0.0019089632226184411, 0.002094911937624958, 0.0022998338669976966, 0.0025268420236449884, 0.0027796817685324104, 0.0030628963161965683, 0.003382045227116079, 0.0037439964546524666, 0.004157322046888647, 0.004632842370579198, 0.005184387106204445, 0.005829879202288236, 0.006592911250199192, 0.00750509257693506, 0.008609639280857843, 0.009967039270958626, 0.011664324315374893, 0.013830920606854652, 0.016667214587812774, 0.02049952501799433, 0.025895156465508173, 0.03393159696989622, 0.046931248572792815, 0.07091636862455404, 0.12468074063022394, 0.25564323706152886, 0.41051125729836013, 0.12048468358531063, 1.1343950198800505, 0.6197897984728529, 0.6705242674259496, 0.6197897984728529, 1.1343950198800505, 0.12048468358531061, 0.4105112572983601, 0.25564323706152886, 0.12468074063022393, 0.07091636862455404, 0.046931248572792815, 0.03393159696989623, 0.02589515646550817, 0.020499525017994315, 0.016667214587812798, 0.013830920606854652, 0.011664324315374909, 0.009967039270958647, 0.00860963928085781, 0.00750509257693508, 0.006592911250199143, 0.005829879202288281, 0.005184387106204522, 0.004632842370579198, 0.004157322046888711, 0.003743996454652376, 0.0033820452271160206, 0.003062896316196587, 0.002779681768532421, 0.0025268420236450313, 0.002299833866997667, 0.0020949119376250094, 0.001908963222618415, 0.0017393802491324794, 0.0015839628935884961, 0.0014408415977664837, 0.0013084167667790348, 0.0011853105176321778, 0.0010703279370606164, 0.0009624257198546802, 0.0008606865762143828, 0.0007642981770477626, 0.0006725356875947203, 0.0005847471505258313, 0.0005003411372642245, 0.00041877620700097223, 0.0003395518028961127, 0.00026220028529932337, 0.00018627985335901306, 0.00011136814736507649, 3.7056352577280176e-05], [3.2551031663675006e-05, 9.782798248996221e-05, 0.000163631916925978, 0.00023032195277818813, 0.0002982691065825955, 0.0003678614731158609, 0.0004395098456121126, 0.0005136539337665882, 0.0005907693624734782, 0.0006713756691426312, 0.0007560455638549473, 0.0008454157773228906, 0.0009401999017884616, 0.0010412037349970126, 0.0011493437767363252, 0.0012656697119967015, 0.0013913919625398975, 0.0015279157223707007, 0.0016768833477081725, 0.0018402275976251838, 0.0020202390916147454, 0.002219652574662682, 0.0024417583253128305, 0.0026905475633984236, 0.0029709044130701943, 0.003288862493406376, 0.0036519525857685556, 0.004069680803781964, 0.004554197239370642, 0.005121248401154018, 0.005791562369412549, 0.006592911250196796, 0.007563265964697829, 0.008755774711116814, 0.010246911739494253, 0.012150408610464455, 0.014642363049475473, 0.01800956298967708, 0.02275063725293981, 0.029812751925075043, 0.041237685334410634, 0.06231988993398503, 0.10956312434764426, 0.22441300752518836, 0.3592866194241581, 0.10680959324159592, 0.9909913631460913, 0.5399469232275664, 0.5857368220463958, 0.5399469232275664, 0.9909913631460913, 0.10680959324159592, 0.35928661942415807, 0.22441300752518833, 0.10956312434764424, 0.06231988993398504, 0.04123768533441065, 0.029812751925075036, 0.02275063725293981, 0.01800956298967707, 0.014642363049475466, 0.012150408610464477, 0.010246911739494284, 0.008755774711116812, 0.007563265964697814, 0.0065929112501967755, 0.005791562369412543, 0.005121248401154062, 0.004554197239370676, 0.004069680803781969, 0.0036519525857685456, 0.003288862493406429, 0.00297090441307011, 0.002690547563398421, 0.0024417583253127768, 0.002219652574662708, 0.0020202390916147345, 0.0018402275976252068, 0.001676883347708181, 0.0015279157223705736, 0.0013913919625399944, 0.0012656697119966703, 0.0011493437767363425, 0.0010412037349970711, 0.0009401999017885123, 0.0008454157773229572, 0.0007560455638548817, 0.0006713756691426113, 0.0005907693624734488, 0.0005136539337666314, 0.0004395098456120352, 0.0003678614731158407, 0.0002982691065825584, 0.00023032195277819737, 0.00016363191692600102, 9.782798248997922e-05, 3.2551031663675344e-05], [2.878267649394172e-05, 8.650267302347004e-05, 0.0001446886527278744, 0.0002036581642723429, 0.0002637392779509485, 0.0003252751657874302, 0.00038862907131366356, 0.0004541898080190466, 0.0005223779480607999, 0.0005936528942627022, 0.0006685210685541549, 0.0007475455048023405, 0.0008313572037384907, 0.0009206687016262923, 0.001016290426671317, 0.0011191505809120532, 0.00123031950422464, 0.0013510397723969082, 0.001482763683209774, 0.0016272003385086903, 0.0017863752989847384, 0.0019627068717138004, 0.0021591046335514338, 0.0023790980233714173, 0.0026270061078121627, 0.0029081645043544727, 0.0032292328555416304, 0.003598617725273944, 0.004027063964962879, 0.004528497090219352, 0.005121248401149652, 0.005829879202293456, 0.006687971276199532, 0.007742530605230346, 0.009061195744768281, 0.010744562040271202, 0.012948395512304789, 0.015926388642156102, 0.020119663858825382, 0.026366235381612858, 0.03647278239369026, 0.05512402211018402, 0.09690901826025848, 0.19832068553823778, 0.3167222919726438, 0.09515317350044956, 0.8722621297010252, 0.47416560089241583, 0.5155439901717884, 0.4741656008924158, 0.8722621297010252, 0.09515317350044959, 0.3167222919726438, 0.19832068553823778, 0.09690901826025851, 0.05512402211018402, 0.036472782393690284, 0.026366235381612847, 0.0201196638588254, 0.0159263886421561, 0.01294839551230481, 0.01074456204027121, 0.009061195744768333, 0.007742530605230326, 0.006687971276199494, 0.005829879202293461, 0.005121248401149682, 0.004528497090219414, 0.004027063964962906, 0.0035986177252738958, 0.003229232855541641, 0.0029081645043544514, 0.00262700610781212, 0.0023790980233714303, 0.0021591046335514485, 0.001962706871713834, 0.0017863752989847102, 0.0016272003385087153, 0.0014827636832096952, 0.0013510397723967697, 0.0012303195042246843, 0.0011191505809120866, 0.0010162904266713083, 0.0009206687016263302, 0.0008313572037385089, 0.0007475455048023866, 0.000668521068554088, 0.0005936528942626209, 0.0005223779480607962, 0.0004541898080190841, 0.0003886290713136517, 0.0003252751657874762, 0.00026373927795084477, 0.00020365816427230592, 0.000144688652727966, 8.650267302354368e-05, 2.8782676493950152e-05], [2.559503017944891e-05, 7.692260927647897e-05, 0.0001286645698830454, 0.00018110329631556446, 0.0002345305295731608, 0.00028925144034342717, 0.0003455890485035873, 0.0004038891128392961, 0.0004645256346257762, 0.000527907146557754, 0.0005944839948580952, 0.0006647568699648643, 0.0007392869045815386, 0.0008187077402856925, 0.0009037400733595534, 0.0009952093359645515, 0.0010940673634578053, 0.001201419161053186, 0.0013185562412031627, 0.0014469984949544862, 0.0015885472450442829, 0.0017453530915696653, 0.0019200035335587213, 0.0021156373333091555, 0.002336095500052944, 0.0025861231096864982, 0.00287164276788967, 0.003200130733544895, 0.0035811428871440837, 0.0040270639649650575, 0.004554197239371965, 0.005184387106202574, 0.005947501195305587, 0.006885347586230702, 0.008058087079357722, 0.009555196819834032, 0.01151523286341936, 0.01416387032355403, 0.017893541360640003, 0.023449824206805806, 0.03244026004544483, 0.04903310411457284, 0.08619840599712356, 0.17627089138670465, 0.2809176617985772, 0.08514041111701902, 0.7726836411811783, 0.4192226721490832, 0.45667701736200905, 0.41922267214908326, 0.7726836411811783, 0.08514041111701902, 0.28091766179857713, 0.17627089138670463, 0.08619840599712354, 0.04903310411457285, 0.03244026004544484, 0.023449824206805813, 0.01789354136064, 0.01416387032355403, 0.011515232863419362, 0.009555196819834043, 0.008058087079357719, 0.006885347586230723, 0.0059475011953055755, 0.0051843871062025836, 0.0045541972393719635, 0.004027063964965074, 0.0035811428871440855, 0.0032001307335448705, 0.0028716427678897117, 0.002586123109686477, 0.0023360955000529394, 0.0021156373333091724, 0.0019200035335587237, 0.0017453530915696885, 0.0015885472450442985, 0.0014469984949545096, 0.0013185562412031573, 0.0012014191610532018, 0.001094067363457879, 0.0009952093359644851, 0.0009037400733595801, 0.000818707740285692, 0.0007392869045815433, 0.000664756869964844, 0.0005944839948580716, 0.0005279071465577453, 0.00046452563462579015, 0.00040388911283925877, 0.0003455890485035553, 0.00028925144034350593, 0.00023453052957321863, 0.000181103296315566, 0.00012866456988308415, 7.69226092765418e-05, 2.5595030179317505e-05], [2.28714850299164e-05, 6.873734191211997e-05, 0.00011497349042955086, 0.0001618322694900641, 0.00020957437930909119, 0.00025847252104303265, 0.0003088153462310684, 0.00036091182623881776, 0.00041509617045258374, 0.0004717334462350497, 0.0005312260862986931, 0.0005940215121234154, 0.0006606211577775109, 0.0007315912531265234, 0.0008075758225033269, 0.0008893124853424694, 0.0009776518190596434, 0.0010735812790139121, 0.001178254990625565, 0.001293031167886738, 0.0014195195250152766, 0.001559641907881786, 0.0017157105991209372, 0.0018905305233157795, 0.0020875341792409847, 0.0023109620054938195, 0.00256610677594783, 0.0028596497476239954, 0.003200130733544047, 0.003598617725274629, 0.004069680803780513, 0.004632842370580124, 0.005314795653927631, 0.00615290600819149, 0.007200942542567398, 0.008538878376654587, 0.010290556994848423, 0.012657699369749222, 0.015991103289706533, 0.020957293409772704, 0.02899347259726922, 0.04382613522318303, 0.07704255046134713, 0.15744761618608674, 0.25047181182467526, 0.0764762311713953, 0.6882167554275925, 0.3727819139532218, 0.4067461403489528, 0.37278191395322174, 0.6882167554275925, 0.07647623117139529, 0.2504718118246752, 0.15744761618608677, 0.07704255046134713, 0.04382613522318302, 0.028993472597269237, 0.020957293409772704, 0.015991103289706533, 0.012657699369749226, 0.010290556994848413, 0.008538878376654575, 0.007200942542567405, 0.006152906008191506, 0.0053147956539276574, 0.004632842370580098, 0.004069680803780511, 0.0035986177252746348, 0.0032001307335440773, 0.002859649747623999, 0.002566106775947861, 0.0023109620054937836, 0.002087534179241013, 0.0018905305233157335, 0.001715710599120931, 0.0015596419078817904, 0.0014195195250152187, 0.0012930311678867436, 0.0011782549906255398, 0.0010735812790139817, 0.000977651819059654, 0.0008893124853424452, 0.0008075758225033409, 0.0007315912531265953, 0.000660621157777543, 0.0005940215121234403, 0.0005312260862986366, 0.00047173344623505434, 0.0004150961704525825, 0.00036091182623882096, 0.0003088153462310407, 0.00025847252104308746, 0.00020957437930914507, 0.00016183226949008118, 0.00011497349042951708, 6.873734191207351e-05, 2.2871485029907353e-05], [2.0523468389412186e-05, 6.168067732120014e-05, 0.00010317016640640382, 0.00014521837132906715, 0.0001880592308691695, 0.0002319374529751112, 0.00027711205883345903, 0.0003238603038708676, 0.0003724820911412468, 0.00042330501450509305, 0.00047669019819062607, 0.0005330391377284598, 0.0005928017978250629, 0.0006564862888237785, 0.0007246705315214735, 0.0007980164363841565, 0.0008772872794480604, 0.0009633691678512449, 0.0010572977749864411, 0.0011602919197838907, 0.0012737961138669747, 0.0013995349725300897, 0.001539583486523828, 0.0016964587425108682, 0.0018732410143880358, 0.002073735628595447, 0.002302692293878467, 0.002566106775945743, 0.0028716427678922075, 0.0032292328555391567, 0.0036519525857705718, 0.004157322046889035, 0.004769297015682708, 0.00552141150892793, 0.006461922287380471, 0.007662605509334562, 0.00923461458352598, 0.011359007435153232, 0.014350663695595204, 0.018807898719020676, 0.026020921213710045, 0.03933501593027203, 0.06914575388448578, 0.14123202656596384, 0.2243319456845223, 0.06892691988425158, 0.6158459241661742, 0.3331123637673246, 0.3639674996612197, 0.33311236376732456, 0.6158459241661741, 0.06892691988425158, 0.22433194568452228, 0.14123202656596384, 0.06914575388448577, 0.03933501593027202, 0.02602092121371005, 0.018807898719020683, 0.014350663695595218, 0.011359007435153242, 0.009234614583526004, 0.007662605509334536, 0.006461922287380485, 0.005521411508927938, 0.004769297015682663, 0.004157322046889033, 0.003651952585770564, 0.0032292328555391697, 0.0028716427678922114, 0.002566106775945729, 0.002302692293878464, 0.0020737356285954337, 0.0018732410143880432, 0.0016964587425108493, 0.0015395834865238223, 0.001399534972530126, 0.0012737961138669376, 0.0011602919197838983, 0.0010572977749864444, 0.000963369167851168, 0.0008772872794481082, 0.0007980164363841501, 0.0007246705315214697, 0.0006564862888237299, 0.0005928017978250609, 0.0005330391377284694, 0.00047669019819055326, 0.00042330501450509077, 0.0003724820911412298, 0.00032386030387088373, 0.00027711205883344505, 0.00023193745297515856, 0.0001880592308691607, 0.0001452183713290933, 0.00010317016640643104, 6.168067732121527e-05, 2.0523468389427883e-05], [1.8482644279657985e-05, 5.5547240507256704e-05, 9.291107787533313e-05, 0.000130778077349033, 0.0001693589170351325, 0.00020887397353158842, 0.00024955651364517154, 0.00029165622562978607, 0.0003354431937453785, 0.0003812124401478376, 0.0004292891838312127, 0.00048003500162193953, 0.0005338551209491787, 0.0005912071344969097, 0.0006526115054392393, 0.000718664337250159, 0.0007900530224187934, 0.000867575574488382, 0.0009521647058546503, 0.0010449180696768165, 0.001147136578433464, 0.0012603734074957738, 0.0013864972834524197, 0.0015277750902506291, 0.0016869809280056196, 0.0018675418954627182, 0.002073735628594038, 0.002310962005495173, 0.002586123109685802, 0.0029081645043539275, 0.0032888624934060504, 0.003743996454651976, 0.0042951422974061414, 0.004972503066641012, 0.0058195428881054004, 0.006900910839762828, 0.008316725919932245, 0.010230077539844123, 0.012924608040592374, 0.016939305492335792, 0.0234365091098791, 0.03542990042046967, 0.0622796060257917, 0.12714737084966793, 0.20169332033436252, 0.06230595634337268, 0.5532787359410508, 0.29890682095356985, 0.3269851929190581, 0.29890682095356985, 0.5532787359410508, 0.062305956343372666, 0.2016933203343625, 0.12714737084966793, 0.062279606025791696, 0.035429900420469666, 0.023436509109879117, 0.016939305492335775, 0.0129246080405924, 0.010230077539844102, 0.008316725919932247, 0.006900910839762806, 0.005819542888105428, 0.004972503066641019, 0.004295142297406156, 0.0037439964546519726, 0.0032888624934060643, 0.0029081645043539366, 0.00258612310968585, 0.0023109620054951713, 0.0020737356285940754, 0.001867541895462701, 0.0016869809280056175, 0.0015277750902505621, 0.001386497283452423, 0.001260373407495808, 0.0011471365784334103, 0.0010449180696768517, 0.0009521647058546417, 0.0008675755744882998, 0.0007900530224187854, 0.00071866433725015, 0.0006526115054392362, 0.0005912071344968842, 0.0005338551209491989, 0.00048003500162192495, 0.0004292891838311637, 0.00038121244014781, 0.0003354431937453227, 0.000291656225629814, 0.0002495565136451382, 0.00020887397353160496, 0.00016935891703513255, 0.0001307780773490257, 9.291107787535484e-05, 5.5547240507266204e-05, 1.8482644279671968e-05], [1.669555214565615e-05, 5.0176362624438746e-05, 8.392748245085169e-05, 0.00011813311676782409, 0.0001529835746092096, 0.00018867792589563018, 0.00022542688466102763, 0.0002634559987941305, 0.00030300924053676897, 0.0003443531091523045, 0.00038778138167525685, 0.00043362067816243784, 0.0004822370496574153, 0.0005340438504361579, 0.0005895112277613522, 0.0006491776574282808, 0.0007136640799556789, 0.000783691364087819, 0.0008601020575069368, 0.0009438877059094574, 0.001036223468360003, 0.0011385123850274144, 0.00125244254966905, 0.00138006173328145, 0.001523875904836123, 0.0016869809280071226, 0.0018732410143906715, 0.0020875341792382447, 0.0023360955000547453, 0.0026270061078108742, 0.0029709044130733506, 0.0033820452271142243, 0.003879920050285003, 0.004491814410323295, 0.005256994536013678, 0.006233866590909456, 0.007512883555315378, 0.00924139359230773, 0.011675671463692344, 0.015302722144046243, 0.021172832022003686, 0.032009104865566414, 0.05626523722206015, 0.11482116915735295, 0.18193147176022004, 0.056463301734980965, 0.4987445706109521, 0.2691614499961277, 0.29475206075497695, 0.2691614499961277, 0.4987445706109521, 0.05646330173498097, 0.18193147176022004, 0.11482116915735294, 0.056265237222060165, 0.03200910486556641, 0.0211728320220037, 0.015302722144046236, 0.011675671463692347, 0.009241393592307726, 0.007512883555315399, 0.00623386659090945, 0.0052569945360137005, 0.004491814410323277, 0.0038799200502849995, 0.0033820452271142378, 0.0029709044130733593, 0.0026270061078108834, 0.002336095500054747, 0.002087534179238221, 0.0018732410143906452, 0.0016869809280070998, 0.0015238759048360876, 0.0013800617332814615, 0.00125244254966906, 0.0011385123850274224, 0.0010362234683599662, 0.0009438877059094922, 0.0008601020575069417, 0.0007836913640877932, 0.0007136640799557005, 0.0006491776574282285, 0.0005895112277613742, 0.0005340438504361837, 0.0004822370496574011, 0.0004336206781624289, 0.0003877813816752539, 0.00034435310915223146, 0.00030300924053674745, 0.00026345599879415833, 0.0002254268846610433, 0.00018867792589566572, 0.0001529835746091983, 0.00011813311676786266, 8.392748245091041e-05, 5.0176362624450665e-05, 1.6695552145635127e-05], [1.5119843610751018e-05, 4.544077117722859e-05, 7.600649808773381e-05, 0.00010698384548399373, 0.00013854516235587685, 0.0001708707319296769, 0.0002041513826848993, 0.00023859137722052743, 0.00027441166387908323, 0.00031185359234204066, 0.0003511832160060706, 0.000392696332253066, 0.0004367244487060888, 0.0004836419126991857, 0.0005338745056755975, 0.0005879098903619355, 0.0006463104132174519, 0.0007097289202920074, 0.000778928455925251, 0.0008548070045095286, 0.0009384288402337445, 0.0010310646188977793, 0.0011342431570920725, 0.001249819016789244, 0.0013800617332815001, 0.0015277750902478002, 0.0016964587425115404, 0.0018905305233138804, 0.00211563733330898, 0.002379098023371191, 0.0026905475633966975, 0.0030628963161988695, 0.0035137975950310374, 0.004067963979659857, 0.004760959476955384, 0.005645684277400193, 0.006804065972388649, 0.008369568209316405, 0.010574324517572616, 0.01385948091868981, 0.01917646242871389, 0.02899201057996379, 0.05096083581893113, 0.10395871827194002, 0.16455526749150376, 0.05127730700143942, 0.4508563708117462, 0.24309386682255138, 0.2664478626237958, 0.24309386682255135, 0.4508563708117462, 0.05127730700143943, 0.1645552674915038, 0.10395871827194002, 0.05096083581893112, 0.028992010579963794, 0.019176462428713882, 0.01385948091868982, 0.010574324517572606, 0.00836956820931642, 0.00680406597238864, 0.005645684277400194, 0.004760959476955399, 0.004067963979659856, 0.0035137975950310417, 0.0030628963161988764, 0.0026905475633967183, 0.002379098023371216, 0.0021156373333090016, 0.0018905305233138622, 0.0016964587425115634, 0.0015277750902478082, 0.001380061733281486, 0.0012498190167892487, 0.0011342431570920649, 0.0010310646188978051, 0.0009384288402337417, 0.0008548070045095154, 0.0007789284559252538, 0.0007097289202919834, 0.0006463104132174712, 0.0005879098903619337, 0.0005338745056755732, 0.0004836419126991393, 0.00043672444870612005, 0.0003926963322530678, 0.0003511832160060563, 0.0003118535923420139, 0.00027441166387907233, 0.0002385913772205359, 0.0002041513826848987, 0.00017087073192970776, 0.00013854516235585539, 0.00010698384548398705, 7.600649808773283e-05, 4.544077117722356e-05, 1.5119843610768514e-05], [1.3721591814659932e-05, 4.1238503227295914e-05, 6.897757667044776e-05, 9.7090206834085e-05, 0.00012573280516430554, 0.00015506898367827183, 0.00018527192457437963, 0.0002165270019990598, 0.00024903473301222414, 0.000283014149591975, 0.0003187067032897567, 0.0003563808394411193, 0.00039633741176287187, 0.0004389161526865282, 0.00048450347324409507, 0.0005335419442178002, 0.0005865419151051517, 0.0006440958677868235, 0.0007068962940882736, 0.0007757581503732905, 0.0008516473091793204, 0.0009357169449714992, 0.0010293545270643537, 0.001134243157092239, 0.001252442549669757, 0.0013864972834536997, 0.001539583486523459, 0.0017157105991231535, 0.0019200035335586575, 0.0021591046335506544, 0.0024417583253147678, 0.002779681768531243, 0.0031888968485852026, 0.003691832552090971, 0.004320766930420282, 0.005123713116495337, 0.006175031329370605, 0.007595860310339435, 0.009596902708106822, 0.01257859099866838, 0.017404573753694034, 0.02631398132884519, 0.046252707185058105, 0.09432417701444261, 0.14917372998547507, 0.04664857684233001, 0.40851370209558, 0.22008615164016582, 0.24142190466715283, 0.2200861516401658, 0.40851370209558, 0.046648576842329995, 0.1491737299854751, 0.09432417701444262, 0.0462527071850581, 0.026313981328845194, 0.01740457375369404, 0.012578590998668383, 0.009596902708106834, 0.007595860310339446, 0.0061750313293706185, 0.005123713116495332, 0.004320766930420301, 0.003691832552090966, 0.003188896848585206, 0.002779681768531222, 0.0024417583253147795, 0.002159104633550678, 0.0019200035335586773, 0.0017157105991231357, 0.0015395834865234422, 0.0013864972834536772, 0.0012524425496697599, 0.00113424315709221, 0.0010293545270643374, 0.0009357169449715104, 0.0008516473091793024, 0.0007757581503732956, 0.0007068962940882892, 0.0006440958677868102, 0.0005865419151051689, 0.000533541944217793, 0.00048450347324412044, 0.00043891615268652865, 0.00039633741176288596, 0.00035638083944112154, 0.00031870670328973307, 0.00028301414959196403, 0.0002490347330122225, 0.0002165270019990522, 0.00018527192457437757, 0.00015506898367828711, 0.00012573280516429018, 9.709020683409733e-05, 6.897757667046088e-05, 4.123850322729961e-05, 1.372159181465819e-05], [1.2473335093792758e-05, 3.7487026358188244e-05, 6.270267047572196e-05, 8.825789040786938e-05, 0.0001142948695500353, 0.00014096233689288892, 0.00016841772112847141, 0.00019682953395481063, 0.0002263800525407868, 0.00025726838497453413, 0.0002897140196583783, 0.0003239609834964867, 0.0003602827641088589, 0.0003989881915524197, 0.00044042852887517855, 0.0004850060910051742, 0.0005331848069464431, 0.0005855032680742936, 0.0006425909798999382, 0.0007051887745450342, 0.0007741746750589287, 0.000850596972380143, 0.0009357169449729809, 0.0010310646188975742, 0.0011385123850264779, 0.0012603734074936289, 0.0013995349725294196, 0.0015596419078803027, 0.0017453530915686733, 0.0019627068717151695, 0.0022196525746597936, 0.002526842023645839, 0.0028988404804074774, 0.0033560379813366605, 0.003927778579793424, 0.004657711676257186, 0.0056134402194973525, 0.006905096956630596, 0.00872424593526235, 0.01143495833772873, 0.015822483729765708, 0.023922663036408685, 0.04204876400691346, 0.08572683618829838, 0.13547216933884867, 0.04249529034684161, 0.3708334702357252, 0.1996444113807134, 0.21915204280502956, 0.1996444113807134, 0.3708334702357252, 0.04249529034684161, 0.13547216933884867, 0.08572683618829836, 0.042048764006913444, 0.023922663036408696, 0.015822483729765704, 0.01143495833772873, 0.008724245935262357, 0.006905096956630599, 0.0056134402194973525, 0.004657711676257178, 0.003927778579793426, 0.0033560379813366657, 0.002898840480407474, 0.0025268420236458514, 0.0022196525746597945, 0.001962706871715187, 0.0017453530915686928, 0.0015596419078803079, 0.0013995349725294136, 0.001260373407493631, 0.0011385123850264668, 0.0010310646188975525, 0.0009357169449729718, 0.0008505969723802019, 0.000774174675058928, 0.0007051887745450489, 0.000642590979899927, 0.0005855032680742471, 0.0005331848069464469, 0.0004850060910051777, 0.0004404285288751816, 0.00039898819155238997, 0.0003602827641088663, 0.00032396098349649717, 0.0002897140196583543, 0.0002572683849745386, 0.00022638005254077063, 0.0001968295339547864, 0.0001684177211284842, 0.000140962336892903, 0.00011429486955005077, 8.825789040787591e-05, 6.270267047571643e-05, 3.748702635818243e-05, 1.2473335093802352e-05], [1.1352633512168316e-05, 3.411890017494286e-05, 5.706897544876845e-05, 8.032811772898951e-05, 0.0001040257361283096, 0.00012829719732287894, 0.00015328578612678823, 0.00017914487467419283, 0.00020604036395238353, 0.00023415347380275898, 0.00026368397350054517, 0.0002948539663867113, 0.0003279123699073765, 0.00036314026899958847, 0.0004008573696721914, 0.00044142984368687776, 0.0004852799419822859, 0.0005328978709244216, 0.0005848565842348685, 0.0006418303620049888, 0.0007046183518604457, 0.0007741746750604381, 0.0008516473091783987, 0.0009384288402350329, 0.0010362234683609322, 0.0011471365784341985, 0.0012737961138673, 0.0014195195250150951, 0.0015885472450451225, 0.0017863752989826466, 0.002020239091617431, 0.0022998338669957363, 0.0026384169470510294, 0.00305454751054069, 0.003574934997576487, 0.004239310250211405, 0.005109208108639008, 0.006284877412704707, 0.007940693970951472, 0.010408071131286846, 0.014401839907965275, 0.02177524974649798, 0.03827371623658852, 0.07801100070157284, 0.12319473515022229, 0.03874960803862138, 0.3370995591469596, 0.1813695739481281, 0.19921488602430343, 0.1813695739481281, 0.3370995591469596, 0.03874960803862138, 0.1231947351502223, 0.07801100070157284, 0.03827371623658852, 0.02177524974649798, 0.01440183990796528, 0.010408071131286839, 0.007940693970951469, 0.006284877412704712, 0.00510920810863901, 0.004239310250211419, 0.0035749349975764955, 0.00305454751054069, 0.002638416947051024, 0.002299833866995729, 0.0020202390916174433, 0.0017863752989826529, 0.0015885472450451262, 0.00141951952501509, 0.001273796113867277, 0.0011471365784341842, 0.0010362234683609283, 0.0009384288402350277, 0.0008516473091783911, 0.0007741746750604534, 0.0007046183518604475, 0.0006418303620050028, 0.0005848565842348475, 0.0005328978709243804, 0.00048527994198230496, 0.0004414298436868816, 0.0004008573696721891, 0.00036314026899958554, 0.0003279123699073836, 0.0002948539663867307, 0.0002636839735005327, 0.0002341534738027443, 0.00020604036395236485, 0.00017914487467420403, 0.00015328578612678885, 0.00012829719732287444, 0.00010402573612836219, 8.032811772898892e-05, 5.706897544879897e-05, 3.411890017494217e-05, 1.135263351214471e-05], [1.0340988936676425e-05, 3.107853092926662e-05, 5.1983502771100035e-05, 7.317000142778385e-05, 9.47559046992599e-05, 0.00011686451712957844, 0.00013962635586640837, 0.00016318112661038546, 0.000187679947519431, 0.00021328789075043827, 0.00024018692503836715, 0.0002685793633083468, 0.000298691943359046, 0.0003307807044672343, 0.00036513686587443916, 0.00040209397258545387, 0.00044203665233163964, 0.00048541143370193194, 0.000532740220327753, 0.0005846372146617166, 0.0006418303620054004, 0.0007051887745429857, 0.0007757581503734916, 0.0008548070045096583, 0.0009438877059123931, 0.0010449180696731008, 0.0011602919197878827, 0.001293031167887047, 0.001446998494955559, 0.0016272003385090616, 0.0018402275976244589, 0.002094911937622242, 0.002403329885641881, 0.0027823877151571374, 0.003256416282685164, 0.003861608592843209, 0.004654020789061081, 0.00572497753589716, 0.007233334692145747, 0.00948101590953818, 0.013119261248627515, 0.019836436159155542, 0.03486546886846711, 0.0710484307677167, 0.11213147422138513, 0.03535489282250266, 0.30672565905672594, 0.16493595634224753, 0.18126380635656597, 0.16493595634224753, 0.306725659056726, 0.035354892822502655, 0.11213147422138513, 0.0710484307677167, 0.03486546886846711, 0.019836436159155542, 0.013119261248627513, 0.009481015909538178, 0.0072333346921457445, 0.0057249775358971565, 0.0046540207890610925, 0.0038616085928432097, 0.0032564162826851676, 0.002782387715157135, 0.002403329885641885, 0.002094911937622238, 0.0018402275976244795, 0.0016272003385090627, 0.0014469984949555704, 0.001293031167887047, 0.0011602919197878916, 0.0010449180696730897, 0.0009438877059123912, 0.0008548070045096698, 0.0007757581503734973, 0.0007051887745429903, 0.0006418303620053852, 0.0005846372146617317, 0.0005327402203277317, 0.00048541143370191975, 0.0004420366523316469, 0.00040209397258545836, 0.0003651368658744325, 0.00033078070446721224, 0.00029869194335903706, 0.0002685793633083442, 0.000240186925038361, 0.00021328789075043372, 0.00018767994751940742, 0.0001631811266103921, 0.00013962635586641157, 0.00011686451712957657, 9.475590469924997e-05, 7.317000142779745e-05, 5.1983502771116224e-05, 3.107853092926365e-05, 1.0340988936664566e-05], [9.423027156184739e-06, 2.8319713344794053e-05, 4.736896728765889e-05, 6.66747579860279e-05, 8.634449969096977e-05, 0.00010649055173264265, 0.0001272318458516086, 0.00014869568669713555, 0.0001710197784767821, 0.0001943545407582488, 0.00021886578999522492, 0.00024473788106256126, 0.00027217742577177555, 0.0003014177366884482, 0.00033272418377820143, 0.0003664007061243028, 0.00040279779154072135, 0.000442322334690153, 0.0004854499153544781, 0.0005327402203270557, 0.0005848565842343968, 0.0006425909798996025, 0.0007068962940887107, 0.0007789284559280775, 0.00086010205750487, 0.0009521647058565653, 0.0010572977749820575, 0.0011782549906243502, 0.0013185562412033796, 0.0014827636832097067, 0.0016768833477087807, 0.0019089632226218383, 0.0021900082791488067, 0.0025354247797037036, 0.002967384980419136, 0.003518871178901537, 0.004240967288771257, 0.00521689851679184, 0.006591434462636768, 0.008639731933759102, 0.011955308526571923, 0.018076865345245597, 0.031772390899661336, 0.06473262379310774, 0.10210860244439658, 0.03226354428996766, 0.27922744750958906, 0.15007530915806788, 0.1650124835170342, 0.15007530915806785, 0.27922744750958906, 0.03226354428996765, 0.10210860244439657, 0.06473262379310774, 0.03177239089966133, 0.018076865345245604, 0.011955308526571926, 0.008639731933759099, 0.006591434462636774, 0.005216898516791852, 0.004240967288771269, 0.0035188711789015475, 0.00296738498041915, 0.0025354247797036884, 0.0021900082791488007, 0.0019089632226218349, 0.0016768833477087863, 0.0014827636832097234, 0.0013185562412033947, 0.0011782549906243413, 0.0010572977749820549, 0.0009521647058565542, 0.0008601020575048408, 0.0007789284559280766, 0.0007068962940886878, 0.0006425909798996205, 0.0005848565842343872, 0.0005327402203270874, 0.0004854499153544932, 0.00044232233469015914, 0.000402797791540733, 0.0003664007061243037, 0.00033272418377819476, 0.00030141773668844804, 0.0002721774257717851, 0.00024473788106256115, 0.0002188657899952113, 0.00019435454075822104, 0.0001710197784767651, 0.00014869568669713718, 0.00012723184585160106, 0.00010649055173263878, 8.634449969097278e-05, 6.667475798601191e-05, 4.7368967287685555e-05, 2.8319713344808083e-05, 9.42302715620788e-06], [8.585871230863964e-06, 2.5803747481820056e-05, 4.316063756862591e-05, 6.0751273976912746e-05, 7.867352846806047e-05, 9.70297785229218e-05, 0.00011592839019374398, 0.00013548535867341895, 0.00015582615482232404, 0.00017708783533953174, 0.00019942148604850643, 0.00022299508437773985, 0.0002479968875421538, 0.00027463948161345807, 0.00030316466239268305, 0.00033384936861781693, 0.00036701295287687783, 0.00040302616397946283, 0.0004423223346901684, 0.00048541143370187264, 0.0005328978709274197, 0.0005855032680714175, 0.0006440958677891675, 0.0007097289202892193, 0.0007836913640893771, 0.000867575574485769, 0.0009633691678547694, 0.0010735812790135255, 0.0012014191610555812, 0.001351039772395955, 0.0015279157223716429, 0.0017393802491306484, 0.0019954610053821496, 0.002310196142921888, 0.002703789099766078, 0.003206293694429892, 0.003864258575485719, 0.004753521067098986, 0.006006001586913734, 0.007872439715000639, 0.010893695047092054, 0.01647193847869539, 0.0289512212291666, 0.0589744386258579, 0.09298110328101583, 0.02943529833060514, 0.25420150481730786, 0.13656478100957248, 0.15022243421384832, 0.13656478100957248, 0.25420150481730786, 0.029435298330605136, 0.09298110328101584, 0.0589744386258579, 0.0289512212291666, 0.016471938478695387, 0.01089369504709205, 0.007872439715000635, 0.006006001586913736, 0.004753521067098989, 0.0038642585754857135, 0.0032062936944298906, 0.0027037890997660898, 0.0023101961429218857, 0.0019954610053821526, 0.0017393802491306267, 0.0015279157223716555, 0.001351039772395958, 0.001201419161055587, 0.0010735812790135138, 0.0009633691678547681, 0.0008675755744857706, 0.0007836913640893719, 0.0007097289202892068, 0.0006440958677891748, 0.0005855032680714314, 0.0005328978709274101, 0.00048541143370186613, 0.0004423223346901653, 0.0004030261639794692, 0.0003670129528768864, 0.00033384936861781585, 0.00030316466239268126, 0.00027463948161346316, 0.00024799688754216075, 0.0002229950843777552, 0.00019942148604849686, 0.00017708783533951282, 0.00015582615482232626, 0.00013548535867344, 0.00011592839019374435, 9.702977852291604e-05, 7.867352846802905e-05, 6.075127397690229e-05, 4.3160637568631774e-05, 2.5803747481802935e-05, 8.58587123086718e-06], [7.818656363874415e-06, 2.3497980597539795e-05, 3.930389699732119e-05, 5.5322673243677546e-05, 7.164343572145278e-05, 8.835941395803465e-05, 0.00010556929097513937, 0.00012337869724400878, 0.00014190189225577352, 0.00016126368612957582, 0.00018160166461959074, 0.0002030687957479028, 0.0002258365154006431, 0.00025009841452385256, 0.0002760746839286716, 0.0003040175173973508, 0.0003342177329824154, 0.0003670129528749058, 0.0004027977915406942, 0.0004420366523289309, 0.0004852799419834663, 0.0005331848069454164, 0.0005865419151053258, 0.0006463104132182029, 0.0007136640799557806, 0.0007900530224190133, 0.0008772872794490584, 0.000977651819058246, 0.001094067363458738, 0.0012303195042238976, 0.00139139196254041, 0.001583962893588191, 0.001817164208862618, 0.0021037801323021232, 0.0024622095766875895, 0.002919822210457431, 0.003519009716704531, 0.004328837604659833, 0.005469448203025155, 0.007169198355357768, 0.00992067518892472, 0.015000892537534527, 0.026365446036328215, 0.05369871116960898, 0.08462703295192517, 0.02683588218950417, 0.23130914669514954, 0.12421772970283695, 0.1366934505483621, 0.12421772970283695, 0.23130914669514954, 0.026835882189504168, 0.08462703295192517, 0.05369871116960898, 0.02636544603632822, 0.01500089253753453, 0.009920675188924725, 0.007169198355357767, 0.00546944820302516, 0.004328837604659831, 0.0035190097167045343, 0.002919822210457421, 0.002462209576687596, 0.0021037801323021306, 0.0018171642088626139, 0.0015839628935881965, 0.0013913919625404224, 0.0012303195042239028, 0.0010940673634587408, 0.0009776518190582407, 0.0008772872794490629, 0.0007900530224189972, 0.0007136640799557835, 0.0006463104132181899, 0.0005865419151053284, 0.0005331848069454316, 0.0004852799419834499, 0.00044203665232893976, 0.00040279779154068, 0.00036701295287491027, 0.0003342177329824204, 0.00030401751739734715, 0.0002760746839286717, 0.0002500984145238332, 0.0002258365154006458, 0.00020306879574790123, 0.00018160166461959844, 0.00016126368612957265, 0.00014190189225576715, 0.00012337869724401182, 0.00010556929097514398, 8.835941395803637e-05, 7.164343572148589e-05, 5.532267324367293e-05, 3.930389699733699e-05, 2.3497980597560687e-05, 7.81865636388308e-06], [7.112150542047812e-06, 2.1374666981347586e-05, 3.575233681138463e-05, 5.032363259318307e-05, 6.516962734343374e-05, 8.037512642872655e-05, 9.60298960075577e-05, 0.0001122300218974245, 0.00012907943928039097, 0.00014669168065787033, 0.00016519189980795414, 0.00018471924293925987, 0.00020542965545790098, 0.00022749923600003848, 0.0002511282797413759, 0.0002765461932038136, 0.0003040175173983961, 0.00033384936861935633, 0.00036640070612430813, 0.0004020939725879507, 0.000441429843685059, 0.0004850060910057639, 0.000533541944219767, 0.0005879098903604846, 0.0006491776574272408, 0.0007186643372490367, 0.0007980164363836438, 0.0008893124853439274, 0.000995209335963251, 0.0011191505809128967, 0.0012656697119968886, 0.0014408415977677877, 0.001652973226082089, 0.001913694017036002, 0.0022397409866132235, 0.002656011768744564, 0.0032010695137140535, 0.003937742794267486, 0.004975325831530144, 0.006521559290833656, 0.009024566044669313, 0.013646078623046388, 0.023984029141311498, 0.04884161064318097, 0.07694309295446432, 0.02443594294773037, 0.21026389310039287, 0.11287662820977358, 0.12425618943824007, 0.11287662820977358, 0.2102638931003928, 0.02443594294773037, 0.07694309295446432, 0.04884161064318096, 0.023984029141311494, 0.013646078623046391, 0.009024566044669308, 0.006521559290833662, 0.004975325831530147, 0.003937742794267486, 0.00320106951371406, 0.0026560117687445656, 0.0022397409866132326, 0.0019136940170360083, 0.0016529732260820865, 0.0014408415977677819, 0.0012656697119968945, 0.0011191505809129173, 0.0009952093359632598, 0.0008893124853439214, 0.0007980164363836439, 0.0007186643372490255, 0.0006491776574272353, 0.0005879098903604806, 0.0005335419442197725, 0.00048500609100575584, 0.0004414298436850506, 0.0004020939725879513, 0.0003664007061242978, 0.000333849368619346, 0.00030401751739840164, 0.00027654619320381093, 0.00025112827974138575, 0.00022749923600004748, 0.00020542965545791519, 0.00018471924293926803, 0.00016519189980793928, 0.0001466916806578551, 0.00012907943928037983, 0.00011223002189740824, 9.602989600754833e-05, 8.037512642874901e-05, 6.516962734343718e-05, 5.032363259318802e-05, 3.575233681140429e-05, 2.137466698134885e-05, 7.1121505420338904e-06], [6.458455092385351e-06, 1.94100682428614e-05, 3.246625098186811e-05, 4.569826337739623e-05, 5.9179727019133274e-05, 7.298765280274309e-05, 8.720355642885979e-05, 0.00010191469249876532, 0.00011721544351732475, 0.00013320890727194264, 0.00015000873475058384, 0.00016774128336157716, 0.00018654816579388427, 0.00020658929573142144, 0.00022804655959905883, 0.00025112827974170846, 0.0002760746839279417, 0.00030316466239130546, 0.0003327241837793226, 0.00036513686587410886, 0.00040085736967099777, 0.00044042852887530307, 0.00048450347324389465, 0.0005338745056756349, 0.0005895112277606034, 0.0006526115054413823, 0.0007246705315210523, 0.0008075758225032949, 0.0009037400733594779, 0.001016290426671934, 0.0011493437767364735, 0.0013084167667774419, 0.0015010530712466874, 0.0017378135438693373, 0.0020338973922547697, 0.002411914762784863, 0.0029068860268637287, 0.0035758682090010585, 0.004518116616984897, 0.005922292932615639, 0.008195369724912277, 0.012392392046167941, 0.021780409395132455, 0.044348555060021076, 0.06984115418854596, 0.02221018777168037, 0.19082165735334145, 0.10240753075046032, 0.11276637110123507, 0.10240753075046032, 0.19082165735334145, 0.02221018777168037, 0.06984115418854596, 0.044348555060021076, 0.02178040939513246, 0.012392392046167947, 0.008195369724912279, 0.0059222929326156444, 0.004518116616984901, 0.0035758682090010563, 0.002906886026863735, 0.002411914762784868, 0.0020338973922547745, 0.0017378135438693354, 0.001501053071246684, 0.0013084167667774397, 0.0011493437767364624, 0.0010162904266719408, 0.000903740073359483, 0.0008075758225032938, 0.0007246705315210598, 0.0006526115054413749, 0.000589511227760599, 0.0005338745056756344, 0.00048450347324389476, 0.00044042852887531705, 0.0004008573696709933, 0.0003651368658741293, 0.00033272418377930954, 0.00030316466239130617, 0.00027607468392795253, 0.00025112827974169393, 0.00022804655959907192, 0.00020658929573142302, 0.00018654816579388785, 0.0001677412833615837, 0.00015000873475057012, 0.0001332089072719348, 0.0001172154435173147, 0.00010191469249875714, 8.720355642885445e-05, 7.298765280276131e-05, 5.917972701911079e-05, 4.5698263377389995e-05, 3.246625098187548e-05, 1.941006824286007e-05, 6.458455092385248e-06], [5.8507663725185565e-06, 1.7583736883605364e-05, 2.9411437981443986e-05, 4.1398424914155435e-05, 5.361139214094481e-05, 6.612010465415294e-05, 7.899840831817612e-05, 9.232534797642795e-05, 0.00010618642573862356, 0.00012067503898460534, 0.00013589414538073337, 0.0001519582135060095, 0.00016899553191724895, 0.0001871509682865773, 0.00020658929573048052, 0.00022749923600139376, 0.0002500984145244092, 0.0002746394816135761, 0.0003014177366863573, 0.00033078070446566904, 0.0003631402689988445, 0.0003989881915528174, 0.00043891615268634216, 0.0004836419126990806, 0.0005340438504353506, 0.0005912071344988182, 0.0006564862888214354, 0.0007315912531289194, 0.0008187077402841263, 0.000920668701624712, 0.001041203734999075, 0.0011853105176334014, 0.0013598230883299538, 0.0015743088698699401, 0.0018425373765204426, 0.0021849920611914306, 0.0026333994971757995, 0.0032394506709877515, 0.004093067084836189, 0.005365170964433815, 0.007424472527867093, 0.01122681832553939, 0.019731702010175326, 0.04017255305524094, 0.06324550294628123, 0.020136689262295015, 0.17277299198219745, 0.0926957135789902, 0.10210019400686514, 0.09269571357899022, 0.17277299198219745, 0.020136689262295015, 0.06324550294628123, 0.04017255305524094, 0.019731702010175326, 0.01122681832553939, 0.007424472527867093, 0.0053651709644338165, 0.004093067084836198, 0.0032394506709877476, 0.0026333994971757964, 0.0021849920611914314, 0.0018425373765204472, 0.0015743088698699397, 0.0013598230883299567, 0.0011853105176333964, 0.0010412037349990801, 0.0009206687016247139, 0.0008187077402841275, 0.0007315912531289168, 0.0006564862888214419, 0.0005912071344988058, 0.0005340438504353514, 0.00048364191269906746, 0.0004389161526863344, 0.0003989881915528206, 0.00036314026899883706, 0.00033078070446566996, 0.00030141773668635195, 0.0002746394816135871, 0.00025009841452441493, 0.00022749923600139503, 0.00020658929573048404, 0.00018715096828656884, 0.00016899553191725478, 0.00015195821350602037, 0.00013589414538072705, 0.00012067503898460822, 0.00010618642573860897, 9.232534797643438e-05, 7.899840831818716e-05, 6.612010465415711e-05, 5.36113921409171e-05, 4.1398424914163235e-05, 2.941143798145732e-05, 1.7583736883604822e-05, 5.850766372520899e-06], [5.283184376302399e-06, 1.5877941136274e-05, 2.655823883876977e-05, 3.738237032510621e-05, 4.8410560147787765e-05, 5.9705805489499257e-05, 7.13347886334995e-05, 8.336888640632785e-05, 9.588530658891906e-05, 0.00010896838627929652, 0.00012271109549601703, 0.00013721679858269813, 0.0001526013391929896, 0.00016899553191505979, 0.0001865481657932288, 0.000205429655457118, 0.00022583651540146314, 0.0002479968875402235, 0.0002721774257746776, 0.00029869194336070603, 0.00032791236990746385, 0.00036028276410898406, 0.00039633741176436774, 0.00043672444870302573, 0.0004822370496592432, 0.0005338551209485545, 0.000592801797827167, 0.00066062115777668, 0.0007392869045823572, 0.0008313572037388164, 0.0009401999017891713, 0.0010703279370581058, 0.0012279125106487633, 0.0014215931204366998, 0.0016638038476553005, 0.001973041642882818, 0.0023779563640245437, 0.002925226527614661, 0.003696054640448508, 0.0048447915050726445, 0.006704403317134369, 0.010138068487594548, 0.01781805701033557, 0.03627287365035618, 0.05709063960501199, 0.018196320323805668, 0.1559369046620503, 0.08364220915562418, 0.0921506784097553, 0.08364220915562418, 0.15593690466205032, 0.018196320323805665, 0.057090639605012, 0.036272873650356176, 0.017818057010335574, 0.010138068487594546, 0.006704403317134369, 0.004844791505072639, 0.00369605464044851, 0.002925226527614661, 0.0023779563640245424, 0.001973041642882821, 0.001663803847655305, 0.001421593120436706, 0.0012279125106487633, 0.001070327937058102, 0.0009401999017891786, 0.0008313572037388248, 0.0007392869045823624, 0.0006606211577766718, 0.0005928017978271704, 0.0005338551209485474, 0.0004822370496592381, 0.00043672444870302394, 0.0003963374117643673, 0.00036028276410899636, 0.0003279123699074608, 0.00029869194336071107, 0.00027217742577467205, 0.00024799688754021363, 0.0002258365154014693, 0.00020542965545711504, 0.00018654816579322946, 0.00016899553191504873, 0.00015260133919299795, 0.00013721679858270282, 0.00012271109549600947, 0.00010896838627928318, 9.58853065889194e-05, 8.336888640632825e-05, 7.133478863348918e-05, 5.970580548950649e-05, 4.841056014778421e-05, 3.738237032510179e-05, 2.6558238838781505e-05, 1.5877941136275334e-05, 5.2831843763092e-06], [4.750557776304914e-06, 1.427719944453671e-05, 2.388075830538514e-05, 3.361365048492025e-05, 4.3530029045567246e-05, 5.3686540189969627e-05, 6.414314368050722e-05, 7.496402061737289e-05, 8.621859513918744e-05, 9.798270207656014e-05, 0.00011033993885666849, 0.00012338324930342742, 0.00013721679858249823, 0.0001519582135075931, 0.00016774128336196722, 0.00018471924293988345, 0.00020306879575005492, 0.00022299508437796848, 0.0002447378810614108, 0.0002685793633055424, 0.0002948539663880791, 0.0003239609834958855, 0.00035638083944004205, 0.000392696332254979, 0.0004336206781626281, 0.0004800350016212444, 0.0005330391377293642, 0.0005940215121236499, 0.0006647568699654118, 0.0007475455048024289, 0.000845415777323015, 0.0009624257198550104, 0.001104124486051845, 0.0012782807461796596, 0.001496075309959919, 0.0017741408243633734, 0.002138239657425941, 0.002630346059211566, 0.0033234794841856727, 0.004356437547978565, 0.006028637869522216, 0.009116283713879837, 0.016022139689137, 0.032613970296188, 0.05131950409314943, 0.016372291230644015, 0.14015588328044196, 0.07516102593837785, 0.082824724938223, 0.07516102593837784, 0.14015588328044196, 0.01637229123064402, 0.051319504093149435, 0.03261397029618799, 0.016022139689137, 0.009116283713879837, 0.006028637869522212, 0.004356437547978567, 0.0033234794841856723, 0.0026303460592115727, 0.002138239657425942, 0.001774140824363374, 0.0014960753099599222, 0.0012782807461796607, 0.0011041244860518409, 0.0009624257198550165, 0.000845415777323014, 0.0007475455048024332, 0.0006647568699654121, 0.0005940215121236475, 0.0005330391377293694, 0.00048003500162124103, 0.00043362067816262524, 0.0003926963322549695, 0.0003563808394400389, 0.0003239609834958973, 0.00029485396638807463, 0.00026857936330554577, 0.00024473788106140187, 0.0002229950843779701, 0.0002030687957500526, 0.00018471924293988595, 0.00016774128336197018, 0.00015195821350758252, 0.0001372167985825128, 0.00012338324930344236, 0.00011033993885666465, 9.798270207654912e-05, 8.621859513917707e-05, 7.496402061737732e-05, 6.414314368050945e-05, 5.368654018996981e-05, 4.353002904556842e-05, 3.3613650484928635e-05, 2.3880758305395305e-05, 1.4277199444540614e-05, 4.750557776292184e-06], [4.248357610788218e-06, 1.2767900500131915e-05, 2.1356229466419075e-05, 3.0060219551482365e-05, 3.8928299183360605e-05, 4.801112633477227e-05, 5.736232227033578e-05, 6.703928335260281e-05, 7.7104094740591e-05, 8.762457461142722e-05, 9.867548312046589e-05, 0.00011033993885691157, 0.000122711095494904, 0.00013589414537971994, 0.0001500087347498074, 0.00016519189981002111, 0.000181601664616714, 0.00019942148605134425, 0.00021886578999612825, 0.00024018692504124934, 0.0002636839735000387, 0.00028971401965893626, 0.0003187067032891078, 0.00035118321600394723, 0.00038778138167607553, 0.00042928918383019473, 0.0004766901981906237, 0.000531226086297127, 0.000594483994858315, 0.0006685210685529213, 0.0007560455638555364, 0.0008606865762135421, 0.000987406719506736, 0.001143153539576739, 0.0013379260971711476, 0.0015865991123221455, 0.001912212191025963, 0.0023523036250911295, 0.0029721763971220887, 0.003895961419252126, 0.005391439169132552, 0.008152794222886025, 0.01432870648462733, 0.02916460350671473, 0.04588203339752852, 0.014649767761368622, 0.12529185948050622, 0.06717689864108446, 0.07404072815083754, 0.06717689864108446, 0.12529185948050622, 0.014649767761368622, 0.04588203339752851, 0.02916460350671473, 0.01432870648462733, 0.008152794222886024, 0.005391439169132553, 0.003895961419252126, 0.002972176397122089, 0.0023523036250911312, 0.0019122121910259647, 0.0015865991123221448, 0.0013379260971711497, 0.0011431535395767414, 0.0009874067195067351, 0.0008606865762135357, 0.000756045563855542, 0.0006685210685529243, 0.0005944839948583151, 0.0005312260862971232, 0.0004766901981906215, 0.0004292891838301902, 0.00038778138167607027, 0.00035118321600394577, 0.00031870670328910326, 0.0002897140196589374, 0.0002636839735000321, 0.00024018692504125362, 0.0002188657899961323, 0.00019942148605134202, 0.00018160166461671072, 0.0001651918998100174, 0.00015000873474980788, 0.0001358941453797247, 0.00012271109549489797, 0.00011033993885691517, 9.867548312047166e-05, 8.762457461142837e-05, 7.710409474059526e-05, 6.703928335260126e-05, 5.736232227033607e-05, 4.801112633477764e-05, 3.892829918337184e-05, 3.0060219551480366e-05, 2.135622946643551e-05, 1.2767900500123972e-05, 4.24835761079222e-06], [3.772573196877808e-06, 1.1337990755793245e-05, 1.8964490938739074e-05, 2.6693699168515903e-05, 3.4568620314064734e-05, 4.263423909276832e-05, 5.093817165008972e-05, 5.953138645451452e-05, 6.846901569580304e-05, 7.781128251270131e-05, 8.762457461231318e-05, 9.798270207596884e-05, 0.00010896838627826104, 0.00012067503898591597, 0.0001332089072716512, 0.0001466916806579299, 0.00016126368613081862, 0.00017708783533597987, 0.00019435454075756654, 0.0002132878907494781, 0.0002341534738020365, 0.0002572683849750932, 0.0002830141495911918, 0.0003118535923428299, 0.00034435310915273686, 0.0003812124401485886, 0.0004233050145058582, 0.000471733446233434, 0.0005279071465581866, 0.0005936528942635943, 0.0006713756691415663, 0.0007642981770494874, 0.0008768273209725071, 0.0010151326769249106, 0.0011880936560682554, 0.0014089194143923499, 0.0016980698248059418, 0.002088880190487084, 0.0026393421593245638, 0.003459689705721999, 0.00478772598548914, 0.007239920831724036, 0.012724255940643895, 0.02589711957713789, 0.04073397913720866, 0.013015553936258018, 0.11122290566305074, 0.05962345187106286, 0.06572662380226597, 0.05962345187106286, 0.11122290566305074, 0.013015553936258016, 0.04073397913720865, 0.02589711957713789, 0.012724255940643895, 0.007239920831724036, 0.004787725985489141, 0.0034596897057219975, 0.0026393421593245633, 0.002088880190487083, 0.00169806982480595, 0.0014089194143923473, 0.001188093656068256, 0.0010151326769249132, 0.0008768273209725056, 0.0007642981770494845, 0.000671375669141567, 0.0005936528942635966, 0.0005279071465581895, 0.0004717334462334311, 0.00042330501450586235, 0.0003812124401485758, 0.0003443531091527359, 0.00031185359234282855, 0.0002830141495911976, 0.00025726838497509933, 0.0002341534738020345, 0.00021328789074948057, 0.00019435454075755908, 0.00017708783533598073, 0.00016126368613082135, 0.0001466916806579274, 0.00013320890727164874, 0.00012067503898591476, 0.00010896838627826255, 9.798270207597118e-05, 8.762457461231872e-05, 7.781128251269842e-05, 6.846901569580778e-05, 5.9531386454516205e-05, 5.093817165009107e-05, 4.263423909276707e-05, 3.456862031405762e-05, 2.6693699168509994e-05, 1.896449093874615e-05, 1.1337990755792078e-05, 3.7725731968790837e-06], [3.319625929015894e-06, 9.976715159975315e-06, 1.6687553276211465e-05, 2.3488768093703572e-05, 3.04182011897941e-05, 3.751543632514949e-05, 4.4822372750038645e-05, 5.2383859564189774e-05, 6.024840967168825e-05, 6.846901569508005e-05, 7.710409474133565e-05, 8.621859513980509e-05, 9.588530658875634e-05, 0.00010618642573980866, 0.00011721544351665985, 0.0001290794392785842, 0.00014190189225590652, 0.00015582615482544277, 0.00017101977847846958, 0.00018767994752174366, 0.0002060403639526183, 0.00022638005254070617, 0.00024903473301393457, 0.00027441166387821424, 0.00030300924053724786, 0.00033544319374354025, 0.0003724820911390872, 0.0004150961704539829, 0.0004645256346274003, 0.0005223779480592912, 0.0005907693624739128, 0.0006725356875952659, 0.0007715547695288943, 0.0008932555247626167, 0.0010454514052976262, 0.001239765859508462, 0.0014942026910423171, 0.00183809564485022, 0.0023224753312491905, 0.0030443443732963236, 0.004212963823880392, 0.006370810281481358, 0.011196739066082439, 0.022786852635637688, 0.03583592998694488, 0.011457826437818156, 0.09784050859443558, 0.052441687882055985, 0.05781827705299651, 0.05244168788205598, 0.09784050859443556, 0.011457826437818156, 0.035835929986944876, 0.02278685263563768, 0.011196739066082442, 0.006370810281481359, 0.004212963823880393, 0.0030443443732963227, 0.0023224753312491913, 0.0018380956448502174, 0.0014942026910423182, 0.0012397658595084612, 0.0010454514052976305, 0.0008932555247626162, 0.0007715547695288922, 0.0006725356875952611, 0.0005907693624739131, 0.0005223779480592935, 0.00046452563462740285, 0.00041509617045398453, 0.00037248209113909127, 0.0003354431937435366, 0.00030300924053725046, 0.0002744116638782097, 0.0002490347330139316, 0.0002263800525407133, 0.00020604036395261506, 0.00018767994752174203, 0.0001710197784784697, 0.00015582615482544808, 0.00014190189225591265, 0.00012907943927858168, 0.0001172154435166612, 0.00010618642573980596, 9.588530658875694e-05, 8.621859513980713e-05, 7.71040947413386e-05, 6.846901569507873e-05, 6.02484096716869e-05, 5.238385956419197e-05, 4.482237275004217e-05, 3.751543632514334e-05, 3.0418201189788414e-05, 2.3488768093701844e-05, 1.668755327622148e-05, 9.97671515997474e-06, 3.3196259290195816e-06], [2.886297065343049e-06, 8.674400175483622e-06, 1.4509236092474268e-05, 2.0422651399301726e-05, 2.6447548070922497e-05, 3.261834278424706e-05, 3.897146552759821e-05, 4.554591100741016e-05, 5.2383859565419456e-05, 5.953138645375065e-05, 6.703928335252857e-05, 7.496402061615117e-05, 8.336888640797571e-05, 9.232534797360217e-05, 0.00010191469249774699, 0.00011223002190006852, 0.00012337869724216594, 0.00013548535867592633, 0.00014869568669345282, 0.00016318112660851608, 0.00017914487467316222, 0.00019682953395525613, 0.00021652700199915791, 0.0002385913772213097, 0.00026345599879388034, 0.0002916562256293459, 0.00032386030387194397, 0.0003609118262371729, 0.0004038891128414542, 0.00045418980801794197, 0.0005136539337678427, 0.0005847471505250183, 0.0006708411456792056, 0.0007766562296982598, 0.0009089860211824128, 0.0010779368668401585, 0.001299162743814142, 0.0015981688952906377, 0.0020193258532522273, 0.0026469767429979922, 0.003663073644543392, 0.005539297381430436, 0.009735316874294854, 0.01981162455872164, 0.031152496181021495, 0.009965910494785823, 0.08504729843516876, 0.04557872970506603, 0.05025813995669001, 0.04557872970506603, 0.08504729843516877, 0.009965910494785823, 0.031152496181021498, 0.01981162455872164, 0.009735316874294854, 0.005539297381430434, 0.0036630736445433924, 0.002646976742997993, 0.002019325853252228, 0.0015981688952906375, 0.001299162743814142, 0.0010779368668401598, 0.0009089860211824147, 0.0007766562296982611, 0.0006708411456792013, 0.000584747150525016, 0.0005136539337678449, 0.00045418980801794517, 0.00040388911284145796, 0.00036091182623717113, 0.0003238603038719439, 0.0002916562256293438, 0.0002634559987938811, 0.00023859137722131207, 0.00021652700199915239, 0.00019682953395525963, 0.0001791448746731603, 0.00016318112660852304, 0.0001486956866934483, 0.00013548535867592543, 0.00012337869724217415, 0.00011223002190006894, 0.00010191469249774507, 9.232534797359912e-05, 8.336888640797983e-05, 7.496402061615396e-05, 6.703928335252102e-05, 5.9531386453744395e-05, 5.238385956541744e-05, 4.55459110074115e-05, 3.8971465527599213e-05, 3.261834278424525e-05, 2.644754807093171e-05, 2.0422651399299655e-05, 1.450923609247718e-05, 8.674400175485348e-06, 2.8862970653416923e-06], [2.4696667546293787e-06, 7.422270577122468e-06, 1.2414861446517676e-05, 1.7474689005270514e-05, 2.262990592206098e-05, 2.790996095801355e-05, 3.3346025495526435e-05, 3.897146552697738e-05, 4.4822372750537426e-05, 5.0938171650577784e-05, 5.736232227179213e-05, 6.414314368130347e-05, 7.133478863433089e-05, 7.899840831816063e-05, 8.720355642859942e-05, 9.602989600774152e-05, 0.00010556929097335684, 0.00011592839019642497, 0.00012723184585250612, 0.0001396263558683009, 0.00015328578612672732, 0.00016841772112980092, 0.00018527192457179633, 0.00020415138268405804, 0.00022542688465996335, 0.0002495565136454923, 0.00027711205883403247, 0.00030881534623172107, 0.0003455890485048797, 0.00038862907131479867, 0.00043950984561265334, 0.0005003411372650163, 0.0005740079659948042, 0.00066454932031611, 0.0007777782481933796, 0.0009223423933490759, 0.0011116363430825446, 0.0013674841509878316, 0.0017278524624963671, 0.002264911705478978, 0.003134354731726954, 0.004739788512721355, 0.008330155496440162, 0.01695132275272404, 0.026651622644558323, 0.008530089081457625, 0.07275513862419496, 0.03898676618660954, 0.04299412230373838, 0.038986766186609546, 0.07275513862419496, 0.008530089081457625, 0.02665162264455832, 0.01695132275272404, 0.008330155496440164, 0.004739788512721356, 0.0031343547317269553, 0.0022649117054789765, 0.0017278524624963695, 0.00136748415098783, 0.0011116363430825435, 0.0009223423933490756, 0.0007777782481933798, 0.0006645493203161103, 0.0005740079659948062, 0.0005003411372650156, 0.00043950984561265307, 0.00038862907131479834, 0.00034558904850488125, 0.0003088153462317208, 0.0002771120588340289, 0.000249556513645491, 0.00022542688465995676, 0.0002041513826840543, 0.00018527192457179844, 0.00016841772112980233, 0.00015328578612672222, 0.00013962635586830605, 0.00012723184585250672, 0.00011592839019642668, 0.00010556929097336154, 9.602989600773827e-05, 8.720355642859879e-05, 7.899840831815707e-05, 7.133478863433663e-05, 6.414314368129798e-05, 5.736232227179622e-05, 5.093817165057251e-05, 4.482237275053507e-05, 3.897146552697826e-05, 3.3346025495524205e-05, 2.790996095801696e-05, 2.2629905922064347e-05, 1.7474689005266997e-05, 1.241486144652202e-05, 7.4222705771287e-06, 2.4696667546320663e-06], [2.067061969630943e-06, 6.21229288923e-06, 1.0390992208336189e-05, 1.4625967325985585e-05, 1.8940781495634927e-05, 2.3360082748712606e-05, 2.7909960957602574e-05, 3.2618342784245804e-05, 3.75154363240409e-05, 4.263423909316034e-05, 4.801112633343728e-05, 5.3686540190766203e-05, 5.9705805489604695e-05, 6.612010465223974e-05, 7.298765280459713e-05, 8.037512642889504e-05, 8.835941395888414e-05, 9.702977852328434e-05, 0.00010649055173302991, 0.00011686451712662963, 0.00012829719732210812, 0.0001409623368916924, 0.0001550689836801465, 0.00017087073192816364, 0.00018867792589752483, 0.0002088739735306414, 0.00023193745297335355, 0.0002584725210461283, 0.0002892514403421972, 0.000325275165788404, 0.00036786147311626755, 0.00041877620699795766, 0.0004804340909621785, 0.000556215709033198, 0.0006509865178307711, 0.0007719845110031306, 0.0009304208505655408, 0.0011445621403964115, 0.001446186339216492, 0.0018957000942282957, 0.0026234188394160733, 0.003967162155409816, 0.006972251240820886, 0.014187539941560865, 0.022304004315735607, 0.007141438876905986, 0.06088350205244919, 0.0326221568972187, 0.035978631729018044, 0.0326221568972187, 0.06088350205244919, 0.007141438876905986, 0.022304004315735614, 0.014187539941560865, 0.006972251240820886, 0.003967162155409817, 0.002623418839416073, 0.0018957000942282957, 0.001446186339216493, 0.0011445621403964124, 0.0009304208505655433, 0.0007719845110031307, 0.0006509865178307732, 0.0005562157090331987, 0.00048043409096217943, 0.0004187762069979558, 0.00036786147311626826, 0.00032527516578840425, 0.0002892514403421983, 0.0002584725210461255, 0.00023193745297335288, 0.00020887397353063864, 0.0001886779258975234, 0.00017087073192816385, 0.00015506898368014427, 0.00014096233689169348, 0.0001282971973221061, 0.00011686451712663257, 0.00010649055173302857, 9.702977852328423e-05, 8.835941395888181e-05, 8.03751264288943e-05, 7.298765280460078e-05, 6.612010465224197e-05, 5.9705805489606464e-05, 5.368654019076886e-05, 4.801112633343837e-05, 4.263423909315729e-05, 3.7515436324038595e-05, 3.2618342784243554e-05, 2.7909960957605336e-05, 2.3360082748717214e-05, 1.8940781495637133e-05, 1.4625967325983603e-05, 1.0390992208340492e-05, 6.212292889228383e-06, 2.0670619696300926e-06], [1.6760115504733657e-06, 5.0370404003125656e-06, 8.42520605578616e-06, 1.18590011832444e-05, 1.5357531299589958e-05, 1.8940781497794986e-05, 2.262990592108244e-05, 2.6447548074110103e-05, 3.041820118907205e-05, 3.4568620313415913e-05, 3.8928299183411055e-05, 4.3530029046662446e-05, 4.841056014838475e-05, 5.361139214384171e-05, 5.9179727018838866e-05, 6.516962734390465e-05, 7.164343572012658e-05, 7.867352846692159e-05, 8.634449969024483e-05, 9.475590470272374e-05, 0.00010402573612893821, 0.00011429486955248312, 0.00012573280516427188, 0.00013854516235661246, 0.00015298357460791467, 0.00016935891703442706, 0.00018805923087001855, 0.00020957437930691508, 0.00023453052957345526, 0.0002637392779518791, 0.000298269106583061, 0.00033955180289878256, 0.0003895452817050826, 0.0004509906027516324, 0.0005278328009755642, 0.0006259406320669119, 0.0007544044162324376, 0.0009280352519279541, 0.0011725997075935825, 0.0015370775482013747, 0.0021271333066772732, 0.003216682957536938, 0.005653279473474831, 0.011503263242534995, 0.018082582531251234, 0.005791687657519129, 0.04935807405567121, 0.026444663478314912, 0.029167747919089652, 0.026444663478314912, 0.04935807405567121, 0.005791687657519128, 0.018082582531251234, 0.011503263242534994, 0.005653279473474831, 0.0032166829575369375, 0.002127133306677273, 0.001537077548201375, 0.0011725997075935825, 0.0009280352519279547, 0.0007544044162324376, 0.0006259406320669109, 0.000527832800975565, 0.0004509906027516319, 0.00038954528170508264, 0.00033955180289878153, 0.00029826910658306387, 0.00026373927795188105, 0.00023453052957345753, 0.0002095743793069145, 0.00018805923087001958, 0.00016935891703442533, 0.00015298357460791134, 0.00013854516235661265, 0.0001257328051642718, 0.00011429486955248464, 0.00010402573612893538, 9.475590470272778e-05, 8.634449969024374e-05, 7.867352846691424e-05, 7.164343572012814e-05, 6.516962734390238e-05, 5.9179727018841366e-05, 5.361139214384089e-05, 4.8410560148385845e-05, 4.353002904666389e-05, 3.8928299183410906e-05, 3.456862031341192e-05, 3.041820118907023e-05, 2.644754807410866e-05, 2.262990592108397e-05, 1.8940781497794675e-05, 1.535753129959251e-05, 1.185900118324492e-05, 8.425206055788682e-06, 5.037040400311659e-06, 1.6760115504715959e-06], [1.294206896403472e-06, 3.889574864097471e-06, 6.505897734299351e-06, 9.157455453116144e-06, 1.1859001183043209e-05, 1.4625967325304741e-05, 1.7474689004759692e-05, 2.0422651399692916e-05, 2.3488768093742814e-05, 2.6693699169367072e-05, 3.0060219551877045e-05, 3.361365048567747e-05, 3.738237032362335e-05, 4.139842491414298e-05, 4.569826337750174e-05, 5.032363259397087e-05, 5.5322673243689696e-05, 6.0751273979364446e-05, 6.667475798750308e-05, 7.317000142321673e-05, 8.032811772873845e-05, 8.825789040393363e-05, 9.709020683273881e-05, 0.00010698384548360015, 0.00011813311676599035, 0.00013077807734805544, 0.00014521837133053941, 0.00016183226949139994, 0.0001811032963160418, 0.0002036581642735899, 0.00023032195277759477, 0.000262200285297305, 0.0003008050607197917, 0.00034825292284908677, 0.00040759022662804927, 0.00048334882847702893, 0.0005825482879678039, 0.0007166257774105021, 0.0009054783549982112, 0.0011869285068221683, 0.0016425712676066337, 0.0024839265159376524, 0.004365462340872956, 0.008882602202190898, 0.013962105372998655, 0.004473088743342157, 0.03810953418174765, 0.02041678049162594, 0.022520502511697064, 0.020416780491625937, 0.038109534181747645, 0.004473088743342156, 0.013962105372998653, 0.008882602202190896, 0.004365462340872957, 0.002483926515937653, 0.001642571267606634, 0.0011869285068221676, 0.0009054783549982117, 0.0007166257774105022, 0.0005825482879678044, 0.0004833488284770278, 0.00040759022662805036, 0.00034825292284908536, 0.00030080506071979135, 0.00026220028529730366, 0.00023032195277759583, 0.0002036581642735911, 0.00018110329631604232, 0.0001618322694913994, 0.0001452183713305396, 0.00013077807734805595, 0.00011813311676598864, 0.00010698384548360099, 9.709020683273778e-05, 8.825789040393401e-05, 8.032811772873596e-05, 7.317000142321743e-05, 6.66747579875024e-05, 6.075127397936263e-05, 5.532267324368966e-05, 5.032363259397046e-05, 4.569826337750232e-05, 4.1398424914143326e-05, 3.7382370323627384e-05, 3.361365048567929e-05, 3.0060219551877774e-05, 2.6693699169363918e-05, 2.3488768093743654e-05, 2.042265139969409e-05, 1.74746890047607e-05, 1.4625967325305763e-05, 1.1859001183042894e-05, 9.157455453115295e-06, 6.505897734301846e-06, 3.889574864098909e-06, 1.294206896401704e-06], [9.194669575936509e-07, 2.763341446176372e-06, 4.622103317625911e-06, 6.50589773405519e-06, 8.425206056492925e-06, 1.039099220833038e-05, 1.2414861446902196e-05, 1.4509236092393471e-05, 1.6687553275482515e-05, 1.896449093763838e-05, 2.1356229466517914e-05, 2.3880758304790605e-05, 2.655823884062857e-05, 2.9411437980448503e-05, 3.246625098132174e-05, 3.5752336811826184e-05, 3.930389699925098e-05, 4.316063756547385e-05, 4.736896728915495e-05, 5.198350277373284e-05, 5.706897545194444e-05, 6.270267047648501e-05, 6.897757667167457e-05, 7.600649808748229e-05, 8.392748245184965e-05, 9.291107787752048e-05, 0.00010317016640654833, 0.00011497349042839655, 0.00012866456988247393, 0.00014468865272815112, 0.00016363191692621805, 0.00018627985336068474, 0.0002137065920228401, 0.0002474159053245467, 0.00028957208151666726, 0.00034339478862222824, 0.00041387109404134866, 0.0005091265814195051, 0.000643297214857555, 0.0008432542180376106, 0.0011669674084649282, 0.001764712533035636, 0.0031014512257627074, 0.006310547279645402, 0.009918737923216191, 0.0031783088468606427, 0.02707247732636641, 0.014503143735394438, 0.015998241388905148, 0.01450314373539444, 0.027072477326366404, 0.0031783088468606423, 0.009918737923216191, 0.006310547279645402, 0.0031014512257627074, 0.0017647125330356353, 0.0011669674084649282, 0.00084325421803761, 0.0006432972148575561, 0.0005091265814195054, 0.0004138710940413492, 0.00034339478862222786, 0.000289572081516668, 0.00024741590532454684, 0.00021370659202283983, 0.0001862798533606834, 0.00016363191692621897, 0.00014468865272815104, 0.00012866456988247523, 0.00011497349042839558, 0.0001031701664065489, 9.291107787751888e-05, 8.392748245184873e-05, 7.600649808748198e-05, 6.897757667167354e-05, 6.270267047648572e-05, 5.706897545194274e-05, 5.19835027737347e-05, 4.7368967289153585e-05, 4.316063756547454e-05, 3.9303896999251447e-05, 3.5752336811825276e-05, 3.246625098132391e-05, 2.941143798044828e-05, 2.6558238840628924e-05, 2.3880758304792197e-05, 2.1356229466517944e-05, 1.8964490937638273e-05, 1.6687553275482166e-05, 1.450923609239332e-05, 1.2414861446901908e-05, 1.0390992208330832e-05, 8.425206056490149e-06, 6.505897734055275e-06, 4.622103317628622e-06, 2.763341446177358e-06, 9.194669575929439e-07], [5.497066914625522e-07, 1.6520738431219083e-06, 2.763341446625748e-06, 3.889574863997396e-06, 5.037040402131326e-06, 6.212292889318908e-06, 7.4222705758635625e-06, 8.674400175440753e-06, 9.976715161894168e-06, 1.1337990755568649e-05, 1.2767900501613687e-05, 1.4277199442725475e-05, 1.587794113918989e-05, 1.7583736880493602e-05, 1.941006824367157e-05, 2.1374666980375792e-05, 2.3497980598223998e-05, 2.580374748171519e-05, 2.831971334412194e-05, 3.1078530924468583e-05, 3.4118900176254786e-05, 3.748702635465076e-05, 4.1238503226238526e-05, 4.544077117638347e-05, 5.0176362625845796e-05, 5.554724050703273e-05, 6.168067731958505e-05, 6.873734191221611e-05, 7.69226092794282e-05, 8.650267302195451e-05, 9.782798248946714e-05, 0.00011136814736253256, 0.0001277653418571712, 0.00014791860442243447, 0.00017312186708343512, 0.00020530002760826905, 0.00024743463600172437, 0.00030438362809924983, 0.00038459829537254114, 0.0005041438189102137, 0.0006976779726123113, 0.0010550443878990527, 0.00185422048553579, 0.0037727516346754445, 0.005929710670395369, 0.0019003262279276149, 0.01618444132191329, 0.008669997665561181, 0.009564049903617982, 0.008669997665561181, 0.016184441321913292, 0.0019003262279276149, 0.005929710670395369, 0.003772751634675444, 0.0018542204855357901, 0.0010550443878990525, 0.0006976779726123117, 0.0005041438189102133, 0.0003845982953725417, 0.00030438362809924994, 0.00024743463600172404, 0.0002053000276082686, 0.00017312186708343545, 0.0001479186044224346, 0.00012776534185717092, 0.00011136814736253191, 9.782798248946761e-05, 8.650267302195488e-05, 7.692260927942813e-05, 6.873734191221606e-05, 6.168067731958545e-05, 5.554724050703271e-05, 5.017636262584515e-05, 4.544077117638298e-05, 4.1238503226238716e-05, 3.748702635465145e-05, 3.4118900176253824e-05, 3.107853092446949e-05, 2.831971334412156e-05, 2.5803747481713946e-05, 2.3497980598224835e-05, 2.1374666980376815e-05, 1.941006824367264e-05, 1.758373688049298e-05, 1.587794113919016e-05, 1.4277199442725473e-05, 1.2767900501612905e-05, 1.1337990755568944e-05, 9.976715161894447e-06, 8.674400175439928e-06, 7.4222705758634355e-06, 6.2122928893204e-06, 5.037040402130134e-06, 3.889574863996301e-06, 2.763341446626706e-06, 1.652073843120694e-06, 5.497066914625603e-07], [1.8290796306988134e-07, 5.497066921962905e-07, 9.194669576862265e-07, 1.294206894531926e-06, 1.6760115524202744e-06, 2.0670619674659082e-06, 2.469666758211284e-06, 2.8862970627191453e-06, 3.3196259294959186e-06, 3.772573194983631e-06, 4.248357610268994e-06, 4.7505577770847155e-06, 5.283184374922351e-06, 5.85076637682223e-06, 6.458455090932658e-06, 7.1121505422978e-06, 7.81865636411827e-06, 8.585871229829903e-06, 9.423027154593565e-06, 1.0340988941382374e-05, 1.1352633512071113e-05, 1.2473335096304306e-05, 1.3721591815333328e-05, 1.511984361354179e-05, 1.6695552142263844e-05, 1.8482644280892295e-05, 2.052346839027284e-05, 2.287148502885676e-05, 2.5595030176820086e-05, 2.8782676495447493e-05, 3.2551031663816196e-05, 3.705635258021408e-05, 4.251231484860034e-05, 4.921806260054758e-05, 5.760413605774373e-05, 6.831102188855547e-05, 8.233079540280609e-05, 0.00010127987763396071, 0.00012797033787525583, 0.00016774768226016223, 0.00023214389773078332, 0.00035105343734483704, 0.0006169695102906038, 0.0012553300945696232, 0.0019729960083980274, 0.0006323364740411881, 0.005385012867510912, 0.002884706274791331, 0.0031822244194101906, 0.002884706274791331, 0.005385012867510912, 0.0006323364740411881, 0.0019729960083980274, 0.001255330094569623, 0.0006169695102906038, 0.0003510534373448371, 0.00023214389773078343, 0.00016774768226016215, 0.0001279703378752558, 0.0001012798776339606, 8.233079540280611e-05, 6.831102188855561e-05, 5.760413605774382e-05, 4.9218062600547435e-05, 4.251231484860017e-05, 3.705635258021416e-05, 3.255103166381604e-05, 2.878267649544772e-05, 2.559503017682023e-05, 2.287148502885673e-05, 2.0523468390272965e-05, 1.8482644280892102e-05, 1.6695552142263556e-05, 1.5119843613541949e-05, 1.3721591815333301e-05, 1.2473335096304313e-05, 1.135263351207091e-05, 1.034098894138263e-05, 9.42302715459378e-06, 8.585871229830106e-06, 7.818656364118962e-06, 7.112150542297517e-06, 6.4584550909326845e-06, 5.850766376822189e-06, 5.283184374922836e-06, 4.750557777084599e-06, 4.248357610268728e-06, 3.772573194983386e-06, 3.319625929495673e-06, 2.88629706271944e-06, 2.4696667582111795e-06, 2.0670619674661047e-06, 1.6760115524201128e-06, 1.2942068945322605e-06, 9.194669576864494e-07, 5.497066921961335e-07, 1.829079630697975e-07]], "zmax": 147.02644692625088, "y": [0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5, 8.5, 9.5, 10.5, 11.5, 12.5, 13.5, 14.5, 15.5, 16.5, 17.5, 18.5, 19.5, 20.5, 21.5, 22.5, 23.5, 24.5, 25.5, 26.5, 27.5, 28.5, 29.5, 30.5, 31.5, 32.5, 33.5, 34.5, 35.5, 36.5, 37.5, 38.5, 39.5, 40.5, 41.5, 42.5, 43.5, 44.5, 45.5, 46.5, 47.5, 48.5, 49.5, 50.5, 51.5, 52.5, 53.5, 54.5, 55.5, 56.5, 57.5, 58.5, 59.5, 60.5, 61.5, 62.5, 63.5, 64.5, 65.5, 66.5, 67.5, 68.5, 69.5, 70.5, 71.5, 72.5, 73.5, 74.5, 75.5, 76.5, 77.5, 78.5, 79.5, 80.5, 81.5, 82.5, 83.5, 84.5, 85.5, 86.5, 87.5, 88.5, 89.5, 90.5, 91.5, 92.5, 93.5, 94.5, 95.5, 96.5, 97.5], "type": "heatmap", "showscale": true, "x": [0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5, 8.5, 9.5, 10.5, 11.5, 12.5, 13.5, 14.5, 15.5, 16.5, 17.5, 18.5, 19.5, 20.5, 21.5, 22.5, 23.5, 24.5, 25.5, 26.5, 27.5, 28.5, 29.5, 30.5, 31.5, 32.5, 33.5, 34.5, 35.5, 36.5, 37.5, 38.5, 39.5, 40.5, 41.5, 42.5, 43.5, 44.5, 45.5, 46.5, 47.5, 48.5, 49.5, 50.5, 51.5, 52.5, 53.5, 54.5, 55.5, 56.5, 57.5, 58.5, 59.5, 60.5, 61.5, 62.5, 63.5, 64.5, 65.5, 66.5, 67.5, 68.5, 69.5, 70.5, 71.5, 72.5, 73.5, 74.5, 75.5, 76.5, 77.5, 78.5, 79.5, 80.5, 81.5, 82.5, 83.5, 84.5, 85.5, 86.5, 87.5, 88.5, 89.5, 90.5, 91.5, 92.5, 93.5, 94.5, 95.5, 96.5, 97.5], "zaxis": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 98, "currentCount": 98}}}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [0.5, 97.5], "domain": [0.03619130941965587, 0.9934383202099738], "mirror": false, "tickangle": 0, "showline": true, "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, "range": [0.5, 97.5], "domain": [0.03762029746281716, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "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": 516.984375}}