В данном примере мы разберём возможности задания сигналов, способы их фильтрации и методы изменения частоты сигнала, а также проведём анализ оценки спектральной плотности мощности сигналов на каждом из этапов взаимодействия с сигналом.
Над данной синусоидой будут проведены все преобразования в примере.
Проведём оценку спектральной плотности мощности сигнала через periodogram
— это функция построения периодограммы, основанная на вычислении квадрата модуля преобразования Фурье для последовательности данных.
Спектральная плотность мощности (СПМ) в физике и обработке сигналов — функция, описывающая распределение мощности сигнала в зависимости от частоты, то есть мощность, приходящаяся на единичный интервал частоты.
Следующим этапом преобразования нашего сигнала станет его квантование — разбиение диапазона отсчётных значений сигнала на конечное число уровней и округление этих значений до одного из двух ближайших к ним уровней.
Как мы видим, данное преобразование не влияет на спектральную плотность мощности сигнала и не смещает его частоту.
Следующее действие, которое мы проведём с исходной синусоидой, — это прореживание данных. Мы возьмём каждый второй отсчёт из исходного сигнала.
Периодограмма показывает, что прореживание данных увеличивает частоту сигнала. Это связано с тем, что из-за уменьшения количества отсчётов в два раза частота колебаний соответственно увеличилась в два раза.
Шум — это нежелательные явления, мешающие нам получать информацию из полезного сигнала.
Шум случаен по своей природе.
В цифровой обработке сигналов чаще всего используется аддитивный белый гауссовский шум (АБГШ).
Его характеристики:
- равномерная спектральная плотность мощности (поэтому он называется белым);
- нормальное распределение временных значений (поэтому он называется гауссовским);
- суммируется с полезным сигналом (поэтому он называется аддитивным);
- АБГШ статистически независим от полезного сигнала.
Важно отметить, что функция addNoise
задаёт кортеж, из которого нам нужен только первый вектор.
Далее в коде показаны типы данных входа addNoise
, его выхода и результата извлечения из кортежа первого вектора.
Out[0]:
Vector{Float64} (alias for Array{Float64, 1})
Out[0]:
Tuple{Vector{Float64}, Vector{Float64}}
Out[0]:
Vector{Float64} (alias for Array{Float64, 1})
Фильтрация сигнала в Engee¶
В данном примере мы разберём три фильтра, но в документации Engee вы можете найти любой необходимый вам фильтр.
Первый способ, который мы рассмотрим, — это задание фильтра через коэффициенты фильтра, в виде двух векторов a
и b
, затем реализуем представление фильтра через коэффициенты числителя
b
и знаменатель a
передаточной функции с помощью функции PolynomialRatio
, содержащейся в библиотеке DSP
.
Примечание:
b
и a
могут быть указаны как объекты Polynomial
, или
векторы, упорядоченные от наибольшей степени к наименьшей.
Данный фильтр не является децемирующим. В этом можно убедиться, сравнив размеры входа и выхода фильтра.
Второй вариант задания такого же фильтра — через импульсную характеристику при помощи функции impresp
, а затем вычисление выхода фильтра с помощью функции conv
.
Сравним выход функции filt
и выход функции conv
.
Как мы видим из графика, выходы функции filt
и выход функции conv
практически полностью совпадают.
Третий вариант фильтрации, который мы разберём, — это задание оконного КИХ-фильтра. Он будет отличаться от предыдущих, так как имеет задержку относительно входного сигнала, равную размеру окна.
Для сравнения выходов фильтров воспользуемся периодограммой Уэлча.
Как мы видим, основные различия между выходами фильтров кроются в их спектральной плотности мощности.
Изменение частоты сигнала¶
Для того, чтобы увеличить или уменьшить количество отсчётов, в Engee используется команда resample
, которая позволяет выполнить upsampling
и downsampling
сигнала.
Примечание: upsampling
и downsampling
задаются через отношение n//k
, где:
n
: количество точек, которые необходимо создать;
k
: количество ближайших соседей, которых следует учитывать для каждой точки.
Как мы видим, частота отфильтрованного сигнала увеличилась вдвое.
Как мы видим, частота отфильтрованного сигнала уменьшилась вдвое.
Размер вохда: 2501
Размер при downsampling: 1251
Размер при upsampling: 5001
Те же эффекты мы можем наблюдать при сравнении сигналов и их размеров. При downsampling
уменьшается количество отсчётов сигнала, а при upsampling
, наоборот, увеличивается относительно исходного сигнала.
Вывод¶
В данном примере мы продемонстрировали возможности взаимодействия с сигналами и показали, что Engee может быть в полной мере применим для цифровой обработки сигналов.
{"id": "2f679944-6add-48c0-9e1f-82e6b0dbb431", "data": [{"xaxis": "x", "colorbar": {"title": {"text": ""}}, "yaxis": "y", "x": [0, 0.0016, 0.0034, 0.0052, 0.007, 0.0088, 0.0106, 0.0124, 0.0142, 0.016, 0.0178, 0.0196, 0.0214, 0.0232, 0.025, 0.0268, 0.0286, 0.0304, 0.0322, 0.034, 0.0358, 0.0376, 0.0394, 0.0412, 0.043, 0.0448, 0.0466, 0.0484, 0.0502, 0.052, 0.0538, 0.0556, 0.0574, 0.0592, 0.061, 0.0628, 0.0646, 0.0664, 0.0682, 0.07, 0.0718, 0.0736, 0.0754, 0.0772, 0.079, 0.0808, 0.0826, 0.0844, 0.0862, 0.088, 0.0898, 0.0916, 0.0934, 0.0952, 0.097, 0.0988, 0.1006, 0.1024, 0.1042, 0.106, 0.1078, 0.1096, 0.1114, 0.1132, 0.115, 0.1168, 0.1186, 0.1204, 0.1222, 0.124, 0.1258, 0.1276, 0.1294, 0.1312, 0.133, 0.1348, 0.1366, 0.1384, 0.1402, 0.142, 0.1438, 0.1456, 0.1474, 0.1492, 0.151, 0.1528, 0.1546, 0.1564, 0.1582, 0.16, 0.1618, 0.1636, 0.1654, 0.1672, 0.169, 0.1708, 0.1726, 0.1744, 0.1762, 0.178, 0.1798, 0.1816, 0.1834, 0.1852, 0.187, 0.1888, 0.1906, 0.1924, 0.1942, 0.196, 0.1978, 0.1996, 0.2014, 0.2032, 0.205, 0.2068, 0.2086, 0.2104, 0.2122, 0.214, 0.2158, 0.2176, 0.2194, 0.2212, 0.223, 0.2248, 0.2266, 0.2284, 0.2302, 0.232, 0.2338, 0.2356, 0.2374, 0.2392, 0.241, 0.2428, 0.2446, 0.2464, 0.2482, 0.25, 0.2518, 0.2536, 0.2554, 0.2572, 0.259, 0.2608, 0.2626, 0.2644, 0.2662, 0.268, 0.2698, 0.2716, 0.2734, 0.2752, 0.277, 0.2788, 0.2806, 0.2824, 0.2842, 0.286, 0.2878, 0.2896, 0.2914, 0.2932, 0.295, 0.2968, 0.2986, 0.3004, 0.3022, 0.304, 0.3058, 0.3076, 0.3094, 0.3112, 0.313, 0.3148, 0.3166, 0.3184, 0.3202, 0.322, 0.3238, 0.3256, 0.3274, 0.3292, 0.331, 0.3328, 0.3346, 0.3364, 0.3382, 0.34, 0.3418, 0.3436, 0.3454, 0.3472, 0.349, 0.3508, 0.3526, 0.3544, 0.3562, 0.358, 0.3598, 0.3616, 0.3634, 0.3652, 0.367, 0.3688, 0.3706, 0.3724, 0.3742, 0.376, 0.3778, 0.3796, 0.3814, 0.3832, 0.385, 0.3868, 0.3886, 0.3904, 0.3922, 0.394, 0.3958, 0.3976, 0.3994, 0.4012, 0.403, 0.4048, 0.4066, 0.4084, 0.4102, 0.412, 0.4138, 0.4156, 0.4174, 0.4192, 0.421, 0.4228, 0.4246, 0.4264, 0.4282, 0.43, 0.4318, 0.4336, 0.4354, 0.4372, 0.439, 0.4408, 0.4426, 0.4444, 0.4462, 0.448, 0.4498, 0.4516, 0.4534, 0.4552, 0.457, 0.4588, 0.4606, 0.4624, 0.4642, 0.466, 0.4678, 0.4696, 0.4714, 0.4732, 0.475, 0.4768, 0.4786, 0.4804, 0.4822, 0.484, 0.4858, 0.4876, 0.4894, 0.4912, 0.493, 0.4948, 0.4966, 0.4984, 0.5002, 0.502, 0.5038, 0.5056, 0.5074, 0.5092, 0.511, 0.5128, 0.5146, 0.5164, 0.5182, 0.52, 0.5218, 0.5236, 0.5254, 0.5272, 0.529, 0.5308, 0.5326, 0.5344, 0.5362, 0.538, 0.5398, 0.5416, 0.5434, 0.5452, 0.547, 0.5488, 0.5506, 0.5524, 0.5542, 0.556, 0.5578, 0.5596, 0.5614, 0.5632, 0.565, 0.5668, 0.5686, 0.5704, 0.5722, 0.574, 0.5758, 0.5776, 0.5794, 0.5812, 0.583, 0.5848, 0.5866, 0.5884, 0.5902, 0.592, 0.5938, 0.5956, 0.5974, 0.5992, 0.601, 0.6028, 0.6046, 0.6064, 0.6082, 0.61, 0.6118, 0.6136, 0.6154, 0.6172, 0.619, 0.6208, 0.6226, 0.6244, 0.6262, 0.628, 0.6298, 0.6316, 0.6334, 0.6352, 0.637, 0.6388, 0.6406, 0.6424, 0.6442, 0.646, 0.6478, 0.6496, 0.6514, 0.6532, 0.655, 0.6568, 0.6586, 0.6604, 0.6622, 0.664, 0.6658, 0.6676, 0.6694, 0.6712, 0.673, 0.6748, 0.6766, 0.6784, 0.6802, 0.682, 0.6838, 0.6856, 0.6874, 0.6892, 0.691, 0.6928, 0.6946, 0.6964, 0.6982, 0.7, 0.7018, 0.7036, 0.7054, 0.7072, 0.709, 0.7108, 0.7126, 0.7144, 0.7162, 0.718, 0.7198, 0.7216, 0.7234, 0.7252, 0.727, 0.7288, 0.7306, 0.7324, 0.7342, 0.736, 0.7378, 0.7396, 0.7414, 0.7432, 0.745, 0.7468, 0.7486, 0.7504, 0.7522, 0.754, 0.7558, 0.7576, 0.7594, 0.7612, 0.763, 0.7648, 0.7666, 0.7684, 0.7702, 0.772, 0.7738, 0.7756, 0.7774, 0.7792, 0.781, 0.7828, 0.7846, 0.7864, 0.7882, 0.79, 0.7918, 0.7936, 0.7954, 0.7972, 0.799, 0.8008, 0.8026, 0.8044, 0.8062, 0.808, 0.8098, 0.8116, 0.8134, 0.8152, 0.817, 0.8188, 0.8206, 0.8224, 0.8242, 0.826, 0.8278, 0.8296, 0.8314, 0.8332, 0.835, 0.8368, 0.8386, 0.8404, 0.8422, 0.844, 0.8458, 0.8476, 0.8494, 0.8512, 0.853, 0.8548, 0.8566, 0.8584, 0.8602, 0.862, 0.8638, 0.8656, 0.8674, 0.8692, 0.871, 0.8728, 0.8746, 0.8764, 0.8782, 0.88, 0.8818, 0.8836, 0.8854, 0.8872, 0.889, 0.8908, 0.8926, 0.8944, 0.8962, 0.898, 0.8998, 0.9016, 0.9034, 0.9052, 0.907, 0.9088, 0.9106, 0.9124, 0.9142, 0.916, 0.9178, 0.9196, 0.9214, 0.9232, 0.925, 0.9268, 0.9286, 0.9304, 0.9322, 0.934, 0.9358, 0.9376, 0.9394, 0.9412, 0.943, 0.9448, 0.9466, 0.9484, 0.9502, 0.952, 0.9538, 0.9556, 0.9574, 0.9592, 0.961, 0.9628, 0.9646, 0.9664, 0.9682, 0.97, 0.9718, 0.9736, 0.9754, 0.9772, 0.979, 0.9808, 0.9826, 0.9844, 0.9862, 0.988, 0.9898, 0.9916, 0.9934, 0.9952, 0.997, 0.9988, 1], "showlegend": true, "mode": "lines", "name": "y1", "zmin": null, "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0.1003617148512149, 0.21200710992205463, 0.3209436098072095, 0.42577929156507266, 0.5251746299612957, 0.6178596130903343, 0.7026499697988491, 0.7784623015670235, 0.8443279255020151, 0.899405251566371, 0.9429905358928644, 0.9745268727865771, 0.9936113105200084, 1, 0.9936113105200084, 0.9745268727865772, 0.9429905358928645, 0.8994052515663712, 0.844327925502015, 0.7784623015670235, 0.7026499697988492, 0.6178596130903347, 0.5251746299612956, 0.4257792915650729, 0.3209436098072097, 0.2120071099220548, 0.10036171485121498, -0.012566039883352592, -0.12533323356430384, -0.2364989970237248, -0.34464292317451684, -0.44838321609003207, -0.546394346734269, -0.6374239897486896, -0.7203090248879066, -0.7939903986478356, -0.8575266561936521, -0.9101059706849955, -0.9510565162951535, -0.9798550523842469, -0.9961336091431725, -0.9996841892833, -0.9904614256966512, -0.9685831611286311, -0.9343289424566122, -0.8881364488135444, -0.8305958991958124, -0.7624425110114482, -0.684547105928689, -0.5979049830575192, -0.503623201635761, -0.40290643571366286, -0.29704158157703503, -0.18738131458572468, -0.07532680552793272, 0.03769018266993372, 0.1502255891207572, 0.2608415062898971, 0.36812455268467736, 0.47070393216533285, 0.5672689491267561, 0.6565857557529561, 0.7375131173581737, 0.8090169943749472, 0.8701837546695256, 0.9202318473658703, 0.9585217890173756, 0.9845643345292053, 0.9980267284282716, 0.9987369566060176, 0.9866859442078684, 0.9620276715860863, 0.9250772068344579, 0.8763066800438634, 0.8163392507171837, 0.745941145424183, 0.6660118674342526, 0.5775727034222685, 0.4817536741017162, 0.3797790955218004, 0.27295193551732444, 0.16263716519488444, 0.05024431817977035, -0.06279051952931265, -0.1750230589752754, -0.28501926246997555, -0.39137366683720193, -0.4927273415482912, -0.5877852522924728, -0.6753328081210241, -0.7542513807361036, -0.8235325976284273, -0.8822912264349524, -0.9297764858882513, -0.9653816388332739, -0.9886517447379141, -0.9992894726405892, -0.997158900260614, -0.9822872507286889, -0.9548645447466434, -0.9152411726209174, -0.863923417192835, -0.8015669848708763, -0.7289686274214123, -0.6470559615694451, -0.5568756164881888, -0.4595798606214887, -0.35641187871324986, -0.2486898871648556, -0.13779029068463883, -0.02513009544333818, 0.08785119655074254, 0.19970998051440647, 0.30901699437494695, 0.41437558099328375, 0.5144395337815061, 0.6079302976946052, 0.6936533058128048, 0.7705132427757891, 0.8375280400421407, 0.893841424151263, 0.9387338576538741, 0.971631732914674, 0.9921147013144779, 0.9999210442038161, 0.9949510169813003, 0.9772681235681938, 0.9470983049947447, 0.9048270524660194, 0.8509944817946916, 0.7862884321366196, 0.7115356772092861, 0.6276913612907012, 0.5358267949789974, 0.4371157666509337, 0.33281954452298573, 0.22427076094938192, 0.11285638487348236, 6.123233995736766e-16, -0.11285638487348292, -0.22427076094938073, -0.33281954452298623, -0.4371157666509326, -0.5358267949789963, -0.6276913612906976, -0.7115356772092852, -0.7862884321366188, -0.8509944817946918, -0.9048270524660196, -0.9470983049947443, -0.9772681235681935, -0.9949510169812998, -0.9999210442038161, -0.9921147013144778, -0.9716317329146739, -0.9387338576538738, -0.8938414241512651, -0.8375280400421413, -0.770513242775791, -0.6936533058128044, -0.6079302976946047, -0.5144395337815088, -0.41437558099328325, -0.3090169943749498, -0.19970998051440592, -0.08785119655074554, 0.02513009544333518, 0.13779029068463938, 0.24868988716485269, 0.3564118787132521, 0.45957986062148604, 0.5568756164881864, 0.6470559615694429, 0.7289686274214102, 0.8015669848708776, 0.8639234171928345, 0.9152411726209183, 0.9548645447466425, 0.9822872507286884, 0.9971589002606138, 0.9992894726405893, 0.9886517447379136, 0.9653816388332742, 0.9297764858882518, 0.8822912264349538, 0.823532597628428, 0.7542513807361044, 0.6753328081210251, 0.5877852522924738, 0.49272734154829223, 0.39137366683720304, 0.2850192624699767, 0.17502305897527662, 0.06279051952931743, -0.050244318179769126, -0.16263716519488325, -0.27295193551732494, -0.3797790955218009, -0.48175367410171516, -0.5775727034222675, -0.666011867434249, -0.7459411454241822, -0.816339250717184, -0.8763066800438637, -0.9250772068344582, -0.962027671586085, -0.9866859442078681, -0.9987369566060174, -0.9980267284282716, -0.9845643345292053, -0.9585217890173767, -0.92023184736587, -0.870183754669527, -0.8090169943749469, -0.7375131173581757, -0.6565857557529584, -0.5672689491267556, -0.47070393216533474, -0.36812455268467686, -0.26084150628989916, -0.15022558912075576, -0.03769018266993672, 0.07532680552793061, 0.1873813145857261, 0.29704158157703303, 0.40290643571366414, 0.5036232016357592, 0.5979049830575175, 0.6845471059286874, 0.7624425110114468, 0.8305958991958138, 0.8881364488135438, 0.9343289424566116, 0.9685831611286307, 0.9904614256966511, 0.9996841892832999, 0.9961336091431726, 0.9798550523842471, 0.9510565162951539, 0.9101059706849961, 0.8575266561936528, 0.7939903986478358, 0.7203090248879074, 0.6374239897486903, 0.5463943467342697, 0.4483832160900328, 0.34464292317451756, 0.23649899702372512, 0.12533323356430462, 0.012566039883356481, -0.10036171485121463, -0.21200710992205446, -0.3209436098072094, -0.4257792915650726, -0.5251746299612927, -0.6178596130903344, -0.7026499697988468, -0.7784623015670236, -0.8443279255020152, -0.8994052515663696, -0.9429905358928646, -0.9745268727865765, -0.9936113105200085, -1, -0.9936113105200083, -0.974526872786577, -0.9429905358928654, -0.8994052515663706, -0.8443279255020165, -0.7784623015670228, -0.702649969798851, -0.6178596130903362, -0.5251746299612947, -0.4257792915650747, -0.3209436098072082, -0.21200710992205674, -0.10036171485121695, 0.012566039883350602, 0.12533323356430232, 0.23649899702372632, 0.3446429231745187, 0.4483832160900275, 0.5463943467342677, 0.6374239897486885, 0.7203090248879058, 0.7939903986478344, 0.8575266561936515, 0.9101059706849951, 0.9510565162951532, 0.9798550523842466, 0.9961336091431724, 0.9996841892833, 0.9904614256966514, 0.9685831611286314, 0.9343289424566124, 0.8881364488135449, 0.830595899195813, 0.7624425110114483, 0.6845471059286892, 0.597904983057525, 0.5036232016357612, 0.402906435713663, 0.29704158157703525, 0.1873813145857249, 0.07532680552794001, -0.037690182669934395, -0.15022558912075698, -0.26084150628989694, -0.36812455268467803, -0.4707039321653264, -0.5672689491267566, -0.6565857557529566, -0.7375131173581742, -0.8090169943749435, -0.8701837546695224, -0.9202318473658705, -0.9585217890173761, -0.9845643345292054, -0.9980267284282711, -0.9987369566060178, -0.9866859442078679, -0.9620276715860856, -0.9250772068344577, -0.8763066800438665, -0.8163392507171833, -0.7459411454241813, -0.6660118674342507, -0.5775727034222723, -0.48175367410172026, -0.3797790955217998, -0.2729519355173238, -0.16263716519488203, -0.050244318179775, 0.062790519529308, 0.1750230589752778, 0.2850192624699779, 0.3913736668372042, 0.4927273415482871, 0.587785252292469, 0.675332808121026, 0.7542513807361052, 0.8235325976284247, 0.8822912264349511, 0.9297764858882497, 0.9653816388332745, 0.9886517447379144, 0.9992894726405891, 0.9971589002606143, 0.9822872507286895, 0.9548645447466422, 0.9152411726209164, 0.8639234171928374, 0.8015669848708791, 0.7289686274214143, 0.6470559615694419, 0.5568756164881913, 0.45957986062149125, 0.35641187871325425, 0.24868988716485838, 0.13779029068463464, 0.02513009544334106, -0.08785119655073968, -0.19970998051440364, -0.30901699437494423, -0.4143755809932876, -0.5144395337815036, -0.6079302976946028, -0.6936533058128027, -0.7705132427757918, -0.8375280400421401, -0.8938414241512624, -0.9387338576538731, -0.9716317329146733, -0.9921147013144784, -0.9999210442038161, -0.9949510169813004, -0.977268123568194, -0.9470983049947451, -0.9048270524660175, -0.8509944817946931, -0.7862884321366203, -0.7115356772092869, -0.6276913612907021, -0.5358267949789983, -0.4371157666509347, -0.33281954452298845, -0.22427076094938297, -0.11285638487348346, -1.7145055188062944e-15, 0.11285638487348006, 0.22427076094937964, 0.33281954452298523, 0.4371157666509316, 0.5358267949789954, 0.6276913612906995, 0.7115356772092845, 0.7862884321366181, 0.8509944817946875, 0.9048270524660191, 0.947098304994744, 0.9772681235681933, 0.9949510169813001, 0.9999210442038162, 0.9921147013144779, 0.9716317329146741, 0.9387338576538743, 0.893841424151264, 0.8375280400421459, 0.7705132427757895, 0.6936533058128052, 0.6079302976946056, 0.5144395337815127, 0.41437558099328425, 0.30901699437494745, 0.199709980514407, 0.0878511965507431, -0.025130095443330527, -0.13779029068463827, -0.24868988716485507, -0.35641187871325103, -0.45957986062148826, -0.5568756164881825, -0.6470559615694448, -0.728968627421412, -0.801566984870877, -0.8639234171928322, -0.915241172620915, -0.9548645447466432, -0.9822872507286888, -0.997158900260614, -0.9992894726405894, -0.988651744737915, -0.9653816388332735, -0.9297764858882509, -0.8822912264349526, -0.8235325976284307, -0.7542513807361075, -0.6753328081210233, -0.5877852522924718, -0.4927273415482963, -0.39137366683720737, -0.2850192624699812, -0.1750230589752742, -0.06279051952931143, 0.05024431817976448, 0.16263716519487864, 0.27295193551732044, 0.37977909552180317, 0.48175367410171727, 0.5775727034222637, 0.6660118674342481, 0.7459411454241791, 0.8163392507171854, 0.8763066800438614, 0.9250772068344564, 0.9620276715860847, 0.9866859442078674, 0.9987369566060177, 0.9980267284282718, 0.9845643345292061, 0.9585217890173771, 0.920231847365869, 0.870183754669524, 0.8090169943749497, 0.7375131173581765, 0.6565857557529592, 0.5672689491267536, 0.4707039321653357, 0.3681245526846812, 0.2608415062899002, 0.15022558912076037, 0.037690182669930725, -0.07532680552792952, -0.18738131458572152, -0.297041581577032, -0.4029064357136599, -0.5036232016357645, -0.5979049830575166, -0.6845471059286866, -0.7624425110114461, -0.8305958991958111, -0.8881364488135434, -0.9343289424566111, -0.9685831611286305, -0.9904614256966509, -0.9996841892832999, -0.9961336091431726, -0.9798550523842473, -0.9510565162951542, -0.9101059706849965, -0.8575266561936533, -0.7939903986478365, -0.7203090248879083, -0.6374239897486911, -0.5463943467342706, -0.4483832160900401, -0.34464292317451856, -0.2364989970237262, -0.12533323356430573, -0.01256603988335403, 0.10036171485120647, 0.21200710992205338, 0.3209436098072083, 0.4257792915650716, 0.5251746299612948, 0.6178596130903335, 0.7026499697988485, 0.7784623015670229, 0.8443279255020146, 0.8994052515663676, 0.9429905358928642, 0.974526872786577, 0.9936113105200084, 1, 0.9936113105200093, 0.9745268727865772, 0.9429905358928645, 0.8994052515663712, 0.8443279255020152, 0.778462301567028, 0.7026499697988492, 0.6178596130903343, 0.5251746299612956, 0.42577929156507893, 0.320943609807216, 0.21200710992205435, 0.10036171485121452, -0.012566039883353051, -0.1253332335642977, -0.23649899702371835, -0.34464292317451767, -0.4483832160900329, -0.5463943467342698, -0.6374239897486849, -0.7203090248879026, -0.7939903986478359, -0.8575266561936528, -0.9101059706849932, -0.9510565162951518, -0.9798550523842458, -0.9961336091431726, -0.9996841892832999, -0.990461425696652, -0.9685831611286325, -0.934328942456614, -0.8881364488135438, -0.8305958991958117, -0.7624425110114513, -0.6845471059286925, -0.5979049830575174, -0.5036232016357591, -0.4029064357136673, -0.2970415815770397, -0.18738131458572949, -0.07532680552793049, -2.4492935982947065e-15], "type": "scatter", "zaxis": null, "z": null}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-0.030000000000000027, 1.03], "domain": [0.0658209390492855, 0.9934383202099738], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [], "height": 500, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-1.06, 1.06], "domain": [0.03762029746281716, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "legend": {"yanchor": "auto", "xanchor": "auto", "bordercolor": "rgba(0, 0, 0, 1)", "bgcolor": "rgba(255, 255, 255, 1.000)", "borderwidth": 1, "tracegroupgap": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}, "text": ""}, "traceorder": "normal", "x": 1}, "width": 957.546875}}
{"id": "d3e91850-0028-47e2-a720-350462848a99", "data": [{"xaxis": "x", "colorbar": {"title": {"text": ""}}, "yaxis": "y", "x": [0, 0, 0.9998000399920016, 1.9996000799840032, 2.9994001199760048, 3.9992001599680065, 4.999000199960008, 5.9988002399520095, 6.998600279944012, 7.998400319936013, 8.998200359928015, 9.998000399920016, 10.997800439912018, 11.997600479904019, 12.99740051989602, 13.997200559888023, 14.997000599880025, 15.996800639872026, 16.996600679864027, 17.99640071985603, 18.99620075984803, 18.99620075984803], "showlegend": true, "mode": "lines", "name": "y1", "zmin": null, "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [4.898634199929752e-38, 4.898634199929752e-38, 8.157257382273659e-10, 3.469934586985278e-09, 8.688481770687326e-09, 1.812650916005725e-08, 3.55239415470263e-08, 7.023721187992649e-08, 1.5050221330757912e-07, 3.9425696660572474e-07, 1.7878084378833896e-06, 0.49999341266831354, 2.2038158336209824e-06, 5.962396278211395e-07, 2.8435921791236545e-07, 1.7031473894293256e-07, 1.1529720352144146e-07, 8.421579767107953e-08, 6.476494750530791e-08, 5.168779729394356e-08, 4.2417528311998715e-08, 4.2417528311998715e-08], "type": "scatter", "zaxis": null, "z": null}], "config": {"showlegend": false, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-0.5698860227954405, 19.56608678264347], "domain": [0.07646908719743364, 0.9934383202099737], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "частота, Гц", "standoff": 2, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [], "height": 500, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-0.014999802380049443, 0.5149932150483629], "domain": [0.07581474190726165, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "спектральная плотность мощности", "standoff": 2, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "width": 957.546875}}
{"id": "440845c0-d16e-4e4d-8e17-9f18ee0e67e1", "data": [{"xaxis": "x", "colorbar": {"title": {"text": ""}}, "yaxis": "y", "x": [1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 250], "showlegend": true, "mode": "lines", "name": "исходный сигнал", "zmin": null, "legendgroup": "исходный сигнал", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0, 0.012566039883352607, 0.02513009544333748, 0.037690182669934534, 0.050244318179769556, 0.06279051952931337, 0.07532680552793271, 0.08785119655074317, 0.1003617148512149, 0.11285638487348168, 0.12533323356430426, 0.13779029068463808, 0.15022558912075704, 0.16263716519488358, 0.17502305897527604, 0.18738131458572463, 0.19970998051440703, 0.21200710992205463, 0.22427076094938117, 0.23649899702372468, 0.2486898871648548, 0.2608415062898969, 0.2729519355173252, 0.2850192624699761, 0.29704158157703486, 0.3090169943749474, 0.3209436098072095, 0.3328195445229866, 0.34464292317451706, 0.3564118787132507, 0.368124552684678, 0.37977909552180106, 0.3913736668372024, 0.40290643571366264, 0.4143755809932841, 0.42577929156507266, 0.4371157666509329, 0.44838321609003223, 0.4595798606214878, 0.4707039321653325, 0.4817536741017153, 0.49272734154829156, 0.5036232016357608, 0.5144395337815064, 0.5251746299612957, 0.5358267949789965, 0.5463943467342691, 0.556875616488188, 0.5672689491267564, 0.5775727034222675, 0.5877852522924731, 0.5979049830575188, 0.6079302976946054, 0.6178596130903343, 0.6276913612907005, 0.6374239897486896, 0.6470559615694442, 0.6565857557529565, 0.6660118674342516, 0.6753328081210244, 0.6845471059286887, 0.6936533058128049, 0.7026499697988491, 0.7115356772092853, 0.7203090248879069, 0.7289686274214114, 0.7375131173581739, 0.7459411454241821, 0.7542513807361038, 0.7624425110114479, 0.7705132427757893, 0.7784623015670235, 0.7862884321366189, 0.7939903986478353, 0.8015669848708765, 0.8090169943749475, 0.8163392507171839, 0.8235325976284275, 0.8305958991958126, 0.8375280400421418, 0.8443279255020151, 0.8509944817946918, 0.8575266561936523, 0.8639234171928353, 0.8701837546695256, 0.8763066800438637, 0.8822912264349533, 0.8881364488135445, 0.8938414241512638, 0.899405251566371, 0.9048270524660195, 0.9101059706849958, 0.9152411726209175, 0.9202318473658703, 0.925077206834458, 0.9297764858882513, 0.9343289424566119, 0.9387338576538741, 0.9429905358928644, 0.9470983049947443, 0.9510565162951535, 0.954864544746643, 0.9585217890173758, 0.9620276715860859, 0.9653816388332739, 0.9685831611286311, 0.9716317329146739, 0.9745268727865771, 0.9772681235681935, 0.9798550523842469, 0.9822872507286886, 0.9845643345292053, 0.986685944207868, 0.988651744737914, 0.9904614256966512, 0.9921147013144779, 0.9936113105200084, 0.9949510169813002, 0.9961336091431725, 0.9971589002606139, 0.9980267284282716, 0.9987369566060175, 0.9992894726405892, 0.9996841892832999, 0.9999210442038161, 1, 0.9999210442038161, 0.9996841892832999, 0.9992894726405892, 0.9987369566060175, 0.9980267284282716, 0.9971589002606139, 0.9961336091431725, 0.9949510169813002, 0.9936113105200084, 0.9921147013144779, 0.9904614256966513, 0.9886517447379141, 0.986685944207868, 0.9845643345292054, 0.9822872507286887, 0.9798550523842469, 0.9772681235681935, 0.9745268727865772, 0.971631732914674, 0.9685831611286311, 0.9653816388332739, 0.9620276715860859, 0.958521789017376, 0.954864544746643, 0.9510565162951536, 0.9470983049947442, 0.9429905358928645, 0.9387338576538742, 0.9343289424566121, 0.9297764858882515, 0.925077206834458, 0.9202318473658704, 0.9152411726209175, 0.9101059706849957, 0.9048270524660195, 0.8994052515663712, 0.8938414241512639, 0.8881364488135447, 0.8822912264349533, 0.8763066800438635, 0.8701837546695257, 0.8639234171928354, 0.8575266561936524, 0.850994481794692, 0.844327925502015, 0.8375280400421418, 0.8305958991958127, 0.8235325976284276, 0.816339250717184, 0.8090169943749475, 0.8015669848708765, 0.7939903986478353, 0.786288432136619, 0.7784623015670235, 0.7705132427757895, 0.7624425110114478, 0.7542513807361036, 0.7459411454241822, 0.7375131173581739, 0.7289686274214118, 0.720309024887907, 0.7115356772092851, 0.7026499697988492, 0.6936533058128049, 0.6845471059286888, 0.6753328081210246, 0.666011867434252, 0.6565857557529564, 0.6470559615694442, 0.6374239897486899, 0.6276913612907006, 0.6178596130903347, 0.6079302976946053, 0.5979049830575187, 0.5877852522924732, 0.5775727034222676, 0.5672689491267567, 0.5568756164881882, 0.5463943467342692, 0.5358267949789967, 0.5251746299612956, 0.5144395337815066, 0.5036232016357609, 0.492727341548292, 0.4817536741017152, 0.4707039321653324, 0.459579860621488, 0.4483832160900323, 0.43711576665093327, 0.4257792915650729, 0.4143755809932843, 0.40290643571366275, 0.39137366683720237, 0.3797790955218014, 0.36812455268467814, 0.3564118787132508, 0.34464292317451706, 0.3328195445229865, 0.3209436098072097, 0.3090169943749475, 0.29704158157703536, 0.28501926246997605, 0.27295193551732505, 0.26084150628989705, 0.24868988716485482, 0.23649899702372504, 0.22427076094938145, 0.2120071099220548, 0.19970998051440705, 0.18738131458572457, 0.1750230589752763, 0.16263716519488378, 0.15022558912075712, 0.13779029068463802, 0.1253332335643041, 0.11285638487348187, 0.10036171485121498, 0.0878511965507436, 0.0753268055279326, 0.06279051952931358, 0.05024431817976966, 0.037690182669934534, 0.025130095443337813, 0.012566039883352836, 0.012566039883352836], "type": "scatter", "zaxis": null, "z": null}, {"xaxis": "x", "colorbar": {"title": {"text": ""}}, "yaxis": "y", "x": [1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 250], "showlegend": true, "mode": "lines", "name": "квантованный сигнал по 80 уровням", "zmin": null, "legendgroup": "квантованный сигнал по 80 уровням", "zmax": null, "line": {"color": "rgba(227, 111, 71, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.012658227848101333, 0.012658227848101333, 0.012658227848101333, 0.012658227848101333, 0.03797468354430378, 0.03797468354430378, 0.06329113924050622, 0.06329113924050622, 0.08860759493670889, 0.08860759493670889, 0.11392405063291133, 0.11392405063291133, 0.139240506329114, 0.139240506329114, 0.16455696202531644, 0.16455696202531644, 0.1898734177215189, 0.1898734177215189, 0.21518987341772156, 0.21518987341772156, 0.240506329113924, 0.240506329113924, 0.26582278481012667, 0.26582278481012667, 0.2911392405063291, 0.2911392405063291, 0.31645569620253156, 0.31645569620253156, 0.3417721518987342, 0.3417721518987342, 0.36708860759493667, 0.36708860759493667, 0.39240506329113933, 0.39240506329113933, 0.39240506329113933, 0.4177215189873418, 0.4177215189873418, 0.4430379746835442, 0.4430379746835442, 0.4683544303797469, 0.4683544303797469, 0.49367088607594933, 0.49367088607594933, 0.49367088607594933, 0.518987341772152, 0.518987341772152, 0.5443037974683544, 0.5443037974683544, 0.5443037974683544, 0.5696202531645569, 0.5696202531645569, 0.5949367088607596, 0.5949367088607596, 0.620253164556962, 0.620253164556962, 0.620253164556962, 0.6455696202531647, 0.6455696202531647, 0.6455696202531647, 0.6708860759493671, 0.6708860759493671, 0.6962025316455696, 0.6962025316455696, 0.6962025316455696, 0.7215189873417722, 0.7215189873417722, 0.7215189873417722, 0.7468354430379747, 0.7468354430379747, 0.7468354430379747, 0.7721518987341771, 0.7721518987341771, 0.7721518987341771, 0.7974683544303798, 0.7974683544303798, 0.7974683544303798, 0.7974683544303798, 0.8227848101265822, 0.8227848101265822, 0.8227848101265822, 0.8481012658227849, 0.8481012658227849, 0.8481012658227849, 0.8481012658227849, 0.8734177215189873, 0.8734177215189873, 0.8734177215189873, 0.8734177215189873, 0.8987341772151898, 0.8987341772151898, 0.8987341772151898, 0.8987341772151898, 0.8987341772151898, 0.9240506329113924, 0.9240506329113924, 0.9240506329113924, 0.9240506329113924, 0.9240506329113924, 0.9493670886075949, 0.9493670886075949, 0.9493670886075949, 0.9493670886075949, 0.9493670886075949, 0.9493670886075949, 0.9746835443037976, 0.9746835443037976, 0.9746835443037976, 0.9746835443037976, 0.9746835443037976, 0.9746835443037976, 0.9746835443037976, 0.9746835443037976, 0.9746835443037976, 0.9746835443037976, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0.9746835443037976, 0.9746835443037976, 0.9746835443037976, 0.9746835443037976, 0.9746835443037976, 0.9746835443037976, 0.9746835443037976, 0.9746835443037976, 0.9746835443037976, 0.9746835443037976, 0.9493670886075949, 0.9493670886075949, 0.9493670886075949, 0.9493670886075949, 0.9493670886075949, 0.9493670886075949, 0.9240506329113924, 0.9240506329113924, 0.9240506329113924, 0.9240506329113924, 0.9240506329113924, 0.8987341772151898, 0.8987341772151898, 0.8987341772151898, 0.8987341772151898, 0.8987341772151898, 0.8734177215189873, 0.8734177215189873, 0.8734177215189873, 0.8734177215189873, 0.8481012658227849, 0.8481012658227849, 0.8481012658227849, 0.8481012658227849, 0.8227848101265822, 0.8227848101265822, 0.8227848101265822, 0.7974683544303798, 0.7974683544303798, 0.7974683544303798, 0.7974683544303798, 0.7721518987341771, 0.7721518987341771, 0.7721518987341771, 0.7468354430379747, 0.7468354430379747, 0.7468354430379747, 0.7215189873417722, 0.7215189873417722, 0.7215189873417722, 0.6962025316455696, 0.6962025316455696, 0.6962025316455696, 0.6708860759493671, 0.6708860759493671, 0.6455696202531647, 0.6455696202531647, 0.6455696202531647, 0.620253164556962, 0.620253164556962, 0.620253164556962, 0.5949367088607596, 0.5949367088607596, 0.5696202531645569, 0.5696202531645569, 0.5443037974683544, 0.5443037974683544, 0.5443037974683544, 0.518987341772152, 0.518987341772152, 0.49367088607594933, 0.49367088607594933, 0.49367088607594933, 0.4683544303797469, 0.4683544303797469, 0.4430379746835442, 0.4430379746835442, 0.4177215189873418, 0.4177215189873418, 0.39240506329113933, 0.39240506329113933, 0.39240506329113933, 0.36708860759493667, 0.36708860759493667, 0.3417721518987342, 0.3417721518987342, 0.31645569620253156, 0.31645569620253156, 0.2911392405063291, 0.2911392405063291, 0.26582278481012667, 0.26582278481012667, 0.240506329113924, 0.240506329113924, 0.21518987341772156, 0.21518987341772156, 0.1898734177215189, 0.1898734177215189, 0.16455696202531644, 0.16455696202531644, 0.139240506329114, 0.139240506329114, 0.11392405063291133, 0.11392405063291133, 0.08860759493670889, 0.08860759493670889, 0.06329113924050622, 0.06329113924050622, 0.03797468354430378, 0.03797468354430378, 0.012658227848101333, 0.012658227848101333, 0.012658227848101333], "type": "scatter", "zaxis": null, "z": null}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-6.469999999999999, 257.47], "domain": [0.0658209390492855, 0.9934383202099738], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [], "height": 500, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-0.030000000000000027, 1.03], "domain": [0.03762029746281716, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "legend": {"yanchor": "auto", "xanchor": "auto", "bordercolor": "rgba(0, 0, 0, 1)", "bgcolor": "rgba(255, 255, 255, 1.000)", "borderwidth": 1, "tracegroupgap": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}, "text": ""}, "traceorder": "normal", "x": 1}, "width": 957.546875}}
{"id": "d53dd7f0-eed4-470e-af92-ed3026b7274a", "data": [{"xaxis": "x", "colorbar": {"title": {"text": ""}}, "yaxis": "y", "x": [0, 0, 0.9998000399920016, 1.9996000799840032, 2.9994001199760048, 3.9992001599680065, 4.999000199960008, 5.9988002399520095, 6.998600279944012, 7.998400319936013, 8.998200359928015, 9.998000399920016, 10.997800439912018, 11.997600479904019, 12.99740051989602, 13.997200559888023, 14.997000599880025, 15.996800639872026, 16.996600679864027, 17.99640071985603, 18.99620075984803, 18.99620075984803], "showlegend": true, "mode": "lines", "name": "y1", "zmin": null, "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [5.767152930564272e-11, 5.767152930564272e-11, 1.550098715294257e-09, 2.293405588219479e-09, 1.024757691486507e-08, 1.7487031298325414e-08, 3.554921085860568e-08, 6.890426927090279e-08, 1.5691869059134416e-07, 3.809558774545057e-07, 1.811517706447229e-06, 0.5007386418205125, 2.2316943508689764e-06, 5.80684160830045e-07, 2.9376363142274355e-07, 1.686799846523441e-07, 1.1571965508988137e-07, 8.311555929695517e-08, 6.920983737223907e-08, 4.706459824662942e-08, 4.627171789672531e-08, 4.627171789672531e-08], "type": "scatter", "zaxis": null, "z": null}], "config": {"showlegend": false, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-0.5698860227954405, 19.56608678264347], "domain": [0.07646908719743364, 0.9934383202099737], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "частота, Гц", "standoff": 2, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [], "height": 500, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-0.015022159195213713, 0.5157608010733978], "domain": [0.07581474190726165, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "спектральная плотность мощности", "standoff": 2, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "width": 957.546875}}
{"id": "e6276b4f-4dda-41fa-9b12-88bde99639ff", "data": [{"xaxis": "x", "colorbar": {"title": {"text": ""}}, "yaxis": "y", "x": [0, 0.0016, 0.0036, 0.0056, 0.0076, 0.0096, 0.0116, 0.0136, 0.0156, 0.0176, 0.0196, 0.0216, 0.0236, 0.0256, 0.0276, 0.0296, 0.0316, 0.0336, 0.0356, 0.0376, 0.0396, 0.0416, 0.0436, 0.0456, 0.0476, 0.0496, 0.0516, 0.0536, 0.0556, 0.0576, 0.0596, 0.0616, 0.0636, 0.0656, 0.0676, 0.0696, 0.0716, 0.0736, 0.0756, 0.0776, 0.0796, 0.0816, 0.0836, 0.0856, 0.0876, 0.0896, 0.0916, 0.0936, 0.0956, 0.0976, 0.0996, 0.1016, 0.1036, 0.1056, 0.1076, 0.1096, 0.1116, 0.1136, 0.1156, 0.1176, 0.1196, 0.1216, 0.1236, 0.1256, 0.1276, 0.1296, 0.1316, 0.1336, 0.1356, 0.1376, 0.1396, 0.1416, 0.1436, 0.1456, 0.1476, 0.1496, 0.1516, 0.1536, 0.1556, 0.1576, 0.1596, 0.1616, 0.1636, 0.1656, 0.1676, 0.1696, 0.1716, 0.1736, 0.1756, 0.1776, 0.1796, 0.1816, 0.1836, 0.1856, 0.1876, 0.1896, 0.1916, 0.1936, 0.1956, 0.1976, 0.1996, 0.2016, 0.2036, 0.2056, 0.2076, 0.2096, 0.2116, 0.2136, 0.2156, 0.2176, 0.2196, 0.2216, 0.2236, 0.2256, 0.2276, 0.2296, 0.2316, 0.2336, 0.2356, 0.2376, 0.2396, 0.2416, 0.2436, 0.2456, 0.2476, 0.2496, 0.2516, 0.2536, 0.2556, 0.2576, 0.2596, 0.2616, 0.2636, 0.2656, 0.2676, 0.2696, 0.2716, 0.2736, 0.2756, 0.2776, 0.2796, 0.2816, 0.2836, 0.2856, 0.2876, 0.2896, 0.2916, 0.2936, 0.2956, 0.2976, 0.2996, 0.3016, 0.3036, 0.3056, 0.3076, 0.3096, 0.3116, 0.3136, 0.3156, 0.3176, 0.3196, 0.3216, 0.3236, 0.3256, 0.3276, 0.3296, 0.3316, 0.3336, 0.3356, 0.3376, 0.3396, 0.3416, 0.3436, 0.3456, 0.3476, 0.3496, 0.3516, 0.3536, 0.3556, 0.3576, 0.3596, 0.3616, 0.3636, 0.3656, 0.3676, 0.3696, 0.3716, 0.3736, 0.3756, 0.3776, 0.3796, 0.3816, 0.3836, 0.3856, 0.3876, 0.3896, 0.3916, 0.3936, 0.3956, 0.3976, 0.3996, 0.4016, 0.4036, 0.4056, 0.4076, 0.4096, 0.4116, 0.4136, 0.4156, 0.4176, 0.4196, 0.4216, 0.4236, 0.4256, 0.4276, 0.4296, 0.4316, 0.4336, 0.4356, 0.4376, 0.4396, 0.4416, 0.4436, 0.4456, 0.4476, 0.4496, 0.4516, 0.4536, 0.4556, 0.4576, 0.4596, 0.4616, 0.4636, 0.4656, 0.4676, 0.4696, 0.4716, 0.4736, 0.4756, 0.4776, 0.4796, 0.4816, 0.4836, 0.4856, 0.4876, 0.4896, 0.4916, 0.4936, 0.4956, 0.4976, 0.4996, 0.5016, 0.5036, 0.5056, 0.5076, 0.5096, 0.5116, 0.5136, 0.5156, 0.5176, 0.5196, 0.5216, 0.5236, 0.5256, 0.5276, 0.5296, 0.5316, 0.5336, 0.5356, 0.5376, 0.5396, 0.5416, 0.5436, 0.5456, 0.5476, 0.5496, 0.5516, 0.5536, 0.5556, 0.5576, 0.5596, 0.5616, 0.5636, 0.5656, 0.5676, 0.5696, 0.5716, 0.5736, 0.5756, 0.5776, 0.5796, 0.5816, 0.5836, 0.5856, 0.5876, 0.5896, 0.5916, 0.5936, 0.5956, 0.5976, 0.5996, 0.6016, 0.6036, 0.6056, 0.6076, 0.6096, 0.6116, 0.6136, 0.6156, 0.6176, 0.6196, 0.6216, 0.6236, 0.6256, 0.6276, 0.6296, 0.6316, 0.6336, 0.6356, 0.6376, 0.6396, 0.6416, 0.6436, 0.6456, 0.6476, 0.6496, 0.6516, 0.6536, 0.6556, 0.6576, 0.6596, 0.6616, 0.6636, 0.6656, 0.6676, 0.6696, 0.6716, 0.6736, 0.6756, 0.6776, 0.6796, 0.6816, 0.6836, 0.6856, 0.6876, 0.6896, 0.6916, 0.6936, 0.6956, 0.6976, 0.6996, 0.7016, 0.7036, 0.7056, 0.7076, 0.7096, 0.7116, 0.7136, 0.7156, 0.7176, 0.7196, 0.7216, 0.7236, 0.7256, 0.7276, 0.7296, 0.7316, 0.7336, 0.7356, 0.7376, 0.7396, 0.7416, 0.7436, 0.7456, 0.7476, 0.7496, 0.7516, 0.7536, 0.7556, 0.7576, 0.7596, 0.7616, 0.7636, 0.7656, 0.7676, 0.7696, 0.7716, 0.7736, 0.7756, 0.7776, 0.7796, 0.7816, 0.7836, 0.7856, 0.7876, 0.7896, 0.7916, 0.7936, 0.7956, 0.7976, 0.7996, 0.8016, 0.8036, 0.8056, 0.8076, 0.8096, 0.8116, 0.8136, 0.8156, 0.8176, 0.8196, 0.8216, 0.8236, 0.8256, 0.8276, 0.8296, 0.8316, 0.8336, 0.8356, 0.8376, 0.8396, 0.8416, 0.8436, 0.8456, 0.8476, 0.8496, 0.8516, 0.8536, 0.8556, 0.8576, 0.8596, 0.8616, 0.8636, 0.8656, 0.8676, 0.8696, 0.8716, 0.8736, 0.8756, 0.8776, 0.8796, 0.8816, 0.8836, 0.8856, 0.8876, 0.8896, 0.8916, 0.8936, 0.8956, 0.8976, 0.8996, 0.9016, 0.9036, 0.9056, 0.9076, 0.9096, 0.9116, 0.9136, 0.9156, 0.9176, 0.9196, 0.9216, 0.9236, 0.9256, 0.9276, 0.9296, 0.9316, 0.9336, 0.9356, 0.9376, 0.9396, 0.9416, 0.9436, 0.9456, 0.9476, 0.9496, 0.9516, 0.9536, 0.9556, 0.9576, 0.9596, 0.9616, 0.9636, 0.9656, 0.9676, 0.9696, 0.9716, 0.9736, 0.9756, 0.9776, 0.9796, 0.9816, 0.9836, 0.9856, 0.9876, 0.9896, 0.9916, 0.9936, 0.9956, 0.9976, 0.9996, 1], "showlegend": true, "mode": "lines", "name": "y1", "zmin": null, "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.012658227848101333, 0.08860759493670889, 0.21518987341772156, 0.3417721518987342, 0.4683544303797469, 0.5696202531645569, 0.6708860759493671, 0.7468354430379747, 0.8227848101265822, 0.8987341772151898, 0.9493670886075949, 0.9746835443037976, 1, 1, 0.9746835443037976, 0.9493670886075949, 0.9240506329113924, 0.8481012658227849, 0.7974683544303798, 0.6962025316455696, 0.620253164556962, 0.49367088607594933, 0.39240506329113933, 0.26582278481012667, 0.139240506329114, 0.012658227848101333, -0.08860759493670889, -0.21518987341772156, -0.3417721518987342, -0.4683544303797469, -0.5696202531645569, -0.6708860759493671, -0.7468354430379747, -0.8227848101265822, -0.8987341772151899, -0.9493670886075949, -0.9746835443037974, -1, -1, -0.9746835443037974, -0.9493670886075949, -0.9240506329113924, -0.8481012658227848, -0.7974683544303798, -0.6962025316455696, -0.620253164556962, -0.49367088607594933, -0.3924050632911392, -0.26582278481012656, -0.1392405063291139, -0.012658227848101222, 0.08860759493670889, 0.21518987341772156, 0.3417721518987342, 0.4683544303797469, 0.5696202531645569, 0.6708860759493671, 0.7468354430379747, 0.8227848101265822, 0.8987341772151898, 0.9493670886075949, 0.9746835443037976, 1, 1, 0.9746835443037976, 0.9493670886075949, 0.9240506329113924, 0.8481012658227849, 0.7974683544303798, 0.6962025316455696, 0.620253164556962, 0.49367088607594933, 0.39240506329113933, 0.26582278481012667, 0.139240506329114, 0.012658227848101333, -0.08860759493670889, -0.21518987341772156, -0.3417721518987342, -0.4683544303797469, -0.5696202531645569, -0.6708860759493671, -0.7468354430379747, -0.8227848101265822, -0.8987341772151899, -0.9493670886075949, -0.9746835443037974, -1, -1, -0.9746835443037974, -0.9493670886075949, -0.9240506329113924, -0.8481012658227848, -0.7974683544303798, -0.6962025316455696, -0.620253164556962, -0.49367088607594933, -0.3924050632911392, -0.26582278481012656, -0.1392405063291139, -0.012658227848101222, 0.08860759493670889, 0.21518987341772156, 0.3417721518987342, 0.4683544303797469, 0.5696202531645569, 0.6708860759493671, 0.7468354430379747, 0.8227848101265822, 0.8987341772151898, 0.9493670886075949, 0.9746835443037976, 1, 1, 0.9746835443037976, 0.9493670886075949, 0.9240506329113924, 0.8481012658227849, 0.7974683544303798, 0.6962025316455696, 0.620253164556962, 0.49367088607594933, 0.39240506329113933, 0.26582278481012667, 0.139240506329114, 0.012658227848101333, -0.08860759493670889, -0.21518987341772156, -0.3417721518987342, -0.4683544303797469, -0.5696202531645569, -0.6708860759493671, -0.7468354430379747, -0.8227848101265822, -0.8987341772151899, -0.9493670886075949, -0.9746835443037974, -1, -1, -0.9746835443037974, -0.9493670886075949, -0.9240506329113924, -0.8481012658227848, -0.7974683544303798, -0.6962025316455696, -0.620253164556962, -0.49367088607594933, -0.3924050632911392, -0.26582278481012656, -0.1392405063291139, -0.012658227848101222, 0.08860759493670889, 0.21518987341772156, 0.3417721518987342, 0.4683544303797469, 0.5696202531645569, 0.6708860759493671, 0.7468354430379747, 0.8227848101265822, 0.8987341772151898, 0.9493670886075949, 0.9746835443037976, 1, 1, 0.9746835443037976, 0.9493670886075949, 0.9240506329113924, 0.8481012658227849, 0.7974683544303798, 0.6962025316455696, 0.620253164556962, 0.49367088607594933, 0.39240506329113933, 0.26582278481012667, 0.139240506329114, 0.012658227848101333, -0.08860759493670889, -0.21518987341772156, -0.3417721518987342, -0.4683544303797469, -0.5696202531645569, -0.6708860759493671, -0.7468354430379747, -0.8227848101265822, -0.8987341772151899, -0.9493670886075949, -0.9746835443037974, -1, -1, -0.9746835443037974, -0.9493670886075949, -0.9240506329113924, -0.8481012658227848, -0.7974683544303798, -0.6962025316455696, -0.620253164556962, -0.49367088607594933, -0.3924050632911392, -0.26582278481012656, -0.1392405063291139, -0.012658227848101222, 0.08860759493670889, 0.21518987341772156, 0.3417721518987342, 0.4683544303797469, 0.5696202531645569, 0.6708860759493671, 0.7468354430379747, 0.8227848101265822, 0.8987341772151898, 0.9493670886075949, 0.9746835443037976, 1, 1, 0.9746835443037976, 0.9493670886075949, 0.9240506329113924, 0.8481012658227849, 0.7974683544303798, 0.6962025316455696, 0.620253164556962, 0.49367088607594933, 0.39240506329113933, 0.26582278481012667, 0.139240506329114, 0.012658227848101333, -0.08860759493670889, -0.21518987341772156, -0.3417721518987342, -0.4683544303797469, -0.5696202531645569, -0.6708860759493671, -0.7468354430379747, -0.8227848101265822, -0.8987341772151899, -0.9493670886075949, -0.9746835443037974, -1, -1, -0.9746835443037974, -0.9493670886075949, -0.9240506329113924, -0.8481012658227848, -0.7974683544303798, -0.6962025316455696, -0.620253164556962, -0.49367088607594933, -0.3924050632911392, -0.26582278481012656, -0.1392405063291139, -0.012658227848101222, 0.08860759493670889, 0.21518987341772156, 0.3417721518987342, 0.4683544303797469, 0.5696202531645569, 0.6708860759493671, 0.7468354430379747, 0.8227848101265822, 0.8987341772151898, 0.9493670886075949, 0.9746835443037976, 1, 1, 0.9746835443037976, 0.9493670886075949, 0.9240506329113924, 0.8481012658227849, 0.7974683544303798, 0.6962025316455696, 0.620253164556962, 0.49367088607594933, 0.39240506329113933, 0.26582278481012667, 0.139240506329114, 0.012658227848101333, -0.08860759493670889, -0.21518987341772156, -0.3417721518987342, -0.4683544303797469, -0.5696202531645569, -0.6708860759493671, -0.7468354430379747, -0.8227848101265822, -0.8987341772151899, -0.9493670886075949, -0.9746835443037974, -1, -1, -0.9746835443037974, -0.9493670886075949, -0.9240506329113924, -0.8481012658227848, -0.7974683544303798, -0.6962025316455696, -0.620253164556962, -0.49367088607594933, -0.3924050632911392, -0.26582278481012656, -0.1392405063291139, -0.012658227848101222, 0.08860759493670889, 0.21518987341772156, 0.3417721518987342, 0.4683544303797469, 0.5696202531645569, 0.6708860759493671, 0.7468354430379747, 0.8227848101265822, 0.8987341772151898, 0.9493670886075949, 0.9746835443037976, 1, 1, 0.9746835443037976, 0.9493670886075949, 0.9240506329113924, 0.8481012658227849, 0.7974683544303798, 0.6962025316455696, 0.620253164556962, 0.49367088607594933, 0.39240506329113933, 0.26582278481012667, 0.139240506329114, 0.012658227848101333, -0.08860759493670889, -0.21518987341772156, -0.3417721518987342, -0.4683544303797469, -0.5696202531645569, -0.6708860759493671, -0.7468354430379747, -0.8227848101265822, -0.8987341772151899, -0.9493670886075949, -0.9746835443037974, -1, -1, -0.9746835443037974, -0.9493670886075949, -0.9240506329113924, -0.8481012658227848, -0.7974683544303798, -0.6962025316455696, -0.620253164556962, -0.49367088607594933, -0.3924050632911392, -0.26582278481012656, -0.1392405063291139, -0.012658227848101222, 0.08860759493670889, 0.21518987341772156, 0.3417721518987342, 0.4683544303797469, 0.5696202531645569, 0.6708860759493671, 0.7468354430379747, 0.8227848101265822, 0.8987341772151898, 0.9493670886075949, 0.9746835443037976, 1, 1, 0.9746835443037976, 0.9493670886075949, 0.9240506329113924, 0.8481012658227849, 0.7974683544303798, 0.6962025316455696, 0.620253164556962, 0.49367088607594933, 0.39240506329113933, 0.26582278481012667, 0.139240506329114, 0.012658227848101333, -0.08860759493670889, -0.21518987341772156, -0.3417721518987342, -0.4683544303797469, -0.5696202531645569, -0.6708860759493671, -0.7468354430379747, -0.8227848101265822, -0.8987341772151899, -0.9493670886075949, -0.9746835443037974, -1, -1, -0.9746835443037974, -0.9493670886075949, -0.9240506329113924, -0.8481012658227848, -0.7974683544303798, -0.6962025316455696, -0.620253164556962, -0.49367088607594933, -0.3924050632911392, -0.26582278481012656, -0.1392405063291139, -0.012658227848101222, 0.08860759493670889, 0.21518987341772156, 0.3417721518987342, 0.4683544303797469, 0.5696202531645569, 0.6708860759493671, 0.7468354430379747, 0.8227848101265822, 0.8987341772151898, 0.9493670886075949, 0.9746835443037976, 1, 1, 0.9746835443037976, 0.9493670886075949, 0.9240506329113924, 0.8481012658227849, 0.7974683544303798, 0.6962025316455696, 0.620253164556962, 0.49367088607594933, 0.39240506329113933, 0.26582278481012667, 0.139240506329114, 0.012658227848101333, -0.08860759493670889, -0.21518987341772156, -0.3417721518987342, -0.4683544303797469, -0.5696202531645569, -0.6708860759493671, -0.7468354430379747, -0.8227848101265822, -0.8987341772151899, -0.9493670886075949, -0.9746835443037974, -1, -1, -0.9746835443037974, -0.9493670886075949, -0.9240506329113924, -0.8481012658227848, -0.7974683544303798, -0.6962025316455696, -0.620253164556962, -0.49367088607594933, -0.3924050632911392, -0.26582278481012656, -0.1392405063291139, -0.012658227848101222, 0.08860759493670889, 0.21518987341772156, 0.3417721518987342, 0.4683544303797469, 0.5696202531645569, 0.6708860759493671, 0.7468354430379747, 0.8227848101265822, 0.8987341772151898, 0.9493670886075949, 0.9746835443037976, 1, 1, 0.9746835443037976, 0.9493670886075949, 0.9240506329113924, 0.8481012658227849, 0.7974683544303798, 0.6962025316455696, 0.620253164556962, 0.49367088607594933, 0.39240506329113933, 0.26582278481012667, 0.139240506329114, 0.012658227848101333, -0.08860759493670889, -0.21518987341772156, -0.3417721518987342, -0.4683544303797469, -0.5696202531645569, -0.6708860759493671, -0.7468354430379747, -0.8227848101265822, -0.8987341772151899, -0.9493670886075949, -0.9746835443037974, -1, -1, -0.9746835443037974, -0.9493670886075949, -0.9240506329113924, -0.8481012658227848, -0.7974683544303798, -0.6962025316455696, -0.620253164556962, -0.49367088607594933, -0.3924050632911392, -0.26582278481012656, -0.1392405063291139, -0.012658227848101222, -0.012658227848101222], "type": "scatter", "zaxis": null, "z": null}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-0.030000000000000027, 1.03], "domain": [0.0658209390492855, 0.9934383202099738], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [], "height": 500, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-1.06, 1.06], "domain": [0.03762029746281716, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "legend": {"yanchor": "auto", "xanchor": "auto", "bordercolor": "rgba(0, 0, 0, 1)", "bgcolor": "rgba(255, 255, 255, 1.000)", "borderwidth": 1, "tracegroupgap": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}, "text": ""}, "traceorder": "normal", "x": 1}, "width": 957.546875}}
{"id": "2006e109-433c-4319-a571-51bb3ac4bda3", "data": [{"xaxis": "x", "colorbar": {"title": {"text": ""}}, "yaxis": "y", "x": [0, 0, 1.9992003198720512, 3.9984006397441023, 5.997600959616154, 7.996801279488205, 9.996001599360255, 11.995201919232308, 13.994402239104359, 15.99360255897641, 17.99280287884846, 19.99200319872051, 21.991203518592563, 23.990403838464616, 25.989604158336665, 27.988804478208717, 29.988004798080766, 31.98720511795282, 33.98640543782487, 35.98560575769692, 37.98480607756897, 37.98480607756897], "showlegend": true, "mode": "lines", "name": "y1", "zmin": null, "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [1.1531999922344312e-10, 1.1531999922344312e-10, 3.09035407457516e-09, 4.561581410594881e-09, 2.0412427885899545e-08, 3.4817913565534593e-08, 7.079769733303641e-08, 1.3723855778554607e-07, 3.125525926090893e-07, 7.584925642260262e-07, 3.6016486870754703e-06, 0.24999659941932967, 4.4769639865695425e-06, 1.163346438271628e-06, 5.88526336617278e-07, 3.380444662750505e-07, 2.3206112016612448e-07, 1.6682399132510933e-07, 1.3897594791193339e-07, 9.465094888456261e-08, 9.312292454836191e-08, 9.312292454836191e-08], "type": "scatter", "zaxis": null, "z": null}], "config": {"showlegend": false, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-1.1395441823270716, 39.12435025989604], "domain": [0.09128390201224845, 0.9934383202099738], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "частота, Гц", "standoff": 2, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [], "height": 500, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-0.0074998978638003005, 0.25749649739845], "domain": [0.07581474190726165, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "спектральная плотность мощности", "standoff": 2, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "width": 957.546875}}
{"id": "b7f89af4-883e-43e6-8db1-26b33a764ef1", "data": [{"xaxis": "x", "colorbar": {"title": {"text": ""}}, "yaxis": "y", "x": [0, 0.0016, 0.0036, 0.0056, 0.0076, 0.0096, 0.0116, 0.0136, 0.0156, 0.0176, 0.0196, 0.0216, 0.0236, 0.0256, 0.0276, 0.0296, 0.0316, 0.0336, 0.0356, 0.0376, 0.0396, 0.0416, 0.0436, 0.0456, 0.0476, 0.0496, 0.0516, 0.0536, 0.0556, 0.0576, 0.0596, 0.0616, 0.0636, 0.0656, 0.0676, 0.0696, 0.0716, 0.0736, 0.0756, 0.0776, 0.0796, 0.0816, 0.0836, 0.0856, 0.0876, 0.0896, 0.0916, 0.0936, 0.0956, 0.0976, 0.0996, 0.1016, 0.1036, 0.1056, 0.1076, 0.1096, 0.1116, 0.1136, 0.1156, 0.1176, 0.1196, 0.1216, 0.1236, 0.1256, 0.1276, 0.1296, 0.1316, 0.1336, 0.1356, 0.1376, 0.1396, 0.1416, 0.1436, 0.1456, 0.1476, 0.1496, 0.1516, 0.1536, 0.1556, 0.1576, 0.1596, 0.1616, 0.1636, 0.1656, 0.1676, 0.1696, 0.1716, 0.1736, 0.1756, 0.1776, 0.1796, 0.1816, 0.1836, 0.1856, 0.1876, 0.1896, 0.1916, 0.1936, 0.1956, 0.1976, 0.1996, 0.2016, 0.2036, 0.2056, 0.2076, 0.2096, 0.2116, 0.2136, 0.2156, 0.2176, 0.2196, 0.2216, 0.2236, 0.2256, 0.2276, 0.2296, 0.2316, 0.2336, 0.2356, 0.2376, 0.2396, 0.2416, 0.2436, 0.2456, 0.2476, 0.2496, 0.2516, 0.2536, 0.2556, 0.2576, 0.2596, 0.2616, 0.2636, 0.2656, 0.2676, 0.2696, 0.2716, 0.2736, 0.2756, 0.2776, 0.2796, 0.2816, 0.2836, 0.2856, 0.2876, 0.2896, 0.2916, 0.2936, 0.2956, 0.2976, 0.2996, 0.3016, 0.3036, 0.3056, 0.3076, 0.3096, 0.3116, 0.3136, 0.3156, 0.3176, 0.3196, 0.3216, 0.3236, 0.3256, 0.3276, 0.3296, 0.3316, 0.3336, 0.3356, 0.3376, 0.3396, 0.3416, 0.3436, 0.3456, 0.3476, 0.3496, 0.3516, 0.3536, 0.3556, 0.3576, 0.3596, 0.3616, 0.3636, 0.3656, 0.3676, 0.3696, 0.3716, 0.3736, 0.3756, 0.3776, 0.3796, 0.3816, 0.3836, 0.3856, 0.3876, 0.3896, 0.3916, 0.3936, 0.3956, 0.3976, 0.3996, 0.4016, 0.4036, 0.4056, 0.4076, 0.4096, 0.4116, 0.4136, 0.4156, 0.4176, 0.4196, 0.4216, 0.4236, 0.4256, 0.4276, 0.4296, 0.4316, 0.4336, 0.4356, 0.4376, 0.4396, 0.4416, 0.4436, 0.4456, 0.4476, 0.4496, 0.4516, 0.4536, 0.4556, 0.4576, 0.4596, 0.4616, 0.4636, 0.4656, 0.4676, 0.4696, 0.4716, 0.4736, 0.4756, 0.4776, 0.4796, 0.4816, 0.4836, 0.4856, 0.4876, 0.4896, 0.4916, 0.4936, 0.4956, 0.4976, 0.4996, 0.5016, 0.5036, 0.5056, 0.5076, 0.5096, 0.5116, 0.5136, 0.5156, 0.5176, 0.5196, 0.5216, 0.5236, 0.5256, 0.5276, 0.5296, 0.5316, 0.5336, 0.5356, 0.5376, 0.5396, 0.5416, 0.5436, 0.5456, 0.5476, 0.5496, 0.5516, 0.5536, 0.5556, 0.5576, 0.5596, 0.5616, 0.5636, 0.5656, 0.5676, 0.5696, 0.5716, 0.5736, 0.5756, 0.5776, 0.5796, 0.5816, 0.5836, 0.5856, 0.5876, 0.5896, 0.5916, 0.5936, 0.5956, 0.5976, 0.5996, 0.6016, 0.6036, 0.6056, 0.6076, 0.6096, 0.6116, 0.6136, 0.6156, 0.6176, 0.6196, 0.6216, 0.6236, 0.6256, 0.6276, 0.6296, 0.6316, 0.6336, 0.6356, 0.6376, 0.6396, 0.6416, 0.6436, 0.6456, 0.6476, 0.6496, 0.6516, 0.6536, 0.6556, 0.6576, 0.6596, 0.6616, 0.6636, 0.6656, 0.6676, 0.6696, 0.6716, 0.6736, 0.6756, 0.6776, 0.6796, 0.6816, 0.6836, 0.6856, 0.6876, 0.6896, 0.6916, 0.6936, 0.6956, 0.6976, 0.6996, 0.7016, 0.7036, 0.7056, 0.7076, 0.7096, 0.7116, 0.7136, 0.7156, 0.7176, 0.7196, 0.7216, 0.7236, 0.7256, 0.7276, 0.7296, 0.7316, 0.7336, 0.7356, 0.7376, 0.7396, 0.7416, 0.7436, 0.7456, 0.7476, 0.7496, 0.7516, 0.7536, 0.7556, 0.7576, 0.7596, 0.7616, 0.7636, 0.7656, 0.7676, 0.7696, 0.7716, 0.7736, 0.7756, 0.7776, 0.7796, 0.7816, 0.7836, 0.7856, 0.7876, 0.7896, 0.7916, 0.7936, 0.7956, 0.7976, 0.7996, 0.8016, 0.8036, 0.8056, 0.8076, 0.8096, 0.8116, 0.8136, 0.8156, 0.8176, 0.8196, 0.8216, 0.8236, 0.8256, 0.8276, 0.8296, 0.8316, 0.8336, 0.8356, 0.8376, 0.8396, 0.8416, 0.8436, 0.8456, 0.8476, 0.8496, 0.8516, 0.8536, 0.8556, 0.8576, 0.8596, 0.8616, 0.8636, 0.8656, 0.8676, 0.8696, 0.8716, 0.8736, 0.8756, 0.8776, 0.8796, 0.8816, 0.8836, 0.8856, 0.8876, 0.8896, 0.8916, 0.8936, 0.8956, 0.8976, 0.8996, 0.9016, 0.9036, 0.9056, 0.9076, 0.9096, 0.9116, 0.9136, 0.9156, 0.9176, 0.9196, 0.9216, 0.9236, 0.9256, 0.9276, 0.9296, 0.9316, 0.9336, 0.9356, 0.9376, 0.9396, 0.9416, 0.9436, 0.9456, 0.9476, 0.9496, 0.9516, 0.9536, 0.9556, 0.9576, 0.9596, 0.9616, 0.9636, 0.9656, 0.9676, 0.9696, 0.9716, 0.9736, 0.9756, 0.9776, 0.9796, 0.9816, 0.9836, 0.9856, 0.9876, 0.9896, 0.9916, 0.9936, 0.9956, 0.9976, 0.9996, 1], "showlegend": true, "mode": "lines", "name": "синусоида с шумом", "zmin": null, "legendgroup": "синусоида с шумом", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.1340482577400837, 0.09222287976486479, 0.18093117641828305, 0.316278010084017, 0.3905260340964479, 0.4871347036428896, 0.8080149334432165, 0.7589554650797298, 0.769845905240237, 0.940986947489258, 0.8386823164167216, 1.0787388992287958, 1.091140965406153, 0.9329150712961111, 1.0719874156956093, 0.9316284987078498, 0.912905061963376, 0.9414365471236884, 0.7221627997710023, 0.6359698237907316, 0.4969137845433681, 0.5205154577216279, 0.40243420278035963, 0.24720970105225054, 0.010718411740979733, 0.03416473773426118, -0.029748846649420922, -0.08150866505707616, -0.27256747192963876, -0.43103893373917956, -0.6996264424465988, -0.6341959240021652, -0.6703266852614072, -0.6946227257645022, -0.8897689458860671, -0.9268047685740354, -0.9564932846600505, -1.0133638242175769, -0.953185084119078, -0.9163110353294507, -0.9161359552315449, -0.9030306597537302, -0.9022858344709541, -0.7526649685430575, -0.7827682657957362, -0.6545541124740178, -0.5353489077535131, -0.47043624179402277, -0.28894256310897504, -0.07264073172917179, 0.040700015442158594, 0.05272155011098966, 0.2851786978091823, 0.325222787213231, 0.499186011209772, 0.5726843987689678, 0.6163193399580181, 0.6399025349231133, 0.762806164211382, 1.0276415341727083, 0.9768599778425726, 1.0208142013640105, 0.977853494244783, 0.9971259492996428, 1.0021414975255016, 1.1810712555928344, 0.8887734841079717, 0.7746682624042941, 0.780308980282357, 0.6819960020361091, 0.6340351377646855, 0.4264678379087826, 0.3801742042049469, 0.375338123566429, 0.22069451049417568, 0.08555374426674223, -0.12900593563781226, -0.2033878145109291, -0.3616440358462225, -0.566790793852314, -0.5876902177760953, -0.6094936501632598, -0.7181026258221571, -0.860286787683182, -0.7312798219735844, -0.8937015037822169, -0.9282863544629611, -0.9454269702504089, -0.9578245359887998, -0.9340538542778122, -0.9602889166888188, -0.9265108824944538, -0.8015670999611556, -0.8363546938327909, -0.6508265781013658, -0.5929075822888548, -0.37140773982803366, -0.42638647098582283, -0.31222344453413103, -0.23200710631676236, 0.0814552134360506, 0.025981257699545263, 0.1270405053647337, 0.42157766992098605, 0.39501671108787584, 0.6768121605095273, 0.6349754310457927, 0.7213983453003481, 0.8529233668260404, 0.9233466809547993, 0.9618264016361054, 1.100111314317857, 1.0083114420570487, 1.0346654531631911, 0.9905244935250842, 0.9760288742157939, 0.9869833561957361, 0.8564286709926424, 0.7933327186526932, 0.795649188212574, 0.6060811745662067, 0.4820947549907912, 0.35158083423288994, 0.2903323424711346, 0.03383969795806624, 0.03364915491670872, 0.0002839537509818496, -0.20750217816896027, -0.34043065659422256, -0.5299576922130466, -0.558833338025137, -0.7310535137440123, -0.6761928629377774, -0.8050865669126613, -0.9477832515536, -0.9798160172788107, -1.0817263714213554, -0.893517088835252, -0.908856248263221, -0.946604539292864, -0.985177127413154, -0.9431288539230066, -0.9177029812690405, -0.7913534599089094, -0.6488724075905302, -0.6327098536166632, -0.4912699972164485, -0.4121073388124264, -0.24913581354416, -0.06914720998845388, -0.011515458688705155, 0.08019707678928678, 0.22744208795665385, 0.43933517910529746, 0.3298713199152834, 0.5343552817347801, 0.7116337787786667, 0.7712480660399337, 0.8149156418268648, 0.9602167485938906, 0.9132696663725975, 1.1152254541048443, 1.060224987627363, 1.0359279190266428, 0.9633903126744721, 0.9536549604239698, 0.9607784983315208, 0.9370676682013301, 0.7808324092517951, 0.724282744652635, 0.5822303902581816, 0.38472977420789045, 0.3797387083074112, 0.2525432987215457, 0.12359989388105344, -0.0276396983652236, -0.054241897178439476, -0.08536501185608236, -0.5742122506209377, -0.5159317778021943, -0.6150971424730552, -0.7649675573018487, -0.8483509421679456, -0.8852733200790166, -0.9999465353342751, -1.0153906006748612, -0.9775019511422893, -0.9481153623349081, -0.9740756809226906, -0.9937886571743382, -0.8711411758512334, -0.9354880791152684, -0.8720318241575682, -0.8326229051234804, -0.6801311015313879, -0.5086772797611807, -0.5771341729821237, -0.2987938233883275, -0.27600701901673236, -0.1022356229577111, -0.02890098863124127, 0.06818962403586554, 0.27716796286751, 0.26928759503097877, 0.40790999530429867, 0.5457364556868367, 0.6013163325088973, 0.7591810061014981, 0.8447529711931921, 0.8032207032460308, 0.985422943170031, 0.9261882066015484, 1.1095761269039384, 1.0431753818765357, 0.9928821851139567, 0.8622498372824987, 0.973462558706739, 0.8394747299468304, 0.9161947473599193, 0.7130146387270301, 0.6389872115978491, 0.5242452315722846, 0.5118696501204595, 0.2672616206692025, 0.23834439911721578, -0.11765320063365575, -0.03598010543549407, -0.29110421597376657, -0.546567826407396, -0.3657936332273596, -0.6526129754777148, -0.7866631546641435, -0.6779934609691705, -0.8620808536459985, -0.921799867980858, -0.9756549465764931, -0.9135481940894715, -1.0055252341362841, -1.0629285599456284, -0.8745447485242775, -1.1028167651987366, -0.9606779325257354, -1.009659595358976, -0.6228650900619703, -0.6336003597689791, -0.6302702740293126, -0.3597979564528447, -0.4522806819528994, -0.3854787060148701, -0.1969599093856291, 0.05101550290568825, 0.051270544385924086, 0.2839655426944389, 0.3583965187355449, 0.44169749995774854, 0.5835564838304961, 0.6269998221213071, 0.8293491285861077, 0.8251028592066325, 0.8840436717028117, 1.0203388366537927, 0.9341003168158449, 0.9444079970277144, 1.007421098960847, 0.9906650119546333, 0.8832259498306024, 0.9150533555340989, 0.8215144320662235, 0.7109294142133925, 0.7742386382373766, 0.6065353795990016, 0.43342996221222174, 0.38275243314479407, 0.3960506787877225, 0.1905893276255994, 0.05231627011754267, -0.016442411657098005, -0.13516407044731227, -0.41741965231980943, -0.35442182392595717, -0.5874896015803688, -0.5810839132017764, -0.804342269954606, -0.7718718303647139, -0.8953269360076853, -0.9723673982821586, -1.0012212461064351, -0.9449093442225752, -1.0979349138791745, -0.9487203698054648, -0.8747636986094492, -0.8851531152083963, -0.8637853959237648, -0.9257895503269644, -0.6653975031786096, -0.7135694161330559, -0.47516174207477435, -0.3040368941613031, -0.229221467876489, -0.15854347264678173, 0.007848426238264553, 0.08692987004746412, 0.247687615843237, 0.37749752081740257, 0.5065560253285574, 0.5633538489869622, 0.703615862960119, 0.7216265615899911, 0.8045543223789668, 0.9245023100099923, 1.0163028992891276, 0.8430330776477822, 1.0884749104734728, 1.064533861093014, 1.0543659390953755, 0.8781844451260139, 0.9439686449563409, 0.8110258934001846, 0.7798795914719995, 0.6813576041441601, 0.5996096028530253, 0.616108357690272, 0.29290784910270534, 0.2157902815697345, 0.11169374051572882, 0.06938871235769498, -0.04739959545822049, -0.07172595669877269, -0.34921572883296853, -0.523797921265949, -0.6680248116094445, -0.5794660629571525, -0.6786714012120088, -0.8577963580254291, -0.7975984364405762, -0.8567402680194189, -0.9256107595595737, -0.9781551666863038, -1.044479824661371, -1.0943998225692293, -0.9849910500274138, -0.8937516394367002, -1.0385745879614634, -0.7194744222597529, -0.6687926430817286, -0.5225646879895043, -0.5365678612075101, -0.3472434601580566, -0.27003256372243356, -0.16820052615179845, 0.08240840793842158, -0.0030452435712594456, 0.26615445141681304, 0.4331253830968323, 0.4094129314540712, 0.5680907719710112, 0.5755219628147017, 0.691028635006922, 0.8606109442245443, 0.9147497178117917, 0.8346713688041741, 0.9833882793229358, 1.0941296684143755, 0.9739694714406181, 0.9588764426662475, 1.0186594619106353, 0.9722545070593206, 0.857299376528715, 0.7557797889874526, 0.7585543437389064, 0.6690071723617921, 0.5010453000727486, 0.4238267992305788, 0.20491779040065222, 0.13439157615537312, 0.027777414279644162, 0.02591963037303764, -0.1877262099545713, -0.3258904327235144, -0.4388756384937862, -0.5961377448222817, -0.7899791349886455, -0.6576334004491338, -0.8258764015252942, -0.909185335957482, -0.9555975264905247, -1.0190404545264218, -1.0433831224437848, -0.9461282837921962, -0.9839873312126662, -0.9564820221624601, -0.9373619431014916, -0.9600786729322884, -0.8761783618317193, -0.7195350738959729, -0.6057000296444282, -0.5159638591135529, -0.34656507738267583, -0.20412578286442912, -0.17259368397424504, -0.08665882529065647, 0.22276777950565055, 0.2214623556227499, 0.3327775120503125, 0.6080199401548957, 0.7065581498703677, 0.7513670619428137, 0.6482905816931441, 0.7547613461311481, 1.067910531336485, 0.9963078030534224, 0.9162757516862005, 0.9797407949551917, 0.99974972401603, 0.9696275395128869, 1.0202281592700733, 0.9744403514957832, 0.8727320327213784, 0.863700180364619, 0.7230986294867452, 0.5367496509255995, 0.5016210301893935, 0.39828575547004813, 0.18669544585080472, 0.0811784510690799, 0.053054046944666096, -0.10856699910873809, -0.1745444795130805, -0.36419632370155053, -0.36028175434043086, -0.3859052496140738, -0.5807611492815968, -0.6714501529434694, -0.811084120212471, -0.9079899204455988, -0.9394923001563721, -0.9049278888255969, -1.1710445989262357, -0.9958037843733629, -0.8939785504702957, -0.9403621219398053, -0.9117276518228744, -0.8647109112159824, -0.7957756334615002, -0.7231911501383321, -0.5826465495784108, -0.5331816415054256, -0.4184129221751131, -0.33536796400413277, -0.19282643011134895, -0.061282133373441065, 0.11750274589789445, 0.1267523271071574, 0.46217838625607355, 0.38119208699907475, 0.5449802362020665, 0.5820973831109645, 0.5810486822933666, 0.7858218887080903, 0.8262609973732686, 1.1036033280290654, 0.9079751432777068, 1.025977823678181, 1.0230827991372722, 0.9640170162891122, 0.968034800957885, 0.9376771043910117, 0.9084157714946238, 0.8070703616248066, 0.7156177873538044, 0.5916601332890632, 0.5588920429205767, 0.40493917793765916, 0.323746301381266, 0.20476113753344588, 0.018379367274781892, 0.036975502578624864, -0.198177612012005, -0.3484809107823314, -0.37077989968878494, -0.5407583763843817, -0.6404148087297111, -0.6876208778656333, -0.8581393082799712, -0.8887116272460275, -1.1604372462210275, -0.8443203889589678, -1.0470506129559105, -1.045158355939458, -0.8724257274050821, -0.9191196174221131, -0.7665000599766119, -0.8082151365435118, -0.7338521687247682, -0.6919801592944094, -0.6607265259867567, -0.48418680381209034, -0.43466909155150213, -0.3050918254734543, -0.03755974404727602, -0.034192679550371134, -0.06743511335684144], "type": "scatter", "zaxis": null, "z": null}, {"xaxis": "x", "colorbar": {"title": {"text": ""}}, "yaxis": "y", "x": [0, 0.0016, 0.0036, 0.0056, 0.0076, 0.0096, 0.0116, 0.0136, 0.0156, 0.0176, 0.0196, 0.0216, 0.0236, 0.0256, 0.0276, 0.0296, 0.0316, 0.0336, 0.0356, 0.0376, 0.0396, 0.0416, 0.0436, 0.0456, 0.0476, 0.0496, 0.0516, 0.0536, 0.0556, 0.0576, 0.0596, 0.0616, 0.0636, 0.0656, 0.0676, 0.0696, 0.0716, 0.0736, 0.0756, 0.0776, 0.0796, 0.0816, 0.0836, 0.0856, 0.0876, 0.0896, 0.0916, 0.0936, 0.0956, 0.0976, 0.0996, 0.1016, 0.1036, 0.1056, 0.1076, 0.1096, 0.1116, 0.1136, 0.1156, 0.1176, 0.1196, 0.1216, 0.1236, 0.1256, 0.1276, 0.1296, 0.1316, 0.1336, 0.1356, 0.1376, 0.1396, 0.1416, 0.1436, 0.1456, 0.1476, 0.1496, 0.1516, 0.1536, 0.1556, 0.1576, 0.1596, 0.1616, 0.1636, 0.1656, 0.1676, 0.1696, 0.1716, 0.1736, 0.1756, 0.1776, 0.1796, 0.1816, 0.1836, 0.1856, 0.1876, 0.1896, 0.1916, 0.1936, 0.1956, 0.1976, 0.1996, 0.2016, 0.2036, 0.2056, 0.2076, 0.2096, 0.2116, 0.2136, 0.2156, 0.2176, 0.2196, 0.2216, 0.2236, 0.2256, 0.2276, 0.2296, 0.2316, 0.2336, 0.2356, 0.2376, 0.2396, 0.2416, 0.2436, 0.2456, 0.2476, 0.2496, 0.2516, 0.2536, 0.2556, 0.2576, 0.2596, 0.2616, 0.2636, 0.2656, 0.2676, 0.2696, 0.2716, 0.2736, 0.2756, 0.2776, 0.2796, 0.2816, 0.2836, 0.2856, 0.2876, 0.2896, 0.2916, 0.2936, 0.2956, 0.2976, 0.2996, 0.3016, 0.3036, 0.3056, 0.3076, 0.3096, 0.3116, 0.3136, 0.3156, 0.3176, 0.3196, 0.3216, 0.3236, 0.3256, 0.3276, 0.3296, 0.3316, 0.3336, 0.3356, 0.3376, 0.3396, 0.3416, 0.3436, 0.3456, 0.3476, 0.3496, 0.3516, 0.3536, 0.3556, 0.3576, 0.3596, 0.3616, 0.3636, 0.3656, 0.3676, 0.3696, 0.3716, 0.3736, 0.3756, 0.3776, 0.3796, 0.3816, 0.3836, 0.3856, 0.3876, 0.3896, 0.3916, 0.3936, 0.3956, 0.3976, 0.3996, 0.4016, 0.4036, 0.4056, 0.4076, 0.4096, 0.4116, 0.4136, 0.4156, 0.4176, 0.4196, 0.4216, 0.4236, 0.4256, 0.4276, 0.4296, 0.4316, 0.4336, 0.4356, 0.4376, 0.4396, 0.4416, 0.4436, 0.4456, 0.4476, 0.4496, 0.4516, 0.4536, 0.4556, 0.4576, 0.4596, 0.4616, 0.4636, 0.4656, 0.4676, 0.4696, 0.4716, 0.4736, 0.4756, 0.4776, 0.4796, 0.4816, 0.4836, 0.4856, 0.4876, 0.4896, 0.4916, 0.4936, 0.4956, 0.4976, 0.4996, 0.5016, 0.5036, 0.5056, 0.5076, 0.5096, 0.5116, 0.5136, 0.5156, 0.5176, 0.5196, 0.5216, 0.5236, 0.5256, 0.5276, 0.5296, 0.5316, 0.5336, 0.5356, 0.5376, 0.5396, 0.5416, 0.5436, 0.5456, 0.5476, 0.5496, 0.5516, 0.5536, 0.5556, 0.5576, 0.5596, 0.5616, 0.5636, 0.5656, 0.5676, 0.5696, 0.5716, 0.5736, 0.5756, 0.5776, 0.5796, 0.5816, 0.5836, 0.5856, 0.5876, 0.5896, 0.5916, 0.5936, 0.5956, 0.5976, 0.5996, 0.6016, 0.6036, 0.6056, 0.6076, 0.6096, 0.6116, 0.6136, 0.6156, 0.6176, 0.6196, 0.6216, 0.6236, 0.6256, 0.6276, 0.6296, 0.6316, 0.6336, 0.6356, 0.6376, 0.6396, 0.6416, 0.6436, 0.6456, 0.6476, 0.6496, 0.6516, 0.6536, 0.6556, 0.6576, 0.6596, 0.6616, 0.6636, 0.6656, 0.6676, 0.6696, 0.6716, 0.6736, 0.6756, 0.6776, 0.6796, 0.6816, 0.6836, 0.6856, 0.6876, 0.6896, 0.6916, 0.6936, 0.6956, 0.6976, 0.6996, 0.7016, 0.7036, 0.7056, 0.7076, 0.7096, 0.7116, 0.7136, 0.7156, 0.7176, 0.7196, 0.7216, 0.7236, 0.7256, 0.7276, 0.7296, 0.7316, 0.7336, 0.7356, 0.7376, 0.7396, 0.7416, 0.7436, 0.7456, 0.7476, 0.7496, 0.7516, 0.7536, 0.7556, 0.7576, 0.7596, 0.7616, 0.7636, 0.7656, 0.7676, 0.7696, 0.7716, 0.7736, 0.7756, 0.7776, 0.7796, 0.7816, 0.7836, 0.7856, 0.7876, 0.7896, 0.7916, 0.7936, 0.7956, 0.7976, 0.7996, 0.8016, 0.8036, 0.8056, 0.8076, 0.8096, 0.8116, 0.8136, 0.8156, 0.8176, 0.8196, 0.8216, 0.8236, 0.8256, 0.8276, 0.8296, 0.8316, 0.8336, 0.8356, 0.8376, 0.8396, 0.8416, 0.8436, 0.8456, 0.8476, 0.8496, 0.8516, 0.8536, 0.8556, 0.8576, 0.8596, 0.8616, 0.8636, 0.8656, 0.8676, 0.8696, 0.8716, 0.8736, 0.8756, 0.8776, 0.8796, 0.8816, 0.8836, 0.8856, 0.8876, 0.8896, 0.8916, 0.8936, 0.8956, 0.8976, 0.8996, 0.9016, 0.9036, 0.9056, 0.9076, 0.9096, 0.9116, 0.9136, 0.9156, 0.9176, 0.9196, 0.9216, 0.9236, 0.9256, 0.9276, 0.9296, 0.9316, 0.9336, 0.9356, 0.9376, 0.9396, 0.9416, 0.9436, 0.9456, 0.9476, 0.9496, 0.9516, 0.9536, 0.9556, 0.9576, 0.9596, 0.9616, 0.9636, 0.9656, 0.9676, 0.9696, 0.9716, 0.9736, 0.9756, 0.9776, 0.9796, 0.9816, 0.9836, 0.9856, 0.9876, 0.9896, 0.9916, 0.9936, 0.9956, 0.9976, 0.9996, 1], "showlegend": true, "mode": "lines", "name": "синусоида без шума", "zmin": null, "legendgroup": "синусоида без шума", "zmax": null, "line": {"color": "rgba(227, 111, 71, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.012658227848101333, 0.08860759493670889, 0.21518987341772156, 0.3417721518987342, 0.4683544303797469, 0.5696202531645569, 0.6708860759493671, 0.7468354430379747, 0.8227848101265822, 0.8987341772151898, 0.9493670886075949, 0.9746835443037976, 1, 1, 0.9746835443037976, 0.9493670886075949, 0.9240506329113924, 0.8481012658227849, 0.7974683544303798, 0.6962025316455696, 0.620253164556962, 0.49367088607594933, 0.39240506329113933, 0.26582278481012667, 0.139240506329114, 0.012658227848101333, -0.08860759493670889, -0.21518987341772156, -0.3417721518987342, -0.4683544303797469, -0.5696202531645569, -0.6708860759493671, -0.7468354430379747, -0.8227848101265822, -0.8987341772151899, -0.9493670886075949, -0.9746835443037974, -1, -1, -0.9746835443037974, -0.9493670886075949, -0.9240506329113924, -0.8481012658227848, -0.7974683544303798, -0.6962025316455696, -0.620253164556962, -0.49367088607594933, -0.3924050632911392, -0.26582278481012656, -0.1392405063291139, -0.012658227848101222, 0.08860759493670889, 0.21518987341772156, 0.3417721518987342, 0.4683544303797469, 0.5696202531645569, 0.6708860759493671, 0.7468354430379747, 0.8227848101265822, 0.8987341772151898, 0.9493670886075949, 0.9746835443037976, 1, 1, 0.9746835443037976, 0.9493670886075949, 0.9240506329113924, 0.8481012658227849, 0.7974683544303798, 0.6962025316455696, 0.620253164556962, 0.49367088607594933, 0.39240506329113933, 0.26582278481012667, 0.139240506329114, 0.012658227848101333, -0.08860759493670889, -0.21518987341772156, -0.3417721518987342, -0.4683544303797469, -0.5696202531645569, -0.6708860759493671, -0.7468354430379747, -0.8227848101265822, -0.8987341772151899, -0.9493670886075949, -0.9746835443037974, -1, -1, -0.9746835443037974, -0.9493670886075949, -0.9240506329113924, -0.8481012658227848, -0.7974683544303798, -0.6962025316455696, -0.620253164556962, -0.49367088607594933, -0.3924050632911392, -0.26582278481012656, -0.1392405063291139, -0.012658227848101222, 0.08860759493670889, 0.21518987341772156, 0.3417721518987342, 0.4683544303797469, 0.5696202531645569, 0.6708860759493671, 0.7468354430379747, 0.8227848101265822, 0.8987341772151898, 0.9493670886075949, 0.9746835443037976, 1, 1, 0.9746835443037976, 0.9493670886075949, 0.9240506329113924, 0.8481012658227849, 0.7974683544303798, 0.6962025316455696, 0.620253164556962, 0.49367088607594933, 0.39240506329113933, 0.26582278481012667, 0.139240506329114, 0.012658227848101333, -0.08860759493670889, -0.21518987341772156, -0.3417721518987342, -0.4683544303797469, -0.5696202531645569, -0.6708860759493671, -0.7468354430379747, -0.8227848101265822, -0.8987341772151899, -0.9493670886075949, -0.9746835443037974, -1, -1, -0.9746835443037974, -0.9493670886075949, -0.9240506329113924, -0.8481012658227848, -0.7974683544303798, -0.6962025316455696, -0.620253164556962, -0.49367088607594933, -0.3924050632911392, -0.26582278481012656, -0.1392405063291139, -0.012658227848101222, 0.08860759493670889, 0.21518987341772156, 0.3417721518987342, 0.4683544303797469, 0.5696202531645569, 0.6708860759493671, 0.7468354430379747, 0.8227848101265822, 0.8987341772151898, 0.9493670886075949, 0.9746835443037976, 1, 1, 0.9746835443037976, 0.9493670886075949, 0.9240506329113924, 0.8481012658227849, 0.7974683544303798, 0.6962025316455696, 0.620253164556962, 0.49367088607594933, 0.39240506329113933, 0.26582278481012667, 0.139240506329114, 0.012658227848101333, -0.08860759493670889, -0.21518987341772156, -0.3417721518987342, -0.4683544303797469, -0.5696202531645569, -0.6708860759493671, -0.7468354430379747, -0.8227848101265822, -0.8987341772151899, -0.9493670886075949, -0.9746835443037974, -1, -1, -0.9746835443037974, -0.9493670886075949, -0.9240506329113924, -0.8481012658227848, -0.7974683544303798, -0.6962025316455696, -0.620253164556962, -0.49367088607594933, -0.3924050632911392, -0.26582278481012656, -0.1392405063291139, -0.012658227848101222, 0.08860759493670889, 0.21518987341772156, 0.3417721518987342, 0.4683544303797469, 0.5696202531645569, 0.6708860759493671, 0.7468354430379747, 0.8227848101265822, 0.8987341772151898, 0.9493670886075949, 0.9746835443037976, 1, 1, 0.9746835443037976, 0.9493670886075949, 0.9240506329113924, 0.8481012658227849, 0.7974683544303798, 0.6962025316455696, 0.620253164556962, 0.49367088607594933, 0.39240506329113933, 0.26582278481012667, 0.139240506329114, 0.012658227848101333, -0.08860759493670889, -0.21518987341772156, -0.3417721518987342, -0.4683544303797469, -0.5696202531645569, -0.6708860759493671, -0.7468354430379747, -0.8227848101265822, -0.8987341772151899, -0.9493670886075949, -0.9746835443037974, -1, -1, -0.9746835443037974, -0.9493670886075949, -0.9240506329113924, -0.8481012658227848, -0.7974683544303798, -0.6962025316455696, -0.620253164556962, -0.49367088607594933, -0.3924050632911392, -0.26582278481012656, -0.1392405063291139, -0.012658227848101222, 0.08860759493670889, 0.21518987341772156, 0.3417721518987342, 0.4683544303797469, 0.5696202531645569, 0.6708860759493671, 0.7468354430379747, 0.8227848101265822, 0.8987341772151898, 0.9493670886075949, 0.9746835443037976, 1, 1, 0.9746835443037976, 0.9493670886075949, 0.9240506329113924, 0.8481012658227849, 0.7974683544303798, 0.6962025316455696, 0.620253164556962, 0.49367088607594933, 0.39240506329113933, 0.26582278481012667, 0.139240506329114, 0.012658227848101333, -0.08860759493670889, -0.21518987341772156, -0.3417721518987342, -0.4683544303797469, -0.5696202531645569, -0.6708860759493671, -0.7468354430379747, -0.8227848101265822, -0.8987341772151899, -0.9493670886075949, -0.9746835443037974, -1, -1, -0.9746835443037974, -0.9493670886075949, -0.9240506329113924, -0.8481012658227848, -0.7974683544303798, -0.6962025316455696, -0.620253164556962, -0.49367088607594933, -0.3924050632911392, -0.26582278481012656, -0.1392405063291139, -0.012658227848101222, 0.08860759493670889, 0.21518987341772156, 0.3417721518987342, 0.4683544303797469, 0.5696202531645569, 0.6708860759493671, 0.7468354430379747, 0.8227848101265822, 0.8987341772151898, 0.9493670886075949, 0.9746835443037976, 1, 1, 0.9746835443037976, 0.9493670886075949, 0.9240506329113924, 0.8481012658227849, 0.7974683544303798, 0.6962025316455696, 0.620253164556962, 0.49367088607594933, 0.39240506329113933, 0.26582278481012667, 0.139240506329114, 0.012658227848101333, -0.08860759493670889, -0.21518987341772156, -0.3417721518987342, -0.4683544303797469, -0.5696202531645569, -0.6708860759493671, -0.7468354430379747, -0.8227848101265822, -0.8987341772151899, -0.9493670886075949, -0.9746835443037974, -1, -1, -0.9746835443037974, -0.9493670886075949, -0.9240506329113924, -0.8481012658227848, -0.7974683544303798, -0.6962025316455696, -0.620253164556962, -0.49367088607594933, -0.3924050632911392, -0.26582278481012656, -0.1392405063291139, -0.012658227848101222, 0.08860759493670889, 0.21518987341772156, 0.3417721518987342, 0.4683544303797469, 0.5696202531645569, 0.6708860759493671, 0.7468354430379747, 0.8227848101265822, 0.8987341772151898, 0.9493670886075949, 0.9746835443037976, 1, 1, 0.9746835443037976, 0.9493670886075949, 0.9240506329113924, 0.8481012658227849, 0.7974683544303798, 0.6962025316455696, 0.620253164556962, 0.49367088607594933, 0.39240506329113933, 0.26582278481012667, 0.139240506329114, 0.012658227848101333, -0.08860759493670889, -0.21518987341772156, -0.3417721518987342, -0.4683544303797469, -0.5696202531645569, -0.6708860759493671, -0.7468354430379747, -0.8227848101265822, -0.8987341772151899, -0.9493670886075949, -0.9746835443037974, -1, -1, -0.9746835443037974, -0.9493670886075949, -0.9240506329113924, -0.8481012658227848, -0.7974683544303798, -0.6962025316455696, -0.620253164556962, -0.49367088607594933, -0.3924050632911392, -0.26582278481012656, -0.1392405063291139, -0.012658227848101222, 0.08860759493670889, 0.21518987341772156, 0.3417721518987342, 0.4683544303797469, 0.5696202531645569, 0.6708860759493671, 0.7468354430379747, 0.8227848101265822, 0.8987341772151898, 0.9493670886075949, 0.9746835443037976, 1, 1, 0.9746835443037976, 0.9493670886075949, 0.9240506329113924, 0.8481012658227849, 0.7974683544303798, 0.6962025316455696, 0.620253164556962, 0.49367088607594933, 0.39240506329113933, 0.26582278481012667, 0.139240506329114, 0.012658227848101333, -0.08860759493670889, -0.21518987341772156, -0.3417721518987342, -0.4683544303797469, -0.5696202531645569, -0.6708860759493671, -0.7468354430379747, -0.8227848101265822, -0.8987341772151899, -0.9493670886075949, -0.9746835443037974, -1, -1, -0.9746835443037974, -0.9493670886075949, -0.9240506329113924, -0.8481012658227848, -0.7974683544303798, -0.6962025316455696, -0.620253164556962, -0.49367088607594933, -0.3924050632911392, -0.26582278481012656, -0.1392405063291139, -0.012658227848101222, 0.08860759493670889, 0.21518987341772156, 0.3417721518987342, 0.4683544303797469, 0.5696202531645569, 0.6708860759493671, 0.7468354430379747, 0.8227848101265822, 0.8987341772151898, 0.9493670886075949, 0.9746835443037976, 1, 1, 0.9746835443037976, 0.9493670886075949, 0.9240506329113924, 0.8481012658227849, 0.7974683544303798, 0.6962025316455696, 0.620253164556962, 0.49367088607594933, 0.39240506329113933, 0.26582278481012667, 0.139240506329114, 0.012658227848101333, -0.08860759493670889, -0.21518987341772156, -0.3417721518987342, -0.4683544303797469, -0.5696202531645569, -0.6708860759493671, -0.7468354430379747, -0.8227848101265822, -0.8987341772151899, -0.9493670886075949, -0.9746835443037974, -1, -1, -0.9746835443037974, -0.9493670886075949, -0.9240506329113924, -0.8481012658227848, -0.7974683544303798, -0.6962025316455696, -0.620253164556962, -0.49367088607594933, -0.3924050632911392, -0.26582278481012656, -0.1392405063291139, -0.012658227848101222, -0.012658227848101222], "type": "scatter", "zaxis": null, "z": null}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-0.030000000000000027, 1.03], "domain": [0.0658209390492855, 0.9934383202099738], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [], "height": 500, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-1.2902229632417446, 1.269434163726518], "domain": [0.03762029746281716, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "legend": {"yanchor": "auto", "xanchor": "auto", "bordercolor": "rgba(0, 0, 0, 1)", "bgcolor": "rgba(255, 255, 255, 1.000)", "borderwidth": 1, "tracegroupgap": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}, "text": ""}, "traceorder": "normal", "x": 1}, "width": 957.546875}}
{"id": "eae3464a-1741-47a0-b7b7-11ec171d1d85", "data": [{"xaxis": "x", "colorbar": {"title": {"text": ""}}, "yaxis": "y", "x": [1, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95, 100, 105, 110, 115, 120, 125, 130, 135, 140, 145, 150, 155, 160, 165, 170, 175, 180, 185, 190, 195, 200, 205, 210, 215, 220, 225, 230, 235, 240, 245, 250, 255, 260, 265, 270, 275, 280, 285, 290, 295, 300, 305, 310, 315, 320, 325, 330, 335, 340, 345, 350, 355, 360, 365, 370, 375, 380, 385, 390, 395, 400, 405, 410, 415, 420, 425, 430, 435, 440, 445, 450, 455, 460, 465, 470, 475, 480, 485, 490, 495, 500, 505, 510, 515, 520, 525, 530, 535, 540, 545, 550, 555, 560, 565, 570, 575, 580, 585, 590, 595, 600, 605, 610, 615, 620, 625, 630, 635, 640, 645, 650, 655, 660, 665, 670, 675, 680, 685, 690, 695, 700, 705, 710, 715, 720, 725, 730, 735, 740, 745, 750, 755, 760, 765, 770, 775, 780, 785, 790, 795, 800, 805, 810, 815, 820, 825, 830, 835, 840, 845, 850, 855, 860, 865, 870, 875, 880, 885, 890, 895, 900, 905, 910, 915, 920, 925, 930, 935, 940, 945, 950, 955, 960, 965, 970, 975, 980, 985, 990, 995, 1000, 1005, 1010, 1015, 1020, 1025, 1030, 1035, 1040, 1045, 1050, 1055, 1060, 1065, 1070, 1075, 1080, 1085, 1090, 1095, 1100, 1105, 1110, 1115, 1120, 1125, 1130, 1135, 1140, 1145, 1150, 1155, 1160, 1165, 1170, 1175, 1180, 1185, 1190, 1195, 1200, 1205, 1210, 1215, 1220, 1225, 1230, 1235, 1240, 1245, 1250, 1255, 1260, 1265, 1270, 1275, 1280, 1285, 1290, 1295, 1300, 1305, 1310, 1315, 1320, 1325, 1330, 1335, 1340, 1345, 1350, 1355, 1360, 1365, 1370, 1375, 1380, 1385, 1390, 1395, 1400, 1405, 1410, 1415, 1420, 1425, 1430, 1435, 1440, 1445, 1450, 1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1505, 1510, 1515, 1520, 1525, 1530, 1535, 1540, 1545, 1550, 1555, 1560, 1565, 1570, 1575, 1580, 1585, 1590, 1595, 1600, 1605, 1610, 1615, 1620, 1625, 1630, 1635, 1640, 1645, 1650, 1655, 1660, 1665, 1670, 1675, 1680, 1685, 1690, 1695, 1700, 1705, 1710, 1715, 1720, 1725, 1730, 1735, 1740, 1745, 1750, 1755, 1760, 1765, 1770, 1775, 1780, 1785, 1790, 1795, 1800, 1805, 1810, 1815, 1820, 1825, 1830, 1835, 1840, 1845, 1850, 1855, 1860, 1865, 1870, 1875, 1880, 1885, 1890, 1895, 1900, 1905, 1910, 1915, 1920, 1925, 1930, 1935, 1940, 1945, 1950, 1955, 1960, 1965, 1970, 1975, 1980, 1985, 1990, 1995, 2000, 2005, 2010, 2015, 2020, 2025, 2030, 2035, 2040, 2045, 2050, 2055, 2060, 2065, 2070, 2075, 2080, 2085, 2090, 2095, 2100, 2105, 2110, 2115, 2120, 2125, 2130, 2135, 2140, 2145, 2150, 2155, 2160, 2165, 2170, 2175, 2180, 2185, 2190, 2195, 2200, 2205, 2210, 2215, 2220, 2225, 2230, 2235, 2240, 2245, 2250, 2255, 2260, 2265, 2270, 2275, 2280, 2285, 2290, 2295, 2300, 2305, 2310, 2315, 2320, 2325, 2330, 2335, 2340, 2345, 2350, 2355, 2360, 2365, 2370, 2375, 2380, 2385, 2390, 2395, 2400, 2405, 2410, 2415, 2420, 2425, 2430, 2435, 2440, 2445, 2450, 2455, 2460, 2465, 2470, 2475, 2480, 2485, 2490, 2495, 2500, 2501], "showlegend": true, "mode": "lines", "name": "исходный сигнал", "zmin": null, "legendgroup": "исходный сигнал", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.1340482577400837, 0.09222287976486479, 0.18093117641828305, 0.316278010084017, 0.3905260340964479, 0.4871347036428896, 0.8080149334432165, 0.7589554650797298, 0.769845905240237, 0.940986947489258, 0.8386823164167216, 1.0787388992287958, 1.091140965406153, 0.9329150712961111, 1.0719874156956093, 0.9316284987078498, 0.912905061963376, 0.9414365471236884, 0.7221627997710023, 0.6359698237907316, 0.4969137845433681, 0.5205154577216279, 0.40243420278035963, 0.24720970105225054, 0.010718411740979733, 0.03416473773426118, -0.029748846649420922, -0.08150866505707616, -0.27256747192963876, -0.43103893373917956, -0.6996264424465988, -0.6341959240021652, -0.6703266852614072, -0.6946227257645022, -0.8897689458860671, -0.9268047685740354, -0.9564932846600505, -1.0133638242175769, -0.953185084119078, -0.9163110353294507, -0.9161359552315449, -0.9030306597537302, -0.9022858344709541, -0.7526649685430575, -0.7827682657957362, -0.6545541124740178, -0.5353489077535131, -0.47043624179402277, -0.28894256310897504, -0.07264073172917179, 0.040700015442158594, 0.05272155011098966, 0.2851786978091823, 0.325222787213231, 0.499186011209772, 0.5726843987689678, 0.6163193399580181, 0.6399025349231133, 0.762806164211382, 1.0276415341727083, 0.9768599778425726, 1.0208142013640105, 0.977853494244783, 0.9971259492996428, 1.0021414975255016, 1.1810712555928344, 0.8887734841079717, 0.7746682624042941, 0.780308980282357, 0.6819960020361091, 0.6340351377646855, 0.4264678379087826, 0.3801742042049469, 0.375338123566429, 0.22069451049417568, 0.08555374426674223, -0.12900593563781226, -0.2033878145109291, -0.3616440358462225, -0.566790793852314, -0.5876902177760953, -0.6094936501632598, -0.7181026258221571, -0.860286787683182, -0.7312798219735844, -0.8937015037822169, -0.9282863544629611, -0.9454269702504089, -0.9578245359887998, -0.9340538542778122, -0.9602889166888188, -0.9265108824944538, -0.8015670999611556, -0.8363546938327909, -0.6508265781013658, -0.5929075822888548, -0.37140773982803366, -0.42638647098582283, -0.31222344453413103, -0.23200710631676236, 0.0814552134360506, 0.025981257699545263, 0.1270405053647337, 0.42157766992098605, 0.39501671108787584, 0.6768121605095273, 0.6349754310457927, 0.7213983453003481, 0.8529233668260404, 0.9233466809547993, 0.9618264016361054, 1.100111314317857, 1.0083114420570487, 1.0346654531631911, 0.9905244935250842, 0.9760288742157939, 0.9869833561957361, 0.8564286709926424, 0.7933327186526932, 0.795649188212574, 0.6060811745662067, 0.4820947549907912, 0.35158083423288994, 0.2903323424711346, 0.03383969795806624, 0.03364915491670872, 0.0002839537509818496, -0.20750217816896027, -0.34043065659422256, -0.5299576922130466, -0.558833338025137, -0.7310535137440123, -0.6761928629377774, -0.8050865669126613, -0.9477832515536, -0.9798160172788107, -1.0817263714213554, -0.893517088835252, -0.908856248263221, -0.946604539292864, -0.985177127413154, -0.9431288539230066, -0.9177029812690405, -0.7913534599089094, -0.6488724075905302, -0.6327098536166632, -0.4912699972164485, -0.4121073388124264, -0.24913581354416, -0.06914720998845388, -0.011515458688705155, 0.08019707678928678, 0.22744208795665385, 0.43933517910529746, 0.3298713199152834, 0.5343552817347801, 0.7116337787786667, 0.7712480660399337, 0.8149156418268648, 0.9602167485938906, 0.9132696663725975, 1.1152254541048443, 1.060224987627363, 1.0359279190266428, 0.9633903126744721, 0.9536549604239698, 0.9607784983315208, 0.9370676682013301, 0.7808324092517951, 0.724282744652635, 0.5822303902581816, 0.38472977420789045, 0.3797387083074112, 0.2525432987215457, 0.12359989388105344, -0.0276396983652236, -0.054241897178439476, -0.08536501185608236, -0.5742122506209377, -0.5159317778021943, -0.6150971424730552, -0.7649675573018487, -0.8483509421679456, -0.8852733200790166, -0.9999465353342751, -1.0153906006748612, -0.9775019511422893, -0.9481153623349081, -0.9740756809226906, -0.9937886571743382, -0.8711411758512334, -0.9354880791152684, -0.8720318241575682, -0.8326229051234804, -0.6801311015313879, -0.5086772797611807, -0.5771341729821237, -0.2987938233883275, -0.27600701901673236, -0.1022356229577111, -0.02890098863124127, 0.06818962403586554, 0.27716796286751, 0.26928759503097877, 0.40790999530429867, 0.5457364556868367, 0.6013163325088973, 0.7591810061014981, 0.8447529711931921, 0.8032207032460308, 0.985422943170031, 0.9261882066015484, 1.1095761269039384, 1.0431753818765357, 0.9928821851139567, 0.8622498372824987, 0.973462558706739, 0.8394747299468304, 0.9161947473599193, 0.7130146387270301, 0.6389872115978491, 0.5242452315722846, 0.5118696501204595, 0.2672616206692025, 0.23834439911721578, -0.11765320063365575, -0.03598010543549407, -0.29110421597376657, -0.546567826407396, -0.3657936332273596, -0.6526129754777148, -0.7866631546641435, -0.6779934609691705, -0.8620808536459985, -0.921799867980858, -0.9756549465764931, -0.9135481940894715, -1.0055252341362841, -1.0629285599456284, -0.8745447485242775, -1.1028167651987366, -0.9606779325257354, -1.009659595358976, -0.6228650900619703, -0.6336003597689791, -0.6302702740293126, -0.3597979564528447, -0.4522806819528994, -0.3854787060148701, -0.1969599093856291, 0.05101550290568825, 0.051270544385924086, 0.2839655426944389, 0.3583965187355449, 0.44169749995774854, 0.5835564838304961, 0.6269998221213071, 0.8293491285861077, 0.8251028592066325, 0.8840436717028117, 1.0203388366537927, 0.9341003168158449, 0.9444079970277144, 1.007421098960847, 0.9906650119546333, 0.8832259498306024, 0.9150533555340989, 0.8215144320662235, 0.7109294142133925, 0.7742386382373766, 0.6065353795990016, 0.43342996221222174, 0.38275243314479407, 0.3960506787877225, 0.1905893276255994, 0.05231627011754267, -0.016442411657098005, -0.13516407044731227, -0.41741965231980943, -0.35442182392595717, -0.5874896015803688, -0.5810839132017764, -0.804342269954606, -0.7718718303647139, -0.8953269360076853, -0.9723673982821586, -1.0012212461064351, -0.9449093442225752, -1.0979349138791745, -0.9487203698054648, -0.8747636986094492, -0.8851531152083963, -0.8637853959237648, -0.9257895503269644, -0.6653975031786096, -0.7135694161330559, -0.47516174207477435, -0.3040368941613031, -0.229221467876489, -0.15854347264678173, 0.007848426238264553, 0.08692987004746412, 0.247687615843237, 0.37749752081740257, 0.5065560253285574, 0.5633538489869622, 0.703615862960119, 0.7216265615899911, 0.8045543223789668, 0.9245023100099923, 1.0163028992891276, 0.8430330776477822, 1.0884749104734728, 1.064533861093014, 1.0543659390953755, 0.8781844451260139, 0.9439686449563409, 0.8110258934001846, 0.7798795914719995, 0.6813576041441601, 0.5996096028530253, 0.616108357690272, 0.29290784910270534, 0.2157902815697345, 0.11169374051572882, 0.06938871235769498, -0.04739959545822049, -0.07172595669877269, -0.34921572883296853, -0.523797921265949, -0.6680248116094445, -0.5794660629571525, -0.6786714012120088, -0.8577963580254291, -0.7975984364405762, -0.8567402680194189, -0.9256107595595737, -0.9781551666863038, -1.044479824661371, -1.0943998225692293, -0.9849910500274138, -0.8937516394367002, -1.0385745879614634, -0.7194744222597529, -0.6687926430817286, -0.5225646879895043, -0.5365678612075101, -0.3472434601580566, -0.27003256372243356, -0.16820052615179845, 0.08240840793842158, -0.0030452435712594456, 0.26615445141681304, 0.4331253830968323, 0.4094129314540712, 0.5680907719710112, 0.5755219628147017, 0.691028635006922, 0.8606109442245443, 0.9147497178117917, 0.8346713688041741, 0.9833882793229358, 1.0941296684143755, 0.9739694714406181, 0.9588764426662475, 1.0186594619106353, 0.9722545070593206, 0.857299376528715, 0.7557797889874526, 0.7585543437389064, 0.6690071723617921, 0.5010453000727486, 0.4238267992305788, 0.20491779040065222, 0.13439157615537312, 0.027777414279644162, 0.02591963037303764, -0.1877262099545713, -0.3258904327235144, -0.4388756384937862, -0.5961377448222817, -0.7899791349886455, -0.6576334004491338, -0.8258764015252942, -0.909185335957482, -0.9555975264905247, -1.0190404545264218, -1.0433831224437848, -0.9461282837921962, -0.9839873312126662, -0.9564820221624601, -0.9373619431014916, -0.9600786729322884, -0.8761783618317193, -0.7195350738959729, -0.6057000296444282, -0.5159638591135529, -0.34656507738267583, -0.20412578286442912, -0.17259368397424504, -0.08665882529065647, 0.22276777950565055, 0.2214623556227499, 0.3327775120503125, 0.6080199401548957, 0.7065581498703677, 0.7513670619428137, 0.6482905816931441, 0.7547613461311481, 1.067910531336485, 0.9963078030534224, 0.9162757516862005, 0.9797407949551917, 0.99974972401603, 0.9696275395128869, 1.0202281592700733, 0.9744403514957832, 0.8727320327213784, 0.863700180364619, 0.7230986294867452, 0.5367496509255995, 0.5016210301893935, 0.39828575547004813, 0.18669544585080472, 0.0811784510690799, 0.053054046944666096, -0.10856699910873809, -0.1745444795130805, -0.36419632370155053, -0.36028175434043086, -0.3859052496140738, -0.5807611492815968, -0.6714501529434694, -0.811084120212471, -0.9079899204455988, -0.9394923001563721, -0.9049278888255969, -1.1710445989262357, -0.9958037843733629, -0.8939785504702957, -0.9403621219398053, -0.9117276518228744, -0.8647109112159824, -0.7957756334615002, -0.7231911501383321, -0.5826465495784108, -0.5331816415054256, -0.4184129221751131, -0.33536796400413277, -0.19282643011134895, -0.061282133373441065, 0.11750274589789445, 0.1267523271071574, 0.46217838625607355, 0.38119208699907475, 0.5449802362020665, 0.5820973831109645, 0.5810486822933666, 0.7858218887080903, 0.8262609973732686, 1.1036033280290654, 0.9079751432777068, 1.025977823678181, 1.0230827991372722, 0.9640170162891122, 0.968034800957885, 0.9376771043910117, 0.9084157714946238, 0.8070703616248066, 0.7156177873538044, 0.5916601332890632, 0.5588920429205767, 0.40493917793765916, 0.323746301381266, 0.20476113753344588, 0.018379367274781892, 0.036975502578624864, -0.198177612012005, -0.3484809107823314, -0.37077989968878494, -0.5407583763843817, -0.6404148087297111, -0.6876208778656333, -0.8581393082799712, -0.8887116272460275, -1.1604372462210275, -0.8443203889589678, -1.0470506129559105, -1.045158355939458, -0.8724257274050821, -0.9191196174221131, -0.7665000599766119, -0.8082151365435118, -0.7338521687247682, -0.6919801592944094, -0.6607265259867567, -0.48418680381209034, -0.43466909155150213, -0.3050918254734543, -0.03755974404727602, -0.034192679550371134, -0.06743511335684144], "type": "scatter", "zaxis": null, "z": null}, {"xaxis": "x", "colorbar": {"title": {"text": ""}}, "yaxis": "y", "x": [1, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95, 100, 105, 110, 115, 120, 125, 130, 135, 140, 145, 150, 155, 160, 165, 170, 175, 180, 185, 190, 195, 200, 205, 210, 215, 220, 225, 230, 235, 240, 245, 250, 255, 260, 265, 270, 275, 280, 285, 290, 295, 300, 305, 310, 315, 320, 325, 330, 335, 340, 345, 350, 355, 360, 365, 370, 375, 380, 385, 390, 395, 400, 405, 410, 415, 420, 425, 430, 435, 440, 445, 450, 455, 460, 465, 470, 475, 480, 485, 490, 495, 500, 505, 510, 515, 520, 525, 530, 535, 540, 545, 550, 555, 560, 565, 570, 575, 580, 585, 590, 595, 600, 605, 610, 615, 620, 625, 630, 635, 640, 645, 650, 655, 660, 665, 670, 675, 680, 685, 690, 695, 700, 705, 710, 715, 720, 725, 730, 735, 740, 745, 750, 755, 760, 765, 770, 775, 780, 785, 790, 795, 800, 805, 810, 815, 820, 825, 830, 835, 840, 845, 850, 855, 860, 865, 870, 875, 880, 885, 890, 895, 900, 905, 910, 915, 920, 925, 930, 935, 940, 945, 950, 955, 960, 965, 970, 975, 980, 985, 990, 995, 1000, 1005, 1010, 1015, 1020, 1025, 1030, 1035, 1040, 1045, 1050, 1055, 1060, 1065, 1070, 1075, 1080, 1085, 1090, 1095, 1100, 1105, 1110, 1115, 1120, 1125, 1130, 1135, 1140, 1145, 1150, 1155, 1160, 1165, 1170, 1175, 1180, 1185, 1190, 1195, 1200, 1205, 1210, 1215, 1220, 1225, 1230, 1235, 1240, 1245, 1250, 1255, 1260, 1265, 1270, 1275, 1280, 1285, 1290, 1295, 1300, 1305, 1310, 1315, 1320, 1325, 1330, 1335, 1340, 1345, 1350, 1355, 1360, 1365, 1370, 1375, 1380, 1385, 1390, 1395, 1400, 1405, 1410, 1415, 1420, 1425, 1430, 1435, 1440, 1445, 1450, 1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1505, 1510, 1515, 1520, 1525, 1530, 1535, 1540, 1545, 1550, 1555, 1560, 1565, 1570, 1575, 1580, 1585, 1590, 1595, 1600, 1605, 1610, 1615, 1620, 1625, 1630, 1635, 1640, 1645, 1650, 1655, 1660, 1665, 1670, 1675, 1680, 1685, 1690, 1695, 1700, 1705, 1710, 1715, 1720, 1725, 1730, 1735, 1740, 1745, 1750, 1755, 1760, 1765, 1770, 1775, 1780, 1785, 1790, 1795, 1800, 1805, 1810, 1815, 1820, 1825, 1830, 1835, 1840, 1845, 1850, 1855, 1860, 1865, 1870, 1875, 1880, 1885, 1890, 1895, 1900, 1905, 1910, 1915, 1920, 1925, 1930, 1935, 1940, 1945, 1950, 1955, 1960, 1965, 1970, 1975, 1980, 1985, 1990, 1995, 2000, 2005, 2010, 2015, 2020, 2025, 2030, 2035, 2040, 2045, 2050, 2055, 2060, 2065, 2070, 2075, 2080, 2085, 2090, 2095, 2100, 2105, 2110, 2115, 2120, 2125, 2130, 2135, 2140, 2145, 2150, 2155, 2160, 2165, 2170, 2175, 2180, 2185, 2190, 2195, 2200, 2205, 2210, 2215, 2220, 2225, 2230, 2235, 2240, 2245, 2250, 2255, 2260, 2265, 2270, 2275, 2280, 2285, 2290, 2295, 2300, 2305, 2310, 2315, 2320, 2325, 2330, 2335, 2340, 2345, 2350, 2355, 2360, 2365, 2370, 2375, 2380, 2385, 2390, 2395, 2400, 2405, 2410, 2415, 2420, 2425, 2430, 2435, 2440, 2445, 2450, 2455, 2460, 2465, 2470, 2475, 2480, 2485, 2490, 2495, 2500, 2501], "showlegend": true, "mode": "lines", "name": "отфильтрованный сигнал", "zmin": null, "legendgroup": "отфильтрованный сигнал", "zmax": null, "line": {"color": "rgba(227, 111, 71, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.10053619330506278, 0.12191231155414844, 0.1504409222618067, 0.28685126068004235, 0.4049763342246633, 0.45728389365145267, 0.7136788469827605, 0.7264716673513971, 0.7213147592472702, 0.8762010602959682, 0.7825562550814532, 1.0192971082557651, 1.0194235622575338, 0.8922364710422166, 0.9727903163671375, 0.9322235785871505, 0.8891871607671044, 0.901596820672809, 0.7184388705827811, 0.5927184432455348, 0.4632721042771183, 0.5334687008263451, 0.39312412080699627, 0.26040418760931744, 0.05506456762575401, 0.011728738742454297, -0.04688459162540361, -0.12733738599045824, -0.2640832342354401, -0.3706784771633191, -0.6428667211816165, -0.613954585947809, -0.6629573334789147, -0.6686311195243977, -0.9031230513789557, -0.8557965959808849, -0.9286100431454122, -0.9955642741164495, -0.935184937579649, -0.8656896515249605, -0.9349909206012101, -0.8940494407423925, -0.8625249516057373, -0.741951179783022, -0.6624244265256295, -0.6400414960294893, -0.4695919422885916, -0.3802778133911912, -0.2726090412072784, -0.12226940735005593, 0.030256007784290953, 0.06575584423803262, 0.280849934104641, 0.36433667602949826, 0.49693895925576215, 0.5569333255754799, 0.6090715999107001, 0.6353376530550305, 0.7342653518194161, 0.9583604840473917, 0.9490749657284125, 0.9854374209653236, 0.8934209907122177, 0.9515486246833674, 0.941686341212286, 1.100720629520883, 0.8363470384548991, 0.7243214097488196, 0.7261916898314461, 0.632002960320875, 0.5995032569060306, 0.40040451354427015, 0.37460114521076476, 0.29594668876361646, 0.22478082586386292, 0.027345697443325212, -0.12386975038255357, -0.22760405137275963, -0.32532662106172566, -0.5257176355379772, -0.5291070972732271, -0.5669377931864429, -0.7092302839707764, -0.7909537089083625, -0.7045345850891046, -0.8952093560114682, -0.9304283195727052, -0.9100216395087902, -0.9345652803324737, -0.9121906318943416, -0.9430121005482895, -0.9210876016597385, -0.791694449953387, -0.8348878327036704, -0.6262878539425356, -0.5771735309429955, -0.36172386408608187, -0.4140347579665714, -0.28331215221366357, -0.20382742694305755, 0.036002470247752674, 0.02495020418827373, 0.14434994867345002, 0.39858423141053095, 0.42519924837309364, 0.626068983922706, 0.6237486541157296, 0.7308693772818795, 0.7946011166622238, 0.8623535467398623, 0.8985778364831933, 1.0080482379913165, 0.959731201105436, 0.9962627667866892, 0.9698839431927485, 0.924377805375905, 0.9040774006303192, 0.8455242864301029, 0.7726516163435511, 0.7736146585166928, 0.5968312024192002, 0.5051914000445185, 0.3505575300848076, 0.27118207680413214, 0.02530864418479109, 0.0234680607880286, -0.035735937551262975, -0.19368766085884676, -0.31022603184003994, -0.5270925993451204, -0.5654891834247069, -0.7343824807243725, -0.6762485878934015, -0.7953278869550081, -0.8586029864662995, -0.9638830229698385, -1.0095497906298554, -0.9193289229224111, -0.8836652523606158, -0.9279452985283253, -0.9089168279059483, -0.9476312028041128, -0.8881414081599195, -0.7307717270651, -0.6222001217791229, -0.6014143409867947, -0.5211088878459114, -0.348038465836973, -0.22078707688120472, -0.08638098186095179, -0.0015576631037550834, 0.08821096005138591, 0.1690614106152531, 0.4140115760198455, 0.3759839953651678, 0.5045648965666931, 0.6953628689925151, 0.7423667201521381, 0.7466207229419382, 0.875802716660748, 0.8997391871425806, 1.0456046778305388, 0.9897795473272829, 0.9856048936092033, 0.9579099518836603, 0.9231026828045851, 0.9491420306523312, 0.8449242174610286, 0.7618237523306607, 0.66926261297695, 0.575338035918425, 0.4088976094939565, 0.3783654254647727, 0.2692111392901122, 0.13467991302150448, 0.004841979008007613, -0.08332491219208464, -0.11281356784077763, -0.5397770026241112, -0.527483437006448, -0.5566173279757698, -0.6947384510591816, -0.8834801443129177, -0.8233917739869367, -0.9400301069935223, -0.9894083152984527, -0.905245746217423, -0.9311770976771441, -0.9402733572943367, -1.0000245653278577, -0.8466837969974602, -0.844596513118901, -0.8040054891527985, -0.7998153710748657, -0.634649327853913, -0.5436274924046591, -0.5594270743624606, -0.26974832079446764, -0.3211401216593982, -0.1470290555290321, -0.04976043503461202, 0.07469416421395304, 0.21923981990251404, 0.28200577488481754, 0.37824750573039495, 0.5450413045531795, 0.6211060941026911, 0.7053768927440989, 0.7928952591051629, 0.7927506506468612, 0.9287895201092661, 0.9329186938342373, 1.015108547338356, 0.9913255424267187, 0.9004313758656016, 0.8222319903509152, 0.954130961171445, 0.809052883071462, 0.8537077834015977, 0.6858098933953682, 0.5260311072314939, 0.4532345990542935, 0.45963305914262254, 0.2584175139985147, 0.18014796444456632, -0.09782269424202192, -0.06154698174985797, -0.24272293160911104, -0.44857566342874666, -0.3475507940266544, -0.6100539709955194, -0.7418343648809405, -0.6478915191032082, -0.7785714741399574, -0.8886964528416557, -0.9135627940706073, -0.9109575820122627, -0.9185791782006427, -1.0355531242077438, -0.8699150960609123, -1.0382817184554527, -0.9005539642846545, -0.970710420072689, -0.6269360316031796, -0.5672783323733899, -0.5727860769860356, -0.3664195018375146, -0.43806170434978686, -0.3308865030437885, -0.16767900263970253, 0.05477081842388479, 0.04523673099069988, 0.2502485798316031, 0.3011987617126598, 0.4115618844167202, 0.5535268731073822, 0.6014285301547397, 0.7650501199051237, 0.7566381304108618, 0.8086344368321852, 0.9913235906195531, 0.8812543551865247, 0.9309165932113559, 0.9785677616670063, 0.9707556343732298, 0.8590747588080246, 0.9022232170741056, 0.7818692968578292, 0.7305776044869843, 0.6753725981693515, 0.5183997625339668, 0.3939121832147402, 0.36595070724049455, 0.35852969239419336, 0.17843860604668588, 0.052406992224516044, -0.0850491838899868, -0.13610329157809475, -0.3494816211282356, -0.3282067457206652, -0.6041892186484681, -0.5497943473894376, -0.7907646506581749, -0.7783723341693722, -0.8495596680297096, -0.9334783392686881, -0.9401104116391592, -0.9023412842176367, -1.0234217200574656, -0.9609863507100461, -0.8981973043692917, -0.8002405551598, -0.8599448774202622, -0.8446145123609231, -0.6574319686119425, -0.6815363134988051, -0.49494172508638923, -0.34060079908813756, -0.2336685560597869, -0.1907587267137297, 0.017090567960512778, 0.0745644256123523, 0.2694457359932368, 0.30472895079057855, 0.4512339809909923, 0.5487624808253055, 0.6569825598864343, 0.7016182738752897, 0.7841182670914544, 0.9069686161813864, 0.9211991515957614, 0.8497040283556184, 1.0685052260192167, 1.002170167309115, 1.001046956532453, 0.9057169211266547, 0.8720712147642117, 0.7380297768662162, 0.7660284300336746, 0.6482572787714931, 0.5705252060222833, 0.5705442502498153, 0.3341333105678128, 0.16346793850802357, 0.0968889938368208, 0.023722295327338255, -0.07794045494209181, -0.14605381530738737, -0.35663395001738174, -0.48336637178441216, -0.5925398844537428, -0.5805179020670903, -0.6625364622221083, -0.7870726046138132, -0.7893387703724779, -0.8327173240538057, -0.894976978281201, -0.9441072424981294, -0.9873712780984235, -1.0415233067179603, -0.9801883502434231, -0.8275333753116745, -0.9458753660225174, -0.7311975304445624, -0.6417781934541824, -0.5253731278669557, -0.506869922406034, -0.32785137386764246, -0.26073584775463987, -0.20286922557085085, 0.017565107469132438, 0.05400249374971426, 0.2037458059448278, 0.3995082982112066, 0.41371550966342896, 0.5258242633913951, 0.5102848464436411, 0.7018105144633882, 0.7981545555953542, 0.807505356034297, 0.8208136467747283, 0.9911571046275556, 1.065304536872667, 0.9451120749116282, 0.9257374051647129, 0.9691780759239199, 0.9157890082616835, 0.7986882591170577, 0.7673019595134858, 0.7069415892729943, 0.6356533697476141, 0.48006953062809515, 0.4060211005293121, 0.22103991071625517, 0.09855376418784534, 0.03651016688769373, 0.01151699545826721, -0.21422612682048364, -0.2980132155475132, -0.4298421679355588, -0.5616902159687662, -0.7327574576190872, -0.6768303079327991, -0.868760303199676, -0.8553335273502976, -0.8922910231647769, -0.9449946433107184, -0.9933973977772411, -0.9671622476460822, -0.9597952290792426, -0.9378027962621895, -0.8737372712729197, -0.9193211106726701, -0.8118168912442201, -0.7093239739798645, -0.5570289158590294, -0.5183953299916375, -0.34926870821368794, -0.21636510404775794, -0.15868925932937278, -0.11891590086446538, 0.15807918016036884, 0.16371462089829952, 0.33860167406343056, 0.5968372337193992, 0.687517258637816, 0.6685520707711803, 0.6406592121131103, 0.759830369000851, 0.9936405599948473, 0.9388663080603258, 0.8390105928000023, 0.9479347615392536, 0.9649309044452742, 0.9569690329229551, 0.9854891012957547, 0.9451916207087758, 0.8071586699489773, 0.8177987110137729, 0.7333030487190979, 0.532711612437039, 0.405261220245437, 0.36245655755510864, 0.17822572729523972, 0.09561946434558531, 0.07262527623630642, -0.10981675828202164, -0.13416828691469154, -0.3704781213614245, -0.35906250075107965, -0.4040033919148041, -0.5945584443032944, -0.6758608557731718, -0.8026379690327108, -0.8559182839971704, -0.9118409713604496, -0.8511115940886658, -1.1503133100381613, -0.9159369217301101, -0.8207057634860705, -0.8868680506010203, -0.9319667700561746, -0.7909485667359046, -0.7739519504087926, -0.6881010614934688, -0.6187497613943721, -0.4580013204436898, -0.40253432779634096, -0.2767185764872197, -0.14334230147087618, -0.03361440273170638, 0.1468907955630646, 0.11862357267461764, 0.40431823492986935, 0.34100479912261106, 0.5295937169060021, 0.5962139943853405, 0.602820282215002, 0.7666079443149725, 0.8162398096089147, 1.0342314818976264, 0.8989649078931988, 1.0237559881585485, 0.9886573995194633, 0.9428378939725552, 0.9177528516997564, 0.9336135175055069, 0.8564305143167562, 0.7428780152636685, 0.642592349738317, 0.6085760577171596, 0.5449374085635343, 0.4077898380365809, 0.2898823808747328, 0.2019902704874827, 0.021929779343657835, 0.012357555892978456, -0.19521259188320045, -0.2901013232984782, -0.3394566095416559, -0.5113728294223823, -0.5950857608726283, -0.69400010131242, -0.813600585659625, -0.8651930557411504, -1.0321181710202072, -0.8747670137127981, -0.991301821832661, -0.9676081795096607, -0.8535487067865482, -0.8780962939933106, -0.809543906571494, -0.8116961657364299, -0.6995465235384049, -0.7020703938222829, -0.6316396291518876, -0.4613476810143487, -0.43363286315649485, -0.27886938591483745, -0.008911161796735775, -0.039942241065849864, -0.04948600174445994], "type": "scatter", "zaxis": null, "z": null}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-74, 2576], "domain": [0.0658209390492855, 0.9934383202099738], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [], "height": 500, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-1.2902229632417446, 1.269434163726518], "domain": [0.03762029746281716, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "legend": {"yanchor": "auto", "xanchor": "auto", "bordercolor": "rgba(0, 0, 0, 1)", "bgcolor": "rgba(255, 255, 255, 1.000)", "borderwidth": 1, "tracegroupgap": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}, "text": ""}, "traceorder": "normal", "x": 1}, "width": 957.546875}}
{"id": "e75bd313-e252-4471-bcc9-c72477a25aa9", "data": [{"xaxis": "x", "colorbar": {"title": {"text": ""}}, "yaxis": "y", "x": [1, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95, 100, 105, 110, 115, 120, 125, 130, 135, 140, 145, 150, 155, 160, 165, 170, 175, 180, 185, 190, 195, 200, 205, 210, 215, 220, 225, 230, 235, 240, 245, 250, 255, 260, 265, 270, 275, 280, 285, 290, 295, 300, 305, 310, 315, 320, 325, 330, 335, 340, 345, 350, 355, 360, 365, 370, 375, 380, 385, 390, 395, 400, 405, 410, 415, 420, 425, 430, 435, 440, 445, 450, 455, 460, 465, 470, 475, 480, 485, 490, 495, 500, 505, 510, 515, 520, 525, 530, 535, 540, 545, 550, 555, 560, 565, 570, 575, 580, 585, 590, 595, 600, 605, 610, 615, 620, 625, 630, 635, 640, 645, 650, 655, 660, 665, 670, 675, 680, 685, 690, 695, 700, 705, 710, 715, 720, 725, 730, 735, 740, 745, 750, 755, 760, 765, 770, 775, 780, 785, 790, 795, 800, 805, 810, 815, 820, 825, 830, 835, 840, 845, 850, 855, 860, 865, 870, 875, 880, 885, 890, 895, 900, 905, 910, 915, 920, 925, 930, 935, 940, 945, 950, 955, 960, 965, 970, 975, 980, 985, 990, 995, 1000, 1005, 1010, 1015, 1020, 1025, 1030, 1035, 1040, 1045, 1050, 1055, 1060, 1065, 1070, 1075, 1080, 1085, 1090, 1095, 1100, 1105, 1110, 1115, 1120, 1125, 1130, 1135, 1140, 1145, 1150, 1155, 1160, 1165, 1170, 1175, 1180, 1185, 1190, 1195, 1200, 1205, 1210, 1215, 1220, 1225, 1230, 1235, 1240, 1245, 1250, 1255, 1260, 1265, 1270, 1275, 1280, 1285, 1290, 1295, 1300, 1305, 1310, 1315, 1320, 1325, 1330, 1335, 1340, 1345, 1350, 1355, 1360, 1365, 1370, 1375, 1380, 1385, 1390, 1395, 1400, 1405, 1410, 1415, 1420, 1425, 1430, 1435, 1440, 1445, 1450, 1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1505, 1510, 1515, 1520, 1525, 1530, 1535, 1540, 1545, 1550, 1555, 1560, 1565, 1570, 1575, 1580, 1585, 1590, 1595, 1600, 1605, 1610, 1615, 1620, 1625, 1630, 1635, 1640, 1645, 1650, 1655, 1660, 1665, 1670, 1675, 1680, 1685, 1690, 1695, 1700, 1705, 1710, 1715, 1720, 1725, 1730, 1735, 1740, 1745, 1750, 1755, 1760, 1765, 1770, 1775, 1780, 1785, 1790, 1795, 1800, 1805, 1810, 1815, 1820, 1825, 1830, 1835, 1840, 1845, 1850, 1855, 1860, 1865, 1870, 1875, 1880, 1885, 1890, 1895, 1900, 1905, 1910, 1915, 1920, 1925, 1930, 1935, 1940, 1945, 1950, 1955, 1960, 1965, 1970, 1975, 1980, 1985, 1990, 1995, 2000, 2005, 2010, 2015, 2020, 2025, 2030, 2035, 2040, 2045, 2050, 2055, 2060, 2065, 2070, 2075, 2080, 2085, 2090, 2095, 2100, 2105, 2110, 2115, 2120, 2125, 2130, 2135, 2140, 2145, 2150, 2155, 2160, 2165, 2170, 2175, 2180, 2185, 2190, 2195, 2200, 2205, 2210, 2215, 2220, 2225, 2230, 2235, 2240, 2245, 2250, 2255, 2260, 2265, 2270, 2275, 2280, 2285, 2290, 2295, 2300, 2305, 2310, 2315, 2320, 2325, 2330, 2335, 2340, 2345, 2350, 2355, 2360, 2365, 2370, 2375, 2380, 2385, 2390, 2395, 2400, 2405, 2410, 2415, 2420, 2425, 2430, 2435, 2440, 2445, 2450, 2455, 2460, 2465, 2470, 2475, 2480, 2485, 2490, 2495, 2500, 2501], "showlegend": true, "mode": "lines", "name": "исходный сигнал", "zmin": null, "legendgroup": "исходный сигнал", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.1340482577400837, 0.09222287976486479, 0.18093117641828305, 0.316278010084017, 0.3905260340964479, 0.4871347036428896, 0.8080149334432165, 0.7589554650797298, 0.769845905240237, 0.940986947489258, 0.8386823164167216, 1.0787388992287958, 1.091140965406153, 0.9329150712961111, 1.0719874156956093, 0.9316284987078498, 0.912905061963376, 0.9414365471236884, 0.7221627997710023, 0.6359698237907316, 0.4969137845433681, 0.5205154577216279, 0.40243420278035963, 0.24720970105225054, 0.010718411740979733, 0.03416473773426118, -0.029748846649420922, -0.08150866505707616, -0.27256747192963876, -0.43103893373917956, -0.6996264424465988, -0.6341959240021652, -0.6703266852614072, -0.6946227257645022, -0.8897689458860671, -0.9268047685740354, -0.9564932846600505, -1.0133638242175769, -0.953185084119078, -0.9163110353294507, -0.9161359552315449, -0.9030306597537302, -0.9022858344709541, -0.7526649685430575, -0.7827682657957362, -0.6545541124740178, -0.5353489077535131, -0.47043624179402277, -0.28894256310897504, -0.07264073172917179, 0.040700015442158594, 0.05272155011098966, 0.2851786978091823, 0.325222787213231, 0.499186011209772, 0.5726843987689678, 0.6163193399580181, 0.6399025349231133, 0.762806164211382, 1.0276415341727083, 0.9768599778425726, 1.0208142013640105, 0.977853494244783, 0.9971259492996428, 1.0021414975255016, 1.1810712555928344, 0.8887734841079717, 0.7746682624042941, 0.780308980282357, 0.6819960020361091, 0.6340351377646855, 0.4264678379087826, 0.3801742042049469, 0.375338123566429, 0.22069451049417568, 0.08555374426674223, -0.12900593563781226, -0.2033878145109291, -0.3616440358462225, -0.566790793852314, -0.5876902177760953, -0.6094936501632598, -0.7181026258221571, -0.860286787683182, -0.7312798219735844, -0.8937015037822169, -0.9282863544629611, -0.9454269702504089, -0.9578245359887998, -0.9340538542778122, -0.9602889166888188, -0.9265108824944538, -0.8015670999611556, -0.8363546938327909, -0.6508265781013658, -0.5929075822888548, -0.37140773982803366, -0.42638647098582283, -0.31222344453413103, -0.23200710631676236, 0.0814552134360506, 0.025981257699545263, 0.1270405053647337, 0.42157766992098605, 0.39501671108787584, 0.6768121605095273, 0.6349754310457927, 0.7213983453003481, 0.8529233668260404, 0.9233466809547993, 0.9618264016361054, 1.100111314317857, 1.0083114420570487, 1.0346654531631911, 0.9905244935250842, 0.9760288742157939, 0.9869833561957361, 0.8564286709926424, 0.7933327186526932, 0.795649188212574, 0.6060811745662067, 0.4820947549907912, 0.35158083423288994, 0.2903323424711346, 0.03383969795806624, 0.03364915491670872, 0.0002839537509818496, -0.20750217816896027, -0.34043065659422256, -0.5299576922130466, -0.558833338025137, -0.7310535137440123, -0.6761928629377774, -0.8050865669126613, -0.9477832515536, -0.9798160172788107, -1.0817263714213554, -0.893517088835252, -0.908856248263221, -0.946604539292864, -0.985177127413154, -0.9431288539230066, -0.9177029812690405, -0.7913534599089094, -0.6488724075905302, -0.6327098536166632, -0.4912699972164485, -0.4121073388124264, -0.24913581354416, -0.06914720998845388, -0.011515458688705155, 0.08019707678928678, 0.22744208795665385, 0.43933517910529746, 0.3298713199152834, 0.5343552817347801, 0.7116337787786667, 0.7712480660399337, 0.8149156418268648, 0.9602167485938906, 0.9132696663725975, 1.1152254541048443, 1.060224987627363, 1.0359279190266428, 0.9633903126744721, 0.9536549604239698, 0.9607784983315208, 0.9370676682013301, 0.7808324092517951, 0.724282744652635, 0.5822303902581816, 0.38472977420789045, 0.3797387083074112, 0.2525432987215457, 0.12359989388105344, -0.0276396983652236, -0.054241897178439476, -0.08536501185608236, -0.5742122506209377, -0.5159317778021943, -0.6150971424730552, -0.7649675573018487, -0.8483509421679456, -0.8852733200790166, -0.9999465353342751, -1.0153906006748612, -0.9775019511422893, -0.9481153623349081, -0.9740756809226906, -0.9937886571743382, -0.8711411758512334, -0.9354880791152684, -0.8720318241575682, -0.8326229051234804, -0.6801311015313879, -0.5086772797611807, -0.5771341729821237, -0.2987938233883275, -0.27600701901673236, -0.1022356229577111, -0.02890098863124127, 0.06818962403586554, 0.27716796286751, 0.26928759503097877, 0.40790999530429867, 0.5457364556868367, 0.6013163325088973, 0.7591810061014981, 0.8447529711931921, 0.8032207032460308, 0.985422943170031, 0.9261882066015484, 1.1095761269039384, 1.0431753818765357, 0.9928821851139567, 0.8622498372824987, 0.973462558706739, 0.8394747299468304, 0.9161947473599193, 0.7130146387270301, 0.6389872115978491, 0.5242452315722846, 0.5118696501204595, 0.2672616206692025, 0.23834439911721578, -0.11765320063365575, -0.03598010543549407, -0.29110421597376657, -0.546567826407396, -0.3657936332273596, -0.6526129754777148, -0.7866631546641435, -0.6779934609691705, -0.8620808536459985, -0.921799867980858, -0.9756549465764931, -0.9135481940894715, -1.0055252341362841, -1.0629285599456284, -0.8745447485242775, -1.1028167651987366, -0.9606779325257354, -1.009659595358976, -0.6228650900619703, -0.6336003597689791, -0.6302702740293126, -0.3597979564528447, -0.4522806819528994, -0.3854787060148701, -0.1969599093856291, 0.05101550290568825, 0.051270544385924086, 0.2839655426944389, 0.3583965187355449, 0.44169749995774854, 0.5835564838304961, 0.6269998221213071, 0.8293491285861077, 0.8251028592066325, 0.8840436717028117, 1.0203388366537927, 0.9341003168158449, 0.9444079970277144, 1.007421098960847, 0.9906650119546333, 0.8832259498306024, 0.9150533555340989, 0.8215144320662235, 0.7109294142133925, 0.7742386382373766, 0.6065353795990016, 0.43342996221222174, 0.38275243314479407, 0.3960506787877225, 0.1905893276255994, 0.05231627011754267, -0.016442411657098005, -0.13516407044731227, -0.41741965231980943, -0.35442182392595717, -0.5874896015803688, -0.5810839132017764, -0.804342269954606, -0.7718718303647139, -0.8953269360076853, -0.9723673982821586, -1.0012212461064351, -0.9449093442225752, -1.0979349138791745, -0.9487203698054648, -0.8747636986094492, -0.8851531152083963, -0.8637853959237648, -0.9257895503269644, -0.6653975031786096, -0.7135694161330559, -0.47516174207477435, -0.3040368941613031, -0.229221467876489, -0.15854347264678173, 0.007848426238264553, 0.08692987004746412, 0.247687615843237, 0.37749752081740257, 0.5065560253285574, 0.5633538489869622, 0.703615862960119, 0.7216265615899911, 0.8045543223789668, 0.9245023100099923, 1.0163028992891276, 0.8430330776477822, 1.0884749104734728, 1.064533861093014, 1.0543659390953755, 0.8781844451260139, 0.9439686449563409, 0.8110258934001846, 0.7798795914719995, 0.6813576041441601, 0.5996096028530253, 0.616108357690272, 0.29290784910270534, 0.2157902815697345, 0.11169374051572882, 0.06938871235769498, -0.04739959545822049, -0.07172595669877269, -0.34921572883296853, -0.523797921265949, -0.6680248116094445, -0.5794660629571525, -0.6786714012120088, -0.8577963580254291, -0.7975984364405762, -0.8567402680194189, -0.9256107595595737, -0.9781551666863038, -1.044479824661371, -1.0943998225692293, -0.9849910500274138, -0.8937516394367002, -1.0385745879614634, -0.7194744222597529, -0.6687926430817286, -0.5225646879895043, -0.5365678612075101, -0.3472434601580566, -0.27003256372243356, -0.16820052615179845, 0.08240840793842158, -0.0030452435712594456, 0.26615445141681304, 0.4331253830968323, 0.4094129314540712, 0.5680907719710112, 0.5755219628147017, 0.691028635006922, 0.8606109442245443, 0.9147497178117917, 0.8346713688041741, 0.9833882793229358, 1.0941296684143755, 0.9739694714406181, 0.9588764426662475, 1.0186594619106353, 0.9722545070593206, 0.857299376528715, 0.7557797889874526, 0.7585543437389064, 0.6690071723617921, 0.5010453000727486, 0.4238267992305788, 0.20491779040065222, 0.13439157615537312, 0.027777414279644162, 0.02591963037303764, -0.1877262099545713, -0.3258904327235144, -0.4388756384937862, -0.5961377448222817, -0.7899791349886455, -0.6576334004491338, -0.8258764015252942, -0.909185335957482, -0.9555975264905247, -1.0190404545264218, -1.0433831224437848, -0.9461282837921962, -0.9839873312126662, -0.9564820221624601, -0.9373619431014916, -0.9600786729322884, -0.8761783618317193, -0.7195350738959729, -0.6057000296444282, -0.5159638591135529, -0.34656507738267583, -0.20412578286442912, -0.17259368397424504, -0.08665882529065647, 0.22276777950565055, 0.2214623556227499, 0.3327775120503125, 0.6080199401548957, 0.7065581498703677, 0.7513670619428137, 0.6482905816931441, 0.7547613461311481, 1.067910531336485, 0.9963078030534224, 0.9162757516862005, 0.9797407949551917, 0.99974972401603, 0.9696275395128869, 1.0202281592700733, 0.9744403514957832, 0.8727320327213784, 0.863700180364619, 0.7230986294867452, 0.5367496509255995, 0.5016210301893935, 0.39828575547004813, 0.18669544585080472, 0.0811784510690799, 0.053054046944666096, -0.10856699910873809, -0.1745444795130805, -0.36419632370155053, -0.36028175434043086, -0.3859052496140738, -0.5807611492815968, -0.6714501529434694, -0.811084120212471, -0.9079899204455988, -0.9394923001563721, -0.9049278888255969, -1.1710445989262357, -0.9958037843733629, -0.8939785504702957, -0.9403621219398053, -0.9117276518228744, -0.8647109112159824, -0.7957756334615002, -0.7231911501383321, -0.5826465495784108, -0.5331816415054256, -0.4184129221751131, -0.33536796400413277, -0.19282643011134895, -0.061282133373441065, 0.11750274589789445, 0.1267523271071574, 0.46217838625607355, 0.38119208699907475, 0.5449802362020665, 0.5820973831109645, 0.5810486822933666, 0.7858218887080903, 0.8262609973732686, 1.1036033280290654, 0.9079751432777068, 1.025977823678181, 1.0230827991372722, 0.9640170162891122, 0.968034800957885, 0.9376771043910117, 0.9084157714946238, 0.8070703616248066, 0.7156177873538044, 0.5916601332890632, 0.5588920429205767, 0.40493917793765916, 0.323746301381266, 0.20476113753344588, 0.018379367274781892, 0.036975502578624864, -0.198177612012005, -0.3484809107823314, -0.37077989968878494, -0.5407583763843817, -0.6404148087297111, -0.6876208778656333, -0.8581393082799712, -0.8887116272460275, -1.1604372462210275, -0.8443203889589678, -1.0470506129559105, -1.045158355939458, -0.8724257274050821, -0.9191196174221131, -0.7665000599766119, -0.8082151365435118, -0.7338521687247682, -0.6919801592944094, -0.6607265259867567, -0.48418680381209034, -0.43466909155150213, -0.3050918254734543, -0.03755974404727602, -0.034192679550371134, -0.06743511335684144], "type": "scatter", "zaxis": null, "z": null}, {"xaxis": "x", "colorbar": {"title": {"text": ""}}, "yaxis": "y", "x": [1, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95, 100, 105, 110, 115, 120, 125, 130, 135, 140, 145, 150, 155, 160, 165, 170, 175, 180, 185, 190, 195, 200, 205, 210, 215, 220, 225, 230, 235, 240, 245, 250, 255, 260, 265, 270, 275, 280, 285, 290, 295, 300, 305, 310, 315, 320, 325, 330, 335, 340, 345, 350, 355, 360, 365, 370, 375, 380, 385, 390, 395, 400, 405, 410, 415, 420, 425, 430, 435, 440, 445, 450, 455, 460, 465, 470, 475, 480, 485, 490, 495, 500, 505, 510, 515, 520, 525, 530, 535, 540, 545, 550, 555, 560, 565, 570, 575, 580, 585, 590, 595, 600, 605, 610, 615, 620, 625, 630, 635, 640, 645, 650, 655, 660, 665, 670, 675, 680, 685, 690, 695, 700, 705, 710, 715, 720, 725, 730, 735, 740, 745, 750, 755, 760, 765, 770, 775, 780, 785, 790, 795, 800, 805, 810, 815, 820, 825, 830, 835, 840, 845, 850, 855, 860, 865, 870, 875, 880, 885, 890, 895, 900, 905, 910, 915, 920, 925, 930, 935, 940, 945, 950, 955, 960, 965, 970, 975, 980, 985, 990, 995, 1000, 1005, 1010, 1015, 1020, 1025, 1030, 1035, 1040, 1045, 1050, 1055, 1060, 1065, 1070, 1075, 1080, 1085, 1090, 1095, 1100, 1105, 1110, 1115, 1120, 1125, 1130, 1135, 1140, 1145, 1150, 1155, 1160, 1165, 1170, 1175, 1180, 1185, 1190, 1195, 1200, 1205, 1210, 1215, 1220, 1225, 1230, 1235, 1240, 1245, 1250, 1255, 1260, 1265, 1270, 1275, 1280, 1285, 1290, 1295, 1300, 1305, 1310, 1315, 1320, 1325, 1330, 1335, 1340, 1345, 1350, 1355, 1360, 1365, 1370, 1375, 1380, 1385, 1390, 1395, 1400, 1405, 1410, 1415, 1420, 1425, 1430, 1435, 1440, 1445, 1450, 1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1505, 1510, 1515, 1520, 1525, 1530, 1535, 1540, 1545, 1550, 1555, 1560, 1565, 1570, 1575, 1580, 1585, 1590, 1595, 1600, 1605, 1610, 1615, 1620, 1625, 1630, 1635, 1640, 1645, 1650, 1655, 1660, 1665, 1670, 1675, 1680, 1685, 1690, 1695, 1700, 1705, 1710, 1715, 1720, 1725, 1730, 1735, 1740, 1745, 1750, 1755, 1760, 1765, 1770, 1775, 1780, 1785, 1790, 1795, 1800, 1805, 1810, 1815, 1820, 1825, 1830, 1835, 1840, 1845, 1850, 1855, 1860, 1865, 1870, 1875, 1880, 1885, 1890, 1895, 1900, 1905, 1910, 1915, 1920, 1925, 1930, 1935, 1940, 1945, 1950, 1955, 1960, 1965, 1970, 1975, 1980, 1985, 1990, 1995, 2000, 2005, 2010, 2015, 2020, 2025, 2030, 2035, 2040, 2045, 2050, 2055, 2060, 2065, 2070, 2075, 2080, 2085, 2090, 2095, 2100, 2105, 2110, 2115, 2120, 2125, 2130, 2135, 2140, 2145, 2150, 2155, 2160, 2165, 2170, 2175, 2180, 2185, 2190, 2195, 2200, 2205, 2210, 2215, 2220, 2225, 2230, 2235, 2240, 2245, 2250, 2255, 2260, 2265, 2270, 2275, 2280, 2285, 2290, 2295, 2300, 2305, 2310, 2315, 2320, 2325, 2330, 2335, 2340, 2345, 2350, 2355, 2360, 2365, 2370, 2375, 2380, 2385, 2390, 2395, 2400, 2405, 2410, 2415, 2420, 2425, 2430, 2435, 2440, 2445, 2450, 2455, 2460, 2465, 2470, 2475, 2480, 2485, 2490, 2495, 2500, 2505, 2510, 2515, 2520, 2525, 2530, 2535, 2540, 2545, 2550, 2555, 2560, 2565, 2570, 2575, 2580, 2585, 2590, 2595, 2600, 2600], "showlegend": true, "mode": "lines", "name": "отфильтрованный сигнал", "zmin": null, "legendgroup": "отфильтрованный сигнал", "zmax": null, "line": {"color": "rgba(227, 111, 71, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.10053619330506292, 0.12191231155414839, 0.15044092226180678, 0.2868512606800424, 0.40497633422466334, 0.4572838936514527, 0.7136788469827606, 0.726471667351397, 0.7213147592472704, 0.8762010602959682, 0.7825562550814533, 1.0192971082557651, 1.0194235622575336, 0.8922364710422167, 0.9727903163671379, 0.9322235785871502, 0.8891871607671046, 0.9015968206728091, 0.7184388705827811, 0.5927184432455347, 0.4632721042771182, 0.533468700826345, 0.3931241208069961, 0.26040418760931733, 0.05506456762575383, 0.011728738742454337, -0.04688459162540398, -0.1273373859904583, -0.26408323423544, -0.37067847716331925, -0.6428667211816168, -0.6139545859478092, -0.6629573334789147, -0.6686311195243978, -0.9031230513789557, -0.8557965959808846, -0.9286100431454121, -0.9955642741164498, -0.9351849375796493, -0.8656896515249602, -0.9349909206012101, -0.8940494407423925, -0.8625249516057373, -0.741951179783022, -0.6624244265256296, -0.6400414960294893, -0.4695919422885917, -0.38027781339119116, -0.27260904120727836, -0.12226940735005593, 0.030256007784291217, 0.06575584423803282, 0.28084993410464104, 0.3643366760294985, 0.49693895925576237, 0.55693332557548, 0.6090715999107004, 0.6353376530550304, 0.7342653518194164, 0.9583604840473914, 0.9490749657284127, 0.9854374209653237, 0.8934209907122176, 0.9515486246833673, 0.9416863412122862, 1.100720629520883, 0.836347038454899, 0.7243214097488196, 0.7261916898314461, 0.632002960320875, 0.5995032569060306, 0.40040451354427, 0.37460114521076465, 0.29594668876361646, 0.22478082586386278, 0.02734569744332506, -0.12386975038255357, -0.2276040513727599, -0.32532662106172583, -0.5257176355379772, -0.5291070972732277, -0.5669377931864429, -0.7092302839707767, -0.7909537089083626, -0.7045345850891049, -0.8952093560114682, -0.9304283195727054, -0.9100216395087902, -0.9345652803324739, -0.9121906318943415, -0.9430121005482897, -0.9210876016597386, -0.7916944499533872, -0.8348878327036704, -0.6262878539425356, -0.5771735309429956, -0.36172386408608204, -0.4140347579665714, -0.28331215221366357, -0.20382742694305744, 0.03600247024775273, 0.02495020418827365, 0.14434994867345008, 0.3985842314105309, 0.42519924837309364, 0.6260689839227062, 0.6237486541157299, 0.7308693772818796, 0.7946011166622237, 0.8623535467398622, 0.8985778364831933, 1.0080482379913163, 0.9597312011054357, 0.9962627667866893, 0.969883943192749, 0.9243778053759054, 0.9040774006303189, 0.845524286430103, 0.7726516163435512, 0.7736146585166928, 0.5968312024192002, 0.5051914000445182, 0.3505575300848076, 0.2711820768041321, 0.025308644184791174, 0.023468060788028544, -0.03573593755126303, -0.19368766085884653, -0.3102260318400397, -0.5270925993451205, -0.5654891834247071, -0.7343824807243728, -0.6762485878934018, -0.7953278869550082, -0.8586029864662997, -0.9638830229698382, -1.0095497906298554, -0.9193289229224111, -0.8836652523606158, -0.927945298528325, -0.9089168279059481, -0.947631202804113, -0.8881414081599195, -0.7307717270650997, -0.622200121779123, -0.6014143409867949, -0.5211088878459114, -0.34803846583697284, -0.22078707688120477, -0.08638098186095161, -0.001557663103754936, 0.08821096005138601, 0.1690614106152532, 0.41401157601984534, 0.37598399536516813, 0.5045648965666931, 0.6953628689925149, 0.7423667201521383, 0.7466207229419385, 0.8758027166607479, 0.8997391871425805, 1.045604677830539, 0.9897795473272829, 0.9856048936092031, 0.9579099518836602, 0.9231026828045852, 0.9491420306523315, 0.8449242174610284, 0.7618237523306607, 0.66926261297695, 0.5753380359184251, 0.40889760949395654, 0.37836542546477264, 0.269211139290112, 0.13467991302150448, 0.004841979008007417, -0.08332491219208477, -0.11281356784077773, -0.5397770026241114, -0.5274834370064481, -0.55661732797577, -0.6947384510591819, -0.8834801443129179, -0.8233917739869371, -0.9400301069935226, -0.9894083152984525, -0.9052457462174232, -0.9311770976771443, -0.9402733572943369, -1.0000245653278577, -0.8466837969974604, -0.8445965131189012, -0.8040054891527985, -0.7998153710748657, -0.6346493278539129, -0.5436274924046592, -0.5594270743624608, -0.2697483207944678, -0.32114012165939804, -0.14702905552903223, -0.049760435034611916, 0.07469416421395286, 0.21923981990251412, 0.28200577488481776, 0.378247505730395, 0.5450413045531797, 0.6211060941026911, 0.705376892744099, 0.792895259105163, 0.7927506506468613, 0.928789520109266, 0.9329186938342378, 1.015108547338356, 0.991325542426719, 0.9004313758656018, 0.8222319903509152, 0.9541309611714454, 0.8090528830714622, 0.8537077834015977, 0.6858098933953682, 0.526031107231494, 0.4532345990542936, 0.45963305914262254, 0.2584175139985147, 0.18014796444456638, -0.09782269424202178, -0.06154698174985784, -0.24272293160911124, -0.4485756634287467, -0.34755079402665434, -0.6100539709955193, -0.7418343648809406, -0.6478915191032082, -0.7785714741399575, -0.8886964528416554, -0.9135627940706071, -0.9109575820122631, -0.9185791782006432, -1.0355531242077438, -0.8699150960609127, -1.0382817184554531, -0.9005539642846548, -0.9707104200726893, -0.6269360316031797, -0.5672783323733898, -0.5727860769860357, -0.36641950183751465, -0.4380617043497866, -0.33088650304378864, -0.16767900263970287, 0.05477081842388459, 0.04523673099069975, 0.2502485798316029, 0.30119876171265975, 0.41156188441672015, 0.5535268731073826, 0.6014285301547395, 0.7650501199051236, 0.7566381304108618, 0.8086344368321855, 0.9913235906195531, 0.8812543551865246, 0.9309165932113561, 0.9785677616670062, 0.9707556343732301, 0.8590747588080252, 0.9022232170741056, 0.7818692968578294, 0.7305776044869843, 0.6753725981693517, 0.5183997625339666, 0.3939121832147401, 0.3659507072404948, 0.3585296923941934, 0.1784386060466859, 0.05240699222451595, -0.08504918388998678, -0.13610329157809464, -0.3494816211282354, -0.3282067457206655, -0.6041892186484681, -0.5497943473894373, -0.7907646506581747, -0.7783723341693725, -0.8495596680297095, -0.933478339268688, -0.9401104116391591, -0.9023412842176373, -1.0234217200574656, -0.9609863507100462, -0.8981973043692917, -0.8002405551598003, -0.8599448774202623, -0.8446145123609232, -0.6574319686119424, -0.681536313498805, -0.4949417250863891, -0.3406007990881379, -0.23366855605978676, -0.19075872671372965, 0.017090567960512726, 0.07456442561235227, 0.2694457359932366, 0.30472895079057893, 0.4512339809909925, 0.5487624808253059, 0.6569825598864343, 0.7016182738752899, 0.7841182670914544, 0.9069686161813866, 0.9211991515957613, 0.8497040283556186, 1.0685052260192167, 1.0021701673091152, 1.001046956532453, 0.9057169211266552, 0.872071214764212, 0.7380297768662165, 0.766028430033675, 0.6482572787714931, 0.5705252060222833, 0.5705442502498154, 0.3341333105678127, 0.1634679385080237, 0.09688899383682084, 0.02372229532733841, -0.07794045494209184, -0.14605381530738742, -0.35663395001738185, -0.483366371784412, -0.5925398844537431, -0.5805179020670903, -0.6625364622221083, -0.7870726046138135, -0.7893387703724779, -0.832717324053806, -0.8949769782812012, -0.9441072424981294, -0.9873712780984234, -1.041523306717961, -0.9801883502434232, -0.8275333753116749, -0.9458753660225174, -0.7311975304445624, -0.6417781934541829, -0.5253731278669557, -0.506869922406034, -0.3278513738676425, -0.26073584775463987, -0.2028692255708509, 0.017565107469132396, 0.054002493749714164, 0.20374580594482772, 0.39950829821120637, 0.4137155096634288, 0.5258242633913952, 0.5102848464436411, 0.7018105144633882, 0.7981545555953541, 0.8075053560342969, 0.8208136467747282, 0.9911571046275557, 1.0653045368726668, 0.945112074911628, 0.9257374051647133, 0.9691780759239205, 0.9157890082616835, 0.7986882591170579, 0.767301959513486, 0.7069415892729947, 0.6356533697476143, 0.48006953062809526, 0.4060211005293122, 0.2210399107162553, 0.09855376418784548, 0.03651016688769379, 0.011516995458267386, -0.21422612682048364, -0.29801321554751325, -0.42984216793555874, -0.5616902159687662, -0.7327574576190874, -0.6768303079327992, -0.8687603031996759, -0.8553335273502974, -0.892291023164777, -0.9449946433107188, -0.9933973977772415, -0.9671622476460822, -0.9597952290792426, -0.9378027962621894, -0.8737372712729197, -0.9193211106726701, -0.8118168912442201, -0.7093239739798645, -0.5570289158590294, -0.5183953299916375, -0.34926870821368794, -0.216365104047758, -0.15868925932937272, -0.1189159008644653, 0.15807918016036887, 0.16371462089829958, 0.33860167406343067, 0.596837233719399, 0.687517258637816, 0.6685520707711804, 0.64065921211311, 0.7598303690008511, 0.9936405599948476, 0.9388663080603256, 0.8390105928000026, 0.9479347615392537, 0.9649309044452743, 0.9569690329229554, 0.9854891012957547, 0.9451916207087758, 0.8071586699489772, 0.8177987110137729, 0.7333030487190981, 0.532711612437039, 0.405261220245437, 0.36245655755510875, 0.17822572729523983, 0.09561946434558544, 0.07262527623630649, -0.10981675828202153, -0.13416828691469146, -0.37047812136142466, -0.35906250075107965, -0.40400339191480406, -0.5945584443032943, -0.6758608557731718, -0.8026379690327108, -0.8559182839971705, -0.9118409713604501, -0.8511115940886657, -1.1503133100381615, -0.9159369217301104, -0.8207057634860706, -0.88686805060102, -0.9319667700561745, -0.7909485667359044, -0.7739519504087929, -0.6881010614934691, -0.6187497613943722, -0.4580013204436899, -0.402534327796341, -0.27671857648721965, -0.143342301470876, -0.03361440273170657, 0.1468907955630645, 0.11862357267461754, 0.4043182349298692, 0.3410047991226107, 0.5295937169060019, 0.5962139943853405, 0.6028202822150017, 0.7666079443149721, 0.8162398096089148, 1.0342314818976264, 0.8989649078931987, 1.0237559881585487, 0.9886573995194632, 0.9428378939725549, 0.9177528516997565, 0.9336135175055069, 0.8564305143167562, 0.7428780152636685, 0.6425923497383172, 0.6085760577171597, 0.5449374085635342, 0.40778983803658075, 0.2898823808747328, 0.20199027048748242, 0.021929779343657974, 0.012357555892978489, -0.1952125918832004, -0.29010132329847815, -0.3394566095416559, -0.5113728294223823, -0.5950857608726284, -0.69400010131242, -0.8136005856596252, -0.8651930557411501, -1.0321181710202074, -0.8747670137127982, -0.991301821832661, -0.9676081795096607, -0.8535487067865482, -0.8780962939933105, -0.8095439065714942, -0.81169616573643, -0.699546523538405, -0.702070393822283, -0.6316396291518875, -0.46134768101434875, -0.43363286315649485, -0.27886938591483756, -0.00891116179673579, -0.03994224106585004, -0.0009313522416009579, 2.913812909788316e-06, -9.10177505586418e-09, 2.8384981864970626e-11, -8.834599718454683e-14, 3.3306690738754696e-16, 1.942890293094024e-16, -1.1102230246251565e-16, 0, 2.7755575615628914e-16, -2.7755575615628914e-17, -2.7755575615628914e-16, 0, 2.7755575615628914e-16, 2.220446049250313e-16, -5.551115123125783e-17, 5.551115123125783e-17, 1.1102230246251565e-16, 0, -1.1102230246251565e-16, -1.1102230246251565e-16], "type": "scatter", "zaxis": null, "z": null}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-76.97000000000003, 2677.9700000000003], "domain": [0.0658209390492855, 0.9934383202099738], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [], "height": 500, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-1.2902229632417446, 1.269434163726518], "domain": [0.03762029746281716, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "legend": {"yanchor": "auto", "xanchor": "auto", "bordercolor": "rgba(0, 0, 0, 1)", "bgcolor": "rgba(255, 255, 255, 1.000)", "borderwidth": 1, "tracegroupgap": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}, "text": ""}, "traceorder": "normal", "x": 1}, "width": 957.546875}}
{"id": "3c90bcb1-26cc-4eb5-98bb-1de6d56ef70c", "data": [{"xaxis": "x", "colorbar": {"title": {"text": ""}}, "yaxis": "y", "x": [1, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95, 100, 105, 110, 115, 120, 125, 130, 135, 140, 145, 150, 155, 160, 165, 170, 175, 180, 185, 190, 195, 200, 205, 210, 215, 220, 225, 230, 235, 240, 245, 250, 255, 260, 265, 270, 275, 280, 285, 290, 295, 300, 305, 310, 315, 320, 325, 330, 335, 340, 345, 350, 355, 360, 365, 370, 375, 380, 385, 390, 395, 400, 405, 410, 415, 420, 425, 430, 435, 440, 445, 450, 455, 460, 465, 470, 475, 480, 485, 490, 495, 500, 505, 510, 515, 520, 525, 530, 535, 540, 545, 550, 555, 560, 565, 570, 575, 580, 585, 590, 595, 600, 605, 610, 615, 620, 625, 630, 635, 640, 645, 650, 655, 660, 665, 670, 675, 680, 685, 690, 695, 700, 705, 710, 715, 720, 725, 730, 735, 740, 745, 750, 755, 760, 765, 770, 775, 780, 785, 790, 795, 800, 805, 810, 815, 820, 825, 830, 835, 840, 845, 850, 855, 860, 865, 870, 875, 880, 885, 890, 895, 900, 905, 910, 915, 920, 925, 930, 935, 940, 945, 950, 955, 960, 965, 970, 975, 980, 985, 990, 995, 1000, 1005, 1010, 1015, 1020, 1025, 1030, 1035, 1040, 1045, 1050, 1055, 1060, 1065, 1070, 1075, 1080, 1085, 1090, 1095, 1100, 1105, 1110, 1115, 1120, 1125, 1130, 1135, 1140, 1145, 1150, 1155, 1160, 1165, 1170, 1175, 1180, 1185, 1190, 1195, 1200, 1205, 1210, 1215, 1220, 1225, 1230, 1235, 1240, 1245, 1250, 1255, 1260, 1265, 1270, 1275, 1280, 1285, 1290, 1295, 1300, 1305, 1310, 1315, 1320, 1325, 1330, 1335, 1340, 1345, 1350, 1355, 1360, 1365, 1370, 1375, 1380, 1385, 1390, 1395, 1400, 1405, 1410, 1415, 1420, 1425, 1430, 1435, 1440, 1445, 1450, 1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1505, 1510, 1515, 1520, 1525, 1530, 1535, 1540, 1545, 1550, 1555, 1560, 1565, 1570, 1575, 1580, 1585, 1590, 1595, 1600, 1605, 1610, 1615, 1620, 1625, 1630, 1635, 1640, 1645, 1650, 1655, 1660, 1665, 1670, 1675, 1680, 1685, 1690, 1695, 1700, 1705, 1710, 1715, 1720, 1725, 1730, 1735, 1740, 1745, 1750, 1755, 1760, 1765, 1770, 1775, 1780, 1785, 1790, 1795, 1800, 1805, 1810, 1815, 1820, 1825, 1830, 1835, 1840, 1845, 1850, 1855, 1860, 1865, 1870, 1875, 1880, 1885, 1890, 1895, 1900, 1905, 1910, 1915, 1920, 1925, 1930, 1935, 1940, 1945, 1950, 1955, 1960, 1965, 1970, 1975, 1980, 1985, 1990, 1995, 2000, 2005, 2010, 2015, 2020, 2025, 2030, 2035, 2040, 2045, 2050, 2055, 2060, 2065, 2070, 2075, 2080, 2085, 2090, 2095, 2100, 2105, 2110, 2115, 2120, 2125, 2130, 2135, 2140, 2145, 2150, 2155, 2160, 2165, 2170, 2175, 2180, 2185, 2190, 2195, 2200, 2205, 2210, 2215, 2220, 2225, 2230, 2235, 2240, 2245, 2250, 2255, 2260, 2265, 2270, 2275, 2280, 2285, 2290, 2295, 2300, 2305, 2310, 2315, 2320, 2325, 2330, 2335, 2340, 2345, 2350, 2355, 2360, 2365, 2370, 2375, 2380, 2385, 2390, 2395, 2400, 2405, 2410, 2415, 2420, 2425, 2430, 2435, 2440, 2445, 2450, 2455, 2460, 2465, 2470, 2475, 2480, 2485, 2490, 2495, 2500, 2500], "showlegend": true, "mode": "lines", "name": "y1", "zmin": null, "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-1.3877787807814457e-16, 5.551115123125783e-17, -8.326672684688674e-17, -5.551115123125783e-17, -5.551115123125783e-17, -5.551115123125783e-17, -1.1102230246251565e-16, 1.1102230246251565e-16, -2.220446049250313e-16, 0, -1.1102230246251565e-16, 0, 2.220446049250313e-16, -1.1102230246251565e-16, -3.3306690738754696e-16, 3.3306690738754696e-16, -2.220446049250313e-16, -1.1102230246251565e-16, 0, 1.1102230246251565e-16, 1.1102230246251565e-16, 1.1102230246251565e-16, 1.6653345369377348e-16, 1.1102230246251565e-16, 1.8041124150158794e-16, -3.9898639947466563e-17, 3.7470027081099033e-16, 5.551115123125783e-17, -1.1102230246251565e-16, 1.6653345369377348e-16, 3.3306690738754696e-16, 1.1102230246251565e-16, 0, 1.1102230246251565e-16, 0, -2.220446049250313e-16, -1.1102230246251565e-16, 2.220446049250313e-16, 2.220446049250313e-16, -2.220446049250313e-16, 0, 0, 0, 0, 1.1102230246251565e-16, 0, 1.1102230246251565e-16, -5.551115123125783e-17, -5.551115123125783e-17, 0, -2.636779683484747e-16, -2.0816681711721685e-16, -5.551115123125783e-17, -2.220446049250313e-16, -2.220446049250313e-16, -1.1102230246251565e-16, -2.220446049250313e-16, 1.1102230246251565e-16, -3.3306690738754696e-16, 3.3306690738754696e-16, -1.1102230246251565e-16, -1.1102230246251565e-16, 1.1102230246251565e-16, 1.1102230246251565e-16, -2.220446049250313e-16, 0, 1.1102230246251565e-16, 0, 0, 0, 0, 1.6653345369377348e-16, 1.1102230246251565e-16, 0, 1.3877787807814457e-16, 1.5265566588595902e-16, 0, 2.7755575615628914e-16, 1.6653345369377348e-16, 0, 5.551115123125783e-16, 0, 3.3306690738754696e-16, 1.1102230246251565e-16, 3.3306690738754696e-16, 0, 2.220446049250313e-16, 0, 2.220446049250313e-16, -1.1102230246251565e-16, 1.1102230246251565e-16, 1.1102230246251565e-16, 2.220446049250313e-16, 0, 0, 1.1102230246251565e-16, 1.6653345369377348e-16, 0, 0, -1.1102230246251565e-16, -5.551115123125783e-17, 7.979727989493313e-17, -5.551115123125783e-17, 5.551115123125783e-17, 0, -1.1102230246251565e-16, -3.3306690738754696e-16, -1.1102230246251565e-16, 1.1102230246251565e-16, 1.1102230246251565e-16, 0, 2.220446049250313e-16, 2.220446049250313e-16, -1.1102230246251565e-16, -4.440892098500626e-16, -4.440892098500626e-16, 2.220446049250313e-16, -1.1102230246251565e-16, -1.1102230246251565e-16, 0, 0, 2.220446049250313e-16, 0, 5.551115123125783e-17, -8.326672684688674e-17, 5.551115123125783e-17, 5.551115123125783e-17, -2.220446049250313e-16, -2.220446049250313e-16, 1.1102230246251565e-16, 2.220446049250313e-16, 3.3306690738754696e-16, 3.3306690738754696e-16, 1.1102230246251565e-16, 2.220446049250313e-16, -3.3306690738754696e-16, 0, 0, 0, -3.3306690738754696e-16, -2.220446049250313e-16, 1.1102230246251565e-16, 0, -2.220446049250313e-16, 1.1102230246251565e-16, 2.220446049250313e-16, 0, -1.6653345369377348e-16, 5.551115123125783e-17, -1.8041124150158794e-16, -1.474514954580286e-16, -9.71445146547012e-17, -1.1102230246251565e-16, 1.6653345369377348e-16, -3.3306690738754696e-16, 0, 2.220446049250313e-16, -2.220446049250313e-16, -3.3306690738754696e-16, 1.1102230246251565e-16, 1.1102230246251565e-16, -2.220446049250313e-16, 0, 2.220446049250313e-16, 1.1102230246251565e-16, -1.1102230246251565e-16, -3.3306690738754696e-16, 2.220446049250313e-16, 0, 0, -1.1102230246251565e-16, -5.551115123125783e-17, 5.551115123125783e-17, 2.220446049250313e-16, 0, 1.960237527853792e-16, 1.249000902703301e-16, 9.71445146547012e-17, 2.220446049250313e-16, 1.1102230246251565e-16, 2.220446049250313e-16, 2.220446049250313e-16, 2.220446049250313e-16, 3.3306690738754696e-16, 3.3306690738754696e-16, -2.220446049250313e-16, 1.1102230246251565e-16, 2.220446049250313e-16, 2.220446049250313e-16, 0, 2.220446049250313e-16, 1.1102230246251565e-16, 0, 0, -1.1102230246251565e-16, 1.1102230246251565e-16, 1.1102230246251565e-16, 1.6653345369377348e-16, -1.6653345369377348e-16, 1.3877787807814457e-16, -1.0408340855860843e-16, 1.8041124150158794e-16, -8.326672684688674e-17, -2.220446049250313e-16, -5.551115123125783e-17, -2.220446049250313e-16, 0, -1.1102230246251565e-16, -1.1102230246251565e-16, -1.1102230246251565e-16, 1.1102230246251565e-16, -4.440892098500626e-16, 0, -3.3306690738754696e-16, -2.220446049250313e-16, 0, -3.3306690738754696e-16, -2.220446049250313e-16, 0, 0, -1.1102230246251565e-16, -1.1102230246251565e-16, 0, 0, -5.551115123125783e-17, -1.3877787807814457e-16, -1.249000902703301e-16, 1.942890293094024e-16, 5.551115123125783e-17, -5.551115123125783e-17, -1.1102230246251565e-16, 1.1102230246251565e-16, 0, 1.1102230246251565e-16, -2.220446049250313e-16, -1.1102230246251565e-16, 3.3306690738754696e-16, 4.440892098500626e-16, 0, 3.3306690738754696e-16, 4.440892098500626e-16, 3.3306690738754696e-16, 2.220446049250313e-16, 1.1102230246251565e-16, -1.1102230246251565e-16, 1.1102230246251565e-16, 5.551115123125783e-17, -2.7755575615628914e-16, 1.1102230246251565e-16, 3.3306690738754696e-16, 1.942890293094024e-16, 1.3183898417423734e-16, 1.6653345369377348e-16, 5.551115123125783e-17, 5.551115123125783e-17, -3.3306690738754696e-16, 2.220446049250313e-16, 1.1102230246251565e-16, 0, -3.3306690738754696e-16, 0, 1.1102230246251565e-16, -2.220446049250313e-16, 1.1102230246251565e-16, -3.3306690738754696e-16, -5.551115123125783e-16, 0, -1.1102230246251565e-16, 0, -2.220446049250313e-16, 2.220446049250313e-16, 1.1102230246251565e-16, -2.220446049250313e-16, -5.551115123125783e-17, -2.7755575615628914e-17, 9.71445146547012e-17, -2.7755575615628914e-17, -1.1102230246251565e-16, -2.220446049250313e-16, 2.7755575615628914e-16, 0, -2.220446049250313e-16, -2.220446049250313e-16, 2.220446049250313e-16, -1.1102230246251565e-16, -1.1102230246251565e-16, -1.1102230246251565e-16, 5.551115123125783e-16, 0, 1.1102230246251565e-16, 0, 3.3306690738754696e-16, 1.1102230246251565e-16, 1.1102230246251565e-16, -1.1102230246251565e-16, -1.1102230246251565e-16, -1.1102230246251565e-16, 3.3306690738754696e-16, -1.3877787807814457e-16, -5.551115123125783e-17, 5.204170427930421e-17, 2.7755575615628914e-17, 1.6653345369377348e-16, -3.885780586188048e-16, -1.6653345369377348e-16, -3.3306690738754696e-16, 0, -1.1102230246251565e-16, 0, -2.220446049250313e-16, 1.1102230246251565e-16, -2.220446049250313e-16, 0, -2.220446049250313e-16, 0, -5.551115123125783e-16, -3.3306690738754696e-16, -3.3306690738754696e-16, -4.440892098500626e-16, 0, 0, -1.1102230246251565e-16, 1.1102230246251565e-16, -1.3877787807814457e-16, -4.163336342344337e-17, -1.5612511283791264e-16, 2.7755575615628914e-17, 5.551115123125783e-17, 1.1102230246251565e-16, -1.6653345369377348e-16, 2.220446049250313e-16, 0, 0, 2.220446049250313e-16, 0, 3.3306690738754696e-16, 1.1102230246251565e-16, 0, -1.1102230246251565e-16, 6.661338147750939e-16, 1.1102230246251565e-16, 4.440892098500626e-16, 0, 0, 4.440892098500626e-16, 0, 0, 5.551115123125783e-17, 0, 5.551115123125783e-17, 4.163336342344337e-17, 9.71445146547012e-17, 8.326672684688674e-17, 2.220446049250313e-16, 1.6653345369377348e-16, -1.1102230246251565e-16, 0, 0, 1.1102230246251565e-16, 1.1102230246251565e-16, 1.1102230246251565e-16, -1.1102230246251565e-16, 2.220446049250313e-16, 2.220446049250313e-16, -3.3306690738754696e-16, -5.551115123125783e-16, 0, -2.220446049250313e-16, -2.220446049250313e-16, -3.3306690738754696e-16, -2.220446049250313e-16, -1.1102230246251565e-16, -5.551115123125783e-17, -1.3877787807814457e-16, -1.3877787807814457e-16, -6.245004513516506e-17, -1.7694179454963432e-16, 0, 5.551115123125783e-17, -5.551115123125783e-17, 0, 2.220446049250313e-16, 1.1102230246251565e-16, -1.1102230246251565e-16, -1.1102230246251565e-16, 1.1102230246251565e-16, 4.440892098500626e-16, 3.3306690738754696e-16, 0, 0, -1.1102230246251565e-16, 0, 0, 0, 0, 0, 0, 0, 5.551115123125783e-17, -5.551115123125783e-17, -8.326672684688674e-17, -2.7755575615628914e-17, -5.551115123125783e-17, -1.1102230246251565e-16, 2.220446049250313e-16, 0, -1.1102230246251565e-16, 2.220446049250313e-16, -1.1102230246251565e-16, -2.220446049250313e-16, 2.220446049250313e-16, -2.220446049250313e-16, -1.1102230246251565e-16, -1.1102230246251565e-16, -3.3306690738754696e-16, 0, 0, 1.1102230246251565e-16, 0, -2.220446049250313e-16, 0, 0, -1.1102230246251565e-16, -1.1102230246251565e-16, -1.249000902703301e-16, -6.938893903907228e-17, -1.1102230246251565e-16, -8.326672684688674e-17, 1.6653345369377348e-16, 0, -5.551115123125783e-17, -1.1102230246251565e-16, 0, 0, 1.1102230246251565e-16, 4.440892098500626e-16, -1.1102230246251565e-16, 2.220446049250313e-16, 3.3306690738754696e-16, 1.1102230246251565e-16, -2.220446049250313e-16, -1.1102230246251565e-16, -2.220446049250313e-16, 3.3306690738754696e-16, 2.220446049250313e-16, 1.1102230246251565e-16, 1.1102230246251565e-16, 5.551115123125783e-17, -5.551115123125783e-17, -1.6653345369377348e-16, 1.942890293094024e-16, 1.1102230246251565e-16, 9.71445146547012e-17, 1.6653345369377348e-16, 3.3306690738754696e-16, 2.220446049250313e-16, 0, 2.220446049250313e-16, 3.3306690738754696e-16, -1.1102230246251565e-16, 0, 1.1102230246251565e-16, -2.220446049250313e-16, 1.1102230246251565e-16, 3.3306690738754696e-16, -1.1102230246251565e-16, 0, 0, 0, -2.220446049250313e-16, -1.1102230246251565e-16, 1.1102230246251565e-16, 1.6653345369377348e-16, 0, 2.7755575615628914e-16, -1.3877787807814457e-16, -3.2959746043559335e-17, -5.551115123125783e-17, -5.551115123125783e-17, 0, 0, 1.1102230246251565e-16, 0, 2.220446049250313e-16, -2.220446049250313e-16, 2.220446049250313e-16, 1.1102230246251565e-16, 0, 0, 0, -1.1102230246251565e-16, 2.220446049250313e-16, 1.1102230246251565e-16, 1.1102230246251565e-16, 1.1102230246251565e-16, -1.1102230246251565e-16, 5.551115123125783e-17, 0, 1.1102230246251565e-16, 1.3877787807814457e-17, 1.734723475976807e-16, 1.734723475976807e-16], "type": "scatter", "zaxis": null, "z": null}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-73.97000000000003, 2574.9700000000003], "domain": [0.1695246427529892, 0.9934383202099737], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [], "height": 500, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-7.061018436615996e-16, 7.061018436615996e-16], "domain": [0.03762029746281716, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "legend": {"yanchor": "auto", "xanchor": "auto", "bordercolor": "rgba(0, 0, 0, 1)", "bgcolor": "rgba(255, 255, 255, 1.000)", "borderwidth": 1, "tracegroupgap": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}, "text": ""}, "traceorder": "normal", "x": 1}, "width": 957.546875}}
{"id": "6e9a38dc-3c9c-4ece-b858-ed1d74ef9ab3", "data": [{"xaxis": "x", "colorbar": {"title": {"text": ""}}, "yaxis": "y", "x": [1, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95, 100, 105, 110, 115, 120, 125, 130, 135, 140, 145, 150, 155, 160, 165, 170, 175, 180, 185, 190, 195, 200, 205, 210, 215, 220, 225, 230, 235, 240, 245, 250, 255, 260, 265, 270, 275, 280, 285, 290, 295, 300, 305, 310, 315, 320, 325, 330, 335, 340, 345, 350, 355, 360, 365, 370, 375, 380, 385, 390, 395, 400, 405, 410, 415, 420, 425, 430, 435, 440, 445, 450, 455, 460, 465, 470, 475, 480, 485, 490, 495, 500, 505, 510, 515, 520, 525, 530, 535, 540, 545, 550, 555, 560, 565, 570, 575, 580, 585, 590, 595, 600, 605, 610, 615, 620, 625, 630, 635, 640, 645, 650, 655, 660, 665, 670, 675, 680, 685, 690, 695, 700, 705, 710, 715, 720, 725, 730, 735, 740, 745, 750, 755, 760, 765, 770, 775, 780, 785, 790, 795, 800, 805, 810, 815, 820, 825, 830, 835, 840, 845, 850, 855, 860, 865, 870, 875, 880, 885, 890, 895, 900, 905, 910, 915, 920, 925, 930, 935, 940, 945, 950, 955, 960, 965, 970, 975, 980, 985, 990, 995, 1000, 1005, 1010, 1015, 1020, 1025, 1030, 1035, 1040, 1045, 1050, 1055, 1060, 1065, 1070, 1075, 1080, 1085, 1090, 1095, 1100, 1105, 1110, 1115, 1120, 1125, 1130, 1135, 1140, 1145, 1150, 1155, 1160, 1165, 1170, 1175, 1180, 1185, 1190, 1195, 1200, 1205, 1210, 1215, 1220, 1225, 1230, 1235, 1240, 1245, 1250, 1255, 1260, 1265, 1270, 1275, 1280, 1285, 1290, 1295, 1300, 1305, 1310, 1315, 1320, 1325, 1330, 1335, 1340, 1345, 1350, 1355, 1360, 1365, 1370, 1375, 1380, 1385, 1390, 1395, 1400, 1405, 1410, 1415, 1420, 1425, 1430, 1435, 1440, 1445, 1450, 1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1505, 1510, 1515, 1520, 1525, 1530, 1535, 1540, 1545, 1550, 1555, 1560, 1565, 1570, 1575, 1580, 1585, 1590, 1595, 1600, 1605, 1610, 1615, 1620, 1625, 1630, 1635, 1640, 1645, 1650, 1655, 1660, 1665, 1670, 1675, 1680, 1685, 1690, 1695, 1700, 1705, 1710, 1715, 1720, 1725, 1730, 1735, 1740, 1745, 1750, 1755, 1760, 1765, 1770, 1775, 1780, 1785, 1790, 1795, 1800, 1805, 1810, 1815, 1820, 1825, 1830, 1835, 1840, 1845, 1850, 1855, 1860, 1865, 1870, 1875, 1880, 1885, 1890, 1895, 1900, 1905, 1910, 1915, 1920, 1925, 1930, 1935, 1940, 1945, 1950, 1955, 1960, 1965, 1970, 1975, 1980, 1985, 1990, 1995, 2000, 2005, 2010, 2015, 2020, 2025, 2030, 2035, 2040, 2045, 2050, 2055, 2060, 2065, 2070, 2075, 2080, 2085, 2090, 2095, 2100, 2105, 2110, 2115, 2120, 2125, 2130, 2135, 2140, 2145, 2150, 2155, 2160, 2165, 2170, 2175, 2180, 2185, 2190, 2195, 2200, 2205, 2210, 2215, 2220, 2225, 2230, 2235, 2240, 2245, 2250, 2255, 2260, 2265, 2270, 2275, 2280, 2285, 2290, 2295, 2300, 2305, 2310, 2315, 2320, 2325, 2330, 2335, 2340, 2345, 2350, 2355, 2360, 2365, 2370, 2375, 2380, 2385, 2390, 2395, 2400, 2405, 2410, 2415, 2420, 2425, 2430, 2435, 2440, 2445, 2450, 2455, 2460, 2465, 2470, 2475, 2480, 2485, 2490, 2495, 2500, 2501], "showlegend": true, "mode": "lines", "name": "исходный сигнал", "zmin": null, "legendgroup": "исходный сигнал", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.10053619330506278, 0.12191231155414844, 0.1504409222618067, 0.28685126068004235, 0.4049763342246633, 0.45728389365145267, 0.7136788469827605, 0.7264716673513971, 0.7213147592472702, 0.8762010602959682, 0.7825562550814532, 1.0192971082557651, 1.0194235622575338, 0.8922364710422166, 0.9727903163671375, 0.9322235785871505, 0.8891871607671044, 0.901596820672809, 0.7184388705827811, 0.5927184432455348, 0.4632721042771183, 0.5334687008263451, 0.39312412080699627, 0.26040418760931744, 0.05506456762575401, 0.011728738742454297, -0.04688459162540361, -0.12733738599045824, -0.2640832342354401, -0.3706784771633191, -0.6428667211816165, -0.613954585947809, -0.6629573334789147, -0.6686311195243977, -0.9031230513789557, -0.8557965959808849, -0.9286100431454122, -0.9955642741164495, -0.935184937579649, -0.8656896515249605, -0.9349909206012101, -0.8940494407423925, -0.8625249516057373, -0.741951179783022, -0.6624244265256295, -0.6400414960294893, -0.4695919422885916, -0.3802778133911912, -0.2726090412072784, -0.12226940735005593, 0.030256007784290953, 0.06575584423803262, 0.280849934104641, 0.36433667602949826, 0.49693895925576215, 0.5569333255754799, 0.6090715999107001, 0.6353376530550305, 0.7342653518194161, 0.9583604840473917, 0.9490749657284125, 0.9854374209653236, 0.8934209907122177, 0.9515486246833674, 0.941686341212286, 1.100720629520883, 0.8363470384548991, 0.7243214097488196, 0.7261916898314461, 0.632002960320875, 0.5995032569060306, 0.40040451354427015, 0.37460114521076476, 0.29594668876361646, 0.22478082586386292, 0.027345697443325212, -0.12386975038255357, -0.22760405137275963, -0.32532662106172566, -0.5257176355379772, -0.5291070972732271, -0.5669377931864429, -0.7092302839707764, -0.7909537089083625, -0.7045345850891046, -0.8952093560114682, -0.9304283195727052, -0.9100216395087902, -0.9345652803324737, -0.9121906318943416, -0.9430121005482895, -0.9210876016597385, -0.791694449953387, -0.8348878327036704, -0.6262878539425356, -0.5771735309429955, -0.36172386408608187, -0.4140347579665714, -0.28331215221366357, -0.20382742694305755, 0.036002470247752674, 0.02495020418827373, 0.14434994867345002, 0.39858423141053095, 0.42519924837309364, 0.626068983922706, 0.6237486541157296, 0.7308693772818795, 0.7946011166622238, 0.8623535467398623, 0.8985778364831933, 1.0080482379913165, 0.959731201105436, 0.9962627667866892, 0.9698839431927485, 0.924377805375905, 0.9040774006303192, 0.8455242864301029, 0.7726516163435511, 0.7736146585166928, 0.5968312024192002, 0.5051914000445185, 0.3505575300848076, 0.27118207680413214, 0.02530864418479109, 0.0234680607880286, -0.035735937551262975, -0.19368766085884676, -0.31022603184003994, -0.5270925993451204, -0.5654891834247069, -0.7343824807243725, -0.6762485878934015, -0.7953278869550081, -0.8586029864662995, -0.9638830229698385, -1.0095497906298554, -0.9193289229224111, -0.8836652523606158, -0.9279452985283253, -0.9089168279059483, -0.9476312028041128, -0.8881414081599195, -0.7307717270651, -0.6222001217791229, -0.6014143409867947, -0.5211088878459114, -0.348038465836973, -0.22078707688120472, -0.08638098186095179, -0.0015576631037550834, 0.08821096005138591, 0.1690614106152531, 0.4140115760198455, 0.3759839953651678, 0.5045648965666931, 0.6953628689925151, 0.7423667201521381, 0.7466207229419382, 0.875802716660748, 0.8997391871425806, 1.0456046778305388, 0.9897795473272829, 0.9856048936092033, 0.9579099518836603, 0.9231026828045851, 0.9491420306523312, 0.8449242174610286, 0.7618237523306607, 0.66926261297695, 0.575338035918425, 0.4088976094939565, 0.3783654254647727, 0.2692111392901122, 0.13467991302150448, 0.004841979008007613, -0.08332491219208464, -0.11281356784077763, -0.5397770026241112, -0.527483437006448, -0.5566173279757698, -0.6947384510591816, -0.8834801443129177, -0.8233917739869367, -0.9400301069935223, -0.9894083152984527, -0.905245746217423, -0.9311770976771441, -0.9402733572943367, -1.0000245653278577, -0.8466837969974602, -0.844596513118901, -0.8040054891527985, -0.7998153710748657, -0.634649327853913, -0.5436274924046591, -0.5594270743624606, -0.26974832079446764, -0.3211401216593982, -0.1470290555290321, -0.04976043503461202, 0.07469416421395304, 0.21923981990251404, 0.28200577488481754, 0.37824750573039495, 0.5450413045531795, 0.6211060941026911, 0.7053768927440989, 0.7928952591051629, 0.7927506506468612, 0.9287895201092661, 0.9329186938342373, 1.015108547338356, 0.9913255424267187, 0.9004313758656016, 0.8222319903509152, 0.954130961171445, 0.809052883071462, 0.8537077834015977, 0.6858098933953682, 0.5260311072314939, 0.4532345990542935, 0.45963305914262254, 0.2584175139985147, 0.18014796444456632, -0.09782269424202192, -0.06154698174985797, -0.24272293160911104, -0.44857566342874666, -0.3475507940266544, -0.6100539709955194, -0.7418343648809405, -0.6478915191032082, -0.7785714741399574, -0.8886964528416557, -0.9135627940706073, -0.9109575820122627, -0.9185791782006427, -1.0355531242077438, -0.8699150960609123, -1.0382817184554527, -0.9005539642846545, -0.970710420072689, -0.6269360316031796, -0.5672783323733899, -0.5727860769860356, -0.3664195018375146, -0.43806170434978686, -0.3308865030437885, -0.16767900263970253, 0.05477081842388479, 0.04523673099069988, 0.2502485798316031, 0.3011987617126598, 0.4115618844167202, 0.5535268731073822, 0.6014285301547397, 0.7650501199051237, 0.7566381304108618, 0.8086344368321852, 0.9913235906195531, 0.8812543551865247, 0.9309165932113559, 0.9785677616670063, 0.9707556343732298, 0.8590747588080246, 0.9022232170741056, 0.7818692968578292, 0.7305776044869843, 0.6753725981693515, 0.5183997625339668, 0.3939121832147402, 0.36595070724049455, 0.35852969239419336, 0.17843860604668588, 0.052406992224516044, -0.0850491838899868, -0.13610329157809475, -0.3494816211282356, -0.3282067457206652, -0.6041892186484681, -0.5497943473894376, -0.7907646506581749, -0.7783723341693722, -0.8495596680297096, -0.9334783392686881, -0.9401104116391592, -0.9023412842176367, -1.0234217200574656, -0.9609863507100461, -0.8981973043692917, -0.8002405551598, -0.8599448774202622, -0.8446145123609231, -0.6574319686119425, -0.6815363134988051, -0.49494172508638923, -0.34060079908813756, -0.2336685560597869, -0.1907587267137297, 0.017090567960512778, 0.0745644256123523, 0.2694457359932368, 0.30472895079057855, 0.4512339809909923, 0.5487624808253055, 0.6569825598864343, 0.7016182738752897, 0.7841182670914544, 0.9069686161813864, 0.9211991515957614, 0.8497040283556184, 1.0685052260192167, 1.002170167309115, 1.001046956532453, 0.9057169211266547, 0.8720712147642117, 0.7380297768662162, 0.7660284300336746, 0.6482572787714931, 0.5705252060222833, 0.5705442502498153, 0.3341333105678128, 0.16346793850802357, 0.0968889938368208, 0.023722295327338255, -0.07794045494209181, -0.14605381530738737, -0.35663395001738174, -0.48336637178441216, -0.5925398844537428, -0.5805179020670903, -0.6625364622221083, -0.7870726046138132, -0.7893387703724779, -0.8327173240538057, -0.894976978281201, -0.9441072424981294, -0.9873712780984235, -1.0415233067179603, -0.9801883502434231, -0.8275333753116745, -0.9458753660225174, -0.7311975304445624, -0.6417781934541824, -0.5253731278669557, -0.506869922406034, -0.32785137386764246, -0.26073584775463987, -0.20286922557085085, 0.017565107469132438, 0.05400249374971426, 0.2037458059448278, 0.3995082982112066, 0.41371550966342896, 0.5258242633913951, 0.5102848464436411, 0.7018105144633882, 0.7981545555953542, 0.807505356034297, 0.8208136467747283, 0.9911571046275556, 1.065304536872667, 0.9451120749116282, 0.9257374051647129, 0.9691780759239199, 0.9157890082616835, 0.7986882591170577, 0.7673019595134858, 0.7069415892729943, 0.6356533697476141, 0.48006953062809515, 0.4060211005293121, 0.22103991071625517, 0.09855376418784534, 0.03651016688769373, 0.01151699545826721, -0.21422612682048364, -0.2980132155475132, -0.4298421679355588, -0.5616902159687662, -0.7327574576190872, -0.6768303079327991, -0.868760303199676, -0.8553335273502976, -0.8922910231647769, -0.9449946433107184, -0.9933973977772411, -0.9671622476460822, -0.9597952290792426, -0.9378027962621895, -0.8737372712729197, -0.9193211106726701, -0.8118168912442201, -0.7093239739798645, -0.5570289158590294, -0.5183953299916375, -0.34926870821368794, -0.21636510404775794, -0.15868925932937278, -0.11891590086446538, 0.15807918016036884, 0.16371462089829952, 0.33860167406343056, 0.5968372337193992, 0.687517258637816, 0.6685520707711803, 0.6406592121131103, 0.759830369000851, 0.9936405599948473, 0.9388663080603258, 0.8390105928000023, 0.9479347615392536, 0.9649309044452742, 0.9569690329229551, 0.9854891012957547, 0.9451916207087758, 0.8071586699489773, 0.8177987110137729, 0.7333030487190979, 0.532711612437039, 0.405261220245437, 0.36245655755510864, 0.17822572729523972, 0.09561946434558531, 0.07262527623630642, -0.10981675828202164, -0.13416828691469154, -0.3704781213614245, -0.35906250075107965, -0.4040033919148041, -0.5945584443032944, -0.6758608557731718, -0.8026379690327108, -0.8559182839971704, -0.9118409713604496, -0.8511115940886658, -1.1503133100381613, -0.9159369217301101, -0.8207057634860705, -0.8868680506010203, -0.9319667700561746, -0.7909485667359046, -0.7739519504087926, -0.6881010614934688, -0.6187497613943721, -0.4580013204436898, -0.40253432779634096, -0.2767185764872197, -0.14334230147087618, -0.03361440273170638, 0.1468907955630646, 0.11862357267461764, 0.40431823492986935, 0.34100479912261106, 0.5295937169060021, 0.5962139943853405, 0.602820282215002, 0.7666079443149725, 0.8162398096089147, 1.0342314818976264, 0.8989649078931988, 1.0237559881585485, 0.9886573995194633, 0.9428378939725552, 0.9177528516997564, 0.9336135175055069, 0.8564305143167562, 0.7428780152636685, 0.642592349738317, 0.6085760577171596, 0.5449374085635343, 0.4077898380365809, 0.2898823808747328, 0.2019902704874827, 0.021929779343657835, 0.012357555892978456, -0.19521259188320045, -0.2901013232984782, -0.3394566095416559, -0.5113728294223823, -0.5950857608726283, -0.69400010131242, -0.813600585659625, -0.8651930557411504, -1.0321181710202072, -0.8747670137127981, -0.991301821832661, -0.9676081795096607, -0.8535487067865482, -0.8780962939933106, -0.809543906571494, -0.8116961657364299, -0.6995465235384049, -0.7020703938222829, -0.6316396291518876, -0.4613476810143487, -0.43363286315649485, -0.27886938591483745, -0.008911161796735775, -0.039942241065849864, -0.04948600174445994], "type": "scatter", "zaxis": null, "z": null}, {"xaxis": "x", "colorbar": {"title": {"text": ""}}, "yaxis": "y", "x": [1, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95, 100, 105, 110, 115, 120, 125, 130, 135, 140, 145, 150, 155, 160, 165, 170, 175, 180, 185, 190, 195, 200, 205, 210, 215, 220, 225, 230, 235, 240, 245, 250, 255, 260, 265, 270, 275, 280, 285, 290, 295, 300, 305, 310, 315, 320, 325, 330, 335, 340, 345, 350, 355, 360, 365, 370, 375, 380, 385, 390, 395, 400, 405, 410, 415, 420, 425, 430, 435, 440, 445, 450, 455, 460, 465, 470, 475, 480, 485, 490, 495, 500, 505, 510, 515, 520, 525, 530, 535, 540, 545, 550, 555, 560, 565, 570, 575, 580, 585, 590, 595, 600, 605, 610, 615, 620, 625, 630, 635, 640, 645, 650, 655, 660, 665, 670, 675, 680, 685, 690, 695, 700, 705, 710, 715, 720, 725, 730, 735, 740, 745, 750, 755, 760, 765, 770, 775, 780, 785, 790, 795, 800, 805, 810, 815, 820, 825, 830, 835, 840, 845, 850, 855, 860, 865, 870, 875, 880, 885, 890, 895, 900, 905, 910, 915, 920, 925, 930, 935, 940, 945, 950, 955, 960, 965, 970, 975, 980, 985, 990, 995, 1000, 1005, 1010, 1015, 1020, 1025, 1030, 1035, 1040, 1045, 1050, 1055, 1060, 1065, 1070, 1075, 1080, 1085, 1090, 1095, 1100, 1105, 1110, 1115, 1120, 1125, 1130, 1135, 1140, 1145, 1150, 1155, 1160, 1165, 1170, 1175, 1180, 1185, 1190, 1195, 1200, 1205, 1210, 1215, 1220, 1225, 1230, 1235, 1240, 1245, 1250, 1255, 1260, 1265, 1270, 1275, 1280, 1285, 1290, 1295, 1300, 1305, 1310, 1315, 1320, 1325, 1330, 1335, 1340, 1345, 1350, 1355, 1360, 1365, 1370, 1375, 1380, 1385, 1390, 1395, 1400, 1405, 1410, 1415, 1420, 1425, 1430, 1435, 1440, 1445, 1450, 1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1505, 1510, 1515, 1520, 1525, 1530, 1535, 1540, 1545, 1550, 1555, 1560, 1565, 1570, 1575, 1580, 1585, 1590, 1595, 1600, 1605, 1610, 1615, 1620, 1625, 1630, 1635, 1640, 1645, 1650, 1655, 1660, 1665, 1670, 1675, 1680, 1685, 1690, 1695, 1700, 1705, 1710, 1715, 1720, 1725, 1730, 1735, 1740, 1745, 1750, 1755, 1760, 1765, 1770, 1775, 1780, 1785, 1790, 1795, 1800, 1805, 1810, 1815, 1820, 1825, 1830, 1835, 1840, 1845, 1850, 1855, 1860, 1865, 1870, 1875, 1880, 1885, 1890, 1895, 1900, 1905, 1910, 1915, 1920, 1925, 1930, 1935, 1940, 1945, 1950, 1955, 1960, 1965, 1970, 1975, 1980, 1985, 1990, 1995, 2000, 2005, 2010, 2015, 2020, 2025, 2030, 2035, 2040, 2045, 2050, 2055, 2060, 2065, 2070, 2075, 2080, 2085, 2090, 2095, 2100, 2105, 2110, 2115, 2120, 2125, 2130, 2135, 2140, 2145, 2150, 2155, 2160, 2165, 2170, 2175, 2180, 2185, 2190, 2195, 2200, 2205, 2210, 2215, 2220, 2225, 2230, 2235, 2240, 2245, 2250, 2255, 2260, 2265, 2270, 2275, 2280, 2285, 2290, 2295, 2300, 2305, 2310, 2315, 2320, 2325, 2330, 2335, 2340, 2345, 2350, 2355, 2360, 2365, 2370, 2375, 2380, 2385, 2390, 2395, 2400, 2405, 2410, 2415, 2420, 2425, 2430, 2435, 2440, 2445, 2450, 2455, 2460, 2465, 2470, 2475, 2480, 2485, 2490, 2495, 2500, 2501], "showlegend": true, "mode": "lines", "name": "исходный сигнал", "zmin": null, "legendgroup": "исходный сигнал", "zmax": null, "line": {"color": "rgba(227, 111, 71, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [5.551115123125783e-17, 2.5385241786413104e-07, 2.6778614704292547e-05, 1.7492070000846294e-05, -0.00013813546351404415, -0.00037574400033379973, -0.00024360245145868542, 0.0006486010267487963, 0.001560509835444479, 0.0008225096985492453, -0.0020935940781472984, -0.005031316225620364, -0.00417322712304935, 0.08901888454648377, 0.1227924450844318, 0.24413262695137494, 0.33861321921918025, 0.4863848836417348, 0.5891810379767097, 0.6319564655732044, 0.7443134745083416, 0.7979065362381567, 0.8966345056017042, 0.9400846498465592, 0.940091828611263, 0.9638882817764477, 0.9635158448740251, 0.948881421918951, 0.8916562224949051, 0.8831041000745896, 0.7668297242618223, 0.7326943960314889, 0.5978152008271895, 0.523263202202384, 0.471147722687646, 0.29334895701600566, 0.2136674348381925, 0.0828931965382474, -0.045589869301752683, -0.09588411349573622, -0.23458089060582343, -0.3331640771175143, -0.4310343699024506, -0.5697460988767359, -0.6414684271089252, -0.7581244606330758, -0.7395493347133911, -0.8449246451001857, -0.9446529023850967, -0.8840117134195942, -0.9964186640544725, -1.006760966132841, -0.804224068166179, -0.9285171339318555, -0.9325382693110815, -0.8370630185601355, -0.7017596533712858, -0.6409654149621454, -0.5509570072256664, -0.48571185087585, -0.34547084476878553, -0.22327116527393853, -0.11269714036029244, 0.030598469996472755, 0.20207326008420912, 0.2653665143453201, 0.3585790727353191, 0.515505193726463, 0.5862229678350281, 0.6584825684162154, 0.6974831033587829, 0.831155907704324, 0.8769950590992802, 0.9633370063392624, 0.9463661889479495, 0.9863349762686376, 0.9563025807032277, 0.9080289788883718, 0.9963788631026318, 0.870520596863992, 0.7948246570530623, 0.6746610571101657, 0.7067477761478452, 0.6119300490810593, 0.4371128888738872, 0.36798750555472604, 0.1771107036226559, 0.12784239879899295, -0.009263968952284984, -0.18540425251268983, -0.18287774963979603, -0.4131349058938174, -0.5016122605853367, -0.540838822046012, -0.6031714748035437, -0.7350550545777419, -0.8155950755836995, -0.8637327241744415, -0.939490467567513, -0.8849447701208055, -1.0052308152122515, -0.9719313442578078, -0.9590626424849992, -0.9077480564935207, -0.7944547000352971, -0.7928352480298542, -0.7667616114947171, -0.6696611028782242, -0.5515539137718398, -0.46297256893989097, -0.3279571229038506, -0.2213833455074512, -0.17441220763247572, 0.015115909453198073, 0.08781778170444637, 0.1926000016256595, 0.4572656140247476, 0.4345327042117313, 0.6750877336224412, 0.6812729915800114, 0.7533038718930636, 0.8180720881609576, 0.8466780356103605, 0.9091552241329837, 1.0220899762529898, 0.9567036666454858, 0.9311963807874152, 0.9655297119948658, 0.9465699156633991, 0.7902402383110764, 0.7890105424098695, 0.7513843998145779, 0.6603948858087318, 0.5985806695941642, 0.49628586747260744, 0.3394933553854636, 0.2244167985077704, 0.048987506587986895, 0.015459543105167173, -0.11052192875012085, -0.2650138620175736, -0.347362865577435, -0.4760922895288412, -0.5457322911438918, -0.6914779401734894, -0.8429748324562025, -0.7981760359360504, -0.8576778348919643, -0.9062860548113654, -0.9628642334435954, -0.9979639991994764, -0.8804249810690784, -0.9214139779865195, -0.8980235862681307, -0.848875574548646, -0.8664932843236074, -0.7289249259723535, -0.6222534133881167, -0.5285311006082374, -0.4849814774711591, -0.4283869305541643, -0.1706749565969488, -0.08042793216490693, -0.025063637268848193, 0.15665934102383225, 0.21823624216822565, 0.38320045568797706, 0.4368657358272001, 0.5365580767925779, 0.6919992619046371, 0.7646783541034641, 0.7772930150514038, 0.9010726775159671, 0.9247912964125862, 1.011630950472318, 0.9457905477521971, 0.9794504655001934, 0.9335831708483904, 0.9027166545953782, 0.8606608452624824, 0.8336315398150842, 0.7694081361352387, 0.6654624316039986, 0.5656187334685345, 0.4876193344680253, 0.2454851985068385, 0.3238328149022573, 0.09416622506621708, 0.06326512679265855, -0.1191501858118893, -0.20968617812613433, -0.4310576715223618, -0.42858733854927217, -0.6226723646895714, -0.6624575258790844, -0.8503950644422671, -0.8645941686583822, -0.9229346253599078, -0.9273952356357239, -0.9162973155056406, -0.9369171204508457, -0.9513480199479816, -0.973349131354016, -0.9053086522795044, -0.8511269578649612, -0.799468993228306, -0.7357372048059282, -0.6798381750637459, -0.566554233305437, -0.4491736642380574, -0.316577920678067, -0.20916721695376417, -0.07999068425049582, -0.006869290336481815, 0.0723752467443311, 0.286352207970598, 0.31530658008346235, 0.43244244589231995, 0.5603085766385127, 0.654169580546719, 0.7349504325357912, 0.8051165118524413, 0.8429049206625308, 0.9598984831710577, 0.9281017341570722, 0.9632104923780606, 0.9972288976851222, 0.9752039644147765, 0.8157894992285095, 0.9144519368419533, 0.7724761210841037, 0.7380930759690311, 0.6992309327033884, 0.5087674829049917, 0.44877413161075763, 0.3818313173727321, 0.22300112565215252, 0.07572358439487345, 0.024612594608530602, -0.09953272845289729, -0.25397647194449713, -0.4881486728897289, -0.39583434395077527, -0.5452883265965637, -0.6631384290607691, -0.7995414760832601, -0.8397687081185168, -0.840893859504298, -0.875110706532538, -0.9551124193402526, -1.0088506977802791, -0.9732007915127694, -0.8459008334297685, -0.9285515568216451, -0.8957611287926421, -0.8127337352044766, -0.6920122491138344, -0.6133423323064439, -0.56680647155095, -0.4621040260952977, -0.35023361043338797, -0.2080498775224759, -0.12367410940684453, -0.022848436453391407, 0.13541072769631818, 0.29308184372740365, 0.38277976429499916, 0.4124176139361413, 0.6517587867387051, 0.6824814725546934, 0.7449303823931073, 0.7956344620328111, 0.9020728277075358, 0.9737186912744963, 0.9555082941638189, 0.9395949126297244, 1.0015769694171208, 1.031994086797234, 0.8414448556014613, 0.8952524631131261, 0.7577318005263416, 0.705787468047523, 0.6776750189914713, 0.5592740440754259, 0.40243961745854473, 0.36384896937097, 0.21434566066076605, 0.13697968676754946, -0.09819522491582355, -0.07066352678055077, -0.2043425686385385, -0.4323934428379892, -0.42375764283499434, -0.6299374388887595, -0.6236627585812707, -0.7641254475280501, -0.8236783667698699, -0.8609735697566215, -0.9087889846767089, -0.9042436203299664, -0.969538501554571, -0.9787968369698079, -0.9580202910902429, -0.9396534071012048, -0.8154460901161977, -0.7959033807163264, -0.7146072823921605, -0.6451103679889166, -0.6149216382047041, -0.4811651245436339, -0.28881296288631664, -0.22526466303603332, -0.11304856777933728, -0.07976690707718323, 0.15004455660663032, 0.2364328451562107, 0.37037958498871354, 0.46266749634447824, 0.5717797277565964, 0.6656392834616498, 0.7936868578516815, 0.8114271306187181, 0.9092602294103191, 1.015165202967247, 0.8804718518119434, 1.0498189920177778, 0.9857762396468727, 0.9340709089590047, 0.885542923917541, 0.9106627259782248, 0.7629298445225052, 0.724464654647065, 0.7003586219603873, 0.5457604592085871, 0.43362577427243426, 0.36001716779051973, 0.17037217011422762, 0.08615141780483368, -0.047578458221168685, -0.07483654714609171, -0.20426030963384878, -0.4691214400553122, -0.4756173498983221, -0.5410970792859178, -0.6765426470944146, -0.7146265335007175, -0.7624559832956898, -0.8323943491757801, -0.8864808602095053, -0.9966633475810844, -0.9650393311952679, -0.9698610847882835, -0.9851225418788387, -0.9073899883639749, -0.8356493030051838, -0.805285536607209, -0.7214878775046276, -0.6705313452896547, -0.5037193657685035, -0.5407133687441511, -0.3054040969353774, -0.20492492928199224, -0.12485464164386614, 0.035510904367084484, 0.08665764428266001, 0.19605769587019406, 0.36594537384616266, 0.46204319695909785, 0.624131103398186, 0.6242979623646775, 0.6846677567952286, 0.8094490180246372, 0.9557327973054363, 0.9105041236837497, 0.9555391143867599, 1.0381169144012945, 1.0080488330835986, 0.9550969779567398, 0.9347739795462158, 0.8616321450531386, 0.8112476788614253, 0.6831884350852566, 0.6698878231326189, 0.49916716681256645, 0.45362715001911136, 0.37758352797057826, 0.15977859776193107, 0.11855565968839904, -0.0030536614926688355, -0.0733244707581967, -0.20490209439863916, -0.39991766450235383, -0.4035833239100752, -0.5669872490353746, -0.7205608265310421, -0.7436018052117901, -0.8090107533573098, -0.8912314828903409, -0.9481844786796715, -0.8907291131163773, -0.9390591238304616, -0.9825835358272857, -0.9487899994596668, -0.8686425754393754, -0.8847014960676426, -0.8768704315292846, -0.8039414962039628, -0.6425674633569933, -0.5311263439362345, -0.5036725974208752, -0.3441889467511785, -0.1880178972252632, -0.06358791523444636, -0.016676818602583895, 0.1504562091702028, 0.22557039442782206, 0.37853594426786374, 0.4262269092521668, 0.707353824076686, 0.656838681314205, 0.7321817372607468, 0.8199982128560923, 0.8892497392658892, 0.9290306665650437, 0.9130159165682712, 0.9521018183039134, 0.980416600334947, 0.8773563440398426, 0.9416494559424258, 0.9282594879586559, 0.7489010533810889, 0.7498377469794093, 0.634902350953654, 0.4885188158399746, 0.4340680203776301, 0.3610618151137211, 0.1422134544558582, 0.10782842228713364, 0.0358198587242456, -0.09804274161073159, -0.2593801557666342, -0.38786883381346576, -0.4337103180355501, -0.49337411541896814, -0.6579676296146443, -0.7781257089688389, -0.8427374013801999, -0.9012695586089017, -0.9078257416810174, -0.8712286583324447, -0.9661778427548622, -0.9594662244169405, -0.878084507833346, -0.8988463316823713, -0.9034278776113386, -0.7847523289263315, -0.8029715358699993, -0.6202615605537398, -0.573604850591143, -0.49044295810898886, -0.3337750899072136, -0.31545924278769644, -0.09183082734843236, 0.025234040511325505, 0.1389143780206573, 0.15779079231512147, 0.46209666790165616, 0.4268018899405271, 0.5877241571016915, 0.6229136723620055, 0.7902873712534417, 0.8369458643606082, 0.8974363614266413, 0.9815438973088514, 0.9314853584481058, 0.9733162717498218, 0.9730078387608014, 0.9234893030291178, 0.8929741410971644, 0.9378166725303014, 0.789009383347443, 0.7689440627736245, 0.6666263575120533, 0.5471584830660465, 0.44683846472740435, 0.3847772932262652, 0.27235358292088097, 0.07661565746976573, 0.014776168651554733, -0.07496355793765205, -0.25926390081400025, -0.4098976585799781, -0.5155177967530233, -0.4780666906418446, -0.687780087593417, -0.7640986432997311, -0.8313220839256432, -0.8528593511288151, -0.9447651184354313, -0.9560529638579566, -0.9365770385959719, -0.9557086553453792], "type": "scatter", "zaxis": null, "z": null}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-74, 2576], "domain": [0.0658209390492855, 0.9934383202099738], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [], "height": 500, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-1.2183733493653568, 1.1864147068622182], "domain": [0.03762029746281716, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "legend": {"yanchor": "auto", "xanchor": "auto", "bordercolor": "rgba(0, 0, 0, 1)", "bgcolor": "rgba(255, 255, 255, 1.000)", "borderwidth": 1, "tracegroupgap": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}, "text": ""}, "traceorder": "normal", "x": 1}, "width": 957.546875}}
{"id": "e36d3055-c229-4610-97e5-6051f8363f6a", "data": [{"xaxis": "x", "colorbar": {"title": {"text": ""}}, "yaxis": "y", "x": [0, 0, 1.9230769230769231, 3.8461538461538463, 5.769230769230769, 7.6923076923076925, 9.615384615384615, 11.538461538461538, 13.461538461538462, 15.384615384615385, 17.307692307692307, 19.23076923076923, 21.153846153846153, 23.076923076923077, 25, 26.923076923076923, 28.846153846153847, 30.76923076923077, 32.69230769230769, 34.61538461538461, 36.53846153846154, 38.46153846153846, 40.38461538461539, 42.30769230769231, 44.23076923076923, 46.15384615384615, 46.15384615384615], "showlegend": true, "mode": "lines", "name": "filt", "zmin": null, "legendgroup": "filt", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.0011727004221957237, 0.0011727004221957237, 0.002004697531391546, 0.0012843081676894785, 0.0009611395680246329, 0.0019525425836087488, 0.004905653701461555, 0.009871190075539637, 0.01618994116017238, 0.022639272229454117, 0.027789121992937826, 0.030440003319624875, 0.029988089545149376, 0.02659326224260496, 0.021101016981567043, 0.014758122179078534, 0.008830942434989483, 0.004260083556529388, 0.0014596938731471323, 0.0003080309564752506, 0.0003041199956360124, 0.0008112167164341553, 0.001289513762533119, 0.001440519796179417, 0.0012311528642596958, 0.0008157778773255467, 0.0008157778773255467], "type": "scatter", "zaxis": null, "z": null}, {"xaxis": "x", "colorbar": {"title": {"text": ""}}, "yaxis": "y", "x": [0, 0, 1.9992003198720512, 3.9984006397441023, 5.997600959616154, 7.996801279488205, 9.996001599360255, 11.995201919232308, 13.994402239104359, 15.99360255897641, 17.99280287884846, 19.99200319872051, 21.991203518592563, 23.990403838464616, 25.989604158336665, 27.988804478208717, 29.988004798080766, 31.98720511795282, 33.98640543782487, 35.98560575769692, 37.98480607756897, 39.98400639744102, 41.983206717313074, 43.982407037185126, 45.98160735705718, 47.98080767692923, 47.98080767692923], "showlegend": true, "mode": "lines", "name": "conv", "zmin": null, "legendgroup": "conv", "zmax": null, "line": {"color": "rgba(227, 111, 71, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.0009836162788075837, 0.0009836162788075837, 0.0017219240261425618, 0.0012825718424264378, 0.00140172945467808, 0.002933627887505915, 0.006410594227188987, 0.01172752204078922, 0.018068315507346364, 0.024110624053585078, 0.02843414357721515, 0.029978627197028786, 0.02838146877605994, 0.02407551225719843, 0.018122427828062195, 0.011855858712875379, 0.0064725125072871694, 0.0027159976007966047, 0.0007496826759457027, 0.00023523060670029619, 0.0005569472424097138, 0.001088150304733834, 0.0013975108760491256, 0.0013338823782043665, 0.0009858059054090487, 0.0005609479483440774, 0.0005609479483440774], "type": "scatter", "zaxis": null, "z": null}, {"xaxis": "x", "colorbar": {"title": {"text": ""}}, "yaxis": "y", "x": [0, 0, 1.9992003198720512, 3.9984006397441023, 5.997600959616154, 7.996801279488205, 9.996001599360255, 11.995201919232308, 13.994402239104359, 15.99360255897641, 17.99280287884846, 19.99200319872051, 21.991203518592563, 23.990403838464616, 25.989604158336665, 27.988804478208717, 29.988004798080766, 31.98720511795282, 33.98640543782487, 35.98560575769692, 37.98480607756897, 39.98400639744102, 41.983206717313074, 43.982407037185126, 45.98160735705718, 47.98080767692923, 47.98080767692923], "showlegend": true, "mode": "lines", "name": "fir", "zmin": null, "legendgroup": "fir", "zmax": null, "line": {"color": "rgba(62, 164, 78, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.0007963095531845184, 0.0007963095531845184, 0.0014910243204539924, 0.001416833098340073, 0.001952000260373171, 0.0037461409937434615, 0.007177439156599583, 0.012100731690124156, 0.017791207208282762, 0.023114252275449026, 0.026862413972836882, 0.028135426960687118, 0.02662409413833146, 0.02269792128626918, 0.017272277144688708, 0.011512132951506413, 0.006484345258370719, 0.0028796247555837253, 0.0008888358320154721, 0.0002541191546070065, 0.0004508093611882246, 0.0009159802093104999, 0.0012361711628153577, 0.0012368806847906433, 0.0009633974127618915, 0.0005855083779256143, 0.0005855083779256143], "type": "scatter", "zaxis": null, "z": null}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-1.4394242303078784, 49.42023190723711], "domain": [0.09128390201224845, 0.9934383202099738], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "частота, Гц", "standoff": 2, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [], "height": 500, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-0.0006709125746874427, 0.03134614650101261], "domain": [0.07581474190726165, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "спектральная плотность мощности", "standoff": 2, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "legend": {"yanchor": "auto", "xanchor": "auto", "bordercolor": "rgba(0, 0, 0, 1)", "bgcolor": "rgba(255, 255, 255, 1.000)", "borderwidth": 1, "tracegroupgap": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}, "text": ""}, "traceorder": "normal", "x": 1}, "width": 957.546875}}
{"id": "9afcd075-c206-4853-b70f-f8aeefc74216", "data": [{"xaxis": "x", "colorbar": {"title": {"text": ""}}, "yaxis": "y", "x": [0, 0, 3.9968025579536373, 7.9936051159072745, 11.990407673860911, 15.987210231814549, 19.984012789768187, 23.980815347721823, 27.977617905675462, 31.974420463629098, 35.97122302158274, 39.96802557953637, 43.96482813749001, 47.961630695443645, 51.95843325339728, 55.955235811350924, 59.95203836930456, 63.948840927258196, 67.94564348521183, 71.94244604316548, 75.9392486011191, 79.93605115907275, 83.93285371702638, 87.92965627498002, 91.92645883293366, 95.92326139088729, 95.92326139088729], "showlegend": true, "mode": "lines", "name": "y1", "zmin": null, "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.00039755913051230514, 0.00039755913051230514, 0.0007446971967907165, 0.0007083701084559742, 0.0009762423735838138, 0.0018722592136257293, 0.0035852248379015725, 0.006043155822714798, 0.008885007859825047, 0.01154507146689726, 0.013420749239078128, 0.014062011033094865, 0.013313186763118408, 0.011357130069174682, 0.008649499875044923, 0.005771389692280194, 0.0032559663803039722, 0.0014494897711537728, 0.00044904072693844596, 0.00012740362352087076, 0.0002233864102395951, 0.0004557529301670335, 0.0006171540419122945, 0.0006192746099945262, 0.00048377090303675796, 0.0002950279863877995, 0.0002950279863877995], "type": "scatter", "zaxis": null, "z": null}], "config": {"showlegend": false, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-2.877697841726622, 98.8009592326139], "domain": [0.1209135316418781, 0.9934383202099738], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "частота, Гц", "standoff": 2, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [], "height": 500, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-0.00029063459876634955, 0.014480049255382085], "domain": [0.07581474190726165, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "спектральная плотность мощности", "standoff": 2, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "width": 957.546875}}
{"id": "c8a215af-8577-40c5-a897-c9defad3bc97", "data": [{"xaxis": "x", "colorbar": {"title": {"text": ""}}, "yaxis": "y", "x": [0, 0, 0.9998000399920016, 1.9996000799840032, 2.9994001199760048, 3.9992001599680065, 4.999000199960008, 5.9988002399520095, 6.998600279944012, 7.998400319936013, 8.998200359928015, 9.998000399920016, 10.997800439912018, 11.997600479904019, 12.99740051989602, 13.997200559888023, 14.997000599880025, 15.996800639872026, 16.996600679864027, 17.99640071985603, 18.99620075984803, 19.996000799840033, 20.995800839832032, 21.995600879824035, 22.99540091981604, 23.995200959808038, 23.995200959808038], "showlegend": true, "mode": "lines", "name": "y1", "zmin": null, "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.0016205332564213789, 0.0016205332564213789, 0.0030308975463071257, 0.002865705158857316, 0.00391950017690313, 0.007501914497229006, 0.014373898784305577, 0.024240554361288903, 0.03563985858412866, 0.04628791864390171, 0.05376011792272347, 0.056256572427416066, 0.05317078007971617, 0.04526066719143761, 0.03437537965344813, 0.022855281583765704, 0.012832412074683823, 0.005675433381004981, 0.0017477628745836324, 0.0005172802331759301, 0.0009262318387906068, 0.0018504970659949816, 0.002472737723376639, 0.0024560664060459024, 0.0019000662127721542, 0.0011468121655399325, 0.0011468121655399325], "type": "scatter", "zaxis": null, "z": null}], "config": {"showlegend": false, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-0.7198560287942417, 24.715056988602278], "domain": [0.09128390201224845, 0.9934383202099738], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "частота, Гц", "standoff": 2, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [], "height": 500, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-0.0011548985326512752, 0.05792875119324327], "domain": [0.07581474190726165, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "спектральная плотность мощности", "standoff": 2, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "width": 957.546875}}
{"id": "e52d36a4-8630-4ac3-a94d-ee393dead300", "data": [{"xaxis": "x", "colorbar": {"title": {"text": ""}}, "yaxis": "y", "x": [1, 3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 51, 54, 57, 60, 63, 66, 69, 72, 75, 78, 81, 84, 87, 90, 93, 96, 99, 102, 105, 108, 111, 114, 117, 120, 123, 126, 129, 132, 135, 138, 141, 144, 147, 150, 153, 156, 159, 162, 165, 168, 171, 174, 177, 180, 183, 186, 189, 192, 195, 198, 201, 204, 207, 210, 213, 216, 219, 222, 225, 228, 231, 234, 237, 240, 243, 246, 249, 252, 255, 258, 261, 264, 267, 270, 273, 276, 279, 282, 285, 288, 291, 294, 297, 300, 303, 306, 309, 312, 315, 318, 321, 324, 327, 330, 333, 336, 339, 342, 345, 348, 351, 354, 357, 360, 363, 366, 369, 372, 375, 378, 381, 384, 387, 390, 393, 396, 399, 402, 405, 408, 411, 414, 417, 420, 423, 426, 429, 432, 435, 438, 441, 444, 447, 450, 453, 456, 459, 462, 465, 468, 471, 474, 477, 480, 483, 486, 489, 492, 495, 498, 501, 504, 507, 510, 513, 516, 519, 522, 525, 528, 531, 534, 537, 540, 543, 546, 549, 552, 555, 558, 561, 564, 567, 570, 573, 576, 579, 582, 585, 588, 591, 594, 597, 600, 603, 606, 609, 612, 615, 618, 621, 624, 627, 630, 633, 636, 639, 642, 645, 648, 651, 654, 657, 660, 663, 666, 669, 672, 675, 678, 681, 684, 687, 690, 693, 696, 699, 702, 705, 708, 711, 714, 717, 720, 723, 726, 729, 732, 735, 738, 741, 744, 747, 750, 753, 756, 759, 762, 765, 768, 771, 774, 777, 780, 783, 786, 789, 792, 795, 798, 801, 804, 807, 810, 813, 816, 819, 822, 825, 828, 831, 834, 837, 840, 843, 846, 849, 852, 855, 858, 861, 864, 867, 870, 873, 876, 879, 882, 885, 888, 891, 894, 897, 900, 903, 906, 909, 912, 915, 918, 921, 924, 927, 930, 933, 936, 939, 942, 945, 948, 951, 954, 957, 960, 963, 966, 969, 972, 975, 978, 981, 984, 987, 990, 993, 996, 999, 1002, 1005, 1008, 1011, 1014, 1017, 1020, 1023, 1026, 1029, 1032, 1035, 1038, 1041, 1044, 1047, 1050, 1053, 1056, 1059, 1062, 1065, 1068, 1071, 1074, 1077, 1080, 1083, 1086, 1089, 1092, 1095, 1098, 1101, 1104, 1107, 1110, 1113, 1116, 1119, 1122, 1125, 1128, 1131, 1134, 1137, 1140, 1143, 1146, 1149, 1152, 1155, 1158, 1161, 1164, 1167, 1170, 1173, 1176, 1179, 1182, 1185, 1188, 1191, 1194, 1197, 1200, 1203, 1206, 1209, 1212, 1215, 1218, 1221, 1224, 1227, 1230, 1233, 1236, 1239, 1242, 1245, 1248, 1251, 1251], "showlegend": true, "mode": "lines", "name": "y1", "zmin": null, "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-4.1111208626568645e-08, -2.1537377242370886e-07, 2.029620597884731e-05, 8.406093051789123e-05, 0.00019584147476310785, 0.00037814388964858413, 0.0006571323798276626, 0.0010748196423357064, 0.001686061501596808, 0.0026836008526072066, 0.004805082499049803, 0.08904710116266774, 0.13534683839675463, 0.32587375689953846, 0.42550518801693904, 0.5272824297666393, 0.6319432029728552, 0.7280566622497573, 0.8543324238786352, 0.8454303060603314, 0.9616684281530694, 0.9638416326790323, 0.995074957922114, 0.9018084118759228, 0.845148636426131, 0.8204255612189196, 0.7326711810425438, 0.564040200418278, 0.5791134344915287, 0.37236774208878304, 0.24180298516069554, 0.08289510834655146, -0.043415373873235914, -0.11790300483741609, -0.3585759879470603, -0.4056161155961285, -0.5697228629847058, -0.6546639315808752, -0.7540424150830407, -0.8472240111528384, -0.9177398097713446, -0.883974094793955, -0.9457877856117818, -1.018163772176268, -0.9629139675420169, -0.9144715941532934, -0.8370209859048963, -0.6968139735542249, -0.6161019712786437, -0.49649776276314844, -0.3981526990833167, -0.22325937702304843, -0.08264847438273154, 0.03539215391418926, 0.23827780466014034, 0.3451730703023513, 0.5154781435795012, 0.5996027343040752, 0.6852332124711562, 0.7410133181203716, 0.8710099097893064, 0.9632942223819296, 0.9024606952446352, 0.9755211889899661, 0.9749925118292109, 1.0151740923935895, 0.8704890801337906, 0.8313221049622, 0.6980483736609249, 0.6243963514299232, 0.45498630279670044, 0.36797087815898377, 0.15406019397402376, 0.03639977857608447, -0.1008153878238612, -0.18717528792624544, -0.413112304177772, -0.5060494645101657, -0.5834587781903807, -0.7057996605290278, -0.80837335171911, -0.8637008440675941, -0.9698220578271975, -0.9244910987666076, -0.9291345690055619, -0.9466919775117579, -0.9077099432373635, -0.7724397195611562, -0.7503649515535084, -0.7202854140474022, -0.560659938744694, -0.46295452042625906, -0.29303775081212335, -0.16688982314534906, -0.022848545090354666, 0.03569359436550373, 0.19259415394033963, 0.49650583518982916, 0.5193432546721174, 0.5979192530741823, 0.7530083175671931, 0.8180335477594974, 0.8657553642681237, 0.9633942823111452, 0.949674387184928, 0.9360492816043451, 0.9654925133003245, 0.9409570976450113, 0.7757477084342939, 0.7505017569232284, 0.6850356298851609, 0.5985585482510414, 0.4845241281547506, 0.2985215067118295, 0.1040059771394195, 0.021821779695636225, -0.11051634064051619, -0.25959327647452674, -0.47040270015893865, -0.5211130521760514, -0.6938430940359503, -0.8429377619828016, -0.8318500690517703, -0.9087911314305321, -0.8925989229260047, -0.9576262823162033, -0.8803940359253551, -0.9155306208353075, -0.8640924555167923, -0.8512711927435156, -0.7461668113945291, -0.6222342473484423, -0.508603465426721, -0.40495915159016765, -0.26224572579204564, -0.10133711736619234, -0.025067182810370733, 0.1581916475346335, 0.32810945916530193, 0.4259567393066332, 0.5261893727783906, 0.6919701674828969, 0.7872295143993827, 0.8623506048272002, 0.934051615517901, 0.9789285134623752, 0.9457528229860256, 0.9957227782848291, 0.9303860755373369, 0.9304725093738205, 0.8204396784937793, 0.7693735586440452, 0.6665142661892903, 0.46388662590177693, 0.37807191483807956, 0.33497731119102264, 0.0941504660489865, 0.05768493847649492, -0.11653352790927286, -0.3894456446604843, -0.43627347518022563, -0.622647948874564, -0.7234886659029209, -0.771034059635022, -0.9322429291148037, -0.9297157678163146, -0.9162632751358918, -0.9071431334116027, -0.9504960965817649, -0.913472600694953, -0.8616077538527082, -0.7994385124987837, -0.7014960256673675, -0.6332338901228438, -0.5161158030864793, -0.33222530345077045, -0.2091614581277529, -0.0602477019127736, 0.06420434359446898, 0.15987992600874193, 0.304389444540962, 0.4324297273145609, 0.5809727058088057, 0.7207116181706902, 0.751604273353018, 0.8122236135012468, 0.9598626685261594, 0.9565960756358698, 0.9612450093477893, 0.9596817365299709, 0.8179260873603248, 0.9144120273047356, 0.786648423472227, 0.6475581028516796, 0.559175174423287, 0.46903556075709174, 0.38181459381388577, 0.2232602985915868, 0.00702434413941409, -0.08021970619384819, -0.26215581915250347, -0.48812466861397874, -0.4855015289015795, -0.6098117840886123, -0.738071332015973, -0.7710679943381322, -0.8408593723336701, -0.872763176252129, -0.9159763477739925, -0.9959071086104975, -0.8637257087351903, -0.9285126991537935, -0.889830500455434, -0.7507392183127153, -0.6889017400782549, -0.5759829972452404, -0.46208654373649366, -0.3238852489451009, -0.17222987437395243, -0.012317898368506221, 0.09918364313459328, 0.2930715974291954, 0.4264671559613613, 0.4892059833734834, 0.6368329254614333, 0.761453687298674, 0.7956027695052266, 0.9121518260076319, 0.9838394863053449, 1.0049343032023956, 1.0141116642018801, 1.0319504828050308, 0.8667667280131829, 0.8072627139882252, 0.7603832495806914, 0.7114902543980116, 0.5592451516096189, 0.39729205226689934, 0.30451572529573606, 0.11845712944153959, -0.04478753069301505, -0.07066497335487093, -0.20250195449398312, -0.41845716908356756, -0.5840219759135863, -0.6119722048279191, -0.7640919350035598, -0.8445218344339889, -0.8687539916686045, -0.9479724664046215, -0.9310026448445934, -0.9787572892017953, -0.95044429135302, -0.8514439880840036, -0.8313699302601388, -0.7543609381392079, -0.6450802116581322, -0.5737037261984026, -0.42366275280555543, -0.24005763656644033, -0.17434021699412333, -0.07975868021057522, 0.1840873665943733, 0.27638721096042806, 0.4061420223882652, 0.596982612663211, 0.6656105035928167, 0.827448490154277, 0.884630919101098, 0.9229043345632744, 0.8933820596840699, 1.0497718779624132, 0.9776171793411523, 0.915736418654125, 0.9124187529708286, 0.747812496730846, 0.7244443537722413, 0.7049215565085029, 0.5366392422006819, 0.31466073185077, 0.1881313640587074, 0.08615329110371113, -0.07337167765558443, -0.14462103815698227, -0.3914371965173511, -0.4544545615475138, -0.5410739109317262, -0.7007295903864902, -0.7916897463688843, -0.7816310643266012, -0.8804920118872932, -0.9966217398506388, -0.979315807626023, -0.9910054869436882, -0.9274574870019454, -0.8025561723692123, -0.8052493363930767, -0.6995857997259292, -0.6266316922500134, -0.578827072694433, -0.31441901089606145, -0.2049204839869141, -0.08474198970019926, 0.06106102165684194, 0.16027271042066774, 0.35638874460189823, 0.4620288385411169, 0.6290041853381494, 0.7029030183018102, 0.8076767946610905, 0.9009606096617336, 0.9104629333562403, 0.9555440811730207, 0.9898040318923074, 0.963329205652862, 0.9529263119613044, 0.8615928707163435, 0.7996772100168711, 0.6417394998941458, 0.607782991135806, 0.4703469429234582, 0.3775662464963448, 0.1353350358189439, 0.057393724052470944, -0.00464743549566404, -0.20023999879847848, -0.3999022292704532, -0.44015949710842067, -0.6057900929723539, -0.642746554236771, -0.8353500868915391, -0.8911952036709264, -0.9564881165152974, -0.8863154890958364, -0.9847251084136488, -0.937619188230342, -0.8686132947219928, -0.8807269069960338, -0.8168613350901941, -0.7578291166886795, -0.5839595348695267, -0.5036469821046256, -0.3569545970105421, -0.09978809617208785, -0.06392891684669055, 0.16831651270195958, 0.22556770825722752, 0.43172689092257543, 0.45488575130687764, 0.6452236483179028, 0.70575693949379, 0.8199646042361889, 0.8913771970823925, 0.8578494931568262, 0.9390569680462721, 0.9682483199729937, 0.8773246868307226, 0.9063803266508853, 0.8874178081953741, 0.7680282626098475, 0.6807549034684586, 0.4884992147668531, 0.4408036494358395, 0.27245891534670574, 0.17712702120615775, 0.0375806801367053, -0.09804102184612416, -0.30674649858780756, -0.36068904010088354, -0.4676397559887484, -0.6622224708501424, -0.7780915620059239, -0.8400069602648138, -0.8908052843413826, -0.892765575509938, -1.0308644847762793, -0.9594238646152066, -0.9084175472555418, -0.9698384636873157, -0.7959231761996556, -0.7798243145511352, -0.6202397238205979, -0.5091469213770907, -0.46159082158872966, -0.32656106200495694, -0.12040582134411523, 0.02523571515209575, 0.14183914053344457, 0.27035889588485934, 0.39861116371242394, 0.5837903549764466, 0.6228830490881537, 0.8360781608570801, 0.8419839384923545, 0.9763407914104941, 0.9293886225694087, 0.9732761495301067, 0.9536379141355692, 0.977242065365079, 0.9027273651747765, 0.8258134762114373, 0.7689154499054441, 0.6675917019060434, 0.5221618198222292, 0.3395538471462627, 0.26658637093179277, 0.07661933512785243, -0.002228814757288853, -0.15855406759704507, -0.37490335575218153, -0.4815947619033185, -0.47787822397510865, -0.6831857335222378, -0.8250804297929573, -0.8283967861713368, -0.9521943714772771, -0.9792505052483693, -0.7132878757254483, -0.7132878757254483], "type": "scatter", "zaxis": null, "z": null}, {"xaxis": "x", "colorbar": {"title": {"text": ""}}, "yaxis": "y", "x": [1, 9, 18, 27, 36, 45, 54, 63, 72, 81, 90, 99, 108, 117, 126, 135, 144, 153, 162, 171, 180, 189, 198, 207, 216, 225, 234, 243, 252, 261, 270, 279, 288, 297, 306, 315, 324, 333, 342, 351, 360, 369, 378, 387, 396, 405, 414, 423, 432, 441, 450, 459, 468, 477, 486, 495, 504, 513, 522, 531, 540, 549, 558, 567, 576, 585, 594, 603, 612, 621, 630, 639, 648, 657, 666, 675, 684, 693, 702, 711, 720, 729, 738, 747, 756, 765, 774, 783, 792, 801, 810, 819, 828, 837, 846, 855, 864, 873, 882, 891, 900, 909, 918, 927, 936, 945, 954, 963, 972, 981, 990, 999, 1008, 1017, 1026, 1035, 1044, 1053, 1062, 1071, 1080, 1089, 1098, 1107, 1116, 1125, 1134, 1143, 1152, 1161, 1170, 1179, 1188, 1197, 1206, 1215, 1224, 1233, 1242, 1251, 1260, 1269, 1278, 1287, 1296, 1305, 1314, 1323, 1332, 1341, 1350, 1359, 1368, 1377, 1386, 1395, 1404, 1413, 1422, 1431, 1440, 1449, 1458, 1467, 1476, 1485, 1494, 1503, 1512, 1521, 1530, 1539, 1548, 1557, 1566, 1575, 1584, 1593, 1602, 1611, 1620, 1629, 1638, 1647, 1656, 1665, 1674, 1683, 1692, 1701, 1710, 1719, 1728, 1737, 1746, 1755, 1764, 1773, 1782, 1791, 1800, 1809, 1818, 1827, 1836, 1845, 1854, 1863, 1872, 1881, 1890, 1899, 1908, 1917, 1926, 1935, 1944, 1953, 1962, 1971, 1980, 1989, 1998, 2007, 2016, 2025, 2034, 2043, 2052, 2061, 2070, 2079, 2088, 2097, 2106, 2115, 2124, 2133, 2142, 2151, 2160, 2169, 2178, 2187, 2196, 2205, 2214, 2223, 2232, 2241, 2250, 2259, 2268, 2277, 2286, 2295, 2304, 2313, 2322, 2331, 2340, 2349, 2358, 2367, 2376, 2385, 2394, 2403, 2412, 2421, 2430, 2439, 2448, 2457, 2466, 2475, 2484, 2493, 2502, 2511, 2520, 2529, 2538, 2547, 2556, 2565, 2574, 2583, 2592, 2601, 2610, 2619, 2628, 2637, 2646, 2655, 2664, 2673, 2682, 2691, 2700, 2709, 2718, 2727, 2736, 2745, 2754, 2763, 2772, 2781, 2790, 2799, 2808, 2817, 2826, 2835, 2844, 2853, 2862, 2871, 2880, 2889, 2898, 2907, 2916, 2925, 2934, 2943, 2952, 2961, 2970, 2979, 2988, 2997, 3006, 3015, 3024, 3033, 3042, 3051, 3060, 3069, 3078, 3087, 3096, 3105, 3114, 3123, 3132, 3141, 3150, 3159, 3168, 3177, 3186, 3195, 3204, 3213, 3222, 3231, 3240, 3249, 3258, 3267, 3276, 3285, 3294, 3303, 3312, 3321, 3330, 3339, 3348, 3357, 3366, 3375, 3384, 3393, 3402, 3411, 3420, 3429, 3438, 3447, 3456, 3465, 3474, 3483, 3492, 3501, 3510, 3519, 3528, 3537, 3546, 3555, 3564, 3573, 3582, 3591, 3600, 3609, 3618, 3627, 3636, 3645, 3654, 3663, 3672, 3681, 3690, 3699, 3708, 3717, 3726, 3735, 3744, 3753, 3762, 3771, 3780, 3789, 3798, 3807, 3816, 3825, 3834, 3843, 3852, 3861, 3870, 3879, 3888, 3897, 3906, 3915, 3924, 3933, 3942, 3951, 3960, 3969, 3978, 3987, 3996, 4005, 4014, 4023, 4032, 4041, 4050, 4059, 4068, 4077, 4086, 4095, 4104, 4113, 4122, 4131, 4140, 4149, 4158, 4167, 4176, 4185, 4194, 4203, 4212, 4221, 4230, 4239, 4248, 4257, 4266, 4275, 4284, 4293, 4302, 4311, 4320, 4329, 4338, 4347, 4356, 4365, 4374, 4383, 4392, 4401, 4410, 4419, 4428, 4437, 4446, 4455, 4464, 4473, 4482, 4491, 4500, 4509, 4518, 4527, 4536, 4545, 4554, 4563, 4572, 4581, 4590, 4599, 4608, 4617, 4626, 4635, 4644, 4653, 4662, 4671, 4680, 4689, 4698, 4707, 4716, 4725, 4734, 4743, 4752, 4761, 4770, 4779, 4788, 4797, 4806, 4815, 4824, 4833, 4842, 4851, 4860, 4869, 4878, 4887, 4896, 4905, 4914, 4923, 4932, 4941, 4950, 4959, 4968, 4977, 4986, 4995, 5001], "showlegend": true, "mode": "lines", "name": "y2", "zmin": null, "legendgroup": "y2", "zmax": null, "line": {"color": "rgba(227, 111, 71, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [5.550583640979668e-17, 2.538281131929343e-07, 2.0434238841639464e-05, -4.933347076772336e-05, -0.00010775343767852996, 0.00019727096042539602, 0.00038941339913611985, -0.0005023777038192249, -0.0009460472065687514, 0.0010591941002605885, 0.0018542941779079699, -0.002093393630516675, -0.0037745380061527706, 0.004768517831233603, 0.03349148144326776, 0.11930654326735265, 0.16294754430994368, 0.3258251421111843, 0.3591970355382646, 0.48086737052377704, 0.6179150208700203, 0.6318959599682721, 0.7526435744092375, 0.7694676971947281, 0.8937040455611083, 0.8453851464925709, 1.0093318231836148, 0.974893481745886, 0.9082126024558256, 0.9950192317736547, 0.9334196699603114, 0.8915708523751693, 0.8681031035561859, 0.8203818745228948, 0.7560145924343861, 0.6325012717526013, 0.5051776900295518, 0.5790857923944901, 0.4154059936407888, 0.2610569805316896, 0.19068238512101535, 0.08288526006908449, -0.03999932275530915, -0.07069118398016123, -0.1491553015157628, -0.3585521771553215, -0.36544955520909034, -0.49549803082951904, -0.5791971722871767, -0.6546324671484527, -0.76610541094669, -0.7394785278108403, -0.8484110464513546, -0.917691504628112, -0.9204286042674402, -0.9792487229092582, -0.8852974990767344, -1.018111897101598, -0.8692720637283343, -0.8803897131792235, -0.9301825932015756, -0.8369828753745467, -0.7084191442559716, -0.6604171143760845, -0.5912561092007054, -0.4964746311954997, -0.45365038862733503, -0.2541071729901098, -0.19456546032934238, -0.08264015541263513, 0.02786774451572132, 0.20205391292106084, 0.25113278580993526, 0.3451492097283176, 0.49310995721446427, 0.5485221566085644, 0.6185032286668125, 0.6851980710446285, 0.7037989062561699, 0.8645360661358135, 0.8846082424731705, 0.9632447732638885, 0.9704483188053786, 0.9488548457656006, 0.9409993708013952, 0.9749432527589437, 0.9738603587844272, 0.9081564060228581, 0.8169067543963553, 0.8312776091845422, 0.6654586161312799, 0.7066801097751441, 0.6214992411527724, 0.45496219082545647, 0.3559473726019428, 0.3062566980172047, 0.16798454597707668, 0.036399405144889645, -0.0427068931450478, -0.21228980551410545, -0.19154699182966103, -0.41309535098970374, -0.4940928046729914, -0.5145729569475599, -0.5876629869904748, -0.7057612688352681, -0.7741322806353964, -0.7997296595473506, -0.8996613629823212, -0.9697723153956935, -0.8790283280930132, -1.0051345710848718, -0.9620247251644486, -0.9466407969644325, -0.9180709223305531, -0.8926440838476984, -0.7909263347342711, -0.7503210126945388, -0.751771042445724, -0.6358913573409735, -0.5450975241183196, -0.4629282424128645, -0.35379935647580096, -0.2551436857574658, -0.17524201597801853, -0.02284746102190521, -0.010639617551493044, 0.16754305460402777, 0.2386039643767721, 0.49648033626383703, 0.44019030115230817, 0.6750230984870633, 0.6513964112517796, 0.7529734374771029, 0.8292678277452338, 0.807797661642261, 0.8854271481680269, 0.9633409756546821, 0.986029936370386, 0.9668400021123977, 0.9347725908319457, 0.9654372689825905, 0.94397981665489, 0.8269000074085937, 0.7915069433518461, 0.7504603531068972, 0.7245484163275954, 0.6326599945760802, 0.5579203649753679, 0.4844995816008352, 0.32496881444806447, 0.22439531210025596, 0.060692677069185, 0.02182378083972735, -0.07907557542099412, -0.2093301231548631, -0.2428578995544485, -0.47038008911105894, -0.4907339005543784, -0.5700825035394107, -0.6804000543187787, -0.8428941232539725, -0.7929215177871998, -0.8684694707599686, -0.9450947378507923, -0.8925523115462841, -0.9292531669781577, -0.9965979371248913, -0.9106544408281252, -0.9154779005780456, -0.8871312736259687, -0.848794300389826, -0.8683556709018821, -0.7461280767772985, -0.6311464623954989, -0.6163507645660582, -0.5226094349992892, -0.40493331791744924, -0.37205333264108076, -0.1577339134943743, -0.0740871086542351, -0.025061237593210123, 0.14896447787176298, 0.17089347760906873, 0.3678567289425084, 0.4259337352051544, 0.4915278407807811, 0.5714145660438323, 0.7020128917283285, 0.7871904966504187, 0.7953159936623635, 0.9009864058336422, 0.9314137078740297, 0.9788766257435146, 0.9923888687732001, 0.9191772318590545, 0.9787618352348452, 0.9303426529882084, 0.9211821015397106, 0.8159620613987526, 0.833199411925424, 0.7693344704521532, 0.6700194719404741, 0.621931614082743, 0.45728436592647126, 0.378048127102971, 0.29000499014770686, 0.227807617825858, 0.04901617960908539, 0.057687576249771645, -0.12440816245826186, -0.2096661020770002, -0.4249512886549905, -0.4362475662030332, -0.5288297579744738, -0.6488109659159401, -0.8366356357724557, -0.770991067066209, -0.9199324213067669, -0.9207316427289428, -0.9225989445452683, -0.9162095861660535, -0.9574161487257089, -0.9406433573421602, -0.9634219670818809, -0.9134141362410461, -0.8926896987556814, -0.8531530545613081, -0.7822278351238579, -0.7014564521846391, -0.6741818356602971, -0.5664999895268216, -0.4659977321019927, -0.33220255744298677, -0.2681465264845289, -0.11916545978525565, -0.041840123217444146, 0.06420220872596205, 0.08114283455623453, 0.31226017669141276, 0.3239109658940993, 0.43240104242038396, 0.5503088536892161, 0.6315647169147242, 0.7487774827207383, 0.7515648697199178, 0.7964224620675098, 0.9060473867402454, 0.9611231989139861, 0.9565430141201067, 0.9541347800045953, 0.9971334196878274, 0.9765981446913491, 0.8178777496285999, 0.8937910250584242, 0.8371696619742609, 0.8266746361357745, 0.6475182718569428, 0.6472282783710441, 0.5081351578573906, 0.4403281974806182, 0.3817947595778549, 0.22837007582960778, 0.14312556681353364, 0.027745966392055968, -0.08021470617319418, -0.21287466239181718, -0.26114825591003993, -0.45834373164237185, -0.4854725947463178, -0.5492898268692754, -0.6630749379913838, -0.7993714244664072, -0.7710286951378958, -0.8545727377750134, -0.9148800624555214, -0.9198737864666698, -0.9159344905640819, -1.024642095212779, -0.9652838611190807, -0.8490716418998826, -0.9284626542204107, -0.8947165230795642, -0.8347365853101664, -0.705411419611457, -0.6888624575321605, -0.5662539288133308, -0.49524466395723954, -0.47073110314056044, -0.3238734871527223, -0.19276365388640476, -0.12366226843802504, -0.01965191053895233, 0.09917708221864856, 0.2651781898666778, 0.29460798980958286, 0.4431008050827673, 0.48918332388795877, 0.653159957295764, 0.7279385500572508, 0.7409200977185281, 0.7955582853544276, 0.8904979188030399, 0.9441076203349053, 0.9518933682947446, 1.0048894811542923, 0.9729825038405937, 0.9422904348586102, 1.0142915932654302, 0.8667192613210433, 0.8734622532920652, 0.7576592527742971, 0.719991317684619, 0.7114567683444694, 0.5158774903473415, 0.503092833138554, 0.41413361414685723, 0.30450524067879886, 0.1470468788917652, 0.12953135834165816, -0.11232731642877826, -0.07065676122047278, -0.21097257283799667, -0.37973975194597986, -0.38674223218457343, -0.583992298750654, -0.6245948952640662, -0.7079496930453684, -0.7440686301510983, -0.8444775932534636, -0.8635161254734329, -0.9087019742095814, -0.9173548712457157, -0.9309503816338554, -1.0045058489126488, -0.9700069101039469, -0.9535564621360013, -0.8513972663126448, -0.8405634589187495, -0.7910932116077122, -0.6937971217803502, -0.6450486029858038, -0.6319512848071036, -0.4910707432877526, -0.34844312628506796, -0.2400360154373105, -0.22597974729034637, -0.020392830516796773, -0.06359620562323656, 0.18407340598971159, 0.24447483814216656, 0.3703441236206207, 0.4406311306287342, 0.5969459266372196, 0.6007086721603304, 0.7214526445556719, 0.8348281456737615, 0.8845856565620599, 0.8843256046659571, 1.0201287025699934, 0.8868457191549096, 1.0497184788706833, 0.9921892522716009, 0.9483424406059627, 0.9028821039894018, 0.9123716757084007, 0.7847131376113007, 0.8104469017022531, 0.6711364938408841, 0.7048840299383238, 0.5360589444430233, 0.4335842575047202, 0.3530545952090479, 0.18811591883404988, 0.12849035530702255, 0.03217974183223608, -0.0699907126588658, -0.1446121064560897, -0.2814810966252828, -0.4648459940042305, -0.4882131494570073, -0.5410452728595374, -0.656503312918718, -0.6911665745736909, -0.7990777686366763, -0.7815845014251761, -0.8629834952404672, -0.8991967818034116, -1.010565038255576, -0.9792668607624997, -0.9700653009301775, -0.9850282229841427, -0.917579419291415, -0.8025104234949133, -0.882548483039896, -0.7350503769792819, -0.6699758953115493, -0.6265951421857218, -0.5293606108487297, -0.4706784484037935, -0.30175815300876435, -0.2049053090905908, -0.14545373658931518, 0.009455685540315787, 0.06461474257310514, 0.16025891055593472, 0.30588982251502156, 0.37737507545495597, 0.5008033842196224, 0.6289683804553813, 0.6473209919001156, 0.684602204436705, 0.8209176293639264, 0.9009173420620468, 0.8809150216599291, 1.0071496683559373, 1.0054986929334984, 0.989755611263292, 0.996398169927555, 0.9662399074212448, 0.9268157766487011, 0.861549649538011, 0.8142508397563677, 0.7162769184388663, 0.6474310496603485, 0.6077406498031587, 0.46780245013259286, 0.39784907980725676, 0.3416763070579555, 0.13532783659728018, 0.10706393074156419, -0.0030533691250043873, -0.05147561485325841, -0.2002293857685793, -0.30335038173676643, -0.4264656191359698, -0.522815610658155, -0.605754659495306, -0.676335482496721, -0.8172536130942276, -0.8033917941310543, -0.8911461534365815, -0.9400914915003646, -0.9099538721720059, -0.9098859217129407, -0.9846766760830836, -0.9406967576404253, -0.9540814598352517, -0.8551604960780838, -0.8806843688726133, -0.8660163727054258, -0.8038645241826166, -0.665721971441174, -0.5839307735676162, -0.48131665037892074, -0.36714985590424326, -0.3376631160210963, -0.09977873990713275, -0.06372211582961784, 0.036859480991221355, 0.13139257588226122, 0.22554879757121374, 0.36138650765829106, 0.4725289913626196, 0.6024526447913344, 0.6451853760601487, 0.6889992372231623, 0.7830267125255203, 0.8727408983808452, 0.8913393062213018, 0.9102063204795517, 0.9129285014006857, 0.9460978469689655, 0.9681926581209583, 0.9478559894252617, 0.9268297725415418, 0.870537683473202, 0.8873708356396747, 0.7582608930277749, 0.7418989591870745, 0.6120704561623574, 0.48847204343066564, 0.4267731970669828, 0.38862123549176175, 0.18618592449388668, 0.1771155826528281, 0.0279987025949041, -0.02537698944249376, -0.1158214215203324, -0.3067293666409391, -0.38087486572146895, -0.4336687931733361, -0.4773083845115753, -0.6621883582888585, -0.7201065605708542, -0.8360577208633756, -0.8494929773653059, -0.8907597727947003, -0.9283953698753596, -0.9239968444436493, -0.9278952820178991, -0.959374361943047, -0.8628646115025, -0.8912191553036761, -0.9754892030839135, -0.7958763364429483, -0.7547065110717354, -0.7717663665891819, -0.6328480684664874, -0.5091315529487145, -0.4933569102033424, -0.33374313317470694, -0.324810732164477, -0.12039351679451869, -0.03893403569506282, 0.12292053190783145, 0.1402238383565266, 0.2703444155482326, 0.44598050731134325, 0.4818873310710244, 0.5910425311839622, 0.6228540325440431, 0.759607487815719, 0.8443550239563709, 0.8621736462648064, 0.9763005572109856, 0.9443063111497679, 0.9589161958645732, 0.9657795334364142, 0.9535860419090859, 0.9403369017092069, 0.8928886447955371, 0.9364141283873856, 0.8257686796839474, 0.7353938394470555, 0.7163770987398997, 0.6550043533457158, 0.5221345083673414, 0.3575555840416928, 0.3732858900998993, 0.27906365396089794, 0.07660832203298323, 0.022085262148484493, -0.04563489076842318, -0.2127419702692947, -0.37488787442867977, -0.4329211084850315, -0.5271697410550169, -0.5339499273052924, -0.6825526704595589, -0.7855875808950024, -0.8312424903961492, -0.8397986356650267, -0.9617834547615157, -0.9214640435013371, -0.9282064748800853, -0.955617152633593], "type": "scatter", "zaxis": null, "z": null}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-149, 5151], "domain": [0.0658209390492855, 0.9934383202099738], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [], "height": 500, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-1.1409083025655185, 1.117720550944211], "domain": [0.03762029746281716, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "legend": {"yanchor": "auto", "xanchor": "auto", "bordercolor": "rgba(0, 0, 0, 1)", "bgcolor": "rgba(255, 255, 255, 1.000)", "borderwidth": 1, "tracegroupgap": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}, "text": ""}, "traceorder": "normal", "x": 1}, "width": 957.546875}}