Создание блоков Engee Function с переменными состояния¶
В этом примере мы создадим блок Engee Function
, параметры которого могут изменяться во времени в зависимости от различных факторов. Обычно вычисление выходных данных пользовательского блока происходит на основании входных данных и вектора времени. Но в этом примере мы покажем, как работать с переменными, которые могут хранить в себе внутреннее состояние блока.
В практическом плане – мы покажем, как изменять результат вычисления пользовательского блока в зависимости от внутреннего счетчика выполнений, реализованного внутри блока.
Организация параметров блока Engee Function¶
Параметры блока Engee Function
можно задать разными способами:
- при помощи констант, через окно настроек
Parameters
- при помощи переменных из глобального пространства переменных Engee (видны в Окне Переменных)
- при помощи внутренних параметров блока, заданных в его коде (причем время их существования не ограничивается очередным циклом вычислений, а равно времени существования модели).
Первые два варианта реализуются почти одинаково. Если количество параметров – ненулевое, то для каждого из них нужно задать имя Name
и значение Value
.
Здесь мы задали размер окна для вычисления статистических параметров max_len_init
и присвоили ему значение 100
.
Мы могли бы присвоить ему значение N
, заданное в глобальном пространстве переменных. Следует иметь в виду ограничение компилятора моделей: при передаче переменной из глобального пространства, имя параметра (Name
) не должно быть идентично имени глобальной переменной (Value
).
Это временное поведение компилятора скоро будет исправлено.
Переменные параметры в коде Engee Function¶
Рассмотрим практический пример. Мы собираемся реализовать блок, который рассчитывает статистические параметры той части выборки, которая попадает в скользящее окно заданного размера. Окно будет инициализировано нулевым значением, поэтому первые N результатов будут смещенными, но затем мы будем видеть статистику по скользящему окну, включающему последние N
значений из наблюдаемой выборки.
Блок Engee Function
будет принимать на вход скалярные значения и накапливать по ним статистику. На входе будет находиться блок генерации шума – равномерно распределенной случайной величины со значениями в интервале (-1,1). Интерфейс блока будет выглядеть следующим образом:
Здесь MA
означает Moving Average
(скользящее среднее), а MD
– Moving Deviation
(скользящая дисперсия).
Стоит прокомментировать каждую секцию кода, которая задает поведение нашего пользовательского блока.
Код начинается с инициализации структуры пользовательского блока. Название Block
выбрано случайно, оно может быть любым. Внутри мы задаем несколько параметров:
i
– счетчик последнего добавленного элемента в циклическом накопителе
max_len
– размер скользящего окна
X
– накопитель выборки (вектор размером max_len)
В функции Block()
внутренние параметры получают конкретные значения, в том числе получаемые извне (размер окна max_len_init
задается на вкладке Parameters
).
Разбор кода внутри компонента Engee Function¶
Стоит внимательно подойти к вопросу назначения типов данных параметрам блока. Если не объявить структуру данных, задающую переменные состояния, как структуру типа mutable
, то все "простые" типы в составе структуры будут неизменными (придется пользоваться векторами или ссылками, например i :: Ref{Int32};
). Мы же хотим, чтобы параметры можно было изменить. Поэтому мы задаем специальный модификатор нашей структуре:
mutable struct Block <: AbstractCausalComponent
i :: Int32;
max_len :: Int32;
X :: Vector{Float64};
function Block()
return new( 1, max_len_init, zeros(Float64, max_len_init) )
end
end
Затем в коде мы видим функцию, которая вычисляется при каждом обращении к блоку.
Очень важно, чтобы при обращении к этой функции ее внутренние переменные не изменялись. Метод (функтор) step
может вызываться много раз между шагами симуляции, поэтому если в нём изменять внутреннее состояние блока, оно будет меняться слишком часто.
Здесь мы можем обращаться к внешним и внутренним параметрам блока (c.параметр
).
function (c::Block)(t::Real, x)
# Локальные переменные нужны только для удобства чтения
X = c.X
N = c.max_len
MA = sum( X[1:N] )/N;
MD = sqrt( sum( (X[1:N] .- MA).^2 ) / (N-1) )
return (MA, MD)
end
И наконец мы видим функцию update!
, которая призвана вносить изменения в параметры блока c
.
- Мы подставляем текущее значение
x
со входом блока Engee Function
в вектор X
по индексу i
;
- Затем мы увеличиваем на 1 индекс
i
, а при достижении им значения max_len
, уменьшаем обратно до единицы;
- И наконец возвращаем обновленную структуру параметров
c
для обращения к ней же уже на следующей итерации.
function update!(c::Block, t::Real, x)
c.X[c.i] = x
c.i = max(1, (c.i + 1) % (c.max_len-1))
return c
end
Код внутри update!
особенно важен в тех случаях, когда блок Engee Function
находится в алгебраической петле (например, принимает на вход собственные выходы или имеет выставленный параметр direct_feedthrough=false
). В моделях, где нет петли, всё можно сделать во втором блоке кода (функторе step
).
Запуск модели и обсуждение результатов¶
Запустим эту модель при помощи команд программного управления:
Out[0]:
Dict{String, DataFrame} with 3 entries:
"MA" => 501×2 DataFrame…
"src" => 501×2 DataFrame…
"MD" => 501×2 DataFrame…
На левом графике изображен шумовой сигнал, который поступал на вход в пользовательский блок Engee Function
. На правом графике изображена зависимость скользящего среднего значения от значения дисперсии для скользящего окна.
Можно отметить, что отправной точкой среднего значения и дисперсии было значение для нулевой выборки, но через несколько десятков шагов оценка этих параметров сместилась к точке $\mu \approx -0.15$, $\sigma \approx 0.55$. К концу расчетного периода, когда инициализация скользящего окна перестала сказываться на статистике, точка на графике стала заметно смещаться к нулевому математическому ожиданию при $\sigma \approx 0.6$.
Заключение¶
Если добавить к исходному шаблону кода в компоненте Engee Function
несколько стандартных конструкций, то в этом компоненте можно воплотить очень сложное поведение, опирающееся на внешний код и изменяемые параметры. В Engee существует много графических и текстовых способов описания поведения моделей, в дополнение к которым можно пользоваться динамическими блоками с пользовательским кодом внутри.
Блоки, использованные в примере¶
{"id": "d42cd2fb-71da-4da0-b4a1-6e7d92df5b90", "data": [{"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "input", "zmin": null, "yaxis": "y", "legendgroup": "input", "zmax": null, "line": {"color": "rgba(255, 0, 0, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.18860105821594164, -0.86290835122697, 0.7242817143909699, -0.8280582682831561, 0.3232253814616475, -0.767345292336828, -0.7812287957104218, 0.4040088883674593, -0.42098031535612424, -0.942900044668032, 0.07727882793130592, 0.7939795805134169, -0.48304436927325867, -0.32210189655565236, -0.15051667195738738, 0.8094551535193082, 0.48935916597461904, -0.6888851165609404, 0.15098076845101915, -0.09153705490821751, -0.9665514456681914, -0.008441219001522393, 0.2713552174355216, -0.825842524251323, -0.14818972951664766, 0.14722373886016582, -0.1138513492073776, 0.2414599751948303, 0.7253867470399353, 0.03665211302088234, 0.5337417135418328, -0.7317218189142551, -0.8261063023389983, -0.2970172253280887, -0.6134180922532564, -0.7660218903280105, 0.7995314865766288, -0.15416389524721152, 0.41506777409543893, 0.7625565018806968, 0.8637954257021019, 0.6735010692241703, 0.9626776785357039, -0.2114046742836564, -0.862431597324897, 0.2650076920034101, -0.9122339619193296, -0.349546575307526, -0.010050895539468252, 0.7120336007206027, -0.6704283459890987, 0.37180884258099445, 0.26688064370837816, -0.5673808757279097, -0.17046256353318956, 0.40512146263848914, 0.7418494703205187, 0.5154227400517877, -0.98353606192602, 0.21318882539191453, -0.7679613038495541, -0.6596548765088528, 0.5863179133659164, -0.5644542314481389, 0.8260763264525253, -0.1804836546662354, 0.24876791085954997, -0.8868452079795093, 0.7437748223442224, -0.28924973083729943, 0.04801642972498499, -0.440186361515464, -0.5694141613278936, -0.2408634863379171, 0.1543623738384734, -0.4364436353706307, 0.781946580049544, -0.7374173390168508, -0.3957000270265363, 0.28587144462321934, -0.8326439403920856, -0.37381973712961414, -0.08196241680440264, 0.2974838392020529, -0.9299804815138533, -0.27090458817549834, 0.12110040747761963, -0.8899296870098983, 0.6659405193252661, 0.7812304229641072, -0.9288889679219181, 0.3236067988020308, -0.27103591599459276, -0.4235770192535626, 0.2439163923937957, -0.16492448301099327, -0.8217981733771307, -0.1634413359434066, 0.3117618008614633, -0.8029546409063999, 0.4474616594503624, -0.261644323633645, -0.7035040221171711, -0.5380918071246612, 0.17441276057741573, 0.6786068510660765, -0.1496164381135785, 0.25633880979482804, -0.8342312624697386, -0.6064092663865839, -0.8665093029473105, -0.6730532545361916, -0.3931160240885694, -0.4057842998407022, -0.45768993436297767, 0.3978842471498425, -0.8809687467018759, 0.2494475974694479, 0.650015886981522, 0.8207663136355303, -0.7473497941940634, -0.8248734926692955, 0.2767425610563672, -0.782550081302464, 0.32451440451432445, 0.2816816716337429, -0.0636823748503017, 0.5533031097587202, 0.46629522018378133, 0.34290129402494096, -0.5171488840682117, -0.34383931364871545, 0.48074149620456286, 0.6708373199079585, 0.2451970671734378, -0.5976895636028721, 0.5476783322425187, -0.16650117580025903, -0.3687445619968779, 0.8356578407788442, -0.9292997959870815, 0.39295545678942134, -0.8306714717956454, -0.22684371308233997, 0.7791811104144322, 0.8079374147550802, -0.3854016302245966, 0.17005096390004026, 0.5805198972467425, -0.007760033650662468, -0.902648617235154, -0.12294916871037143, -0.8502341263468289, 0.66220042919093, -0.25774042158103816, -0.9800220313391581, -0.8796577628763158, -0.6940297868297145, -0.945589048260215, -0.4641216155035659, 0.8820358911666168, 0.5703040287881336, -0.6078918742542485, -0.8319155921770214, -0.8306212406738747, 0.15203536588821476, 0.7624788868463117, -0.2912459178603166, 0.41353624443283654, 0.30116122489236896, 0.6823764076472134, 0.613537038409141, -0.7703120862944042, -0.4253485131346386, -0.2845194820296826, -0.5038288964360478, 0.5932492889809222, -0.036144092613797696, 0.555765249140407, -0.9388460840583452, -0.3841324456826809, -0.8470541799609574, -0.8239938034313894, -0.8097072757184527, 0.6942269529390748, 0.24095284860611454, 0.9822076998724645, -0.6094504648681898, 0.3916564956081441, 0.6690649823729442, -0.5349014587192467, -0.56121723161657, 0.033185359365923706, 0.30840014655954406, 0.3569053547029595, 0.08889711742637041, 0.12344022440908864, -0.5902801258279435, 0.932480522171147, 0.5435682655845844, -0.25763930919982236, 0.8324141816168211, -0.7407519850021247, -0.7261265073247638, 0.6052619788691036, 0.37702310570742137, -0.6348462422736603, 0.3938533227820482, -0.545393420710242, 0.25084679953161526, -0.9991387618604619, -0.9656525661645301, 0.006371449671644491, 0.9512974875735551, 0.4761193643752677, 0.2457296569436893, -0.5204876194359505, -0.44013945964983403, 0.9356227940245505, 0.17662712604906905, 0.50885709903985, 0.4203760111149668, 0.8731656411886386, -0.8404891542702764, 0.3939383022412155, -0.5055271082218558, 0.6183607901324102, 0.29279298073228754, 0.10131132904638895, -0.6965401422209183, -0.24205934960557518, -0.435597912736319, -0.41951787441370203, 0.32235812728556423, -0.01824906000019233, 0.9884364684625409, -0.3349853292737788, -0.804447984261627, -0.3746395378954599, -0.4097947718307604, 0.6182211714330315, 0.08896812826843536, -0.47623924146219854, -0.37360622278014244, -0.26955950714738064, -0.5642100611225618, 0.19335721569973896, 0.8612279175189521, -0.7709477199200543, 0.9805476280330667, -0.4086011355904551, 0.7678648286922898, 0.5425840648346438, -0.5180320235468565, 0.09271846239405335, 0.6940803218975293, 0.22404794814887485, 0.48987042433637495, -0.3491744052858432, 0.0889506883247535, 0.9905898349263564, -0.588554560611021, 0.7984776804411882, 0.6406325972250171, -0.3039668868514793, -0.6486185073255402, 0.15588998205424343, 0.18366821962901558, -0.9125177147404744, 0.8411130941590201, -0.1901864562858131, 0.5899093183131321, 0.2901432980402785, 0.407718507732012, 0.3443939367938116, -0.8876531163277734, 0.3635548071169481, 0.27625320364160744, -0.8189711543499671, 0.6749525678288031, 0.6985503327149207, 0.9626295038235835, 0.2894749458766632, 0.7391969385133021, 0.7415770477205339, -0.6318571801511923, 0.9684377225226022, 0.8964278938771717, 0.4392283202961931, -0.4620285195966549, -0.0036332159619627546, 0.9221037772789438, -0.9422926760412895, 0.9942839131265893, 0.8906854221584932, -0.5703404077959184, 0.23554485736085162, -0.6756376428621789, 0.3382598820356415, -0.6035924709994072, -0.5879883964008048, -0.4441722622707722, -0.023672524227856817, -0.648220369434436, -0.3846782467854024, -0.43922533410766884, -0.4116721625625095, -0.6118287781968776, -0.8269020653908192, -0.44359087091328586, -0.13274245254318573, 0.8978341327360322, 0.8323451104213753, 0.4099206050024231, -0.4121665904611729, -0.5402505947776737, -0.06386295357193972, 0.9822592858093058, -0.6151827091316506, -0.08194408125025165, 0.4613437441009616, -0.4826145293475068, 0.5379503112783599, 0.4506333055279015, 0.25529133545839744, 0.3186798138011142, -0.6796638080454529, 0.031084326155845554, -0.05535274542241431, -0.894209479709513, -0.2966376306069427, -0.2666826526229802, 0.4452859910994047, -0.49672411235637304, -0.9443012472322949, 0.3843489958071744, -0.6413234340184168, -0.46134301691155755, 0.5870251619111382, -0.75367888897209, 0.946051299909267, -0.745526065443572, 0.5052446341196719, -0.20974522918545624, -0.2376116312641765, 0.3902318032389833, 0.620736660620943, 0.4854080401356047, 0.3705693899237916, 0.9821213784873606, -0.4346763441077084, 0.9555282443167967, -0.5363279414746716, 0.20182810891525027, -0.7084417429142875, 0.5561301454918968, -0.6697662267902376, -0.35738435574214344, 0.14295607387019849, -0.20832139168246577, -0.1796564936690801, 0.9310071488225118, 0.15264822964570723, -0.740802602190803, -0.2775908644153615, 0.5258691243865685, 0.4933687818889938, -0.772750189832059, 0.8038885704938967, -0.9197468538961167, -0.26364042951708333, 0.30986007730716447, 0.8221831711025311, -0.12889570103941606, -0.5398497412671877, -0.9303170205574036, -0.47957282977291515, -0.8225361310568284, -0.7065390409449683, -0.46413692862104305, 0.7583939508833397, -0.37018356117818674, 0.22669437027706718, 0.4502566648763562, -0.3634583953900461, -0.8969052644081108, 0.46175645089818573, 0.9740831293522789, 0.3184564701571304, 0.7907774231997735, 0.3910530362009521, 0.8752290327193379, 0.2689986554996566, 0.5119570891153147, 0.03364981868113337, -0.737014208590284, -0.023325533204526572, -0.2600140670858688, 0.9132288164172329, 0.03343801187827955, -0.6798162198677522, 0.992160031518589, -0.7304606070775503, 0.5649831020888854, -0.422917879926791, 0.5568749937117097, -0.4899702126120775, 0.6129163504052384, 0.04938989570897667, -0.9827534811429215, 0.6413172765387614, -0.9245028505811081, 0.3767837167518395, 0.2712984835548429, -0.913659120503832, 0.281011494467833, -0.6013069142019598, -0.12185429921937163, 0.9663494726780146, 0.6175938320282901, 0.29293125998038305, -0.6072007818042575, -0.9326607980488406, -0.03709839800400627, -0.027865938795369027, 0.7541447250260322, 0.10957310516666019, -0.9568217963359187, -0.252026570701523, -0.34732654337045443, 0.243110874768786, -0.3463228620242971, -0.24030525535086333, 0.8520430323136023, -0.30456267977279006, -0.11256922561654026, -0.2847929632044466, 0.6172444154577554, 0.060529423026616014, 0.43998238535817724, 0.9132864431573111, -0.04652227091178118, -0.05948083645613833, -0.08724728728921649, -0.51142731122536, -0.35768290217080323, 0.8779436347110654, -0.804911577659754, -0.5641889762653127, 0.12429845540918305, -0.19974532659155386, -0.9557399036615872, 0.9897387299741773, -0.1716704296580418, 0.855254664604294, -0.6811738439139694, -0.4244140243786596, -0.1698176036438579, 0.24433364038700245, -0.8707489174791163, 0.26055965554352967, 0.33672397061157033, 0.8924654610117342, -0.08807556457199883, -0.4323879718163486, -0.9975445075629148, -0.48631306736789415, -0.6304691508598452, 0.6619923582820793, 0.3319552718128098, -0.5087999750047985, -0.376348081428064, -0.526590136389953, 0.8876599079989154, 0.11329624620618084, 0.8097861706236587, 0.9768838770627601, -0.7502653783534883, 0.7348133156976882, 0.31571611821986423, 0.6205202276319477, -0.234017145168133, 0.06044946822112984, -0.4347437019140816, -0.4914166672296538, -0.5349622009920274, 0.5066920388908576, -0.48545831352741065, 0.5331140626689723, -0.34134591238194845, 0.4720289715642261, -0.6745189610728903, 0.3085822945142178, -0.11846319437136588, -0.03682256953960561, -0.3863128775009601, 0.09142542747713467, -0.22814402056440053, -0.17223007222551834, -0.37006344586009843, -0.8482036109154405], "type": "scatter", "x": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4, 4.1, 4.2, 4.3, 4.4, 4.5, 4.6, 4.7, 4.8, 4.9, 5, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 6, 6.1, 6.2, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9, 7, 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7, 7.8, 7.9, 8, 8.1, 8.2, 8.3, 8.4, 8.5, 8.6, 8.7, 8.8, 8.9, 9, 9.1, 9.2, 9.3, 9.4, 9.5, 9.6, 9.7, 9.8, 9.9, 10, 10.1, 10.2, 10.3, 10.4, 10.5, 10.6, 10.7, 10.8, 10.9, 11, 11.1, 11.2, 11.3, 11.4, 11.5, 11.6, 11.7, 11.8, 11.9, 12, 12.1, 12.2, 12.3, 12.4, 12.5, 12.6, 12.7, 12.8, 12.9, 13, 13.1, 13.2, 13.3, 13.4, 13.5, 13.6, 13.7, 13.8, 13.9, 14, 14.1, 14.2, 14.3, 14.4, 14.5, 14.6, 14.7, 14.8, 14.9, 15, 15.1, 15.2, 15.3, 15.4, 15.5, 15.6, 15.7, 15.8, 15.9, 16, 16.1, 16.2, 16.3, 16.4, 16.5, 16.6, 16.7, 16.8, 16.9, 17, 17.1, 17.2, 17.3, 17.4, 17.5, 17.6, 17.7, 17.8, 17.9, 18, 18.1, 18.2, 18.3, 18.4, 18.5, 18.6, 18.7, 18.8, 18.9, 19, 19.1, 19.2, 19.3, 19.4, 19.5, 19.6, 19.7, 19.8, 19.9, 20, 20.1, 20.2, 20.3, 20.4, 20.5, 20.6, 20.7, 20.8, 20.9, 21, 21.1, 21.2, 21.3, 21.4, 21.5, 21.6, 21.7, 21.8, 21.9, 22, 22.1, 22.2, 22.3, 22.4, 22.5, 22.6, 22.7, 22.8, 22.9, 23, 23.1, 23.2, 23.3, 23.4, 23.5, 23.6, 23.7, 23.8, 23.9, 24, 24.1, 24.2, 24.3, 24.4, 24.5, 24.6, 24.7, 24.8, 24.9, 25, 25.1, 25.2, 25.3, 25.4, 25.5, 25.6, 25.7, 25.8, 25.9, 26, 26.1, 26.2, 26.3, 26.4, 26.5, 26.6, 26.7, 26.8, 26.9, 27, 27.1, 27.2, 27.3, 27.4, 27.5, 27.6, 27.7, 27.8, 27.9, 28, 28.1, 28.2, 28.3, 28.4, 28.5, 28.6, 28.7, 28.8, 28.9, 29, 29.1, 29.2, 29.3, 29.4, 29.5, 29.6, 29.7, 29.8, 29.9, 30, 30.1, 30.2, 30.3, 30.4, 30.5, 30.6, 30.7, 30.8, 30.9, 31, 31.1, 31.2, 31.3, 31.4, 31.5, 31.6, 31.7, 31.8, 31.9, 32, 32.1, 32.2, 32.3, 32.4, 32.5, 32.6, 32.7, 32.8, 32.9, 33, 33.1, 33.2, 33.3, 33.4, 33.5, 33.6, 33.7, 33.8, 33.9, 34, 34.1, 34.2, 34.3, 34.4, 34.5, 34.6, 34.7, 34.8, 34.9, 35, 35.1, 35.2, 35.3, 35.4, 35.5, 35.6, 35.7, 35.8, 35.9, 36, 36.1, 36.2, 36.3, 36.4, 36.5, 36.6, 36.7, 36.8, 36.9, 37, 37.1, 37.2, 37.3, 37.4, 37.5, 37.6, 37.7, 37.8, 37.9, 38, 38.1, 38.2, 38.3, 38.4, 38.5, 38.6, 38.7, 38.8, 38.9, 39, 39.1, 39.2, 39.3, 39.4, 39.5, 39.6, 39.7, 39.8, 39.9, 40, 40.1, 40.2, 40.3, 40.4, 40.5, 40.6, 40.7, 40.8, 40.9, 41, 41.1, 41.2, 41.3, 41.4, 41.5, 41.6, 41.7, 41.8, 41.9, 42, 42.1, 42.2, 42.3, 42.4, 42.5, 42.6, 42.7, 42.8, 42.9, 43, 43.1, 43.2, 43.3, 43.4, 43.5, 43.6, 43.7, 43.8, 43.9, 44, 44.1, 44.2, 44.3, 44.4, 44.5, 44.6, 44.7, 44.8, 44.9, 45, 45.1, 45.2, 45.3, 45.4, 45.5, 45.6, 45.7, 45.8, 45.9, 46, 46.1, 46.2, 46.3, 46.4, 46.5, 46.6, 46.7, 46.8, 46.9, 47, 47.1, 47.2, 47.3, 47.4, 47.5, 47.6, 47.7, 47.8, 47.9, 48, 48.1, 48.2, 48.3, 48.4, 48.5, 48.6, 48.7, 48.8, 48.9, 49, 49.1, 49.2, 49.3, 49.4, 49.5, 49.6, 49.7, 49.8, 49.9, 50], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 501, "currentCount": 501}}}, {"showlegend": true, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(173, 216, 230, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -0.0018860105821594164], "type": "scatter", "x": [0, 0.018860105821594145], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(173, 216, 230, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.0018860105821594164, -0.010515094094429116], "type": "scatter", "x": [0.018860105821594145, 0.08814155633692015], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(172, 215, 230, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.010515094094429116, -0.0032722769505194173], "type": "scatter", "x": [0.08814155633692015, 0.11475465281535317], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(172, 215, 229, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.0032722769505194173, -0.011552859633350978], "type": "scatter", "x": [0.11475465281535317, 0.1413177100670131], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(172, 214, 229, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.011552859633350978, -0.008320605818734504], "type": "scatter", "x": [0.1413177100670131, 0.145226993287471], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(171, 214, 229, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.008320605818734504, -0.015994058742102784], "type": "scatter", "x": [0.145226993287471, 0.16385994674680085], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(171, 213, 229, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.015994058742102784, -0.023806346699207], "type": "scatter", "x": [0.16385994674680085, 0.18083374084785905], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(171, 213, 229, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.023806346699207, -0.019766257815532408], "type": "scatter", "x": [0.18083374084785905, 0.18581543581343704], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(170, 213, 229, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.019766257815532408, -0.02397606096909365], "type": "scatter", "x": [0.18581543581343704, 0.19008291686822715], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(170, 212, 228, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.02397606096909365, -0.03340506141577397], "type": "scatter", "x": [0.19008291686822715, 0.2111052168274184], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(170, 212, 228, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03340506141577397, -0.03263227313646091], "type": "scatter", "x": [0.2111052168274184, 0.21137001759955845], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(169, 211, 228, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03263227313646091, -0.024692477331326745], "type": "scatter", "x": [0.21137001759955845, 0.22694656081846162], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(169, 211, 228, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.024692477331326745, -0.02952292102405933], "type": "scatter", "x": [0.22694656081846162, 0.23151047328990282], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(169, 210, 228, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.02952292102405933, -0.032743939989615854], "type": "scatter", "x": [0.23151047328990282, 0.2333291381178755], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(168, 210, 227, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.032743939989615854, -0.03424910670918972], "type": "scatter", "x": [0.2333291381178755, 0.23360109919339714], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(168, 210, 227, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03424910670918972, -0.026154555173996643], "type": "scatter", "x": [0.23360109919339714, 0.24835803378996496], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(167, 209, 227, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.026154555173996643, -0.021260963514250455], "type": "scatter", "x": [0.24835803378996496, 0.2536434543964182], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(167, 209, 227, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.021260963514250455, -0.028149814679859858], "type": "scatter", "x": [0.2536434543964182, 0.26226845580223873], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(167, 208, 227, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.028149814679859858, -0.026640006995349665], "type": "scatter", "x": [0.26226845580223873, 0.26286604012025944], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(166, 208, 227, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.026640006995349665, -0.027555377544431842], "type": "scatter", "x": [0.26286604012025944, 0.26293170554564343], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(166, 207, 226, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.027555377544431842, -0.03722089200111375], "type": "scatter", "x": [0.26293170554564343, 0.27917242773760614], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(166, 207, 226, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03722089200111375, -0.03730530419112898], "type": "scatter", "x": [0.27917242773760614, 0.2791623357188577], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(165, 206, 226, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03730530419112898, -0.034591752016773766], "type": "scatter", "x": [0.2791623357188577, 0.28084239539495703], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(165, 206, 226, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.034591752016773766, -0.042850177259287], "type": "scatter", "x": [0.28084239539495703, 0.2917455943522725], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(165, 206, 226, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.042850177259287, -0.044332074554453475], "type": "scatter", "x": [0.2917455943522725, 0.29190205864350677], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(164, 205, 225, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.044332074554453475, -0.042859837165851816], "type": "scatter", "x": [0.29190205864350677, 0.292498569809457], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(164, 205, 225, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.042859837165851816, -0.04399835065792559], "type": "scatter", "x": [0.292498569809457, 0.292551629364872], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(164, 204, 225, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.04399835065792559, -0.04158375090597729], "type": "scatter", "x": [0.292551629364872, 0.2939117351924856], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(163, 204, 225, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.04158375090597729, -0.03432988343557794], "type": "scatter", "x": [0.2939117351924856, 0.3037356535640836], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(163, 203, 225, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03432988343557794, -0.03396336230536911], "type": "scatter", "x": [0.3037356535640836, 0.30379960577614634], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(163, 203, 225, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03396336230536911, -0.028625945169950782], "type": "scatter", "x": [0.30379960577614634, 0.3090456569110115], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(162, 203, 224, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.028625945169950782, -0.03594316335909334], "type": "scatter", "x": [0.3090456569110115, 0.3169230665691686], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(162, 202, 224, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03594316335909334, -0.044204226382483315], "type": "scatter", "x": [0.3169230665691686, 0.3265959128883119], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(162, 202, 224, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.044204226382483315, -0.047174398635764205], "type": "scatter", "x": [0.3265959128883119, 0.3275390692665533], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(161, 201, 224, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.047174398635764205, -0.053308579558296765], "type": "scatter", "x": [0.3275390692665533, 0.33235532322646594], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(161, 201, 224, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.053308579558296765, -0.06096879846157687], "type": "scatter", "x": [0.33235532322646594, 0.33985731691415993], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(161, 200, 223, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.06096879846157687, -0.05297348359581058], "type": "scatter", "x": [0.33985731691415993, 0.3505428348922293], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(160, 200, 223, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.05297348359581058, -0.0545151225482827], "type": "scatter", "x": [0.3505428348922293, 0.3506464920270067], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(160, 200, 223, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.0545151225482827, -0.05036444480732832], "type": "scatter", "x": [0.3506464920270067, 0.35374128336873567], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(160, 199, 223, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.05036444480732832, -0.042738879788521346], "type": "scatter", "x": [0.35374128336873567, 0.36293758854148417], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(159, 199, 223, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.042738879788521346, -0.03410092553150033], "type": "scatter", "x": [0.36293758854148417, 0.3740734281381752], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(159, 198, 223, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03410092553150033, -0.027365914839258626], "type": "scatter", "x": [0.3740734281381752, 0.3806979728572358], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(158, 198, 222, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.027365914839258626, -0.01773913805390159], "type": "scatter", "x": [0.3806979728572358, 0.39335816110115784], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(158, 197, 222, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.01773913805390159, -0.019853184796738154], "type": "scatter", "x": [0.39335816110115784, 0.3938296610598962], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(158, 197, 222, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.019853184796738154, -0.028477500769987122], "type": "scatter", "x": [0.3938296610598962, 0.4027328956777301], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(157, 197, 222, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.028477500769987122, -0.02582742384995302], "type": "scatter", "x": [0.4027328956777301, 0.4037926890888004], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(157, 196, 222, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.02582742384995302, -0.034949763469146314], "type": "scatter", "x": [0.4037926890888004, 0.41339360297752864], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(157, 196, 221, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.034949763469146314, -0.03844522922222157], "type": "scatter", "x": [0.41339360297752864, 0.4145712238799271], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(156, 195, 221, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03844522922222157, -0.03854573817761626], "type": "scatter", "x": [0.4145712238799271, 0.4145630273338822], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(156, 195, 221, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03854573817761626, -0.031425402170410226], "type": "scatter", "x": [0.4145630273338822, 0.42129192248494185], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(156, 194, 221, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.031425402170410226, -0.03812968563030122], "type": "scatter", "x": [0.42129192248494185, 0.42609388608083243], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(155, 194, 221, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03812968563030122, -0.03441159720449127], "type": "scatter", "x": [0.42609388608083243, 0.4280476854586314], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(155, 194, 221, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03441159720449127, -0.03174279076740749], "type": "scatter", "x": [0.4280476854586314, 0.4290951000670655], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(155, 193, 220, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03174279076740749, -0.03741659952468659], "type": "scatter", "x": [0.4290951000670655, 0.4324094957325478], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(154, 193, 220, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03741659952468659, -0.03912122516001849], "type": "scatter", "x": [0.4324094957325478, 0.4325964583244541], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(154, 192, 220, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03912122516001849, -0.035070010533633594], "type": "scatter", "x": [0.4325964583244541, 0.4348575726561186], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(154, 192, 220, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.035070010533633594, -0.027651515830428405], "type": "scatter", "x": [0.4348575726561186, 0.4417353326710062], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(153, 191, 220, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.027651515830428405, -0.02249728842991053], "type": "scatter", "x": [0.4417353326710062, 0.44505576479479775], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(153, 191, 219, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.02249728842991053, -0.03233264904917073], "type": "scatter", "x": [0.44505576479479775, 0.45530325900344076], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(153, 191, 219, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03233264904917073, -0.030200760795251583], "type": "scatter", "x": [0.45530325900344076, 0.45595482683966765], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(152, 190, 219, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.030200760795251583, -0.03788037383374712], "type": "scatter", "x": [0.45595482683966765, 0.46187000767536135], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(152, 190, 219, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03788037383374712, -0.04447692259883565], "type": "scatter", "x": [0.46187000767536135, 0.4660156027529235], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(152, 189, 219, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.04447692259883565, -0.03861374346517649], "type": "scatter", "x": [0.4660156027529235, 0.4702499861763671], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(151, 189, 219, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03861374346517649, -0.044258285779657874], "type": "scatter", "x": [0.4702499861763671, 0.4731604572501534], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(151, 188, 218, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.044258285779657874, -0.03599752251513262], "type": "scatter", "x": [0.4731604572501534, 0.48108568854574874], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(151, 188, 218, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03599752251513262, -0.03780235906179498], "type": "scatter", "x": [0.48108568854574874, 0.4812877844003934], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(150, 187, 218, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03780235906179498, -0.03531467995319947], "type": "scatter", "x": [0.4812877844003934, 0.48212733403774877], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(150, 187, 218, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03531467995319947, -0.044183132032994565], "type": "scatter", "x": [0.48212733403774877, 0.48957023026406077], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(149, 187, 218, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.044183132032994565, -0.03674538380955235], "type": "scatter", "x": [0.48957023026406077, 0.4958577468353492], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(149, 186, 217, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03674538380955235, -0.039637881117925336], "type": "scatter", "x": [0.4958577468353492, 0.4964844812545668], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(149, 186, 217, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.039637881117925336, -0.03915771682067549], "type": "scatter", "x": [0.4964844812545668, 0.49654641856669346], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(148, 185, 217, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03915771682067549, -0.04355958043583013], "type": "scatter", "x": [0.49654641856669346, 0.4981443265781725], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(148, 185, 217, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.04355958043583013, -0.049253722049109064], "type": "scatter", "x": [0.4981443265781725, 0.5008882263915168], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(148, 184, 217, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.049253722049109064, -0.05166235691248823], "type": "scatter", "x": [0.5008882263915168, 0.5012279944424867], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(147, 184, 217, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.05166235691248823, -0.0501187331741035], "type": "scatter", "x": [0.5012279944424867, 0.5016262407149311], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(147, 184, 216, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.0501187331741035, -0.054483169527809815], "type": "scatter", "x": [0.5016262407149311, 0.503082316137122], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(147, 183, 216, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.054483169527809815, -0.046663703727314376], "type": "scatter", "x": [0.503082316137122, 0.5099675348139247], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(146, 183, 216, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.046663703727314376, -0.05403787711748288], "type": "scatter", "x": [0.5099675348139247, 0.5145965077195279], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(146, 182, 216, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.05403787711748288, -0.05799487738774824], "type": "scatter", "x": [0.5145965077195279, 0.515696980141307], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(146, 182, 216, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.05799487738774824, -0.05513616294151604], "type": "scatter", "x": [0.515696980141307, 0.5168128588298966], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(145, 181, 215, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.05513616294151604, -0.0634626023454369], "type": "scatter", "x": [0.5168128588298966, 0.5225907002844812], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(145, 181, 215, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.0634626023454369, -0.06720079971673304], "type": "scatter", "x": [0.5225907002844812, 0.5234684210866003], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(145, 181, 215, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.06720079971673304, -0.06802042388477707], "type": "scatter", "x": [0.5234684210866003, 0.5234263030631154], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(144, 180, 215, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.06802042388477707, -0.06504558549275653], "type": "scatter", "x": [0.5234263030631154, 0.5246606984472171], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(144, 180, 215, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.06504558549275653, -0.07434539030789507], "type": "scatter", "x": [0.5246606984472171, 0.5316911157123794], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(144, 179, 215, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.07434539030789507, -0.07705443618965006], "type": "scatter", "x": [0.5316911157123794, 0.5319985493872851], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(143, 179, 214, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.07705443618965006, -0.07584343211487386], "type": "scatter", "x": [0.5319985493872851, 0.5323134614354417], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(143, 178, 214, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.07584343211487386, -0.08474272898497284], "type": "scatter", "x": [0.5323134614354417, 0.5384364659353744], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(143, 178, 214, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.08474272898497284, -0.07808332379172019], "type": "scatter", "x": [0.5384364659353744, 0.543588694392599], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(142, 178, 214, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.07808332379172019, -0.07027101956207911], "type": "scatter", "x": [0.543588694392599, 0.5502946694441421], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(142, 177, 214, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.07027101956207911, -0.07955990924129829], "type": "scatter", "x": [0.5502946694441421, 0.5568966728286391], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(142, 177, 213, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.07955990924129829, -0.07632384125327799], "type": "scatter", "x": [0.5568966728286391, 0.558302106031005], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(141, 176, 213, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.07632384125327799, -0.07903420041322391], "type": "scatter", "x": [0.558302106031005, 0.5585856578362542], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(141, 176, 213, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.07903420041322391, -0.08326997060575955], "type": "scatter", "x": [0.5585856578362542, 0.5595853890046659], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(140, 175, 213, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.08326997060575955, -0.08083080668182159], "type": "scatter", "x": [0.5595853890046659, 0.5604828999024799], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(140, 175, 213, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.08083080668182159, -0.08248005151193151], "type": "scatter", "x": [0.5604828999024799, 0.5604852979578672], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(140, 175, 213, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.08248005151193151, -0.0906980332457028], "type": "scatter", "x": [0.5604852979578672, 0.5652680418763736], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(139, 174, 212, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.0906980332457028, -0.09233244660513687], "type": "scatter", "x": [0.5652680418763736, 0.565239435112808], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(139, 174, 212, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.09233244660513687, -0.08732881801436283], "type": "scatter", "x": [0.565239435112808, 0.566591681019098], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(139, 173, 212, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.08732881801436283, -0.08672928091115714], "type": "scatter", "x": [0.566591681019098, 0.5657938726685877], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(138, 173, 212, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.08672928091115714, -0.08949748146056322], "type": "scatter", "x": [0.5657938726685877, 0.5624531653805882], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(138, 172, 212, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.08949748146056322, -0.08383334201406811], "type": "scatter", "x": [0.5624531653805882, 0.5577729617881348], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(138, 172, 211, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.08383334201406811, -0.09410063604985629], "type": "scatter", "x": [0.5577729617881348, 0.5596509574927166], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(137, 172, 211, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.09410063604985629, -0.09180810119773461], "type": "scatter", "x": [0.5596509574927166, 0.5573299844867993], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(137, 171, 211, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.09180810119773461, -0.08225168563485624], "type": "scatter", "x": [0.5573299844867993, 0.5535696336859313], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(137, 171, 211, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.08225168563485624, -0.07950570600787006], "type": "scatter", "x": [0.5535696336859313, 0.5566784332017982], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(136, 170, 211, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.07950570600787006, -0.07679206723544461], "type": "scatter", "x": [0.5566784332017982, 0.5556575060923208], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(136, 170, 211, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.07679206723544461, -0.06479967869081601], "type": "scatter", "x": [0.5556575060923208, 0.5496851491641987], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(136, 169, 210, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.06479967869081601, -0.07391477959482647], "type": "scatter", "x": [0.5496851491641987, 0.5548387035757711], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(135, 169, 210, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.07391477959482647, -0.08791866806382646], "type": "scatter", "x": [0.5548387035757711, 0.5503667425619719], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(135, 168, 210, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.08791866806382646, -0.09175331740056698], "type": "scatter", "x": [0.5503667425619719, 0.5544681698283551], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(135, 168, 210, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.09175331740056698, -0.09526283098037236], "type": "scatter", "x": [0.5544681698283551, 0.5570455765801728], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(134, 168, 210, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.09526283098037236, -0.0976888245016842], "type": "scatter", "x": [0.5570455765801728, 0.5578163835471788], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(134, 167, 209, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.0976888245016842, -0.1098412190352843], "type": "scatter", "x": [0.5578163835471788, 0.5510503947090069], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(134, 167, 209, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.1098412190352843, -0.11931171003866027], "type": "scatter", "x": [0.5510503947090069, 0.5487818081323201], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(133, 166, 209, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.11931171003866027, -0.10844401640155243], "type": "scatter", "x": [0.5487818081323201, 0.5481488861464576], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(133, 166, 209, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.10844401640155243, -0.11876351155308139], "type": "scatter", "x": [0.5481488861464576, 0.5529087178656161], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(133, 165, 209, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.11876351155308139, -0.11535366502930472], "type": "scatter", "x": [0.5529087178656161, 0.5541284212313888], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(132, 165, 209, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.11535366502930472, -0.0991879917028076], "type": "scatter", "x": [0.5541284212313888, 0.5526236084077767], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(132, 165, 208, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.0991879917028076, -0.09089591637643707], "type": "scatter", "x": [0.5526236084077767, 0.5601686028676118], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(131, 164, 208, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.09089591637643707, -0.10108296649273292], "type": "scatter", "x": [0.5601686028676118, 0.5627711531501152], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(131, 164, 208, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.10108296649273292, -0.10107327617691265], "type": "scatter", "x": [0.5627711531501152, 0.5627585557131205], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(131, 163, 208, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.10107327617691265, -0.0968239532711825], "type": "scatter", "x": [0.5627585557131205, 0.5640021239212164], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(130, 163, 208, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.0968239532711825, -0.10612169147280881], "type": "scatter", "x": [0.5640021239212164, 0.567590667665183], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(130, 162, 207, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.10612169147280881, -0.10173803393559176], "type": "scatter", "x": [0.567590667665183, 0.5692208345514564], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(130, 162, 207, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.10173803393559176, -0.10133581697120263], "type": "scatter", "x": [0.5692208345514564, 0.5694799427082958], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(129, 162, 207, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.10133581697120263, -0.10922650819010501], "type": "scatter", "x": [0.5694799427082958, 0.5633427862988887], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(129, 161, 207, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.10922650819010501, -0.10405999822272662], "type": "scatter", "x": [0.5633427862988887, 0.5670511176486633], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(129, 161, 207, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.10405999822272662, -0.10473446315630713], "type": "scatter", "x": [0.5670511176486633, 0.5663244830846839], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(128, 160, 207, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.10473446315630713, -0.09398823202691517], "type": "scatter", "x": [0.5663244830846839, 0.5644997344789219], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(128, 160, 206, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.09398823202691517, -0.09089865784420731], "type": "scatter", "x": [0.5644997344789219, 0.5612886381305117], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(128, 159, 206, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.09089865784420731, -0.09136687872741359], "type": "scatter", "x": [0.5612886381305117, 0.5614818127833723], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(127, 159, 206, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.09136687872741359, -0.0804252828428354], "type": "scatter", "x": [0.5614818127833723, 0.5618666531262768], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(127, 159, 206, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.0804252828428354, -0.06605669074047571], "type": "scatter", "x": [0.5618666531262768, 0.5625288015058157], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(127, 158, 206, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.06605669074047571, -0.07160003493450762], "type": "scatter", "x": [0.5625288015058157, 0.5566130417144302], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(126, 158, 205, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.07160003493450762, -0.07603529161806423], "type": "scatter", "x": [0.5566130417144302, 0.5590393635822681], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(126, 157, 205, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.07603529161806423, -0.07470918603659343], "type": "scatter", "x": [0.5590393635822681, 0.5603717795586496], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(126, 157, 205, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.07470918603659343, -0.08399976281340299], "type": "scatter", "x": [0.5603717795586496, 0.5540157990744281], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(125, 156, 205, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.08399976281340299, -0.09632516269039279], "type": "scatter", "x": [0.5540157990744281, 0.5463745467645054], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(125, 156, 205, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.09632516269039279, -0.09470359497484605], "type": "scatter", "x": [0.5463745467645054, 0.5489170820446962], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(125, 156, 205, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.09470359497484605, -0.1136233697200739], "type": "scatter", "x": [0.5489170820446962, 0.5446932804467298], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(124, 155, 204, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.1136233697200739, -0.10757976840934314], "type": "scatter", "x": [0.5446932804467298, 0.5469455554209963], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(124, 155, 204, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.10757976840934314, -0.10726216715405061], "type": "scatter", "x": [0.5469455554209963, 0.5465118485478595], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(124, 154, 204, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.10726216715405061, -0.11218068120490811], "type": "scatter", "x": [0.5465118485478595, 0.5453396734068666], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(123, 154, 204, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.11218068120490811, -0.09526653048157048], "type": "scatter", "x": [0.5453396734068666, 0.5465037850642629], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(123, 153, 204, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.09526653048157048, -0.08369169058094443], "type": "scatter", "x": [0.5465037850642629, 0.5532794210272156], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(122, 153, 203, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.08369169058094443, -0.0874451979277957], "type": "scatter", "x": [0.5532794210272156, 0.5540474644613955], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(122, 152, 203, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.0874451979277957, -0.09286502429600134], "type": "scatter", "x": [0.5540474644613955, 0.5487735744625838], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(122, 152, 203, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.09286502429600134, -0.08035554186364292], "type": "scatter", "x": [0.5487735744625838, 0.5497318934573772], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(121, 152, 203, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.08035554186364292, -0.08415123062595949], "type": "scatter", "x": [0.5497318934573772, 0.5478856242219042], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(121, 151, 203, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.08415123062595949, -0.09584652323539482], "type": "scatter", "x": [0.5478856242219042, 0.5527774103491497], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(121, 151, 203, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.09584652323539482, -0.09140220616521944], "type": "scatter", "x": [0.5527774103491497, 0.5507308127785463], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(120, 150, 202, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.09140220616521944, -0.09819992179335582], "type": "scatter", "x": [0.5507308127785463, 0.5558876134091592], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(120, 150, 202, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.09819992179335582, -0.09562913212783142], "type": "scatter", "x": [0.5558876134091592, 0.5588255019128936], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(120, 149, 202, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.09562913212783142, -0.10562503104684699], "type": "scatter", "x": [0.5588255019128936, 0.5525992399407007], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(119, 149, 202, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.10562503104684699, -0.12057947876075645], "type": "scatter", "x": [0.5525992399407007, 0.5558479945166662], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(119, 149, 202, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.12057947876075645, -0.1195406957702594], "type": "scatter", "x": [0.5558479945166662, 0.5543139373944966], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(119, 148, 201, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.1195406957702594, -0.12861288189247572], "type": "scatter", "x": [0.5543139373944966, 0.5562339862925131], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(118, 148, 201, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.12861288189247572, -0.13038915933658232], "type": "scatter", "x": [0.5562339862925131, 0.5585749964457009], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(118, 147, 201, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.13038915933658232, -0.12843382672652942], "type": "scatter", "x": [0.5585749964457009, 0.5570436888651141], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(118, 147, 201, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.12843382672652942, -0.12547664694852245], "type": "scatter", "x": [0.5570436888651141, 0.5616423784761189], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(117, 146, 201, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.12547664694852245, -0.11412906434615971], "type": "scatter", "x": [0.5616423784761189, 0.5641414916246371], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(117, 146, 201, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.11412906434615971, -0.12846874635322744], "type": "scatter", "x": [0.5641414916246371, 0.5581947772197897], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(117, 146, 200, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.12846874635322744, -0.13498306572833532], "type": "scatter", "x": [0.5581947772197897, 0.5625918358321164], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(116, 145, 200, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.13498306572833532, -0.14577695724366957], "type": "scatter", "x": [0.5625918358321164, 0.5655018746207181], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(116, 145, 200, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.14577695724366957, -0.1353881515049923], "type": "scatter", "x": [0.5655018746207181, 0.5612770607082145], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(116, 144, 200, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.1353881515049923, -0.1352011108599714], "type": "scatter", "x": [0.5612770607082145, 0.5615760302231503], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(115, 144, 200, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.1352011108599714, -0.13522107273020156], "type": "scatter", "x": [0.5615760302231503, 0.5615815968219974], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(115, 143, 199, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.13522107273020156, -0.13156587458312305], "type": "scatter", "x": [0.5615815968219974, 0.5639707498550066], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(115, 143, 199, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.13156587458312305, -0.12415239871904474], "type": "scatter", "x": [0.5639707498550066, 0.5647449396372051], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(114, 143, 199, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.12415239871904474, -0.11163449302929367], "type": "scatter", "x": [0.5647449396372051, 0.5686356942052867], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(114, 142, 199, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.11163449302929367, -0.10309048778182309], "type": "scatter", "x": [0.5686356942052867, 0.5730758965234446], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(113, 142, 199, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.10309048778182309, -0.11233723238315185], "type": "scatter", "x": [0.5730758965234446, 0.5763305623382902], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(113, 141, 199, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.11233723238315185, -0.11222628116079193], "type": "scatter", "x": [0.5763305623382902, 0.5762686019858217], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(113, 141, 198, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.11222628116079193, -0.1228909417815842], "type": "scatter", "x": [0.5762686019858217, 0.5693805867531035], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(112, 140, 198, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.1228909417815842, -0.12055505735577617], "type": "scatter", "x": [0.5693805867531035, 0.567309407334321], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(112, 140, 198, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.12055505735577617, -0.11066556419570159], "type": "scatter", "x": [0.567309407334321, 0.5710718973678612], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(112, 140, 198, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.11066556419570159, -0.11388571956807177], "type": "scatter", "x": [0.5710718973678612, 0.5697196102378838], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(111, 139, 198, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.11388571956807177, -0.10000162767274684], "type": "scatter", "x": [0.5697196102378838, 0.5689437780339005], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(111, 139, 197, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.10000162767274684, -0.10565189114203415], "type": "scatter", "x": [0.5689437780339005, 0.5744694201230992], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(111, 138, 197, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.10565189114203415, -0.10867359143081692], "type": "scatter", "x": [0.5744694201230992, 0.5751378711459195], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(110, 138, 197, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.10867359143081692, -0.12011897162244703], "type": "scatter", "x": [0.5751378711459195, 0.5783529022458755], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(110, 137, 197, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.12011897162244703, -0.1190591048416224], "type": "scatter", "x": [0.5783529022458755, 0.5769492008516961], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(110, 137, 197, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.1190591048416224, -0.12444713171705195], "type": "scatter", "x": [0.5769492008516961, 0.5808840564586978], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(109, 137, 197, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.12444713171705195, -0.11871586626243738], "type": "scatter", "x": [0.5808840564586978, 0.5861348427981149], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(109, 136, 196, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.11871586626243738, -0.10740704090627727], "type": "scatter", "x": [0.5861348427981149, 0.5819998022692641], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(109, 136, 196, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.10740704090627727, -0.10424436910080527], "type": "scatter", "x": [0.5819998022692641, 0.5870818675329884], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(108, 135, 196, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.10424436910080527, -0.11815117797912826], "type": "scatter", "x": [0.5870818675329884, 0.5823469969248907], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(108, 135, 196, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.11815117797912826, -0.10494572334382762], "type": "scatter", "x": [0.5823469969248907, 0.578738127087335], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(108, 134, 196, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.10494572334382762, -0.10149114150811851], "type": "scatter", "x": [0.578738127087335, 0.5823418938285266], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(107, 134, 195, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.10149114150811851, -0.10412979693536505], "type": "scatter", "x": [0.5823418938285266, 0.5837140651170761], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(107, 133, 195, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.10412979693536505, -0.10550619905899511], "type": "scatter", "x": [0.5837140651170761, 0.5846364822254917], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(107, 133, 195, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.10550619905899511, -0.10761350938927382], "type": "scatter", "x": [0.5846364822254917, 0.5837433792052347], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(106, 133, 195, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.10761350938927382, -0.10288026309356844], "type": "scatter", "x": [0.5837433792052347, 0.5851911489144842], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(106, 132, 195, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.10288026309356844, -0.09109322781276756], "type": "scatter", "x": [0.5851911489144842, 0.5824286129452246], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(106, 132, 195, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.09109322781276756, -0.08856984327906979], "type": "scatter", "x": [0.5824286129452246, 0.582658582542484], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(105, 131, 194, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.08856984327906979, -0.09045305904359352], "type": "scatter", "x": [0.582658582542484, 0.5816550710884715], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(105, 131, 194, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.09045305904359352, -0.08832631389280894], "type": "scatter", "x": [0.5816550710884715, 0.579408055984292], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(104, 130, 194, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.08832631389280894, -0.08347612526560111], "type": "scatter", "x": [0.579408055984292, 0.5859317129327808], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(104, 130, 194, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.08347612526560111, -0.07542399937341882], "type": "scatter", "x": [0.5859317129327808, 0.5889833591470535], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(104, 130, 194, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.07542399937341882, -0.07096535224424533], "type": "scatter", "x": [0.5889833591470535, 0.5858600540361225], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(103, 129, 193, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.07096535224424533, -0.05726029235683052], "type": "scatter", "x": [0.5858600540361225, 0.5908312316012005], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(103, 129, 193, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.05726029235683052, -0.06641193981262593], "type": "scatter", "x": [0.5908312316012005, 0.5942841046306399], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(103, 128, 193, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.06641193981262593, -0.08045927339653433], "type": "scatter", "x": [0.5942841046306399, 0.5930968515658162], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(102, 128, 193, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.08045927339653433, -0.07291048922670751], "type": "scatter", "x": [0.5930968515658162, 0.5969988593336639], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(102, 127, 193, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.07291048922670751, -0.07170364626758156], "type": "scatter", "x": [0.5969988593336639, 0.5977926201888707], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(102, 127, 193, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.07170364626758156, -0.06970979606562079], "type": "scatter", "x": [0.5977926201888707, 0.5955519410349401], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(101, 127, 192, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.06970979606562079, -0.059707170173934454], "type": "scatter", "x": [0.5955519410349401, 0.594846287961178], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(101, 126, 192, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.059707170173934454, -0.05649601135156377], "type": "scatter", "x": [0.594846287961178, 0.5913031219626269], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(101, 126, 192, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.05649601135156377, -0.047257010810885715], "type": "scatter", "x": [0.5913031219626269, 0.5887847412247567], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(100, 125, 192, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.047257010810885715, -0.05331723818860464], "type": "scatter", "x": [0.5887847412247567, 0.5954615174170765], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(100, 125, 192, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.05331723818860464, -0.058915920851842926], "type": "scatter", "x": [0.5954615174170765, 0.6014112666198086], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(100, 124, 191, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.058915920851842926, -0.05427530701149671], "type": "scatter", "x": [0.6014112666198086, 0.6000921128563174], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(99, 124, 191, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.05427530701149671, -0.04874117460725958], "type": "scatter", "x": [0.6000921128563174, 0.6068182425359461], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(99, 124, 191, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.04874117460725958, -0.03517029349648814], "type": "scatter", "x": [0.6068182425359461, 0.6031823730459521], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(99, 123, 191, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03517029349648814, -0.03520747290174572], "type": "scatter", "x": [0.6031823730459521, 0.6031647666766516], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(98, 123, 191, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03520747290174572, -0.04691250796592044], "type": "scatter", "x": [0.6031647666766516, 0.6010868172336432], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(98, 122, 191, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.04691250796592044, -0.05952156569877408], "type": "scatter", "x": [0.6010868172336432, 0.5959043114133337], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(98, 122, 190, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.05952156569877408, -0.042691839816587945], "type": "scatter", "x": [0.5959043114133337, 0.6000334464178327], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(97, 121, 190, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.042691839816587945, -0.032676833629404295], "type": "scatter", "x": [0.6000334464178327, 0.5951846855466927], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(97, 121, 190, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.032676833629404295, -0.030355688249569468], "type": "scatter", "x": [0.5951846855466927, 0.5968538393391907], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(97, 121, 190, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.030355688249569468, -0.01832642732539516], "type": "scatter", "x": [0.5968538393391907, 0.5936542237129726], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(96, 120, 190, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.01832642732539516, -0.012839914958652015], "type": "scatter", "x": [0.5936542237129726, 0.5993625948155997], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(96, 120, 189, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.012839914958652015, -0.02406162321769221], "type": "scatter", "x": [0.5993625948155997, 0.6042775477025546], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(95, 119, 189, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.02406162321769221, -0.019485416446777034], "type": "scatter", "x": [0.6042775477025546, 0.6057055663528063], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(95, 119, 189, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.019485416446777034, -0.030073718626582795], "type": "scatter", "x": [0.6057055663528063, 0.6048456075981974], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(95, 118, 189, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.030073718626582795, -0.028553062927096508], "type": "scatter", "x": [0.6048456075981974, 0.6062955628481869], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(94, 118, 189, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.028553062927096508, -0.02905414606002304], "type": "scatter", "x": [0.6062955628481869, 0.6060061045418507], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(94, 118, 189, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.02905414606002304, -0.022869543928877037], "type": "scatter", "x": [0.6060061045418507, 0.6041274719067632], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(94, 117, 188, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.022869543928877037, -0.026396552214599068], "type": "scatter", "x": [0.6041274719067632, 0.607042813228274], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(93, 117, 188, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.026396552214599068, -0.03362456067270045], "type": "scatter", "x": [0.607042813228274, 0.6052438674000761], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(93, 116, 188, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03362456067270045, -0.04468891299914322], "type": "scatter", "x": [0.6052438674000761, 0.6023419597313922], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(93, 116, 188, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.04468891299914322, -0.05133606241501463], "type": "scatter", "x": [0.6023419597313922, 0.6027781827147367], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(92, 115, 188, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.05133606241501463, -0.04213558550613026], "type": "scatter", "x": [0.6027781827147367, 0.6013746251676012], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(92, 115, 187, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.04213558550613026, -0.047794859428557365], "type": "scatter", "x": [0.6013746251676012, 0.5984236861817299], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(92, 114, 187, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.047794859428557365, -0.03624548298592937], "type": "scatter", "x": [0.5984236861817299, 0.6071902941350138], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(91, 114, 187, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03624548298592937, -0.03590789065869838], "type": "scatter", "x": [0.6071902941350138, 0.607012919314394], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(91, 114, 187, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03590789065869838, -0.0523089489091031], "type": "scatter", "x": [0.607012919314394, 0.6053810163215547], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(91, 113, 187, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.0523089489091031, -0.04676234632818689], "type": "scatter", "x": [0.6053810163215547, 0.5997797482952649], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(90, 113, 187, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.04676234632818689, -0.05478984861438871], "type": "scatter", "x": [0.5997797482952649, 0.5992068462638733], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(90, 112, 186, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.05478984861438871, -0.04030092218210193], "type": "scatter", "x": [0.5992068462638733, 0.5977719089457426], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(90, 112, 186, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.04030092218210193, -0.037142803768594176], "type": "scatter", "x": [0.5977719089457426, 0.5976106394391428], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(89, 111, 186, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.037142803768594176, -0.04969700728736048], "type": "scatter", "x": [0.5976106394391428, 0.5934607396989997], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(89, 111, 186, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.04969700728736048, -0.061512443662712704], "type": "scatter", "x": [0.5934607396989997, 0.5879496064365403], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(89, 111, 186, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.061512443662712704, -0.060354022431940546], "type": "scatter", "x": [0.5879496064365403, 0.5874188911357948], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(88, 110, 185, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.060354022431940546, -0.06769663268216658], "type": "scatter", "x": [0.5874188911357948, 0.5890964444896738], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(88, 110, 185, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.06769663268216658, -0.07156825949763661], "type": "scatter", "x": [0.5890964444896738, 0.5860576467214633], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(88, 109, 185, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.07156825949763661, -0.06287837998594047], "type": "scatter", "x": [0.5860576467214633, 0.5934097565726665], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(87, 109, 185, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.06287837998594047, -0.061561371012789474], "type": "scatter", "x": [0.5934097565726665, 0.5916707508855117], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(87, 108, 185, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.061561371012789474, -0.05052640304535508], "type": "scatter", "x": [0.5916707508855117, 0.6007352323583804], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(86, 108, 184, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.05052640304535508, -0.04611007313779134], "type": "scatter", "x": [0.6007352323583804, 0.5964044945825214], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(86, 108, 184, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.04611007313779134, -0.04505342914277774], "type": "scatter", "x": [0.5964044945825214, 0.5977641296769182], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(86, 107, 184, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.04505342914277774, -0.037050184278620925], "type": "scatter", "x": [0.5977641296769182, 0.6002402750620671], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(85, 107, 184, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.037050184278620925, -0.032430284200697906], "type": "scatter", "x": [0.6002402750620671, 0.5946611264055695], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(85, 106, 184, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.032430284200697906, -0.02270652194799421], "type": "scatter", "x": [0.5946611264055695, 0.5885865308323823], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(85, 106, 184, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.02270652194799421, -0.008825420860721769], "type": "scatter", "x": [0.5885865308323823, 0.5889625897489196], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(84, 105, 183, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.008825420860721769, 0.002870949103369129], "type": "scatter", "x": [0.5889625897489196, 0.5817410275086329], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(84, 105, 183, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.002870949103369129, 0.012410869501768536], "type": "scatter", "x": [0.5817410275086329, 0.5818277115858326], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(84, 105, 183, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.012410869501768536, 9.876653724393503e-05], "type": "scatter", "x": [0.5818277115858326, 0.576239661101828], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(83, 104, 183, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [9.876653724393503e-05, -0.004714766867389868], "type": "scatter", "x": [0.576239661101828, 0.5734320402009307], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(83, 104, 183, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.004714766867389868, 0.011270050224416177], "type": "scatter", "x": [0.5734320402009307, 0.5787033866116331], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(83, 103, 182, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.011270050224416177, 0.013703660540076183], "type": "scatter", "x": [0.5787033866116331, 0.575625252043259], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(82, 103, 182, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.013703660540076183, 0.029994649751226808], "type": "scatter", "x": [0.575625252043259, 0.5745401739674366], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(82, 102, 182, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.029994649751226808, 0.034880622064594836], "type": "scatter", "x": [0.5745401739674366, 0.5776576022012231], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(82, 102, 182, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.034880622064594836, 0.02421616432761693], "type": "scatter", "x": [0.5776576022012231, 0.5739213648157792], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(81, 102, 182, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.02421616432761693, 0.02064243843296469], "type": "scatter", "x": [0.5739213648157792, 0.5770098872164798], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(81, 101, 182, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.02064243843296469, 0.018065975809178757], "type": "scatter", "x": [0.5770098872164798, 0.5758117951847035], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(81, 101, 181, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.018065975809178757, 0.016891045756545226], "type": "scatter", "x": [0.5758117951847035, 0.5753479953620962], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(80, 100, 181, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.016891045756545226, 0.0009421045326683509], "type": "scatter", "x": [0.5753479953620962, 0.5788092903550704], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(80, 100, 181, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.0009421045326683509, 0.0032178650901671445], "type": "scatter", "x": [0.5788092903550704, 0.581682478692088], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(80, 99, 181, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.0032178650901671445, 0.009019121390253055], "type": "scatter", "x": [0.581682478692088, 0.5767620107210838], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(79, 99, 181, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.009019121390253055, 0.019171699704730757], "type": "scatter", "x": [0.5767620107210838, 0.5779731039354662], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(79, 98, 180, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.019171699704730757, 0.02491832750543037], "type": "scatter", "x": [0.5779731039354662, 0.5777799105505139], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(79, 98, 180, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.02491832750543037, 0.03403380154711097], "type": "scatter", "x": [0.5777799105505139, 0.5765430419510552], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(78, 98, 180, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.03403380154711097, 0.031545248025239864], "type": "scatter", "x": [0.5765430419510552, 0.5746388255691425], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(78, 97, 180, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.031545248025239864, 0.023030157788100105], "type": "scatter", "x": [0.5746388255691425, 0.5819148234671991], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(78, 97, 180, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.023030157788100105, 0.021108053367865517], "type": "scatter", "x": [0.5819148234671991, 0.5804529946952476], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(77, 96, 180, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.021108053367865517, 0.03325904624486504], "type": "scatter", "x": [0.5804529946952476, 0.5728227524346521], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(77, 96, 179, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.03325904624486504, 0.02891065915819218], "type": "scatter", "x": [0.5728227524346521, 0.5776533376841054], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(76, 95, 179, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.02891065915819218, 0.04413072663608978], "type": "scatter", "x": [0.5776533376841054, 0.5743819267348451], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(76, 95, 179, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.04413072663608978, 0.05935616799755288], "type": "scatter", "x": [0.5743819267348451, 0.5713088693257289], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(76, 95, 179, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.05935616799755288, 0.07707953579297323], "type": "scatter", "x": [0.5713088693257289, 0.5715671197562899], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(75, 94, 179, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.07707953579297323, 0.07303201572234913], "type": "scatter", "x": [0.5715671197562899, 0.5685779789818544], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(75, 94, 178, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.07303201572234913, 0.07801445662142101], "type": "scatter", "x": [0.5685779789818544, 0.5722356186915901], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(75, 93, 178, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.07801445662142101, 0.0756081500999017], "type": "scatter", "x": [0.5722356186915901, 0.568891155969518], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(74, 93, 178, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.0756081500999017, 0.07538408294707168], "type": "scatter", "x": [0.568891155969518, 0.5691680483025913], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(74, 92, 178, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.07538408294707168, 0.08115189521621627], "type": "scatter", "x": [0.5691680483025913, 0.5752949551085451], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(74, 92, 178, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.08115189521621627, 0.08342552433125854], "type": "scatter", "x": [0.5752949551085451, 0.5780844409761156], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(73, 92, 178, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.08342552433125854, 0.09316682212141293], "type": "scatter", "x": [0.5780844409761156, 0.575762634807023], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(73, 91, 177, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.09316682212141293, 0.09415870924161208], "type": "scatter", "x": [0.575762634807023, 0.5747083893490132], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(73, 91, 177, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.09415870924161208, 0.09379052348833321], "type": "scatter", "x": [0.5747083893490132, 0.5747596379584844], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(72, 90, 177, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.09379052348833321, 0.09992755979552723], "type": "scatter", "x": [0.5747596379584844, 0.5803237927245416], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(72, 90, 177, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.09992755979552723, 0.08693557948808472], "type": "scatter", "x": [0.5803237927245416, 0.5889907565042621], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(72, 89, 177, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.08693557948808472, 0.0959894474450869], "type": "scatter", "x": [0.5889907565042621, 0.5959389578930098], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(71, 89, 176, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.0959894474450869, 0.10366189942258096], "type": "scatter", "x": [0.5959389578930098, 0.6012115915791231], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(71, 89, 176, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.10366189942258096, 0.10386129660290119], "type": "scatter", "x": [0.6012115915791231, 0.6009823776544182], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(71, 88, 176, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.10386129660290119, 0.09689193995479826], "type": "scatter", "x": [0.6009823776544182, 0.5952902318447544], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(70, 88, 176, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.09689193995479826, 0.08469988087033062], "type": "scatter", "x": [0.5952902318447544, 0.5985259092374718], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(70, 87, 176, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.08469988087033062, 0.09065887278268527], "type": "scatter", "x": [0.5985259092374718, 0.5980493437084241], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(70, 87, 176, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.09065887278268527, 0.07629880625652298], "type": "scatter", "x": [0.5980493437084241, 0.5972986459472688], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(69, 86, 175, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.07629880625652298, 0.07782644214253617], "type": "scatter", "x": [0.5972986459472688, 0.595380140831622], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(69, 86, 175, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.07782644214253617, 0.08064598459307609], "type": "scatter", "x": [0.595380140831622, 0.5921935001302958], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(69, 86, 175, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.08064598459307609, 0.07435663956210649], "type": "scatter", "x": [0.5921935001302958, 0.5899009148247878], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(68, 85, 175, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.07435663956210649, 0.06410420481068792], "type": "scatter", "x": [0.5899009148247878, 0.5934858941093384], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(68, 85, 175, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.06410420481068792, 0.0666058847655705], "type": "scatter", "x": [0.5934858941093384, 0.5910320819309427], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(67, 84, 174, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.0666058847655705, 0.05827509819667332], "type": "scatter", "x": [0.5910320819309427, 0.5922428470738483], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(67, 84, 174, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.05827509819667332, 0.05961231077815064], "type": "scatter", "x": [0.5922428470738483, 0.5910157609080517], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(67, 83, 174, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.05961231077815064, 0.05098555500086571], "type": "scatter", "x": [0.5910157609080517, 0.5944820659703883], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(66, 83, 174, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.05098555500086571, 0.05270792196556214], "type": "scatter", "x": [0.5944820659703883, 0.5916516232629534], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(66, 83, 174, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.05270792196556214, 0.05792853891807458], "type": "scatter", "x": [0.5916516232629534, 0.5848391094609363], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(66, 82, 174, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.05792853891807458, 0.05653739989592628], "type": "scatter", "x": [0.5848391094609363, 0.5851283669772631], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(65, 82, 173, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.05653739989592628, 0.05600276634755105], "type": "scatter", "x": [0.5851283669772631, 0.5843264392511932], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(65, 81, 173, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.05600276634755105, 0.05956502380801213], "type": "scatter", "x": [0.5843264392511932, 0.587987853621471], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(65, 81, 173, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.05956502380801213, 0.06120693328859947], "type": "scatter", "x": [0.587987853621471, 0.5887417164537798], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(64, 80, 173, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.06120693328859947, 0.06229014357834724], "type": "scatter", "x": [0.5887417164537798, 0.5877594906534408], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(64, 80, 173, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.06229014357834724, 0.06128903222706884], "type": "scatter", "x": [0.5877594906534408, 0.5887083985967003], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(64, 79, 172, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.06128903222706884, 0.05129417475110394], "type": "scatter", "x": [0.5887083985967003, 0.5821624096885615], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(63, 79, 172, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.05129417475110394, 0.0593504963487063], "type": "scatter", "x": [0.5821624096885615, 0.589443251367986], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(63, 79, 172, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.0593504963487063, 0.0481100982669913], "type": "scatter", "x": [0.589443251367986, 0.5914986574629961], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(63, 78, 172, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.0481100982669913, 0.04308689734333911], "type": "scatter", "x": [0.5914986574629961, 0.5904373010552345], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(62, 78, 172, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.04308689734333911, 0.038968678372462345], "type": "scatter", "x": [0.5904373010552345, 0.5860087265991744], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(62, 77, 172, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.038968678372462345, 0.042547424621690026], "type": "scatter", "x": [0.5860087265991744, 0.5816602739780288], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(62, 77, 171, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.042547424621690026, 0.043987544712061476], "type": "scatter", "x": [0.5816602739780288, 0.5827163822728046], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(61, 76, 171, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.043987544712061476, 0.05354914884955905], "type": "scatter", "x": [0.5827163822728046, 0.5814517865520598], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(61, 76, 171, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.05354914884955905, 0.049918454302818924], "type": "scatter", "x": [0.5814517865520598, 0.5790178147833627], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(61, 76, 171, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.049918454302818924, 0.0501773226335072], "type": "scatter", "x": [0.5790178147833627, 0.5791332716363264], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(60, 75, 171, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.0501773226335072, 0.04236757126258879], "type": "scatter", "x": [0.5791332716363264, 0.583684685988351], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(60, 75, 170, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.04236757126258879, 0.049643815946356425], "type": "scatter", "x": [0.583684685988351, 0.5788960390781748], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(60, 74, 170, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.049643815946356425, 0.051510881988188026], "type": "scatter", "x": [0.5788960390781748, 0.5782464499362643], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(59, 74, 170, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.051510881988188026, 0.04692476631845608], "type": "scatter", "x": [0.5782464499362643, 0.5839393865429836], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(59, 73, 170, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.04692476631845608, 0.04815356875652368], "type": "scatter", "x": [0.5839393865429836, 0.5830765746305632], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(58, 73, 170, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.04815356875652368, 0.04226316095743824], "type": "scatter", "x": [0.5830765746305632, 0.5832538033437379], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(58, 73, 170, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.04226316095743824, 0.04689851146843421], "type": "scatter", "x": [0.5832538033437379, 0.5846084067727944], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(58, 72, 169, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.04689851146843421, 0.032046905660245074], "type": "scatter", "x": [0.5846084067727944, 0.5792881974156167], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(57, 72, 169, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.032046905660245074, 0.02595374648065991], "type": "scatter", "x": [0.5792881974156167, 0.5863492352843499], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(57, 71, 169, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.02595374648065991, 0.03784171628134792], "type": "scatter", "x": [0.5863492352843499, 0.5813731992503964], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(57, 71, 169, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.03784171628134792, 0.03517487732011835], "type": "scatter", "x": [0.5813731992503964, 0.5838906272736825], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(56, 70, 169, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.03517487732011835, 0.03465939486931038], "type": "scatter", "x": [0.5838906272736825, 0.5843100364904055], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(56, 70, 168, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.03465939486931038, 0.03434743477409144], "type": "scatter", "x": [0.5843100364904055, 0.584003576137711], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(56, 70, 168, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.03434743477409144, 0.025920964601686195], "type": "scatter", "x": [0.584003576137711, 0.589263013801638], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(55, 69, 168, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.025920964601686195, 0.040143870015400845], "type": "scatter", "x": [0.589263013801638, 0.5941644239116389], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(55, 69, 168, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.040143870015400845, 0.036424671588766555], "type": "scatter", "x": [0.5941644239116389, 0.5979325471744736], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(55, 68, 168, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.036424671588766555, 0.04417271300143708], "type": "scatter", "x": [0.5979325471744736, 0.5989466544359544], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(54, 68, 168, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.04417271300143708, 0.04771736132080814], "type": "scatter", "x": [0.5989466544359544, 0.596353063510564], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(54, 67, 167, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.04771736132080814, 0.043407672851168984], "type": "scatter", "x": [0.596353063510564, 0.5968469761824948], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(54, 67, 167, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.043407672851168984, 0.03869771170836929], "type": "scatter", "x": [0.5968469761824948, 0.5921681070718666], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(53, 67, 167, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.03869771170836929, 0.05261455551377926], "type": "scatter", "x": [0.5921681070718666, 0.5892943854127386], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(53, 66, 167, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.05261455551377926, 0.047663159634804636], "type": "scatter", "x": [0.5892943854127386, 0.5834702711680922], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(53, 66, 167, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.047663159634804636, 0.0554548648899471], "type": "scatter", "x": [0.5834702711680922, 0.5825175112098311], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(52, 65, 166, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.0554548648899471, 0.057597430387897816], "type": "scatter", "x": [0.5825175112098311, 0.5855504381655432], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(52, 65, 166, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.057597430387897816, 0.047824826298474295], "type": "scatter", "x": [0.5855504381655432, 0.5855294875851871], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(52, 64, 166, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.047824826298474295, 0.06256042897711084], "type": "scatter", "x": [0.5855294875851871, 0.5896724910574539], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(51, 64, 166, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.06256042897711084, 0.05626996493842358], "type": "scatter", "x": [0.5896724910574539, 0.5926950244074806], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(51, 64, 166, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.05626996493842358, 0.05134744280860079], "type": "scatter", "x": [0.5926950244074806, 0.5893791786226996], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(51, 63, 166, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.05134744280860079, 0.04202254589796917], "type": "scatter", "x": [0.5893791786226996, 0.5939779659141544], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(50, 63, 165, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.04202254589796917, 0.042685143109524384], "type": "scatter", "x": [0.5939779659141544, 0.5945193081911144], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(50, 62, 165, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.042685143109524384, 0.03947922489448044], "type": "scatter", "x": [0.5945193081911144, 0.5975106003119992], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(49, 62, 165, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.03947922489448044, 0.03501587445381147], "type": "scatter", "x": [0.5975106003119992, 0.598802963809706], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(49, 61, 165, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.03501587445381147, 0.026539536843249896], "type": "scatter", "x": [0.598802963809706, 0.591089377952077], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(49, 61, 165, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.026539536843249896, 0.030341868532535447], "type": "scatter", "x": [0.591089377952077, 0.5883090968863746], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(48, 60, 164, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.030341868532535447, 0.020560526791432766], "type": "scatter", "x": [0.5883090968863746, 0.5835207575649842], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(48, 60, 164, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.020560526791432766, 0.02346427230740771], "type": "scatter", "x": [0.5835207575649842, 0.5873474999292934], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(48, 60, 164, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.02346427230740771, 0.028030423472379575], "type": "scatter", "x": [0.5873474999292934, 0.5865506414094445], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(47, 59, 164, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.028030423472379575, 0.027108582523726946], "type": "scatter", "x": [0.5865506414094445, 0.5876961465437269], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(47, 59, 164, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.027108582523726946, 0.0227737740590309], "type": "scatter", "x": [0.5876961465437269, 0.588334984573437], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(47, 58, 164, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.0227737740590309, 0.02619578310660643], "type": "scatter", "x": [0.588334984573437, 0.5902722727994189], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(46, 58, 163, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.02619578310660643, 0.040254648072901106], "type": "scatter", "x": [0.5902722727994189, 0.5844017631704845], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(46, 57, 163, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.040254648072901106, 0.02411601523299032], "type": "scatter", "x": [0.5844017631704845, 0.5843460795484058], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(46, 57, 163, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.02411601523299032, 0.03405676550078742], "type": "scatter", "x": [0.5843460795484058, 0.5890997374416304], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(45, 57, 163, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.03405676550078742, 0.01896020377869493], "type": "scatter", "x": [0.5890997374416304, 0.5940342321790067], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(45, 56, 163, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.01896020377869493, 0.01342236650312131], "type": "scatter", "x": [0.5940342321790067, 0.5940619148955426], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(45, 56, 162, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.01342236650312131, 0.012443782198872835], "type": "scatter", "x": [0.5940619148955426, 0.5934861602709398], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(44, 55, 162, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.012443782198872835, 0.01722167454196003], "type": "scatter", "x": [0.5934861602709398, 0.5980909069796599], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(44, 55, 162, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.01722167454196003, 0.024809248694843605], "type": "scatter", "x": [0.5980909069796599, 0.5912694384897477], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(44, 54, 162, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.024809248694843605, 0.015775203211002245], "type": "scatter", "x": [0.5912694384897477, 0.5929406698999606], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(43, 54, 162, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.015775203211002245, 0.0037095009690121363], "type": "scatter", "x": [0.5929406698999606, 0.5998229431874167], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(43, 54, 162, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.0037095009690121363, 0.007103484214782656], "type": "scatter", "x": [0.5998229431874167, 0.5960694081387704], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(43, 53, 161, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.007103484214782656, -0.007871402774073657], "type": "scatter", "x": [0.5960694081387704, 0.5979293391015443], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(42, 53, 161, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.007871402774073657, -0.021922296510672554], "type": "scatter", "x": [0.5979293391015443, 0.597670494672955], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(42, 52, 161, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.021922296510672554, -0.03618996083511882], "type": "scatter", "x": [0.597670494672955, 0.5909216129188117], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(42, 52, 161, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03618996083511882, -0.031500770785052055], "type": "scatter", "x": [0.5909216129188117, 0.5953757324802079], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(41, 51, 161, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.031500770785052055, -0.042594575781966945], "type": "scatter", "x": [0.5953757324802079, 0.5911910409432762], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(41, 51, 160, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.042594575781966945, -0.04774340255640161], "type": "scatter", "x": [0.5911910409432762, 0.5865161497851046], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(40, 51, 160, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.04774340255640161, -0.03692226410612613], "type": "scatter", "x": [0.5865161497851046, 0.585612203709072], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(40, 50, 160, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03692226410612613, -0.050241225285252614], "type": "scatter", "x": [0.585612203709072, 0.5776070571090643], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(40, 50, 160, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.050241225285252614, -0.06817455686810543], "type": "scatter", "x": [0.5776070571090643, 0.575754739324426], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(39, 49, 160, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.06817455686810543, -0.0679492755620855], "type": "scatter", "x": [0.575754739324426, 0.5759596522736405], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(39, 49, 160, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.0679492755620855, -0.05358815907259617], "type": "scatter", "x": [0.5759596522736405, 0.5838839954947845], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(39, 48, 159, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.05358815907259617, -0.050367262211405237], "type": "scatter", "x": [0.5838839954947845, 0.5850495601163305], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(38, 48, 159, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.050367262211405237, -0.05168052575219694], "type": "scatter", "x": [0.5850495601163305, 0.5829883636629511], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(38, 48, 159, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.05168052575219694, -0.03834706862977452], "type": "scatter", "x": [0.5829883636629511, 0.5776363600543564], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(38, 47, 159, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03834706862977452, -0.03953761743384704], "type": "scatter", "x": [0.5776363600543564, 0.57560565809139], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(37, 47, 159, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03953761743384704, -0.04575448510043541], "type": "scatter", "x": [0.57560565809139, 0.5687739807178768], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(37, 46, 158, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.04575448510043541, -0.03493151013132307], "type": "scatter", "x": [0.5687739807178768, 0.568988278127738], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(37, 46, 158, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03493151013132307, -0.03695046051812025], "type": "scatter", "x": [0.568988278127738, 0.5683767131871871], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(36, 45, 158, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03695046051812025, -0.03756422617540131], "type": "scatter", "x": [0.5683767131871871, 0.5691060417146854], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(36, 45, 158, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03756422617540131, -0.04118008032780299], "type": "scatter", "x": [0.5691060417146854, 0.5678413717608337], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(36, 44, 158, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.04118008032780299, -0.03774429628866761], "type": "scatter", "x": [0.5678413717608337, 0.5654384075472054], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(35, 44, 158, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03774429628866761, -0.02273212416048722], "type": "scatter", "x": [0.5654384075472054, 0.57058700449716], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(35, 44, 157, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.02273212416048722, -0.0179560214189967], "type": "scatter", "x": [0.57058700449716, 0.5690204734279408], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(35, 43, 157, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.0179560214189967, -0.02451745837539566], "type": "scatter", "x": [0.5690204734279408, 0.5728571544163045], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(34, 43, 157, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.02451745837539566, -0.008113654365865412], "type": "scatter", "x": [0.5728571544163045, 0.5782775358274483], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(34, 42, 157, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.008113654365865412, -0.011571477968786896], "type": "scatter", "x": [0.5782775358274483, 0.5815763541005919], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(34, 42, 157, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.011571477968786896, -0.0015293936068213566], "type": "scatter", "x": [0.5815763541005919, 0.5827860421930293], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(33, 41, 156, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.0015293936068213566, -0.0016418507804641714], "type": "scatter", "x": [0.5827860421930293, 0.5828670641043198], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(33, 41, 156, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.0016418507804641714, 0.010045186938621697], "type": "scatter", "x": [0.5828670641043198, 0.5822251093817824], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(33, 41, 156, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.010045186938621697, 0.01341450546640912], "type": "scatter", "x": [0.5822251093817824, 0.5782944374951039], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(32, 40, 156, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.01341450546640912, 0.023979577679594365], "type": "scatter", "x": [0.5782944374951039, 0.5795104836058386], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(32, 40, 156, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.023979577679594365, 0.02580090116211599], "type": "scatter", "x": [0.5795104836058386, 0.5792991222234806], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(31, 39, 156, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.02580090116211599, 0.0069950250233264556], "type": "scatter", "x": [0.5792991222234806, 0.5812259224099058], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(31, 39, 155, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.0069950250233264556, 0.005084746684500319], "type": "scatter", "x": [0.5812259224099058, 0.5787947312749385], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(31, 38, 155, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.005084746684500319, -0.008259487871334993], "type": "scatter", "x": [0.5787947312749385, 0.5847192620294062], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(30, 38, 155, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.008259487871334993, -0.00036998479920486105], "type": "scatter", "x": [0.5847192620294062, 0.5845369212614578], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(30, 38, 155, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.00036998479920486105, 0.007745505984120304], "type": "scatter", "x": [0.5845369212614578, 0.582596108896789], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(30, 37, 155, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.007745505984120304, -0.000752455685198632], "type": "scatter", "x": [0.582596108896789, 0.5898042952517706], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(29, 37, 154, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.000752455685198632, -0.007764933598613362], "type": "scatter", "x": [0.5898042952517706, 0.5821173726459619], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(29, 36, 154, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.007764933598613362, -0.007626175649316447], "type": "scatter", "x": [0.5821173726459619, 0.5819727571934189], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(29, 36, 154, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.007626175649316447, -0.008025277829007646], "type": "scatter", "x": [0.5819727571934189, 0.5820379183930324], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(28, 35, 154, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.008025277829007646, -0.002975220543237116], "type": "scatter", "x": [0.5820379183930324, 0.5883086034299603], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(28, 35, 154, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.002975220543237116, 0.008026863070520857], "type": "scatter", "x": [0.5883086034299603, 0.5895345002556497], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(28, 35, 154, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.008026863070520857, 0.0055766725575410805], "type": "scatter", "x": [0.5895345002556497, 0.5878164789813338], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(27, 34, 153, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.0055766725575410805, -0.00500166831578051], "type": "scatter", "x": [0.5878164789813338, 0.5892429979759021], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(27, 34, 153, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.00500166831578051, -0.016881189650852887], "type": "scatter", "x": [0.5892429979759021, 0.595879881344713], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(27, 33, 153, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.016881189650852887, -0.020438971768904093], "type": "scatter", "x": [0.595879881344713, 0.5949174650613184], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(26, 33, 153, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.020438971768904093, -0.013920993076403244], "type": "scatter", "x": [0.5949174650613184, 0.5911808214699558], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(26, 32, 153, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.013920993076403244, -0.006690389087701378], "type": "scatter", "x": [0.5911808214699558, 0.5961378468214297], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(26, 32, 152, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.006690389087701378, -0.005041130581810633], "type": "scatter", "x": [0.5961378468214297, 0.5962299915427052], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(25, 32, 152, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.005041130581810633, -0.00566725374807469], "type": "scatter", "x": [0.5962299915427052, 0.5972052500519984], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(25, 31, 152, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.00566725374807469, -0.0052211431490204905], "type": "scatter", "x": [0.5972052500519984, 0.5970023282161177], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(25, 31, 152, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.0052211431490204905, -0.006027582056495233], "type": "scatter", "x": [0.5970023282161177, 0.5974134074373463], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(24, 30, 152, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.006027582056495233, -0.00804933321980142], "type": "scatter", "x": [0.5974134074373463, 0.5962115450681461], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(24, 30, 152, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.00804933321980142, -0.006545320716480665], "type": "scatter", "x": [0.5962115450681461, 0.5951551209045048], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(24, 29, 151, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.006545320716480665, 0.0004946392023336488], "type": "scatter", "x": [0.5951551209045048, 0.588072125049005], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(23, 29, 151, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.0004946392023336488, 0.005171579567397931], "type": "scatter", "x": [0.588072125049005, 0.5929949385999751], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(23, 29, 151, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.005171579567397931, 0.008539187109854199], "type": "scatter", "x": [0.5929949385999751, 0.5902362320606254], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(22, 28, 151, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.008539187109854199, 0.012026925022804374], "type": "scatter", "x": [0.5902362320606254, 0.5884594137758259], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(22, 28, 151, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.012026925022804374, 0.0033087437716485236], "type": "scatter", "x": [0.5884594137758259, 0.5863087931335582], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(22, 27, 150, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.0033087437716485236, 0.017017976815946974], "type": "scatter", "x": [0.5863087931335582, 0.584454632394768], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(21, 27, 150, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.017017976815946974, 0.008162758047120465], "type": "scatter", "x": [0.584454632394768, 0.5768959375729733], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(21, 26, 150, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.008162758047120465, 0.020017842555137957], "type": "scatter", "x": [0.5768959375729733, 0.5734218606868102], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(21, 26, 150, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.020017842555137957, 0.024098260645514357], "type": "scatter", "x": [0.5734218606868102, 0.5783402686985201], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(20, 25, 150, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.024098260645514357, 0.025730490228251104], "type": "scatter", "x": [0.5783402686985201, 0.5779037985531114], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(20, 25, 150, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.025730490228251104, 0.027511798176331485], "type": "scatter", "x": [0.5779037985531114, 0.577358158095925], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(20, 25, 149, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.027511798176331485, 0.022737007271049485], "type": "scatter", "x": [0.577358158095925, 0.5763015643318052], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(19, 24, 149, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.022737007271049485, 0.011415367552586438], "type": "scatter", "x": [0.5763015643318052, 0.5755553821409842], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(19, 24, 149, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.011415367552586438, 0.0029844581295223626], "type": "scatter", "x": [0.5755553821409842, 0.5747163749234885], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(19, 23, 149, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.0029844581295223626, 0.0080582005773951], "type": "scatter", "x": [0.5747163749234885, 0.5802076678144158], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(18, 23, 149, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.0080582005773951, -0.00981212898407605], "type": "scatter", "x": [0.5802076678144158, 0.5774170871362744], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(18, 22, 148, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.00981212898407605, -0.011107255305652087], "type": "scatter", "x": [0.5774170871362744, 0.578523853968683], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(18, 22, 148, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.011107255305652087, -0.019419553194728222], "type": "scatter", "x": [0.578523853968683, 0.5704095303510144], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(17, 22, 148, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.019419553194728222, -0.016053727045897047], "type": "scatter", "x": [0.5704095303510144, 0.5683177943607685], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(17, 21, 148, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.016053727045897047, -0.02762940717166542], "type": "scatter", "x": [0.5683177943607685, 0.5755775702872986], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(17, 21, 148, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.02762940717166542, -0.010647602442780766], "type": "scatter", "x": [0.5755775702872986, 0.58031999813374], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(16, 20, 148, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.010647602442780766, -0.01792560819428015], "type": "scatter", "x": [0.58031999813374, 0.5776979141535518], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(16, 20, 147, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.01792560819428015, -0.0026753992803348315], "type": "scatter", "x": [0.5776979141535518, 0.5804390869413388], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(16, 19, 147, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.0026753992803348315, -0.0059132941620530935], "type": "scatter", "x": [0.5804390869413388, 0.5833336548096927], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(15, 19, 147, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.0059132941620530935, -0.011586995144541676], "type": "scatter", "x": [0.5833336548096927, 0.5846288541614888], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(15, 19, 147, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.011586995144541676, -0.011201957264155595], "type": "scatter", "x": [0.5846288541614888, 0.5845106430494266], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(15, 18, 147, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.011201957264155595, -0.00696205592359477], "type": "scatter", "x": [0.5845106430494266, 0.5848140542472128], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(14, 18, 146, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.00696205592359477, -0.024979616586611034], "type": "scatter", "x": [0.5848140542472128, 0.5833776484498818], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(14, 17, 146, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.024979616586611034, -0.02390050232763281], "type": "scatter", "x": [0.5833776484498818, 0.583809183972678], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(13, 17, 146, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.02390050232763281, -0.013125236599609078], "type": "scatter", "x": [0.583809183972678, 0.5803775671125178], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(13, 16, 146, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.013125236599609078, -0.0014246733453381344], "type": "scatter", "x": [0.5803775671125178, 0.5867513372576859], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(13, 16, 146, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.0014246733453381344, -0.007564120234923819], "type": "scatter", "x": [0.5867513372576859, 0.5843855133455618], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(12, 16, 146, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.007564120234923819, -0.016821687771977248], "type": "scatter", "x": [0.5843855133455618, 0.5837021143327805], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(12, 15, 145, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.016821687771977248, -0.019069630949285807], "type": "scatter", "x": [0.5837021143327805, 0.5870659083467659], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(12, 15, 145, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.019069630949285807, -0.03197164732790371], "type": "scatter", "x": [0.5870659083467659, 0.5829600686157593], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(11, 14, 145, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03197164732790371, -0.029078870297541], "type": "scatter", "x": [0.5829600686157593, 0.5792159394509497], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(11, 14, 145, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.029078870297541, -0.019822542419549363], "type": "scatter", "x": [0.5792159394509497, 0.5828145892967703], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(11, 13, 145, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.019822542419549363, -0.019601590474492905], "type": "scatter", "x": [0.5828145892967703, 0.5829450120738746], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(10, 13, 144, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.019601590474492905, -0.032911421935566204], "type": "scatter", "x": [0.5829450120738746, 0.5787103577306655], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(10, 13, 144, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.032911421935566204, -0.03538594573945268], "type": "scatter", "x": [0.5787103577306655, 0.5796532014988032], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(10, 12, 144, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03538594573945268, -0.035253349690680336], "type": "scatter", "x": [0.5796532014988032, 0.5795381446080341], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(9, 12, 144, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.035253349690680336, -0.01707358040511715], "type": "scatter", "x": [0.5795381446080341, 0.5796913245988584], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(9, 11, 144, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.01707358040511715, -0.011144889645326188], "type": "scatter", "x": [0.5796913245988584, 0.577942510058289], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(9, 11, 144, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.011144889645326188, 0.005178333371478683], "type": "scatter", "x": [0.577942510058289, 0.5778457401926863], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(8, 10, 143, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.005178333371478683, 0.02201256255155597], "type": "scatter", "x": [0.5778457401926863, 0.5814123796164259], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(8, 10, 143, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.02201256255155597, 0.019151278054231516], "type": "scatter", "x": [0.5814123796164259, 0.584524743125748], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(8, 10, 143, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.019151278054231516, 0.018915471702375], "type": "scatter", "x": [0.584524743125748, 0.5842281899874471], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(7, 9, 143, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.018915471702375, 0.02577446849635551], "type": "scatter", "x": [0.5842281899874471, 0.5836399471438668], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(7, 9, 143, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.02577446849635551, 0.029712727069904313], "type": "scatter", "x": [0.5836399471438668, 0.5863319114263122], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(7, 8, 142, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.029712727069904313, 0.022869988969459423], "type": "scatter", "x": [0.5863319114263122, 0.5853664988597105], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(6, 8, 142, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.022869988969459423, 0.02710906760557118], "type": "scatter", "x": [0.5853664988597105, 0.584074036045547], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(6, 7, 142, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.02710906760557118, 0.031730683230511474], "type": "scatter", "x": [0.584074036045547, 0.5784905038421487], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(6, 7, 142, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.031730683230511474, 0.022198952049233077], "type": "scatter", "x": [0.5784905038421487, 0.5791856930820529], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(5, 6, 142, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.022198952049233077, 0.007108498745790013], "type": "scatter", "x": [0.5791856930820529, 0.5737676607646183], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(5, 6, 142, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.007108498745790013, 0.008990854433127287], "type": "scatter", "x": [0.5737676607646183, 0.5751066247506768], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(4, 6, 141, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.008990854433127287, -0.003771502934144553], "type": "scatter", "x": [0.5751066247506768, 0.5717332969157699], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(4, 5, 141, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.003771502934144553, -0.0023508926694643505], "type": "scatter", "x": [0.5717332969157699, 0.5728995469434475], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(4, 5, 141, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.0023508926694643505, -0.014516642120477213], "type": "scatter", "x": [0.5728995469434475, 0.5669620063686122], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(3, 4, 141, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.014516642120477213, -0.01248633895983152], "type": "scatter", "x": [0.5669620063686122, 0.5683493665827427], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(3, 4, 141, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.01248633895983152, -0.024351099461713564], "type": "scatter", "x": [0.5683493665827427, 0.5696733804267697], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(3, 3, 140, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.024351099461713564, -0.021601774703382717], "type": "scatter", "x": [0.5696733804267697, 0.570618775744435], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(2, 3, 140, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.021601774703382717, -0.015416264561193533], "type": "scatter", "x": [0.570618775744435, 0.5661201827151309], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(2, 3, 140, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.015416264561193533, -0.015551234924544324], "type": "scatter", "x": [0.5661201827151309, 0.566123696357107], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(2, 2, 140, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.015551234924544324, -0.01681422302869524], "type": "scatter", "x": [0.566123696357107, 0.5668150476279394], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(1, 2, 140, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.01681422302869524, -0.025032256918096227], "type": "scatter", "x": [0.5668150476279394, 0.5590994985819837], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(1, 1, 140, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.025032256918096227, -0.027648077242523036], "type": "scatter", "x": [0.5590994985819837, 0.5594349967813338], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(1, 1, 139, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.027648077242523036, -0.022572215766100703], "type": "scatter", "x": [0.5594349967813338, 0.5557485467730432], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "MA(MD)", "zmin": 0.4, "yaxis": "y2", "legendgroup": "MA(MD)", "zmax": 1, "line": {"color": "rgba(0, 0, 139, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.022572215766100703, -0.036194450539887575], "type": "scatter", "x": [0.5557485467730432, 0.5472548606692341], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"xaxis": "x2", "colorbar": {"title": {"text": ""}}, "yaxis": "y2", "x": [0], "showlegend": false, "mode": "markers", "name": "MA(MD)", "zmin": 0.4, "marker": {"color": [0.5], "cmin": 0.4, "opacity": 1e-10, "size": 1e-10, "colorscale": [[0, "rgba(173, 216, 230, 1.000)"], [1, "rgba(0, 0, 139, 1.000)"]], "cmax": 1, "showscale": false}, "zmax": 1, "y": [0], "type": "scatter", "hoverinfo": "none", "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 1, "currentCount": 1}}}, {"showlegend": true, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y2", "zmin": 0.4, "yaxis": "y2", "legendgroup": "y2", "marker": {"symbol": "circle", "color": "rgba(0, 255, 255, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": 1, "y": [-0.036194450539887575], "type": "scatter", "x": [0.5472548606692341], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 1, "currentCount": 1}}}], "config": {"showlegend": false, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "height": 300, "yaxis2": {"showticklabels": true, "gridwidth": 0.5, "range": [-0.15326610485906672, 0.11135044421829833], "domain": [0.050160396617089535, 0.9868766404199475], "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": "x2", "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"}, "xaxis2": {"showticklabels": true, "gridwidth": 0.5, "range": [-0.018215708824050436, 0.6254060029590642], "domain": [0.5549212598425197, 0.9950787401574803], "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": "y2", "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"}, "annotations": [{"yanchor": "middle", "xanchor": "right", "rotation": 0, "y": -0.036194450539887575, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "yref": "y2", "showarrow": false, "text": "MA=0.55, MD=-0.04 ", "xref": "x2", "x": 0.5472548606692341}], "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "width": 832.984375, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-1.5, 51.5], "domain": [0.04936570428696413, 0.4895231846019248], "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"}, "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-1.0589414421100733, 1.054086593376201], "domain": [0.050160396617089535, 0.9868766404199475], "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"}}}