PyPNM / MultiCapture / OFDMA-PreEqualization / Ofdma-PreEqualization-Analysis-Min-Avg-Max
Source Files
- HTML/script:
visual/PyPNM/MultiCapture/OFDMA-PreEqualization/Ofdma-PreEqualization-Analysis-Min-Avg-Max.html - JSON sample:
visual/PyPNM/MultiCapture/OFDMA-PreEqualization/Ofdma-PreEqualization-Analysis-Min-Avg-Max.json
Preview
Preview is best-effort. Some templates may rely on Postman-specific APIs that are not yet shimmed.
Visualizer HTML/script source
// Postman Visualizer: MultiCapture/OFDMA-PreEqualization/Ofdma-PreEqualization-Analysis-Min-Avg-Max
// Last Update: 2026-02-25 06:01:33 MST
// Visualization Script - Dark Mode Always for Multi-Channel Min/Avg/Max Analysis
// - Dark theme is forced (ignores request body)
// - Removes point dots (pointRadius = 0)
// - Adds an "All Results Aligned By Frequency" chart (Avg/RxMER) using a master frequency axis
// - Does NOT assume channel_id exists (uses stable per-result index label if missing)
var template = `
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
padding: 16px;
background-color: {{bodyBgColor}};
}
.header-row {
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
gap: 8px;
margin-bottom: 10px;
}
.page-title {
grid-column: 2;
text-align: center;
font-size: 20px;
font-weight: 700;
color: {{headingColor}};
}
.capture-time {
justify-self: end;
white-space: nowrap;
padding: 6px 10px;
border-radius: 999px;
border: 1px solid rgba(255,255,255,0.14);
background: rgba(255,255,255,0.04);
color: {{textColor}};
font-size: 12px;
}
.device-info-table {
width: 100%;
border-collapse: collapse;
table-layout: fixed;
font-size: 12px;
margin-bottom: 14px;
}
.device-info-table th,
.device-info-table td {
border: 1px solid rgba(255,255,255,0.12);
padding: 8px;
text-align: left;
vertical-align: top;
word-break: break-word;
}
.device-info-table th {
color: {{textColor}};
background: rgba(255,255,255,0.06);
}
.device-info-table td {
color: {{textColor}};
background: rgba(255,255,255,0.02);
}
.chart-container {
background-color: {{containerBgColor}};
padding: 20px;
border-radius: 10px;
margin-bottom: 20px;
border: 1px solid rgba(255,255,255,0.09);
box-shadow: 0 8px 20px rgba(0,0,0,0.22);
}
.chart-title {
text-align: center;
font-size: 18px;
font-weight: bold;
margin-bottom: 15px;
color: {{panelTitleColor}};
}
.chart-info {
text-align: center;
font-size: 12px;
color: {{textColor}};
margin-bottom: 10px;
}
.results-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 12px;
}
.results-grid .chart-container {
margin-bottom: 0;
}
@media (max-width: 980px) {
.results-grid {
grid-template-columns: 1fr;
}
}
</style>
<div class="header-row">
<div></div>
<div class="page-title">OFDMA Pre-Equalization Analysis (Min / Avg / Max)</div>
{{#if capture_time}}<div class="capture-time">Capture Time: {{capture_time}}</div>{{/if}}
</div>
{{#if has_device_info}}
<table class="device-info-table">
<thead>
<tr>
<th>MacAddress</th>
<th>Model</th>
<th>Vendor</th>
<th>SW Version</th>
<th>HW Version</th>
<th>Boot ROM</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{device_info.macAddress}}</td>
<td>{{device_info.model}}</td>
<td>{{device_info.vendor}}</td>
<td>{{device_info.swVersion}}</td>
<td>{{device_info.hwVersion}}</td>
<td>{{device_info.bootRom}}</td>
</tr>
</tbody>
</table>
{{/if}}
<div class="chart-container">
<div class="chart-title">All Channels ({{channel_count}}) ยท Avg Aligned by Frequency</div>
<div class="chart-info">
Master Axis: {{master_freq_start}} MHz - {{master_freq_end}} MHz ({{master_total_points}} points, showing {{master_display_points}} sampled)
</div>
<canvas id="chart_all_aligned" height="90"></canvas>
</div>
<div class="results-grid">
{{#each channels}}
<div class="chart-container">
<div class="chart-title">{{title}} - Min/Avg/Max Analysis</div>
<div class="chart-info">
Frequency Range: {{freq_start}} MHz - {{freq_end}} MHz ({{total_points}} points, showing {{display_points}} sampled)
</div>
<canvas id="chart_{{canvas_id}}" height="80"></canvas>
</div>
{{/each}}
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.5.0/Chart.min.js"></script>
<script>
(function waitForChart() {
if (typeof Chart === 'undefined') return setTimeout(waitForChart, 50);
pm.getData(function (err, value) {
if (err) {
console.error(err);
return;
}
var gridColor = 'rgba(255,255,255,0.12)';
var tickColor = '#eaeaea';
// --- All aligned chart (Avg/RxMER) ---
(function renderAlignedChart() {
var ctx = document.getElementById('chart_all_aligned');
if (!ctx) return;
var colors = [
{ border: 'rgba(255, 99, 132, 1)', fill: 'rgba(255, 99, 132, 0.06)' },
{ border: 'rgba(54, 162, 235, 1)', fill: 'rgba(54, 162, 235, 0.06)' },
{ border: 'rgba(255, 206, 86, 1)', fill: 'rgba(255, 206, 86, 0.06)' },
{ border: 'rgba(75, 192, 192, 1)', fill: 'rgba(75, 192, 192, 0.06)' },
{ border: 'rgba(153, 102, 255, 1)', fill: 'rgba(153, 102, 255, 0.06)' }
];
var datasets = (value.aligned && value.aligned.datasets) ? value.aligned.datasets : [];
var labels = (value.aligned && value.aligned.labels) ? value.aligned.labels : [];
var chartDatasets = datasets.map(function(ds, idx) {
var c = colors[idx % colors.length];
return {
label: ds.label,
data: ds.data,
borderColor: c.border,
backgroundColor: c.fill,
fill: false,
pointRadius: 0,
borderWidth: 1,
lineTension: 0.1,
spanGaps: false
};
});
new Chart(ctx, {
type: 'line',
data: { labels: labels, datasets: chartDatasets },
options: {
responsive: true,
legend: {
display: true,
labels: { fontColor: tickColor }
},
tooltips: {
mode: 'index',
intersect: false
},
hover: {
mode: 'nearest',
intersect: false
},
scales: {
xAxes: [{
display: true,
scaleLabel: {
display: true,
labelString: 'Frequency (MHz)',
fontColor: tickColor
},
ticks: {
fontColor: tickColor,
maxRotation: 45,
minRotation: 45,
maxTicksLimit: 12
},
gridLines: { color: gridColor }
}],
yAxes: [{
display: true,
scaleLabel: {
display: true,
labelString: 'Avg Value',
fontColor: tickColor
},
ticks: { fontColor: tickColor },
gridLines: { color: gridColor }
}]
}
}
});
})();
// --- Per-result charts (Min/Avg/Max) ---
(value.channels || []).forEach(function(channel) {
var ctx = document.getElementById('chart_' + channel.canvas_id);
if (!ctx) return;
new Chart(ctx, {
type: 'line',
data: {
labels: channel.labels,
datasets: [
{
label: 'Max',
data: channel.max,
borderColor: '#ff6384',
backgroundColor: 'rgba(255, 99, 132, 0.06)',
fill: false,
pointRadius: 0,
borderWidth: 1,
lineTension: 0.1,
spanGaps: false
},
{
label: 'Avg',
data: channel.avg,
borderColor: '#36a2eb',
backgroundColor: 'rgba(54, 162, 235, 0.06)',
fill: false,
pointRadius: 0,
borderWidth: 1,
lineTension: 0.1,
spanGaps: false
},
{
label: 'Min',
data: channel.min,
borderColor: '#39c28e',
backgroundColor: 'rgba(75, 192, 192, 0.06)',
fill: false,
pointRadius: 0,
borderWidth: 1,
lineTension: 0.1,
spanGaps: false
}
]
},
options: {
responsive: true,
legend: {
display: true,
labels: { fontColor: tickColor }
},
tooltips: {
mode: 'index',
intersect: false
},
hover: {
mode: 'nearest',
intersect: false
},
scales: {
xAxes: [{
display: true,
scaleLabel: {
display: true,
labelString: 'Frequency (MHz)',
fontColor: tickColor
},
ticks: {
fontColor: tickColor,
maxRotation: 45,
minRotation: 45,
maxTicksLimit: 10
},
gridLines: { color: gridColor }
}],
yAxes: [{
display: true,
scaleLabel: {
display: true,
labelString: 'Value',
fontColor: tickColor
},
ticks: { fontColor: tickColor },
gridLines: { color: gridColor }
}]
}
}
});
});
});
})();
</script>
`;
function constructVisualizerPayload() {
var response = pm.response.json();
// Force dark theme (ignore request body)
var isDarkTheme = true;
// Dark theme colors
var bodyBgColor = '#141821';
var containerBgColor = '#1b2332';
var headingColor = '#f3f6ff';
var panelTitleColor = '#9ec0ff';
var textColor = '#e7edf8';
function toMHzLabel(freqHz) {
return String(Math.round(freqHz / 1000000));
}
function safeText(v) {
if (v === undefined || v === null) return 'N/A';
var s = String(v).trim();
return s ? s : 'N/A';
}
function formatCaptureTime(raw) {
var n = Number(raw);
if (!isFinite(n)) return null;
var d = new Date(n * 1000);
if (!isFinite(d.getTime())) return null;
function p(x) { return String(x).padStart(2, '0'); }
return d.getUTCFullYear() + '-' + p(d.getUTCMonth() + 1) + '-' + p(d.getUTCDate()) + ' ' + p(d.getUTCHours()) + ':' + p(d.getUTCMinutes()) + ':' + p(d.getUTCSeconds()) + ' UTC';
}
function buildDeviceInfo(resp) {
var sys = (resp && resp.system_description && typeof resp.system_description === 'object') ? resp.system_description : null;
if (!sys) return null;
return {
macAddress: safeText(resp.mac_address).toLowerCase(),
model: safeText(sys.MODEL),
vendor: safeText(sys.VENDOR),
swVersion: safeText(sys.SW_REV),
hwVersion: safeText(sys.HW_REV),
bootRom: safeText(sys.BOOTR)
};
}
function sampleIndices(length, maxPoints) {
if (!length || length <= maxPoints) {
var all = [];
for (var i = 0; i < length; i++) all.push(i);
return all;
}
var step = Math.ceil(length / maxPoints);
var idxs = [];
for (var j = 0; j < length; j += step) idxs.push(j);
return idxs;
}
function sampleByIndices(arr, idxs) {
if (!arr || !arr.length) return [];
var out = [];
for (var i = 0; i < idxs.length; i++) out.push(arr[idxs[i]]);
return out;
}
function uniqueSortedNumeric(arr) {
var map = Object.create(null);
for (var i = 0; i < arr.length; i++) {
var n = Number(arr[i]);
if (!isFinite(n)) continue;
map[String(n)] = true;
}
return Object.keys(map).map(function(k) { return Number(k); }).sort(function(a,b){ return a-b; });
}
function alignSeries(masterFreqHz, freqHzArr, valuesArr) {
var m = Object.create(null);
var n = Math.min(freqHzArr ? freqHzArr.length : 0, valuesArr ? valuesArr.length : 0);
for (var i = 0; i < n; i++) {
var f = Number(freqHzArr[i]);
var v = Number(valuesArr[i]);
if (!isFinite(f)) continue;
m[String(f)] = isFinite(v) ? v : null;
}
var out = new Array(masterFreqHz.length);
for (var j = 0; j < masterFreqHz.length; j++) {
var key = String(masterFreqHz[j]);
out[j] = (key in m) ? m[key] : null;
}
return out;
}
var maxDisplayPoints = 140;
// Extract results array from response
var results = [];
if (response && response.data && response.data.results && Array.isArray(response.data.results)) {
results = response.data.results;
}
// Build per-result chart payload without assuming channel_id
var channels = results.map(function(result, idx) {
var freq = (result && Array.isArray(result.frequency)) ? result.frequency : [];
var totalPoints = freq.length;
var idxs = sampleIndices(totalPoints, maxDisplayPoints);
var sampledFreq = sampleByIndices(freq, idxs);
var sampledMin = sampleByIndices((result && Array.isArray(result.min)) ? result.min : [], idxs);
var sampledAvg = sampleByIndices((result && Array.isArray(result.avg)) ? result.avg : [], idxs);
var sampledMax = sampleByIndices((result && Array.isArray(result.max)) ? result.max : [], idxs);
var labels = sampledFreq.map(function(f) { return toMHzLabel(f); });
var freqStart = totalPoints > 0 ? toMHzLabel(freq[0]) : 'N/A';
var freqEnd = totalPoints > 0 ? toMHzLabel(freq[totalPoints - 1]) : 'N/A';
var title = (result && result.channel_id !== undefined && result.channel_id !== null)
? ('Channel ' + String(result.channel_id))
: ('Result ' + String(idx + 1));
return {
title: title,
canvas_id: 'r_' + String(idx + 1),
labels: labels,
min: sampledMin,
avg: sampledAvg,
max: sampledMax,
freq_start: freqStart,
freq_end: freqEnd,
total_points: totalPoints,
display_points: sampledFreq.length,
_raw_frequency: freq,
_raw_avg: (result && Array.isArray(result.avg)) ? result.avg : []
};
});
// Sort channels by frequency range so panels/legend follow low -> high spectrum order.
channels.sort(function(a, b) {
var aStart = (a._raw_frequency && a._raw_frequency.length) ? Number(a._raw_frequency[0]) : Infinity;
var bStart = (b._raw_frequency && b._raw_frequency.length) ? Number(b._raw_frequency[0]) : Infinity;
if (isFinite(aStart) && isFinite(bStart) && aStart !== bStart) return aStart - bStart;
if (isFinite(aStart) && !isFinite(bStart)) return -1;
if (!isFinite(aStart) && isFinite(bStart)) return 1;
var aEnd = (a._raw_frequency && a._raw_frequency.length) ? Number(a._raw_frequency[a._raw_frequency.length - 1]) : Infinity;
var bEnd = (b._raw_frequency && b._raw_frequency.length) ? Number(b._raw_frequency[b._raw_frequency.length - 1]) : Infinity;
if (isFinite(aEnd) && isFinite(bEnd) && aEnd !== bEnd) return aEnd - bEnd;
return String(a.title).localeCompare(String(b.title));
});
// Build master frequency axis across all results and align AVG series (RxMER)
var allFreq = [];
for (var i = 0; i < channels.length; i++) {
var fArr = channels[i]._raw_frequency || [];
for (var j = 0; j < fArr.length; j++) allFreq.push(fArr[j]);
}
var masterFreqHz = uniqueSortedNumeric(allFreq);
// Sample master axis for performance (keep consistent alignment)
var masterIdxs = sampleIndices(masterFreqHz.length, maxDisplayPoints);
var masterFreqSampled = sampleByIndices(masterFreqHz, masterIdxs);
var masterLabels = masterFreqSampled.map(function(f) { return toMHzLabel(f); });
var alignedDatasets = channels.map(function(ch) {
var alignedFull = alignSeries(masterFreqHz, ch._raw_frequency || [], ch._raw_avg || []);
var alignedSampled = sampleByIndices(alignedFull, masterIdxs);
return { label: ch.title, data: alignedSampled };
});
var masterFreqStart = masterFreqSampled.length ? toMHzLabel(masterFreqSampled[0]) : 'N/A';
var masterFreqEnd = masterFreqSampled.length ? toMHzLabel(masterFreqSampled[masterFreqSampled.length - 1]) : 'N/A';
// Strip private helpers before returning
channels = channels.map(function(ch) {
return {
title: ch.title,
canvas_id: ch.canvas_id,
labels: ch.labels,
min: ch.min,
avg: ch.avg,
max: ch.max,
freq_start: ch.freq_start,
freq_end: ch.freq_end,
total_points: ch.total_points,
display_points: ch.display_points
};
});
return {
mac_address: response.mac_address || 'N/A',
status: response.status !== undefined ? response.status : 'N/A',
message: response.message || 'N/A',
analysis_type: response.data ? response.data.analysis_type : 'N/A',
capture_time: formatCaptureTime(((response.data || {}).pnm_header || {}).capture_time) || formatCaptureTime((response.pnm_header || {}).capture_time),
has_device_info: !!buildDeviceInfo(response),
device_info: buildDeviceInfo(response) || {
macAddress: safeText(response.mac_address).toLowerCase(),
model: 'N/A',
vendor: 'N/A',
swVersion: 'N/A',
hwVersion: 'N/A',
bootRom: 'N/A'
},
bodyBgColor: bodyBgColor,
containerBgColor: containerBgColor,
headingColor: headingColor,
panelTitleColor: panelTitleColor,
textColor: textColor,
isDarkTheme: isDarkTheme,
channels: channels,
channel_count: channels.length,
aligned: {
labels: masterLabels,
datasets: alignedDatasets
},
master_freq_start: masterFreqStart,
master_freq_end: masterFreqEnd,
master_total_points: masterFreqHz.length,
master_display_points: masterFreqSampled.length
};
}
pm.visualizer.set(template, constructVisualizerPayload());
(function () {
function asObj(v) { return v && typeof v === 'object' && !Array.isArray(v) ? v : null; }
function asList(v) { return Array.isArray(v) ? v : []; }
function esc(s) { return String(s).replace(/&/g,'&').replace(/</g,'<').replace(/>/g,'>').replace(/"/g,'"').replace(/'/g,'''); }
function val(v) { return v === undefined || v === null || String(v).trim() === '' ? 'N/A' : String(v).trim(); }
function sanitizeMac(value) {
if (value === undefined || value === null) return 'N/A';
var text = String(value).trim();
if (!text) return 'N/A';
var compact = text.replace(/[^0-9a-f]/gi, '').toLowerCase();
if (compact.length !== 12) return text;
return compact.match(/.{1,2}/g).join(':');
}
function pickSys(resp) {
var top = asObj(resp && resp.system_description) || asObj(resp && resp.data && resp.data.system_description);
if (top) return top;
var data = asObj(resp && resp.data) || {};
var results = asList(data.results);
for (var i = 0; i < results.length; i++) {
var r = asObj(results[i]) || {};
var dd = asObj(r.device_details) || {};
var sys = asObj(dd.system_description) || asObj(dd.sysDescr);
if (sys) return sys;
}
var analysis = asList(data.analysis);
for (var j = 0; j < analysis.length; j++) {
var a = asObj(analysis[j]) || {};
var dd2 = asObj(a.device_details) || {};
var sys2 = asObj(dd2.system_description) || asObj(dd2.sysDescr);
if (sys2) return sys2;
}
var keys = Object.keys(data);
for (var k = 0; k < keys.length; k++) {
var ch = asObj(data[keys[k]]) || {};
var dd3 = asObj(ch.device_details) || {};
var sys3 = asObj(dd3.system_description) || asObj(dd3.sysDescr);
if (sys3) return sys3;
}
return null;
}
function inject() {
if (document.querySelector('[data-mc-sysdescr-top]')) return;
if (document.querySelector('.device-info') || document.body.textContent.indexOf('Device Info') !== -1) return;
var resp;
try { resp = pm.response.json(); } catch (e) { return; }
var sys = pickSys(resp);
if (!sys) return;
var dark = false;
try { dark = !!(window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches); } catch (e) {}
var bg = dark ? '#151515' : '#ffffff';
var border = dark ? '#2a2a2a' : '#d8dee9';
var text = dark ? '#e8e8e8' : '#1f2937';
var muted = dark ? '#dbe3ff' : '#334155';
var chipBg = dark ? 'rgba(255,255,255,0.03)' : '#f8fafc';
var host = document.createElement('div');
host.setAttribute('data-mc-sysdescr-top', '1');
host.style.background = bg;
host.style.border = '1px solid ' + border;
host.style.borderRadius = '10px';
host.style.padding = '12px';
host.style.marginBottom = '14px';
host.style.color = text;
host.style.fontFamily = 'Arial, sans-serif';
host.innerHTML = '' +
'<div style="font-size:11px;text-transform:uppercase;letter-spacing:.7px;color:' + muted + ';margin-bottom:8px;">Device Info (CODING_AGENTS)</div>' +
'<div style="display:flex;flex-wrap:wrap;gap:8px;align-items:center;">' +
'<div style="padding:6px 9px;border:1px solid ' + border + ';border-radius:999px;background:' + chipBg + ';font-size:12px;">MAC <span style="font-family:monospace;">' + esc(sanitizeMac(resp && resp.mac_address)) + '</span></div>' +
'<div style="padding:6px 9px;border:1px solid ' + border + ';border-radius:999px;background:' + chipBg + ';font-size:12px;">Vendor ' + esc(val(sys.VENDOR)) + '</div>' +
'<div style="padding:6px 9px;border:1px solid ' + border + ';border-radius:999px;background:' + chipBg + ';font-size:12px;">Model ' + esc(val(sys.MODEL)) + '</div>' +
'<div style="padding:6px 9px;border:1px solid ' + border + ';border-radius:999px;background:' + chipBg + ';font-size:12px;">SW <span style="font-family:monospace;">' + esc(val(sys.SW_REV)) + '</span></div>' +
'<div style="padding:6px 9px;border:1px solid ' + border + ';border-radius:999px;background:' + chipBg + ';font-size:12px;">HW <span style="font-family:monospace;">' + esc(val(sys.HW_REV)) + '</span></div>' +
'<div style="padding:6px 9px;border:1px solid ' + border + ';border-radius:999px;background:' + chipBg + ';font-size:12px;">BOOTR <span style="font-family:monospace;">' + esc(val(sys.BOOTR)) + '</span></div>' +
'</div>';
var container = document.querySelector('.container');
if (container) {
container.insertBefore(host, container.firstChild);
} else {
document.body.insertBefore(host, document.body.firstChild);
}
}
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', inject);
setTimeout(inject, 0);
} else {
inject();
setTimeout(inject, 0);
}
})();
Sample JSON payload
{
"system_description": {
"HW_REV": "1.0",
"VENDOR": "LANCity",
"BOOTR": "NONE",
"SW_REV": "1.0.0",
"MODEL": "LCPET-3"
},
"mac_address": "aabbccddeeff",
"status": 0,
"message": "Analysis MIN_AVG_MAX completed for group 01c46a0dcd6e4a91",
"data": {
"analysis_type": "MIN_AVG_MAX",
"results": [
{
"channel_id": 41,
"frequency": [
39900000,
39925000,
39950000,
39975000,
40000000,
40025000,
40050000,
40075000,
40100000,
40125000,
40150000,
40175000,
40200000,
40225000,
40250000,
40275000,
40300000,
40325000,
40350000,
40375000,
40400000,
40425000,
40450000,
40475000,
40500000,
40525000,
40550000,
40575000,
40600000,
40625000,
40650000,
40675000,
40700000,
40725000,
40750000,
40775000,
40800000,
40825000,
40850000,
40875000,
40900000,
40925000,
40950000,
40975000,
41000000,
41025000,
41050000,
41075000,
41100000,
41125000,
41150000,
41175000,
41200000,
41225000,
41250000,
41275000,
41300000,
41325000,
41350000,
41375000,
41400000,
41425000,
41450000,
41475000,
41500000,
41525000,
41550000,
41575000,
41600000,
41625000,
41650000,
41675000,
41700000,
41725000,
41750000,
41775000,
41800000,
41825000,
41850000,
41875000,
41900000,
41925000,
41950000,
41975000,
42000000,
42025000,
42050000,
42075000,
42100000,
42125000,
42150000,
42175000,
42200000,
42225000,
42250000,
42275000,
42300000,
42325000,
42350000,
42375000,
42400000,
42425000,
42450000,
42475000,
42500000,
42525000,
42550000,
42575000,
42600000,
42625000,
42650000,
42675000,
42700000,
42725000,
42750000,
42775000,
42800000,
42825000,
42850000,
42875000,
42900000,
42925000,
42950000,
42975000,
43000000,
43025000,
43050000,
43075000,
43100000,
43125000,
43150000,
43175000,
43200000,
43225000,
43250000,
43275000,
43300000,
43325000,
43350000,
43375000,
43400000,
43425000,
43450000,
43475000,
43500000,
43525000,
43550000,
43575000,
43600000,
43625000,
43650000,
43675000,
43700000,
43725000,
43750000,
43775000,
43800000,
43825000,
43850000,
43875000,
43900000,
43925000,
43950000,
43975000,
44000000,
44025000,
44050000,
44075000,
44100000,
44125000,
44150000,
44175000,
44200000,
44225000,
44250000,
44275000,
44300000,
44325000,
44350000,
44375000,
44400000,
44425000,
44450000,
44475000,
44500000,
44525000,
44550000,
44575000,
44600000,
44625000,
44650000,
44675000,
44700000,
44725000,
44750000,
44775000,
44800000,
44825000,
44850000,
44875000,
44900000,
44925000,
44950000,
44975000,
45000000,
45025000,
45050000,
45075000,
45100000,
45125000,
45150000,
45175000,
45200000,
45225000,
45250000,
45275000,
45300000,
45325000,
45350000,
45375000,
45400000,
45425000,
45450000,
45475000,
45500000,
45525000,
45550000,
45575000,
45600000,
45625000,
45650000,
45675000,
45700000,
45725000,
45750000,
45775000,
45800000,
45825000,
45850000,
45875000,
45900000,
45925000,
45950000,
45975000,
46000000,
46025000,
46050000,
46075000,
46100000,
46125000,
46150000,
46175000,
46200000,
46225000,
46250000,
46275000,
46300000,
46325000,
46350000,
46375000,
46400000,
46425000,
46450000,
46475000,
46500000,
46525000,
46550000,
46575000,
46600000,
46625000,
46650000,
46675000,
46700000,
46725000,
46750000,
46775000,
46800000,
46825000,
46850000,
46875000,
46900000,
46925000,
46950000,
46975000,
47000000,
47025000,
47050000,
47075000,
47100000,
47125000,
47150000,
47175000,
47200000,
47225000,
47250000,
47275000,
47300000,
47325000,
47350000,
47375000,
47400000,
47425000,
47450000,
47475000,
47500000,
47525000,
47550000,
47575000,
47600000,
47625000,
47650000,
47675000,
47700000,
47725000,
47750000,
47775000,
47800000,
47825000,
47850000,
47875000,
47900000,
47925000,
47950000,
47975000,
48000000,
48025000,
48050000,
48075000,
48100000,
48125000,
48150000,
48175000,
48200000,
48225000,
48250000,
48275000,
48300000,
48325000,
48350000,
48375000,
48400000,
48425000,
48450000,
48475000,
48500000,
48525000,
48550000,
48575000,
48600000,
48625000,
48650000,
48675000,
48700000,
48725000,
48750000,
48775000,
48800000,
48825000,
48850000,
48875000,
48900000,
48925000,
48950000,
48975000,
49000000,
49025000,
49050000,
49075000,
49100000,
49125000,
49150000,
49175000,
49200000,
49225000,
49250000,
49275000,
49300000,
49325000,
49350000,
49375000,
49400000,
49425000,
49450000,
49475000,
49500000,
49525000,
49550000,
49575000,
49600000,
49625000,
49650000,
49675000,
49700000,
49725000,
49750000,
49775000,
49800000,
49825000,
49850000,
49875000,
49900000,
49925000,
49950000,
49975000,
50000000,
50025000,
50050000,
50075000,
50100000,
50125000,
50150000,
50175000,
50200000,
50225000,
50250000,
50275000,
50300000,
50325000,
50350000,
50375000,
50400000,
50425000,
50450000,
50475000,
50500000,
50525000,
50550000,
50575000,
50600000,
50625000,
50650000,
50675000,
50700000,
50725000,
50750000,
50775000,
50800000,
50825000,
50850000,
50875000,
50900000,
50925000,
50950000,
50975000,
51000000,
51025000,
51050000,
51075000,
51100000,
51125000,
51150000,
51175000,
51200000,
51225000,
51250000,
51275000,
51300000,
51325000,
51350000,
51375000,
51400000,
51425000,
51450000,
51475000,
51500000,
51525000,
51550000,
51575000,
51600000,
51625000,
51650000,
51675000,
51700000,
51725000,
51750000,
51775000,
51800000,
51825000,
51850000,
51875000,
51900000,
51925000,
51950000,
51975000,
52000000,
52025000,
52050000,
52075000,
52100000,
52125000,
52150000,
52175000,
52200000,
52225000,
52250000,
52275000,
52300000,
52325000,
52350000,
52375000,
52400000,
52425000,
52450000,
52475000,
52500000,
52525000,
52550000,
52575000,
52600000,
52625000,
52650000,
52675000,
52700000,
52725000,
52750000,
52775000,
52800000,
52825000,
52850000,
52875000,
52900000,
52925000,
52950000,
52975000,
53000000,
53025000,
53050000,
53075000,
53100000,
53125000,
53150000,
53175000,
53200000,
53225000,
53250000,
53275000,
53300000,
53325000,
53350000,
53375000,
53400000,
53425000,
53450000,
53475000,
53500000,
53525000,
53550000,
53575000,
53600000,
53625000,
53650000,
53675000,
53700000,
53725000,
53750000,
53775000,
53800000,
53825000,
53850000,
53875000,
53900000,
53925000,
53950000,
53975000,
54000000,
54025000,
54050000,
54075000,
54100000,
54125000,
54150000,
54175000,
54200000,
54225000,
54250000,
54275000,
54300000,
54325000,
54350000,
54375000,
54400000,
54425000,
54450000,
54475000,
54500000,
54525000,
54550000,
54575000,
54600000,
54625000,
54650000,
54675000,
54700000,
54725000,
54750000,
54775000,
54800000,
54825000,
54850000,
54875000,
54900000,
54925000,
54950000,
54975000,
55000000,
55025000,
55050000,
55075000,
55100000,
55125000,
55150000,
55175000,
55200000,
55225000,
55250000,
55275000,
55300000,
55325000,
55350000,
55375000,
55400000,
55425000,
55450000,
55475000,
55500000,
55525000,
55550000,
55575000,
55600000,
55625000,
55650000,
55675000,
55700000,
55725000,
55750000,
55775000,
55800000,
55825000,
55850000,
55875000,
55900000,
55925000,
55950000,
55975000,
56000000,
56025000,
56050000,
56075000,
56100000,
56125000,
56150000,
56175000,
56200000,
56225000,
56250000,
56275000,
56300000,
56325000,
56350000,
56375000,
56400000,
56425000,
56450000,
56475000,
56500000,
56525000,
56550000,
56575000,
56600000,
56625000,
56650000,
56675000,
56700000,
56725000,
56750000,
56775000,
56800000,
56825000,
56850000,
56875000,
56900000,
56925000,
56950000,
56975000,
57000000,
57025000,
57050000,
57075000,
57100000,
57125000,
57150000,
57175000,
57200000,
57225000,
57250000,
57275000,
57300000,
57325000,
57350000,
57375000,
57400000,
57425000,
57450000,
57475000,
57500000,
57525000,
57550000,
57575000,
57600000,
57625000,
57650000,
57675000,
57700000,
57725000,
57750000,
57775000,
57800000,
57825000,
57850000,
57875000,
57900000,
57925000,
57950000,
57975000,
58000000,
58025000,
58050000,
58075000,
58100000,
58125000,
58150000,
58175000,
58200000,
58225000,
58250000,
58275000,
58300000,
58325000,
58350000,
58375000,
58400000,
58425000,
58450000,
58475000,
58500000,
58525000,
58550000,
58575000,
58600000,
58625000,
58650000,
58675000,
58700000,
58725000,
58750000,
58775000,
58800000,
58825000,
58850000,
58875000,
58900000,
58925000,
58950000,
58975000,
59000000,
59025000,
59050000,
59075000,
59100000,
59125000,
59150000,
59175000,
59200000,
59225000,
59250000,
59275000,
59300000,
59325000,
59350000,
59375000,
59400000,
59425000,
59450000,
59475000,
59500000,
59525000,
59550000,
59575000,
59600000,
59625000,
59650000,
59675000,
59700000,
59725000,
59750000,
59775000,
59800000,
59825000,
59850000,
59875000,
59900000,
59925000,
59950000,
59975000,
60000000,
60025000,
60050000,
60075000,
60100000,
60125000,
60150000,
60175000,
60200000,
60225000,
60250000,
60275000,
60300000,
60325000,
60350000,
60375000,
60400000,
60425000,
60450000,
60475000,
60500000,
60525000,
60550000,
60575000,
60600000,
60625000,
60650000,
60675000,
60700000,
60725000,
60750000,
60775000,
60800000,
60825000,
60850000,
60875000,
60900000,
60925000,
60950000,
60975000,
61000000,
61025000,
61050000,
61075000,
61100000,
61125000,
61150000,
61175000,
61200000,
61225000,
61250000,
61275000,
61300000,
61325000,
61350000,
61375000,
61400000,
61425000,
61450000,
61475000,
61500000,
61525000,
61550000,
61575000,
61600000,
61625000,
61650000,
61675000,
61700000,
61725000,
61750000,
61775000,
61800000,
61825000,
61850000,
61875000,
61900000,
61925000,
61950000,
61975000,
62000000,
62025000,
62050000,
62075000,
62100000,
62125000,
62150000,
62175000,
62200000,
62225000,
62250000,
62275000,
62300000,
62325000,
62350000,
62375000,
62400000,
62425000,
62450000,
62475000,
62500000,
62525000,
62550000,
62575000,
62600000,
62625000,
62650000,
62675000,
62700000,
62725000,
62750000,
62775000,
62800000,
62825000,
62850000,
62875000,
62900000,
62925000,
62950000,
62975000,
63000000,
63025000,
63050000,
63075000,
63100000,
63125000,
63150000,
63175000,
63200000,
63225000,
63250000,
63275000,
63300000,
63325000,
63350000,
63375000,
63400000,
63425000,
63450000,
63475000,
63500000,
63525000,
63550000,
63575000,
63600000,
63625000,
63650000,
63675000,
63700000,
63725000,
63750000,
63775000,
63800000,
63825000,
63850000,
63875000,
63900000,
63925000,
63950000,
63975000,
64000000,
64025000,
64050000,
64075000,
64100000,
64125000,
64150000,
64175000,
64200000,
64225000,
64250000,
64275000,
64300000,
64325000,
64350000,
64375000,
64400000,
64425000,
64450000,
64475000,
64500000,
64525000,
64550000,
64575000,
64600000,
64625000,
64650000,
64675000,
64700000,
64725000,
64750000,
64775000,
64800000,
64825000,
64850000,
64875000,
64900000,
64925000,
64950000,
64975000,
65000000,
65025000,
65050000,
65075000,
65100000,
65125000,
65150000,
65175000,
65200000,
65225000,
65250000,
65275000,
65300000,
65325000,
65350000,
65375000,
65400000,
65425000,
65450000,
65475000,
65500000,
65525000,
65550000,
65575000,
65600000,
65625000,
65650000,
65675000,
65700000,
65725000,
65750000,
65775000,
65800000,
65825000,
65850000,
65875000,
65900000,
65925000,
65950000,
65975000,
66000000,
66025000,
66050000,
66075000,
66100000,
66125000,
66150000,
66175000,
66200000,
66225000,
66250000,
66275000,
66300000,
66325000,
66350000,
66375000,
66400000,
66425000,
66450000,
66475000,
66500000,
66525000,
66550000,
66575000,
66600000,
66625000,
66650000,
66675000,
66700000,
66725000,
66750000,
66775000,
66800000,
66825000,
66850000,
66875000,
66900000,
66925000,
66950000,
66975000,
67000000,
67025000,
67050000,
67075000,
67100000,
67125000,
67150000,
67175000,
67200000,
67225000,
67250000,
67275000,
67300000,
67325000,
67350000,
67375000,
67400000,
67425000,
67450000,
67475000,
67500000,
67525000,
67550000,
67575000,
67600000,
67625000,
67650000,
67675000,
67700000,
67725000,
67750000,
67775000,
67800000,
67825000,
67850000,
67875000,
67900000,
67925000,
67950000,
67975000,
68000000,
68025000,
68050000,
68075000,
68100000,
68125000,
68150000,
68175000,
68200000,
68225000,
68250000,
68275000,
68300000,
68325000,
68350000,
68375000,
68400000,
68425000,
68450000,
68475000,
68500000,
68525000,
68550000,
68575000,
68600000,
68625000,
68650000,
68675000,
68700000,
68725000,
68750000,
68775000,
68800000,
68825000,
68850000,
68875000,
68900000,
68925000,
68950000,
68975000,
69000000,
69025000,
69050000,
69075000,
69100000,
69125000,
69150000,
69175000,
69200000,
69225000,
69250000,
69275000,
69300000,
69325000,
69350000,
69375000,
69400000,
69425000,
69450000,
69475000,
69500000,
69525000,
69550000,
69575000,
69600000,
69625000,
69650000,
69675000,
69700000,
69725000,
69750000,
69775000,
69800000,
69825000,
69850000,
69875000,
69900000,
69925000,
69950000,
69975000,
70000000,
70025000,
70050000,
70075000,
70100000,
70125000,
70150000,
70175000,
70200000,
70225000,
70250000,
70275000,
70300000,
70325000,
70350000,
70375000,
70400000,
70425000,
70450000,
70475000,
70500000,
70525000,
70550000,
70575000,
70600000,
70625000,
70650000,
70675000,
70700000,
70725000,
70750000,
70775000,
70800000,
70825000,
70850000,
70875000,
70900000,
70925000,
70950000,
70975000,
71000000,
71025000,
71050000,
71075000,
71100000,
71125000,
71150000,
71175000,
71200000,
71225000,
71250000,
71275000,
71300000,
71325000,
71350000,
71375000,
71400000,
71425000,
71450000,
71475000,
71500000,
71525000,
71550000,
71575000,
71600000,
71625000,
71650000,
71675000,
71700000,
71725000,
71750000,
71775000,
71800000,
71825000,
71850000,
71875000,
71900000,
71925000,
71950000,
71975000,
72000000,
72025000,
72050000,
72075000,
72100000,
72125000,
72150000,
72175000,
72200000,
72225000,
72250000,
72275000,
72300000,
72325000,
72350000,
72375000,
72400000,
72425000,
72450000,
72475000,
72500000,
72525000,
72550000,
72575000,
72600000,
72625000,
72650000,
72675000,
72700000,
72725000,
72750000,
72775000,
72800000,
72825000,
72850000,
72875000,
72900000,
72925000,
72950000,
72975000,
73000000,
73025000,
73050000,
73075000,
73100000,
73125000,
73150000,
73175000,
73200000,
73225000,
73250000,
73275000,
73300000,
73325000,
73350000,
73375000,
73400000,
73425000,
73450000,
73475000,
73500000,
73525000,
73550000,
73575000,
73600000,
73625000,
73650000,
73675000,
73700000,
73725000,
73750000,
73775000,
73800000,
73825000,
73850000,
73875000,
73900000,
73925000,
73950000,
73975000,
74000000,
74025000,
74050000,
74075000,
74100000,
74125000,
74150000,
74175000,
74200000,
74225000,
74250000,
74275000,
74300000,
74325000,
74350000,
74375000,
74400000,
74425000,
74450000,
74475000,
74500000,
74525000,
74550000,
74575000,
74600000,
74625000,
74650000,
74675000,
74700000,
74725000,
74750000,
74775000,
74800000,
74825000,
74850000,
74875000,
74900000,
74925000,
74950000,
74975000,
75000000,
75025000,
75050000,
75075000,
75100000,
75125000,
75150000,
75175000,
75200000,
75225000,
75250000,
75275000,
75300000,
75325000,
75350000,
75375000,
75400000,
75425000,
75450000,
75475000,
75500000,
75525000,
75550000,
75575000,
75600000,
75625000,
75650000,
75675000,
75700000,
75725000,
75750000,
75775000,
75800000,
75825000,
75850000,
75875000,
75900000,
75925000,
75950000,
75975000,
76000000,
76025000,
76050000,
76075000,
76100000,
76125000,
76150000,
76175000,
76200000,
76225000,
76250000,
76275000,
76300000,
76325000,
76350000,
76375000,
76400000,
76425000,
76450000,
76475000,
76500000,
76525000,
76550000,
76575000,
76600000,
76625000,
76650000,
76675000,
76700000,
76725000,
76750000,
76775000,
76800000,
76825000,
76850000,
76875000,
76900000,
76925000,
76950000,
76975000,
77000000,
77025000,
77050000,
77075000,
77100000,
77125000,
77150000,
77175000,
77200000,
77225000,
77250000,
77275000,
77300000,
77325000,
77350000,
77375000,
77400000,
77425000,
77450000,
77475000,
77500000,
77525000,
77550000,
77575000,
77600000,
77625000,
77650000,
77675000,
77700000,
77725000,
77750000,
77775000,
77800000,
77825000,
77850000,
77875000,
77900000,
77925000,
77950000,
77975000,
78000000,
78025000,
78050000,
78075000,
78100000,
78125000,
78150000,
78175000,
78200000,
78225000,
78250000,
78275000,
78300000,
78325000,
78350000,
78375000,
78400000,
78425000,
78450000,
78475000,
78500000,
78525000,
78550000,
78575000,
78600000,
78625000,
78650000,
78675000,
78700000,
78725000,
78750000,
78775000,
78800000,
78825000,
78850000,
78875000,
78900000,
78925000,
78950000,
78975000,
79000000,
79025000,
79050000,
79075000,
79100000,
79125000,
79150000,
79175000,
79200000,
79225000,
79250000,
79275000,
79300000,
79325000,
79350000,
79375000,
79400000,
79425000,
79450000,
79475000,
79500000,
79525000,
79550000,
79575000,
79600000,
79625000,
79650000,
79675000,
79700000,
79725000,
79750000,
79775000,
79800000,
79825000,
79850000,
79875000,
79900000,
79925000,
79950000,
79975000,
80000000,
80025000,
80050000,
80075000,
80100000,
80125000,
80150000,
80175000,
80200000,
80225000,
80250000,
80275000,
80300000,
80325000,
80350000,
80375000,
80400000,
80425000,
80450000,
80475000,
80500000,
80525000,
80550000,
80575000,
80600000,
80625000,
80650000,
80675000,
80700000,
80725000,
80750000,
80775000,
80800000,
80825000,
80850000,
80875000,
80900000,
80925000,
80950000,
80975000,
81000000,
81025000,
81050000,
81075000,
81100000,
81125000,
81150000,
81175000,
81200000,
81225000,
81250000,
81275000,
81300000,
81325000,
81350000,
81375000,
81400000,
81425000,
81450000,
81475000,
81500000,
81525000,
81550000,
81575000,
81600000,
81625000,
81650000,
81675000,
81700000,
81725000,
81750000,
81775000,
81800000,
81825000,
81850000,
81875000,
81900000,
81925000,
81950000,
81975000,
82000000,
82025000,
82050000,
82075000,
82100000,
82125000,
82150000,
82175000,
82200000,
82225000,
82250000,
82275000,
82300000,
82325000,
82350000,
82375000,
82400000,
82425000,
82450000,
82475000,
82500000,
82525000,
82550000,
82575000,
82600000,
82625000,
82650000,
82675000,
82700000,
82725000,
82750000,
82775000,
82800000,
82825000,
82850000,
82875000,
82900000,
82925000,
82950000,
82975000,
83000000,
83025000,
83050000,
83075000,
83100000,
83125000,
83150000,
83175000,
83200000,
83225000,
83250000,
83275000,
83300000,
83325000,
83350000,
83375000,
83400000,
83425000,
83450000,
83475000,
83500000,
83525000,
83550000,
83575000,
83600000,
83625000,
83650000,
83675000,
83700000,
83725000,
83750000,
83775000,
83800000,
83825000,
83850000,
83875000,
83900000,
83925000,
83950000,
83975000,
84000000,
84025000,
84050000,
84075000,
84100000,
84125000,
84150000,
84175000,
84200000,
84225000,
84250000,
84275000
],
"min": [
0.1755,
0.1757,
0.1756,
0.1756,
0.1755,
0.1756,
0.1757,
0.1755,
0.1755,
0.1755,
0.1756,
0.1757,
0.1757,
0.1755,
0.1757,
0.1757,
0.1756,
0.1756,
0.1756,
0.1758,
0.1757,
0.1758,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1758,
0.1757,
0.1757,
0.1755,
0.1756,
0.1756,
0.1756,
0.1756,
0.1756,
0.1756,
0.1757,
0.1757,
0.1756,
0.1756,
0.1756,
0.1757,
0.1757,
0.1758,
0.1758,
0.1756,
0.1757,
0.1757,
0.1756,
0.1757,
0.1757,
0.1757,
0.1757,
0.1756,
0.1756,
0.1755,
0.1756,
0.1756,
0.1755,
0.1756,
0.1757,
0.1757,
0.1756,
0.1755,
0.1754,
0.1755,
0.1757,
0.1756,
0.1756,
0.1756,
0.1756,
0.1758,
0.1757,
0.1755,
0.1756,
0.1757,
0.1755,
0.1758,
0.1758,
0.1757,
0.1756,
0.1757,
0.1757,
0.1756,
0.1757,
0.1757,
0.1756,
0.1756,
0.1756,
0.1757,
0.1757,
0.1756,
0.1756,
0.1756,
0.1757,
0.1758,
0.1757,
0.1758,
0.1759,
0.1758,
0.1757,
0.1756,
0.1756,
0.1757,
0.1756,
0.1755,
0.1756,
0.1756,
0.1756,
0.1755,
0.1755,
0.1755,
0.1755,
0.1756,
0.1755,
0.1755,
0.1754,
0.1754,
0.1755,
0.1755,
0.1756,
0.1756,
0.1757,
0.1758,
0.1756,
0.1757,
0.1756,
0.1756,
0.1755,
0.1755,
0.1756,
0.1758,
0.1756,
0.1754,
0.1758,
0.1756,
0.1759,
0.1756,
0.1756,
0.1755,
0.1757,
0.1756,
0.1756,
0.1757,
0.1758,
0.1757,
0.1758,
0.1758,
0.1756,
0.1755,
0.1754,
0.1755,
0.1757,
0.1756,
0.1755,
0.1757,
0.1756,
0.1755,
0.1755,
0.1756,
0.1756,
0.1756,
0.1757,
0.1757,
0.1757,
0.1757,
0.1758,
0.1757,
0.1756,
0.1754,
0.1757,
0.1755,
0.1756,
0.1756,
0.1756,
0.1755,
0.1756,
0.1757,
0.1755,
0.1755,
0.1756,
0.1757,
0.1758,
0.1757,
0.1756,
0.1756,
0.1757,
0.1756,
0.1756,
0.1756,
0.1756,
0.1757,
0.1756,
0.1757,
0.1756,
0.1755,
0.1756,
0.1756,
0.1757,
0.1757,
0.1757,
0.1756,
0.1757,
0.1758,
0.1756,
0.1757,
0.1758,
0.1757,
0.1757,
0.1757,
0.1757,
0.1758,
0.1757,
0.1756,
0.1756,
0.1756,
0.1757,
0.1756,
0.1756,
0.1755,
0.1756,
0.1756,
0.1756,
0.1757,
0.1756,
0.1755,
0.1756,
0.1756,
0.1756,
0.1754,
0.1756,
0.1757,
0.1756,
0.1756,
0.1756,
0.1756,
0.1756,
0.1756,
0.1756,
0.1757,
0.1756,
0.1755,
0.1755,
0.1756,
0.1757,
0.1755,
0.1756,
0.1754,
0.1754,
0.1756,
0.1756,
0.1756,
0.1756,
0.1758,
0.1756,
0.1756,
0.1757,
0.1756,
0.1755,
0.1757,
0.1757,
0.1755,
0.1754,
0.1756,
0.1756,
0.1755,
0.1755,
0.1756,
0.1755,
0.1753,
0.1754,
0.1757,
0.1755,
0.1756,
0.1756,
0.1755,
0.1756,
0.1756,
0.1756,
0.1757,
0.1755,
0.1756,
0.1755,
0.1757,
0.1757,
0.1756,
0.1756,
0.1758,
0.1758,
0.1756,
0.1756,
0.1756,
0.1754,
0.1755,
0.1757,
0.1757,
0.1758,
0.1755,
0.1756,
0.1756,
0.1754,
0.175,
0.1751,
0.1753,
0.1755,
0.1755,
0.1754,
0.1756,
0.1757,
0.1757,
0.1756,
0.1756,
0.1756,
0.1756,
0.1757,
0.1757,
0.1756,
0.1758,
0.1757,
0.1759,
0.1757,
0.1757,
0.1757,
0.1756,
0.1756,
0.1756,
0.1759,
0.1758,
0.1756,
0.1754,
0.1756,
0.1755,
0.1755,
0.1755,
0.1756,
0.1755,
0.1752,
0.1757,
0.1756,
0.1756,
0.1756,
0.1757,
0.1756,
0.1757,
0.1755,
0.1755,
0.1754,
0.1758,
0.1758,
0.1757,
0.1757,
0.1758,
0.1758,
0.1757,
0.1758,
0.1758,
0.1755,
0.1752,
0.1752,
0.1755,
0.1756,
0.1757,
0.1756,
0.1753,
0.1756,
0.1757,
0.1756,
0.1753,
0.1755,
0.1758,
0.1756,
0.1757,
0.1758,
0.1755,
0.1755,
0.1757,
0.1757,
0.1756,
0.1758,
0.1757,
0.1756,
0.1758,
0.1756,
0.1756,
0.1756,
0.1756,
0.1754,
0.1755,
0.1757,
0.1757,
0.1756,
0.1759,
0.1757,
0.1754,
0.1754,
0.1756,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1758,
0.1757,
0.1758,
0.1757,
0.1758,
0.1757,
0.1756,
0.1754,
0.1756,
0.1753,
0.1756,
0.1757,
0.1754,
0.1756,
0.1757,
0.1755,
0.1755,
0.1758,
0.1758,
0.1757,
0.1756,
0.1756,
0.1756,
0.1757,
0.1757,
0.1756,
0.1757,
0.1756,
0.1756,
0.1757,
0.1756,
0.1757,
0.1757,
0.1757,
0.1756,
0.1758,
0.1756,
0.1757,
0.1757,
0.1757,
0.1756,
0.1756,
0.1756,
0.1757,
0.1756,
0.1756,
0.1756,
0.1754,
0.1756,
0.1756,
0.1757,
0.1757,
0.1756,
0.1756,
0.1757,
0.1758,
0.1757,
0.1756,
0.1757,
0.1757,
0.1756,
0.1757,
0.1756,
0.1756,
0.1757,
0.1757,
0.1758,
0.1757,
0.1757,
0.1756,
0.1756,
0.1757,
0.1756,
0.1758,
0.1756,
0.1757,
0.1758,
0.1758,
0.1756,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1758,
0.1756,
0.1756,
0.1757,
0.1756,
0.1756,
0.1756,
0.1757,
0.1756,
0.1756,
0.1756,
0.1756,
0.1757,
0.1756,
0.1756,
0.1756,
0.1757,
0.1757,
0.1756,
0.1757,
0.1757,
0.1757,
0.1758,
0.1757,
0.1757,
0.1758,
0.1757,
0.1756,
0.1757,
0.1758,
0.1757,
0.1757,
0.1757,
0.1757,
0.1756,
0.1756,
0.1756,
0.1756,
0.1756,
0.1757,
0.1757,
0.1758,
0.1757,
0.1757,
0.1758,
0.1758,
0.1758,
0.1757,
0.1757,
0.1757,
0.1757,
0.1756,
0.1756,
0.1755,
0.1757,
0.1757,
0.1758,
0.1757,
0.1756,
0.1757,
0.1757,
0.1755,
0.1757,
0.1757,
0.1756,
0.1756,
0.1755,
0.1756,
0.1757,
0.1758,
0.1757,
0.1757,
0.1758,
0.1758,
0.1757,
0.1756,
0.1757,
0.1756,
0.1757,
0.1757,
0.1757,
0.1756,
0.1757,
0.1757,
0.1756,
0.1754,
0.1753,
0.1753,
0.1755,
0.1754,
0.1756,
0.1756,
0.1756,
0.1756,
0.1757,
0.1757,
0.1757,
0.1757,
0.1756,
0.1757,
0.1756,
0.1758,
0.1757,
0.1757,
0.1756,
0.1756,
0.1756,
0.1757,
0.1756,
0.1756,
0.1756,
0.1756,
0.1755,
0.1757,
0.1755,
0.1756,
0.1756,
0.1756,
0.1757,
0.1757,
0.1757,
0.1758,
0.1756,
0.1756,
0.1757,
0.1757,
0.1756,
0.1757,
0.1756,
0.1756,
0.1756,
0.1757,
0.1757,
0.1757,
0.1756,
0.1756,
0.1756,
0.1755,
0.1757,
0.1757,
0.1757,
0.1754,
0.1758,
0.1759,
0.1757,
0.1756,
0.1755,
0.1756,
0.1757,
0.1756,
0.1755,
0.1756,
0.1757,
0.1757,
0.1756,
0.1754,
0.1755,
0.1756,
0.1757,
0.1756,
0.1756,
0.1756,
0.1757,
0.1757,
0.1758,
0.1757,
0.1756,
0.1757,
0.1756,
0.1756,
0.1756,
0.1756,
0.1756,
0.1755,
0.1755,
0.1756,
0.1756,
0.1757,
0.1757,
0.1755,
0.1754,
0.1754,
0.1756,
0.1757,
0.1757,
0.1754,
0.1754,
0.1756,
0.1757,
0.1757,
0.1757,
0.1757,
0.1754,
0.1756,
0.1757,
0.1756,
0.1755,
0.1754,
0.1754,
0.1756,
0.1756,
0.1757,
0.1756,
0.1756,
0.1757,
0.1756,
0.1755,
0.1757,
0.1757,
0.1756,
0.1756,
0.1757,
0.1756,
0.1755,
0.1755,
0.1757,
0.1757,
0.1756,
0.1756,
0.1756,
0.1756,
0.1757,
0.1759,
0.1757,
0.1757,
0.1756,
0.1756,
0.1757,
0.1755,
0.1756,
0.1757,
0.1757,
0.1758,
0.1757,
0.1755,
0.1756,
0.1758,
0.1756,
0.1756,
0.1757,
0.1758,
0.1757,
0.1758,
0.1757,
0.1757,
0.1756,
0.1757,
0.1757,
0.1758,
0.1758,
0.1758,
0.1758,
0.1758,
0.1758,
0.1756,
0.1757,
0.1757,
0.1757,
0.1758,
0.1757,
0.1755,
0.1757,
0.1757,
0.1757,
0.1756,
0.1757,
0.1756,
0.1757,
0.1757,
0.1757,
0.1756,
0.1758,
0.1757,
0.1757,
0.1757,
0.1756,
0.1757,
0.1757,
0.1757,
0.1757,
0.1756,
0.1757,
0.1757,
0.1758,
0.1758,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1756,
0.1757,
0.1756,
0.1756,
0.1754,
0.1756,
0.1758,
0.1757,
0.1757,
0.1758,
0.1757,
0.1756,
0.1756,
0.1757,
0.1756,
0.1758,
0.1756,
0.1756,
0.1756,
0.1757,
0.1757,
0.1757,
0.1757,
0.1755,
0.1756,
0.1756,
0.1756,
0.1757,
0.1757,
0.1756,
0.1756,
0.1757,
0.1757,
0.1757,
0.1756,
0.1756,
0.1756,
0.1755,
0.1756,
0.1756,
0.1757,
0.1756,
0.1756,
0.1756,
0.1756,
0.1756,
0.1756,
0.1756,
0.1757,
0.1756,
0.1756,
0.1757,
0.1757,
0.1758,
0.1758,
0.1757,
0.1755,
0.1757,
0.1757,
0.1756,
0.1757,
0.1757,
0.1757,
0.1756,
0.1755,
0.1755,
0.1756,
0.1757,
0.1757,
0.1757,
0.1756,
0.1757,
0.1755,
0.1755,
0.1754,
0.1757,
0.1758,
0.1758,
0.1756,
0.1756,
0.1756,
0.1757,
0.1757,
0.1756,
0.1757,
0.1758,
0.1756,
0.1756,
0.1756,
0.1757,
0.1758,
0.1757,
0.1757,
0.1757,
0.1756,
0.1757,
0.1756,
0.1756,
0.1756,
0.1756,
0.1757,
0.1758,
0.1757,
0.1758,
0.1758,
0.1756,
0.1756,
0.1758,
0.1757,
0.1756,
0.1757,
0.1757,
0.1759,
0.1758,
0.1758,
0.1759,
0.1759,
0.1758,
0.1758,
0.1758,
0.1758,
0.1758,
0.1758,
0.1756,
0.1756,
0.1757,
0.1758,
0.1757,
0.1757,
0.1758,
0.1757,
0.1756,
0.1756,
0.1757,
0.1757,
0.1757,
0.1757,
0.1756,
0.1756,
0.1757,
0.1758,
0.1757,
0.1757,
0.1757,
0.1757,
0.1756,
0.1756,
0.1756,
0.1756,
0.1756,
0.1758,
0.1757,
0.1757,
0.1757,
0.1756,
0.1756,
0.1757,
0.1757,
0.1756,
0.1757,
0.1756,
0.1756,
0.1757,
0.1757,
0.1758,
0.1756,
0.1755,
0.1756,
0.1756,
0.1756,
0.1756,
0.1757,
0.1757,
0.1758,
0.1758,
0.1757,
0.1756,
0.1756,
0.1756,
0.1756,
0.1757,
0.1757,
0.1755,
0.1756,
0.1755,
0.1756,
0.1756,
0.1758,
0.1757,
0.1755,
0.1757,
0.1757,
0.1756,
0.1756,
0.1756,
0.1756,
0.1757,
0.1757,
0.1757,
0.1757,
0.1755,
0.1755,
0.1756,
0.1757,
0.1756,
0.1756,
0.1756,
0.1756,
0.1757,
0.1759,
0.1758,
0.1757,
0.1757,
0.1757,
0.1758,
0.1758,
0.1757,
0.1756,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1758,
0.1758,
0.1756,
0.1756,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1758,
0.1758,
0.1758,
0.1757,
0.1758,
0.1758,
0.1758,
0.1757,
0.1756,
0.1757,
0.1757,
0.1757,
0.1756,
0.1756,
0.1757,
0.1757,
0.1757,
0.1755,
0.1755,
0.1756,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1756,
0.1754,
0.1756,
0.1758,
0.1758,
0.1755,
0.1757,
0.1757,
0.1757,
0.1757,
0.1758,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1758,
0.1757,
0.1758,
0.1758,
0.1757,
0.1756,
0.1757,
0.1757,
0.1757,
0.1756,
0.1757,
0.1757,
0.1756,
0.1756,
0.1757,
0.1757,
0.1756,
0.1756,
0.1756,
0.1756,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1756,
0.1757,
0.1757,
0.1757,
0.1756,
0.1755,
0.1756,
0.1756,
0.1758,
0.1757,
0.1758,
0.1758,
0.1756,
0.1756,
0.1756,
0.1756,
0.1757,
0.1758,
0.1757,
0.1757,
0.1757,
0.1757,
0.1755,
0.1756,
0.1758,
0.1757,
0.1758,
0.1757,
0.1758,
0.1757,
0.1757,
0.1756,
0.1756,
0.1756,
0.1756,
0.1756,
0.1756,
0.1755,
0.1757,
0.1757,
0.1757,
0.1756,
0.1756,
0.1756,
0.1756,
0.1755,
0.1757,
0.1757,
0.1757,
0.1756,
0.1756,
0.1756,
0.1757,
0.1757,
0.1756,
0.1755,
0.1755,
0.1756,
0.1756,
0.1756,
0.1757,
0.1755,
0.1755,
0.1756,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1755,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1756,
0.1756,
0.1756,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1755,
0.1755,
0.1755,
0.1755,
0.1756,
0.1755,
0.1755,
0.1755,
0.1755,
0.1755,
0.1757,
0.1757,
0.1757,
0.1755,
0.1755,
0.1756,
0.1757,
0.1754,
0.1757,
0.1757,
0.1755,
0.1757,
0.1757,
0.1755,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1756,
0.1757,
0.1757,
0.1757,
0.1757,
0.1756,
0.1755,
0.1757,
0.1757,
0.1755,
0.1757,
0.1757,
0.1755,
0.1755,
0.1757,
0.1757,
0.1756,
0.1755,
0.1755,
0.1755,
0.1756,
0.1757,
0.1755,
0.1757,
0.1757,
0.1755,
0.1757,
0.1757,
0.1757,
0.1757,
0.1755,
0.1754,
0.1756,
0.1757,
0.1757,
0.1756,
0.1756,
0.1757,
0.1755,
0.1754,
0.1754,
0.1757,
0.1756,
0.1757,
0.1756,
0.1755,
0.1755,
0.1755,
0.1756,
0.1756,
0.1755,
0.1756,
0.1756,
0.1756,
0.1756,
0.1756,
0.1757,
0.1758,
0.1757,
0.1757,
0.1756,
0.1757,
0.1758,
0.1758,
0.1758,
0.1757,
0.1757,
0.1757,
0.1758,
0.1755,
0.1757,
0.1758,
0.1757,
0.1755,
0.1755,
0.1755,
0.1757,
0.1755,
0.1756,
0.1759,
0.1757,
0.1757,
0.1755,
0.1755,
0.1758,
0.1758,
0.1757,
0.1755,
0.1755,
0.1755,
0.1757,
0.1757,
0.1757,
0.1755,
0.1755,
0.1755,
0.1755,
0.1755,
0.1754,
0.1754,
0.1754,
0.1755,
0.1757,
0.1757,
0.1756,
0.1756,
0.1757,
0.1758,
0.1756,
0.1756,
0.1756,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1756,
0.1757,
0.1757,
0.1756,
0.1757,
0.1755,
0.1755,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1756,
0.1756,
0.1756,
0.1757,
0.1756,
0.1754,
0.1755,
0.1755,
0.1754,
0.1756,
0.1755,
0.1757,
0.1756,
0.1755,
0.1756,
0.1757,
0.1757,
0.1755,
0.1755,
0.1755,
0.1755,
0.1757,
0.1755,
0.1755,
0.1756,
0.1755,
0.1755,
0.1756,
0.1755,
0.1757,
0.1757,
0.1756,
0.1755,
0.1757,
0.1757,
0.1756,
0.1757,
0.1758,
0.1758,
0.1758,
0.1757,
0.1757,
0.1758,
0.1757,
0.1756,
0.1755,
0.1755,
0.1755,
0.1755,
0.1755,
0.1755,
0.1755,
0.1755,
0.1756,
0.1757,
0.1756,
0.1755,
0.1757,
0.1757,
0.1757,
0.1756,
0.1758,
0.1757,
0.1757,
0.1756,
0.1756,
0.1756,
0.1756,
0.1755,
0.1755,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1758,
0.1757,
0.1755,
0.1755,
0.1755,
0.1756,
0.1755,
0.1755,
0.1755,
0.1755,
0.1755,
0.1757,
0.1757,
0.1754,
0.1756,
0.1757,
0.1758,
0.1758,
0.1756,
0.1755,
0.1757,
0.1755,
0.1755,
0.1756,
0.1756,
0.1757,
0.1757,
0.1757,
0.1756,
0.1756,
0.1756,
0.1756,
0.1756,
0.1755,
0.1755,
0.1755,
0.1756,
0.1757,
0.1757,
0.1755,
0.1756,
0.1757,
0.1757,
0.1755,
0.1756,
0.1757,
0.1755,
0.1757,
0.1757,
0.1757,
0.1757,
0.1756,
0.1756,
0.1757,
0.1757,
0.1755,
0.1755,
0.1756,
0.1757,
0.1757,
0.1757,
0.1756,
0.1756,
0.1755,
0.1755,
0.1755,
0.1757,
0.1757,
0.1757,
0.1756,
0.1757,
0.1758,
0.1758,
0.1759,
0.1755,
0.1753,
0.1755,
0.1757,
0.1756,
0.1755,
0.1755,
0.1757,
0.1758,
0.1758,
0.1756,
0.1755,
0.1756,
0.1755,
0.1755,
0.1757,
0.1756,
0.1755,
0.1758,
0.1757,
0.1755,
0.1758,
0.1758,
0.1757,
0.1756,
0.1757,
0.1756,
0.1756,
0.1755,
0.1754,
0.1757,
0.1756,
0.1755,
0.1756,
0.1758,
0.1758,
0.1756,
0.1755,
0.1755,
0.1754,
0.1755,
0.1756,
0.1756,
0.1757,
0.1756,
0.1757,
0.1755,
0.1755,
0.1755,
0.1755,
0.1755,
0.1756,
0.1756,
0.1756,
0.1754,
0.1755,
0.1757,
0.1755,
0.1757,
0.1757,
0.1756,
0.1755,
0.1756,
0.1754,
0.1755,
0.1754,
0.1755,
0.1755,
0.1753,
0.1752,
0.1755,
0.1756,
0.1756,
0.1755,
0.1755,
0.1755,
0.1755,
0.1754,
0.1753,
0.1755,
0.1757,
0.1755,
0.1755,
0.1755,
0.1754,
0.1754,
0.1753,
0.1755,
0.1755,
0.1756,
0.1757,
0.1757,
0.1756,
0.1757,
0.1755,
0.1755,
0.1757,
0.1756,
0.1755,
0.1754,
0.1754,
0.1755,
0.1757,
0.1755,
0.1755,
0.1755,
0.1757,
0.1756,
0.1756,
0.1755,
0.1757,
0.1758,
0.1757,
0.1754,
0.1752,
0.1754,
0.1756,
0.1757,
0.1754,
0.1755,
0.1756,
0.1758,
0.1757,
0.1757,
0.1758,
0.1757,
0.1757,
0.1756,
0.1756,
0.1757,
0.1756,
0.1757,
0.1755,
0.1756,
0.1757,
0.1758,
0.1757,
0.1756,
0.1756,
0.1755,
0.1754,
0.1755,
0.1755,
0.1755,
0.1757,
0.1756,
0.1755,
0.1756,
0.1757,
0.1758,
0.1757,
0.1756,
0.1758,
0.1758,
0.1758,
0.1757,
0.1755,
0.1755,
0.1756,
0.1756,
0.1757,
0.1755,
0.1756,
0.1757,
0.1758,
0.1756,
0.1756,
0.1755,
0.1756,
0.1756,
0.1755,
0.1755,
0.1758,
0.1756,
0.1757,
0.1756,
0.1756,
0.1756,
0.1757,
0.1757,
0.1758,
0.1758,
0.1757,
0.1757,
0.1755,
0.1756,
0.1757,
0.1758,
0.1758,
0.1756,
0.1755,
0.1758,
0.1758,
0.1757,
0.1756,
0.1756,
0.1755,
0.1757,
0.1757,
0.1757,
0.1756,
0.1756,
0.1758,
0.1757,
0.1756,
0.1756,
0.1756,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1756,
0.1757,
0.1757,
0.1757,
0.1758,
0.1758,
0.1757,
0.1758,
0.1757,
0.1757,
0.1757,
0.1757,
0.1757,
0.1756,
0.1756,
0.1757,
0.1757,
0.1756,
0.1755,
0.1756,
0.1757,
0.1756,
0.1755,
0.1754,
0.1757,
0.1757,
0.1756,
0.1757,
0.1758,
0.1757,
0.1758,
0.1757,
0.1757,
0.1757,
0.1757,
0.1758,
0.1757,
0.1757,
0.1757,
0.1758,
0.1757,
0.1757,
0.1756,
0.1756,
0.1756,
0.1756,
0.1756,
0.1757,
0.1758,
0.1758,
0.1758,
0.1757,
0.1757,
0.1757,
0.1757,
0.1758,
0.1758,
0.1757,
0.1757,
0.1757,
0.1758,
0.1758,
0.1756,
0.1757,
0.1756,
0.1755,
0.1756,
0.1757,
0.1757,
0.1758,
0.1757,
0.1756,
0.1757,
0.1757,
0.1756,
0.1756,
0.1756
],
"avg": [
0.1684,
0.1687,
0.1689,
0.169,
0.1693,
0.1693,
0.1692,
0.1696,
0.1696,
0.1697,
0.17,
0.17,
0.1703,
0.1702,
0.1703,
0.1706,
0.1706,
0.1709,
0.171,
0.1711,
0.1712,
0.1714,
0.1713,
0.1714,
0.1717,
0.1717,
0.1718,
0.172,
0.172,
0.1723,
0.1724,
0.1727,
0.1726,
0.1727,
0.173,
0.1731,
0.1733,
0.1732,
0.1733,
0.1735,
0.1738,
0.1737,
0.174,
0.1739,
0.1737,
0.1739,
0.1742,
0.1741,
0.1743,
0.1745,
0.1747,
0.1745,
0.1748,
0.1748,
0.1748,
0.1748,
0.1749,
0.1749,
0.1753,
0.1754,
0.1754,
0.1756,
0.1759,
0.1757,
0.1757,
0.1759,
0.1758,
0.1761,
0.1761,
0.176,
0.1764,
0.1763,
0.1764,
0.1763,
0.1767,
0.1767,
0.1768,
0.177,
0.1767,
0.1769,
0.177,
0.1772,
0.1773,
0.1771,
0.1773,
0.1772,
0.1775,
0.1773,
0.1773,
0.1777,
0.1778,
0.178,
0.1782,
0.1781,
0.1782,
0.1785,
0.1782,
0.1782,
0.1782,
0.1783,
0.1785,
0.1782,
0.1783,
0.1783,
0.1787,
0.1784,
0.1784,
0.1787,
0.1791,
0.179,
0.1792,
0.1792,
0.1791,
0.1793,
0.179,
0.1793,
0.1797,
0.1794,
0.1796,
0.1795,
0.1796,
0.1795,
0.1796,
0.1794,
0.1792,
0.1795,
0.1796,
0.1793,
0.1792,
0.1792,
0.1791,
0.1793,
0.1794,
0.1793,
0.1789,
0.1793,
0.1794,
0.1794,
0.1793,
0.1793,
0.1796,
0.1795,
0.1791,
0.1793,
0.1795,
0.1796,
0.1795,
0.1797,
0.1798,
0.1797,
0.1791,
0.1798,
0.1793,
0.1796,
0.1789,
0.1792,
0.1793,
0.1795,
0.1796,
0.1795,
0.1793,
0.1795,
0.1794,
0.179,
0.1787,
0.1789,
0.1791,
0.1791,
0.1786,
0.179,
0.1788,
0.1788,
0.1789,
0.1785,
0.1788,
0.1786,
0.1784,
0.1783,
0.1782,
0.1782,
0.1783,
0.1783,
0.1783,
0.1784,
0.1783,
0.1781,
0.178,
0.1781,
0.1781,
0.178,
0.1779,
0.1779,
0.1781,
0.1775,
0.1772,
0.1772,
0.1773,
0.1772,
0.1773,
0.1769,
0.1771,
0.1766,
0.1766,
0.1765,
0.1765,
0.1763,
0.1765,
0.1764,
0.176,
0.1759,
0.1758,
0.1758,
0.1757,
0.1753,
0.1751,
0.1752,
0.1751,
0.175,
0.1749,
0.175,
0.1748,
0.1748,
0.1746,
0.1746,
0.1747,
0.1743,
0.1743,
0.1739,
0.1739,
0.1735,
0.1734,
0.1735,
0.1733,
0.173,
0.1729,
0.1729,
0.173,
0.1727,
0.1727,
0.1725,
0.1721,
0.1722,
0.172,
0.1719,
0.1715,
0.1714,
0.1714,
0.1712,
0.1711,
0.1709,
0.1709,
0.1704,
0.17,
0.1702,
0.1699,
0.1696,
0.1693,
0.1692,
0.1691,
0.1685,
0.1686,
0.1685,
0.1685,
0.1682,
0.168,
0.1679,
0.168,
0.167,
0.1672,
0.1672,
0.1672,
0.1667,
0.1664,
0.1664,
0.1662,
0.166,
0.1656,
0.1654,
0.1656,
0.1651,
0.1642,
0.1642,
0.1643,
0.164,
0.1639,
0.1634,
0.1638,
0.1633,
0.1633,
0.163,
0.1628,
0.1624,
0.1621,
0.1621,
0.1616,
0.1614,
0.161,
0.1607,
0.161,
0.1607,
0.1604,
0.161,
0.1612,
0.1607,
0.1599,
0.1593,
0.1593,
0.1591,
0.1585,
0.1583,
0.1581,
0.158,
0.1575,
0.1574,
0.1568,
0.1568,
0.1567,
0.1567,
0.1562,
0.1559,
0.1554,
0.1548,
0.1552,
0.1549,
0.1548,
0.1544,
0.1545,
0.1543,
0.1537,
0.1532,
0.1525,
0.1525,
0.152,
0.1519,
0.1519,
0.152,
0.1511,
0.1501,
0.1505,
0.1511,
0.1506,
0.15,
0.1494,
0.1492,
0.1488,
0.1485,
0.1484,
0.1482,
0.1482,
0.1475,
0.1475,
0.1472,
0.1469,
0.1461,
0.1457,
0.1458,
0.1456,
0.1453,
0.1447,
0.1447,
0.1446,
0.1446,
0.144,
0.1442,
0.1436,
0.1434,
0.1431,
0.1425,
0.1424,
0.142,
0.1422,
0.1417,
0.1416,
0.1411,
0.1408,
0.1402,
0.1401,
0.1397,
0.1393,
0.1389,
0.1388,
0.1386,
0.1381,
0.1375,
0.1375,
0.1371,
0.1371,
0.1372,
0.1366,
0.1361,
0.1357,
0.1356,
0.1356,
0.1351,
0.1347,
0.1341,
0.1339,
0.1338,
0.1335,
0.1332,
0.133,
0.1324,
0.1321,
0.132,
0.1317,
0.1314,
0.1309,
0.1307,
0.1306,
0.13,
0.13,
0.1294,
0.1297,
0.1294,
0.129,
0.1284,
0.1283,
0.128,
0.1272,
0.127,
0.1267,
0.1263,
0.1261,
0.1256,
0.1251,
0.1249,
0.1247,
0.1244,
0.1243,
0.1242,
0.1237,
0.123,
0.1226,
0.1228,
0.1221,
0.1216,
0.1215,
0.1218,
0.1213,
0.1208,
0.1205,
0.1198,
0.1198,
0.1198,
0.1193,
0.1188,
0.1187,
0.1184,
0.1182,
0.1175,
0.1174,
0.1173,
0.117,
0.1168,
0.1164,
0.1161,
0.1159,
0.1157,
0.1153,
0.1151,
0.1148,
0.1141,
0.1141,
0.1136,
0.113,
0.1127,
0.1127,
0.1125,
0.1123,
0.1118,
0.1114,
0.1111,
0.1112,
0.1108,
0.1104,
0.1102,
0.1097,
0.1096,
0.1093,
0.109,
0.109,
0.1085,
0.1084,
0.1078,
0.1077,
0.1076,
0.1073,
0.107,
0.1066,
0.1066,
0.1062,
0.1059,
0.1057,
0.1054,
0.1052,
0.105,
0.1048,
0.1047,
0.1045,
0.104,
0.1041,
0.1038,
0.1039,
0.1032,
0.1026,
0.1028,
0.1026,
0.102,
0.1018,
0.1017,
0.1014,
0.1013,
0.1014,
0.1012,
0.1011,
0.101,
0.1009,
0.1006,
0.1005,
0.1,
0.0997,
0.0999,
0.0997,
0.0994,
0.0994,
0.099,
0.0988,
0.0989,
0.0985,
0.0985,
0.0983,
0.0982,
0.0975,
0.0979,
0.0974,
0.0977,
0.0973,
0.0972,
0.097,
0.0967,
0.0966,
0.0963,
0.0964,
0.0964,
0.0959,
0.0962,
0.0962,
0.0957,
0.096,
0.0955,
0.0956,
0.0954,
0.095,
0.0949,
0.0952,
0.0949,
0.095,
0.0945,
0.0945,
0.0948,
0.0948,
0.0947,
0.0945,
0.0948,
0.0945,
0.0944,
0.0946,
0.0941,
0.0942,
0.0941,
0.0939,
0.0943,
0.0939,
0.0942,
0.094,
0.0942,
0.0944,
0.0941,
0.0941,
0.0942,
0.0944,
0.0942,
0.094,
0.0944,
0.0942,
0.0946,
0.0944,
0.094,
0.0945,
0.0946,
0.0942,
0.0943,
0.0944,
0.0946,
0.0945,
0.0946,
0.0947,
0.0944,
0.0946,
0.0948,
0.095,
0.0949,
0.0952,
0.0952,
0.095,
0.0956,
0.0957,
0.0959,
0.0957,
0.0956,
0.0957,
0.0962,
0.0964,
0.0965,
0.0963,
0.0962,
0.0967,
0.0965,
0.0969,
0.0975,
0.0976,
0.0976,
0.0974,
0.0977,
0.0978,
0.098,
0.0983,
0.0982,
0.0987,
0.0988,
0.0989,
0.099,
0.099,
0.0993,
0.0995,
0.1,
0.1,
0.0996,
0.1,
0.1004,
0.1003,
0.1007,
0.1009,
0.1009,
0.1013,
0.1014,
0.102,
0.1018,
0.1023,
0.1023,
0.1027,
0.1026,
0.103,
0.1031,
0.1033,
0.1035,
0.1037,
0.1041,
0.104,
0.1045,
0.1048,
0.105,
0.105,
0.1056,
0.1061,
0.1062,
0.1062,
0.1066,
0.1068,
0.1073,
0.1074,
0.1075,
0.1077,
0.1081,
0.1088,
0.1085,
0.1086,
0.1092,
0.1094,
0.1094,
0.1098,
0.1105,
0.1106,
0.1107,
0.1115,
0.1113,
0.1119,
0.1121,
0.1125,
0.1122,
0.1126,
0.113,
0.1133,
0.1134,
0.1143,
0.1142,
0.1147,
0.1148,
0.115,
0.1151,
0.1158,
0.1162,
0.116,
0.117,
0.117,
0.1174,
0.1174,
0.1175,
0.1183,
0.1183,
0.1183,
0.1186,
0.1191,
0.1195,
0.1196,
0.1201,
0.1205,
0.1209,
0.121,
0.1218,
0.1219,
0.122,
0.1225,
0.1228,
0.1231,
0.1231,
0.124,
0.124,
0.1244,
0.1242,
0.1245,
0.1256,
0.1253,
0.1261,
0.1264,
0.1267,
0.1268,
0.127,
0.1271,
0.1276,
0.1281,
0.1283,
0.1288,
0.129,
0.1293,
0.1297,
0.1296,
0.1302,
0.1305,
0.1309,
0.1311,
0.1318,
0.1315,
0.1324,
0.1329,
0.1329,
0.1334,
0.1336,
0.1336,
0.1333,
0.1345,
0.1348,
0.1351,
0.1352,
0.1355,
0.1361,
0.136,
0.1365,
0.1368,
0.1374,
0.1378,
0.1379,
0.1381,
0.1379,
0.1387,
0.1393,
0.1394,
0.14,
0.14,
0.1401,
0.1403,
0.1409,
0.1413,
0.1412,
0.1422,
0.1425,
0.1426,
0.1429,
0.1431,
0.143,
0.144,
0.144,
0.1443,
0.1449,
0.1448,
0.1457,
0.1459,
0.1458,
0.146,
0.1469,
0.1474,
0.1474,
0.1474,
0.1477,
0.1485,
0.1492,
0.1488,
0.1493,
0.1495,
0.1494,
0.1502,
0.1506,
0.1509,
0.151,
0.1514,
0.1519,
0.152,
0.1521,
0.1523,
0.153,
0.1531,
0.1534,
0.1543,
0.154,
0.1545,
0.1546,
0.1551,
0.1556,
0.1557,
0.156,
0.1564,
0.1566,
0.1571,
0.1571,
0.1577,
0.1579,
0.1586,
0.1584,
0.1586,
0.159,
0.1595,
0.1595,
0.1599,
0.1601,
0.1603,
0.1612,
0.1609,
0.1615,
0.1616,
0.1623,
0.1624,
0.1623,
0.1632,
0.1633,
0.1635,
0.1635,
0.1642,
0.1643,
0.1647,
0.1648,
0.1652,
0.1654,
0.1661,
0.1658,
0.1664,
0.1668,
0.1671,
0.1669,
0.1673,
0.1672,
0.1677,
0.1683,
0.1688,
0.1688,
0.1692,
0.1692,
0.17,
0.1702,
0.1704,
0.1705,
0.1706,
0.1712,
0.1715,
0.1714,
0.1722,
0.1725,
0.1724,
0.173,
0.1729,
0.1737,
0.1735,
0.1737,
0.1743,
0.1744,
0.1748,
0.175,
0.1754,
0.1753,
0.1762,
0.1766,
0.1767,
0.1769,
0.1764,
0.1767,
0.1778,
0.1778,
0.1777,
0.1786,
0.1785,
0.1785,
0.179,
0.1789,
0.1792,
0.1798,
0.1794,
0.18,
0.1804,
0.181,
0.1807,
0.1811,
0.1811,
0.1816,
0.1814,
0.182,
0.1822,
0.1827,
0.183,
0.1828,
0.1828,
0.1836,
0.1835,
0.1842,
0.1841,
0.184,
0.1847,
0.1848,
0.1851,
0.1852,
0.1855,
0.1858,
0.1858,
0.1862,
0.1865,
0.1868,
0.1867,
0.1869,
0.1871,
0.1877,
0.1873,
0.1876,
0.1875,
0.1879,
0.1881,
0.1883,
0.1885,
0.1887,
0.1887,
0.1896,
0.1893,
0.1894,
0.1899,
0.1897,
0.1903,
0.1904,
0.1907,
0.1906,
0.191,
0.1906,
0.1909,
0.1913,
0.1914,
0.1917,
0.1917,
0.1919,
0.1922,
0.1922,
0.1924,
0.1927,
0.1924,
0.1927,
0.1934,
0.1928,
0.1931,
0.1934,
0.1933,
0.1936,
0.1937,
0.1941,
0.194,
0.1943,
0.1943,
0.1949,
0.195,
0.1951,
0.1952,
0.1952,
0.1951,
0.1955,
0.1959,
0.1957,
0.1956,
0.1959,
0.1961,
0.1961,
0.1964,
0.1968,
0.1969,
0.1971,
0.197,
0.197,
0.1975,
0.1972,
0.1976,
0.1976,
0.1976,
0.1975,
0.198,
0.1977,
0.1979,
0.1983,
0.1978,
0.1981,
0.1984,
0.1982,
0.1982,
0.1988,
0.1984,
0.1987,
0.1994,
0.1988,
0.1997,
0.1993,
0.1996,
0.1993,
0.1995,
0.1993,
0.2001,
0.2001,
0.1995,
0.1999,
0.2001,
0.2002,
0.2002,
0.2006,
0.2004,
0.2003,
0.2003,
0.2006,
0.2007,
0.2002,
0.2008,
0.2005,
0.201,
0.2007,
0.2009,
0.2015,
0.2012,
0.201,
0.201,
0.2014,
0.2014,
0.2013,
0.2016,
0.2009,
0.2012,
0.2017,
0.2016,
0.2019,
0.2017,
0.2017,
0.2019,
0.2016,
0.202,
0.2018,
0.2018,
0.2019,
0.2018,
0.2018,
0.2022,
0.2025,
0.202,
0.2024,
0.2019,
0.2024,
0.2021,
0.2024,
0.2021,
0.2025,
0.2028,
0.2026,
0.2025,
0.2018,
0.2026,
0.2029,
0.2021,
0.2023,
0.2025,
0.2026,
0.2027,
0.2027,
0.2022,
0.2028,
0.2023,
0.2024,
0.2025,
0.2022,
0.2025,
0.2024,
0.2024,
0.2022,
0.2026,
0.2024,
0.2024,
0.203,
0.2027,
0.2023,
0.2026,
0.2029,
0.2028,
0.2031,
0.203,
0.2024,
0.2025,
0.2022,
0.2027,
0.2026,
0.2024,
0.2024,
0.2027,
0.2021,
0.2023,
0.2023,
0.2026,
0.2033,
0.2029,
0.2027,
0.2027,
0.2023,
0.2025,
0.2022,
0.2025,
0.2023,
0.2025,
0.2024,
0.202,
0.202,
0.2021,
0.2024,
0.2023,
0.2022,
0.2023,
0.2019,
0.2019,
0.2023,
0.2016,
0.2016,
0.2016,
0.2013,
0.2012,
0.2014,
0.2019,
0.2015,
0.2012,
0.2016,
0.2013,
0.2014,
0.2018,
0.2014,
0.2008,
0.2013,
0.2016,
0.2013,
0.2012,
0.201,
0.201,
0.2013,
0.201,
0.2012,
0.2008,
0.2013,
0.201,
0.2006,
0.2004,
0.2005,
0.201,
0.2008,
0.2,
0.2001,
0.2001,
0.2005,
0.2001,
0.1999,
0.1999,
0.1996,
0.2001,
0.1997,
0.1999,
0.1999,
0.1995,
0.1999,
0.1991,
0.1997,
0.1997,
0.1999,
0.1994,
0.199,
0.1992,
0.199,
0.1987,
0.199,
0.199,
0.1984,
0.1988,
0.1986,
0.1986,
0.1989,
0.1984,
0.1984,
0.1986,
0.1982,
0.1983,
0.1986,
0.1976,
0.198,
0.1982,
0.198,
0.1978,
0.1979,
0.1975,
0.1974,
0.1976,
0.1966,
0.1969,
0.1969,
0.1974,
0.1974,
0.1966,
0.1968,
0.1967,
0.1969,
0.1969,
0.1967,
0.197,
0.1962,
0.1962,
0.1957,
0.196,
0.1959,
0.1958,
0.196,
0.1957,
0.1957,
0.1957,
0.1949,
0.1954,
0.1952,
0.1952,
0.1951,
0.195,
0.1951,
0.195,
0.1954,
0.1947,
0.1947,
0.1946,
0.1947,
0.1944,
0.1946,
0.1946,
0.1944,
0.1942,
0.1938,
0.194,
0.1944,
0.1943,
0.193,
0.1939,
0.1943,
0.1939,
0.194,
0.1931,
0.1921,
0.1933,
0.1933,
0.1928,
0.1928,
0.1927,
0.1925,
0.1928,
0.1926,
0.1932,
0.1929,
0.1927,
0.1921,
0.1923,
0.1921,
0.192,
0.1919,
0.1917,
0.1914,
0.1915,
0.1915,
0.1914,
0.1913,
0.1917,
0.1911,
0.191,
0.191,
0.191,
0.191,
0.1911,
0.1903,
0.1906,
0.1909,
0.1908,
0.1908,
0.1905,
0.1912,
0.1906,
0.1903,
0.1902,
0.1904,
0.1908,
0.1905,
0.1904,
0.1903,
0.1903,
0.19,
0.1904,
0.1898,
0.1894,
0.1902,
0.1903,
0.1899,
0.1899,
0.1897,
0.19,
0.1901,
0.1895,
0.1892,
0.1895,
0.1894,
0.1894,
0.1896,
0.1891,
0.1893,
0.1891,
0.1893,
0.1889,
0.1893,
0.1891,
0.1894,
0.1889,
0.1891,
0.1888,
0.1887,
0.1891,
0.189,
0.1892,
0.1894,
0.1886,
0.1885,
0.1894,
0.1895,
0.189,
0.1893,
0.1892,
0.189,
0.1889,
0.1895,
0.1891,
0.1893,
0.1893,
0.1895,
0.1896,
0.1899,
0.1897,
0.1894,
0.1896,
0.1895,
0.1895,
0.1893,
0.1893,
0.1898,
0.1902,
0.1896,
0.1897,
0.1901,
0.1898,
0.1904,
0.19,
0.1906,
0.1899,
0.1902,
0.1901,
0.1906,
0.1902,
0.191,
0.1905,
0.1909,
0.1908,
0.1905,
0.1904,
0.1906,
0.1909,
0.1903,
0.1916,
0.1912,
0.1912,
0.1916,
0.1918,
0.1914,
0.1917,
0.192,
0.192,
0.1921,
0.1921,
0.192,
0.1916,
0.1924,
0.1923,
0.1927,
0.1926,
0.1927,
0.1927,
0.193,
0.1924,
0.1933,
0.1932,
0.1932,
0.194,
0.1937,
0.1943,
0.1941,
0.1941,
0.1944,
0.1944,
0.1944,
0.1954,
0.195,
0.1951,
0.1954,
0.1956,
0.1956,
0.1961,
0.196,
0.196,
0.1966,
0.1961,
0.1961,
0.1968,
0.1966,
0.1976,
0.1976,
0.1981,
0.1978,
0.1982,
0.1981,
0.1989,
0.1987,
0.1991,
0.1995,
0.1992,
0.1997,
0.1994,
0.1993,
0.1997,
0.2002,
0.2005,
0.2009,
0.2008,
0.2008,
0.201,
0.2015,
0.2016,
0.2025,
0.2022,
0.2026,
0.2024,
0.2027,
0.2028,
0.2034,
0.203,
0.203,
0.2043,
0.2045,
0.2048,
0.205,
0.2049,
0.2054,
0.2058,
0.2056,
0.206,
0.2055,
0.2066,
0.207,
0.2074,
0.2069,
0.2072,
0.2077,
0.2081,
0.2078,
0.2085,
0.2087,
0.2088,
0.2093,
0.2098,
0.2095,
0.2103,
0.2103,
0.2105,
0.2114,
0.2119,
0.2121,
0.2119,
0.2123,
0.2123,
0.2129,
0.2131,
0.2126,
0.2136,
0.2142,
0.214,
0.2144,
0.2152,
0.2153,
0.2161,
0.2161,
0.216,
0.2166,
0.217,
0.2171,
0.2171,
0.2171,
0.2172,
0.2183,
0.2188,
0.2187,
0.2188,
0.2196,
0.2198,
0.2197,
0.2199,
0.2207,
0.2211,
0.2215,
0.2211,
0.2214,
0.2221,
0.2225,
0.2229,
0.2232,
0.2235,
0.2234,
0.224,
0.224,
0.225,
0.2253,
0.225,
0.2257,
0.2261,
0.2268,
0.2271,
0.227,
0.2276,
0.2274,
0.2285,
0.2287,
0.2288,
0.2293,
0.2292,
0.2293,
0.2305,
0.2299,
0.2306,
0.231,
0.2319,
0.2327,
0.2325,
0.2325,
0.2343,
0.2338,
0.2336,
0.2342,
0.2348,
0.2353,
0.2358,
0.2357,
0.2363,
0.2367,
0.2366,
0.2368,
0.2379,
0.2385,
0.238,
0.2389,
0.2389,
0.2392,
0.2398,
0.2407,
0.2402,
0.241,
0.2406,
0.2419,
0.2423,
0.2416,
0.2425,
0.2433,
0.2438,
0.2436,
0.2445,
0.2447,
0.2448,
0.2457,
0.246,
0.2464,
0.2468,
0.2478,
0.2472,
0.2479,
0.2485,
0.2492,
0.2493,
0.2498,
0.2501,
0.2495,
0.2501,
0.2504,
0.252,
0.2521,
0.2524,
0.2527,
0.2525,
0.2531,
0.2539,
0.2537,
0.2544,
0.2548,
0.2551,
0.2559,
0.2556,
0.2568,
0.2564,
0.2567,
0.2577,
0.2582,
0.2597,
0.2595,
0.2594,
0.2599,
0.2609,
0.2606,
0.2611,
0.2616,
0.2619,
0.2626,
0.2627,
0.2627,
0.2632,
0.2637,
0.2642,
0.265,
0.265,
0.2654,
0.2659,
0.2663,
0.2663,
0.2672,
0.2674,
0.2675,
0.2684,
0.2687,
0.2693,
0.2698,
0.27,
0.2702,
0.2705,
0.2703,
0.2715,
0.2722,
0.2727,
0.272,
0.2723,
0.2726,
0.274,
0.2736,
0.2748,
0.2749,
0.2743,
0.2763,
0.2762,
0.2766,
0.2766,
0.2773,
0.2781,
0.2781,
0.2781,
0.2786,
0.2792,
0.2793,
0.2802,
0.28,
0.2805,
0.2811,
0.2808,
0.2816,
0.2825,
0.2827,
0.2826,
0.2835,
0.2833,
0.2843,
0.2844,
0.2844,
0.285,
0.2861,
0.286,
0.2866,
0.2872,
0.2872,
0.2874,
0.2865,
0.288,
0.2886,
0.2892,
0.2893,
0.2892,
0.2896,
0.2902,
0.2902,
0.2899,
0.291,
0.2917,
0.2918,
0.292,
0.2919,
0.2921,
0.2925,
0.2933,
0.2931,
0.2944,
0.2946,
0.2951,
0.2945,
0.2957,
0.2957,
0.296,
0.2965,
0.2967,
0.2969,
0.2973,
0.2971,
0.2978,
0.298,
0.2986,
0.2982,
0.2989,
0.2997,
0.3001,
0.3007,
0.3003,
0.3003,
0.3005,
0.3011,
0.3014,
0.3014,
0.3016,
0.3027,
0.3018,
0.3032,
0.303,
0.3031,
0.3042,
0.3033,
0.3038,
0.3042
],
"max": [
0.8448,
0.8455,
0.8467,
0.8469,
0.8491,
0.8496,
0.8494,
0.8509,
0.8517,
0.854,
0.8553,
0.8561,
0.8585,
0.8573,
0.8583,
0.861,
0.8605,
0.862,
0.8626,
0.8645,
0.8659,
0.8677,
0.8678,
0.8677,
0.8707,
0.8708,
0.8718,
0.8733,
0.8734,
0.876,
0.8767,
0.8788,
0.8788,
0.88,
0.8817,
0.8825,
0.8847,
0.8848,
0.8853,
0.8873,
0.8889,
0.889,
0.8916,
0.8922,
0.8925,
0.8939,
0.8958,
0.896,
0.8978,
0.8986,
0.9006,
0.8999,
0.9025,
0.9032,
0.9042,
0.906,
0.9065,
0.9069,
0.9093,
0.9101,
0.9115,
0.9121,
0.9149,
0.9152,
0.9167,
0.9192,
0.917,
0.919,
0.9207,
0.92,
0.9232,
0.9239,
0.9252,
0.926,
0.9298,
0.9298,
0.9316,
0.935,
0.9334,
0.9352,
0.9352,
0.9377,
0.9391,
0.9388,
0.9408,
0.9405,
0.9442,
0.9431,
0.9433,
0.946,
0.9477,
0.9498,
0.9511,
0.9506,
0.9531,
0.9564,
0.9545,
0.9566,
0.957,
0.957,
0.9599,
0.9594,
0.9616,
0.9625,
0.9644,
0.9639,
0.9673,
0.9678,
0.9702,
0.9713,
0.9741,
0.9752,
0.9743,
0.9758,
0.9758,
0.9781,
0.98,
0.9789,
0.9817,
0.9821,
0.9837,
0.9849,
0.9863,
0.9863,
0.9856,
0.988,
0.9899,
0.9899,
0.9901,
0.9925,
0.9924,
0.994,
0.996,
0.9956,
0.9958,
0.999,
1.0001,
0.9997,
0.9997,
1.0013,
1.003,
1.0045,
1.0041,
1.0064,
1.0074,
1.0083,
1.0081,
1.0104,
1.0118,
1.0136,
1.0116,
1.0162,
1.0136,
1.0162,
1.0147,
1.0171,
1.0185,
1.0194,
1.0198,
1.0215,
1.0208,
1.0217,
1.024,
1.0224,
1.0223,
1.023,
1.0249,
1.0273,
1.0267,
1.0298,
1.0286,
1.0297,
1.0318,
1.031,
1.0324,
1.0316,
1.0328,
1.0334,
1.0332,
1.0341,
1.0366,
1.0369,
1.0381,
1.0397,
1.0399,
1.0398,
1.04,
1.0407,
1.0403,
1.0414,
1.0429,
1.0437,
1.0447,
1.0431,
1.0442,
1.0447,
1.0453,
1.044,
1.0466,
1.0465,
1.0477,
1.0469,
1.0474,
1.049,
1.0482,
1.0492,
1.0504,
1.0506,
1.0502,
1.0505,
1.0506,
1.0522,
1.0528,
1.051,
1.05,
1.0522,
1.0535,
1.0531,
1.0528,
1.0548,
1.0553,
1.0555,
1.0539,
1.0546,
1.0571,
1.0553,
1.0553,
1.056,
1.057,
1.0553,
1.056,
1.0564,
1.0562,
1.0572,
1.0584,
1.0565,
1.0596,
1.0588,
1.0595,
1.0599,
1.0585,
1.0599,
1.0584,
1.06,
1.0588,
1.0589,
1.0597,
1.0589,
1.0599,
1.0601,
1.0599,
1.0579,
1.0581,
1.0598,
1.059,
1.0584,
1.0571,
1.0577,
1.0583,
1.0567,
1.0578,
1.0579,
1.0591,
1.0586,
1.0566,
1.058,
1.0588,
1.0551,
1.056,
1.0555,
1.0567,
1.0551,
1.0552,
1.0552,
1.0547,
1.0551,
1.0545,
1.0551,
1.0554,
1.0545,
1.0531,
1.0536,
1.0537,
1.0533,
1.0526,
1.0503,
1.0545,
1.0503,
1.0508,
1.0508,
1.0515,
1.0495,
1.0508,
1.0514,
1.0484,
1.0472,
1.0486,
1.0474,
1.05,
1.0472,
1.0479,
1.0478,
1.0493,
1.047,
1.0452,
1.0439,
1.0445,
1.0458,
1.0441,
1.0439,
1.0424,
1.0448,
1.042,
1.0414,
1.039,
1.038,
1.0381,
1.0396,
1.0379,
1.0368,
1.0366,
1.0359,
1.0374,
1.0338,
1.0352,
1.0341,
1.0361,
1.0337,
1.033,
1.0332,
1.0286,
1.03,
1.0282,
1.0283,
1.0263,
1.0275,
1.0275,
1.0265,
1.0241,
1.0247,
1.024,
1.0225,
1.0217,
1.021,
1.0216,
1.0196,
1.0178,
1.0192,
1.0216,
1.0182,
1.0181,
1.0166,
1.0158,
1.0139,
1.0132,
1.0123,
1.012,
1.0123,
1.0118,
1.0128,
1.0115,
1.0109,
1.0078,
1.0096,
1.0094,
1.0074,
1.0063,
1.0054,
1.0056,
1.0032,
1.0055,
1.0031,
1.0025,
1.0028,
1.0026,
1.0001,
0.9995,
0.9985,
0.9969,
0.9964,
0.9948,
0.9936,
0.9937,
0.9909,
0.9909,
0.99,
0.9899,
0.9898,
0.9883,
0.987,
0.9859,
0.9854,
0.9845,
0.9805,
0.9822,
0.9817,
0.9805,
0.9802,
0.9791,
0.9773,
0.9766,
0.9755,
0.9736,
0.9738,
0.9726,
0.9726,
0.9714,
0.9715,
0.9699,
0.9689,
0.9697,
0.9661,
0.9697,
0.9672,
0.9668,
0.9642,
0.9638,
0.9639,
0.9599,
0.9612,
0.9602,
0.9577,
0.9558,
0.9549,
0.954,
0.9526,
0.9546,
0.9507,
0.9509,
0.9504,
0.9488,
0.9473,
0.9468,
0.9461,
0.9437,
0.9426,
0.9427,
0.9441,
0.9408,
0.9404,
0.9399,
0.9359,
0.9365,
0.9377,
0.9356,
0.9341,
0.9334,
0.9316,
0.9316,
0.9292,
0.9291,
0.9281,
0.9274,
0.9274,
0.9255,
0.9246,
0.9237,
0.9231,
0.921,
0.9213,
0.9198,
0.9175,
0.919,
0.9168,
0.9156,
0.9132,
0.914,
0.9114,
0.9119,
0.9114,
0.9092,
0.9079,
0.9084,
0.9072,
0.9053,
0.9059,
0.9042,
0.9024,
0.9024,
0.9012,
0.9016,
0.8981,
0.8984,
0.8972,
0.8966,
0.8977,
0.8956,
0.8944,
0.8926,
0.8924,
0.8908,
0.8899,
0.89,
0.8891,
0.8879,
0.8879,
0.8861,
0.8868,
0.886,
0.8856,
0.8858,
0.8834,
0.8844,
0.8809,
0.8792,
0.8803,
0.8798,
0.8771,
0.877,
0.8751,
0.8742,
0.8744,
0.8742,
0.8714,
0.872,
0.8713,
0.8715,
0.871,
0.87,
0.8682,
0.8671,
0.8679,
0.8677,
0.8656,
0.8661,
0.864,
0.863,
0.8639,
0.8619,
0.8632,
0.8616,
0.8613,
0.8583,
0.8596,
0.8593,
0.8589,
0.8571,
0.8584,
0.8576,
0.8566,
0.8563,
0.8548,
0.8548,
0.8543,
0.8516,
0.8531,
0.8528,
0.8505,
0.8529,
0.8501,
0.8512,
0.8503,
0.8502,
0.8475,
0.8487,
0.8471,
0.849,
0.8466,
0.8456,
0.8468,
0.8472,
0.8461,
0.8455,
0.8473,
0.8458,
0.8456,
0.8462,
0.844,
0.8441,
0.8438,
0.8423,
0.8454,
0.8417,
0.8441,
0.8436,
0.8434,
0.843,
0.8431,
0.8415,
0.8421,
0.8441,
0.8414,
0.8405,
0.8426,
0.8408,
0.8426,
0.8418,
0.8377,
0.8417,
0.8427,
0.8399,
0.8415,
0.841,
0.8411,
0.8396,
0.8407,
0.8412,
0.8395,
0.8412,
0.8409,
0.8409,
0.8404,
0.842,
0.8408,
0.8397,
0.8419,
0.8417,
0.8428,
0.8413,
0.8411,
0.8406,
0.8423,
0.8423,
0.8418,
0.8413,
0.8412,
0.8422,
0.8414,
0.8419,
0.8444,
0.8447,
0.844,
0.8427,
0.8448,
0.8443,
0.8451,
0.8456,
0.8455,
0.847,
0.8465,
0.8463,
0.8466,
0.8462,
0.8468,
0.8467,
0.8485,
0.8485,
0.8467,
0.8475,
0.849,
0.8485,
0.8499,
0.85,
0.8503,
0.8515,
0.851,
0.8535,
0.8511,
0.8532,
0.8532,
0.8542,
0.853,
0.8544,
0.8532,
0.8544,
0.855,
0.855,
0.856,
0.854,
0.8559,
0.8573,
0.8574,
0.8561,
0.8593,
0.8607,
0.8611,
0.8609,
0.8626,
0.8621,
0.8629,
0.8622,
0.8634,
0.8634,
0.8649,
0.8667,
0.8643,
0.8643,
0.8668,
0.8678,
0.8664,
0.867,
0.8698,
0.8699,
0.8704,
0.8731,
0.8713,
0.8743,
0.8734,
0.8746,
0.8718,
0.8746,
0.8752,
0.8757,
0.8736,
0.8789,
0.8776,
0.8792,
0.8788,
0.8789,
0.8788,
0.8819,
0.8829,
0.8806,
0.885,
0.8839,
0.8857,
0.8844,
0.8828,
0.8872,
0.8855,
0.8852,
0.8876,
0.888,
0.8888,
0.8894,
0.8904,
0.8912,
0.8919,
0.8912,
0.8944,
0.895,
0.8941,
0.8959,
0.8965,
0.8978,
0.8968,
0.9,
0.8995,
0.901,
0.8988,
0.8995,
0.9039,
0.9007,
0.9046,
0.905,
0.9056,
0.9056,
0.9065,
0.905,
0.9072,
0.9081,
0.9076,
0.9102,
0.9104,
0.911,
0.9119,
0.9107,
0.913,
0.9129,
0.9147,
0.915,
0.9171,
0.915,
0.9181,
0.9204,
0.9192,
0.9203,
0.9197,
0.9191,
0.9172,
0.9227,
0.9225,
0.9235,
0.9235,
0.9249,
0.9255,
0.9244,
0.9263,
0.9273,
0.9297,
0.9309,
0.9294,
0.9295,
0.9288,
0.9313,
0.9338,
0.9329,
0.9345,
0.9337,
0.9338,
0.9341,
0.9368,
0.938,
0.9361,
0.9403,
0.9413,
0.9412,
0.9423,
0.9408,
0.9391,
0.944,
0.9432,
0.9442,
0.9456,
0.9442,
0.9481,
0.9488,
0.9471,
0.9469,
0.9518,
0.9532,
0.9515,
0.9504,
0.9515,
0.9548,
0.9568,
0.9536,
0.9551,
0.9558,
0.9536,
0.9571,
0.9585,
0.9591,
0.9589,
0.9594,
0.9614,
0.961,
0.9613,
0.9614,
0.9638,
0.9637,
0.9639,
0.968,
0.9652,
0.9683,
0.9666,
0.9678,
0.9697,
0.9695,
0.971,
0.9715,
0.9715,
0.9732,
0.973,
0.9745,
0.9744,
0.9775,
0.9751,
0.9766,
0.9775,
0.9783,
0.9769,
0.9792,
0.9803,
0.9795,
0.9835,
0.9807,
0.9829,
0.9827,
0.9855,
0.985,
0.9828,
0.9868,
0.9874,
0.9877,
0.9874,
0.9898,
0.9891,
0.9901,
0.9894,
0.9906,
0.9912,
0.9947,
0.9913,
0.9932,
0.9943,
0.995,
0.9929,
0.9945,
0.9935,
0.9951,
0.9984,
0.9983,
0.9973,
0.9989,
0.9986,
1.0018,
1.0016,
1.0012,
1.0033,
1.0013,
1.004,
1.0049,
1.0046,
1.0063,
1.0069,
1.0056,
1.0086,
1.0072,
1.0098,
1.0083,
1.008,
1.0107,
1.0108,
1.0132,
1.0125,
1.0131,
1.0112,
1.015,
1.0167,
1.0164,
1.0163,
1.0132,
1.0135,
1.0191,
1.0177,
1.016,
1.0209,
1.019,
1.0189,
1.0196,
1.0181,
1.0199,
1.022,
1.0191,
1.0214,
1.0217,
1.0244,
1.0223,
1.0238,
1.0229,
1.0255,
1.0225,
1.0243,
1.0254,
1.0268,
1.0275,
1.026,
1.0254,
1.0289,
1.0274,
1.0302,
1.0291,
1.0283,
1.0312,
1.0302,
1.0306,
1.0301,
1.0312,
1.032,
1.0312,
1.0333,
1.0332,
1.0333,
1.0326,
1.0328,
1.0336,
1.036,
1.0324,
1.034,
1.0328,
1.034,
1.0346,
1.0352,
1.0358,
1.0354,
1.0345,
1.0377,
1.0352,
1.0356,
1.0373,
1.0358,
1.0383,
1.0372,
1.038,
1.0373,
1.0389,
1.0366,
1.0387,
1.0387,
1.0378,
1.0383,
1.0383,
1.0382,
1.0398,
1.0388,
1.0394,
1.0399,
1.0375,
1.038,
1.041,
1.0374,
1.0386,
1.0392,
1.0377,
1.0387,
1.039,
1.0398,
1.0382,
1.0396,
1.039,
1.041,
1.0403,
1.0397,
1.0397,
1.0389,
1.0391,
1.04,
1.0411,
1.0394,
1.0384,
1.0386,
1.0393,
1.0385,
1.0397,
1.0407,
1.0417,
1.0417,
1.0405,
1.0401,
1.0409,
1.0389,
1.0404,
1.0391,
1.0391,
1.0382,
1.0399,
1.0373,
1.0378,
1.0389,
1.0363,
1.0372,
1.0373,
1.0356,
1.0353,
1.038,
1.0361,
1.0362,
1.0388,
1.0342,
1.0386,
1.0363,
1.0385,
1.0362,
1.0362,
1.0347,
1.0385,
1.0374,
1.0327,
1.0347,
1.0352,
1.0354,
1.035,
1.0354,
1.0335,
1.0337,
1.0319,
1.0337,
1.034,
1.0308,
1.0337,
1.0304,
1.0329,
1.0305,
1.0309,
1.0335,
1.0312,
1.0301,
1.0293,
1.0299,
1.0294,
1.0281,
1.0295,
1.0258,
1.0264,
1.0284,
1.0278,
1.0277,
1.0275,
1.0272,
1.0273,
1.0256,
1.0277,
1.0256,
1.024,
1.0244,
1.0232,
1.0229,
1.0244,
1.0248,
1.0222,
1.0233,
1.0204,
1.0226,
1.0205,
1.0215,
1.0195,
1.0209,
1.022,
1.0205,
1.0196,
1.0153,
1.0189,
1.0201,
1.0158,
1.0157,
1.0164,
1.0162,
1.0162,
1.0161,
1.0133,
1.0154,
1.0126,
1.0132,
1.0127,
1.012,
1.0118,
1.0121,
1.0114,
1.0097,
1.0106,
1.0091,
1.0086,
1.0112,
1.009,
1.0067,
1.0078,
1.0084,
1.0077,
1.009,
1.0082,
1.0046,
1.0048,
1.0036,
1.0052,
1.0043,
1.003,
1.0021,
1.0044,
1.0013,
1.0019,
1.0002,
1.0012,
1.0047,
1.0023,
1.0005,
1.0003,
0.998,
0.9985,
0.996,
0.9977,
0.9956,
0.9968,
0.9959,
0.9937,
0.9937,
0.9936,
0.9952,
0.9938,
0.9924,
0.9933,
0.9912,
0.991,
0.9933,
0.989,
0.9889,
0.9886,
0.9871,
0.9872,
0.9893,
0.9908,
0.9881,
0.9846,
0.9866,
0.9853,
0.9854,
0.9867,
0.9847,
0.9819,
0.9837,
0.9851,
0.9819,
0.9821,
0.9816,
0.981,
0.9818,
0.9804,
0.981,
0.9789,
0.9813,
0.9793,
0.9773,
0.9762,
0.9767,
0.9783,
0.9771,
0.9727,
0.9729,
0.9726,
0.9744,
0.9722,
0.9711,
0.9714,
0.9683,
0.9716,
0.9692,
0.9692,
0.9697,
0.9687,
0.97,
0.9644,
0.9672,
0.9672,
0.9686,
0.9653,
0.9642,
0.9645,
0.9635,
0.9614,
0.9629,
0.9626,
0.9601,
0.9619,
0.9599,
0.9603,
0.9613,
0.9592,
0.9588,
0.9595,
0.9575,
0.9573,
0.9588,
0.9537,
0.9564,
0.9579,
0.9559,
0.9548,
0.9548,
0.9532,
0.9525,
0.9533,
0.9483,
0.9493,
0.9492,
0.9513,
0.9516,
0.9491,
0.9483,
0.9475,
0.9486,
0.9481,
0.9477,
0.9495,
0.9449,
0.9447,
0.9446,
0.9456,
0.9435,
0.9429,
0.9431,
0.9427,
0.9425,
0.9422,
0.9378,
0.9404,
0.9397,
0.9397,
0.9384,
0.9379,
0.9387,
0.9381,
0.9404,
0.937,
0.9362,
0.9364,
0.9368,
0.9351,
0.9359,
0.9354,
0.9348,
0.9349,
0.9328,
0.9331,
0.9352,
0.9346,
0.9285,
0.9332,
0.9345,
0.9322,
0.9345,
0.9302,
0.9249,
0.9307,
0.9308,
0.9272,
0.9272,
0.9274,
0.9258,
0.9282,
0.9266,
0.9293,
0.9277,
0.9272,
0.9254,
0.9264,
0.9249,
0.9245,
0.9236,
0.9237,
0.9228,
0.9231,
0.9226,
0.923,
0.9217,
0.9241,
0.9215,
0.9215,
0.921,
0.9208,
0.9214,
0.9222,
0.9176,
0.9204,
0.9215,
0.9203,
0.9201,
0.9186,
0.922,
0.9199,
0.9189,
0.9182,
0.9192,
0.9216,
0.9203,
0.9193,
0.9199,
0.9198,
0.9173,
0.9203,
0.9173,
0.9166,
0.9209,
0.9208,
0.9188,
0.919,
0.9184,
0.9191,
0.9199,
0.9174,
0.9161,
0.9179,
0.9173,
0.9181,
0.9196,
0.9168,
0.9175,
0.9172,
0.9181,
0.9167,
0.9188,
0.9177,
0.9197,
0.9171,
0.9172,
0.9162,
0.9169,
0.919,
0.9188,
0.9198,
0.9198,
0.9174,
0.917,
0.9209,
0.922,
0.9201,
0.9211,
0.9209,
0.9197,
0.9198,
0.9225,
0.9214,
0.9225,
0.9229,
0.9229,
0.9231,
0.9251,
0.9241,
0.9228,
0.9243,
0.9248,
0.9258,
0.9245,
0.925,
0.9269,
0.929,
0.9261,
0.9267,
0.9288,
0.9274,
0.9304,
0.9295,
0.9312,
0.929,
0.9314,
0.9304,
0.9334,
0.9322,
0.9344,
0.9329,
0.9341,
0.9332,
0.9324,
0.932,
0.9339,
0.9352,
0.9317,
0.9384,
0.9375,
0.9375,
0.9397,
0.9401,
0.9384,
0.9411,
0.9421,
0.9433,
0.9427,
0.9429,
0.943,
0.9415,
0.9442,
0.9455,
0.9471,
0.9466,
0.9475,
0.9466,
0.9489,
0.9457,
0.9491,
0.9508,
0.9498,
0.954,
0.9536,
0.9562,
0.9551,
0.9552,
0.9573,
0.957,
0.9564,
0.9609,
0.9594,
0.9591,
0.9608,
0.9617,
0.9616,
0.9648,
0.9641,
0.9658,
0.9673,
0.9669,
0.9664,
0.97,
0.968,
0.9733,
0.9723,
0.9749,
0.9745,
0.9762,
0.9757,
0.9795,
0.9793,
0.9793,
0.9821,
0.9813,
0.9827,
0.9814,
0.9817,
0.9842,
0.9859,
0.9879,
0.989,
0.9884,
0.9891,
0.9902,
0.9912,
0.9924,
0.9967,
0.9947,
0.9968,
0.9958,
0.9979,
0.9986,
1.0005,
0.9991,
0.9995,
1.0047,
1.0051,
1.0064,
1.0078,
1.0069,
1.0096,
1.0116,
1.0102,
1.013,
1.0112,
1.0156,
1.0173,
1.0191,
1.0158,
1.0179,
1.0207,
1.0223,
1.0209,
1.0235,
1.0246,
1.0257,
1.0276,
1.0293,
1.028,
1.0299,
1.0305,
1.0309,
1.0354,
1.0366,
1.0388,
1.0383,
1.0399,
1.0385,
1.0408,
1.0422,
1.0405,
1.0439,
1.0471,
1.0455,
1.0477,
1.0511,
1.0508,
1.0542,
1.0551,
1.0538,
1.056,
1.0583,
1.0578,
1.0593,
1.0598,
1.0583,
1.0633,
1.0653,
1.0646,
1.0645,
1.0673,
1.068,
1.0688,
1.0697,
1.0718,
1.0736,
1.0762,
1.0737,
1.0753,
1.078,
1.0794,
1.0802,
1.0824,
1.0827,
1.0822,
1.0848,
1.0854,
1.0895,
1.0888,
1.0876,
1.0915,
1.0933,
1.0953,
1.0959,
1.0963,
1.0995,
1.0981,
1.101,
1.1014,
1.1035,
1.1045,
1.103,
1.1033,
1.1097,
1.1062,
1.1091,
1.1094,
1.1116,
1.1153,
1.1154,
1.1143,
1.1208,
1.1195,
1.1184,
1.1207,
1.1226,
1.125,
1.1274,
1.1269,
1.1292,
1.1302,
1.1297,
1.1312,
1.1348,
1.1351,
1.1344,
1.1374,
1.1366,
1.1366,
1.1404,
1.1437,
1.1412,
1.1452,
1.1433,
1.1475,
1.1478,
1.146,
1.1496,
1.1507,
1.153,
1.152,
1.1566,
1.1566,
1.1566,
1.1599,
1.1614,
1.1628,
1.1626,
1.1658,
1.1637,
1.1665,
1.169,
1.1709,
1.1703,
1.1723,
1.1735,
1.1717,
1.1741,
1.1735,
1.179,
1.1801,
1.1826,
1.1822,
1.1803,
1.1828,
1.1859,
1.1842,
1.1853,
1.1878,
1.1887,
1.1923,
1.1909,
1.1953,
1.1938,
1.1939,
1.1973,
1.198,
1.2026,
1.2027,
1.2028,
1.2031,
1.2071,
1.2057,
1.207,
1.2086,
1.2085,
1.2119,
1.2131,
1.2124,
1.2144,
1.2146,
1.2152,
1.2177,
1.2177,
1.2188,
1.2208,
1.2215,
1.22,
1.2234,
1.2247,
1.225,
1.2269,
1.2296,
1.2299,
1.2314,
1.2315,
1.2333,
1.2346,
1.2324,
1.2355,
1.237,
1.2399,
1.2378,
1.2381,
1.2386,
1.244,
1.2409,
1.2461,
1.2471,
1.2429,
1.2488,
1.2492,
1.2504,
1.2492,
1.2516,
1.2538,
1.2535,
1.2529,
1.2549,
1.2567,
1.2561,
1.259,
1.2579,
1.2589,
1.2606,
1.2587,
1.2626,
1.2653,
1.2655,
1.2637,
1.2676,
1.2665,
1.27,
1.2699,
1.2692,
1.2703,
1.2738,
1.272,
1.275,
1.2773,
1.2767,
1.2771,
1.2731,
1.2792,
1.2795,
1.2825,
1.2821,
1.2795,
1.2805,
1.2824,
1.283,
1.2805,
1.2842,
1.2859,
1.286,
1.286,
1.2853,
1.2862,
1.287,
1.2901,
1.288,
1.2919,
1.2919,
1.293,
1.2898,
1.2945,
1.2933,
1.2949,
1.2962,
1.2963,
1.2964,
1.2967,
1.2961,
1.2974,
1.2985,
1.3001,
1.2973,
1.2998,
1.302,
1.3034,
1.3052,
1.3035,
1.302,
1.3019,
1.3033,
1.3044,
1.3031,
1.3031,
1.3069,
1.3034,
1.3079,
1.3063,
1.3057,
1.3097,
1.3066,
1.307,
1.3088
]
}
]
}
}