Skip to content

Instantly share code, notes, and snippets.

@1wheel
Last active June 11, 2018 00:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 1wheel/18b49093b0a41888d4ff45281cb66f66 to your computer and use it in GitHub Desktop.
Save 1wheel/18b49093b0a41888d4ff45281cb66f66 to your computer and use it in GitHub Desktop.
sell-strat

finished

https://fred.stlouisfed.org/series/NASDAQCOM

  • x tick format x round bt in tooltip x drag speed x reindex line on decade hover (don't like with zoom)

  • bloomberg colors? maybe not color brewer idk x make drag use cache

  • add bar chart to drag x make line chart update on drag x make line chart draw on load x canvas grid x add hover box back x is 14 days one week? or should it be 10 x tt off by one on hover x what doesn't percent of returns mean

  • draw connection line...

grid

  • color
  • label axis
  • key

decade

  • format data
  • link hover

window slider

console.clear()
var ttSel = d3.select('body').selectAppend('div.tooltip.tooltip-hidden')
var gDays = null
var gbT = 1.08
var gsT = .92
var gStartI = () => 0
var gEndI = () => 11910
var gT = 0
var r2 = Math.sqrt(2)
var color = d3.scaleThreshold()
.domain([1/2, 1/r2, 1, r2, 2, 2*r2])
.range(["#b35806","#f1a340","#fee0b6","#f7f7f7","#d8daeb","#998ec3","#542788"])
.domain([1/4, 1/2*r2, 1/2, 1/r2, 1, r2, 2, 2*r2, 4, 4*r2])
.range(["#7f3b08","#b35806","#e08214","#fdb863","#fee0b6","#f7f7f7","#d8daeb","#b2abd2","#8073ac","#542788","#2d004b"].reverse())
// http://tristen.ca/hcl-picker/#/clh/6/29/693508/FCDDBA
//#643803,#87541A,#A97337,#C9945B,#E5B887,#FBDEBA
// http://tristen.ca/hcl-picker/#/clh/6/231/1C5478/EDE1CF
// #1C5478,#426F92,#698AA9,#93A7BA,#BFC4C7,#EDE1CF
lcolors = '#1C5478,#426F92,#698AA9,#93A7BA,#BFC4C7,#eee'.split(',')
rcolors = '#643803,#87541A,#A97337,#C9945B,#E5B887'.split(',').reverse()
color.range(lcolors.concat(rcolors).reverse())
d3.loadData('NASDAQCOM.csv', 'grid-cache.csv', (err, res) => {
data = res[0].filter(d => d.val != '.')
drawLine = initLine()
gridCache = res[1] || []
if (gridCache.length){
gridCache.forEach(d => {
d.bT = +d.bT
d.sT = Math.floor(200*d.sT)/200
})
}
data.forEach((d, i) => {
d.v = +d.val
d.i = i
var p = i ? data[i - 1] : d
d.change = d.v/p.v
d.year = d.date.split('-')[0]
})
decadeIndex = d3.nestBy(data, d => d.year.substr(0, 3))
.map(d => ({year: d[0].year, i: d[0].i}))
decadeIndex.forEach((d, i) => {
d.ei = i != 4 ? decadeIndex[i + 1].i : data.length - 1
d.decadeIndex = i
})
yearIndex = d3.nestBy(data, d => d.year)
.map(d => ({year: d[0].year, i: d[0].i}))
// buy if +5% over last week
bVector = calcChangeVector(14, 1.06, 0)
sVector = calcChangeVector(14, .94, 1)
returns = calcReturnVector(bVector, sVector)
// save grid data
if (0){
d3.range(2, 32).forEach(day => calcGridData(day, true))
var fmt = d3.format('.5f')
gridCache.forEach(d => {
d.y1970 = fmt(d.vHash['1970'], 6)
d.y1980 = fmt(d.vHash['1980'], 6)
d.y1990 = fmt(d.vHash['1990'], 6)
d.y2000 = fmt(d.vHash['2000'], 6)
d.y2010 = fmt(d.vHash['2010'], 6)
d.y2017 = fmt(d.vHash['2017'], 6)
delete d.vHash
})
console.log('done')
}
if (!window.day2gridData) day2gridData = {}
initSlider(10)
drawDay(10)
})
function drawDay(days){
// console.time('line')
if (days == gDays) return
gDays = days
gridData = gridCache.filter(d => d.days == days)
drawGrid(days, 0, data.length - 1, null, null, 2017)
var decadeSel = d3.select('#decade-sm').html('').appendMany('div', decadeIndex)
decadeSel.each(function(d){
var sel = d3.select(this)
var year = d.year.replace('71', '70')
sel.append('div.year-label').text(year + 's')
drawGrid(days, d.i, d.ei, sel, d, year)
})
// console.time('line')
drawLine(gDays, gbT, gsT)
// console.timeEnd('line')
}
function initSlider(days){
var sel = d3.select('#slider-span')
var scale = d3.scaleLinear()
.clamp(true)
.domain([-50, 50])
.range([2, 31])
sel
.call(d3.drag()
.subject(() => ({x: scale.invert(days), y: 0}))
.on('drag', () => {
days = Math.round(scale(d3.event.x))
sel.text(days)
drawDay(days)
}))
// debugger
var boxSel = d3.select('#slider-chart').html('').st({height: 0})
var c = d3.conventions({
sel: boxSel.append('div').st({position: 'relative', top: -25, left: -15}),
width: 9*31,
height: 30
})
c.x.domain([2, 31])
var s = c.x(3)
console.log( _.filter(gridCache, {bT: gbT, sT: gsT}))
var slideRectSel = c.svg.append('g').appendMany('rect.slider-rect', _.filter(gridCache, {bT: gbT, sT: gsT}))
.translate(d => c.x(d.days), 0)
.at({width: s - 1, height: s, fill: d => color(d.y2017/70)})
// .call(d3.attachTooltip)
var connectorPath = c.svg.append('path')
.at({stroke: '#000', strokeWidth: 2, fill: 'none'})
var hSpace = 13
var boxX = 123
window.updateDayConnector = function(){
connectorPath.at({d: [
'M', c.x(gDays) + s/2, 0,
'v', -hSpace/2,
'H', boxX,
'v', -hSpace/2
].join(' ')})
slideRectSel
.classed('active', d => d.days == gDays)
.filter(d => d.days == gDays)
.raise()
}
c.svg.append('rect')
.at({width: c.width + 9, height: c.height + 20, fillOpacity: 0, y: -35})
.on('mousemove', function(){
var days = Math.round(c.x.invert(d3.mouse(this)[0]))
days = Math.min(31, days)
drawDay(days)
sel.text(days)
})
}
function calcGridData(days, isAddToCache){
bVectors = d3.range(1.01, 1.10, .005).map(d => calcChangeVector(days, d, 0))
sVectors = d3.range(.99, .90, -.005) .map(d => calcChangeVector(days, d, 1))
gridData = d3.cross(bVectors, sVectors).map(([b, s]) => {
var v = calcReturnDecades(b, s)
var vHash = {
1970: v[0]/100,
1980: v[1]/v[0],
1990: v[2]/v[1],
2000: v[3]/v[2],
2010: v[4]/v[3],
2017: v[4]/100,
}
var bT = b.meta.changeTarget
var sT = s.meta.changeTarget
if (isAddToCache) gridCache.push({days, bT, sT, vHash})
return {v, b, s, vHash, bT, sT}
})
return gridData
}
function pctFmtLng(d){
return d3.format('+.1f')((d - 1)*100) + '%'
}
function drawGrid(days, startI, endI, sel, decadeObj, year){
var isLeftAxis = year == 2017 || year == 1970
sel = sel || d3.select('#grid').html('')
var keySel = sel.append('div')
var c = d3.conventions({
sel: sel.append('div'),
height: 19*9,
width: 19*9,
margin: {left: isLeftAxis ? 20: 10, right: 10, top: 0},
layers: 'cs'
})
c.x.domain([1.01, 1.10 - .005])
c.y.domain([.99, .90])
function pctFmt(d){
return d3.format('+.0f')((d - 1)*100) + '%'
}
c.xAxis.tickValues([1.02, 1.04, 1.06, 1.08, 1.10]).tickFormat(pctFmt)
c.yAxis.tickValues([.98, .96, .94, .92, .90]).tickFormat(pctFmt)
d3.drawAxis(c)
if (!isLeftAxis) c.svg.selectAll('.y').remove()
var startVal = data[startI].v
var endVal = data[endI].v
var stockReturn = endVal/startVal
if (year == 2017){
c.svg.append('text.axis')
.st({
fontSize: 12,
fontWeight: 500
})
.translate([-30, -25])
.tspans('Sell when the market//falls by this much...'.split('//'))
c.svg.append('text.axis')
.st({
fontSize: 12,
fontWeight: 500,
textAnchor: 'end'
})
.translate([c.width + 10, c.height + 30])
.tspans('...Buy when the market//rises by this much'.split('//'))
keySel.st({marginBottom: 50, marginLeft: -10, width: 215})
keySel.append('div').append('b').text('Returns v. NASDAQ').st({marginLeft: 0, position: 'relative', top: 1})
keySel.appendMany('span', [1/4, 1/2, 1, 2, 4])
.text(d => d == 1/4 ? '1/4' : d == 1/2 ? '1/2' : d)
.text(d => d3.format('.0%')(d))
.st({background: color, width: 42, display: 'inline-block', textAlign: 'center', color: (d, i) => d == 1 ? '#888' : '#fff', fontSize: 12})
}
var s = c.width/19
var hoverRect = c.svg.append('rect.hover-rect')
.at({width: s, height: s, strokeWidth: 3, fill: 'none', stroke: '#000'})
.translate(-100000, 0)
.datum({fn: (bT, sT) => hoverRect.translate([c.x(bT), c.y(sT) - s])})
var prevPosStr = ''
c.svg.append('rect')
.at({width: c.width + s, height: c.height, fillOpacity: 0})
.on('mousemove', function(){
var [x, y] = d3.mouse(this)
var bT = gbT = Math.floor(200*c.x.invert(x))/200
var sT = bsT = Math.floor(200*c.y.invert(y + s))/200
console.log(bT, sT)
var posStr = bT + '' + sT
if (prevPosStr == posStr) return
prevPosStr = posStr
var d = _.find(gridData, {bT, sT})
ttSel.html([
` Buy after ${days} day change of ` + pctFmtLng(bT),
`Sell after ${days} day change of ` + pctFmtLng(sT),
`<b>` + d3.format('.2%')(d['y' + year]/stockReturn) + ' </b> of NASDAQ',
].join('<br>'))
// console.log(d['y' + year], stockReturn)
drawLine(days, bT, sT, startI, endI)
})
.call(d3.attachTooltip)
var ctx = c.layers[0]
// return
gridData.forEach(d => {
ctx.beginPath()
ctx.fillStyle = color(d['y' + year]/stockReturn)
ctx.rect(c.x(d.bT), c.y(d.sT) - s, s, s)
ctx.fill()
})
}
function calcChangeVector(numDays, changeTarget, isLessThan){
var rv = data.map((d, i) => {
if (i < numDays) return false
var change = d.v/data[i - numDays].v
return isLessThan ? change < changeTarget : change > changeTarget
})
rv.meta = {numDays, changeTarget, isLessThan}
return rv
}
function calcReturn(bVector, sVector){
var isHolding = true
var v = 100
data.forEach((d, i) => {
if (isHolding) v = v*d.change
if (isHolding && sVector[i]){
isHolding = false
} else if (!isHolding && bVector[i]){
isHolding = true
}
})
return v
}
function calcReturnDecades(bVector, sVector){
var isHolding = true
var v = 100
var rv = []
data.forEach((d, i) => {
if (isHolding) v = v*d.change
if (isHolding && sVector[i]){
isHolding = false
} else if (!isHolding && bVector[i]){
isHolding = true
}
if (i == 2248 || i == 4776 || i == 7304 || i == 9819 || i == 11910) rv.push(v)
})
return rv
}
function calcReturnVector(bVector, sVector){
var isHolding = true
var v = 100
var changeIndices = [0]
var rv = data.map((d, i) => {
if (isHolding) v = v*d.change
var changed = true
if (isHolding && sVector[i]){
isHolding = false
} else if (!isHolding && bVector[i]){
isHolding = true
} else {
changed = false
}
if (i == 0) changed = true
if (i == data.length - 1) changed = true
if (changed) changeIndices.push(i)
return {v, i, isHolding, changed}
})
rv.meta = {bVector, sVector, changeIndices}
return rv
}
/**
* @license
* Lodash lodash.com/license | Underscore.js 1.8.3 underscorejs.org/LICENSE
*/
;(function(){function n(n,t){return n.set(t[0],t[1]),n}function t(n,t){return n.add(t),n}function r(n,t,r){switch(r.length){case 0:return n.call(t);case 1:return n.call(t,r[0]);case 2:return n.call(t,r[0],r[1]);case 3:return n.call(t,r[0],r[1],r[2])}return n.apply(t,r)}function e(n,t,r,e){for(var u=-1,i=null==n?0:n.length;++u<i;){var o=n[u];t(e,o,r(o),n)}return e}function u(n,t){for(var r=-1,e=null==n?0:n.length;++r<e&&false!==t(n[r],r,n););return n}function i(n,t){for(var r=null==n?0:n.length;r--&&false!==t(n[r],r,n););
return n}function o(n,t){for(var r=-1,e=null==n?0:n.length;++r<e;)if(!t(n[r],r,n))return false;return true}function f(n,t){for(var r=-1,e=null==n?0:n.length,u=0,i=[];++r<e;){var o=n[r];t(o,r,n)&&(i[u++]=o)}return i}function c(n,t){return!(null==n||!n.length)&&-1<d(n,t,0)}function a(n,t,r){for(var e=-1,u=null==n?0:n.length;++e<u;)if(r(t,n[e]))return true;return false}function l(n,t){for(var r=-1,e=null==n?0:n.length,u=Array(e);++r<e;)u[r]=t(n[r],r,n);return u}function s(n,t){for(var r=-1,e=t.length,u=n.length;++r<e;)n[u+r]=t[r];
return n}function h(n,t,r,e){var u=-1,i=null==n?0:n.length;for(e&&i&&(r=n[++u]);++u<i;)r=t(r,n[u],u,n);return r}function p(n,t,r,e){var u=null==n?0:n.length;for(e&&u&&(r=n[--u]);u--;)r=t(r,n[u],u,n);return r}function _(n,t){for(var r=-1,e=null==n?0:n.length;++r<e;)if(t(n[r],r,n))return true;return false}function v(n,t,r){var e;return r(n,function(n,r,u){if(t(n,r,u))return e=r,false}),e}function g(n,t,r,e){var u=n.length;for(r+=e?1:-1;e?r--:++r<u;)if(t(n[r],r,n))return r;return-1}function d(n,t,r){if(t===t)n:{
--r;for(var e=n.length;++r<e;)if(n[r]===t){n=r;break n}n=-1}else n=g(n,b,r);return n}function y(n,t,r,e){--r;for(var u=n.length;++r<u;)if(e(n[r],t))return r;return-1}function b(n){return n!==n}function x(n,t){var r=null==n?0:n.length;return r?k(n,t)/r:P}function j(n){return function(t){return null==t?F:t[n]}}function w(n){return function(t){return null==n?F:n[t]}}function m(n,t,r,e,u){return u(n,function(n,u,i){r=e?(e=false,n):t(r,n,u,i)}),r}function A(n,t){var r=n.length;for(n.sort(t);r--;)n[r]=n[r].c;
return n}function k(n,t){for(var r,e=-1,u=n.length;++e<u;){var i=t(n[e]);i!==F&&(r=r===F?i:r+i)}return r}function E(n,t){for(var r=-1,e=Array(n);++r<n;)e[r]=t(r);return e}function O(n,t){return l(t,function(t){return[t,n[t]]})}function S(n){return function(t){return n(t)}}function I(n,t){return l(t,function(t){return n[t]})}function R(n,t){return n.has(t)}function z(n,t){for(var r=-1,e=n.length;++r<e&&-1<d(t,n[r],0););return r}function W(n,t){for(var r=n.length;r--&&-1<d(t,n[r],0););return r}function B(n){
return"\\"+Tn[n]}function L(n){var t=-1,r=Array(n.size);return n.forEach(function(n,e){r[++t]=[e,n]}),r}function U(n,t){return function(r){return n(t(r))}}function C(n,t){for(var r=-1,e=n.length,u=0,i=[];++r<e;){var o=n[r];o!==t&&"__lodash_placeholder__"!==o||(n[r]="__lodash_placeholder__",i[u++]=r)}return i}function D(n){var t=-1,r=Array(n.size);return n.forEach(function(n){r[++t]=n}),r}function M(n){var t=-1,r=Array(n.size);return n.forEach(function(n){r[++t]=[n,n]}),r}function T(n){if(Bn.test(n)){
for(var t=zn.lastIndex=0;zn.test(n);)++t;n=t}else n=tt(n);return n}function $(n){return Bn.test(n)?n.match(zn)||[]:n.split("")}var F,N=1/0,P=NaN,Z=[["ary",128],["bind",1],["bindKey",2],["curry",8],["curryRight",16],["flip",512],["partial",32],["partialRight",64],["rearg",256]],q=/\b__p\+='';/g,V=/\b(__p\+=)''\+/g,K=/(__e\(.*?\)|\b__t\))\+'';/g,G=/&(?:amp|lt|gt|quot|#39);/g,H=/[&<>"']/g,J=RegExp(G.source),Y=RegExp(H.source),Q=/<%-([\s\S]+?)%>/g,X=/<%([\s\S]+?)%>/g,nn=/<%=([\s\S]+?)%>/g,tn=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,rn=/^\w*$/,en=/^\./,un=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,on=/[\\^$.*+?()[\]{}|]/g,fn=RegExp(on.source),cn=/^\s+|\s+$/g,an=/^\s+/,ln=/\s+$/,sn=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,hn=/\{\n\/\* \[wrapped with (.+)\] \*/,pn=/,? & /,_n=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,vn=/\\(\\)?/g,gn=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,dn=/\w*$/,yn=/^[-+]0x[0-9a-f]+$/i,bn=/^0b[01]+$/i,xn=/^\[object .+?Constructor\]$/,jn=/^0o[0-7]+$/i,wn=/^(?:0|[1-9]\d*)$/,mn=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,An=/($^)/,kn=/['\n\r\u2028\u2029\\]/g,En="[\\ufe0e\\ufe0f]?(?:[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]|\\ud83c[\\udffb-\\udfff])?(?:\\u200d(?:[^\\ud800-\\udfff]|(?:\\ud83c[\\udde6-\\uddff]){2}|[\\ud800-\\udbff][\\udc00-\\udfff])[\\ufe0e\\ufe0f]?(?:[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]|\\ud83c[\\udffb-\\udfff])?)*",On="(?:[\\u2700-\\u27bf]|(?:\\ud83c[\\udde6-\\uddff]){2}|[\\ud800-\\udbff][\\udc00-\\udfff])"+En,Sn="(?:[^\\ud800-\\udfff][\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]?|[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]|(?:\\ud83c[\\udde6-\\uddff]){2}|[\\ud800-\\udbff][\\udc00-\\udfff]|[\\ud800-\\udfff])",In=RegExp("['\u2019]","g"),Rn=RegExp("[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]","g"),zn=RegExp("\\ud83c[\\udffb-\\udfff](?=\\ud83c[\\udffb-\\udfff])|"+Sn+En,"g"),Wn=RegExp(["[A-Z\\xc0-\\xd6\\xd8-\\xde]?[a-z\\xdf-\\xf6\\xf8-\\xff]+(?:['\u2019](?:d|ll|m|re|s|t|ve))?(?=[\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000]|[A-Z\\xc0-\\xd6\\xd8-\\xde]|$)|(?:[A-Z\\xc0-\\xd6\\xd8-\\xde]|[^\\ud800-\\udfff\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000\\d+\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde])+(?:['\u2019](?:D|LL|M|RE|S|T|VE))?(?=[\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000]|[A-Z\\xc0-\\xd6\\xd8-\\xde](?:[a-z\\xdf-\\xf6\\xf8-\\xff]|[^\\ud800-\\udfff\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000\\d+\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde])|$)|[A-Z\\xc0-\\xd6\\xd8-\\xde]?(?:[a-z\\xdf-\\xf6\\xf8-\\xff]|[^\\ud800-\\udfff\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000\\d+\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde])+(?:['\u2019](?:d|ll|m|re|s|t|ve))?|[A-Z\\xc0-\\xd6\\xd8-\\xde]+(?:['\u2019](?:D|LL|M|RE|S|T|VE))?|\\d*(?:(?:1ST|2ND|3RD|(?![123])\\dTH)\\b)|\\d*(?:(?:1st|2nd|3rd|(?![123])\\dth)\\b)|\\d+",On].join("|"),"g"),Bn=RegExp("[\\u200d\\ud800-\\udfff\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff\\ufe0e\\ufe0f]"),Ln=/[a-z][A-Z]|[A-Z]{2,}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,Un="Array Buffer DataView Date Error Float32Array Float64Array Function Int8Array Int16Array Int32Array Map Math Object Promise RegExp Set String Symbol TypeError Uint8Array Uint8ClampedArray Uint16Array Uint32Array WeakMap _ clearTimeout isFinite parseInt setTimeout".split(" "),Cn={};
Cn["[object Float32Array]"]=Cn["[object Float64Array]"]=Cn["[object Int8Array]"]=Cn["[object Int16Array]"]=Cn["[object Int32Array]"]=Cn["[object Uint8Array]"]=Cn["[object Uint8ClampedArray]"]=Cn["[object Uint16Array]"]=Cn["[object Uint32Array]"]=true,Cn["[object Arguments]"]=Cn["[object Array]"]=Cn["[object ArrayBuffer]"]=Cn["[object Boolean]"]=Cn["[object DataView]"]=Cn["[object Date]"]=Cn["[object Error]"]=Cn["[object Function]"]=Cn["[object Map]"]=Cn["[object Number]"]=Cn["[object Object]"]=Cn["[object RegExp]"]=Cn["[object Set]"]=Cn["[object String]"]=Cn["[object WeakMap]"]=false;
var Dn={};Dn["[object Arguments]"]=Dn["[object Array]"]=Dn["[object ArrayBuffer]"]=Dn["[object DataView]"]=Dn["[object Boolean]"]=Dn["[object Date]"]=Dn["[object Float32Array]"]=Dn["[object Float64Array]"]=Dn["[object Int8Array]"]=Dn["[object Int16Array]"]=Dn["[object Int32Array]"]=Dn["[object Map]"]=Dn["[object Number]"]=Dn["[object Object]"]=Dn["[object RegExp]"]=Dn["[object Set]"]=Dn["[object String]"]=Dn["[object Symbol]"]=Dn["[object Uint8Array]"]=Dn["[object Uint8ClampedArray]"]=Dn["[object Uint16Array]"]=Dn["[object Uint32Array]"]=true,
Dn["[object Error]"]=Dn["[object Function]"]=Dn["[object WeakMap]"]=false;var Mn,Tn={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},$n=parseFloat,Fn=parseInt,Nn=typeof global=="object"&&global&&global.Object===Object&&global,Pn=typeof self=="object"&&self&&self.Object===Object&&self,Zn=Nn||Pn||Function("return this")(),qn=typeof exports=="object"&&exports&&!exports.nodeType&&exports,Vn=qn&&typeof module=="object"&&module&&!module.nodeType&&module,Kn=Vn&&Vn.exports===qn,Gn=Kn&&Nn.process;
n:{try{Mn=Gn&&Gn.binding&&Gn.binding("util");break n}catch(n){}Mn=void 0}var Hn=Mn&&Mn.isArrayBuffer,Jn=Mn&&Mn.isDate,Yn=Mn&&Mn.isMap,Qn=Mn&&Mn.isRegExp,Xn=Mn&&Mn.isSet,nt=Mn&&Mn.isTypedArray,tt=j("length"),rt=w({"\xc0":"A","\xc1":"A","\xc2":"A","\xc3":"A","\xc4":"A","\xc5":"A","\xe0":"a","\xe1":"a","\xe2":"a","\xe3":"a","\xe4":"a","\xe5":"a","\xc7":"C","\xe7":"c","\xd0":"D","\xf0":"d","\xc8":"E","\xc9":"E","\xca":"E","\xcb":"E","\xe8":"e","\xe9":"e","\xea":"e","\xeb":"e","\xcc":"I","\xcd":"I","\xce":"I",
"\xcf":"I","\xec":"i","\xed":"i","\xee":"i","\xef":"i","\xd1":"N","\xf1":"n","\xd2":"O","\xd3":"O","\xd4":"O","\xd5":"O","\xd6":"O","\xd8":"O","\xf2":"o","\xf3":"o","\xf4":"o","\xf5":"o","\xf6":"o","\xf8":"o","\xd9":"U","\xda":"U","\xdb":"U","\xdc":"U","\xf9":"u","\xfa":"u","\xfb":"u","\xfc":"u","\xdd":"Y","\xfd":"y","\xff":"y","\xc6":"Ae","\xe6":"ae","\xde":"Th","\xfe":"th","\xdf":"ss","\u0100":"A","\u0102":"A","\u0104":"A","\u0101":"a","\u0103":"a","\u0105":"a","\u0106":"C","\u0108":"C","\u010a":"C",
"\u010c":"C","\u0107":"c","\u0109":"c","\u010b":"c","\u010d":"c","\u010e":"D","\u0110":"D","\u010f":"d","\u0111":"d","\u0112":"E","\u0114":"E","\u0116":"E","\u0118":"E","\u011a":"E","\u0113":"e","\u0115":"e","\u0117":"e","\u0119":"e","\u011b":"e","\u011c":"G","\u011e":"G","\u0120":"G","\u0122":"G","\u011d":"g","\u011f":"g","\u0121":"g","\u0123":"g","\u0124":"H","\u0126":"H","\u0125":"h","\u0127":"h","\u0128":"I","\u012a":"I","\u012c":"I","\u012e":"I","\u0130":"I","\u0129":"i","\u012b":"i","\u012d":"i",
"\u012f":"i","\u0131":"i","\u0134":"J","\u0135":"j","\u0136":"K","\u0137":"k","\u0138":"k","\u0139":"L","\u013b":"L","\u013d":"L","\u013f":"L","\u0141":"L","\u013a":"l","\u013c":"l","\u013e":"l","\u0140":"l","\u0142":"l","\u0143":"N","\u0145":"N","\u0147":"N","\u014a":"N","\u0144":"n","\u0146":"n","\u0148":"n","\u014b":"n","\u014c":"O","\u014e":"O","\u0150":"O","\u014d":"o","\u014f":"o","\u0151":"o","\u0154":"R","\u0156":"R","\u0158":"R","\u0155":"r","\u0157":"r","\u0159":"r","\u015a":"S","\u015c":"S",
"\u015e":"S","\u0160":"S","\u015b":"s","\u015d":"s","\u015f":"s","\u0161":"s","\u0162":"T","\u0164":"T","\u0166":"T","\u0163":"t","\u0165":"t","\u0167":"t","\u0168":"U","\u016a":"U","\u016c":"U","\u016e":"U","\u0170":"U","\u0172":"U","\u0169":"u","\u016b":"u","\u016d":"u","\u016f":"u","\u0171":"u","\u0173":"u","\u0174":"W","\u0175":"w","\u0176":"Y","\u0177":"y","\u0178":"Y","\u0179":"Z","\u017b":"Z","\u017d":"Z","\u017a":"z","\u017c":"z","\u017e":"z","\u0132":"IJ","\u0133":"ij","\u0152":"Oe","\u0153":"oe",
"\u0149":"'n","\u017f":"s"}),et=w({"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;"}),ut=w({"&amp;":"&","&lt;":"<","&gt;":">","&quot;":'"',"&#39;":"'"}),it=function w(En){function On(n){if(xu(n)&&!af(n)&&!(n instanceof Mn)){if(n instanceof zn)return n;if(ci.call(n,"__wrapped__"))return Pe(n)}return new zn(n)}function Sn(){}function zn(n,t){this.__wrapped__=n,this.__actions__=[],this.__chain__=!!t,this.__index__=0,this.__values__=F}function Mn(n){this.__wrapped__=n,this.__actions__=[],this.__dir__=1,
this.__filtered__=false,this.__iteratees__=[],this.__takeCount__=4294967295,this.__views__=[]}function Tn(n){var t=-1,r=null==n?0:n.length;for(this.clear();++t<r;){var e=n[t];this.set(e[0],e[1])}}function Nn(n){var t=-1,r=null==n?0:n.length;for(this.clear();++t<r;){var e=n[t];this.set(e[0],e[1])}}function Pn(n){var t=-1,r=null==n?0:n.length;for(this.clear();++t<r;){var e=n[t];this.set(e[0],e[1])}}function qn(n){var t=-1,r=null==n?0:n.length;for(this.__data__=new Pn;++t<r;)this.add(n[t])}function Vn(n){
this.size=(this.__data__=new Nn(n)).size}function Gn(n,t){var r,e=af(n),u=!e&&cf(n),i=!e&&!u&&sf(n),o=!e&&!u&&!i&&gf(n),u=(e=e||u||i||o)?E(n.length,ri):[],f=u.length;for(r in n)!t&&!ci.call(n,r)||e&&("length"==r||i&&("offset"==r||"parent"==r)||o&&("buffer"==r||"byteLength"==r||"byteOffset"==r)||Re(r,f))||u.push(r);return u}function tt(n){var t=n.length;return t?n[cr(0,t-1)]:F}function ot(n,t){return Te(Mr(n),gt(t,0,n.length))}function ft(n){return Te(Mr(n))}function ct(n,t,r){(r===F||hu(n[t],r))&&(r!==F||t in n)||_t(n,t,r);
}function at(n,t,r){var e=n[t];ci.call(n,t)&&hu(e,r)&&(r!==F||t in n)||_t(n,t,r)}function lt(n,t){for(var r=n.length;r--;)if(hu(n[r][0],t))return r;return-1}function st(n,t,r,e){return oo(n,function(n,u,i){t(e,n,r(n),i)}),e}function ht(n,t){return n&&Tr(t,Lu(t),n)}function pt(n,t){return n&&Tr(t,Uu(t),n)}function _t(n,t,r){"__proto__"==t&&Ei?Ei(n,t,{configurable:true,enumerable:true,value:r,writable:true}):n[t]=r}function vt(n,t){for(var r=-1,e=t.length,u=Hu(e),i=null==n;++r<e;)u[r]=i?F:Wu(n,t[r]);return u;
}function gt(n,t,r){return n===n&&(r!==F&&(n=n<=r?n:r),t!==F&&(n=n>=t?n:t)),n}function dt(n,t,r,e,i,o){var f,c=1&t,a=2&t,l=4&t;if(r&&(f=i?r(n,e,i,o):r(n)),f!==F)return f;if(!bu(n))return n;if(e=af(n)){if(f=Ee(n),!c)return Mr(n,f)}else{var s=yo(n),h="[object Function]"==s||"[object GeneratorFunction]"==s;if(sf(n))return Wr(n,c);if("[object Object]"==s||"[object Arguments]"==s||h&&!i){if(f=a||h?{}:Oe(n),!c)return a?Fr(n,pt(f,n)):$r(n,ht(f,n))}else{if(!Dn[s])return i?n:{};f=Se(n,s,dt,c)}}if(o||(o=new Vn),
i=o.get(n))return i;o.set(n,f);var a=l?a?ye:de:a?Uu:Lu,p=e?F:a(n);return u(p||n,function(e,u){p&&(u=e,e=n[u]),at(f,u,dt(e,t,r,u,n,o))}),f}function yt(n){var t=Lu(n);return function(r){return bt(r,n,t)}}function bt(n,t,r){var e=r.length;if(null==n)return!e;for(n=ni(n);e--;){var u=r[e],i=t[u],o=n[u];if(o===F&&!(u in n)||!i(o))return false}return true}function xt(n,t,r){if(typeof n!="function")throw new ei("Expected a function");return jo(function(){n.apply(F,r)},t)}function jt(n,t,r,e){var u=-1,i=c,o=true,f=n.length,s=[],h=t.length;
if(!f)return s;r&&(t=l(t,S(r))),e?(i=a,o=false):200<=t.length&&(i=R,o=false,t=new qn(t));n:for(;++u<f;){var p=n[u],_=null==r?p:r(p),p=e||0!==p?p:0;if(o&&_===_){for(var v=h;v--;)if(t[v]===_)continue n;s.push(p)}else i(t,_,e)||s.push(p)}return s}function wt(n,t){var r=true;return oo(n,function(n,e,u){return r=!!t(n,e,u)}),r}function mt(n,t,r){for(var e=-1,u=n.length;++e<u;){var i=n[e],o=t(i);if(null!=o&&(f===F?o===o&&!Au(o):r(o,f)))var f=o,c=i}return c}function At(n,t){var r=[];return oo(n,function(n,e,u){
t(n,e,u)&&r.push(n)}),r}function kt(n,t,r,e,u){var i=-1,o=n.length;for(r||(r=Ie),u||(u=[]);++i<o;){var f=n[i];0<t&&r(f)?1<t?kt(f,t-1,r,e,u):s(u,f):e||(u[u.length]=f)}return u}function Et(n,t){return n&&co(n,t,Lu)}function Ot(n,t){return n&&ao(n,t,Lu)}function St(n,t){return f(t,function(t){return gu(n[t])})}function It(n,t){t=Rr(t,n);for(var r=0,e=t.length;null!=n&&r<e;)n=n[$e(t[r++])];return r&&r==e?n:F}function Rt(n,t,r){return t=t(n),af(n)?t:s(t,r(n))}function zt(n){if(null==n)n=n===F?"[object Undefined]":"[object Null]";else if(ki&&ki in ni(n)){
var t=ci.call(n,ki),r=n[ki];try{n[ki]=F;var e=true}catch(n){}var u=si.call(n);e&&(t?n[ki]=r:delete n[ki]),n=u}else n=si.call(n);return n}function Wt(n,t){return n>t}function Bt(n,t){return null!=n&&ci.call(n,t)}function Lt(n,t){return null!=n&&t in ni(n)}function Ut(n,t,r){for(var e=r?a:c,u=n[0].length,i=n.length,o=i,f=Hu(i),s=1/0,h=[];o--;){var p=n[o];o&&t&&(p=l(p,S(t))),s=Mi(p.length,s),f[o]=!r&&(t||120<=u&&120<=p.length)?new qn(o&&p):F}var p=n[0],_=-1,v=f[0];n:for(;++_<u&&h.length<s;){var g=p[_],d=t?t(g):g,g=r||0!==g?g:0;
if(v?!R(v,d):!e(h,d,r)){for(o=i;--o;){var y=f[o];if(y?!R(y,d):!e(n[o],d,r))continue n}v&&v.push(d),h.push(g)}}return h}function Ct(n,t,r){var e={};return Et(n,function(n,u,i){t(e,r(n),u,i)}),e}function Dt(n,t,e){return t=Rr(t,n),n=2>t.length?n:It(n,vr(t,0,-1)),t=null==n?n:n[$e(Ge(t))],null==t?F:r(t,n,e)}function Mt(n){return xu(n)&&"[object Arguments]"==zt(n)}function Tt(n){return xu(n)&&"[object ArrayBuffer]"==zt(n)}function $t(n){return xu(n)&&"[object Date]"==zt(n)}function Ft(n,t,r,e,u){if(n===t)t=true;else if(null==n||null==t||!xu(n)&&!xu(t))t=n!==n&&t!==t;else n:{
var i=af(n),o=af(t),f=i?"[object Array]":yo(n),c=o?"[object Array]":yo(t),f="[object Arguments]"==f?"[object Object]":f,c="[object Arguments]"==c?"[object Object]":c,a="[object Object]"==f,o="[object Object]"==c;if((c=f==c)&&sf(n)){if(!sf(t)){t=false;break n}i=true,a=false}if(c&&!a)u||(u=new Vn),t=i||gf(n)?_e(n,t,r,e,Ft,u):ve(n,t,f,r,e,Ft,u);else{if(!(1&r)&&(i=a&&ci.call(n,"__wrapped__"),f=o&&ci.call(t,"__wrapped__"),i||f)){n=i?n.value():n,t=f?t.value():t,u||(u=new Vn),t=Ft(n,t,r,e,u);break n}if(c)t:if(u||(u=new Vn),
i=1&r,f=de(n),o=f.length,c=de(t).length,o==c||i){for(a=o;a--;){var l=f[a];if(!(i?l in t:ci.call(t,l))){t=false;break t}}if((c=u.get(n))&&u.get(t))t=c==t;else{c=true,u.set(n,t),u.set(t,n);for(var s=i;++a<o;){var l=f[a],h=n[l],p=t[l];if(e)var _=i?e(p,h,l,t,n,u):e(h,p,l,n,t,u);if(_===F?h!==p&&!Ft(h,p,r,e,u):!_){c=false;break}s||(s="constructor"==l)}c&&!s&&(r=n.constructor,e=t.constructor,r!=e&&"constructor"in n&&"constructor"in t&&!(typeof r=="function"&&r instanceof r&&typeof e=="function"&&e instanceof e)&&(c=false)),
u.delete(n),u.delete(t),t=c}}else t=false;else t=false}}return t}function Nt(n){return xu(n)&&"[object Map]"==yo(n)}function Pt(n,t,r,e){var u=r.length,i=u,o=!e;if(null==n)return!i;for(n=ni(n);u--;){var f=r[u];if(o&&f[2]?f[1]!==n[f[0]]:!(f[0]in n))return false}for(;++u<i;){var f=r[u],c=f[0],a=n[c],l=f[1];if(o&&f[2]){if(a===F&&!(c in n))return false}else{if(f=new Vn,e)var s=e(a,l,c,n,t,f);if(s===F?!Ft(l,a,3,e,f):!s)return false}}return true}function Zt(n){return!(!bu(n)||li&&li in n)&&(gu(n)?_i:xn).test(Fe(n))}function qt(n){
return xu(n)&&"[object RegExp]"==zt(n)}function Vt(n){return xu(n)&&"[object Set]"==yo(n)}function Kt(n){return xu(n)&&yu(n.length)&&!!Cn[zt(n)]}function Gt(n){return typeof n=="function"?n:null==n?Nu:typeof n=="object"?af(n)?Xt(n[0],n[1]):Qt(n):Vu(n)}function Ht(n){if(!Le(n))return Ci(n);var t,r=[];for(t in ni(n))ci.call(n,t)&&"constructor"!=t&&r.push(t);return r}function Jt(n,t){return n<t}function Yt(n,t){var r=-1,e=pu(n)?Hu(n.length):[];return oo(n,function(n,u,i){e[++r]=t(n,u,i)}),e}function Qt(n){
var t=me(n);return 1==t.length&&t[0][2]?Ue(t[0][0],t[0][1]):function(r){return r===n||Pt(r,n,t)}}function Xt(n,t){return We(n)&&t===t&&!bu(t)?Ue($e(n),t):function(r){var e=Wu(r,n);return e===F&&e===t?Bu(r,n):Ft(t,e,3)}}function nr(n,t,r,e,u){n!==t&&co(t,function(i,o){if(bu(i)){u||(u=new Vn);var f=u,c=n[o],a=t[o],l=f.get(a);if(l)ct(n,o,l);else{var l=e?e(c,a,o+"",n,t,f):F,s=l===F;if(s){var h=af(a),p=!h&&sf(a),_=!h&&!p&&gf(a),l=a;h||p||_?af(c)?l=c:_u(c)?l=Mr(c):p?(s=false,l=Wr(a,true)):_?(s=false,l=Lr(a,true)):l=[]:wu(a)||cf(a)?(l=c,
cf(c)?l=Ru(c):(!bu(c)||r&&gu(c))&&(l=Oe(a))):s=false}s&&(f.set(a,l),nr(l,a,r,e,f),f.delete(a)),ct(n,o,l)}}else f=e?e(n[o],i,o+"",n,t,u):F,f===F&&(f=i),ct(n,o,f)},Uu)}function tr(n,t){var r=n.length;if(r)return t+=0>t?r:0,Re(t,r)?n[t]:F}function rr(n,t,r){var e=-1;return t=l(t.length?t:[Nu],S(je())),n=Yt(n,function(n){return{a:l(t,function(t){return t(n)}),b:++e,c:n}}),A(n,function(n,t){var e;n:{e=-1;for(var u=n.a,i=t.a,o=u.length,f=r.length;++e<o;){var c=Ur(u[e],i[e]);if(c){e=e>=f?c:c*("desc"==r[e]?-1:1);
break n}}e=n.b-t.b}return e})}function er(n,t){return ur(n,t,function(t,r){return Bu(n,r)})}function ur(n,t,r){for(var e=-1,u=t.length,i={};++e<u;){var o=t[e],f=It(n,o);r(f,o)&&pr(i,Rr(o,n),f)}return i}function ir(n){return function(t){return It(t,n)}}function or(n,t,r,e){var u=e?y:d,i=-1,o=t.length,f=n;for(n===t&&(t=Mr(t)),r&&(f=l(n,S(r)));++i<o;)for(var c=0,a=t[i],a=r?r(a):a;-1<(c=u(f,a,c,e));)f!==n&&wi.call(f,c,1),wi.call(n,c,1);return n}function fr(n,t){for(var r=n?t.length:0,e=r-1;r--;){var u=t[r];
if(r==e||u!==i){var i=u;Re(u)?wi.call(n,u,1):mr(n,u)}}}function cr(n,t){return n+zi(Fi()*(t-n+1))}function ar(n,t){var r="";if(!n||1>t||9007199254740991<t)return r;do t%2&&(r+=n),(t=zi(t/2))&&(n+=n);while(t);return r}function lr(n,t){return wo(Ce(n,t,Nu),n+"")}function sr(n){return tt(Du(n))}function hr(n,t){var r=Du(n);return Te(r,gt(t,0,r.length))}function pr(n,t,r,e){if(!bu(n))return n;t=Rr(t,n);for(var u=-1,i=t.length,o=i-1,f=n;null!=f&&++u<i;){var c=$e(t[u]),a=r;if(u!=o){var l=f[c],a=e?e(l,c,f):F;
a===F&&(a=bu(l)?l:Re(t[u+1])?[]:{})}at(f,c,a),f=f[c]}return n}function _r(n){return Te(Du(n))}function vr(n,t,r){var e=-1,u=n.length;for(0>t&&(t=-t>u?0:u+t),r=r>u?u:r,0>r&&(r+=u),u=t>r?0:r-t>>>0,t>>>=0,r=Hu(u);++e<u;)r[e]=n[e+t];return r}function gr(n,t){var r;return oo(n,function(n,e,u){return r=t(n,e,u),!r}),!!r}function dr(n,t,r){var e=0,u=null==n?e:n.length;if(typeof t=="number"&&t===t&&2147483647>=u){for(;e<u;){var i=e+u>>>1,o=n[i];null!==o&&!Au(o)&&(r?o<=t:o<t)?e=i+1:u=i}return u}return yr(n,t,Nu,r);
}function yr(n,t,r,e){t=r(t);for(var u=0,i=null==n?0:n.length,o=t!==t,f=null===t,c=Au(t),a=t===F;u<i;){var l=zi((u+i)/2),s=r(n[l]),h=s!==F,p=null===s,_=s===s,v=Au(s);(o?e||_:a?_&&(e||h):f?_&&h&&(e||!p):c?_&&h&&!p&&(e||!v):p||v?0:e?s<=t:s<t)?u=l+1:i=l}return Mi(i,4294967294)}function br(n,t){for(var r=-1,e=n.length,u=0,i=[];++r<e;){var o=n[r],f=t?t(o):o;if(!r||!hu(f,c)){var c=f;i[u++]=0===o?0:o}}return i}function xr(n){return typeof n=="number"?n:Au(n)?P:+n}function jr(n){if(typeof n=="string")return n;
if(af(n))return l(n,jr)+"";if(Au(n))return uo?uo.call(n):"";var t=n+"";return"0"==t&&1/n==-N?"-0":t}function wr(n,t,r){var e=-1,u=c,i=n.length,o=true,f=[],l=f;if(r)o=false,u=a;else if(200<=i){if(u=t?null:po(n))return D(u);o=false,u=R,l=new qn}else l=t?[]:f;n:for(;++e<i;){var s=n[e],h=t?t(s):s,s=r||0!==s?s:0;if(o&&h===h){for(var p=l.length;p--;)if(l[p]===h)continue n;t&&l.push(h),f.push(s)}else u(l,h,r)||(l!==f&&l.push(h),f.push(s))}return f}function mr(n,t){return t=Rr(t,n),n=2>t.length?n:It(n,vr(t,0,-1)),
null==n||delete n[$e(Ge(t))]}function Ar(n,t,r,e){for(var u=n.length,i=e?u:-1;(e?i--:++i<u)&&t(n[i],i,n););return r?vr(n,e?0:i,e?i+1:u):vr(n,e?i+1:0,e?u:i)}function kr(n,t){var r=n;return r instanceof Mn&&(r=r.value()),h(t,function(n,t){return t.func.apply(t.thisArg,s([n],t.args))},r)}function Er(n,t,r){var e=n.length;if(2>e)return e?wr(n[0]):[];for(var u=-1,i=Hu(e);++u<e;)for(var o=n[u],f=-1;++f<e;)f!=u&&(i[u]=jt(i[u]||o,n[f],t,r));return wr(kt(i,1),t,r)}function Or(n,t,r){for(var e=-1,u=n.length,i=t.length,o={};++e<u;)r(o,n[e],e<i?t[e]:F);
return o}function Sr(n){return _u(n)?n:[]}function Ir(n){return typeof n=="function"?n:Nu}function Rr(n,t){return af(n)?n:We(n,t)?[n]:mo(zu(n))}function zr(n,t,r){var e=n.length;return r=r===F?e:r,!t&&r>=e?n:vr(n,t,r)}function Wr(n,t){if(t)return n.slice();var r=n.length,r=yi?yi(r):new n.constructor(r);return n.copy(r),r}function Br(n){var t=new n.constructor(n.byteLength);return new di(t).set(new di(n)),t}function Lr(n,t){return new n.constructor(t?Br(n.buffer):n.buffer,n.byteOffset,n.length)}function Ur(n,t){
if(n!==t){var r=n!==F,e=null===n,u=n===n,i=Au(n),o=t!==F,f=null===t,c=t===t,a=Au(t);if(!f&&!a&&!i&&n>t||i&&o&&c&&!f&&!a||e&&o&&c||!r&&c||!u)return 1;if(!e&&!i&&!a&&n<t||a&&r&&u&&!e&&!i||f&&r&&u||!o&&u||!c)return-1}return 0}function Cr(n,t,r,e){var u=-1,i=n.length,o=r.length,f=-1,c=t.length,a=Di(i-o,0),l=Hu(c+a);for(e=!e;++f<c;)l[f]=t[f];for(;++u<o;)(e||u<i)&&(l[r[u]]=n[u]);for(;a--;)l[f++]=n[u++];return l}function Dr(n,t,r,e){var u=-1,i=n.length,o=-1,f=r.length,c=-1,a=t.length,l=Di(i-f,0),s=Hu(l+a);
for(e=!e;++u<l;)s[u]=n[u];for(l=u;++c<a;)s[l+c]=t[c];for(;++o<f;)(e||u<i)&&(s[l+r[o]]=n[u++]);return s}function Mr(n,t){var r=-1,e=n.length;for(t||(t=Hu(e));++r<e;)t[r]=n[r];return t}function Tr(n,t,r,e){var u=!r;r||(r={});for(var i=-1,o=t.length;++i<o;){var f=t[i],c=e?e(r[f],n[f],f,r,n):F;c===F&&(c=n[f]),u?_t(r,f,c):at(r,f,c)}return r}function $r(n,t){return Tr(n,vo(n),t)}function Fr(n,t){return Tr(n,go(n),t)}function Nr(n,t){return function(r,u){var i=af(r)?e:st,o=t?t():{};return i(r,n,je(u,2),o);
}}function Pr(n){return lr(function(t,r){var e=-1,u=r.length,i=1<u?r[u-1]:F,o=2<u?r[2]:F,i=3<n.length&&typeof i=="function"?(u--,i):F;for(o&&ze(r[0],r[1],o)&&(i=3>u?F:i,u=1),t=ni(t);++e<u;)(o=r[e])&&n(t,o,e,i);return t})}function Zr(n,t){return function(r,e){if(null==r)return r;if(!pu(r))return n(r,e);for(var u=r.length,i=t?u:-1,o=ni(r);(t?i--:++i<u)&&false!==e(o[i],i,o););return r}}function qr(n){return function(t,r,e){var u=-1,i=ni(t);e=e(t);for(var o=e.length;o--;){var f=e[n?o:++u];if(false===r(i[f],f,i))break;
}return t}}function Vr(n,t,r){function e(){return(this&&this!==Zn&&this instanceof e?i:n).apply(u?r:this,arguments)}var u=1&t,i=Hr(n);return e}function Kr(n){return function(t){t=zu(t);var r=Bn.test(t)?$(t):F,e=r?r[0]:t.charAt(0);return t=r?zr(r,1).join(""):t.slice(1),e[n]()+t}}function Gr(n){return function(t){return h($u(Tu(t).replace(In,"")),n,"")}}function Hr(n){return function(){var t=arguments;switch(t.length){case 0:return new n;case 1:return new n(t[0]);case 2:return new n(t[0],t[1]);case 3:
return new n(t[0],t[1],t[2]);case 4:return new n(t[0],t[1],t[2],t[3]);case 5:return new n(t[0],t[1],t[2],t[3],t[4]);case 6:return new n(t[0],t[1],t[2],t[3],t[4],t[5]);case 7:return new n(t[0],t[1],t[2],t[3],t[4],t[5],t[6])}var r=io(n.prototype),t=n.apply(r,t);return bu(t)?t:r}}function Jr(n,t,e){function u(){for(var o=arguments.length,f=Hu(o),c=o,a=xe(u);c--;)f[c]=arguments[c];return c=3>o&&f[0]!==a&&f[o-1]!==a?[]:C(f,a),o-=c.length,o<e?fe(n,t,Xr,u.placeholder,F,f,c,F,F,e-o):r(this&&this!==Zn&&this instanceof u?i:n,this,f);
}var i=Hr(n);return u}function Yr(n){return function(t,r,e){var u=ni(t);if(!pu(t)){var i=je(r,3);t=Lu(t),r=function(n){return i(u[n],n,u)}}return r=n(t,r,e),-1<r?u[i?t[r]:r]:F}}function Qr(n){return ge(function(t){var r=t.length,e=r,u=zn.prototype.thru;for(n&&t.reverse();e--;){var i=t[e];if(typeof i!="function")throw new ei("Expected a function");if(u&&!o&&"wrapper"==be(i))var o=new zn([],true)}for(e=o?e:r;++e<r;)var i=t[e],u=be(i),f="wrapper"==u?_o(i):F,o=f&&Be(f[0])&&424==f[1]&&!f[4].length&&1==f[9]?o[be(f[0])].apply(o,f[3]):1==i.length&&Be(i)?o[u]():o.thru(i);
return function(){var n=arguments,e=n[0];if(o&&1==n.length&&af(e))return o.plant(e).value();for(var u=0,n=r?t[u].apply(this,n):e;++u<r;)n=t[u].call(this,n);return n}})}function Xr(n,t,r,e,u,i,o,f,c,a){function l(){for(var d=arguments.length,y=Hu(d),b=d;b--;)y[b]=arguments[b];if(_){var x,j=xe(l),b=y.length;for(x=0;b--;)y[b]===j&&++x}if(e&&(y=Cr(y,e,u,_)),i&&(y=Dr(y,i,o,_)),d-=x,_&&d<a)return j=C(y,j),fe(n,t,Xr,l.placeholder,r,y,j,f,c,a-d);if(j=h?r:this,b=p?j[n]:n,d=y.length,f){x=y.length;for(var w=Mi(f.length,x),m=Mr(y);w--;){
var A=f[w];y[w]=Re(A,x)?m[A]:F}}else v&&1<d&&y.reverse();return s&&c<d&&(y.length=c),this&&this!==Zn&&this instanceof l&&(b=g||Hr(b)),b.apply(j,y)}var s=128&t,h=1&t,p=2&t,_=24&t,v=512&t,g=p?F:Hr(n);return l}function ne(n,t){return function(r,e){return Ct(r,n,t(e))}}function te(n,t){return function(r,e){var u;if(r===F&&e===F)return t;if(r!==F&&(u=r),e!==F){if(u===F)return e;typeof r=="string"||typeof e=="string"?(r=jr(r),e=jr(e)):(r=xr(r),e=xr(e)),u=n(r,e)}return u}}function re(n){return ge(function(t){
return t=l(t,S(je())),lr(function(e){var u=this;return n(t,function(n){return r(n,u,e)})})})}function ee(n,t){t=t===F?" ":jr(t);var r=t.length;return 2>r?r?ar(t,n):t:(r=ar(t,Ri(n/T(t))),Bn.test(t)?zr($(r),0,n).join(""):r.slice(0,n))}function ue(n,t,e,u){function i(){for(var t=-1,c=arguments.length,a=-1,l=u.length,s=Hu(l+c),h=this&&this!==Zn&&this instanceof i?f:n;++a<l;)s[a]=u[a];for(;c--;)s[a++]=arguments[++t];return r(h,o?e:this,s)}var o=1&t,f=Hr(n);return i}function ie(n){return function(t,r,e){
e&&typeof e!="number"&&ze(t,r,e)&&(r=e=F),t=Eu(t),r===F?(r=t,t=0):r=Eu(r),e=e===F?t<r?1:-1:Eu(e);var u=-1;r=Di(Ri((r-t)/(e||1)),0);for(var i=Hu(r);r--;)i[n?r:++u]=t,t+=e;return i}}function oe(n){return function(t,r){return typeof t=="string"&&typeof r=="string"||(t=Iu(t),r=Iu(r)),n(t,r)}}function fe(n,t,r,e,u,i,o,f,c,a){var l=8&t,s=l?o:F;o=l?F:o;var h=l?i:F;return i=l?F:i,t=(t|(l?32:64))&~(l?64:32),4&t||(t&=-4),u=[n,t,u,h,s,i,o,f,c,a],r=r.apply(F,u),Be(n)&&xo(r,u),r.placeholder=e,De(r,n,t)}function ce(n){
var t=Xu[n];return function(n,r){if(n=Iu(n),r=null==r?0:Mi(Ou(r),292)){var e=(zu(n)+"e").split("e"),e=t(e[0]+"e"+(+e[1]+r)),e=(zu(e)+"e").split("e");return+(e[0]+"e"+(+e[1]-r))}return t(n)}}function ae(n){return function(t){var r=yo(t);return"[object Map]"==r?L(t):"[object Set]"==r?M(t):O(t,n(t))}}function le(n,t,r,e,u,i,o,f){var c=2&t;if(!c&&typeof n!="function")throw new ei("Expected a function");var a=e?e.length:0;if(a||(t&=-97,e=u=F),o=o===F?o:Di(Ou(o),0),f=f===F?f:Ou(f),a-=u?u.length:0,64&t){
var l=e,s=u;e=u=F}var h=c?F:_o(n);return i=[n,t,r,e,u,l,s,i,o,f],h&&(r=i[1],n=h[1],t=r|n,e=128==n&&8==r||128==n&&256==r&&i[7].length<=h[8]||384==n&&h[7].length<=h[8]&&8==r,131>t||e)&&(1&n&&(i[2]=h[2],t|=1&r?0:4),(r=h[3])&&(e=i[3],i[3]=e?Cr(e,r,h[4]):r,i[4]=e?C(i[3],"__lodash_placeholder__"):h[4]),(r=h[5])&&(e=i[5],i[5]=e?Dr(e,r,h[6]):r,i[6]=e?C(i[5],"__lodash_placeholder__"):h[6]),(r=h[7])&&(i[7]=r),128&n&&(i[8]=null==i[8]?h[8]:Mi(i[8],h[8])),null==i[9]&&(i[9]=h[9]),i[0]=h[0],i[1]=t),n=i[0],t=i[1],
r=i[2],e=i[3],u=i[4],f=i[9]=i[9]===F?c?0:n.length:Di(i[9]-a,0),!f&&24&t&&(t&=-25),De((h?lo:xo)(t&&1!=t?8==t||16==t?Jr(n,t,f):32!=t&&33!=t||u.length?Xr.apply(F,i):ue(n,t,r,e):Vr(n,t,r),i),n,t)}function se(n,t,r,e){return n===F||hu(n,ii[r])&&!ci.call(e,r)?t:n}function he(n,t,r,e,u,i){return bu(n)&&bu(t)&&(i.set(t,n),nr(n,t,F,he,i),i.delete(t)),n}function pe(n){return wu(n)?F:n}function _e(n,t,r,e,u,i){var o=1&r,f=n.length,c=t.length;if(f!=c&&!(o&&c>f))return false;if((c=i.get(n))&&i.get(t))return c==t;var c=-1,a=true,l=2&r?new qn:F;
for(i.set(n,t),i.set(t,n);++c<f;){var s=n[c],h=t[c];if(e)var p=o?e(h,s,c,t,n,i):e(s,h,c,n,t,i);if(p!==F){if(p)continue;a=false;break}if(l){if(!_(t,function(n,t){if(!R(l,t)&&(s===n||u(s,n,r,e,i)))return l.push(t)})){a=false;break}}else if(s!==h&&!u(s,h,r,e,i)){a=false;break}}return i.delete(n),i.delete(t),a}function ve(n,t,r,e,u,i,o){switch(r){case"[object DataView]":if(n.byteLength!=t.byteLength||n.byteOffset!=t.byteOffset)break;n=n.buffer,t=t.buffer;case"[object ArrayBuffer]":if(n.byteLength!=t.byteLength||!i(new di(n),new di(t)))break;
return true;case"[object Boolean]":case"[object Date]":case"[object Number]":return hu(+n,+t);case"[object Error]":return n.name==t.name&&n.message==t.message;case"[object RegExp]":case"[object String]":return n==t+"";case"[object Map]":var f=L;case"[object Set]":if(f||(f=D),n.size!=t.size&&!(1&e))break;return(r=o.get(n))?r==t:(e|=2,o.set(n,t),t=_e(f(n),f(t),e,u,i,o),o.delete(n),t);case"[object Symbol]":if(eo)return eo.call(n)==eo.call(t)}return false}function ge(n){return wo(Ce(n,F,Ve),n+"")}function de(n){
return Rt(n,Lu,vo)}function ye(n){return Rt(n,Uu,go)}function be(n){for(var t=n.name+"",r=Ji[t],e=ci.call(Ji,t)?r.length:0;e--;){var u=r[e],i=u.func;if(null==i||i==n)return u.name}return t}function xe(n){return(ci.call(On,"placeholder")?On:n).placeholder}function je(){var n=On.iteratee||Pu,n=n===Pu?Gt:n;return arguments.length?n(arguments[0],arguments[1]):n}function we(n,t){var r=n.__data__,e=typeof t;return("string"==e||"number"==e||"symbol"==e||"boolean"==e?"__proto__"!==t:null===t)?r[typeof t=="string"?"string":"hash"]:r.map;
}function me(n){for(var t=Lu(n),r=t.length;r--;){var e=t[r],u=n[e];t[r]=[e,u,u===u&&!bu(u)]}return t}function Ae(n,t){var r=null==n?F:n[t];return Zt(r)?r:F}function ke(n,t,r){t=Rr(t,n);for(var e=-1,u=t.length,i=false;++e<u;){var o=$e(t[e]);if(!(i=null!=n&&r(n,o)))break;n=n[o]}return i||++e!=u?i:(u=null==n?0:n.length,!!u&&yu(u)&&Re(o,u)&&(af(n)||cf(n)))}function Ee(n){var t=n.length,r=n.constructor(t);return t&&"string"==typeof n[0]&&ci.call(n,"index")&&(r.index=n.index,r.input=n.input),r}function Oe(n){
return typeof n.constructor!="function"||Le(n)?{}:io(bi(n))}function Se(r,e,u,i){var o=r.constructor;switch(e){case"[object ArrayBuffer]":return Br(r);case"[object Boolean]":case"[object Date]":return new o(+r);case"[object DataView]":return e=i?Br(r.buffer):r.buffer,new r.constructor(e,r.byteOffset,r.byteLength);case"[object Float32Array]":case"[object Float64Array]":case"[object Int8Array]":case"[object Int16Array]":case"[object Int32Array]":case"[object Uint8Array]":case"[object Uint8ClampedArray]":
case"[object Uint16Array]":case"[object Uint32Array]":return Lr(r,i);case"[object Map]":return e=i?u(L(r),1):L(r),h(e,n,new r.constructor);case"[object Number]":case"[object String]":return new o(r);case"[object RegExp]":return e=new r.constructor(r.source,dn.exec(r)),e.lastIndex=r.lastIndex,e;case"[object Set]":return e=i?u(D(r),1):D(r),h(e,t,new r.constructor);case"[object Symbol]":return eo?ni(eo.call(r)):{}}}function Ie(n){return af(n)||cf(n)||!!(mi&&n&&n[mi])}function Re(n,t){return t=null==t?9007199254740991:t,
!!t&&(typeof n=="number"||wn.test(n))&&-1<n&&0==n%1&&n<t}function ze(n,t,r){if(!bu(r))return false;var e=typeof t;return!!("number"==e?pu(r)&&Re(t,r.length):"string"==e&&t in r)&&hu(r[t],n)}function We(n,t){if(af(n))return false;var r=typeof n;return!("number"!=r&&"symbol"!=r&&"boolean"!=r&&null!=n&&!Au(n))||(rn.test(n)||!tn.test(n)||null!=t&&n in ni(t))}function Be(n){var t=be(n),r=On[t];return typeof r=="function"&&t in Mn.prototype&&(n===r||(t=_o(r),!!t&&n===t[0]))}function Le(n){var t=n&&n.constructor;
return n===(typeof t=="function"&&t.prototype||ii)}function Ue(n,t){return function(r){return null!=r&&(r[n]===t&&(t!==F||n in ni(r)))}}function Ce(n,t,e){return t=Di(t===F?n.length-1:t,0),function(){for(var u=arguments,i=-1,o=Di(u.length-t,0),f=Hu(o);++i<o;)f[i]=u[t+i];for(i=-1,o=Hu(t+1);++i<t;)o[i]=u[i];return o[t]=e(f),r(n,this,o)}}function De(n,t,r){var e=t+"";t=wo;var u,i=Ne;return u=(u=e.match(hn))?u[1].split(pn):[],r=i(u,r),(i=r.length)&&(u=i-1,r[u]=(1<i?"& ":"")+r[u],r=r.join(2<i?", ":" "),
e=e.replace(sn,"{\n/* [wrapped with "+r+"] */\n")),t(n,e)}function Me(n){var t=0,r=0;return function(){var e=Ti(),u=16-(e-r);if(r=e,0<u){if(800<=++t)return arguments[0]}else t=0;return n.apply(F,arguments)}}function Te(n,t){var r=-1,e=n.length,u=e-1;for(t=t===F?e:t;++r<t;){var e=cr(r,u),i=n[e];n[e]=n[r],n[r]=i}return n.length=t,n}function $e(n){if(typeof n=="string"||Au(n))return n;var t=n+"";return"0"==t&&1/n==-N?"-0":t}function Fe(n){if(null!=n){try{return fi.call(n)}catch(n){}return n+""}return"";
}function Ne(n,t){return u(Z,function(r){var e="_."+r[0];t&r[1]&&!c(n,e)&&n.push(e)}),n.sort()}function Pe(n){if(n instanceof Mn)return n.clone();var t=new zn(n.__wrapped__,n.__chain__);return t.__actions__=Mr(n.__actions__),t.__index__=n.__index__,t.__values__=n.__values__,t}function Ze(n,t,r){var e=null==n?0:n.length;return e?(r=null==r?0:Ou(r),0>r&&(r=Di(e+r,0)),g(n,je(t,3),r)):-1}function qe(n,t,r){var e=null==n?0:n.length;if(!e)return-1;var u=e-1;return r!==F&&(u=Ou(r),u=0>r?Di(e+u,0):Mi(u,e-1)),
g(n,je(t,3),u,true)}function Ve(n){return(null==n?0:n.length)?kt(n,1):[]}function Ke(n){return n&&n.length?n[0]:F}function Ge(n){var t=null==n?0:n.length;return t?n[t-1]:F}function He(n,t){return n&&n.length&&t&&t.length?or(n,t):n}function Je(n){return null==n?n:Ni.call(n)}function Ye(n){if(!n||!n.length)return[];var t=0;return n=f(n,function(n){if(_u(n))return t=Di(n.length,t),true}),E(t,function(t){return l(n,j(t))})}function Qe(n,t){if(!n||!n.length)return[];var e=Ye(n);return null==t?e:l(e,function(n){
return r(t,F,n)})}function Xe(n){return n=On(n),n.__chain__=true,n}function nu(n,t){return t(n)}function tu(){return this}function ru(n,t){return(af(n)?u:oo)(n,je(t,3))}function eu(n,t){return(af(n)?i:fo)(n,je(t,3))}function uu(n,t){return(af(n)?l:Yt)(n,je(t,3))}function iu(n,t,r){return t=r?F:t,t=n&&null==t?n.length:t,le(n,128,F,F,F,F,t)}function ou(n,t){var r;if(typeof t!="function")throw new ei("Expected a function");return n=Ou(n),function(){return 0<--n&&(r=t.apply(this,arguments)),1>=n&&(t=F),
r}}function fu(n,t,r){return t=r?F:t,n=le(n,8,F,F,F,F,F,t),n.placeholder=fu.placeholder,n}function cu(n,t,r){return t=r?F:t,n=le(n,16,F,F,F,F,F,t),n.placeholder=cu.placeholder,n}function au(n,t,r){function e(t){var r=c,e=a;return c=a=F,_=t,s=n.apply(e,r)}function u(n){var r=n-p;return n-=_,p===F||r>=t||0>r||g&&n>=l}function i(){var n=Jo();if(u(n))return o(n);var r,e=jo;r=n-_,n=t-(n-p),r=g?Mi(n,l-r):n,h=e(i,r)}function o(n){return h=F,d&&c?e(n):(c=a=F,s)}function f(){var n=Jo(),r=u(n);if(c=arguments,
a=this,p=n,r){if(h===F)return _=n=p,h=jo(i,t),v?e(n):s;if(g)return h=jo(i,t),e(p)}return h===F&&(h=jo(i,t)),s}var c,a,l,s,h,p,_=0,v=false,g=false,d=true;if(typeof n!="function")throw new ei("Expected a function");return t=Iu(t)||0,bu(r)&&(v=!!r.leading,l=(g="maxWait"in r)?Di(Iu(r.maxWait)||0,t):l,d="trailing"in r?!!r.trailing:d),f.cancel=function(){h!==F&&ho(h),_=0,c=p=a=h=F},f.flush=function(){return h===F?s:o(Jo())},f}function lu(n,t){function r(){var e=arguments,u=t?t.apply(this,e):e[0],i=r.cache;return i.has(u)?i.get(u):(e=n.apply(this,e),
r.cache=i.set(u,e)||i,e)}if(typeof n!="function"||null!=t&&typeof t!="function")throw new ei("Expected a function");return r.cache=new(lu.Cache||Pn),r}function su(n){if(typeof n!="function")throw new ei("Expected a function");return function(){var t=arguments;switch(t.length){case 0:return!n.call(this);case 1:return!n.call(this,t[0]);case 2:return!n.call(this,t[0],t[1]);case 3:return!n.call(this,t[0],t[1],t[2])}return!n.apply(this,t)}}function hu(n,t){return n===t||n!==n&&t!==t}function pu(n){return null!=n&&yu(n.length)&&!gu(n);
}function _u(n){return xu(n)&&pu(n)}function vu(n){if(!xu(n))return false;var t=zt(n);return"[object Error]"==t||"[object DOMException]"==t||typeof n.message=="string"&&typeof n.name=="string"&&!wu(n)}function gu(n){return!!bu(n)&&(n=zt(n),"[object Function]"==n||"[object GeneratorFunction]"==n||"[object AsyncFunction]"==n||"[object Proxy]"==n)}function du(n){return typeof n=="number"&&n==Ou(n)}function yu(n){return typeof n=="number"&&-1<n&&0==n%1&&9007199254740991>=n}function bu(n){var t=typeof n;return null!=n&&("object"==t||"function"==t);
}function xu(n){return null!=n&&typeof n=="object"}function ju(n){return typeof n=="number"||xu(n)&&"[object Number]"==zt(n)}function wu(n){return!(!xu(n)||"[object Object]"!=zt(n))&&(n=bi(n),null===n||(n=ci.call(n,"constructor")&&n.constructor,typeof n=="function"&&n instanceof n&&fi.call(n)==hi))}function mu(n){return typeof n=="string"||!af(n)&&xu(n)&&"[object String]"==zt(n)}function Au(n){return typeof n=="symbol"||xu(n)&&"[object Symbol]"==zt(n)}function ku(n){if(!n)return[];if(pu(n))return mu(n)?$(n):Mr(n);
if(Ai&&n[Ai]){n=n[Ai]();for(var t,r=[];!(t=n.next()).done;)r.push(t.value);return r}return t=yo(n),("[object Map]"==t?L:"[object Set]"==t?D:Du)(n)}function Eu(n){return n?(n=Iu(n),n===N||n===-N?1.7976931348623157e308*(0>n?-1:1):n===n?n:0):0===n?n:0}function Ou(n){n=Eu(n);var t=n%1;return n===n?t?n-t:n:0}function Su(n){return n?gt(Ou(n),0,4294967295):0}function Iu(n){if(typeof n=="number")return n;if(Au(n))return P;if(bu(n)&&(n=typeof n.valueOf=="function"?n.valueOf():n,n=bu(n)?n+"":n),typeof n!="string")return 0===n?n:+n;
n=n.replace(cn,"");var t=bn.test(n);return t||jn.test(n)?Fn(n.slice(2),t?2:8):yn.test(n)?P:+n}function Ru(n){return Tr(n,Uu(n))}function zu(n){return null==n?"":jr(n)}function Wu(n,t,r){return n=null==n?F:It(n,t),n===F?r:n}function Bu(n,t){return null!=n&&ke(n,t,Lt)}function Lu(n){return pu(n)?Gn(n):Ht(n)}function Uu(n){if(pu(n))n=Gn(n,true);else if(bu(n)){var t,r=Le(n),e=[];for(t in n)("constructor"!=t||!r&&ci.call(n,t))&&e.push(t);n=e}else{if(t=[],null!=n)for(r in ni(n))t.push(r);n=t}return n}function Cu(n,t){
if(null==n)return{};var r=l(ye(n),function(n){return[n]});return t=je(t),ur(n,r,function(n,r){return t(n,r[0])})}function Du(n){return null==n?[]:I(n,Lu(n))}function Mu(n){return Nf(zu(n).toLowerCase())}function Tu(n){return(n=zu(n))&&n.replace(mn,rt).replace(Rn,"")}function $u(n,t,r){return n=zu(n),t=r?F:t,t===F?Ln.test(n)?n.match(Wn)||[]:n.match(_n)||[]:n.match(t)||[]}function Fu(n){return function(){return n}}function Nu(n){return n}function Pu(n){return Gt(typeof n=="function"?n:dt(n,1))}function Zu(n,t,r){
var e=Lu(t),i=St(t,e);null!=r||bu(t)&&(i.length||!e.length)||(r=t,t=n,n=this,i=St(t,Lu(t)));var o=!(bu(r)&&"chain"in r&&!r.chain),f=gu(n);return u(i,function(r){var e=t[r];n[r]=e,f&&(n.prototype[r]=function(){var t=this.__chain__;if(o||t){var r=n(this.__wrapped__);return(r.__actions__=Mr(this.__actions__)).push({func:e,args:arguments,thisArg:n}),r.__chain__=t,r}return e.apply(n,s([this.value()],arguments))})}),n}function qu(){}function Vu(n){return We(n)?j($e(n)):ir(n)}function Ku(){return[]}function Gu(){
return false}En=null==En?Zn:it.defaults(Zn.Object(),En,it.pick(Zn,Un));var Hu=En.Array,Ju=En.Date,Yu=En.Error,Qu=En.Function,Xu=En.Math,ni=En.Object,ti=En.RegExp,ri=En.String,ei=En.TypeError,ui=Hu.prototype,ii=ni.prototype,oi=En["__core-js_shared__"],fi=Qu.prototype.toString,ci=ii.hasOwnProperty,ai=0,li=function(){var n=/[^.]+$/.exec(oi&&oi.keys&&oi.keys.IE_PROTO||"");return n?"Symbol(src)_1."+n:""}(),si=ii.toString,hi=fi.call(ni),pi=Zn._,_i=ti("^"+fi.call(ci).replace(on,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),vi=Kn?En.Buffer:F,gi=En.Symbol,di=En.Uint8Array,yi=vi?vi.f:F,bi=U(ni.getPrototypeOf,ni),xi=ni.create,ji=ii.propertyIsEnumerable,wi=ui.splice,mi=gi?gi.isConcatSpreadable:F,Ai=gi?gi.iterator:F,ki=gi?gi.toStringTag:F,Ei=function(){
try{var n=Ae(ni,"defineProperty");return n({},"",{}),n}catch(n){}}(),Oi=En.clearTimeout!==Zn.clearTimeout&&En.clearTimeout,Si=Ju&&Ju.now!==Zn.Date.now&&Ju.now,Ii=En.setTimeout!==Zn.setTimeout&&En.setTimeout,Ri=Xu.ceil,zi=Xu.floor,Wi=ni.getOwnPropertySymbols,Bi=vi?vi.isBuffer:F,Li=En.isFinite,Ui=ui.join,Ci=U(ni.keys,ni),Di=Xu.max,Mi=Xu.min,Ti=Ju.now,$i=En.parseInt,Fi=Xu.random,Ni=ui.reverse,Pi=Ae(En,"DataView"),Zi=Ae(En,"Map"),qi=Ae(En,"Promise"),Vi=Ae(En,"Set"),Ki=Ae(En,"WeakMap"),Gi=Ae(ni,"create"),Hi=Ki&&new Ki,Ji={},Yi=Fe(Pi),Qi=Fe(Zi),Xi=Fe(qi),no=Fe(Vi),to=Fe(Ki),ro=gi?gi.prototype:F,eo=ro?ro.valueOf:F,uo=ro?ro.toString:F,io=function(){
function n(){}return function(t){return bu(t)?xi?xi(t):(n.prototype=t,t=new n,n.prototype=F,t):{}}}();On.templateSettings={escape:Q,evaluate:X,interpolate:nn,variable:"",imports:{_:On}},On.prototype=Sn.prototype,On.prototype.constructor=On,zn.prototype=io(Sn.prototype),zn.prototype.constructor=zn,Mn.prototype=io(Sn.prototype),Mn.prototype.constructor=Mn,Tn.prototype.clear=function(){this.__data__=Gi?Gi(null):{},this.size=0},Tn.prototype.delete=function(n){return n=this.has(n)&&delete this.__data__[n],
this.size-=n?1:0,n},Tn.prototype.get=function(n){var t=this.__data__;return Gi?(n=t[n],"__lodash_hash_undefined__"===n?F:n):ci.call(t,n)?t[n]:F},Tn.prototype.has=function(n){var t=this.__data__;return Gi?t[n]!==F:ci.call(t,n)},Tn.prototype.set=function(n,t){var r=this.__data__;return this.size+=this.has(n)?0:1,r[n]=Gi&&t===F?"__lodash_hash_undefined__":t,this},Nn.prototype.clear=function(){this.__data__=[],this.size=0},Nn.prototype.delete=function(n){var t=this.__data__;return n=lt(t,n),!(0>n)&&(n==t.length-1?t.pop():wi.call(t,n,1),
--this.size,true)},Nn.prototype.get=function(n){var t=this.__data__;return n=lt(t,n),0>n?F:t[n][1]},Nn.prototype.has=function(n){return-1<lt(this.__data__,n)},Nn.prototype.set=function(n,t){var r=this.__data__,e=lt(r,n);return 0>e?(++this.size,r.push([n,t])):r[e][1]=t,this},Pn.prototype.clear=function(){this.size=0,this.__data__={hash:new Tn,map:new(Zi||Nn),string:new Tn}},Pn.prototype.delete=function(n){return n=we(this,n).delete(n),this.size-=n?1:0,n},Pn.prototype.get=function(n){return we(this,n).get(n);
},Pn.prototype.has=function(n){return we(this,n).has(n)},Pn.prototype.set=function(n,t){var r=we(this,n),e=r.size;return r.set(n,t),this.size+=r.size==e?0:1,this},qn.prototype.add=qn.prototype.push=function(n){return this.__data__.set(n,"__lodash_hash_undefined__"),this},qn.prototype.has=function(n){return this.__data__.has(n)},Vn.prototype.clear=function(){this.__data__=new Nn,this.size=0},Vn.prototype.delete=function(n){var t=this.__data__;return n=t.delete(n),this.size=t.size,n},Vn.prototype.get=function(n){
return this.__data__.get(n)},Vn.prototype.has=function(n){return this.__data__.has(n)},Vn.prototype.set=function(n,t){var r=this.__data__;if(r instanceof Nn){var e=r.__data__;if(!Zi||199>e.length)return e.push([n,t]),this.size=++r.size,this;r=this.__data__=new Pn(e)}return r.set(n,t),this.size=r.size,this};var oo=Zr(Et),fo=Zr(Ot,true),co=qr(),ao=qr(true),lo=Hi?function(n,t){return Hi.set(n,t),n}:Nu,so=Ei?function(n,t){return Ei(n,"toString",{configurable:true,enumerable:false,value:Fu(t),writable:true})}:Nu,ho=Oi||function(n){
return Zn.clearTimeout(n)},po=Vi&&1/D(new Vi([,-0]))[1]==N?function(n){return new Vi(n)}:qu,_o=Hi?function(n){return Hi.get(n)}:qu,vo=Wi?function(n){return null==n?[]:(n=ni(n),f(Wi(n),function(t){return ji.call(n,t)}))}:Ku,go=Wi?function(n){for(var t=[];n;)s(t,vo(n)),n=bi(n);return t}:Ku,yo=zt;(Pi&&"[object DataView]"!=yo(new Pi(new ArrayBuffer(1)))||Zi&&"[object Map]"!=yo(new Zi)||qi&&"[object Promise]"!=yo(qi.resolve())||Vi&&"[object Set]"!=yo(new Vi)||Ki&&"[object WeakMap]"!=yo(new Ki))&&(yo=function(n){
var t=zt(n);if(n=(n="[object Object]"==t?n.constructor:F)?Fe(n):"")switch(n){case Yi:return"[object DataView]";case Qi:return"[object Map]";case Xi:return"[object Promise]";case no:return"[object Set]";case to:return"[object WeakMap]"}return t});var bo=oi?gu:Gu,xo=Me(lo),jo=Ii||function(n,t){return Zn.setTimeout(n,t)},wo=Me(so),mo=function(n){n=lu(n,function(n){return 500===t.size&&t.clear(),n});var t=n.cache;return n}(function(n){var t=[];return en.test(n)&&t.push(""),n.replace(un,function(n,r,e,u){
t.push(e?u.replace(vn,"$1"):r||n)}),t}),Ao=lr(function(n,t){return _u(n)?jt(n,kt(t,1,_u,true)):[]}),ko=lr(function(n,t){var r=Ge(t);return _u(r)&&(r=F),_u(n)?jt(n,kt(t,1,_u,true),je(r,2)):[]}),Eo=lr(function(n,t){var r=Ge(t);return _u(r)&&(r=F),_u(n)?jt(n,kt(t,1,_u,true),F,r):[]}),Oo=lr(function(n){var t=l(n,Sr);return t.length&&t[0]===n[0]?Ut(t):[]}),So=lr(function(n){var t=Ge(n),r=l(n,Sr);return t===Ge(r)?t=F:r.pop(),r.length&&r[0]===n[0]?Ut(r,je(t,2)):[]}),Io=lr(function(n){var t=Ge(n),r=l(n,Sr);return(t=typeof t=="function"?t:F)&&r.pop(),
r.length&&r[0]===n[0]?Ut(r,F,t):[]}),Ro=lr(He),zo=ge(function(n,t){var r=null==n?0:n.length,e=vt(n,t);return fr(n,l(t,function(n){return Re(n,r)?+n:n}).sort(Ur)),e}),Wo=lr(function(n){return wr(kt(n,1,_u,true))}),Bo=lr(function(n){var t=Ge(n);return _u(t)&&(t=F),wr(kt(n,1,_u,true),je(t,2))}),Lo=lr(function(n){var t=Ge(n),t=typeof t=="function"?t:F;return wr(kt(n,1,_u,true),F,t)}),Uo=lr(function(n,t){return _u(n)?jt(n,t):[]}),Co=lr(function(n){return Er(f(n,_u))}),Do=lr(function(n){var t=Ge(n);return _u(t)&&(t=F),
Er(f(n,_u),je(t,2))}),Mo=lr(function(n){var t=Ge(n),t=typeof t=="function"?t:F;return Er(f(n,_u),F,t)}),To=lr(Ye),$o=lr(function(n){var t=n.length,t=1<t?n[t-1]:F,t=typeof t=="function"?(n.pop(),t):F;return Qe(n,t)}),Fo=ge(function(n){function t(t){return vt(t,n)}var r=n.length,e=r?n[0]:0,u=this.__wrapped__;return!(1<r||this.__actions__.length)&&u instanceof Mn&&Re(e)?(u=u.slice(e,+e+(r?1:0)),u.__actions__.push({func:nu,args:[t],thisArg:F}),new zn(u,this.__chain__).thru(function(n){return r&&!n.length&&n.push(F),
n})):this.thru(t)}),No=Nr(function(n,t,r){ci.call(n,r)?++n[r]:_t(n,r,1)}),Po=Yr(Ze),Zo=Yr(qe),qo=Nr(function(n,t,r){ci.call(n,r)?n[r].push(t):_t(n,r,[t])}),Vo=lr(function(n,t,e){var u=-1,i=typeof t=="function",o=pu(n)?Hu(n.length):[];return oo(n,function(n){o[++u]=i?r(t,n,e):Dt(n,t,e)}),o}),Ko=Nr(function(n,t,r){_t(n,r,t)}),Go=Nr(function(n,t,r){n[r?0:1].push(t)},function(){return[[],[]]}),Ho=lr(function(n,t){if(null==n)return[];var r=t.length;return 1<r&&ze(n,t[0],t[1])?t=[]:2<r&&ze(t[0],t[1],t[2])&&(t=[t[0]]),
rr(n,kt(t,1),[])}),Jo=Si||function(){return Zn.Date.now()},Yo=lr(function(n,t,r){var e=1;if(r.length)var u=C(r,xe(Yo)),e=32|e;return le(n,e,t,r,u)}),Qo=lr(function(n,t,r){var e=3;if(r.length)var u=C(r,xe(Qo)),e=32|e;return le(t,e,n,r,u)}),Xo=lr(function(n,t){return xt(n,1,t)}),nf=lr(function(n,t,r){return xt(n,Iu(t)||0,r)});lu.Cache=Pn;var tf=lr(function(n,t){t=1==t.length&&af(t[0])?l(t[0],S(je())):l(kt(t,1),S(je()));var e=t.length;return lr(function(u){for(var i=-1,o=Mi(u.length,e);++i<o;)u[i]=t[i].call(this,u[i]);
return r(n,this,u)})}),rf=lr(function(n,t){return le(n,32,F,t,C(t,xe(rf)))}),ef=lr(function(n,t){return le(n,64,F,t,C(t,xe(ef)))}),uf=ge(function(n,t){return le(n,256,F,F,F,t)}),of=oe(Wt),ff=oe(function(n,t){return n>=t}),cf=Mt(function(){return arguments}())?Mt:function(n){return xu(n)&&ci.call(n,"callee")&&!ji.call(n,"callee")},af=Hu.isArray,lf=Hn?S(Hn):Tt,sf=Bi||Gu,hf=Jn?S(Jn):$t,pf=Yn?S(Yn):Nt,_f=Qn?S(Qn):qt,vf=Xn?S(Xn):Vt,gf=nt?S(nt):Kt,df=oe(Jt),yf=oe(function(n,t){return n<=t}),bf=Pr(function(n,t){
if(Le(t)||pu(t))Tr(t,Lu(t),n);else for(var r in t)ci.call(t,r)&&at(n,r,t[r])}),xf=Pr(function(n,t){Tr(t,Uu(t),n)}),jf=Pr(function(n,t,r,e){Tr(t,Uu(t),n,e)}),wf=Pr(function(n,t,r,e){Tr(t,Lu(t),n,e)}),mf=ge(vt),Af=lr(function(n){return n.push(F,se),r(jf,F,n)}),kf=lr(function(n){return n.push(F,he),r(Rf,F,n)}),Ef=ne(function(n,t,r){n[t]=r},Fu(Nu)),Of=ne(function(n,t,r){ci.call(n,t)?n[t].push(r):n[t]=[r]},je),Sf=lr(Dt),If=Pr(function(n,t,r){nr(n,t,r)}),Rf=Pr(function(n,t,r,e){nr(n,t,r,e)}),zf=ge(function(n,t){
var r={};if(null==n)return r;var e=false;t=l(t,function(t){return t=Rr(t,n),e||(e=1<t.length),t}),Tr(n,ye(n),r),e&&(r=dt(r,7,pe));for(var u=t.length;u--;)mr(r,t[u]);return r}),Wf=ge(function(n,t){return null==n?{}:er(n,t)}),Bf=ae(Lu),Lf=ae(Uu),Uf=Gr(function(n,t,r){return t=t.toLowerCase(),n+(r?Mu(t):t)}),Cf=Gr(function(n,t,r){return n+(r?"-":"")+t.toLowerCase()}),Df=Gr(function(n,t,r){return n+(r?" ":"")+t.toLowerCase()}),Mf=Kr("toLowerCase"),Tf=Gr(function(n,t,r){return n+(r?"_":"")+t.toLowerCase();
}),$f=Gr(function(n,t,r){return n+(r?" ":"")+Nf(t)}),Ff=Gr(function(n,t,r){return n+(r?" ":"")+t.toUpperCase()}),Nf=Kr("toUpperCase"),Pf=lr(function(n,t){try{return r(n,F,t)}catch(n){return vu(n)?n:new Yu(n)}}),Zf=ge(function(n,t){return u(t,function(t){t=$e(t),_t(n,t,Yo(n[t],n))}),n}),qf=Qr(),Vf=Qr(true),Kf=lr(function(n,t){return function(r){return Dt(r,n,t)}}),Gf=lr(function(n,t){return function(r){return Dt(n,r,t)}}),Hf=re(l),Jf=re(o),Yf=re(_),Qf=ie(),Xf=ie(true),nc=te(function(n,t){return n+t},0),tc=ce("ceil"),rc=te(function(n,t){
return n/t},1),ec=ce("floor"),uc=te(function(n,t){return n*t},1),ic=ce("round"),oc=te(function(n,t){return n-t},0);return On.after=function(n,t){if(typeof t!="function")throw new ei("Expected a function");return n=Ou(n),function(){if(1>--n)return t.apply(this,arguments)}},On.ary=iu,On.assign=bf,On.assignIn=xf,On.assignInWith=jf,On.assignWith=wf,On.at=mf,On.before=ou,On.bind=Yo,On.bindAll=Zf,On.bindKey=Qo,On.castArray=function(){if(!arguments.length)return[];var n=arguments[0];return af(n)?n:[n]},
On.chain=Xe,On.chunk=function(n,t,r){if(t=(r?ze(n,t,r):t===F)?1:Di(Ou(t),0),r=null==n?0:n.length,!r||1>t)return[];for(var e=0,u=0,i=Hu(Ri(r/t));e<r;)i[u++]=vr(n,e,e+=t);return i},On.compact=function(n){for(var t=-1,r=null==n?0:n.length,e=0,u=[];++t<r;){var i=n[t];i&&(u[e++]=i)}return u},On.concat=function(){var n=arguments.length;if(!n)return[];for(var t=Hu(n-1),r=arguments[0];n--;)t[n-1]=arguments[n];return s(af(r)?Mr(r):[r],kt(t,1))},On.cond=function(n){var t=null==n?0:n.length,e=je();return n=t?l(n,function(n){
if("function"!=typeof n[1])throw new ei("Expected a function");return[e(n[0]),n[1]]}):[],lr(function(e){for(var u=-1;++u<t;){var i=n[u];if(r(i[0],this,e))return r(i[1],this,e)}})},On.conforms=function(n){return yt(dt(n,1))},On.constant=Fu,On.countBy=No,On.create=function(n,t){var r=io(n);return null==t?r:ht(r,t)},On.curry=fu,On.curryRight=cu,On.debounce=au,On.defaults=Af,On.defaultsDeep=kf,On.defer=Xo,On.delay=nf,On.difference=Ao,On.differenceBy=ko,On.differenceWith=Eo,On.drop=function(n,t,r){var e=null==n?0:n.length;
return e?(t=r||t===F?1:Ou(t),vr(n,0>t?0:t,e)):[]},On.dropRight=function(n,t,r){var e=null==n?0:n.length;return e?(t=r||t===F?1:Ou(t),t=e-t,vr(n,0,0>t?0:t)):[]},On.dropRightWhile=function(n,t){return n&&n.length?Ar(n,je(t,3),true,true):[]},On.dropWhile=function(n,t){return n&&n.length?Ar(n,je(t,3),true):[]},On.fill=function(n,t,r,e){var u=null==n?0:n.length;if(!u)return[];for(r&&typeof r!="number"&&ze(n,t,r)&&(r=0,e=u),u=n.length,r=Ou(r),0>r&&(r=-r>u?0:u+r),e=e===F||e>u?u:Ou(e),0>e&&(e+=u),e=r>e?0:Su(e);r<e;)n[r++]=t;
return n},On.filter=function(n,t){return(af(n)?f:At)(n,je(t,3))},On.flatMap=function(n,t){return kt(uu(n,t),1)},On.flatMapDeep=function(n,t){return kt(uu(n,t),N)},On.flatMapDepth=function(n,t,r){return r=r===F?1:Ou(r),kt(uu(n,t),r)},On.flatten=Ve,On.flattenDeep=function(n){return(null==n?0:n.length)?kt(n,N):[]},On.flattenDepth=function(n,t){return null!=n&&n.length?(t=t===F?1:Ou(t),kt(n,t)):[]},On.flip=function(n){return le(n,512)},On.flow=qf,On.flowRight=Vf,On.fromPairs=function(n){for(var t=-1,r=null==n?0:n.length,e={};++t<r;){
var u=n[t];e[u[0]]=u[1]}return e},On.functions=function(n){return null==n?[]:St(n,Lu(n))},On.functionsIn=function(n){return null==n?[]:St(n,Uu(n))},On.groupBy=qo,On.initial=function(n){return(null==n?0:n.length)?vr(n,0,-1):[]},On.intersection=Oo,On.intersectionBy=So,On.intersectionWith=Io,On.invert=Ef,On.invertBy=Of,On.invokeMap=Vo,On.iteratee=Pu,On.keyBy=Ko,On.keys=Lu,On.keysIn=Uu,On.map=uu,On.mapKeys=function(n,t){var r={};return t=je(t,3),Et(n,function(n,e,u){_t(r,t(n,e,u),n)}),r},On.mapValues=function(n,t){
var r={};return t=je(t,3),Et(n,function(n,e,u){_t(r,e,t(n,e,u))}),r},On.matches=function(n){return Qt(dt(n,1))},On.matchesProperty=function(n,t){return Xt(n,dt(t,1))},On.memoize=lu,On.merge=If,On.mergeWith=Rf,On.method=Kf,On.methodOf=Gf,On.mixin=Zu,On.negate=su,On.nthArg=function(n){return n=Ou(n),lr(function(t){return tr(t,n)})},On.omit=zf,On.omitBy=function(n,t){return Cu(n,su(je(t)))},On.once=function(n){return ou(2,n)},On.orderBy=function(n,t,r,e){return null==n?[]:(af(t)||(t=null==t?[]:[t]),
r=e?F:r,af(r)||(r=null==r?[]:[r]),rr(n,t,r))},On.over=Hf,On.overArgs=tf,On.overEvery=Jf,On.overSome=Yf,On.partial=rf,On.partialRight=ef,On.partition=Go,On.pick=Wf,On.pickBy=Cu,On.property=Vu,On.propertyOf=function(n){return function(t){return null==n?F:It(n,t)}},On.pull=Ro,On.pullAll=He,On.pullAllBy=function(n,t,r){return n&&n.length&&t&&t.length?or(n,t,je(r,2)):n},On.pullAllWith=function(n,t,r){return n&&n.length&&t&&t.length?or(n,t,F,r):n},On.pullAt=zo,On.range=Qf,On.rangeRight=Xf,On.rearg=uf,On.reject=function(n,t){
return(af(n)?f:At)(n,su(je(t,3)))},On.remove=function(n,t){var r=[];if(!n||!n.length)return r;var e=-1,u=[],i=n.length;for(t=je(t,3);++e<i;){var o=n[e];t(o,e,n)&&(r.push(o),u.push(e))}return fr(n,u),r},On.rest=function(n,t){if(typeof n!="function")throw new ei("Expected a function");return t=t===F?t:Ou(t),lr(n,t)},On.reverse=Je,On.sampleSize=function(n,t,r){return t=(r?ze(n,t,r):t===F)?1:Ou(t),(af(n)?ot:hr)(n,t)},On.set=function(n,t,r){return null==n?n:pr(n,t,r)},On.setWith=function(n,t,r,e){return e=typeof e=="function"?e:F,
null==n?n:pr(n,t,r,e)},On.shuffle=function(n){return(af(n)?ft:_r)(n)},On.slice=function(n,t,r){var e=null==n?0:n.length;return e?(r&&typeof r!="number"&&ze(n,t,r)?(t=0,r=e):(t=null==t?0:Ou(t),r=r===F?e:Ou(r)),vr(n,t,r)):[]},On.sortBy=Ho,On.sortedUniq=function(n){return n&&n.length?br(n):[]},On.sortedUniqBy=function(n,t){return n&&n.length?br(n,je(t,2)):[]},On.split=function(n,t,r){return r&&typeof r!="number"&&ze(n,t,r)&&(t=r=F),r=r===F?4294967295:r>>>0,r?(n=zu(n))&&(typeof t=="string"||null!=t&&!_f(t))&&(t=jr(t),
!t&&Bn.test(n))?zr($(n),0,r):n.split(t,r):[]},On.spread=function(n,t){if(typeof n!="function")throw new ei("Expected a function");return t=null==t?0:Di(Ou(t),0),lr(function(e){var u=e[t];return e=zr(e,0,t),u&&s(e,u),r(n,this,e)})},On.tail=function(n){var t=null==n?0:n.length;return t?vr(n,1,t):[]},On.take=function(n,t,r){return n&&n.length?(t=r||t===F?1:Ou(t),vr(n,0,0>t?0:t)):[]},On.takeRight=function(n,t,r){var e=null==n?0:n.length;return e?(t=r||t===F?1:Ou(t),t=e-t,vr(n,0>t?0:t,e)):[]},On.takeRightWhile=function(n,t){
return n&&n.length?Ar(n,je(t,3),false,true):[]},On.takeWhile=function(n,t){return n&&n.length?Ar(n,je(t,3)):[]},On.tap=function(n,t){return t(n),n},On.throttle=function(n,t,r){var e=true,u=true;if(typeof n!="function")throw new ei("Expected a function");return bu(r)&&(e="leading"in r?!!r.leading:e,u="trailing"in r?!!r.trailing:u),au(n,t,{leading:e,maxWait:t,trailing:u})},On.thru=nu,On.toArray=ku,On.toPairs=Bf,On.toPairsIn=Lf,On.toPath=function(n){return af(n)?l(n,$e):Au(n)?[n]:Mr(mo(zu(n)))},On.toPlainObject=Ru,
On.transform=function(n,t,r){var e=af(n),i=e||sf(n)||gf(n);if(t=je(t,4),null==r){var o=n&&n.constructor;r=i?e?new o:[]:bu(n)&&gu(o)?io(bi(n)):{}}return(i?u:Et)(n,function(n,e,u){return t(r,n,e,u)}),r},On.unary=function(n){return iu(n,1)},On.union=Wo,On.unionBy=Bo,On.unionWith=Lo,On.uniq=function(n){return n&&n.length?wr(n):[]},On.uniqBy=function(n,t){return n&&n.length?wr(n,je(t,2)):[]},On.uniqWith=function(n,t){return t=typeof t=="function"?t:F,n&&n.length?wr(n,F,t):[]},On.unset=function(n,t){return null==n||mr(n,t);
},On.unzip=Ye,On.unzipWith=Qe,On.update=function(n,t,r){return null==n?n:pr(n,t,Ir(r)(It(n,t)),void 0)},On.updateWith=function(n,t,r,e){return e=typeof e=="function"?e:F,null!=n&&(n=pr(n,t,Ir(r)(It(n,t)),e)),n},On.values=Du,On.valuesIn=function(n){return null==n?[]:I(n,Uu(n))},On.without=Uo,On.words=$u,On.wrap=function(n,t){return rf(Ir(t),n)},On.xor=Co,On.xorBy=Do,On.xorWith=Mo,On.zip=To,On.zipObject=function(n,t){return Or(n||[],t||[],at)},On.zipObjectDeep=function(n,t){return Or(n||[],t||[],pr);
},On.zipWith=$o,On.entries=Bf,On.entriesIn=Lf,On.extend=xf,On.extendWith=jf,Zu(On,On),On.add=nc,On.attempt=Pf,On.camelCase=Uf,On.capitalize=Mu,On.ceil=tc,On.clamp=function(n,t,r){return r===F&&(r=t,t=F),r!==F&&(r=Iu(r),r=r===r?r:0),t!==F&&(t=Iu(t),t=t===t?t:0),gt(Iu(n),t,r)},On.clone=function(n){return dt(n,4)},On.cloneDeep=function(n){return dt(n,5)},On.cloneDeepWith=function(n,t){return t=typeof t=="function"?t:F,dt(n,5,t)},On.cloneWith=function(n,t){return t=typeof t=="function"?t:F,dt(n,4,t)},
On.conformsTo=function(n,t){return null==t||bt(n,t,Lu(t))},On.deburr=Tu,On.defaultTo=function(n,t){return null==n||n!==n?t:n},On.divide=rc,On.endsWith=function(n,t,r){n=zu(n),t=jr(t);var e=n.length,e=r=r===F?e:gt(Ou(r),0,e);return r-=t.length,0<=r&&n.slice(r,e)==t},On.eq=hu,On.escape=function(n){return(n=zu(n))&&Y.test(n)?n.replace(H,et):n},On.escapeRegExp=function(n){return(n=zu(n))&&fn.test(n)?n.replace(on,"\\$&"):n},On.every=function(n,t,r){var e=af(n)?o:wt;return r&&ze(n,t,r)&&(t=F),e(n,je(t,3));
},On.find=Po,On.findIndex=Ze,On.findKey=function(n,t){return v(n,je(t,3),Et)},On.findLast=Zo,On.findLastIndex=qe,On.findLastKey=function(n,t){return v(n,je(t,3),Ot)},On.floor=ec,On.forEach=ru,On.forEachRight=eu,On.forIn=function(n,t){return null==n?n:co(n,je(t,3),Uu)},On.forInRight=function(n,t){return null==n?n:ao(n,je(t,3),Uu)},On.forOwn=function(n,t){return n&&Et(n,je(t,3))},On.forOwnRight=function(n,t){return n&&Ot(n,je(t,3))},On.get=Wu,On.gt=of,On.gte=ff,On.has=function(n,t){return null!=n&&ke(n,t,Bt);
},On.hasIn=Bu,On.head=Ke,On.identity=Nu,On.includes=function(n,t,r,e){return n=pu(n)?n:Du(n),r=r&&!e?Ou(r):0,e=n.length,0>r&&(r=Di(e+r,0)),mu(n)?r<=e&&-1<n.indexOf(t,r):!!e&&-1<d(n,t,r)},On.indexOf=function(n,t,r){var e=null==n?0:n.length;return e?(r=null==r?0:Ou(r),0>r&&(r=Di(e+r,0)),d(n,t,r)):-1},On.inRange=function(n,t,r){return t=Eu(t),r===F?(r=t,t=0):r=Eu(r),n=Iu(n),n>=Mi(t,r)&&n<Di(t,r)},On.invoke=Sf,On.isArguments=cf,On.isArray=af,On.isArrayBuffer=lf,On.isArrayLike=pu,On.isArrayLikeObject=_u,
On.isBoolean=function(n){return true===n||false===n||xu(n)&&"[object Boolean]"==zt(n)},On.isBuffer=sf,On.isDate=hf,On.isElement=function(n){return xu(n)&&1===n.nodeType&&!wu(n)},On.isEmpty=function(n){if(null==n)return true;if(pu(n)&&(af(n)||typeof n=="string"||typeof n.splice=="function"||sf(n)||gf(n)||cf(n)))return!n.length;var t=yo(n);if("[object Map]"==t||"[object Set]"==t)return!n.size;if(Le(n))return!Ht(n).length;for(var r in n)if(ci.call(n,r))return false;return true},On.isEqual=function(n,t){return Ft(n,t);
},On.isEqualWith=function(n,t,r){var e=(r=typeof r=="function"?r:F)?r(n,t):F;return e===F?Ft(n,t,F,r):!!e},On.isError=vu,On.isFinite=function(n){return typeof n=="number"&&Li(n)},On.isFunction=gu,On.isInteger=du,On.isLength=yu,On.isMap=pf,On.isMatch=function(n,t){return n===t||Pt(n,t,me(t))},On.isMatchWith=function(n,t,r){return r=typeof r=="function"?r:F,Pt(n,t,me(t),r)},On.isNaN=function(n){return ju(n)&&n!=+n},On.isNative=function(n){if(bo(n))throw new Yu("Unsupported core-js use. Try https://npms.io/search?q=ponyfill.");
return Zt(n)},On.isNil=function(n){return null==n},On.isNull=function(n){return null===n},On.isNumber=ju,On.isObject=bu,On.isObjectLike=xu,On.isPlainObject=wu,On.isRegExp=_f,On.isSafeInteger=function(n){return du(n)&&-9007199254740991<=n&&9007199254740991>=n},On.isSet=vf,On.isString=mu,On.isSymbol=Au,On.isTypedArray=gf,On.isUndefined=function(n){return n===F},On.isWeakMap=function(n){return xu(n)&&"[object WeakMap]"==yo(n)},On.isWeakSet=function(n){return xu(n)&&"[object WeakSet]"==zt(n)},On.join=function(n,t){
return null==n?"":Ui.call(n,t)},On.kebabCase=Cf,On.last=Ge,On.lastIndexOf=function(n,t,r){var e=null==n?0:n.length;if(!e)return-1;var u=e;if(r!==F&&(u=Ou(r),u=0>u?Di(e+u,0):Mi(u,e-1)),t===t){for(r=u+1;r--&&n[r]!==t;);n=r}else n=g(n,b,u,true);return n},On.lowerCase=Df,On.lowerFirst=Mf,On.lt=df,On.lte=yf,On.max=function(n){return n&&n.length?mt(n,Nu,Wt):F},On.maxBy=function(n,t){return n&&n.length?mt(n,je(t,2),Wt):F},On.mean=function(n){return x(n,Nu)},On.meanBy=function(n,t){return x(n,je(t,2))},On.min=function(n){
return n&&n.length?mt(n,Nu,Jt):F},On.minBy=function(n,t){return n&&n.length?mt(n,je(t,2),Jt):F},On.stubArray=Ku,On.stubFalse=Gu,On.stubObject=function(){return{}},On.stubString=function(){return""},On.stubTrue=function(){return true},On.multiply=uc,On.nth=function(n,t){return n&&n.length?tr(n,Ou(t)):F},On.noConflict=function(){return Zn._===this&&(Zn._=pi),this},On.noop=qu,On.now=Jo,On.pad=function(n,t,r){n=zu(n);var e=(t=Ou(t))?T(n):0;return!t||e>=t?n:(t=(t-e)/2,ee(zi(t),r)+n+ee(Ri(t),r))},On.padEnd=function(n,t,r){
n=zu(n);var e=(t=Ou(t))?T(n):0;return t&&e<t?n+ee(t-e,r):n},On.padStart=function(n,t,r){n=zu(n);var e=(t=Ou(t))?T(n):0;return t&&e<t?ee(t-e,r)+n:n},On.parseInt=function(n,t,r){return r||null==t?t=0:t&&(t=+t),$i(zu(n).replace(an,""),t||0)},On.random=function(n,t,r){if(r&&typeof r!="boolean"&&ze(n,t,r)&&(t=r=F),r===F&&(typeof t=="boolean"?(r=t,t=F):typeof n=="boolean"&&(r=n,n=F)),n===F&&t===F?(n=0,t=1):(n=Eu(n),t===F?(t=n,n=0):t=Eu(t)),n>t){var e=n;n=t,t=e}return r||n%1||t%1?(r=Fi(),Mi(n+r*(t-n+$n("1e-"+((r+"").length-1))),t)):cr(n,t);
},On.reduce=function(n,t,r){var e=af(n)?h:m,u=3>arguments.length;return e(n,je(t,4),r,u,oo)},On.reduceRight=function(n,t,r){var e=af(n)?p:m,u=3>arguments.length;return e(n,je(t,4),r,u,fo)},On.repeat=function(n,t,r){return t=(r?ze(n,t,r):t===F)?1:Ou(t),ar(zu(n),t)},On.replace=function(){var n=arguments,t=zu(n[0]);return 3>n.length?t:t.replace(n[1],n[2])},On.result=function(n,t,r){t=Rr(t,n);var e=-1,u=t.length;for(u||(u=1,n=F);++e<u;){var i=null==n?F:n[$e(t[e])];i===F&&(e=u,i=r),n=gu(i)?i.call(n):i;
}return n},On.round=ic,On.runInContext=w,On.sample=function(n){return(af(n)?tt:sr)(n)},On.size=function(n){if(null==n)return 0;if(pu(n))return mu(n)?T(n):n.length;var t=yo(n);return"[object Map]"==t||"[object Set]"==t?n.size:Ht(n).length},On.snakeCase=Tf,On.some=function(n,t,r){var e=af(n)?_:gr;return r&&ze(n,t,r)&&(t=F),e(n,je(t,3))},On.sortedIndex=function(n,t){return dr(n,t)},On.sortedIndexBy=function(n,t,r){return yr(n,t,je(r,2))},On.sortedIndexOf=function(n,t){var r=null==n?0:n.length;if(r){
var e=dr(n,t);if(e<r&&hu(n[e],t))return e}return-1},On.sortedLastIndex=function(n,t){return dr(n,t,true)},On.sortedLastIndexBy=function(n,t,r){return yr(n,t,je(r,2),true)},On.sortedLastIndexOf=function(n,t){if(null==n?0:n.length){var r=dr(n,t,true)-1;if(hu(n[r],t))return r}return-1},On.startCase=$f,On.startsWith=function(n,t,r){return n=zu(n),r=null==r?0:gt(Ou(r),0,n.length),t=jr(t),n.slice(r,r+t.length)==t},On.subtract=oc,On.sum=function(n){return n&&n.length?k(n,Nu):0},On.sumBy=function(n,t){return n&&n.length?k(n,je(t,2)):0;
},On.template=function(n,t,r){var e=On.templateSettings;r&&ze(n,t,r)&&(t=F),n=zu(n),t=jf({},t,e,se),r=jf({},t.imports,e.imports,se);var u,i,o=Lu(r),f=I(r,o),c=0;r=t.interpolate||An;var a="__p+='";r=ti((t.escape||An).source+"|"+r.source+"|"+(r===nn?gn:An).source+"|"+(t.evaluate||An).source+"|$","g");var l="sourceURL"in t?"//# sourceURL="+t.sourceURL+"\n":"";if(n.replace(r,function(t,r,e,o,f,l){return e||(e=o),a+=n.slice(c,l).replace(kn,B),r&&(u=true,a+="'+__e("+r+")+'"),f&&(i=true,a+="';"+f+";\n__p+='"),
e&&(a+="'+((__t=("+e+"))==null?'':__t)+'"),c=l+t.length,t}),a+="';",(t=t.variable)||(a="with(obj){"+a+"}"),a=(i?a.replace(q,""):a).replace(V,"$1").replace(K,"$1;"),a="function("+(t||"obj")+"){"+(t?"":"obj||(obj={});")+"var __t,__p=''"+(u?",__e=_.escape":"")+(i?",__j=Array.prototype.join;function print(){__p+=__j.call(arguments,'')}":";")+a+"return __p}",t=Pf(function(){return Qu(o,l+"return "+a).apply(F,f)}),t.source=a,vu(t))throw t;return t},On.times=function(n,t){if(n=Ou(n),1>n||9007199254740991<n)return[];
var r=4294967295,e=Mi(n,4294967295);for(t=je(t),n-=4294967295,e=E(e,t);++r<n;)t(r);return e},On.toFinite=Eu,On.toInteger=Ou,On.toLength=Su,On.toLower=function(n){return zu(n).toLowerCase()},On.toNumber=Iu,On.toSafeInteger=function(n){return n?gt(Ou(n),-9007199254740991,9007199254740991):0===n?n:0},On.toString=zu,On.toUpper=function(n){return zu(n).toUpperCase()},On.trim=function(n,t,r){return(n=zu(n))&&(r||t===F)?n.replace(cn,""):n&&(t=jr(t))?(n=$(n),r=$(t),t=z(n,r),r=W(n,r)+1,zr(n,t,r).join("")):n;
},On.trimEnd=function(n,t,r){return(n=zu(n))&&(r||t===F)?n.replace(ln,""):n&&(t=jr(t))?(n=$(n),t=W(n,$(t))+1,zr(n,0,t).join("")):n},On.trimStart=function(n,t,r){return(n=zu(n))&&(r||t===F)?n.replace(an,""):n&&(t=jr(t))?(n=$(n),t=z(n,$(t)),zr(n,t).join("")):n},On.truncate=function(n,t){var r=30,e="...";if(bu(t))var u="separator"in t?t.separator:u,r="length"in t?Ou(t.length):r,e="omission"in t?jr(t.omission):e;n=zu(n);var i=n.length;if(Bn.test(n))var o=$(n),i=o.length;if(r>=i)return n;if(i=r-T(e),1>i)return e;
if(r=o?zr(o,0,i).join(""):n.slice(0,i),u===F)return r+e;if(o&&(i+=r.length-i),_f(u)){if(n.slice(i).search(u)){var f=r;for(u.global||(u=ti(u.source,zu(dn.exec(u))+"g")),u.lastIndex=0;o=u.exec(f);)var c=o.index;r=r.slice(0,c===F?i:c)}}else n.indexOf(jr(u),i)!=i&&(u=r.lastIndexOf(u),-1<u&&(r=r.slice(0,u)));return r+e},On.unescape=function(n){return(n=zu(n))&&J.test(n)?n.replace(G,ut):n},On.uniqueId=function(n){var t=++ai;return zu(n)+t},On.upperCase=Ff,On.upperFirst=Nf,On.each=ru,On.eachRight=eu,On.first=Ke,
Zu(On,function(){var n={};return Et(On,function(t,r){ci.call(On.prototype,r)||(n[r]=t)}),n}(),{chain:false}),On.VERSION="4.17.4",u("bind bindKey curry curryRight partial partialRight".split(" "),function(n){On[n].placeholder=On}),u(["drop","take"],function(n,t){Mn.prototype[n]=function(r){r=r===F?1:Di(Ou(r),0);var e=this.__filtered__&&!t?new Mn(this):this.clone();return e.__filtered__?e.__takeCount__=Mi(r,e.__takeCount__):e.__views__.push({size:Mi(r,4294967295),type:n+(0>e.__dir__?"Right":"")}),e},Mn.prototype[n+"Right"]=function(t){
return this.reverse()[n](t).reverse()}}),u(["filter","map","takeWhile"],function(n,t){var r=t+1,e=1==r||3==r;Mn.prototype[n]=function(n){var t=this.clone();return t.__iteratees__.push({iteratee:je(n,3),type:r}),t.__filtered__=t.__filtered__||e,t}}),u(["head","last"],function(n,t){var r="take"+(t?"Right":"");Mn.prototype[n]=function(){return this[r](1).value()[0]}}),u(["initial","tail"],function(n,t){var r="drop"+(t?"":"Right");Mn.prototype[n]=function(){return this.__filtered__?new Mn(this):this[r](1);
}}),Mn.prototype.compact=function(){return this.filter(Nu)},Mn.prototype.find=function(n){return this.filter(n).head()},Mn.prototype.findLast=function(n){return this.reverse().find(n)},Mn.prototype.invokeMap=lr(function(n,t){return typeof n=="function"?new Mn(this):this.map(function(r){return Dt(r,n,t)})}),Mn.prototype.reject=function(n){return this.filter(su(je(n)))},Mn.prototype.slice=function(n,t){n=Ou(n);var r=this;return r.__filtered__&&(0<n||0>t)?new Mn(r):(0>n?r=r.takeRight(-n):n&&(r=r.drop(n)),
t!==F&&(t=Ou(t),r=0>t?r.dropRight(-t):r.take(t-n)),r)},Mn.prototype.takeRightWhile=function(n){return this.reverse().takeWhile(n).reverse()},Mn.prototype.toArray=function(){return this.take(4294967295)},Et(Mn.prototype,function(n,t){var r=/^(?:filter|find|map|reject)|While$/.test(t),e=/^(?:head|last)$/.test(t),u=On[e?"take"+("last"==t?"Right":""):t],i=e||/^find/.test(t);u&&(On.prototype[t]=function(){function t(n){return n=u.apply(On,s([n],f)),e&&h?n[0]:n}var o=this.__wrapped__,f=e?[1]:arguments,c=o instanceof Mn,a=f[0],l=c||af(o);
l&&r&&typeof a=="function"&&1!=a.length&&(c=l=false);var h=this.__chain__,p=!!this.__actions__.length,a=i&&!h,c=c&&!p;return!i&&l?(o=c?o:new Mn(this),o=n.apply(o,f),o.__actions__.push({func:nu,args:[t],thisArg:F}),new zn(o,h)):a&&c?n.apply(this,f):(o=this.thru(t),a?e?o.value()[0]:o.value():o)})}),u("pop push shift sort splice unshift".split(" "),function(n){var t=ui[n],r=/^(?:push|sort|unshift)$/.test(n)?"tap":"thru",e=/^(?:pop|shift)$/.test(n);On.prototype[n]=function(){var n=arguments;if(e&&!this.__chain__){
var u=this.value();return t.apply(af(u)?u:[],n)}return this[r](function(r){return t.apply(af(r)?r:[],n)})}}),Et(Mn.prototype,function(n,t){var r=On[t];if(r){var e=r.name+"";(Ji[e]||(Ji[e]=[])).push({name:t,func:r})}}),Ji[Xr(F,2).name]=[{name:"wrapper",func:F}],Mn.prototype.clone=function(){var n=new Mn(this.__wrapped__);return n.__actions__=Mr(this.__actions__),n.__dir__=this.__dir__,n.__filtered__=this.__filtered__,n.__iteratees__=Mr(this.__iteratees__),n.__takeCount__=this.__takeCount__,n.__views__=Mr(this.__views__),
n},Mn.prototype.reverse=function(){if(this.__filtered__){var n=new Mn(this);n.__dir__=-1,n.__filtered__=true}else n=this.clone(),n.__dir__*=-1;return n},Mn.prototype.value=function(){var n,t=this.__wrapped__.value(),r=this.__dir__,e=af(t),u=0>r,i=e?t.length:0;n=i;for(var o=this.__views__,f=0,c=-1,a=o.length;++c<a;){var l=o[c],s=l.size;switch(l.type){case"drop":f+=s;break;case"dropRight":n-=s;break;case"take":n=Mi(n,f+s);break;case"takeRight":f=Di(f,n-s)}}if(n={start:f,end:n},o=n.start,f=n.end,n=f-o,
o=u?f:o-1,f=this.__iteratees__,c=f.length,a=0,l=Mi(n,this.__takeCount__),!e||!u&&i==n&&l==n)return kr(t,this.__actions__);e=[];n:for(;n--&&a<l;){for(o+=r,u=-1,i=t[o];++u<c;){var h=f[u],s=h.type,h=(0,h.iteratee)(i);if(2==s)i=h;else if(!h){if(1==s)continue n;break n}}e[a++]=i}return e},On.prototype.at=Fo,On.prototype.chain=function(){return Xe(this)},On.prototype.commit=function(){return new zn(this.value(),this.__chain__)},On.prototype.next=function(){this.__values__===F&&(this.__values__=ku(this.value()));
var n=this.__index__>=this.__values__.length;return{done:n,value:n?F:this.__values__[this.__index__++]}},On.prototype.plant=function(n){for(var t,r=this;r instanceof Sn;){var e=Pe(r);e.__index__=0,e.__values__=F,t?u.__wrapped__=e:t=e;var u=e,r=r.__wrapped__}return u.__wrapped__=n,t},On.prototype.reverse=function(){var n=this.__wrapped__;return n instanceof Mn?(this.__actions__.length&&(n=new Mn(this)),n=n.reverse(),n.__actions__.push({func:nu,args:[Je],thisArg:F}),new zn(n,this.__chain__)):this.thru(Je);
},On.prototype.toJSON=On.prototype.valueOf=On.prototype.value=function(){return kr(this.__wrapped__,this.__actions__)},On.prototype.first=On.prototype.head,Ai&&(On.prototype[Ai]=tu),On}();typeof define=="function"&&typeof define.amd=="object"&&define.amd?(Zn._=it, define(function(){return it})):Vn?((Vn.exports=it)._=it,qn._=it):Zn._=it}).call(this);!function(t,n){"object"==typeof exports&&"undefined"!=typeof module?n(exports):"function"==typeof define&&define.amd?define(["exports"],n):n(t.d3=t.d3||{})}(this,function(t){"use strict";function n(t){return function(n,e){return Mf(t(n),e)}}function e(t,n){return[t,n]}function r(t,n,e){var r=(n-t)/Math.max(0,e),i=Math.floor(Math.log(r)/Math.LN10),o=r/Math.pow(10,i);return i>=0?(o>=If?10:o>=Hf?5:o>=Bf?2:1)*Math.pow(10,i):-Math.pow(10,-i)/(o>=If?10:o>=Hf?5:o>=Bf?2:1)}function i(t,n,e){var r=Math.abs(n-t)/Math.max(0,e),i=Math.pow(10,Math.floor(Math.log(r)/Math.LN10)),o=r/i;return o>=If?i*=10:o>=Hf?i*=5:o>=Bf&&(i*=2),n<t?-i:i}function o(t){return t.length}function u(t){return"translate("+(t+.5)+",0)"}function a(t){return"translate(0,"+(t+.5)+")"}function c(t){return function(n){return+t(n)}}function s(t){var n=Math.max(0,t.bandwidth()-1)/2;return t.round()&&(n=Math.round(n)),function(e){return+t(e)+n}}function f(){return!this.__axis}function l(t,n){function e(e){var u=null==i?n.ticks?n.ticks.apply(n,r):n.domain():i,a=null==o?n.tickFormat?n.tickFormat.apply(n,r):cl:o,y=Math.max(l,0)+p,_=n.range(),m=+_[0]+.5,x=+_[_.length-1]+.5,b=(n.bandwidth?s:c)(n.copy()),w=e.selection?e.selection():e,M=w.selectAll(".domain").data([null]),T=w.selectAll(".tick").data(u,n).order(),N=T.exit(),k=T.enter().append("g").attr("class","tick"),S=T.select("line"),A=T.select("text");M=M.merge(M.enter().insert("path",".tick").attr("class","domain").attr("stroke","#000")),T=T.merge(k),S=S.merge(k.append("line").attr("stroke","#000").attr(v+"2",d*l)),A=A.merge(k.append("text").attr("fill","#000").attr(v,d*y).attr("dy",t===sl?"0em":t===ll?"0.71em":"0.32em")),e!==w&&(M=M.transition(e),T=T.transition(e),S=S.transition(e),A=A.transition(e),N=N.transition(e).attr("opacity",pl).attr("transform",function(t){return isFinite(t=b(t))?g(t):this.getAttribute("transform")}),k.attr("opacity",pl).attr("transform",function(t){var n=this.parentNode.__axis;return g(n&&isFinite(n=n(t))?n:b(t))})),N.remove(),M.attr("d",t===hl||t==fl?"M"+d*h+","+m+"H0.5V"+x+"H"+d*h:"M"+m+","+d*h+"V0.5H"+x+"V"+d*h),T.attr("opacity",1).attr("transform",function(t){return g(b(t))}),S.attr(v+"2",d*l),A.attr(v,d*y).text(a),w.filter(f).attr("fill","none").attr("font-size",10).attr("font-family","sans-serif").attr("text-anchor",t===fl?"start":t===hl?"end":"middle"),w.each(function(){this.__axis=b})}var r=[],i=null,o=null,l=6,h=6,p=3,d=t===sl||t===hl?-1:1,v=t===hl||t===fl?"x":"y",g=t===sl||t===ll?u:a;return e.scale=function(t){return arguments.length?(n=t,e):n},e.ticks=function(){return r=al.call(arguments),e},e.tickArguments=function(t){return arguments.length?(r=null==t?[]:al.call(t),e):r.slice()},e.tickValues=function(t){return arguments.length?(i=null==t?null:al.call(t),e):i&&i.slice()},e.tickFormat=function(t){return arguments.length?(o=t,e):o},e.tickSize=function(t){return arguments.length?(l=h=+t,e):l},e.tickSizeInner=function(t){return arguments.length?(l=+t,e):l},e.tickSizeOuter=function(t){return arguments.length?(h=+t,e):h},e.tickPadding=function(t){return arguments.length?(p=+t,e):p},e}function h(t){return l(sl,t)}function p(t){return l(fl,t)}function d(t){return l(ll,t)}function v(t){return l(hl,t)}function g(){for(var t,n=0,e=arguments.length,r={};n<e;++n){if(!(t=arguments[n]+"")||t in r)throw new Error("illegal type: "+t);r[t]=[]}return new y(r)}function y(t){this._=t}function _(t,n){return t.trim().split(/^|\s+/).map(function(t){var e="",r=t.indexOf(".");if(r>=0&&(e=t.slice(r+1),t=t.slice(0,r)),t&&!n.hasOwnProperty(t))throw new Error("unknown type: "+t);return{type:t,name:e}})}function m(t,n){for(var e,r=0,i=t.length;r<i;++r)if((e=t[r]).name===n)return e.value}function x(t,n,e){for(var r=0,i=t.length;r<i;++r)if(t[r].name===n){t[r]=dl,t=t.slice(0,r).concat(t.slice(r+1));break}return null!=e&&t.push({name:n,value:e}),t}function b(t){return function(){var n=this.ownerDocument,e=this.namespaceURI;return e===vl&&n.documentElement.namespaceURI===vl?n.createElement(t):n.createElementNS(e,t)}}function w(t){return function(){return this.ownerDocument.createElementNS(t.space,t.local)}}function M(){return new T}function T(){this._="@"+(++ml).toString(36)}function N(t,n,e){return t=k(t,n,e),function(n){var e=n.relatedTarget;e&&(e===this||8&e.compareDocumentPosition(this))||t.call(this,n)}}function k(n,e,r){return function(i){var o=t.event;t.event=i;try{n.call(this,this.__data__,e,r)}finally{t.event=o}}}function S(t){return t.trim().split(/^|\s+/).map(function(t){var n="",e=t.indexOf(".");return e>=0&&(n=t.slice(e+1),t=t.slice(0,e)),{type:t,name:n}})}function A(t){return function(){var n=this.__on;if(n){for(var e,r=0,i=-1,o=n.length;r<o;++r)e=n[r],t.type&&e.type!==t.type||e.name!==t.name?n[++i]=e:this.removeEventListener(e.type,e.listener,e.capture);++i?n.length=i:delete this.__on}}}function E(t,n,e){var r=Tl.hasOwnProperty(t.type)?N:k;return function(i,o,u){var a,c=this.__on,s=r(n,o,u);if(c)for(var f=0,l=c.length;f<l;++f)if((a=c[f]).type===t.type&&a.name===t.name)return this.removeEventListener(a.type,a.listener,a.capture),this.addEventListener(a.type,a.listener=s,a.capture=e),void(a.value=n);this.addEventListener(t.type,s,e),a={type:t.type,name:t.name,value:n,listener:s,capture:e},c?c.push(a):this.__on=[a]}}function C(n,e,r,i){var o=t.event;n.sourceEvent=t.event,t.event=n;try{return e.apply(r,i)}finally{t.event=o}}function z(){}function P(){return[]}function R(t,n){this.ownerDocument=t.ownerDocument,this.namespaceURI=t.namespaceURI,this._next=null,this._parent=t,this.__data__=n}function L(t,n,e,r,i,o){for(var u,a=0,c=n.length,s=o.length;a<s;++a)(u=n[a])?(u.__data__=o[a],r[a]=u):e[a]=new R(t,o[a]);for(;a<c;++a)(u=n[a])&&(i[a]=u)}function D(t,n,e,r,i,o,u){var a,c,s,f={},l=n.length,h=o.length,p=new Array(l);for(a=0;a<l;++a)(c=n[a])&&(p[a]=s=Ul+u.call(c,c.__data__,a,n),s in f?i[a]=c:f[s]=c);for(a=0;a<h;++a)s=Ul+u.call(t,o[a],a,o),(c=f[s])?(r[a]=c,c.__data__=o[a],f[s]=null):e[a]=new R(t,o[a]);for(a=0;a<l;++a)(c=n[a])&&f[p[a]]===c&&(i[a]=c)}function q(t,n){return t<n?-1:t>n?1:t>=n?0:NaN}function U(t){return function(){this.removeAttribute(t)}}function O(t){return function(){this.removeAttributeNS(t.space,t.local)}}function F(t,n){return function(){this.setAttribute(t,n)}}function Y(t,n){return function(){this.setAttributeNS(t.space,t.local,n)}}function I(t,n){return function(){var e=n.apply(this,arguments);null==e?this.removeAttribute(t):this.setAttribute(t,e)}}function H(t,n){return function(){var e=n.apply(this,arguments);null==e?this.removeAttributeNS(t.space,t.local):this.setAttributeNS(t.space,t.local,e)}}function B(t){return function(){this.style.removeProperty(t)}}function j(t,n,e){return function(){this.style.setProperty(t,n,e)}}function X(t,n,e){return function(){var r=n.apply(this,arguments);null==r?this.style.removeProperty(t):this.style.setProperty(t,r,e)}}function W(t,n){return t.style.getPropertyValue(n)||Gl(t).getComputedStyle(t,null).getPropertyValue(n)}function V(t){return function(){delete this[t]}}function $(t,n){return function(){this[t]=n}}function Z(t,n){return function(){var e=n.apply(this,arguments);null==e?delete this[t]:this[t]=e}}function G(t){return t.trim().split(/^|\s+/)}function Q(t){return t.classList||new J(t)}function J(t){this._node=t,this._names=G(t.getAttribute("class")||"")}function K(t,n){for(var e=Q(t),r=-1,i=n.length;++r<i;)e.add(n[r])}function tt(t,n){for(var e=Q(t),r=-1,i=n.length;++r<i;)e.remove(n[r])}function nt(t){return function(){K(this,t)}}function et(t){return function(){tt(this,t)}}function rt(t,n){return function(){(n.apply(this,arguments)?K:tt)(this,t)}}function it(){this.textContent=""}function ot(t){return function(){this.textContent=t}}function ut(t){return function(){var n=t.apply(this,arguments);this.textContent=null==n?"":n}}function at(){this.innerHTML=""}function ct(t){return function(){this.innerHTML=t}}function st(t){return function(){var n=t.apply(this,arguments);this.innerHTML=null==n?"":n}}function ft(){this.nextSibling&&this.parentNode.appendChild(this)}function lt(){this.previousSibling&&this.parentNode.insertBefore(this,this.parentNode.firstChild)}function ht(){return null}function pt(){var t=this.parentNode;t&&t.removeChild(this)}function dt(t,n,e){var r=Gl(t),i=r.CustomEvent;"function"==typeof i?i=new i(n,e):(i=r.document.createEvent("Event"),e?(i.initEvent(n,e.bubbles,e.cancelable),i.detail=e.detail):i.initEvent(n,!1,!1)),t.dispatchEvent(i)}function vt(t,n){return function(){return dt(this,t,n)}}function gt(t,n){return function(){return dt(this,t,n.apply(this,arguments))}}function yt(t,n){this._groups=t,this._parents=n}function _t(){return new yt([[document.documentElement]],sh)}function mt(){t.event.stopImmediatePropagation()}function xt(t,n){var e=t.document.documentElement,r=fh(t).on("dragstart.drag",null);n&&(r.on("click.drag",dh,!0),setTimeout(function(){r.on("click.drag",null)},0)),"onselectstart"in e?r.on("selectstart.drag",null):(e.style.MozUserSelect=e.__noselect,delete e.__noselect)}function bt(t,n,e,r,i,o,u,a,c,s){this.target=t,this.type=n,this.subject=e,this.identifier=r,this.active=i,this.x=o,this.y=u,this.dx=a,this.dy=c,this._=s}function wt(){return!t.event.button}function Mt(){return this.parentNode}function Tt(n){return null==n?{x:t.event.x,y:t.event.y}:n}function Nt(){return"ontouchstart"in this}function kt(t,n){var e=Object.create(t.prototype);for(var r in n)e[r]=n[r];return e}function St(){}function At(t){var n;return t=(t+"").trim().toLowerCase(),(n=wh.exec(t))?(n=parseInt(n[1],16),new Rt(n>>8&15|n>>4&240,n>>4&15|240&n,(15&n)<<4|15&n,1)):(n=Mh.exec(t))?Et(parseInt(n[1],16)):(n=Th.exec(t))?new Rt(n[1],n[2],n[3],1):(n=Nh.exec(t))?new Rt(255*n[1]/100,255*n[2]/100,255*n[3]/100,1):(n=kh.exec(t))?Ct(n[1],n[2],n[3],n[4]):(n=Sh.exec(t))?Ct(255*n[1]/100,255*n[2]/100,255*n[3]/100,n[4]):(n=Ah.exec(t))?Lt(n[1],n[2]/100,n[3]/100,1):(n=Eh.exec(t))?Lt(n[1],n[2]/100,n[3]/100,n[4]):Ch.hasOwnProperty(t)?Et(Ch[t]):"transparent"===t?new Rt(NaN,NaN,NaN,0):null}function Et(t){return new Rt(t>>16&255,t>>8&255,255&t,1)}function Ct(t,n,e,r){return r<=0&&(t=n=e=NaN),new Rt(t,n,e,r)}function zt(t){return t instanceof St||(t=At(t)),t?(t=t.rgb(),new Rt(t.r,t.g,t.b,t.opacity)):new Rt}function Pt(t,n,e,r){return 1===arguments.length?zt(t):new Rt(t,n,e,null==r?1:r)}function Rt(t,n,e,r){this.r=+t,this.g=+n,this.b=+e,this.opacity=+r}function Lt(t,n,e,r){return r<=0?t=n=e=NaN:e<=0||e>=1?t=n=NaN:n<=0&&(t=NaN),new Ut(t,n,e,r)}function Dt(t){if(t instanceof Ut)return new Ut(t.h,t.s,t.l,t.opacity);if(t instanceof St||(t=At(t)),!t)return new Ut;if(t instanceof Ut)return t;t=t.rgb();var n=t.r/255,e=t.g/255,r=t.b/255,i=Math.min(n,e,r),o=Math.max(n,e,r),u=NaN,a=o-i,c=(o+i)/2;return a?(u=n===o?(e-r)/a+6*(e<r):e===o?(r-n)/a+2:(n-e)/a+4,a/=c<.5?o+i:2-o-i,u*=60):a=c>0&&c<1?0:u,new Ut(u,a,c,t.opacity)}function qt(t,n,e,r){return 1===arguments.length?Dt(t):new Ut(t,n,e,null==r?1:r)}function Ut(t,n,e,r){this.h=+t,this.s=+n,this.l=+e,this.opacity=+r}function Ot(t,n,e){return 255*(t<60?n+(e-n)*t/60:t<180?e:t<240?n+(e-n)*(240-t)/60:n)}function Ft(t){if(t instanceof It)return new It(t.l,t.a,t.b,t.opacity);if(t instanceof $t){var n=t.h*zh;return new It(t.l,Math.cos(n)*t.c,Math.sin(n)*t.c,t.opacity)}t instanceof Rt||(t=zt(t));var e=Xt(t.r),r=Xt(t.g),i=Xt(t.b),o=Ht((.4124564*e+.3575761*r+.1804375*i)/Rh),u=Ht((.2126729*e+.7151522*r+.072175*i)/Lh);return new It(116*u-16,500*(o-u),200*(u-Ht((.0193339*e+.119192*r+.9503041*i)/Dh)),t.opacity)}function Yt(t,n,e,r){return 1===arguments.length?Ft(t):new It(t,n,e,null==r?1:r)}function It(t,n,e,r){this.l=+t,this.a=+n,this.b=+e,this.opacity=+r}function Ht(t){return t>Fh?Math.pow(t,1/3):t/Oh+qh}function Bt(t){return t>Uh?t*t*t:Oh*(t-qh)}function jt(t){return 255*(t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055)}function Xt(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function Wt(t){if(t instanceof $t)return new $t(t.h,t.c,t.l,t.opacity);t instanceof It||(t=Ft(t));var n=Math.atan2(t.b,t.a)*Ph;return new $t(n<0?n+360:n,Math.sqrt(t.a*t.a+t.b*t.b),t.l,t.opacity)}function Vt(t,n,e,r){return 1===arguments.length?Wt(t):new $t(t,n,e,null==r?1:r)}function $t(t,n,e,r){this.h=+t,this.c=+n,this.l=+e,this.opacity=+r}function Zt(t){if(t instanceof Qt)return new Qt(t.h,t.s,t.l,t.opacity);t instanceof Rt||(t=zt(t));var n=t.r/255,e=t.g/255,r=t.b/255,i=(Vh*r+Xh*n-Wh*e)/(Vh+Xh-Wh),o=r-i,u=(jh*(e-i)-Hh*o)/Bh,a=Math.sqrt(u*u+o*o)/(jh*i*(1-i)),c=a?Math.atan2(u,o)*Ph-120:NaN;return new Qt(c<0?c+360:c,a,i,t.opacity)}function Gt(t,n,e,r){return 1===arguments.length?Zt(t):new Qt(t,n,e,null==r?1:r)}function Qt(t,n,e,r){this.h=+t,this.s=+n,this.l=+e,this.opacity=+r}function Jt(t,n,e,r,i){var o=t*t,u=o*t;return((1-3*t+3*o-u)*n+(4-6*o+3*u)*e+(1+3*t+3*o-3*u)*r+u*i)/6}function Kt(t,n){return function(e){return t+e*n}}function tn(t,n,e){return t=Math.pow(t,e),n=Math.pow(n,e)-t,e=1/e,function(r){return Math.pow(t+r*n,e)}}function nn(t,n){var e=n-t;return e?Kt(t,e>180||e<-180?e-360*Math.round(e/360):e):ep(isNaN(t)?n:t)}function en(t){return 1==(t=+t)?rn:function(n,e){return e-n?tn(n,e,t):ep(isNaN(n)?e:n)}}function rn(t,n){var e=n-t;return e?Kt(t,e):ep(isNaN(t)?n:t)}function on(t){return function(n){var e,r,i=n.length,o=new Array(i),u=new Array(i),a=new Array(i);for(e=0;e<i;++e)r=Pt(n[e]),o[e]=r.r||0,u[e]=r.g||0,a[e]=r.b||0;return o=t(o),u=t(u),a=t(a),r.opacity=1,function(t){return r.r=o(t),r.g=u(t),r.b=a(t),r+""}}}function un(t){return function(){return t}}function an(t){return function(n){return t(n)+""}}function cn(t){return"none"===t?gp:($h||($h=document.createElement("DIV"),Zh=document.documentElement,Gh=document.defaultView),$h.style.transform=t,t=Gh.getComputedStyle(Zh.appendChild($h),null).getPropertyValue("transform"),Zh.removeChild($h),t=t.slice(7,-1).split(","),yp(+t[0],+t[1],+t[2],+t[3],+t[4],+t[5]))}function sn(t){return null==t?gp:(Qh||(Qh=document.createElementNS("http://www.w3.org/2000/svg","g")),Qh.setAttribute("transform",t),(t=Qh.transform.baseVal.consolidate())?(t=t.matrix,yp(t.a,t.b,t.c,t.d,t.e,t.f)):gp)}function fn(t,n,e,r){function i(t){return t.length?t.pop()+" ":""}function o(t,r,i,o,u,a){if(t!==i||r!==o){var c=u.push("translate(",null,n,null,e);a.push({i:c-4,x:cp(t,i)},{i:c-2,x:cp(r,o)})}else(i||o)&&u.push("translate("+i+n+o+e)}function u(t,n,e,o){t!==n?(t-n>180?n+=360:n-t>180&&(t+=360),o.push({i:e.push(i(e)+"rotate(",null,r)-2,x:cp(t,n)})):n&&e.push(i(e)+"rotate("+n+r)}function a(t,n,e,o){t!==n?o.push({i:e.push(i(e)+"skewX(",null,r)-2,x:cp(t,n)}):n&&e.push(i(e)+"skewX("+n+r)}function c(t,n,e,r,o,u){if(t!==e||n!==r){var a=o.push(i(o)+"scale(",null,",",null,")");u.push({i:a-4,x:cp(t,e)},{i:a-2,x:cp(n,r)})}else 1===e&&1===r||o.push(i(o)+"scale("+e+","+r+")")}return function(n,e){var r=[],i=[];return n=t(n),e=t(e),o(n.translateX,n.translateY,e.translateX,e.translateY,r,i),u(n.rotate,e.rotate,r,i),a(n.skewX,e.skewX,r,i),c(n.scaleX,n.scaleY,e.scaleX,e.scaleY,r,i),n=e=null,function(t){for(var n,e=-1,o=i.length;++e<o;)r[(n=i[e]).i]=n.x(t);return r.join("")}}}function ln(t){return((t=Math.exp(t))+1/t)/2}function hn(t){return((t=Math.exp(t))-1/t)/2}function pn(t){return((t=Math.exp(2*t))-1)/(t+1)}function dn(t){return function(n,e){var r=t((n=qt(n)).h,(e=qt(e)).h),i=rn(n.s,e.s),o=rn(n.l,e.l),u=rn(n.opacity,e.opacity);return function(t){return n.h=r(t),n.s=i(t),n.l=o(t),n.opacity=u(t),n+""}}}function vn(t,n){var e=rn((t=Yt(t)).l,(n=Yt(n)).l),r=rn(t.a,n.a),i=rn(t.b,n.b),o=rn(t.opacity,n.opacity);return function(n){return t.l=e(n),t.a=r(n),t.b=i(n),t.opacity=o(n),t+""}}function gn(t){return function(n,e){var r=t((n=Vt(n)).h,(e=Vt(e)).h),i=rn(n.c,e.c),o=rn(n.l,e.l),u=rn(n.opacity,e.opacity);return function(t){return n.h=r(t),n.c=i(t),n.l=o(t),n.opacity=u(t),n+""}}}function yn(t){return function n(e){function r(n,r){var i=t((n=Gt(n)).h,(r=Gt(r)).h),o=rn(n.s,r.s),u=rn(n.l,r.l),a=rn(n.opacity,r.opacity);return function(t){return n.h=i(t),n.s=o(t),n.l=u(Math.pow(t,e)),n.opacity=a(t),n+""}}return e=+e,r.gamma=n,r}(1)}function _n(){return Lp||(Up(mn),Lp=qp.now()+Dp)}function mn(){Lp=0}function xn(){this._call=this._time=this._next=null}function bn(t,n,e){var r=new xn;return r.restart(t,n,e),r}function wn(){_n(),++Ep;for(var t,n=Jh;n;)(t=Lp-n._time)>=0&&n._call.call(null,t),n=n._next;--Ep}function Mn(){Lp=(Rp=qp.now())+Dp,Ep=Cp=0;try{wn()}finally{Ep=0,Nn(),Lp=0}}function Tn(){var t=qp.now(),n=t-Rp;n>Pp&&(Dp-=n,Rp=t)}function Nn(){for(var t,n,e=Jh,r=1/0;e;)e._call?(r>e._time&&(r=e._time),t=e,e=e._next):(n=e._next,e._next=null,e=t?t._next=n:Jh=n);Kh=t,kn(r)}function kn(t){if(!Ep){Cp&&(Cp=clearTimeout(Cp));t-Lp>24?(t<1/0&&(Cp=setTimeout(Mn,t-qp.now()-Dp)),zp&&(zp=clearInterval(zp))):(zp||(Rp=qp.now(),zp=setInterval(Tn,Pp)),Ep=1,Up(Mn))}}function Sn(t,n){var e=En(t,n);if(e.state>Hp)throw new Error("too late; already scheduled");return e}function An(t,n){var e=En(t,n);if(e.state>jp)throw new Error("too late; already started");return e}function En(t,n){var e=t.__transition;if(!e||!(e=e[n]))throw new Error("transition not found");return e}function Cn(t,n,e){function r(t){e.state=Bp,e.timer.restart(i,e.delay,e.time),e.delay<=t&&i(t-e.delay)}function i(r){var s,f,l,h;if(e.state!==Bp)return u();for(s in c)if(h=c[s],h.name===e.name){if(h.state===Xp)return Op(i);h.state===Wp?(h.state=$p,h.timer.stop(),h.on.call("interrupt",t,t.__data__,h.index,h.group),delete c[s]):+s<n&&(h.state=$p,h.timer.stop(),delete c[s])}if(Op(function(){e.state===Xp&&(e.state=Wp,e.timer.restart(o,e.delay,e.time),o(r))}),e.state=jp,e.on.call("start",t,t.__data__,e.index,e.group),e.state===jp){for(e.state=Xp,a=new Array(l=e.tween.length),s=0,f=-1;s<l;++s)(h=e.tween[s].value.call(t,t.__data__,e.index,e.group))&&(a[++f]=h);a.length=f+1}}function o(n){for(var r=n<e.duration?e.ease.call(null,n/e.duration):(e.timer.restart(u),e.state=Vp,1),i=-1,o=a.length;++i<o;)a[i].call(null,r);e.state===Vp&&(e.on.call("end",t,t.__data__,e.index,e.group),u())}function u(){e.state=$p,e.timer.stop(),delete c[n];for(var r in c)return;delete t.__transition}var a,c=t.__transition;c[n]=e,e.timer=bn(r,0,e.time)}function zn(t,n){var e,r;return function(){var i=An(this,t),o=i.tween;if(o!==e){r=e=o;for(var u=0,a=r.length;u<a;++u)if(r[u].name===n){r=r.slice(),r.splice(u,1);break}}i.tween=r}}function Pn(t,n,e){var r,i;if("function"!=typeof e)throw new Error;return function(){var o=An(this,t),u=o.tween;if(u!==r){i=(r=u).slice();for(var a={name:n,value:e},c=0,s=i.length;c<s;++c)if(i[c].name===n){i[c]=a;break}c===s&&i.push(a)}o.tween=i}}function Rn(t,n,e){var r=t._id;return t.each(function(){var t=An(this,r);(t.value||(t.value={}))[n]=e.apply(this,arguments)}),function(t){return En(t,r).value[n]}}function Ln(t){return function(){this.removeAttribute(t)}}function Dn(t){return function(){this.removeAttributeNS(t.space,t.local)}}function qn(t,n,e){var r,i;return function(){var o=this.getAttribute(t);return o===e?null:o===r?i:i=n(r=o,e)}}function Un(t,n,e){var r,i;return function(){var o=this.getAttributeNS(t.space,t.local);return o===e?null:o===r?i:i=n(r=o,e)}}function On(t,n,e){var r,i,o;return function(){var u,a=e(this);return null==a?void this.removeAttribute(t):(u=this.getAttribute(t),u===a?null:u===r&&a===i?o:o=n(r=u,i=a))}}function Fn(t,n,e){var r,i,o;return function(){var u,a=e(this);return null==a?void this.removeAttributeNS(t.space,t.local):(u=this.getAttributeNS(t.space,t.local),u===a?null:u===r&&a===i?o:o=n(r=u,i=a))}}function Yn(t,n){function e(){var e=this,r=n.apply(e,arguments);return r&&function(n){e.setAttributeNS(t.space,t.local,r(n))}}return e._value=n,e}function In(t,n){function e(){var e=this,r=n.apply(e,arguments);return r&&function(n){e.setAttribute(t,r(n))}}return e._value=n,e}function Hn(t,n){return function(){Sn(this,t).delay=+n.apply(this,arguments)}}function Bn(t,n){return n=+n,function(){Sn(this,t).delay=n}}function jn(t,n){return function(){An(this,t).duration=+n.apply(this,arguments)}}function Xn(t,n){return n=+n,function(){An(this,t).duration=n}}function Wn(t,n){if("function"!=typeof n)throw new Error;return function(){An(this,t).ease=n}}function Vn(t){return(t+"").trim().split(/^|\s+/).every(function(t){var n=t.indexOf(".");return n>=0&&(t=t.slice(0,n)),!t||"start"===t})}function $n(t,n,e){var r,i,o=Vn(n)?Sn:An;return function(){var u=o(this,t),a=u.on;a!==r&&(i=(r=a).copy()).on(n,e),u.on=i}}function Zn(t){return function(){var n=this.parentNode;for(var e in this.__transition)if(+e!==t)return;n&&n.removeChild(this)}}function Gn(t,n){var e,r,i;return function(){var o=W(this,t),u=(this.style.removeProperty(t),W(this,t));return o===u?null:o===e&&u===r?i:i=n(e=o,r=u)}}function Qn(t){return function(){this.style.removeProperty(t)}}function Jn(t,n,e){var r,i;return function(){var o=W(this,t);return o===e?null:o===r?i:i=n(r=o,e)}}function Kn(t,n,e){var r,i,o;return function(){var u=W(this,t),a=e(this);return null==a&&(this.style.removeProperty(t),a=W(this,t)),u===a?null:u===r&&a===i?o:o=n(r=u,i=a)}}function te(t,n,e){function r(){var r=this,i=n.apply(r,arguments);return i&&function(n){r.style.setProperty(t,i(n),e)}}return r._value=n,r}function ne(t){return function(){this.textContent=t}}function ee(t){return function(){var n=t(this);this.textContent=null==n?"":n}}function re(t,n,e,r){this._groups=t,this._parents=n,this._name=e,this._id=r}function ie(t){return _t().transition(t)}function oe(){return++yd}function ue(t){return+t}function ae(t){return t*t}function ce(t){return t*(2-t)}function se(t){return((t*=2)<=1?t*t:--t*(2-t)+1)/2}function fe(t){return t*t*t}function le(t){return--t*t*t+1}function he(t){return((t*=2)<=1?t*t*t:(t-=2)*t*t+2)/2}function pe(t){return 1-Math.cos(t*Md)}function de(t){return Math.sin(t*Md)}function ve(t){return(1-Math.cos(wd*t))/2}function ge(t){return Math.pow(2,10*t-10)}function ye(t){return 1-Math.pow(2,-10*t)}function _e(t){return((t*=2)<=1?Math.pow(2,10*t-10):2-Math.pow(2,10-10*t))/2}function me(t){return 1-Math.sqrt(1-t*t)}function xe(t){return Math.sqrt(1- --t*t)}function be(t){return((t*=2)<=1?1-Math.sqrt(1-t*t):Math.sqrt(1-(t-=2)*t)+1)/2}function we(t){return 1-Me(1-t)}function Me(t){return(t=+t)<Td?Rd*t*t:t<kd?Rd*(t-=Nd)*t+Sd:t<Ed?Rd*(t-=Ad)*t+Cd:Rd*(t-=zd)*t+Pd}function Te(t){return((t*=2)<=1?1-Me(1-t):Me(t-1)+1)/2}function Ne(t,n){for(var e;!(e=t.__transition)||!(e=e[n]);)if(!(t=t.parentNode))return Id.time=_n(),Id;return e}function ke(){t.event.stopImmediatePropagation()}function Se(t){return{type:t}}function Ae(){return!t.event.button}function Ee(){var t=this.ownerSVGElement||this;return[[0,0],[t.width.baseVal.value,t.height.baseVal.value]]}function Ce(t){for(;!t.__brush;)if(!(t=t.parentNode))return;return t.__brush}function ze(t){return t[0][0]===t[1][0]||t[0][1]===t[1][1]}function Pe(t){var n=t.__brush;return n?n.dim.output(n.selection):null}function Re(){return De(Jd)}function Le(){return De(Kd)}function De(n){function e(t){var e=t.property("__brush",a).selectAll(".overlay").data([Se("overlay")]);e.enter().append("rect").attr("class","overlay").attr("pointer-events","all").attr("cursor",nv.overlay).merge(e).each(function(){var t=Ce(this).extent;fh(this).attr("x",t[0][0]).attr("y",t[0][1]).attr("width",t[1][0]-t[0][0]).attr("height",t[1][1]-t[0][1])}),t.selectAll(".selection").data([Se("selection")]).enter().append("rect").attr("class","selection").attr("cursor",nv.selection).attr("fill","#777").attr("fill-opacity",.3).attr("stroke","#fff").attr("shape-rendering","crispEdges");var i=t.selectAll(".handle").data(n.handles,function(t){return t.type});i.exit().remove(),i.enter().append("rect").attr("class",function(t){return"handle handle--"+t.type}).attr("cursor",function(t){return nv[t.type]}),t.each(r).attr("fill","none").attr("pointer-events","all").style("-webkit-tap-highlight-color","rgba(0,0,0,0)").on("mousedown.brush touchstart.brush",u)}function r(){var t=fh(this),n=Ce(this).selection;n?(t.selectAll(".selection").style("display",null).attr("x",n[0][0]).attr("y",n[0][1]).attr("width",n[1][0]-n[0][0]).attr("height",n[1][1]-n[0][1]),t.selectAll(".handle").style("display",null).attr("x",function(t){return"e"===t.type[t.type.length-1]?n[1][0]-h/2:n[0][0]-h/2}).attr("y",function(t){return"s"===t.type[0]?n[1][1]-h/2:n[0][1]-h/2}).attr("width",function(t){return"n"===t.type||"s"===t.type?n[1][0]-n[0][0]+h:h}).attr("height",function(t){return"e"===t.type||"w"===t.type?n[1][1]-n[0][1]+h:h})):t.selectAll(".selection,.handle").style("display","none").attr("x",null).attr("y",null).attr("width",null).attr("height",null)}function i(t,n){return t.__brush.emitter||new o(t,n)}function o(t,n){this.that=t,this.args=n,this.state=t.__brush,this.active=0}function u(){function e(){var t=Al(T);!q||w||M||(Math.abs(t[0]-O[0])>Math.abs(t[1]-O[1])?M=!0:w=!0),O=t,b=!0,Vd(),o()}function o(){var t;switch(m=O[0]-U[0],x=O[1]-U[1],k){case Zd:case $d:S&&(m=Math.max(P-l,Math.min(L-v,m)),h=l+m,g=v+m),A&&(x=Math.max(R-p,Math.min(D-y,x)),d=p+x,_=y+x);break;case Gd:S<0?(m=Math.max(P-l,Math.min(L-l,m)),h=l+m,g=v):S>0&&(m=Math.max(P-v,Math.min(L-v,m)),h=l,g=v+m),A<0?(x=Math.max(R-p,Math.min(D-p,x)),d=p+x,_=y):A>0&&(x=Math.max(R-y,Math.min(D-y,x)),d=p,_=y+x);break;case Qd:S&&(h=Math.max(P,Math.min(L,l-m*S)),g=Math.max(P,Math.min(L,v+m*S))),A&&(d=Math.max(R,Math.min(D,p-x*A)),_=Math.max(R,Math.min(D,y+x*A)))}g<h&&(S*=-1,t=l,l=v,v=t,t=h,h=g,g=t,N in ev&&I.attr("cursor",nv[N=ev[N]])),_<d&&(A*=-1,t=p,p=y,y=t,t=d,d=_,_=t,N in rv&&I.attr("cursor",nv[N=rv[N]])),E.selection&&(z=E.selection),w&&(h=z[0][0],g=z[1][0]),M&&(d=z[0][1],_=z[1][1]),z[0][0]===h&&z[0][1]===d&&z[1][0]===g&&z[1][1]===_||(E.selection=[[h,d],[g,_]],r.call(T),F.brush())}function u(){if(ke(),t.event.touches){if(t.event.touches.length)return;c&&clearTimeout(c),c=setTimeout(function(){c=null},500),Y.on("touchmove.brush touchend.brush touchcancel.brush",null)}else xt(t.event.view,b),H.on("keydown.brush keyup.brush mousemove.brush mouseup.brush",null);Y.attr("pointer-events","all"),I.attr("cursor",nv.overlay),E.selection&&(z=E.selection),ze(z)&&(E.selection=null,r.call(T)),F.end()}function a(){switch(t.event.keyCode){case 16:q=S&&A;break;case 18:k===Gd&&(S&&(v=g-m*S,l=h+m*S),A&&(y=_-x*A,p=d+x*A),k=Qd,o());break;case 32:k!==Gd&&k!==Qd||(S<0?v=g-m:S>0&&(l=h-m),A<0?y=_-x:A>0&&(p=d-x),k=Zd,I.attr("cursor",nv.selection),o());break;default:return}Vd()}function s(){switch(t.event.keyCode){case 16:q&&(w=M=q=!1,o());break;case 18:k===Qd&&(S<0?v=g:S>0&&(l=h),A<0?y=_:A>0&&(p=d),k=Gd,o());break;case 32:k===Zd&&(t.event.altKey?(S&&(v=g-m*S,l=h+m*S),A&&(y=_-x*A,p=d+x*A),k=Qd):(S<0?v=g:S>0&&(l=h),A<0?y=_:A>0&&(p=d),k=Gd),I.attr("cursor",nv[N]),o());break;default:return}Vd()}if(t.event.touches){if(t.event.changedTouches.length<t.event.touches.length)return Vd()}else if(c)return;if(f.apply(this,arguments)){var l,h,p,d,v,g,y,_,m,x,b,w,M,T=this,N=t.event.target.__data__.type,k="selection"===(t.event.metaKey?N="overlay":N)?$d:t.event.altKey?Qd:Gd,S=n===Kd?null:iv[N],A=n===Jd?null:ov[N],E=Ce(T),C=E.extent,z=E.selection,P=C[0][0],R=C[0][1],L=C[1][0],D=C[1][1],q=S&&A&&t.event.shiftKey,U=Al(T),O=U,F=i(T,arguments).beforestart();"overlay"===N?E.selection=z=[[l=n===Kd?P:U[0],p=n===Jd?R:U[1]],[v=n===Kd?L:l,y=n===Jd?D:p]]:(l=z[0][0],p=z[0][1],v=z[1][0],y=z[1][1]),h=l,d=p,g=v,_=y;var Y=fh(T).attr("pointer-events","none"),I=Y.selectAll(".overlay").attr("cursor",nv[N]);if(t.event.touches)Y.on("touchmove.brush",e,!0).on("touchend.brush touchcancel.brush",u,!0);else{var H=fh(t.event.view).on("keydown.brush",a,!0).on("keyup.brush",s,!0).on("mousemove.brush",e,!0).on("mouseup.brush",u,!0);vh(t.event.view)}ke(),Gp(T),r.call(T),F.start()}}function a(){var t=this.__brush||{selection:null};return t.extent=s.apply(this,arguments),t.dim=n,t}var c,s=Ee,f=Ae,l=g(e,"start","brush","end"),h=6;return e.move=function(t,e){t.selection?t.on("start.brush",function(){i(this,arguments).beforestart().start()}).on("interrupt.brush end.brush",function(){i(this,arguments).end()}).tween("brush",function(){function t(t){u.selection=1===t&&ze(s)?null:f(t),r.call(o),a.brush()}var o=this,u=o.__brush,a=i(o,arguments),c=u.selection,s=n.input("function"==typeof e?e.apply(this,arguments):e,u.extent),f=pp(c,s);return c&&s?t:t(1)}):t.each(function(){var t=this,o=arguments,u=t.__brush,a=n.input("function"==typeof e?e.apply(t,o):e,u.extent),c=i(t,o).beforestart();Gp(t),u.selection=null==a||ze(a)?null:a,r.call(t),c.start().brush().end()})},o.prototype={beforestart:function(){return 1==++this.active&&(this.state.emitter=this,this.starting=!0),this},start:function(){return this.starting&&(this.starting=!1,this.emit("start")),this},brush:function(){return this.emit("brush"),this},end:function(){return 0==--this.active&&(delete this.state.emitter,this.emit("end")),this},emit:function(t){C(new Wd(e,t,n.output(this.state.selection)),l.apply,l,[t,this.that,this.args])}},e.extent=function(t){return arguments.length?(s="function"==typeof t?t:Xd([[+t[0][0],+t[0][1]],[+t[1][0],+t[1][1]]]),e):s},e.filter=function(t){return arguments.length?(f="function"==typeof t?t:Xd(!!t),e):f},e.handleSize=function(t){return arguments.length?(h=+t,e):h},e.on=function(){var t=l.on.apply(l,arguments);return t===l?e:t},e}function qe(t){return function(n,e){return t(n.source.value+n.target.value,e.source.value+e.target.value)}}function Ue(){this._x0=this._y0=this._x1=this._y1=null,this._=""}function Oe(){return new Ue}function Fe(t){return t.source}function Ye(t){return t.target}function Ie(t){return t.radius}function He(t){return t.startAngle}function Be(t){return t.endAngle}function je(){}function Xe(t,n){var e=new je;if(t instanceof je)t.each(function(t,n){e.set(n,t)});else if(Array.isArray(t)){var r,i=-1,o=t.length;if(null==n)for(;++i<o;)e.set(i,t[i]);else for(;++i<o;)e.set(n(r=t[i],i,t),r)}else if(t)for(var u in t)e.set(u,t[u]);return e}function We(){return{}}function Ve(t,n,e){t[n]=e}function $e(){return Xe()}function Ze(t,n,e){t.set(n,e)}function Ge(){}function Qe(t,n){var e=new Ge;if(t instanceof Ge)t.each(function(t){e.add(t)});else if(t){var r=-1,i=t.length;if(null==n)for(;++r<i;)e.add(t[r]);else for(;++r<i;)e.add(n(t[r],r,t))}return e}function Je(t){return new Function("d","return {"+t.map(function(t,n){return JSON.stringify(t)+": d["+n+"]"}).join(",")+"}")}function Ke(t,n){var e=Je(t);return function(r,i){return n(e(r),i,t)}}function tr(t){var n=Object.create(null),e=[];return t.forEach(function(t){for(var r in t)r in n||e.push(n[r]=r)}),e}function nr(t,n,e,r){if(isNaN(n)||isNaN(e))return t;var i,o,u,a,c,s,f,l,h,p=t._root,d={data:r},v=t._x0,g=t._y0,y=t._x1,_=t._y1;if(!p)return t._root=d,t;for(;p.length;)if((s=n>=(o=(v+y)/2))?v=o:y=o,(f=e>=(u=(g+_)/2))?g=u:_=u,i=p,!(p=p[l=f<<1|s]))return i[l]=d,t;if(a=+t._x.call(null,p.data),c=+t._y.call(null,p.data),n===a&&e===c)return d.next=p,i?i[l]=d:t._root=d,t;do{i=i?i[l]=new Array(4):t._root=new Array(4),(s=n>=(o=(v+y)/2))?v=o:y=o,(f=e>=(u=(g+_)/2))?g=u:_=u}while((l=f<<1|s)==(h=(c>=u)<<1|a>=o));return i[h]=p,i[l]=d,t}function er(t){var n,e,r,i,o=t.length,u=new Array(o),a=new Array(o),c=1/0,s=1/0,f=-1/0,l=-1/0;for(e=0;e<o;++e)isNaN(r=+this._x.call(null,n=t[e]))||isNaN(i=+this._y.call(null,n))||(u[e]=r,a[e]=i,r<c&&(c=r),r>f&&(f=r),i<s&&(s=i),i>l&&(l=i));for(f<c&&(c=this._x0,f=this._x1),l<s&&(s=this._y0,l=this._y1),this.cover(c,s).cover(f,l),e=0;e<o;++e)nr(this,u[e],a[e],t[e]);return this}function rr(t){for(var n=0,e=t.length;n<e;++n)this.remove(t[n]);return this}function ir(t){return t[0]}function or(t){return t[1]}function ur(t,n,e){var r=new ar(null==n?ir:n,null==e?or:e,NaN,NaN,NaN,NaN);return null==t?r:r.addAll(t)}function ar(t,n,e,r,i,o){this._x=t,this._y=n,this._x0=e,this._y0=r,this._x1=i,this._y1=o,this._root=void 0}function cr(t){for(var n={data:t.data},e=n;t=t.next;)e=e.next={data:t.data};return n}function sr(t){return t.x+t.vx}function fr(t){return t.y+t.vy}function lr(t){return t.index}function hr(t,n){var e=t.get(n);if(!e)throw new Error("missing: "+n);return e}function pr(t){return t.x}function dr(t){return t.y}function vr(t){return new gr(t)}function gr(t){if(!(n=wg.exec(t)))throw new Error("invalid format: "+t);var n,e=n[1]||" ",r=n[2]||">",i=n[3]||"-",o=n[4]||"",u=!!n[5],a=n[6]&&+n[6],c=!!n[7],s=n[8]&&+n[8].slice(1),f=n[9]||""
;"n"===f?(c=!0,f="g"):bg[f]||(f=""),(u||"0"===e&&"="===r)&&(u=!0,e="0",r="="),this.fill=e,this.align=r,this.sign=i,this.symbol=o,this.zero=u,this.width=a,this.comma=c,this.precision=s,this.type=f}function yr(n){return Mg=kg(n),t.format=Mg.format,t.formatPrefix=Mg.formatPrefix,Mg}function _r(){this.reset()}function mr(t,n,e){var r=t.s=n+e,i=r-n,o=r-i;t.t=n-o+(e-i)}function xr(t){return t>1?0:t<-1?fy:Math.acos(t)}function br(t){return t>1?ly:t<-1?-ly:Math.asin(t)}function wr(t){return(t=Ty(t/2))*t}function Mr(){}function Tr(t,n){t&&Ey.hasOwnProperty(t.type)&&Ey[t.type](t,n)}function Nr(t,n,e){var r,i=-1,o=t.length-e;for(n.lineStart();++i<o;)r=t[i],n.point(r[0],r[1],r[2]);n.lineEnd()}function kr(t,n){var e=-1,r=t.length;for(n.polygonStart();++e<r;)Nr(t[e],n,1);n.polygonEnd()}function Sr(){Ry.point=Er}function Ar(){Cr(zg,Pg)}function Er(t,n){Ry.point=Cr,zg=t,Pg=n,t*=vy,n*=vy,Rg=t,Lg=my(n=n/2+hy),Dg=Ty(n)}function Cr(t,n){t*=vy,n*=vy,n=n/2+hy;var e=t-Rg,r=e>=0?1:-1,i=r*e,o=my(n),u=Ty(n),a=Dg*u,c=Lg*o+a*my(i),s=a*r*Ty(i);zy.add(_y(s,c)),Rg=t,Lg=o,Dg=u}function zr(t){return[_y(t[1],t[0]),br(t[2])]}function Pr(t){var n=t[0],e=t[1],r=my(e);return[r*my(n),r*Ty(n),Ty(e)]}function Rr(t,n){return t[0]*n[0]+t[1]*n[1]+t[2]*n[2]}function Lr(t,n){return[t[1]*n[2]-t[2]*n[1],t[2]*n[0]-t[0]*n[2],t[0]*n[1]-t[1]*n[0]]}function Dr(t,n){t[0]+=n[0],t[1]+=n[1],t[2]+=n[2]}function qr(t,n){return[t[0]*n,t[1]*n,t[2]*n]}function Ur(t){var n=ky(t[0]*t[0]+t[1]*t[1]+t[2]*t[2]);t[0]/=n,t[1]/=n,t[2]/=n}function Or(t,n){jg.push(Xg=[qg=t,Og=t]),n<Ug&&(Ug=n),n>Fg&&(Fg=n)}function Fr(t,n){var e=Pr([t*vy,n*vy]);if(Bg){var r=Lr(Bg,e),i=[r[1],-r[0],0],o=Lr(i,r);Ur(o),o=zr(o);var u,a=t-Yg,c=a>0?1:-1,s=o[0]*dy*c,f=gy(a)>180;f^(c*Yg<s&&s<c*t)?(u=o[1]*dy)>Fg&&(Fg=u):(s=(s+360)%360-180,f^(c*Yg<s&&s<c*t)?(u=-o[1]*dy)<Ug&&(Ug=u):(n<Ug&&(Ug=n),n>Fg&&(Fg=n))),f?t<Yg?Xr(qg,t)>Xr(qg,Og)&&(Og=t):Xr(t,Og)>Xr(qg,Og)&&(qg=t):Og>=qg?(t<qg&&(qg=t),t>Og&&(Og=t)):t>Yg?Xr(qg,t)>Xr(qg,Og)&&(Og=t):Xr(t,Og)>Xr(qg,Og)&&(qg=t)}else jg.push(Xg=[qg=t,Og=t]);n<Ug&&(Ug=n),n>Fg&&(Fg=n),Bg=e,Yg=t}function Yr(){qy.point=Fr}function Ir(){Xg[0]=qg,Xg[1]=Og,qy.point=Or,Bg=null}function Hr(t,n){if(Bg){var e=t-Yg;Dy.add(gy(e)>180?e+(e>0?360:-360):e)}else Ig=t,Hg=n;Ry.point(t,n),Fr(t,n)}function Br(){Ry.lineStart()}function jr(){Hr(Ig,Hg),Ry.lineEnd(),gy(Dy)>sy&&(qg=-(Og=180)),Xg[0]=qg,Xg[1]=Og,Bg=null}function Xr(t,n){return(n-=t)<0?n+360:n}function Wr(t,n){return t[0]-n[0]}function Vr(t,n){return t[0]<=t[1]?t[0]<=n&&n<=t[1]:n<t[0]||t[1]<n}function $r(t,n){t*=vy,n*=vy;var e=my(n);Zr(e*my(t),e*Ty(t),Ty(n))}function Zr(t,n,e){++Wg,$g+=(t-$g)/Wg,Zg+=(n-Zg)/Wg,Gg+=(e-Gg)/Wg}function Gr(){Oy.point=Qr}function Qr(t,n){t*=vy,n*=vy;var e=my(n);oy=e*my(t),uy=e*Ty(t),ay=Ty(n),Oy.point=Jr,Zr(oy,uy,ay)}function Jr(t,n){t*=vy,n*=vy;var e=my(n),r=e*my(t),i=e*Ty(t),o=Ty(n),u=_y(ky((u=uy*o-ay*i)*u+(u=ay*r-oy*o)*u+(u=oy*i-uy*r)*u),oy*r+uy*i+ay*o);Vg+=u,Qg+=u*(oy+(oy=r)),Jg+=u*(uy+(uy=i)),Kg+=u*(ay+(ay=o)),Zr(oy,uy,ay)}function Kr(){Oy.point=$r}function ti(){Oy.point=ei}function ni(){ri(ry,iy),Oy.point=$r}function ei(t,n){ry=t,iy=n,t*=vy,n*=vy,Oy.point=ri;var e=my(n);oy=e*my(t),uy=e*Ty(t),ay=Ty(n),Zr(oy,uy,ay)}function ri(t,n){t*=vy,n*=vy;var e=my(n),r=e*my(t),i=e*Ty(t),o=Ty(n),u=uy*o-ay*i,a=ay*r-oy*o,c=oy*i-uy*r,s=ky(u*u+a*a+c*c),f=br(s),l=s&&-f/s;ty+=l*u,ny+=l*a,ey+=l*c,Vg+=f,Qg+=f*(oy+(oy=r)),Jg+=f*(uy+(uy=i)),Kg+=f*(ay+(ay=o)),Zr(oy,uy,ay)}function ii(t,n){return[t>fy?t-py:t<-fy?t+py:t,n]}function oi(t,n,e){return(t%=py)?n||e?Iy(ai(t),ci(n,e)):ai(t):n||e?ci(n,e):ii}function ui(t){return function(n,e){return n+=t,[n>fy?n-py:n<-fy?n+py:n,e]}}function ai(t){var n=ui(t);return n.invert=ui(-t),n}function ci(t,n){function e(t,n){var e=my(n),a=my(t)*e,c=Ty(t)*e,s=Ty(n),f=s*r+a*i;return[_y(c*o-f*u,a*r-s*i),br(f*o+c*u)]}var r=my(t),i=Ty(t),o=my(n),u=Ty(n);return e.invert=function(t,n){var e=my(n),a=my(t)*e,c=Ty(t)*e,s=Ty(n),f=s*o-c*u;return[_y(c*o+s*u,a*r+f*i),br(f*r-a*i)]},e}function si(t,n,e,r,i,o){if(e){var u=my(n),a=Ty(n),c=r*e;null==i?(i=n+r*py,o=n-c/2):(i=fi(u,i),o=fi(u,o),(r>0?i<o:i>o)&&(i+=r*py));for(var s,f=i;r>0?f>o:f<o;f-=c)s=zr([u,-a*my(f),-a*Ty(f)]),t.point(s[0],s[1])}}function fi(t,n){n=Pr(n),n[0]-=t,Ur(n);var e=xr(-n[1]);return((-n[2]<0?-e:e)+py-sy)%py}function li(t,n,e,r){this.x=t,this.z=n,this.o=e,this.e=r,this.v=!1,this.n=this.p=null}function hi(t){if(n=t.length){for(var n,e,r=0,i=t[0];++r<n;)i.n=e=t[r],e.p=i,i=e;i.n=e=t[0],e.p=i}}function pi(t){return t.length>1}function di(t,n){return((t=t.x)[0]<0?t[1]-ly-sy:ly-t[1])-((n=n.x)[0]<0?n[1]-ly-sy:ly-n[1])}function vi(t){var n,e=NaN,r=NaN,i=NaN;return{lineStart:function(){t.lineStart(),n=1},point:function(o,u){var a=o>0?fy:-fy,c=gy(o-e);gy(c-fy)<sy?(t.point(e,r=(r+u)/2>0?ly:-ly),t.point(i,r),t.lineEnd(),t.lineStart(),t.point(a,r),t.point(o,r),n=0):i!==a&&c>=fy&&(gy(e-i)<sy&&(e-=i*sy),gy(o-a)<sy&&(o-=a*sy),r=gi(e,r,o,u),t.point(i,r),t.lineEnd(),t.lineStart(),t.point(a,r),n=0),t.point(e=o,r=u),i=a},lineEnd:function(){t.lineEnd(),e=r=NaN},clean:function(){return 2-n}}}function gi(t,n,e,r){var i,o,u=Ty(t-e);return gy(u)>sy?yy((Ty(n)*(o=my(r))*Ty(e)-Ty(r)*(i=my(n))*Ty(t))/(i*o*u)):(n+r)/2}function yi(t,n,e,r){var i;if(null==t)i=e*ly,r.point(-fy,i),r.point(0,i),r.point(fy,i),r.point(fy,0),r.point(fy,-i),r.point(0,-i),r.point(-fy,-i),r.point(-fy,0),r.point(-fy,i);else if(gy(t[0]-n[0])>sy){var o=t[0]<n[0]?fy:-fy;i=e*o/2,r.point(-o,i),r.point(0,i),r.point(o,i)}else r.point(n[0],n[1])}function _i(t,n,e,r){function i(i,o){return t<=i&&i<=e&&n<=o&&o<=r}function o(i,o,a,s){var f=0,l=0;if(null==i||(f=u(i,a))!==(l=u(o,a))||c(i,o)<0^a>0)do{s.point(0===f||3===f?t:e,f>1?r:n)}while((f=(f+a+4)%4)!==l);else s.point(o[0],o[1])}function u(r,i){return gy(r[0]-t)<sy?i>0?0:3:gy(r[0]-e)<sy?i>0?2:1:gy(r[1]-n)<sy?i>0?1:0:i>0?3:2}function a(t,n){return c(t.x,n.x)}function c(t,n){var e=u(t,1),r=u(n,1);return e!==r?e-r:0===e?n[1]-t[1]:1===e?t[0]-n[0]:2===e?t[1]-n[1]:n[0]-t[0]}return function(u){function c(t,n){i(t,n)&&k.point(t,n)}function s(){for(var n=0,e=0,i=g.length;e<i;++e)for(var o,u,a=g[e],c=1,s=a.length,f=a[0],l=f[0],h=f[1];c<s;++c)o=l,u=h,f=a[c],l=f[0],h=f[1],u<=r?h>r&&(l-o)*(r-u)>(h-u)*(t-o)&&++n:h<=r&&(l-o)*(r-u)<(h-u)*(t-o)&&--n;return n}function f(){k=S,v=[],g=[],N=!0}function l(){var t=s(),n=N&&t,e=(v=Kf(v)).length;(n||e)&&(u.polygonStart(),n&&(u.lineStart(),o(null,null,1,u),u.lineEnd()),e&&r_(v,a,t,o,u),u.polygonEnd()),k=u,v=g=y=null}function h(){A.point=d,g&&g.push(y=[]),T=!0,M=!1,b=w=NaN}function p(){v&&(d(_,m),x&&M&&S.rejoin(),v.push(S.result())),A.point=c,M&&k.lineEnd()}function d(o,u){var a=i(o,u);if(g&&y.push([o,u]),T)_=o,m=u,x=a,T=!1,a&&(k.lineStart(),k.point(o,u));else if(a&&M)k.point(o,u);else{var c=[b=Math.max(l_,Math.min(f_,b)),w=Math.max(l_,Math.min(f_,w))],s=[o=Math.max(l_,Math.min(f_,o)),u=Math.max(l_,Math.min(f_,u))];s_(c,s,t,n,e,r)?(M||(k.lineStart(),k.point(c[0],c[1])),k.point(s[0],s[1]),a||k.lineEnd(),N=!1):a&&(k.lineStart(),k.point(o,u),N=!1)}b=o,w=u,M=a}var v,g,y,_,m,x,b,w,M,T,N,k=u,S=n_(),A={point:c,lineStart:h,lineEnd:p,polygonStart:f,polygonEnd:l};return A}}function mi(){d_.point=bi,d_.lineEnd=xi}function xi(){d_.point=d_.lineEnd=Mr}function bi(t,n){t*=vy,n*=vy,Hy=t,By=Ty(n),jy=my(n),d_.point=wi}function wi(t,n){t*=vy,n*=vy;var e=Ty(n),r=my(n),i=gy(t-Hy),o=my(i),u=Ty(i),a=r*u,c=jy*e-By*r*o,s=By*e+jy*r*o;p_.add(_y(ky(a*a+c*c),s)),Hy=t,By=e,jy=r}function Mi(t,n){return!(!t||!x_.hasOwnProperty(t.type))&&x_[t.type](t,n)}function Ti(t,n){return 0===__(t,n)}function Ni(t,n){var e=__(t[0],t[1]);return __(t[0],n)+__(n,t[1])<=e+sy}function ki(t,n){return!!o_(t.map(Si),Ai(n))}function Si(t){return t=t.map(Ai),t.pop(),t}function Ai(t){return[t[0]*vy,t[1]*vy]}function Ei(t,n,e){var r=Yf(t,n-sy,e).concat(n);return function(t){return r.map(function(n){return[t,n]})}}function Ci(t,n,e){var r=Yf(t,n-sy,e).concat(n);return function(t){return r.map(function(n){return[n,t]})}}function zi(){function t(){return{type:"MultiLineString",coordinates:n()}}function n(){return Yf(xy(o/g)*g,i,g).map(h).concat(Yf(xy(s/y)*y,c,y).map(p)).concat(Yf(xy(r/d)*d,e,d).filter(function(t){return gy(t%g)>sy}).map(f)).concat(Yf(xy(a/v)*v,u,v).filter(function(t){return gy(t%y)>sy}).map(l))}var e,r,i,o,u,a,c,s,f,l,h,p,d=10,v=d,g=90,y=360,_=2.5;return t.lines=function(){return n().map(function(t){return{type:"LineString",coordinates:t}})},t.outline=function(){return{type:"Polygon",coordinates:[h(o).concat(p(c).slice(1),h(i).reverse().slice(1),p(s).reverse().slice(1))]}},t.extent=function(n){return arguments.length?t.extentMajor(n).extentMinor(n):t.extentMinor()},t.extentMajor=function(n){return arguments.length?(o=+n[0][0],i=+n[1][0],s=+n[0][1],c=+n[1][1],o>i&&(n=o,o=i,i=n),s>c&&(n=s,s=c,c=n),t.precision(_)):[[o,s],[i,c]]},t.extentMinor=function(n){return arguments.length?(r=+n[0][0],e=+n[1][0],a=+n[0][1],u=+n[1][1],r>e&&(n=r,r=e,e=n),a>u&&(n=a,a=u,u=n),t.precision(_)):[[r,a],[e,u]]},t.step=function(n){return arguments.length?t.stepMajor(n).stepMinor(n):t.stepMinor()},t.stepMajor=function(n){return arguments.length?(g=+n[0],y=+n[1],t):[g,y]},t.stepMinor=function(n){return arguments.length?(d=+n[0],v=+n[1],t):[d,v]},t.precision=function(n){return arguments.length?(_=+n,f=Ei(a,u,90),l=Ci(r,e,_),h=Ei(s,c,90),p=Ci(o,i,_),t):_},t.extentMajor([[-180,-90+sy],[180,90-sy]]).extentMinor([[-180,-80-sy],[180,80+sy]])}function Pi(){return zi()()}function Ri(){k_.point=Li}function Li(t,n){k_.point=Di,Xy=Vy=t,Wy=$y=n}function Di(t,n){N_.add($y*t-Vy*n),Vy=t,$y=n}function qi(){Di(Xy,Wy)}function Ui(t,n){t<S_&&(S_=t),t>E_&&(E_=t),n<A_&&(A_=n),n>C_&&(C_=n)}function Oi(t,n){P_+=t,R_+=n,++L_}function Fi(){I_.point=Yi}function Yi(t,n){I_.point=Ii,Oi(Qy=t,Jy=n)}function Ii(t,n){var e=t-Qy,r=n-Jy,i=ky(e*e+r*r);D_+=i*(Qy+t)/2,q_+=i*(Jy+n)/2,U_+=i,Oi(Qy=t,Jy=n)}function Hi(){I_.point=Oi}function Bi(){I_.point=Xi}function ji(){Wi(Zy,Gy)}function Xi(t,n){I_.point=Wi,Oi(Zy=Qy=t,Gy=Jy=n)}function Wi(t,n){var e=t-Qy,r=n-Jy,i=ky(e*e+r*r);D_+=i*(Qy+t)/2,q_+=i*(Jy+n)/2,U_+=i,i=Jy*t-Qy*n,O_+=i*(Qy+t),F_+=i*(Jy+n),Y_+=3*i,Oi(Qy=t,Jy=n)}function Vi(t){this._context=t}function $i(t,n){$_.point=Zi,B_=X_=t,j_=W_=n}function Zi(t,n){X_-=t,W_-=n,V_.add(ky(X_*X_+W_*W_)),X_=t,W_=n}function Gi(){this._string=[]}function Qi(t){return"m0,"+t+"a"+t+","+t+" 0 1,1 0,"+-2*t+"a"+t+","+t+" 0 1,1 0,"+2*t+"z"}function Ji(t){return function(n){var e=new Ki;for(var r in t)e[r]=t[r];return e.stream=n,e}}function Ki(){}function to(t,n,e){var r=t.clipExtent&&t.clipExtent();return t.scale(150).translate([0,0]),null!=r&&t.clipExtent(null),Cy(e,t.stream(z_)),n(z_.result()),null!=r&&t.clipExtent(r),t}function no(t,n,e){return to(t,function(e){var r=n[1][0]-n[0][0],i=n[1][1]-n[0][1],o=Math.min(r/(e[1][0]-e[0][0]),i/(e[1][1]-e[0][1])),u=+n[0][0]+(r-o*(e[1][0]+e[0][0]))/2,a=+n[0][1]+(i-o*(e[1][1]+e[0][1]))/2;t.scale(150*o).translate([u,a])},e)}function eo(t,n,e){return no(t,[[0,0],n],e)}function ro(t,n,e){return to(t,function(e){var r=+n,i=r/(e[1][0]-e[0][0]),o=(r-i*(e[1][0]+e[0][0]))/2,u=-i*e[0][1];t.scale(150*i).translate([o,u])},e)}function io(t,n,e){return to(t,function(e){var r=+n,i=r/(e[1][1]-e[0][1]),o=-i*e[0][0],u=(r-i*(e[1][1]+e[0][1]))/2;t.scale(150*i).translate([o,u])},e)}function oo(t){return Ji({point:function(n,e){n=t(n,e),this.stream.point(n[0],n[1])}})}function uo(t,n){function e(r,i,o,u,a,c,s,f,l,h,p,d,v,g){var y=s-r,_=f-i,m=y*y+_*_;if(m>4*n&&v--){var x=u+h,b=a+p,w=c+d,M=ky(x*x+b*b+w*w),T=br(w/=M),N=gy(gy(w)-1)<sy||gy(o-l)<sy?(o+l)/2:_y(b,x),k=t(N,T),S=k[0],A=k[1],E=S-r,C=A-i,z=_*E-y*C;(z*z/m>n||gy((y*E+_*C)/m-.5)>.3||u*h+a*p+c*d<J_)&&(e(r,i,o,u,a,c,S,A,N,x/=M,b/=M,w,v,g),g.point(S,A),e(S,A,N,x,b,w,s,f,l,h,p,d,v,g))}}return function(n){function r(e,r){e=t(e,r),n.point(e[0],e[1])}function i(){y=NaN,w.point=o,n.lineStart()}function o(r,i){var o=Pr([r,i]),u=t(r,i);e(y,_,g,m,x,b,y=u[0],_=u[1],g=r,m=o[0],x=o[1],b=o[2],Q_,n),n.point(y,_)}function u(){w.point=r,n.lineEnd()}function a(){i(),w.point=c,w.lineEnd=s}function c(t,n){o(f=t,n),l=y,h=_,p=m,d=x,v=b,w.point=o}function s(){e(y,_,g,m,x,b,l,h,f,p,d,v,Q_,n),w.lineEnd=u,u()}var f,l,h,p,d,v,g,y,_,m,x,b,w={point:r,lineStart:i,lineEnd:u,polygonStart:function(){n.polygonStart(),w.lineStart=a},polygonEnd:function(){n.polygonEnd(),w.lineStart=i}};return w}}function ao(t){return Ji({point:function(n,e){var r=t(n,e);return this.stream.point(r[0],r[1])}})}function co(t){return so(function(){return t})()}function so(t){function n(t){return t=f(t[0]*vy,t[1]*vy),[t[0]*g+a,c-t[1]*g]}function e(t){return(t=f.invert((t[0]-a)/g,(c-t[1])/g))&&[t[0]*dy,t[1]*dy]}function r(t,n){return t=u(t,n),[t[0]*g+a,c-t[1]*g]}function i(){f=Iy(s=oi(b,w,M),u);var t=u(m,x);return a=y-t[0]*g,c=_+t[1]*g,o()}function o(){return d=v=null,n}var u,a,c,s,f,l,h,p,d,v,g=150,y=480,_=250,m=0,x=0,b=0,w=0,M=0,T=null,N=a_,k=null,S=M_,A=.5,E=K_(r,A);return n.stream=function(t){return d&&v===t?d:d=tm(ao(s)(N(E(S(v=t)))))},n.preclip=function(t){return arguments.length?(N=t,T=void 0,o()):N},n.postclip=function(t){return arguments.length?(S=t,k=l=h=p=null,o()):S},n.clipAngle=function(t){return arguments.length?(N=+t?c_(T=t*vy):(T=null,a_),o()):T*dy},n.clipExtent=function(t){return arguments.length?(S=null==t?(k=l=h=p=null,M_):_i(k=+t[0][0],l=+t[0][1],h=+t[1][0],p=+t[1][1]),o()):null==k?null:[[k,l],[h,p]]},n.scale=function(t){return arguments.length?(g=+t,i()):g},n.translate=function(t){return arguments.length?(y=+t[0],_=+t[1],i()):[y,_]},n.center=function(t){return arguments.length?(m=t[0]%360*vy,x=t[1]%360*vy,i()):[m*dy,x*dy]},n.rotate=function(t){return arguments.length?(b=t[0]%360*vy,w=t[1]%360*vy,M=t.length>2?t[2]%360*vy:0,i()):[b*dy,w*dy,M*dy]},n.precision=function(t){return arguments.length?(E=K_(r,A=t*t),o()):ky(A)},n.fitExtent=function(t,e){return no(n,t,e)},n.fitSize=function(t,e){return eo(n,t,e)},n.fitWidth=function(t,e){return ro(n,t,e)},n.fitHeight=function(t,e){return io(n,t,e)},function(){return u=t.apply(this,arguments),n.invert=u.invert&&e,i()}}function fo(t){var n=0,e=fy/3,r=so(t),i=r(n,e);return i.parallels=function(t){return arguments.length?r(n=t[0]*vy,e=t[1]*vy):[n*dy,e*dy]},i}function lo(t){function n(t,n){return[t*e,Ty(n)/e]}var e=my(t);return n.invert=function(t,n){return[t/e,br(n*e)]},n}function ho(t,n){function e(t,n){var e=ky(o-2*i*Ty(n))/i;return[e*Ty(t*=i),u-e*my(t)]}var r=Ty(t),i=(r+Ty(n))/2;if(gy(i)<sy)return lo(t);var o=1+r*(2*i-r),u=ky(o)/i;return e.invert=function(t,n){var e=u-n;return[_y(t,gy(e))/i*Ny(e),br((o-(t*t+e*e)*i*i)/(2*i))]},e}function po(t){var n=t.length;return{point:function(e,r){for(var i=-1;++i<n;)t[i].point(e,r)},sphere:function(){for(var e=-1;++e<n;)t[e].sphere()},lineStart:function(){for(var e=-1;++e<n;)t[e].lineStart()},lineEnd:function(){for(var e=-1;++e<n;)t[e].lineEnd()},polygonStart:function(){for(var e=-1;++e<n;)t[e].polygonStart()},polygonEnd:function(){for(var e=-1;++e<n;)t[e].polygonEnd()}}}function vo(t){return function(n,e){var r=my(n),i=my(e),o=t(r*i);return[o*i*Ty(n),o*Ty(e)]}}function go(t){return function(n,e){var r=ky(n*n+e*e),i=t(r),o=Ty(i),u=my(i);return[_y(n*o,r*u),br(r&&e*o/r)]}}function yo(t,n){return[t,wy(Sy((ly+n)/2))]}function _o(t){function n(){var n=fy*a(),u=o(Ky(o.rotate()).invert([0,0]));return s(null==f?[[u[0]-n,u[1]-n],[u[0]+n,u[1]+n]]:t===yo?[[Math.max(u[0]-n,f),e],[Math.min(u[0]+n,r),i]]:[[f,Math.max(u[1]-n,e)],[r,Math.min(u[1]+n,i)]])}var e,r,i,o=co(t),u=o.center,a=o.scale,c=o.translate,s=o.clipExtent,f=null;return o.scale=function(t){return arguments.length?(a(t),n()):a()},o.translate=function(t){return arguments.length?(c(t),n()):c()},o.center=function(t){return arguments.length?(u(t),n()):u()},o.clipExtent=function(t){return arguments.length?(null==t?f=e=r=i=null:(f=+t[0][0],e=+t[0][1],r=+t[1][0],i=+t[1][1]),n()):null==f?null:[[f,e],[r,i]]},n()}function mo(t){return Sy((ly+t)/2)}function xo(t,n){function e(t,n){o>0?n<-ly+sy&&(n=-ly+sy):n>ly-sy&&(n=ly-sy);var e=o/My(mo(n),i);return[e*Ty(i*t),o-e*my(i*t)]}var r=my(t),i=t===n?Ty(t):wy(r/my(n))/wy(mo(n)/mo(t)),o=r*My(mo(t),i)/i;return i?(e.invert=function(t,n){var e=o-n,r=Ny(i)*ky(t*t+e*e);return[_y(t,gy(e))/i*Ny(e),2*yy(My(o/r,1/i))-ly]},e):yo}function bo(t,n){return[t,n]}function wo(t,n){function e(t,n){var e=o-n,r=i*t;return[e*Ty(r),o-e*my(r)]}var r=my(t),i=t===n?Ty(t):(r-my(n))/(n-t),o=r/i+t;return gy(i)<sy?bo:(e.invert=function(t,n){var e=o-n;return[_y(t,gy(e))/i*Ny(e),o-Ny(i)*ky(t*t+e*e)]},e)}function Mo(t,n){var e=my(n),r=my(t)*e;return[e*Ty(t)/r,Ty(n)/r]}function To(t,n,e,r){return 1===t&&1===n&&0===e&&0===r?M_:Ji({point:function(i,o){this.stream.point(i*t+e,o*n+r)}})}function No(t,n){var e=n*n,r=e*e;return[t*(.8707-.131979*e+r*(r*(.003971*e-.001529*r)-.013791)),n*(1.007226+e*(.015085+r*(.028874*e-.044475-.005916*r)))]}function ko(t,n){return[my(n)*Ty(t),Ty(n)]}function So(t,n){var e=my(n),r=1+my(t)*e;return[e*Ty(t)/r,Ty(n)/r]}function Ao(t,n){return[wy(Sy((ly+n)/2)),-t]}function Eo(t,n){return t.parent===n.parent?1:2}function Co(t){return t.reduce(zo,0)/t.length}function zo(t,n){return t+n.x}function Po(t){return 1+t.reduce(Ro,0)}function Ro(t,n){return Math.max(t,n.y)}function Lo(t){for(var n;n=t.children;)t=n[0];return t}function Do(t){for(var n;n=t.children;)t=n[n.length-1];return t}function qo(t){var n=0,e=t.children,r=e&&e.length;if(r)for(;--r>=0;)n+=e[r].value;else n=1;t.value=n}function Uo(t,n){if(t===n)return t;var e=t.ancestors(),r=n.ancestors(),i=null;for(t=e.pop(),n=r.pop();t===n;)i=t,t=e.pop(),n=r.pop();return i}function Oo(t,n){var e,r,i,o,u,a=new Bo(t),c=+t.value&&(a.value=t.value),s=[a];for(null==n&&(n=Yo);e=s.pop();)if(c&&(e.value=+e.data.value),(i=n(e.data))&&(u=i.length))for(e.children=new Array(u),o=u-1;o>=0;--o)s.push(r=e.children[o]=new Bo(i[o])),r.parent=e,r.depth=e.depth+1;return a.eachBefore(Ho)}function Fo(){return Oo(this).eachBefore(Io)}function Yo(t){return t.children}function Io(t){t.data=t.data.data}function Ho(t){var n=0;do{t.height=n}while((t=t.parent)&&t.height<++n)}function Bo(t){this.data=t,this.depth=this.height=0,this.parent=null}function jo(t){for(var n,e,r=t.length;r;)e=Math.random()*r--|0,n=t[r],t[r]=t[e],t[e]=n;return t}function Xo(t,n){var e,r;if($o(n,t))return[n];for(e=0;e<t.length;++e)if(Wo(n,t[e])&&$o(Qo(t[e],n),t))return[t[e],n];for(e=0;e<t.length-1;++e)for(r=e+1;r<t.length;++r)if(Wo(Qo(t[e],t[r]),n)&&Wo(Qo(t[e],n),t[r])&&Wo(Qo(t[r],n),t[e])&&$o(Jo(t[e],t[r],n),t))return[t[e],t[r],n];throw new Error}function Wo(t,n){var e=t.r-n.r,r=n.x-t.x,i=n.y-t.y;return e<0||e*e<r*r+i*i}function Vo(t,n){var e=t.r-n.r+1e-6,r=n.x-t.x,i=n.y-t.y;return e>0&&e*e>r*r+i*i}function $o(t,n){for(var e=0;e<n.length;++e)if(!Vo(t,n[e]))return!1;return!0}function Zo(t){switch(t.length){case 1:return Go(t[0]);case 2:return Qo(t[0],t[1]);case 3:return Jo(t[0],t[1],t[2])}}function Go(t){return{x:t.x,y:t.y,r:t.r}}function Qo(t,n){var e=t.x,r=t.y,i=t.r,o=n.x,u=n.y,a=n.r,c=o-e,s=u-r,f=a-i,l=Math.sqrt(c*c+s*s);return{x:(e+o+c/l*f)/2,y:(r+u+s/l*f)/2,r:(l+i+a)/2}}function Jo(t,n,e){var r=t.x,i=t.y,o=t.r,u=n.x,a=n.y,c=n.r,s=e.x,f=e.y,l=e.r,h=r-u,p=r-s,d=i-a,v=i-f,g=c-o,y=l-o,_=r*r+i*i-o*o,m=_-u*u-a*a+c*c,x=_-s*s-f*f+l*l,b=p*d-h*v,w=(d*x-v*m)/(2*b)-r,M=(v*g-d*y)/b,T=(p*m-h*x)/(2*b)-i,N=(h*y-p*g)/b,k=M*M+N*N-1,S=2*(o+w*M+T*N),A=w*w+T*T-o*o,E=-(k?(S+Math.sqrt(S*S-4*k*A))/(2*k):A/S);return{x:r+w+M*E,y:i+T+N*E,r:E}}function Ko(t,n,e){var r=t.x,i=t.y,o=n.r+e.r,u=t.r+e.r,a=n.x-r,c=n.y-i,s=a*a+c*c;if(s){var f=.5+((u*=u)-(o*=o))/(2*s),l=Math.sqrt(Math.max(0,2*o*(u+s)-(u-=s)*u-o*o))/(2*s);e.x=r+f*a+l*c,e.y=i+f*c-l*a}else e.x=r+u,e.y=i}function tu(t,n){var e=n.x-t.x,r=n.y-t.y,i=t.r+n.r;return i*i-1e-6>e*e+r*r}function nu(t){var n=t._,e=t.next._,r=n.r+e.r,i=(n.x*e.r+e.x*n.r)/r,o=(n.y*e.r+e.y*n.r)/r;return i*i+o*o}function eu(t){this._=t,this.next=null,this.previous=null}function ru(t){if(!(i=t.length))return 0;var n,e,r,i,o,u,a,c,s,f,l;if(n=t[0],n.x=0,n.y=0,!(i>1))return n.r;if(e=t[1],n.x=-e.r,e.x=n.r,e.y=0,!(i>2))return n.r+e.r;Ko(e,n,r=t[2]),n=new eu(n),e=new eu(e),r=new eu(r),n.next=r.previous=e,e.next=n.previous=r,r.next=e.previous=n;t:for(a=3;a<i;++a){Ko(n._,e._,r=t[a]),r=new eu(r),c=e.next,s=n.previous,f=e._.r,l=n._.r;do{if(f<=l){if(tu(c._,r._)){e=c,n.next=e,e.previous=n,--a;continue t}f+=c._.r,c=c.next}else{if(tu(s._,r._)){n=s,n.next=e,e.previous=n,--a;continue t}l+=s._.r,s=s.previous}}while(c!==s.next);for(r.previous=n,r.next=e,n.next=e.previous=e=r,o=nu(n);(r=r.next)!==e;)(u=nu(r))<o&&(n=r,o=u);e=n.next}for(n=[e._],r=e;(r=r.next)!==e;)n.push(r._);for(r=zm(n),a=0;a<i;++a)n=t[a],n.x-=r.x,n.y-=r.y;return r.r}function iu(t){return null==t?null:ou(t)}function ou(t){if("function"!=typeof t)throw new Error;return t}function uu(){return 0}function au(t){return Math.sqrt(t.value)}function cu(t){return function(n){n.children||(n.r=Math.max(0,+t(n)||0))}}function su(t,n){return function(e){if(r=e.children){var r,i,o,u=r.length,a=t(e)*n||0;if(a)for(i=0;i<u;++i)r[i].r+=a;if(o=ru(r),a)for(i=0;i<u;++i)r[i].r-=a;e.r=o+a}}}function fu(t){return function(n){var e=n.parent;n.r*=t,e&&(n.x=e.x+t*n.x,n.y=e.y+t*n.y)}}function lu(t){return t.id}function hu(t){return t.parentId}function pu(t,n){return t.parent===n.parent?1:2}function du(t){var n=t.children;return n?n[0]:t.t}function vu(t){var n=t.children;return n?n[n.length-1]:t.t}function gu(t,n,e){var r=e/(n.i-t.i);n.c-=r,n.s+=e,t.c+=r,n.z+=e,n.m+=e}function yu(t){for(var n,e=0,r=0,i=t.children,o=i.length;--o>=0;)n=i[o],n.z+=e,n.m+=e,e+=n.s+(r+=n.c)}function _u(t,n,e){return t.a.parent===n.parent?t.a:e}function mu(t,n){this._=t,this.parent=null,this.children=null,this.A=null,this.a=this,this.z=0,this.m=0,this.c=0,this.s=0,this.t=null,this.i=n}function xu(t){for(var n,e,r,i,o,u=new mu(t,0),a=[u];n=a.pop();)if(r=n._.children)for(n.children=new Array(o=r.length),i=o-1;i>=0;--i)a.push(e=n.children[i]=new mu(r[i],i)),e.parent=n;return(u.parent=new mu(null,0)).children=[u],u}function bu(t,n,e,r,i,o){for(var u,a,c,s,f,l,h,p,d,v,g,y=[],_=n.children,m=0,x=0,b=_.length,w=n.value;m<b;){c=i-e,s=o-r;do{f=_[x++].value}while(!f&&x<b);for(l=h=f,v=Math.max(s/c,c/s)/(w*t),g=f*f*v,d=Math.max(h/g,g/l);x<b;++x){if(f+=a=_[x].value,a<l&&(l=a),a>h&&(h=a),g=f*f*v,(p=Math.max(h/g,g/l))>d){f-=a;break}d=p}y.push(u={value:f,dice:c<s,children:_.slice(m,x)}),u.dice?qm(u,e,r,i,w?r+=s*f/w:o):Bm(u,e,r,w?e+=c*f/w:i,o),w-=f,m=x}return y}function wu(t,n){return t[0]-n[0]||t[1]-n[1]}function Mu(t){for(var n=t.length,e=[0,1],r=2,i=2;i<n;++i){for(;r>1&&Jm(t[e[r-2]],t[e[r-1]],t[i])<=0;)--r;e[r++]=i}return e.slice(0,r)}function Tu(t){this._size=t,this._call=this._error=null,this._tasks=[],this._data=[],this._waiting=this._active=this._ended=this._start=0}function Nu(t){if(!t._start)try{ku(t)}catch(n){if(t._tasks[t._ended+t._active-1])Au(t,n);else if(!t._data)throw n}}function ku(t){for(;t._start=t._waiting&&t._active<t._size;){var n=t._ended+t._active,e=t._tasks[n],r=e.length-1,i=e[r];e[r]=Su(t,n),--t._waiting,++t._active,e=i.apply(null,e),t._tasks[n]&&(t._tasks[n]=e||rx)}}function Su(t,n){return function(e,r){t._tasks[n]&&(--t._active,++t._ended,t._tasks[n]=null,null==t._error&&(null!=e?Au(t,e):(t._data[n]=r,t._waiting?Nu(t):Eu(t))))}}function Au(t,n){var e,r=t._tasks.length;for(t._error=n,t._data=void 0,t._waiting=NaN;--r>=0;)if((e=t._tasks[r])&&(t._tasks[r]=null,e.abort))try{e.abort()}catch(n){}t._active=NaN,Eu(t)}function Eu(t){if(!t._active&&t._call){var n=t._data;t._data=void 0,t._call(t._error,n)}}function Cu(t){if(null==t)t=1/0;else if(!((t=+t)>=1))throw new Error("invalid concurrency");return new Tu(t)}function zu(t){return function(n,e){t(null==n?e:null)}}function Pu(t){var n=t.responseType;return n&&"text"!==n?t.response:t.responseText}function Ru(t,n){return function(e){return t(e.responseText,n)}}function Lu(t){function n(n){var o=n+"",u=e.get(o);if(!u){if(i!==Mx)return i;e.set(o,u=r.push(n))}return t[(u-1)%t.length]}var e=Xe(),r=[],i=Mx;return t=null==t?[]:wx.call(t),n.domain=function(t){if(!arguments.length)return r.slice();r=[],e=Xe();for(var i,o,u=-1,a=t.length;++u<a;)e.has(o=(i=t[u])+"")||e.set(o,r.push(i));return n},n.range=function(e){return arguments.length?(t=wx.call(e),n):t.slice()},n.unknown=function(t){return arguments.length?(i=t,n):i},n.copy=function(){return Lu().domain(r).range(t).unknown(i)},n}function Du(){function t(){var t=i().length,r=u[1]<u[0],l=u[r-0],h=u[1-r];n=(h-l)/Math.max(1,t-c+2*s),a&&(n=Math.floor(n)),l+=(h-l-n*(t-c))*f,e=n*(1-c),a&&(l=Math.round(l),e=Math.round(e));var p=Yf(t).map(function(t){return l+n*t});return o(r?p.reverse():p)}var n,e,r=Lu().unknown(void 0),i=r.domain,o=r.range,u=[0,1],a=!1,c=0,s=0,f=.5;return delete r.unknown,r.domain=function(n){return arguments.length?(i(n),t()):i()},r.range=function(n){return arguments.length?(u=[+n[0],+n[1]],t()):u.slice()},r.rangeRound=function(n){return u=[+n[0],+n[1]],a=!0,t()},r.bandwidth=function(){return e},r.step=function(){return n},r.round=function(n){return arguments.length?(a=!!n,t()):a},r.padding=function(n){return arguments.length?(c=s=Math.max(0,Math.min(1,n)),t()):c},r.paddingInner=function(n){return arguments.length?(c=Math.max(0,Math.min(1,n)),t()):c},r.paddingOuter=function(n){return arguments.length?(s=Math.max(0,Math.min(1,n)),t()):s},r.align=function(n){return arguments.length?(f=Math.max(0,Math.min(1,n)),t()):f},r.copy=function(){return Du().domain(i()).range(u).round(a).paddingInner(c).paddingOuter(s).align(f)},t()}function qu(t){var n=t.copy;return t.padding=t.paddingOuter,delete t.paddingInner,delete t.paddingOuter,t.copy=function(){return qu(n())},t}function Uu(){return qu(Du().paddingInner(1))}function Ou(t,n){return(n-=t=+t)?function(e){return(e-t)/n}:Tx(n)}function Fu(t){return function(n,e){var r=t(n=+n,e=+e);return function(t){return t<=n?0:t>=e?1:r(t)}}}function Yu(t){return function(n,e){var r=t(n=+n,e=+e);return function(t){return t<=0?n:t>=1?e:r(t)}}}function Iu(t,n,e,r){var i=t[0],o=t[1],u=n[0],a=n[1];return o<i?(i=e(o,i),u=r(a,u)):(i=e(i,o),u=r(u,a)),function(t){return u(i(t))}}function Hu(t,n,e,r){var i=Math.min(t.length,n.length)-1,o=new Array(i),u=new Array(i),a=-1;for(t[i]<t[0]&&(t=t.slice().reverse(),n=n.slice().reverse());++a<i;)o[a]=e(t[a],t[a+1]),u[a]=r(n[a],n[a+1]);return function(n){var e=kf(t,n,1,i)-1;return u[e](o[e](n))}}function Bu(t,n){return n.domain(t.domain()).range(t.range()).interpolate(t.interpolate()).clamp(t.clamp())}function ju(t,n){function e(){return i=Math.min(a.length,c.length)>2?Hu:Iu,o=u=null,r}function r(n){return(o||(o=i(a,c,f?Fu(t):t,s)))(+n)}var i,o,u,a=kx,c=kx,s=pp,f=!1;return r.invert=function(t){return(u||(u=i(c,a,Ou,f?Yu(n):n)))(+t)},r.domain=function(t){return arguments.length?(a=bx.call(t,Nx),e()):a.slice()},r.range=function(t){return arguments.length?(c=wx.call(t),e()):c.slice()},r.rangeRound=function(t){return c=wx.call(t),s=dp,e()},r.clamp=function(t){return arguments.length?(f=!!t,e()):f},r.interpolate=function(t){return arguments.length?(s=t,e()):s},e()}function Xu(t){var n=t.domain;return t.ticks=function(t){var e=n();return jf(e[0],e[e.length-1],null==t?10:t)},t.tickFormat=function(t,e){return Sx(n(),t,e)},t.nice=function(e){null==e&&(e=10);var i,o=n(),u=0,a=o.length-1,c=o[u],s=o[a];return s<c&&(i=c,c=s,s=i,i=u,u=a,a=i),i=r(c,s,e),i>0?(c=Math.floor(c/i)*i,s=Math.ceil(s/i)*i,i=r(c,s,e)):i<0&&(c=Math.ceil(c*i)/i,s=Math.floor(s*i)/i,i=r(c,s,e)),i>0?(o[u]=Math.floor(c/i)*i,o[a]=Math.ceil(s/i)*i,n(o)):i<0&&(o[u]=Math.ceil(c*i)/i,o[a]=Math.floor(s*i)/i,n(o)),t},t}function Wu(){var t=ju(Ou,cp);return t.copy=function(){return Bu(t,Wu())},Xu(t)}function Vu(){function t(t){return+t}var n=[0,1];return t.invert=t,t.domain=t.range=function(e){return arguments.length?(n=bx.call(e,Nx),t):n.slice()},t.copy=function(){return Vu().domain(n)},Xu(t)}function $u(t,n){return(n=Math.log(n/t))?function(e){return Math.log(e/t)/n}:Tx(n)}function Zu(t,n){return t<0?function(e){return-Math.pow(-n,e)*Math.pow(-t,1-e)}:function(e){return Math.pow(n,e)*Math.pow(t,1-e)}}function Gu(t){return isFinite(t)?+("1e"+t):t<0?0:t}function Qu(t){return 10===t?Gu:t===Math.E?Math.exp:function(n){return Math.pow(t,n)}}function Ju(t){return t===Math.E?Math.log:10===t&&Math.log10||2===t&&Math.log2||(t=Math.log(t),function(n){return Math.log(n)/t})}function Ku(t){return function(n){return-t(-n)}}function ta(){function n(){return o=Ju(i),u=Qu(i),r()[0]<0&&(o=Ku(o),u=Ku(u)),e}var e=ju($u,Zu).domain([1,10]),r=e.domain,i=10,o=Ju(10),u=Qu(10);return e.base=function(t){return arguments.length?(i=+t,n()):i},e.domain=function(t){return arguments.length?(r(t),n()):r()},e.ticks=function(t){var n,e=r(),a=e[0],c=e[e.length-1];(n=c<a)&&(h=a,a=c,c=h);var s,f,l,h=o(a),p=o(c),d=null==t?10:+t,v=[];if(!(i%1)&&p-h<d){if(h=Math.round(h)-1,p=Math.round(p)+1,a>0){for(;h<p;++h)for(f=1,s=u(h);f<i;++f)if(!((l=s*f)<a)){if(l>c)break;v.push(l)}}else for(;h<p;++h)for(f=i-1,s=u(h);f>=1;--f)if(!((l=s*f)<a)){if(l>c)break;v.push(l)}}else v=jf(h,p,Math.min(p-h,d)).map(u);return n?v.reverse():v},e.tickFormat=function(n,r){if(null==r&&(r=10===i?".0e":","),"function"!=typeof r&&(r=t.format(r)),n===1/0)return r;null==n&&(n=10);var a=Math.max(1,i*n/e.ticks().length);return function(t){var n=t/u(Math.round(o(t)));return n*i<i-.5&&(n*=i),n<=a?r(t):""}},e.nice=function(){return r(Ax(r(),{floor:function(t){return u(Math.floor(o(t)))},ceil:function(t){return u(Math.ceil(o(t)))}}))},e.copy=function(){return Bu(e,ta().base(i))},e}function na(t,n){return t<0?-Math.pow(-t,n):Math.pow(t,n)}function ea(){function t(t,n){return(n=na(n,e)-(t=na(t,e)))?function(r){return(na(r,e)-t)/n}:Tx(n)}function n(t,n){return n=na(n,e)-(t=na(t,e)),function(r){return na(t+n*r,1/e)}}var e=1,r=ju(t,n),i=r.domain;return r.exponent=function(t){return arguments.length?(e=+t,i(i())):e},r.copy=function(){return Bu(r,ea().exponent(e))},Xu(r)}function ra(){return ea().exponent(.5)}function ia(){function t(){var t=0,o=Math.max(1,r.length);for(i=new Array(o-1);++t<o;)i[t-1]=Vf(e,t/o);return n}function n(t){if(!isNaN(t=+t))return r[kf(i,t)]}var e=[],r=[],i=[];return n.invertExtent=function(t){var n=r.indexOf(t);return n<0?[NaN,NaN]:[n>0?i[n-1]:e[0],n<i.length?i[n]:e[e.length-1]]},n.domain=function(n){if(!arguments.length)return e.slice();e=[];for(var r,i=0,o=n.length;i<o;++i)null==(r=n[i])||isNaN(r=+r)||e.push(r);return e.sort(Mf),t()},n.range=function(n){return arguments.length?(r=wx.call(n),t()):r.slice()},n.quantiles=function(){return i.slice()},n.copy=function(){return ia().domain(e).range(r)},n}function oa(){function t(t){if(t<=t)return u[kf(o,t,0,i)]}function n(){var n=-1;for(o=new Array(i);++n<i;)o[n]=((n+1)*r-(n-i)*e)/(i+1);return t}var e=0,r=1,i=1,o=[.5],u=[0,1];return t.domain=function(t){return arguments.length?(e=+t[0],r=+t[1],n()):[e,r]},t.range=function(t){return arguments.length?(i=(u=wx.call(t)).length-1,n()):u.slice()},t.invertExtent=function(t){var n=u.indexOf(t);return n<0?[NaN,NaN]:n<1?[e,o[0]]:n>=i?[o[i-1],r]:[o[n-1],o[n]]},t.copy=function(){return oa().domain([e,r]).range(u)},Xu(t)}function ua(){function t(t){if(t<=t)return e[kf(n,t,0,r)]}var n=[.5],e=[0,1],r=1;return t.domain=function(i){return arguments.length?(n=wx.call(i),r=Math.min(n.length,e.length-1),t):n.slice()},t.range=function(i){return arguments.length?(e=wx.call(i),r=Math.min(n.length,e.length-1),t):e.slice()},t.invertExtent=function(t){var r=e.indexOf(t);return[n[r-1],n[r]]},t.copy=function(){return ua().domain(n).range(e)},t}function aa(t,n,e,r){function i(n){return t(n=new Date(+n)),n}return i.floor=i,i.ceil=function(e){return t(e=new Date(e-1)),n(e,1),t(e),e},i.round=function(t){var n=i(t),e=i.ceil(t);return t-n<e-t?n:e},i.offset=function(t,e){return n(t=new Date(+t),null==e?1:Math.floor(e)),t},i.range=function(e,r,o){var u,a=[];if(e=i.ceil(e),o=null==o?1:Math.floor(o),!(e<r&&o>0))return a;do{a.push(u=new Date(+e)),n(e,o),t(e)}while(u<e&&e<r);return a},i.filter=function(e){return aa(function(n){if(n>=n)for(;t(n),!e(n);)n.setTime(n-1)},function(t,r){if(t>=t)if(r<0)for(;++r<=0;)for(;n(t,-1),!e(t););else for(;--r>=0;)for(;n(t,1),!e(t););})},e&&(i.count=function(n,r){return Ex.setTime(+n),Cx.setTime(+r),t(Ex),t(Cx),Math.floor(e(Ex,Cx))},i.every=function(t){return t=Math.floor(t),isFinite(t)&&t>0?t>1?i.filter(r?function(n){return r(n)%t==0
}:function(n){return i.count(0,n)%t==0}):i:null}),i}function ca(t){return aa(function(n){n.setDate(n.getDate()-(n.getDay()+7-t)%7),n.setHours(0,0,0,0)},function(t,n){t.setDate(t.getDate()+7*n)},function(t,n){return(n-t-(n.getTimezoneOffset()-t.getTimezoneOffset())*Rx)/Lx})}function sa(t){return aa(function(n){n.setUTCDate(n.getUTCDate()-(n.getUTCDay()+7-t)%7),n.setUTCHours(0,0,0,0)},function(t,n){t.setUTCDate(t.getUTCDate()+7*n)},function(t,n){return(n-t)/Lx})}function fa(t){if(0<=t.y&&t.y<100){var n=new Date(-1,t.m,t.d,t.H,t.M,t.S,t.L);return n.setFullYear(t.y),n}return new Date(t.y,t.m,t.d,t.H,t.M,t.S,t.L)}function la(t){if(0<=t.y&&t.y<100){var n=new Date(Date.UTC(-1,t.m,t.d,t.H,t.M,t.S,t.L));return n.setUTCFullYear(t.y),n}return new Date(Date.UTC(t.y,t.m,t.d,t.H,t.M,t.S,t.L))}function ha(t){return{y:t,m:0,d:1,H:0,M:0,S:0,L:0}}function pa(t){function n(t,n){return function(e){var r,i,o,u=[],a=-1,c=0,s=t.length;for(e instanceof Date||(e=new Date(+e));++a<s;)37===t.charCodeAt(a)&&(u.push(t.slice(c,a)),null!=(i=Pb[r=t.charAt(++a)])?r=t.charAt(++a):i="e"===r?" ":"0",(o=n[r])&&(r=o(e,i)),u.push(r),c=a+1);return u.push(t.slice(c,a)),u.join("")}}function e(t,n){return function(e){var i,o,u=ha(1900),a=r(u,t,e+="",0);if(a!=e.length)return null;if("Q"in u)return new Date(u.Q);if("p"in u&&(u.H=u.H%12+12*u.p),"V"in u){if(u.V<1||u.V>53)return null;"w"in u||(u.w=1),"Z"in u?(i=la(ha(u.y)),o=i.getUTCDay(),i=o>4||0===o?db.ceil(i):db(i),i=lb.offset(i,7*(u.V-1)),u.y=i.getUTCFullYear(),u.m=i.getUTCMonth(),u.d=i.getUTCDate()+(u.w+6)%7):(i=n(ha(u.y)),o=i.getDay(),i=o>4||0===o?jx.ceil(i):jx(i),i=Ix.offset(i,7*(u.V-1)),u.y=i.getFullYear(),u.m=i.getMonth(),u.d=i.getDate()+(u.w+6)%7)}else("W"in u||"U"in u)&&("w"in u||(u.w="u"in u?u.u%7:"W"in u?1:0),o="Z"in u?la(ha(u.y)).getUTCDay():n(ha(u.y)).getDay(),u.m=0,u.d="W"in u?(u.w+6)%7+7*u.W-(o+5)%7:u.w+7*u.U-(o+6)%7);return"Z"in u?(u.H+=u.Z/100|0,u.M+=u.Z%100,la(u)):n(u)}}function r(t,n,e,r){for(var i,o,u=0,a=n.length,c=e.length;u<a;){if(r>=c)return-1;if(37===(i=n.charCodeAt(u++))){if(i=n.charAt(u++),!(o=H[i in Pb?n.charAt(u++):i])||(r=o(t,e,r))<0)return-1}else if(i!=e.charCodeAt(r++))return-1}return r}function i(t,n,e){var r=C.exec(n.slice(e));return r?(t.p=z[r[0].toLowerCase()],e+r[0].length):-1}function o(t,n,e){var r=L.exec(n.slice(e));return r?(t.w=D[r[0].toLowerCase()],e+r[0].length):-1}function u(t,n,e){var r=P.exec(n.slice(e));return r?(t.w=R[r[0].toLowerCase()],e+r[0].length):-1}function a(t,n,e){var r=O.exec(n.slice(e));return r?(t.m=F[r[0].toLowerCase()],e+r[0].length):-1}function c(t,n,e){var r=q.exec(n.slice(e));return r?(t.m=U[r[0].toLowerCase()],e+r[0].length):-1}function s(t,n,e){return r(t,w,n,e)}function f(t,n,e){return r(t,M,n,e)}function l(t,n,e){return r(t,T,n,e)}function h(t){return S[t.getDay()]}function p(t){return k[t.getDay()]}function d(t){return E[t.getMonth()]}function v(t){return A[t.getMonth()]}function g(t){return N[+(t.getHours()>=12)]}function y(t){return S[t.getUTCDay()]}function _(t){return k[t.getUTCDay()]}function m(t){return E[t.getUTCMonth()]}function x(t){return A[t.getUTCMonth()]}function b(t){return N[+(t.getUTCHours()>=12)]}var w=t.dateTime,M=t.date,T=t.time,N=t.periods,k=t.days,S=t.shortDays,A=t.months,E=t.shortMonths,C=ga(N),z=ya(N),P=ga(k),R=ya(k),L=ga(S),D=ya(S),q=ga(A),U=ya(A),O=ga(E),F=ya(E),Y={a:h,A:p,b:d,B:v,c:null,d:Ua,e:Ua,f:Ha,H:Oa,I:Fa,j:Ya,L:Ia,m:Ba,M:ja,p:g,Q:_c,s:mc,S:Xa,u:Wa,U:Va,V:$a,w:Za,W:Ga,x:null,X:null,y:Qa,Y:Ja,Z:Ka,"%":yc},I={a:y,A:_,b:m,B:x,c:null,d:tc,e:tc,f:oc,H:nc,I:ec,j:rc,L:ic,m:uc,M:ac,p:b,Q:_c,s:mc,S:cc,u:sc,U:fc,V:lc,w:hc,W:pc,x:null,X:null,y:dc,Y:vc,Z:gc,"%":yc},H={a:o,A:u,b:a,B:c,c:s,d:Sa,e:Sa,f:Ra,H:Ea,I:Ea,j:Aa,L:Pa,m:ka,M:Ca,p:i,Q:Da,s:qa,S:za,u:ma,U:xa,V:ba,w:_a,W:wa,x:f,X:l,y:Ta,Y:Ma,Z:Na,"%":La};return Y.x=n(M,Y),Y.X=n(T,Y),Y.c=n(w,Y),I.x=n(M,I),I.X=n(T,I),I.c=n(w,I),{format:function(t){var e=n(t+="",Y);return e.toString=function(){return t},e},parse:function(t){var n=e(t+="",fa);return n.toString=function(){return t},n},utcFormat:function(t){var e=n(t+="",I);return e.toString=function(){return t},e},utcParse:function(t){var n=e(t,la);return n.toString=function(){return t},n}}}function da(t,n,e){var r=t<0?"-":"",i=(r?-t:t)+"",o=i.length;return r+(o<e?new Array(e-o+1).join(n)+i:i)}function va(t){return t.replace(Db,"\\$&")}function ga(t){return new RegExp("^(?:"+t.map(va).join("|")+")","i")}function ya(t){for(var n={},e=-1,r=t.length;++e<r;)n[t[e].toLowerCase()]=e;return n}function _a(t,n,e){var r=Rb.exec(n.slice(e,e+1));return r?(t.w=+r[0],e+r[0].length):-1}function ma(t,n,e){var r=Rb.exec(n.slice(e,e+1));return r?(t.u=+r[0],e+r[0].length):-1}function xa(t,n,e){var r=Rb.exec(n.slice(e,e+2));return r?(t.U=+r[0],e+r[0].length):-1}function ba(t,n,e){var r=Rb.exec(n.slice(e,e+2));return r?(t.V=+r[0],e+r[0].length):-1}function wa(t,n,e){var r=Rb.exec(n.slice(e,e+2));return r?(t.W=+r[0],e+r[0].length):-1}function Ma(t,n,e){var r=Rb.exec(n.slice(e,e+4));return r?(t.y=+r[0],e+r[0].length):-1}function Ta(t,n,e){var r=Rb.exec(n.slice(e,e+2));return r?(t.y=+r[0]+(+r[0]>68?1900:2e3),e+r[0].length):-1}function Na(t,n,e){var r=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(n.slice(e,e+6));return r?(t.Z=r[1]?0:-(r[2]+(r[3]||"00")),e+r[0].length):-1}function ka(t,n,e){var r=Rb.exec(n.slice(e,e+2));return r?(t.m=r[0]-1,e+r[0].length):-1}function Sa(t,n,e){var r=Rb.exec(n.slice(e,e+2));return r?(t.d=+r[0],e+r[0].length):-1}function Aa(t,n,e){var r=Rb.exec(n.slice(e,e+3));return r?(t.m=0,t.d=+r[0],e+r[0].length):-1}function Ea(t,n,e){var r=Rb.exec(n.slice(e,e+2));return r?(t.H=+r[0],e+r[0].length):-1}function Ca(t,n,e){var r=Rb.exec(n.slice(e,e+2));return r?(t.M=+r[0],e+r[0].length):-1}function za(t,n,e){var r=Rb.exec(n.slice(e,e+2));return r?(t.S=+r[0],e+r[0].length):-1}function Pa(t,n,e){var r=Rb.exec(n.slice(e,e+3));return r?(t.L=+r[0],e+r[0].length):-1}function Ra(t,n,e){var r=Rb.exec(n.slice(e,e+6));return r?(t.L=Math.floor(r[0]/1e3),e+r[0].length):-1}function La(t,n,e){var r=Lb.exec(n.slice(e,e+1));return r?e+r[0].length:-1}function Da(t,n,e){var r=Rb.exec(n.slice(e));return r?(t.Q=+r[0],e+r[0].length):-1}function qa(t,n,e){var r=Rb.exec(n.slice(e));return r?(t.Q=1e3*+r[0],e+r[0].length):-1}function Ua(t,n){return da(t.getDate(),n,2)}function Oa(t,n){return da(t.getHours(),n,2)}function Fa(t,n){return da(t.getHours()%12||12,n,2)}function Ya(t,n){return da(1+Ix.count(ob(t),t),n,3)}function Ia(t,n){return da(t.getMilliseconds(),n,3)}function Ha(t,n){return Ia(t,n)+"000"}function Ba(t,n){return da(t.getMonth()+1,n,2)}function ja(t,n){return da(t.getMinutes(),n,2)}function Xa(t,n){return da(t.getSeconds(),n,2)}function Wa(t){var n=t.getDay();return 0===n?7:n}function Va(t,n){return da(Bx.count(ob(t),t),n,2)}function $a(t,n){var e=t.getDay();return t=e>=4||0===e?Vx(t):Vx.ceil(t),da(Vx.count(ob(t),t)+(4===ob(t).getDay()),n,2)}function Za(t){return t.getDay()}function Ga(t,n){return da(jx.count(ob(t),t),n,2)}function Qa(t,n){return da(t.getFullYear()%100,n,2)}function Ja(t,n){return da(t.getFullYear()%1e4,n,4)}function Ka(t){var n=t.getTimezoneOffset();return(n>0?"-":(n*=-1,"+"))+da(n/60|0,"0",2)+da(n%60,"0",2)}function tc(t,n){return da(t.getUTCDate(),n,2)}function nc(t,n){return da(t.getUTCHours(),n,2)}function ec(t,n){return da(t.getUTCHours()%12||12,n,2)}function rc(t,n){return da(1+lb.count(Eb(t),t),n,3)}function ic(t,n){return da(t.getUTCMilliseconds(),n,3)}function oc(t,n){return ic(t,n)+"000"}function uc(t,n){return da(t.getUTCMonth()+1,n,2)}function ac(t,n){return da(t.getUTCMinutes(),n,2)}function cc(t,n){return da(t.getUTCSeconds(),n,2)}function sc(t){var n=t.getUTCDay();return 0===n?7:n}function fc(t,n){return da(pb.count(Eb(t),t),n,2)}function lc(t,n){var e=t.getUTCDay();return t=e>=4||0===e?yb(t):yb.ceil(t),da(yb.count(Eb(t),t)+(4===Eb(t).getUTCDay()),n,2)}function hc(t){return t.getUTCDay()}function pc(t,n){return da(db.count(Eb(t),t),n,2)}function dc(t,n){return da(t.getUTCFullYear()%100,n,2)}function vc(t,n){return da(t.getUTCFullYear()%1e4,n,4)}function gc(){return"+0000"}function yc(){return"%"}function _c(t){return+t}function mc(t){return Math.floor(+t/1e3)}function xc(n){return Cb=pa(n),t.timeFormat=Cb.format,t.timeParse=Cb.parse,t.utcFormat=Cb.utcFormat,t.utcParse=Cb.utcParse,Cb}function bc(t){return t.toISOString()}function wc(t){var n=new Date(t);return isNaN(n)?null:n}function Mc(t){return new Date(t)}function Tc(t){return t instanceof Date?+t:+new Date(+t)}function Nc(t,n,e,r,o,u,a,c,s){function f(i){return(a(i)<i?v:u(i)<i?g:o(i)<i?y:r(i)<i?_:n(i)<i?e(i)<i?m:x:t(i)<i?b:w)(i)}function l(n,e,r,o){if(null==n&&(n=10),"number"==typeof n){var u=Math.abs(r-e)/n,a=Tf(function(t){return t[2]}).right(M,u);a===M.length?(o=i(e/jb,r/jb,n),n=t):a?(a=M[u/M[a-1][2]<M[a][2]/u?a-1:a],o=a[1],n=a[0]):(o=Math.max(i(e,r,n),1),n=c)}return null==o?n:n.every(o)}var h=ju(Ou,cp),p=h.invert,d=h.domain,v=s(".%L"),g=s(":%S"),y=s("%I:%M"),_=s("%I %p"),m=s("%a %d"),x=s("%b %d"),b=s("%B"),w=s("%Y"),M=[[a,1,Ob],[a,5,5*Ob],[a,15,15*Ob],[a,30,30*Ob],[u,1,Fb],[u,5,5*Fb],[u,15,15*Fb],[u,30,30*Fb],[o,1,Yb],[o,3,3*Yb],[o,6,6*Yb],[o,12,12*Yb],[r,1,Ib],[r,2,2*Ib],[e,1,Hb],[n,1,Bb],[n,3,3*Bb],[t,1,jb]];return h.invert=function(t){return new Date(p(t))},h.domain=function(t){return arguments.length?d(bx.call(t,Tc)):d().map(Mc)},h.ticks=function(t,n){var e,r=d(),i=r[0],o=r[r.length-1],u=o<i;return u&&(e=i,i=o,o=e),e=l(t,i,o,n),e=e?e.range(i,o+1):[],u?e.reverse():e},h.tickFormat=function(t,n){return null==n?f:s(n)},h.nice=function(t,n){var e=d();return(t=l(t,e[0],e[e.length-1],n))?d(Ax(e,t)):h},h.copy=function(){return Bu(h,Nc(t,n,e,r,o,u,a,c,s))},h}function kc(t){var n=t.length;return function(e){return t[Math.max(0,Math.min(n-1,Math.floor(e*n)))]}}function Sc(t){function n(n){var o=(n-e)/(r-e);return t(i?Math.max(0,Math.min(1,o)):o)}var e=0,r=1,i=!1;return n.domain=function(t){return arguments.length?(e=+t[0],r=+t[1],n):[e,r]},n.clamp=function(t){return arguments.length?(i=!!t,n):i},n.interpolator=function(e){return arguments.length?(t=e,n):t},n.copy=function(){return Sc(t).domain([e,r]).clamp(i)},Xu(n)}function Ac(t){return t>1?0:t<-1?gw:Math.acos(t)}function Ec(t){return t>=1?yw:t<=-1?-yw:Math.asin(t)}function Cc(t){return t.innerRadius}function zc(t){return t.outerRadius}function Pc(t){return t.startAngle}function Rc(t){return t.endAngle}function Lc(t){return t&&t.padAngle}function Dc(t,n,e,r,i,o,u,a){var c=e-t,s=r-n,f=u-i,l=a-o,h=(f*(n-o)-l*(t-i))/(l*c-f*s);return[t+h*c,n+h*s]}function qc(t,n,e,r,i,o,u){var a=t-e,c=n-r,s=(u?o:-o)/dw(a*a+c*c),f=s*c,l=-s*a,h=t+f,p=n+l,d=e+f,v=r+l,g=(h+d)/2,y=(p+v)/2,_=d-h,m=v-p,x=_*_+m*m,b=i-o,w=h*v-d*p,M=(m<0?-1:1)*dw(lw(0,b*b*x-w*w)),T=(w*m-_*M)/x,N=(-w*_-m*M)/x,k=(w*m+_*M)/x,S=(-w*_+m*M)/x,A=T-g,E=N-y,C=k-g,z=S-y;return A*A+E*E>C*C+z*z&&(T=k,N=S),{cx:T,cy:N,x01:-f,y01:-l,x11:T*(i/b-1),y11:N*(i/b-1)}}function Uc(t){this._context=t}function Oc(t){return t[0]}function Fc(t){return t[1]}function Yc(t){this._curve=t}function Ic(t){function n(n){return new Yc(t(n))}return n._curve=t,n}function Hc(t){var n=t.curve;return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t.curve=function(t){return arguments.length?n(Ic(t)):n()._curve},t}function Bc(t){return t.source}function jc(t){return t.target}function Xc(t){function n(){var n,a=Cw.call(arguments),c=e.apply(this,a),s=r.apply(this,a);if(u||(u=n=Oe()),t(u,+i.apply(this,(a[0]=c,a)),+o.apply(this,a),+i.apply(this,(a[0]=s,a)),+o.apply(this,a)),n)return u=null,n+""||null}var e=Bc,r=jc,i=Oc,o=Fc,u=null;return n.source=function(t){return arguments.length?(e=t,n):e},n.target=function(t){return arguments.length?(r=t,n):r},n.x=function(t){return arguments.length?(i="function"==typeof t?t:aw(+t),n):i},n.y=function(t){return arguments.length?(o="function"==typeof t?t:aw(+t),n):o},n.context=function(t){return arguments.length?(u=null==t?null:t,n):u},n}function Wc(t,n,e,r,i){t.moveTo(n,e),t.bezierCurveTo(n=(n+r)/2,e,n,i,r,i)}function Vc(t,n,e,r,i){t.moveTo(n,e),t.bezierCurveTo(n,e=(e+i)/2,r,e,r,i)}function $c(t,n,e,r,i){var o=Ew(n,e),u=Ew(n,e=(e+i)/2),a=Ew(r,e),c=Ew(r,i);t.moveTo(o[0],o[1]),t.bezierCurveTo(u[0],u[1],a[0],a[1],c[0],c[1])}function Zc(){return Xc(Wc)}function Gc(){return Xc(Vc)}function Qc(){var t=Xc($c);return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t}function Jc(t,n,e){t._context.bezierCurveTo((2*t._x0+t._x1)/3,(2*t._y0+t._y1)/3,(t._x0+2*t._x1)/3,(t._y0+2*t._y1)/3,(t._x0+4*t._x1+n)/6,(t._y0+4*t._y1+e)/6)}function Kc(t){this._context=t}function ts(t){this._context=t}function ns(t){this._context=t}function es(t,n){this._basis=new Kc(t),this._beta=n}function rs(t,n,e){t._context.bezierCurveTo(t._x1+t._k*(t._x2-t._x0),t._y1+t._k*(t._y2-t._y0),t._x2+t._k*(t._x1-n),t._y2+t._k*(t._y1-e),t._x2,t._y2)}function is(t,n){this._context=t,this._k=(1-n)/6}function os(t,n){this._context=t,this._k=(1-n)/6}function us(t,n){this._context=t,this._k=(1-n)/6}function as(t,n,e){var r=t._x1,i=t._y1,o=t._x2,u=t._y2;if(t._l01_a>vw){var a=2*t._l01_2a+3*t._l01_a*t._l12_a+t._l12_2a,c=3*t._l01_a*(t._l01_a+t._l12_a);r=(r*a-t._x0*t._l12_2a+t._x2*t._l01_2a)/c,i=(i*a-t._y0*t._l12_2a+t._y2*t._l01_2a)/c}if(t._l23_a>vw){var s=2*t._l23_2a+3*t._l23_a*t._l12_a+t._l12_2a,f=3*t._l23_a*(t._l23_a+t._l12_a);o=(o*s+t._x1*t._l23_2a-n*t._l12_2a)/f,u=(u*s+t._y1*t._l23_2a-e*t._l12_2a)/f}t._context.bezierCurveTo(r,i,o,u,t._x2,t._y2)}function cs(t,n){this._context=t,this._alpha=n}function ss(t,n){this._context=t,this._alpha=n}function fs(t,n){this._context=t,this._alpha=n}function ls(t){this._context=t}function hs(t){return t<0?-1:1}function ps(t,n,e){var r=t._x1-t._x0,i=n-t._x1,o=(t._y1-t._y0)/(r||i<0&&-0),u=(e-t._y1)/(i||r<0&&-0),a=(o*i+u*r)/(r+i);return(hs(o)+hs(u))*Math.min(Math.abs(o),Math.abs(u),.5*Math.abs(a))||0}function ds(t,n){var e=t._x1-t._x0;return e?(3*(t._y1-t._y0)/e-n)/2:n}function vs(t,n,e){var r=t._x0,i=t._y0,o=t._x1,u=t._y1,a=(o-r)/3;t._context.bezierCurveTo(r+a,i+a*n,o-a,u-a*e,o,u)}function gs(t){this._context=t}function ys(t){this._context=new _s(t)}function _s(t){this._context=t}function ms(t){return new gs(t)}function xs(t){return new ys(t)}function bs(t){this._context=t}function ws(t){var n,e,r=t.length-1,i=new Array(r),o=new Array(r),u=new Array(r);for(i[0]=0,o[0]=2,u[0]=t[0]+2*t[1],n=1;n<r-1;++n)i[n]=1,o[n]=4,u[n]=4*t[n]+2*t[n+1];for(i[r-1]=2,o[r-1]=7,u[r-1]=8*t[r-1]+t[r],n=1;n<r;++n)e=i[n]/o[n-1],o[n]-=e,u[n]-=e*u[n-1];for(i[r-1]=u[r-1]/o[r-1],n=r-2;n>=0;--n)i[n]=(u[n]-i[n+1])/o[n];for(o[r-1]=(t[r]+i[r-1])/2,n=0;n<r-1;++n)o[n]=2*t[n+1]-i[n+1];return[i,o]}function Ms(t,n){this._context=t,this._t=n}function Ts(t){return new Ms(t,0)}function Ns(t){return new Ms(t,1)}function ks(t,n){return t[n]}function Ss(t){for(var n,e=0,r=-1,i=t.length;++r<i;)(n=+t[r][1])&&(e+=n);return e}function As(t){return t[0]}function Es(t){return t[1]}function Cs(){this._=null}function zs(t){t.U=t.C=t.L=t.R=t.P=t.N=null}function Ps(t,n){var e=n,r=n.R,i=e.U;i?i.L===e?i.L=r:i.R=r:t._=r,r.U=i,e.U=r,e.R=r.L,e.R&&(e.R.U=e),r.L=e}function Rs(t,n){var e=n,r=n.L,i=e.U;i?i.L===e?i.L=r:i.R=r:t._=r,r.U=i,e.U=r,e.L=r.R,e.L&&(e.L.U=e),r.R=e}function Ls(t){for(;t.L;)t=t.L;return t}function Ds(t,n,e,r){var i=[null,null],o=kM.push(i)-1;return i.left=t,i.right=n,e&&Us(i,t,n,e),r&&Us(i,n,t,r),TM[t.index].halfedges.push(o),TM[n.index].halfedges.push(o),i}function qs(t,n,e){var r=[n,e];return r.left=t,r}function Us(t,n,e,r){t[0]||t[1]?t.left===e?t[1]=r:t[0]=r:(t[0]=r,t.left=n,t.right=e)}function Os(t,n,e,r,i){var o,u=t[0],a=t[1],c=u[0],s=u[1],f=a[0],l=a[1],h=0,p=1,d=f-c,v=l-s;if(o=n-c,d||!(o>0)){if(o/=d,d<0){if(o<h)return;o<p&&(p=o)}else if(d>0){if(o>p)return;o>h&&(h=o)}if(o=r-c,d||!(o<0)){if(o/=d,d<0){if(o>p)return;o>h&&(h=o)}else if(d>0){if(o<h)return;o<p&&(p=o)}if(o=e-s,v||!(o>0)){if(o/=v,v<0){if(o<h)return;o<p&&(p=o)}else if(v>0){if(o>p)return;o>h&&(h=o)}if(o=i-s,v||!(o<0)){if(o/=v,v<0){if(o>p)return;o>h&&(h=o)}else if(v>0){if(o<h)return;o<p&&(p=o)}return!(h>0||p<1)||(h>0&&(t[0]=[c+h*d,s+h*v]),p<1&&(t[1]=[c+p*d,s+p*v]),!0)}}}}}function Fs(t,n,e,r,i){var o=t[1];if(o)return!0;var u,a,c=t[0],s=t.left,f=t.right,l=s[0],h=s[1],p=f[0],d=f[1],v=(l+p)/2,g=(h+d)/2;if(d===h){if(v<n||v>=r)return;if(l>p){if(c){if(c[1]>=i)return}else c=[v,e];o=[v,i]}else{if(c){if(c[1]<e)return}else c=[v,i];o=[v,e]}}else if(u=(l-p)/(d-h),a=g-u*v,u<-1||u>1)if(l>p){if(c){if(c[1]>=i)return}else c=[(e-a)/u,e];o=[(i-a)/u,i]}else{if(c){if(c[1]<e)return}else c=[(i-a)/u,i];o=[(e-a)/u,e]}else if(h<d){if(c){if(c[0]>=r)return}else c=[n,u*n+a];o=[r,u*r+a]}else{if(c){if(c[0]<n)return}else c=[r,u*r+a];o=[n,u*n+a]}return t[0]=c,t[1]=o,!0}function Ys(t,n,e,r){for(var i,o=kM.length;o--;)Fs(i=kM[o],t,n,e,r)&&Os(i,t,n,e,r)&&(Math.abs(i[0][0]-i[1][0])>EM||Math.abs(i[0][1]-i[1][1])>EM)||delete kM[o]}function Is(t){return TM[t.index]={site:t,halfedges:[]}}function Hs(t,n){var e=t.site,r=n.left,i=n.right;return e===i&&(i=r,r=e),i?Math.atan2(i[1]-r[1],i[0]-r[0]):(e===r?(r=n[1],i=n[0]):(r=n[0],i=n[1]),Math.atan2(r[0]-i[0],i[1]-r[1]))}function Bs(t,n){return n[+(n.left!==t.site)]}function js(t,n){return n[+(n.left===t.site)]}function Xs(){for(var t,n,e,r,i=0,o=TM.length;i<o;++i)if((t=TM[i])&&(r=(n=t.halfedges).length)){var u=new Array(r),a=new Array(r);for(e=0;e<r;++e)u[e]=e,a[e]=Hs(t,kM[n[e]]);for(u.sort(function(t,n){return a[n]-a[t]}),e=0;e<r;++e)a[e]=n[u[e]];for(e=0;e<r;++e)n[e]=a[e]}}function Ws(t,n,e,r){var i,o,u,a,c,s,f,l,h,p,d,v,g=TM.length,y=!0;for(i=0;i<g;++i)if(o=TM[i]){for(u=o.site,c=o.halfedges,a=c.length;a--;)kM[c[a]]||c.splice(a,1);for(a=0,s=c.length;a<s;)p=js(o,kM[c[a]]),d=p[0],v=p[1],f=Bs(o,kM[c[++a%s]]),l=f[0],h=f[1],(Math.abs(d-l)>EM||Math.abs(v-h)>EM)&&(c.splice(a,0,kM.push(qs(u,p,Math.abs(d-t)<EM&&r-v>EM?[t,Math.abs(l-t)<EM?h:r]:Math.abs(v-r)<EM&&e-d>EM?[Math.abs(h-r)<EM?l:e,r]:Math.abs(d-e)<EM&&v-n>EM?[e,Math.abs(l-e)<EM?h:n]:Math.abs(v-n)<EM&&d-t>EM?[Math.abs(h-n)<EM?l:t,n]:null))-1),++s);s&&(y=!1)}if(y){var _,m,x,b=1/0;for(i=0,y=null;i<g;++i)(o=TM[i])&&(u=o.site,_=u[0]-t,m=u[1]-n,(x=_*_+m*m)<b&&(b=x,y=o));if(y){var w=[t,n],M=[t,r],T=[e,r],N=[e,n];y.halfedges.push(kM.push(qs(u=y.site,w,M))-1,kM.push(qs(u,M,T))-1,kM.push(qs(u,T,N))-1,kM.push(qs(u,N,w))-1)}}for(i=0;i<g;++i)(o=TM[i])&&(o.halfedges.length||delete TM[i])}function Vs(){zs(this),this.x=this.y=this.arc=this.site=this.cy=null}function $s(t){var n=t.P,e=t.N;if(n&&e){var r=n.site,i=t.site,o=e.site;if(r!==o){var u=i[0],a=i[1],c=r[0]-u,s=r[1]-a,f=o[0]-u,l=o[1]-a,h=2*(c*l-s*f);if(!(h>=-CM)){var p=c*c+s*s,d=f*f+l*l,v=(l*p-s*d)/h,g=(c*d-f*p)/h,y=SM.pop()||new Vs;y.arc=t,y.site=i,y.x=v+u,y.y=(y.cy=g+a)+Math.sqrt(v*v+g*g),t.circle=y;for(var _=null,m=NM._;m;)if(y.y<m.y||y.y===m.y&&y.x<=m.x){if(!m.L){_=m.P;break}m=m.L}else{if(!m.R){_=m;break}m=m.R}NM.insert(_,y),_||(wM=y)}}}}function Zs(t){var n=t.circle;n&&(n.P||(wM=n.N),NM.remove(n),SM.push(n),zs(n),t.circle=null)}function Gs(){zs(this),this.edge=this.site=this.circle=null}function Qs(t){var n=AM.pop()||new Gs;return n.site=t,n}function Js(t){Zs(t),MM.remove(t),AM.push(t),zs(t)}function Ks(t){var n=t.circle,e=n.x,r=n.cy,i=[e,r],o=t.P,u=t.N,a=[t];Js(t);for(var c=o;c.circle&&Math.abs(e-c.circle.x)<EM&&Math.abs(r-c.circle.cy)<EM;)o=c.P,a.unshift(c),Js(c),c=o;a.unshift(c),Zs(c);for(var s=u;s.circle&&Math.abs(e-s.circle.x)<EM&&Math.abs(r-s.circle.cy)<EM;)u=s.N,a.push(s),Js(s),s=u;a.push(s),Zs(s);var f,l=a.length;for(f=1;f<l;++f)s=a[f],c=a[f-1],Us(s.edge,c.site,s.site,i);c=a[0],s=a[l-1],s.edge=Ds(c.site,s.site,null,i),$s(c),$s(s)}function tf(t){for(var n,e,r,i,o=t[0],u=t[1],a=MM._;a;)if((r=nf(a,u)-o)>EM)a=a.L;else{if(!((i=o-ef(a,u))>EM)){r>-EM?(n=a.P,e=a):i>-EM?(n=a,e=a.N):n=e=a;break}if(!a.R){n=a;break}a=a.R}Is(t);var c=Qs(t);if(MM.insert(n,c),n||e){if(n===e)return Zs(n),e=Qs(n.site),MM.insert(c,e),c.edge=e.edge=Ds(n.site,c.site),$s(n),void $s(e);if(!e)return void(c.edge=Ds(n.site,c.site));Zs(n),Zs(e);var s=n.site,f=s[0],l=s[1],h=t[0]-f,p=t[1]-l,d=e.site,v=d[0]-f,g=d[1]-l,y=2*(h*g-p*v),_=h*h+p*p,m=v*v+g*g,x=[(g*_-p*m)/y+f,(h*m-v*_)/y+l];Us(e.edge,s,d,x),c.edge=Ds(s,t,null,x),e.edge=Ds(t,d,null,x),$s(n),$s(e)}}function nf(t,n){var e=t.site,r=e[0],i=e[1],o=i-n;if(!o)return r;var u=t.P;if(!u)return-1/0;e=u.site;var a=e[0],c=e[1],s=c-n;if(!s)return a;var f=a-r,l=1/o-1/s,h=f/s;return l?(-h+Math.sqrt(h*h-2*l*(f*f/(-2*s)-c+s/2+i-o/2)))/l+r:(r+a)/2}function ef(t,n){var e=t.N;if(e)return nf(e,n);var r=t.site;return r[1]===n?r[0]:1/0}function rf(t,n,e){return(t[0]-e[0])*(n[1]-t[1])-(t[0]-n[0])*(e[1]-t[1])}function of(t,n){return n[1]-t[1]||n[0]-t[0]}function uf(t,n){var e,r,i,o=t.sort(of).pop();for(kM=[],TM=new Array(t.length),MM=new Cs,NM=new Cs;;)if(i=wM,o&&(!i||o[1]<i.y||o[1]===i.y&&o[0]<i.x))o[0]===e&&o[1]===r||(tf(o),e=o[0],r=o[1]),o=t.pop();else{if(!i)break;Ks(i.arc)}if(Xs(),n){var u=+n[0][0],a=+n[0][1],c=+n[1][0],s=+n[1][1];Ys(u,a,c,s),Ws(u,a,c,s)}this.edges=kM,this.cells=TM,MM=NM=kM=TM=null}function af(t,n,e){this.target=t,this.type=n,this.transform=e}function cf(t,n,e){this.k=t,this.x=n,this.y=e}function sf(t){return t.__zoom||RM}function ff(){t.event.stopImmediatePropagation()}function lf(){return!t.event.button}function hf(){var t,n,e=this;return e instanceof SVGElement?(e=e.ownerSVGElement||e,t=e.width.baseVal.value,n=e.height.baseVal.value):(t=e.clientWidth,n=e.clientHeight),[[0,0],[t,n]]}function pf(){return this.__zoom||RM}function df(){return-t.event.deltaY*(t.event.deltaMode?120:1)/500}function vf(){return"ontouchstart"in this}function gf(t,n,e){var r=t.invertX(n[0][0])-e[0][0],i=t.invertX(n[1][0])-e[1][0],o=t.invertY(n[0][1])-e[0][1],u=t.invertY(n[1][1])-e[1][1];return t.translate(i>r?(r+i)/2:Math.min(0,r)||Math.max(0,i),u>o?(o+u)/2:Math.min(0,o)||Math.max(0,u))}function yf(){return null}function _f(){for(var t=arguments,n=0,e=t.length;n<e;)"string"!=typeof t[n]&&"number"!=typeof t[n]||(t[n]=function(t){return function(n){return n[t]}}(t[n])),n++;return function(n){for(var e=0,r=t.length;e++<r;)n=t[e-1].call(this,n);return n}}function mf(t,n,e){return(e[0]-n[0])*(t[1]-n[1])<(e[1]-n[1])*(t[0]-n[0])}function xf(t,n,e,r){var i=t[0],o=e[0],u=n[0]-i,a=r[0]-o,c=t[1],s=e[1],f=n[1]-c,l=r[1]-s,h=(a*(c-s)-l*(i-o))/(l*u-a*f);return[i+h*u,c+h*f]}function bf(t){var n=t[0],e=t[t.length-1];return!(n[0]-e[0]||n[1]-e[1])}function wf(){function n(){var t=0;s.forEach(function(n,e){n<pageYOffset-d+y&&(t=e)}),t=Math.min(i-1,t);var n=pageYOffset>o;h!=n&&(h=n,p.classed("graph-scroll-below",h));var e=!h&&pageYOffset>d;l!=e&&(l=e,p.classed("graph-scroll-fixed",l)),h&&(t=i-1),c!=t&&(a.classed("graph-scroll-active",function(n,e){return e===t}),u.call("active",null,t),c=t)}function e(){s=[];var t;a.each(function(n,e){e||(t=this.getBoundingClientRect().top),s.push(this.getBoundingClientRect().top-t)});var n=p.node().getBoundingClientRect(),e=f.node()?f.node().getBoundingClientRect().height:0;d=n.top+pageYOffset,o=n.bottom-e+pageYOffset}function r(){if(l){var n;switch(t.event.keyCode){case 39:if(t.event.metaKey)return;case 40:case 34:n=t.event.metaKey?1/0:1;break;case 37:if(t.event.metaKey)return;case 38:case 33:n=t.event.metaKey?-1/0:-1;break;case 32:n=t.event.shiftKey?-1:1;break;default:return}var e=Math.max(0,Math.min(c+n,i-1));e!=c&&(fh(document.documentElement).interrupt().transition().duration(500).tween("scroll",function(){var t=cp(pageYOffset,s[e]+d);return function(n){scrollTo(0,t(n))}}),t.event.preventDefault())}}var i,o,u=g("scroll","active"),a=fh("null"),c=NaN,s=[],f=fh("null"),l=null,h=null,p=fh("body"),d=0,v=Math.random(),y=200,_={};return _.container=function(t){return t?(p=t,_):p},_.graph=function(t){return t?(f=t,_):f},_.eventId=function(t){return t?(v=t,_):v},_.sections=function(t){return t?(a=t,i=a.size(),fh(window).on("scroll.gscroll"+v,n).on("resize.gscroll"+v,e).on("keydown.gscroll"+v,r),e(),window["gscrollTimer"+v]&&window["gscrollTimer"+v].stop(),window["gscrollTimer"+v]=bn(n),_):a},_.on=function(){var t=u.on.apply(u,arguments);return t===u?_:t},_.offset=function(t){return t?(y=t,_):y},_}var Mf=function(t,n){return t<n?-1:t>n?1:t>=n?0:NaN},Tf=function(t){return 1===t.length&&(t=n(t)),{left:function(n,e,r,i){for(null==r&&(r=0),null==i&&(i=n.length);r<i;){var o=r+i>>>1;t(n[o],e)<0?r=o+1:i=o}return r},right:function(n,e,r,i){for(null==r&&(r=0),null==i&&(i=n.length);r<i;){var o=r+i>>>1;t(n[o],e)>0?i=o:r=o+1}return r}}},Nf=Tf(Mf),kf=Nf.right,Sf=Nf.left,Af=function(t,n){null==n&&(n=e);for(var r=0,i=t.length-1,o=t[0],u=new Array(i<0?0:i);r<i;)u[r]=n(o,o=t[++r]);return u},Ef=function(t,n,r){var i,o,u,a,c=t.length,s=n.length,f=new Array(c*s);for(null==r&&(r=e),i=u=0;i<c;++i)for(a=t[i],o=0;o<s;++o,++u)f[u]=r(a,n[o]);return f},Cf=function(t,n){return n<t?-1:n>t?1:n>=t?0:NaN},zf=function(t){return null===t?NaN:+t},Pf=function(t,n){var e,r,i=t.length,o=0,u=-1,a=0,c=0;if(null==n)for(;++u<i;)isNaN(e=zf(t[u]))||(r=e-a,a+=r/++o,c+=r*(e-a));else for(;++u<i;)isNaN(e=zf(n(t[u],u,t)))||(r=e-a,a+=r/++o,c+=r*(e-a));if(o>1)return c/(o-1)},Rf=function(t,n){var e=Pf(t,n);return e?Math.sqrt(e):e},Lf=function(t,n){var e,r,i,o=t.length,u=-1;if(null==n){for(;++u<o;)if(null!=(e=t[u])&&e>=e)for(r=i=e;++u<o;)null!=(e=t[u])&&(r>e&&(r=e),i<e&&(i=e))}else for(;++u<o;)if(null!=(e=n(t[u],u,t))&&e>=e)for(r=i=e;++u<o;)null!=(e=n(t[u],u,t))&&(r>e&&(r=e),i<e&&(i=e));return[r,i]},Df=Array.prototype,qf=Df.slice,Uf=Df.map,Of=function(t){return function(){return t}},Ff=function(t){return t},Yf=function(t,n,e){t=+t,n=+n,e=(i=arguments.length)<2?(n=t,t=0,1):i<3?1:+e;for(var r=-1,i=0|Math.max(0,Math.ceil((n-t)/e)),o=new Array(i);++r<i;)o[r]=t+r*e;return o},If=Math.sqrt(50),Hf=Math.sqrt(10),Bf=Math.sqrt(2),jf=function(t,n,e){var i,o,u,a,c=-1;if(n=+n,t=+t,e=+e,t===n&&e>0)return[t];if((i=n<t)&&(o=t,t=n,n=o),0===(a=r(t,n,e))||!isFinite(a))return[];if(a>0)for(t=Math.ceil(t/a),n=Math.floor(n/a),u=new Array(o=Math.ceil(n-t+1));++c<o;)u[c]=(t+c)*a;else for(t=Math.floor(t*a),n=Math.ceil(n*a),u=new Array(o=Math.ceil(t-n+1));++c<o;)u[c]=(t-c)/a;return i&&u.reverse(),u},Xf=function(t){return Math.ceil(Math.log(t.length)/Math.LN2)+1},Wf=function(){function t(t){var o,u,a=t.length,c=new Array(a);for(o=0;o<a;++o)c[o]=n(t[o],o,t);var s=e(c),f=s[0],l=s[1],h=r(c,f,l);Array.isArray(h)||(h=i(f,l,h),h=Yf(Math.ceil(f/h)*h,Math.floor(l/h)*h,h));for(var p=h.length;h[0]<=f;)h.shift(),--p;for(;h[p-1]>l;)h.pop(),--p;var d,v=new Array(p+1);for(o=0;o<=p;++o)d=v[o]=[],d.x0=o>0?h[o-1]:f,d.x1=o<p?h[o]:l;for(o=0;o<a;++o)u=c[o],f<=u&&u<=l&&v[kf(h,u,0,p)].push(t[o]);return v}var n=Ff,e=Lf,r=Xf;return t.value=function(e){return arguments.length?(n="function"==typeof e?e:Of(e),t):n},t.domain=function(n){return arguments.length?(e="function"==typeof n?n:Of([n[0],n[1]]),t):e},t.thresholds=function(n){return arguments.length?(r="function"==typeof n?n:Of(Array.isArray(n)?qf.call(n):n),t):r},t},Vf=function(t,n,e){if(null==e&&(e=zf),r=t.length){if((n=+n)<=0||r<2)return+e(t[0],0,t);if(n>=1)return+e(t[r-1],r-1,t);var r,i=(r-1)*n,o=Math.floor(i),u=+e(t[o],o,t);return u+(+e(t[o+1],o+1,t)-u)*(i-o)}},$f=function(t,n,e){return t=Uf.call(t,zf).sort(Mf),Math.ceil((e-n)/(2*(Vf(t,.75)-Vf(t,.25))*Math.pow(t.length,-1/3)))},Zf=function(t,n,e){return Math.ceil((e-n)/(3.5*Rf(t)*Math.pow(t.length,-1/3)))},Gf=function(t,n){var e,r,i=t.length,o=-1;if(null==n){for(;++o<i;)if(null!=(e=t[o])&&e>=e)for(r=e;++o<i;)null!=(e=t[o])&&e>r&&(r=e)}else for(;++o<i;)if(null!=(e=n(t[o],o,t))&&e>=e)for(r=e;++o<i;)null!=(e=n(t[o],o,t))&&e>r&&(r=e);return r},Qf=function(t,n){var e,r=t.length,i=r,o=-1,u=0;if(null==n)for(;++o<r;)isNaN(e=zf(t[o]))?--i:u+=e;else for(;++o<r;)isNaN(e=zf(n(t[o],o,t)))?--i:u+=e;if(i)return u/i},Jf=function(t,n){var e,r=t.length,i=-1,o=[];if(null==n)for(;++i<r;)isNaN(e=zf(t[i]))||o.push(e);else for(;++i<r;)isNaN(e=zf(n(t[i],i,t)))||o.push(e);return Vf(o.sort(Mf),.5)},Kf=function(t){for(var n,e,r,i=t.length,o=-1,u=0;++o<i;)u+=t[o].length;for(e=new Array(u);--i>=0;)for(r=t[i],n=r.length;--n>=0;)e[--u]=r[n];return e},tl=function(t,n){var e,r,i=t.length,o=-1;if(null==n){for(;++o<i;)if(null!=(e=t[o])&&e>=e)for(r=e;++o<i;)null!=(e=t[o])&&r>e&&(r=e)}else for(;++o<i;)if(null!=(e=n(t[o],o,t))&&e>=e)for(r=e;++o<i;)null!=(e=n(t[o],o,t))&&r>e&&(r=e);return r},nl=function(t,n){for(var e=n.length,r=new Array(e);e--;)r[e]=t[n[e]];return r},el=function(t,n){if(e=t.length){var e,r,i=0,o=0,u=t[o];for(null==n&&(n=Mf);++i<e;)(n(r=t[i],u)<0||0!==n(u,u))&&(u=r,o=i);return 0===n(u,u)?o:void 0}},rl=function(t,n,e){for(var r,i,o=(null==e?t.length:e)-(n=null==n?0:+n);o;)i=Math.random()*o--|0,r=t[o+n],t[o+n]=t[i+n],t[i+n]=r;return t},il=function(t,n){var e,r=t.length,i=-1,o=0;if(null==n)for(;++i<r;)(e=+t[i])&&(o+=e);else for(;++i<r;)(e=+n(t[i],i,t))&&(o+=e);return o},ol=function(t){if(!(i=t.length))return[];for(var n=-1,e=tl(t,o),r=new Array(e);++n<e;)for(var i,u=-1,a=r[n]=new Array(i);++u<i;)a[u]=t[u][n];return r},ul=function(){return ol(arguments)},al=Array.prototype.slice,cl=function(t){return t},sl=1,fl=2,ll=3,hl=4,pl=1e-6,dl={value:function(){}};y.prototype=g.prototype={constructor:y,on:function(t,n){var e,r=this._,i=_(t+"",r),o=-1,u=i.length;{if(!(arguments.length<2)){if(null!=n&&"function"!=typeof n)throw new Error("invalid callback: "+n);for(;++o<u;)if(e=(t=i[o]).type)r[e]=x(r[e],t.name,n);else if(null==n)for(e in r)r[e]=x(r[e],t.name,null);return this}for(;++o<u;)if((e=(t=i[o]).type)&&(e=m(r[e],t.name)))return e}},copy:function(){var t={},n=this._;for(var e in n)t[e]=n[e].slice();return new y(t)},call:function(t,n){if((e=arguments.length-2)>0)for(var e,r,i=new Array(e),o=0;o<e;++o)i[o]=arguments[o+2];if(!this._.hasOwnProperty(t))throw new Error("unknown type: "+t);for(r=this._[t],o=0,e=r.length;o<e;++o)r[o].value.apply(n,i)},apply:function(t,n,e){if(!this._.hasOwnProperty(t))throw new Error("unknown type: "+t);for(var r=this._[t],i=0,o=r.length;i<o;++i)r[i].value.apply(n,e)}};var vl="http://www.w3.org/1999/xhtml",gl={svg:"http://www.w3.org/2000/svg",xhtml:vl,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"},yl=function(t){var n=t+="",e=n.indexOf(":");return e>=0&&"xmlns"!==(n=t.slice(0,e))&&(t=t.slice(e+1)),gl.hasOwnProperty(n)?{space:gl[n],local:t}:t},_l=function(t){var n=yl(t);return(n.local?w:b)(n)},ml=0;T.prototype=M.prototype={constructor:T,get:function(t){for(var n=this._;!(n in t);)if(!(t=t.parentNode))return;return t[n]},set:function(t,n){return t[this._]=n},remove:function(t){return this._ in t&&delete t[this._]},toString:function(){return this._}};var xl=function(t){return function(){return this.matches(t)}};if("undefined"!=typeof document){var bl=document.documentElement;if(!bl.matches){var wl=bl.webkitMatchesSelector||bl.msMatchesSelector||bl.mozMatchesSelector||bl.oMatchesSelector;xl=function(t){return function(){return wl.call(this,t)}}}}var Ml=xl,Tl={};if(t.event=null,"undefined"!=typeof document){"onmouseenter"in document.documentElement||(Tl={mouseenter:"mouseover",mouseleave:"mouseout"})}var Nl=function(t,n,e){var r,i,o=S(t+""),u=o.length;{if(!(arguments.length<2)){for(a=n?E:A,null==e&&(e=!1),r=0;r<u;++r)this.each(a(o[r],n,e));return this}var a=this.node().__on;if(a)for(var c,s=0,f=a.length;s<f;++s)for(r=0,c=a[s];r<u;++r)if((i=o[r]).type===c.type&&i.name===c.name)return c.value}},kl=function(){for(var n,e=t.event;n=e.sourceEvent;)e=n;return e},Sl=function(t,n){var e=t.ownerSVGElement||t;if(e.createSVGPoint){var r=e.createSVGPoint();return r.x=n.clientX,r.y=n.clientY,r=r.matrixTransform(t.getScreenCTM().inverse()),[r.x,r.y]}var i=t.getBoundingClientRect();return[n.clientX-i.left-t.clientLeft,n.clientY-i.top-t.clientTop]},Al=function(t){var n=kl();return n.changedTouches&&(n=n.changedTouches[0]),Sl(t,n)},El=function(t){return null==t?z:function(){return this.querySelector(t)}},Cl=function(t){"function"!=typeof t&&(t=El(t));for(var n=this._groups,e=n.length,r=new Array(e),i=0;i<e;++i)for(var o,u,a=n[i],c=a.length,s=r[i]=new Array(c),f=0;f<c;++f)(o=a[f])&&(u=t.call(o,o.__data__,f,a))&&("__data__"in o&&(u.__data__=o.__data__),s[f]=u);return new yt(r,this._parents)},zl=function(t){return null==t?P:function(){return this.querySelectorAll(t)}},Pl=function(t){"function"!=typeof t&&(t=zl(t))
;for(var n=this._groups,e=n.length,r=[],i=[],o=0;o<e;++o)for(var u,a=n[o],c=a.length,s=0;s<c;++s)(u=a[s])&&(r.push(t.call(u,u.__data__,s,a)),i.push(u));return new yt(r,i)},Rl=function(t){"function"!=typeof t&&(t=Ml(t));for(var n=this._groups,e=n.length,r=new Array(e),i=0;i<e;++i)for(var o,u=n[i],a=u.length,c=r[i]=[],s=0;s<a;++s)(o=u[s])&&t.call(o,o.__data__,s,u)&&c.push(o);return new yt(r,this._parents)},Ll=function(t){return new Array(t.length)},Dl=function(){return new yt(this._enter||this._groups.map(Ll),this._parents)};R.prototype={constructor:R,appendChild:function(t){return this._parent.insertBefore(t,this._next)},insertBefore:function(t,n){return this._parent.insertBefore(t,n)},querySelector:function(t){return this._parent.querySelector(t)},querySelectorAll:function(t){return this._parent.querySelectorAll(t)}};var ql=function(t){return function(){return t}},Ul="$",Ol=function(t,n){if(!t)return p=new Array(this.size()),s=-1,this.each(function(t){p[++s]=t}),p;var e=n?D:L,r=this._parents,i=this._groups;"function"!=typeof t&&(t=ql(t));for(var o=i.length,u=new Array(o),a=new Array(o),c=new Array(o),s=0;s<o;++s){var f=r[s],l=i[s],h=l.length,p=t.call(f,f&&f.__data__,s,r),d=p.length,v=a[s]=new Array(d),g=u[s]=new Array(d);e(f,l,v,g,c[s]=new Array(h),p,n);for(var y,_,m=0,x=0;m<d;++m)if(y=v[m]){for(m>=x&&(x=m+1);!(_=g[x])&&++x<d;);y._next=_||null}}return u=new yt(u,r),u._enter=a,u._exit=c,u},Fl=function(){return new yt(this._exit||this._groups.map(Ll),this._parents)},Yl=function(t){for(var n=this._groups,e=t._groups,r=n.length,i=e.length,o=Math.min(r,i),u=new Array(r),a=0;a<o;++a)for(var c,s=n[a],f=e[a],l=s.length,h=u[a]=new Array(l),p=0;p<l;++p)(c=s[p]||f[p])&&(h[p]=c);for(;a<r;++a)u[a]=n[a];return new yt(u,this._parents)},Il=function(){for(var t=this._groups,n=-1,e=t.length;++n<e;)for(var r,i=t[n],o=i.length-1,u=i[o];--o>=0;)(r=i[o])&&(u&&u!==r.nextSibling&&u.parentNode.insertBefore(r,u),u=r);return this},Hl=function(t){function n(n,e){return n&&e?t(n.__data__,e.__data__):!n-!e}t||(t=q);for(var e=this._groups,r=e.length,i=new Array(r),o=0;o<r;++o){for(var u,a=e[o],c=a.length,s=i[o]=new Array(c),f=0;f<c;++f)(u=a[f])&&(s[f]=u);s.sort(n)}return new yt(i,this._parents).order()},Bl=function(){var t=arguments[0];return arguments[0]=this,t.apply(null,arguments),this},jl=function(){var t=new Array(this.size()),n=-1;return this.each(function(){t[++n]=this}),t},Xl=function(){for(var t=this._groups,n=0,e=t.length;n<e;++n)for(var r=t[n],i=0,o=r.length;i<o;++i){var u=r[i];if(u)return u}return null},Wl=function(){var t=0;return this.each(function(){++t}),t},Vl=function(){return!this.node()},$l=function(t){for(var n=this._groups,e=0,r=n.length;e<r;++e)for(var i,o=n[e],u=0,a=o.length;u<a;++u)(i=o[u])&&t.call(i,i.__data__,u,o);return this},Zl=function(t,n){var e=yl(t);if(arguments.length<2){var r=this.node();return e.local?r.getAttributeNS(e.space,e.local):r.getAttribute(e)}return this.each((null==n?e.local?O:U:"function"==typeof n?e.local?H:I:e.local?Y:F)(e,n))},Gl=function(t){return t.ownerDocument&&t.ownerDocument.defaultView||t.document&&t||t.defaultView},Ql=function(t,n,e){return arguments.length>1?this.each((null==n?B:"function"==typeof n?X:j)(t,n,null==e?"":e)):W(this.node(),t)},Jl=function(t,n){return arguments.length>1?this.each((null==n?V:"function"==typeof n?Z:$)(t,n)):this.node()[t]};J.prototype={add:function(t){this._names.indexOf(t)<0&&(this._names.push(t),this._node.setAttribute("class",this._names.join(" ")))},remove:function(t){var n=this._names.indexOf(t);n>=0&&(this._names.splice(n,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(t){return this._names.indexOf(t)>=0}};var Kl=function(t,n){var e=G(t+"");if(arguments.length<2){for(var r=Q(this.node()),i=-1,o=e.length;++i<o;)if(!r.contains(e[i]))return!1;return!0}return this.each(("function"==typeof n?rt:n?nt:et)(e,n))},th=function(t){return arguments.length?this.each(null==t?it:("function"==typeof t?ut:ot)(t)):this.node().textContent},nh=function(t){return arguments.length?this.each(null==t?at:("function"==typeof t?st:ct)(t)):this.node().innerHTML},eh=function(){return this.each(ft)},rh=function(){return this.each(lt)},ih=function(t){var n="function"==typeof t?t:_l(t);return this.select(function(){return this.appendChild(n.apply(this,arguments))})},oh=function(t,n){var e="function"==typeof t?t:_l(t),r=null==n?ht:"function"==typeof n?n:El(n);return this.select(function(){return this.insertBefore(e.apply(this,arguments),r.apply(this,arguments)||null)})},uh=function(){return this.each(pt)},ah=function(t){return arguments.length?this.property("__data__",t):this.node().__data__},ch=function(t,n){return this.each(("function"==typeof n?gt:vt)(t,n))},sh=[null];yt.prototype=_t.prototype={constructor:yt,select:Cl,selectAll:Pl,filter:Rl,data:Ol,enter:Dl,exit:Fl,merge:Yl,order:Il,sort:Hl,call:Bl,nodes:jl,node:Xl,size:Wl,empty:Vl,each:$l,attr:Zl,style:Ql,property:Jl,classed:Kl,text:th,html:nh,raise:eh,lower:rh,append:ih,insert:oh,remove:uh,datum:ah,on:Nl,dispatch:ch};var fh=function(t){return"string"==typeof t?new yt([[document.querySelector(t)]],[document.documentElement]):new yt([[t]],sh)},lh=function(t){return"string"==typeof t?new yt([document.querySelectorAll(t)],[document.documentElement]):new yt([null==t?[]:t],sh)},hh=function(t,n,e){arguments.length<3&&(e=n,n=kl().changedTouches);for(var r,i=0,o=n?n.length:0;i<o;++i)if((r=n[i]).identifier===e)return Sl(t,r);return null},ph=function(t,n){null==n&&(n=kl().touches);for(var e=0,r=n?n.length:0,i=new Array(r);e<r;++e)i[e]=Sl(t,n[e]);return i},dh=function(){t.event.preventDefault(),t.event.stopImmediatePropagation()},vh=function(t){var n=t.document.documentElement,e=fh(t).on("dragstart.drag",dh,!0);"onselectstart"in n?e.on("selectstart.drag",dh,!0):(n.__noselect=n.style.MozUserSelect,n.style.MozUserSelect="none")},gh=function(t){return function(){return t}};bt.prototype.on=function(){var t=this._.on.apply(this._,arguments);return t===this._?this:t};var yh=function(){function n(t){t.on("mousedown.drag",e).filter(y).on("touchstart.drag",o).on("touchmove.drag",u).on("touchend.drag touchcancel.drag",a).style("touch-action","none").style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}function e(){if(!h&&p.apply(this,arguments)){var n=c("mouse",d.apply(this,arguments),Al,this,arguments);n&&(fh(t.event.view).on("mousemove.drag",r,!0).on("mouseup.drag",i,!0),vh(t.event.view),mt(),l=!1,s=t.event.clientX,f=t.event.clientY,n("start"))}}function r(){if(dh(),!l){var n=t.event.clientX-s,e=t.event.clientY-f;l=n*n+e*e>b}_.mouse("drag")}function i(){fh(t.event.view).on("mousemove.drag mouseup.drag",null),xt(t.event.view,l),dh(),_.mouse("end")}function o(){if(p.apply(this,arguments)){var n,e,r=t.event.changedTouches,i=d.apply(this,arguments),o=r.length;for(n=0;n<o;++n)(e=c(r[n].identifier,i,hh,this,arguments))&&(mt(),e("start"))}}function u(){var n,e,r=t.event.changedTouches,i=r.length;for(n=0;n<i;++n)(e=_[r[n].identifier])&&(dh(),e("drag"))}function a(){var n,e,r=t.event.changedTouches,i=r.length;for(h&&clearTimeout(h),h=setTimeout(function(){h=null},500),n=0;n<i;++n)(e=_[r[n].identifier])&&(mt(),e("end"))}function c(e,r,i,o,u){var a,c,s,f=i(r,e),l=m.copy();if(C(new bt(n,"beforestart",a,e,x,f[0],f[1],0,0,l),function(){return null!=(t.event.subject=a=v.apply(o,u))&&(c=a.x-f[0]||0,s=a.y-f[1]||0,!0)}))return function t(h){var p,d=f;switch(h){case"start":_[e]=t,p=x++;break;case"end":delete _[e],--x;case"drag":f=i(r,e),p=x}C(new bt(n,h,a,e,p,f[0]+c,f[1]+s,f[0]-d[0],f[1]-d[1],l),l.apply,l,[h,o,u])}}var s,f,l,h,p=wt,d=Mt,v=Tt,y=Nt,_={},m=g("start","drag","end"),x=0,b=0;return n.filter=function(t){return arguments.length?(p="function"==typeof t?t:gh(!!t),n):p},n.container=function(t){return arguments.length?(d="function"==typeof t?t:gh(t),n):d},n.subject=function(t){return arguments.length?(v="function"==typeof t?t:gh(t),n):v},n.touchable=function(t){return arguments.length?(y="function"==typeof t?t:gh(!!t),n):y},n.on=function(){var t=m.on.apply(m,arguments);return t===m?n:t},n.clickDistance=function(t){return arguments.length?(b=(t=+t)*t,n):Math.sqrt(b)},n},_h=function(t,n,e){t.prototype=n.prototype=e,e.constructor=t},mh="\\s*([+-]?\\d+)\\s*",xh="\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)\\s*",bh="\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)%\\s*",wh=/^#([0-9a-f]{3})$/,Mh=/^#([0-9a-f]{6})$/,Th=new RegExp("^rgb\\("+[mh,mh,mh]+"\\)$"),Nh=new RegExp("^rgb\\("+[bh,bh,bh]+"\\)$"),kh=new RegExp("^rgba\\("+[mh,mh,mh,xh]+"\\)$"),Sh=new RegExp("^rgba\\("+[bh,bh,bh,xh]+"\\)$"),Ah=new RegExp("^hsl\\("+[xh,bh,bh]+"\\)$"),Eh=new RegExp("^hsla\\("+[xh,bh,bh,xh]+"\\)$"),Ch={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};_h(St,At,{displayable:function(){return this.rgb().displayable()},toString:function(){return this.rgb()+""}}),_h(Rt,Pt,kt(St,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new Rt(this.r*t,this.g*t,this.b*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new Rt(this.r*t,this.g*t,this.b*t,this.opacity)},rgb:function(){return this},displayable:function(){return 0<=this.r&&this.r<=255&&0<=this.g&&this.g<=255&&0<=this.b&&this.b<=255&&0<=this.opacity&&this.opacity<=1},toString:function(){var t=this.opacity;return t=isNaN(t)?1:Math.max(0,Math.min(1,t)),(1===t?"rgb(":"rgba(")+Math.max(0,Math.min(255,Math.round(this.r)||0))+", "+Math.max(0,Math.min(255,Math.round(this.g)||0))+", "+Math.max(0,Math.min(255,Math.round(this.b)||0))+(1===t?")":", "+t+")")}})),_h(Ut,qt,kt(St,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new Ut(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new Ut(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=this.h%360+360*(this.h<0),n=isNaN(t)||isNaN(this.s)?0:this.s,e=this.l,r=e+(e<.5?e:1-e)*n,i=2*e-r;return new Rt(Ot(t>=240?t-240:t+120,i,r),Ot(t,i,r),Ot(t<120?t+240:t-120,i,r),this.opacity)},displayable:function(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1}}));var zh=Math.PI/180,Ph=180/Math.PI,Rh=.95047,Lh=1,Dh=1.08883,qh=4/29,Uh=6/29,Oh=3*Uh*Uh,Fh=Uh*Uh*Uh;_h(It,Yt,kt(St,{brighter:function(t){return new It(this.l+18*(null==t?1:t),this.a,this.b,this.opacity)},darker:function(t){return new It(this.l-18*(null==t?1:t),this.a,this.b,this.opacity)},rgb:function(){var t=(this.l+16)/116,n=isNaN(this.a)?t:t+this.a/500,e=isNaN(this.b)?t:t-this.b/200;return t=Lh*Bt(t),n=Rh*Bt(n),e=Dh*Bt(e),new Rt(jt(3.2404542*n-1.5371385*t-.4985314*e),jt(-.969266*n+1.8760108*t+.041556*e),jt(.0556434*n-.2040259*t+1.0572252*e),this.opacity)}})),_h($t,Vt,kt(St,{brighter:function(t){return new $t(this.h,this.c,this.l+18*(null==t?1:t),this.opacity)},darker:function(t){return new $t(this.h,this.c,this.l-18*(null==t?1:t),this.opacity)},rgb:function(){return Ft(this).rgb()}}));var Yh=-.14861,Ih=1.78277,Hh=-.29227,Bh=-.90649,jh=1.97294,Xh=jh*Bh,Wh=jh*Ih,Vh=Ih*Hh-Bh*Yh;_h(Qt,Gt,kt(St,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new Qt(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new Qt(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=isNaN(this.h)?0:(this.h+120)*zh,n=+this.l,e=isNaN(this.s)?0:this.s*n*(1-n),r=Math.cos(t),i=Math.sin(t);return new Rt(255*(n+e*(Yh*r+Ih*i)),255*(n+e*(Hh*r+Bh*i)),255*(n+e*(jh*r)),this.opacity)}}));var $h,Zh,Gh,Qh,Jh,Kh,tp=function(t){var n=t.length-1;return function(e){var r=e<=0?e=0:e>=1?(e=1,n-1):Math.floor(e*n),i=t[r],o=t[r+1],u=r>0?t[r-1]:2*i-o,a=r<n-1?t[r+2]:2*o-i;return Jt((e-r/n)*n,u,i,o,a)}},np=function(t){var n=t.length;return function(e){var r=Math.floor(((e%=1)<0?++e:e)*n),i=t[(r+n-1)%n],o=t[r%n],u=t[(r+1)%n],a=t[(r+2)%n];return Jt((e-r/n)*n,i,o,u,a)}},ep=function(t){return function(){return t}},rp=function t(n){function e(t,n){var e=r((t=Pt(t)).r,(n=Pt(n)).r),i=r(t.g,n.g),o=r(t.b,n.b),u=rn(t.opacity,n.opacity);return function(n){return t.r=e(n),t.g=i(n),t.b=o(n),t.opacity=u(n),t+""}}var r=en(n);return e.gamma=t,e}(1),ip=on(tp),op=on(np),up=function(t,n){var e,r=n?n.length:0,i=t?Math.min(r,t.length):0,o=new Array(i),u=new Array(r);for(e=0;e<i;++e)o[e]=pp(t[e],n[e]);for(;e<r;++e)u[e]=n[e];return function(t){for(e=0;e<i;++e)u[e]=o[e](t);return u}},ap=function(t,n){var e=new Date;return t=+t,n-=t,function(r){return e.setTime(t+n*r),e}},cp=function(t,n){return t=+t,n-=t,function(e){return t+n*e}},sp=function(t,n){var e,r={},i={};null!==t&&"object"==typeof t||(t={}),null!==n&&"object"==typeof n||(n={});for(e in n)e in t?r[e]=pp(t[e],n[e]):i[e]=n[e];return function(t){for(e in r)i[e]=r[e](t);return i}},fp=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g,lp=new RegExp(fp.source,"g"),hp=function(t,n){var e,r,i,o=fp.lastIndex=lp.lastIndex=0,u=-1,a=[],c=[];for(t+="",n+="";(e=fp.exec(t))&&(r=lp.exec(n));)(i=r.index)>o&&(i=n.slice(o,i),a[u]?a[u]+=i:a[++u]=i),(e=e[0])===(r=r[0])?a[u]?a[u]+=r:a[++u]=r:(a[++u]=null,c.push({i:u,x:cp(e,r)})),o=lp.lastIndex;return o<n.length&&(i=n.slice(o),a[u]?a[u]+=i:a[++u]=i),a.length<2?c[0]?an(c[0].x):un(n):(n=c.length,function(t){for(var e,r=0;r<n;++r)a[(e=c[r]).i]=e.x(t);return a.join("")})},pp=function(t,n){var e,r=typeof n;return null==n||"boolean"===r?ep(n):("number"===r?cp:"string"===r?(e=At(n))?(n=e,rp):hp:n instanceof At?rp:n instanceof Date?ap:Array.isArray(n)?up:"function"!=typeof n.valueOf&&"function"!=typeof n.toString||isNaN(n)?sp:cp)(t,n)},dp=function(t,n){return t=+t,n-=t,function(e){return Math.round(t+n*e)}},vp=180/Math.PI,gp={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1},yp=function(t,n,e,r,i,o){var u,a,c;return(u=Math.sqrt(t*t+n*n))&&(t/=u,n/=u),(c=t*e+n*r)&&(e-=t*c,r-=n*c),(a=Math.sqrt(e*e+r*r))&&(e/=a,r/=a,c/=a),t*r<n*e&&(t=-t,n=-n,c=-c,u=-u),{translateX:i,translateY:o,rotate:Math.atan2(n,t)*vp,skewX:Math.atan(c)*vp,scaleX:u,scaleY:a}},_p=fn(cn,"px, ","px)","deg)"),mp=fn(sn,", ",")",")"),xp=Math.SQRT2,bp=function(t,n){var e,r,i=t[0],o=t[1],u=t[2],a=n[0],c=n[1],s=n[2],f=a-i,l=c-o,h=f*f+l*l;if(h<1e-12)r=Math.log(s/u)/xp,e=function(t){return[i+t*f,o+t*l,u*Math.exp(xp*t*r)]};else{var p=Math.sqrt(h),d=(s*s-u*u+4*h)/(2*u*2*p),v=(s*s-u*u-4*h)/(2*s*2*p),g=Math.log(Math.sqrt(d*d+1)-d),y=Math.log(Math.sqrt(v*v+1)-v);r=(y-g)/xp,e=function(t){var n=t*r,e=ln(g),a=u/(2*p)*(e*pn(xp*n+g)-hn(g));return[i+a*f,o+a*l,u*e/ln(xp*n+g)]}}return e.duration=1e3*r,e},wp=dn(nn),Mp=dn(rn),Tp=gn(nn),Np=gn(rn),kp=yn(nn),Sp=yn(rn),Ap=function(t,n){for(var e=new Array(n),r=0;r<n;++r)e[r]=t(r/(n-1));return e},Ep=0,Cp=0,zp=0,Pp=1e3,Rp=0,Lp=0,Dp=0,qp="object"==typeof performance&&performance.now?performance:Date,Up="object"==typeof window&&window.requestAnimationFrame?window.requestAnimationFrame.bind(window):function(t){setTimeout(t,17)};xn.prototype=bn.prototype={constructor:xn,restart:function(t,n,e){if("function"!=typeof t)throw new TypeError("callback is not a function");e=(null==e?_n():+e)+(null==n?0:+n),this._next||Kh===this||(Kh?Kh._next=this:Jh=this,Kh=this),this._call=t,this._time=e,kn()},stop:function(){this._call&&(this._call=null,this._time=1/0,kn())}};var Op=function(t,n,e){var r=new xn;return n=null==n?0:+n,r.restart(function(e){r.stop(),t(e+n)},n,e),r},Fp=function(t,n,e){var r=new xn,i=n;return null==n?(r.restart(t,n,e),r):(n=+n,e=null==e?_n():+e,r.restart(function o(u){u+=i,r.restart(o,i+=n,e),t(u)},n,e),r)},Yp=g("start","end","interrupt"),Ip=[],Hp=0,Bp=1,jp=2,Xp=3,Wp=4,Vp=5,$p=6,Zp=function(t,n,e,r,i,o){var u=t.__transition;if(u){if(e in u)return}else t.__transition={};Cn(t,e,{name:n,index:r,group:i,on:Yp,tween:Ip,time:o.time,delay:o.delay,duration:o.duration,ease:o.ease,timer:null,state:Hp})},Gp=function(t,n){var e,r,i,o=t.__transition,u=!0;if(o){n=null==n?null:n+"";for(i in o)(e=o[i]).name===n?(r=e.state>jp&&e.state<Vp,e.state=$p,e.timer.stop(),r&&e.on.call("interrupt",t,t.__data__,e.index,e.group),delete o[i]):u=!1;u&&delete t.__transition}},Qp=function(t){return this.each(function(){Gp(this,t)})},Jp=function(t,n){var e=this._id;if(t+="",arguments.length<2){for(var r,i=En(this.node(),e).tween,o=0,u=i.length;o<u;++o)if((r=i[o]).name===t)return r.value;return null}return this.each((null==n?zn:Pn)(e,t,n))},Kp=function(t,n){var e;return("number"==typeof n?cp:n instanceof At?rp:(e=At(n))?(n=e,rp):hp)(t,n)},td=function(t,n){var e=yl(t),r="transform"===e?mp:Kp;return this.attrTween(t,"function"==typeof n?(e.local?Fn:On)(e,r,Rn(this,"attr."+t,n)):null==n?(e.local?Dn:Ln)(e):(e.local?Un:qn)(e,r,n+""))},nd=function(t,n){var e="attr."+t;if(arguments.length<2)return(e=this.tween(e))&&e._value;if(null==n)return this.tween(e,null);if("function"!=typeof n)throw new Error;var r=yl(t);return this.tween(e,(r.local?Yn:In)(r,n))},ed=function(t){var n=this._id;return arguments.length?this.each(("function"==typeof t?Hn:Bn)(n,t)):En(this.node(),n).delay},rd=function(t){var n=this._id;return arguments.length?this.each(("function"==typeof t?jn:Xn)(n,t)):En(this.node(),n).duration},id=function(t){var n=this._id;return arguments.length?this.each(Wn(n,t)):En(this.node(),n).ease},od=function(t){"function"!=typeof t&&(t=Ml(t));for(var n=this._groups,e=n.length,r=new Array(e),i=0;i<e;++i)for(var o,u=n[i],a=u.length,c=r[i]=[],s=0;s<a;++s)(o=u[s])&&t.call(o,o.__data__,s,u)&&c.push(o);return new re(r,this._parents,this._name,this._id)},ud=function(t){if(t._id!==this._id)throw new Error;for(var n=this._groups,e=t._groups,r=n.length,i=e.length,o=Math.min(r,i),u=new Array(r),a=0;a<o;++a)for(var c,s=n[a],f=e[a],l=s.length,h=u[a]=new Array(l),p=0;p<l;++p)(c=s[p]||f[p])&&(h[p]=c);for(;a<r;++a)u[a]=n[a];return new re(u,this._parents,this._name,this._id)},ad=function(t,n){var e=this._id;return arguments.length<2?En(this.node(),e).on.on(t):this.each($n(e,t,n))},cd=function(){return this.on("end.remove",Zn(this._id))},sd=function(t){var n=this._name,e=this._id;"function"!=typeof t&&(t=El(t));for(var r=this._groups,i=r.length,o=new Array(i),u=0;u<i;++u)for(var a,c,s=r[u],f=s.length,l=o[u]=new Array(f),h=0;h<f;++h)(a=s[h])&&(c=t.call(a,a.__data__,h,s))&&("__data__"in a&&(c.__data__=a.__data__),l[h]=c,Zp(l[h],n,e,h,l,En(a,e)));return new re(o,this._parents,n,e)},fd=function(t){var n=this._name,e=this._id;"function"!=typeof t&&(t=zl(t));for(var r=this._groups,i=r.length,o=[],u=[],a=0;a<i;++a)for(var c,s=r[a],f=s.length,l=0;l<f;++l)if(c=s[l]){for(var h,p=t.call(c,c.__data__,l,s),d=En(c,e),v=0,g=p.length;v<g;++v)(h=p[v])&&Zp(h,n,e,v,p,d);o.push(p),u.push(c)}return new re(o,u,n,e)},ld=_t.prototype.constructor,hd=function(){return new ld(this._groups,this._parents)},pd=function(t,n,e){var r="transform"==(t+="")?_p:Kp;return null==n?this.styleTween(t,Gn(t,r)).on("end.style."+t,Qn(t)):this.styleTween(t,"function"==typeof n?Kn(t,r,Rn(this,"style."+t,n)):Jn(t,r,n+""),e)},dd=function(t,n,e){var r="style."+(t+="");if(arguments.length<2)return(r=this.tween(r))&&r._value;if(null==n)return this.tween(r,null);if("function"!=typeof n)throw new Error;return this.tween(r,te(t,n,null==e?"":e))},vd=function(t){return this.tween("text","function"==typeof t?ee(Rn(this,"text",t)):ne(null==t?"":t+""))},gd=function(){for(var t=this._name,n=this._id,e=oe(),r=this._groups,i=r.length,o=0;o<i;++o)for(var u,a=r[o],c=a.length,s=0;s<c;++s)if(u=a[s]){var f=En(u,n);Zp(u,t,e,s,a,{time:f.time+f.delay+f.duration,delay:0,duration:f.duration,ease:f.ease})}return new re(r,this._parents,t,e)},yd=0,_d=_t.prototype;re.prototype=ie.prototype={constructor:re,select:sd,selectAll:fd,filter:od,merge:ud,selection:hd,transition:gd,call:_d.call,nodes:_d.nodes,node:_d.node,size:_d.size,empty:_d.empty,each:_d.each,on:ad,attr:td,attrTween:nd,style:pd,styleTween:dd,text:vd,remove:cd,tween:Jp,delay:ed,duration:rd,ease:id};var md=function t(n){function e(t){return Math.pow(t,n)}return n=+n,e.exponent=t,e}(3),xd=function t(n){function e(t){return 1-Math.pow(1-t,n)}return n=+n,e.exponent=t,e}(3),bd=function t(n){function e(t){return((t*=2)<=1?Math.pow(t,n):2-Math.pow(2-t,n))/2}return n=+n,e.exponent=t,e}(3),wd=Math.PI,Md=wd/2,Td=4/11,Nd=6/11,kd=8/11,Sd=.75,Ad=9/11,Ed=10/11,Cd=.9375,zd=21/22,Pd=63/64,Rd=1/Td/Td,Ld=function t(n){function e(t){return t*t*((n+1)*t-n)}return n=+n,e.overshoot=t,e}(1.70158),Dd=function t(n){function e(t){return--t*t*((n+1)*t+n)+1}return n=+n,e.overshoot=t,e}(1.70158),qd=function t(n){function e(t){return((t*=2)<1?t*t*((n+1)*t-n):(t-=2)*t*((n+1)*t+n)+2)/2}return n=+n,e.overshoot=t,e}(1.70158),Ud=2*Math.PI,Od=function t(n,e){function r(t){return n*Math.pow(2,10*--t)*Math.sin((i-t)/e)}var i=Math.asin(1/(n=Math.max(1,n)))*(e/=Ud);return r.amplitude=function(n){return t(n,e*Ud)},r.period=function(e){return t(n,e)},r}(1,.3),Fd=function t(n,e){function r(t){return 1-n*Math.pow(2,-10*(t=+t))*Math.sin((t+i)/e)}var i=Math.asin(1/(n=Math.max(1,n)))*(e/=Ud);return r.amplitude=function(n){return t(n,e*Ud)},r.period=function(e){return t(n,e)},r}(1,.3),Yd=function t(n,e){function r(t){return((t=2*t-1)<0?n*Math.pow(2,10*t)*Math.sin((i-t)/e):2-n*Math.pow(2,-10*t)*Math.sin((i+t)/e))/2}var i=Math.asin(1/(n=Math.max(1,n)))*(e/=Ud);return r.amplitude=function(n){return t(n,e*Ud)},r.period=function(e){return t(n,e)},r}(1,.3),Id={time:null,delay:0,duration:250,ease:he},Hd=function(t){var n,e;t instanceof re?(n=t._id,t=t._name):(n=oe(),(e=Id).time=_n(),t=null==t?null:t+"");for(var r=this._groups,i=r.length,o=0;o<i;++o)for(var u,a=r[o],c=a.length,s=0;s<c;++s)(u=a[s])&&Zp(u,t,n,s,a,e||Ne(u,n));return new re(r,this._parents,t,n)};_t.prototype.interrupt=Qp,_t.prototype.transition=Hd;var Bd=[null],jd=function(t,n){var e,r,i=t.__transition;if(i){n=null==n?null:n+"";for(r in i)if((e=i[r]).state>Bp&&e.name===n)return new re([[t]],Bd,n,+r)}return null},Xd=function(t){return function(){return t}},Wd=function(t,n,e){this.target=t,this.type=n,this.selection=e},Vd=function(){t.event.preventDefault(),t.event.stopImmediatePropagation()},$d={name:"drag"},Zd={name:"space"},Gd={name:"handle"},Qd={name:"center"},Jd={name:"x",handles:["e","w"].map(Se),input:function(t,n){return t&&[[t[0],n[0][1]],[t[1],n[1][1]]]},output:function(t){return t&&[t[0][0],t[1][0]]}},Kd={name:"y",handles:["n","s"].map(Se),input:function(t,n){return t&&[[n[0][0],t[0]],[n[1][0],t[1]]]},output:function(t){return t&&[t[0][1],t[1][1]]}},tv={name:"xy",handles:["n","e","s","w","nw","ne","se","sw"].map(Se),input:function(t){return t},output:function(t){return t}},nv={overlay:"crosshair",selection:"move",n:"ns-resize",e:"ew-resize",s:"ns-resize",w:"ew-resize",nw:"nwse-resize",ne:"nesw-resize",se:"nwse-resize",sw:"nesw-resize"},ev={e:"w",w:"e",nw:"ne",ne:"nw",se:"sw",sw:"se"},rv={n:"s",s:"n",nw:"sw",ne:"se",se:"ne",sw:"nw"},iv={overlay:1,selection:1,n:null,e:1,s:null,w:-1,nw:-1,ne:1,se:1,sw:-1},ov={overlay:1,selection:1,n:-1,e:null,s:1,w:null,nw:-1,ne:-1,se:1,sw:1},uv=function(){return De(tv)},av=Math.cos,cv=Math.sin,sv=Math.PI,fv=sv/2,lv=2*sv,hv=Math.max,pv=function(){function t(t){var o,u,a,c,s,f,l=t.length,h=[],p=Yf(l),d=[],v=[],g=v.groups=new Array(l),y=new Array(l*l);for(o=0,s=-1;++s<l;){for(u=0,f=-1;++f<l;)u+=t[s][f];h.push(u),d.push(Yf(l)),o+=u}for(e&&p.sort(function(t,n){return e(h[t],h[n])}),r&&d.forEach(function(n,e){n.sort(function(n,i){return r(t[e][n],t[e][i])})}),o=hv(0,lv-n*l)/o,c=o?n:lv/l,u=0,s=-1;++s<l;){for(a=u,f=-1;++f<l;){var _=p[s],m=d[_][f],x=t[_][m],b=u,w=u+=x*o;y[m*l+_]={index:_,subindex:m,startAngle:b,endAngle:w,value:x}}g[_]={index:_,startAngle:a,endAngle:u,value:h[_]},u+=c}for(s=-1;++s<l;)for(f=s-1;++f<l;){var M=y[f*l+s],T=y[s*l+f];(M.value||T.value)&&v.push(M.value<T.value?{source:T,target:M}:{source:M,target:T})}return i?v.sort(i):v}var n=0,e=null,r=null,i=null;return t.padAngle=function(e){return arguments.length?(n=hv(0,e),t):n},t.sortGroups=function(n){return arguments.length?(e=n,t):e},t.sortSubgroups=function(n){return arguments.length?(r=n,t):r},t.sortChords=function(n){return arguments.length?(null==n?i=null:(i=qe(n))._=n,t):i&&i._},t},dv=Array.prototype.slice,vv=function(t){return function(){return t}},gv=Math.PI,yv=2*gv,_v=yv-1e-6;Ue.prototype=Oe.prototype={constructor:Ue,moveTo:function(t,n){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+n)},closePath:function(){null!==this._x1&&(this._x1=this._x0,this._y1=this._y0,this._+="Z")},lineTo:function(t,n){this._+="L"+(this._x1=+t)+","+(this._y1=+n)},quadraticCurveTo:function(t,n,e,r){this._+="Q"+ +t+","+ +n+","+(this._x1=+e)+","+(this._y1=+r)},bezierCurveTo:function(t,n,e,r,i,o){this._+="C"+ +t+","+ +n+","+ +e+","+ +r+","+(this._x1=+i)+","+(this._y1=+o)},arcTo:function(t,n,e,r,i){t=+t,n=+n,e=+e,r=+r,i=+i;var o=this._x1,u=this._y1,a=e-t,c=r-n,s=o-t,f=u-n,l=s*s+f*f;if(i<0)throw new Error("negative radius: "+i);if(null===this._x1)this._+="M"+(this._x1=t)+","+(this._y1=n);else if(l>1e-6)if(Math.abs(f*a-c*s)>1e-6&&i){var h=e-o,p=r-u,d=a*a+c*c,v=h*h+p*p,g=Math.sqrt(d),y=Math.sqrt(l),_=i*Math.tan((gv-Math.acos((d+l-v)/(2*g*y)))/2),m=_/y,x=_/g;Math.abs(m-1)>1e-6&&(this._+="L"+(t+m*s)+","+(n+m*f)),this._+="A"+i+","+i+",0,0,"+ +(f*h>s*p)+","+(this._x1=t+x*a)+","+(this._y1=n+x*c)}else this._+="L"+(this._x1=t)+","+(this._y1=n);else;},arc:function(t,n,e,r,i,o){t=+t,n=+n,e=+e;var u=e*Math.cos(r),a=e*Math.sin(r),c=t+u,s=n+a,f=1^o,l=o?r-i:i-r;if(e<0)throw new Error("negative radius: "+e);null===this._x1?this._+="M"+c+","+s:(Math.abs(this._x1-c)>1e-6||Math.abs(this._y1-s)>1e-6)&&(this._+="L"+c+","+s),e&&(l<0&&(l=l%yv+yv),l>_v?this._+="A"+e+","+e+",0,1,"+f+","+(t-u)+","+(n-a)+"A"+e+","+e+",0,1,"+f+","+(this._x1=c)+","+(this._y1=s):l>1e-6&&(this._+="A"+e+","+e+",0,"+ +(l>=gv)+","+f+","+(this._x1=t+e*Math.cos(i))+","+(this._y1=n+e*Math.sin(i))))},rect:function(t,n,e,r){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+n)+"h"+ +e+"v"+ +r+"h"+-e+"Z"},toString:function(){return this._}};var mv=function(){function t(){var t,a=dv.call(arguments),c=n.apply(this,a),s=e.apply(this,a),f=+r.apply(this,(a[0]=c,a)),l=i.apply(this,a)-fv,h=o.apply(this,a)-fv,p=f*av(l),d=f*cv(l),v=+r.apply(this,(a[0]=s,a)),g=i.apply(this,a)-fv,y=o.apply(this,a)-fv;if(u||(u=t=Oe()),u.moveTo(p,d),u.arc(0,0,f,l,h),l===g&&h===y||(u.quadraticCurveTo(0,0,v*av(g),v*cv(g)),u.arc(0,0,v,g,y)),u.quadraticCurveTo(0,0,p,d),u.closePath(),t)return u=null,t+""||null}var n=Fe,e=Ye,r=Ie,i=He,o=Be,u=null;return t.radius=function(n){return arguments.length?(r="function"==typeof n?n:vv(+n),t):r},t.startAngle=function(n){return arguments.length?(i="function"==typeof n?n:vv(+n),t):i},t.endAngle=function(n){return arguments.length?(o="function"==typeof n?n:vv(+n),t):o},t.source=function(e){return arguments.length?(n=e,t):n},t.target=function(n){return arguments.length?(e=n,t):e},t.context=function(n){return arguments.length?(u=null==n?null:n,t):u},t};je.prototype=Xe.prototype={constructor:je,has:function(t){return"$"+t in this},get:function(t){return this["$"+t]},set:function(t,n){return this["$"+t]=n,this},remove:function(t){var n="$"+t;return n in this&&delete this[n]},clear:function(){for(var t in this)"$"===t[0]&&delete this[t]},keys:function(){var t=[];for(var n in this)"$"===n[0]&&t.push(n.slice(1));return t},values:function(){var t=[];for(var n in this)"$"===n[0]&&t.push(this[n]);return t},entries:function(){var t=[];for(var n in this)"$"===n[0]&&t.push({key:n.slice(1),value:this[n]});return t},size:function(){var t=0;for(var n in this)"$"===n[0]&&++t;return t},empty:function(){for(var t in this)if("$"===t[0])return!1;return!0},each:function(t){for(var n in this)"$"===n[0]&&t(this[n],n.slice(1),this)}};var xv=function(){function t(n,i,u,a){if(i>=o.length)return null!=e&&n.sort(e),null!=r?r(n):n;for(var c,s,f,l=-1,h=n.length,p=o[i++],d=Xe(),v=u();++l<h;)(f=d.get(c=p(s=n[l])+""))?f.push(s):d.set(c,[s]);return d.each(function(n,e){a(v,e,t(n,i,u,a))}),v}function n(t,e){if(++e>o.length)return t;var i,a=u[e-1];return null!=r&&e>=o.length?i=t.entries():(i=[],t.each(function(t,r){i.push({key:r,values:n(t,e)})})),null!=a?i.sort(function(t,n){return a(t.key,n.key)}):i}var e,r,i,o=[],u=[];return i={object:function(n){return t(n,0,We,Ve)},map:function(n){return t(n,0,$e,Ze)},entries:function(e){return n(t(e,0,$e,Ze),0)},key:function(t){return o.push(t),i},sortKeys:function(t){return u[o.length-1]=t,i},sortValues:function(t){return e=t,i},rollup:function(t){return r=t,i}}},bv=Xe.prototype;Ge.prototype=Qe.prototype={constructor:Ge,has:bv.has,add:function(t){return t+="",this["$"+t]=t,this},remove:bv.remove,clear:bv.clear,values:bv.keys,size:bv.size,empty:bv.empty,each:bv.each};var wv=function(t){var n=[];for(var e in t)n.push(e);return n},Mv=function(t){var n=[];for(var e in t)n.push(t[e]);return n},Tv=function(t){var n=[];for(var e in t)n.push({key:e,value:t[e]});return n},Nv={},kv={},Sv=34,Av=10,Ev=13,Cv=function(t){function n(t,n){var r,i,o=e(t,function(t,e){if(r)return r(t,e-1);i=t,r=n?Ke(t,n):Je(t)});return o.columns=i||[],o}function e(t,n){function e(){if(s)return kv;if(f)return f=!1,Nv;var n,e,r=u;if(t.charCodeAt(r)===Sv){for(;u++<o&&t.charCodeAt(u)!==Sv||t.charCodeAt(++u)===Sv;);return(n=u)>=o?s=!0:(e=t.charCodeAt(u++))===Av?f=!0:e===Ev&&(f=!0,t.charCodeAt(u)===Av&&++u),t.slice(r+1,n-1).replace(/""/g,'"')}for(;u<o;){if((e=t.charCodeAt(n=u++))===Av)f=!0;else if(e===Ev)f=!0,t.charCodeAt(u)===Av&&++u;else if(e!==c)continue;return t.slice(r,n)}return s=!0,t.slice(r,o)}var r,i=[],o=t.length,u=0,a=0,s=o<=0,f=!1;for(t.charCodeAt(o-1)===Av&&--o,t.charCodeAt(o-1)===Ev&&--o;(r=e())!==kv;){for(var l=[];r!==Nv&&r!==kv;)l.push(r),r=e();n&&null==(l=n(l,a++))||i.push(l)}return i}function r(n,e){return null==e&&(e=tr(n)),
[e.map(u).join(t)].concat(n.map(function(n){return e.map(function(t){return u(n[t])}).join(t)})).join("\n")}function i(t){return t.map(o).join("\n")}function o(n){return n.map(u).join(t)}function u(t){return null==t?"":a.test(t+="")?'"'+t.replace(/"/g,'""')+'"':t}var a=new RegExp('["'+t+"\n\r]"),c=t.charCodeAt(0);return{parse:n,parseRows:e,format:r,formatRows:i}},zv=Cv(","),Pv=zv.parse,Rv=zv.parseRows,Lv=zv.format,Dv=zv.formatRows,qv=Cv("\t"),Uv=qv.parse,Ov=qv.parseRows,Fv=qv.format,Yv=qv.formatRows,Iv=function(t,n){function e(){var e,i,o=r.length,u=0,a=0;for(e=0;e<o;++e)i=r[e],u+=i.x,a+=i.y;for(u=u/o-t,a=a/o-n,e=0;e<o;++e)i=r[e],i.x-=u,i.y-=a}var r;return null==t&&(t=0),null==n&&(n=0),e.initialize=function(t){r=t},e.x=function(n){return arguments.length?(t=+n,e):t},e.y=function(t){return arguments.length?(n=+t,e):n},e},Hv=function(t){return function(){return t}},Bv=function(){return 1e-6*(Math.random()-.5)},jv=function(t){var n=+this._x.call(null,t),e=+this._y.call(null,t);return nr(this.cover(n,e),n,e,t)},Xv=function(t,n){if(isNaN(t=+t)||isNaN(n=+n))return this;var e=this._x0,r=this._y0,i=this._x1,o=this._y1;if(isNaN(e))i=(e=Math.floor(t))+1,o=(r=Math.floor(n))+1;else{if(!(e>t||t>i||r>n||n>o))return this;var u,a,c=i-e,s=this._root;switch(a=(n<(r+o)/2)<<1|t<(e+i)/2){case 0:do{u=new Array(4),u[a]=s,s=u}while(c*=2,i=e+c,o=r+c,t>i||n>o);break;case 1:do{u=new Array(4),u[a]=s,s=u}while(c*=2,e=i-c,o=r+c,e>t||n>o);break;case 2:do{u=new Array(4),u[a]=s,s=u}while(c*=2,i=e+c,r=o-c,t>i||r>n);break;case 3:do{u=new Array(4),u[a]=s,s=u}while(c*=2,e=i-c,r=o-c,e>t||r>n)}this._root&&this._root.length&&(this._root=s)}return this._x0=e,this._y0=r,this._x1=i,this._y1=o,this},Wv=function(){var t=[];return this.visit(function(n){if(!n.length)do{t.push(n.data)}while(n=n.next)}),t},Vv=function(t){return arguments.length?this.cover(+t[0][0],+t[0][1]).cover(+t[1][0],+t[1][1]):isNaN(this._x0)?void 0:[[this._x0,this._y0],[this._x1,this._y1]]},$v=function(t,n,e,r,i){this.node=t,this.x0=n,this.y0=e,this.x1=r,this.y1=i},Zv=function(t,n,e){var r,i,o,u,a,c,s,f=this._x0,l=this._y0,h=this._x1,p=this._y1,d=[],v=this._root;for(v&&d.push(new $v(v,f,l,h,p)),null==e?e=1/0:(f=t-e,l=n-e,h=t+e,p=n+e,e*=e);c=d.pop();)if(!(!(v=c.node)||(i=c.x0)>h||(o=c.y0)>p||(u=c.x1)<f||(a=c.y1)<l))if(v.length){var g=(i+u)/2,y=(o+a)/2;d.push(new $v(v[3],g,y,u,a),new $v(v[2],i,y,g,a),new $v(v[1],g,o,u,y),new $v(v[0],i,o,g,y)),(s=(n>=y)<<1|t>=g)&&(c=d[d.length-1],d[d.length-1]=d[d.length-1-s],d[d.length-1-s]=c)}else{var _=t-+this._x.call(null,v.data),m=n-+this._y.call(null,v.data),x=_*_+m*m;if(x<e){var b=Math.sqrt(e=x);f=t-b,l=n-b,h=t+b,p=n+b,r=v.data}}return r},Gv=function(t){if(isNaN(o=+this._x.call(null,t))||isNaN(u=+this._y.call(null,t)))return this;var n,e,r,i,o,u,a,c,s,f,l,h,p=this._root,d=this._x0,v=this._y0,g=this._x1,y=this._y1;if(!p)return this;if(p.length)for(;;){if((s=o>=(a=(d+g)/2))?d=a:g=a,(f=u>=(c=(v+y)/2))?v=c:y=c,n=p,!(p=p[l=f<<1|s]))return this;if(!p.length)break;(n[l+1&3]||n[l+2&3]||n[l+3&3])&&(e=n,h=l)}for(;p.data!==t;)if(r=p,!(p=p.next))return this;return(i=p.next)&&delete p.next,r?(i?r.next=i:delete r.next,this):n?(i?n[l]=i:delete n[l],(p=n[0]||n[1]||n[2]||n[3])&&p===(n[3]||n[2]||n[1]||n[0])&&!p.length&&(e?e[h]=p:this._root=p),this):(this._root=i,this)},Qv=function(){return this._root},Jv=function(){var t=0;return this.visit(function(n){if(!n.length)do{++t}while(n=n.next)}),t},Kv=function(t){var n,e,r,i,o,u,a=[],c=this._root;for(c&&a.push(new $v(c,this._x0,this._y0,this._x1,this._y1));n=a.pop();)if(!t(c=n.node,r=n.x0,i=n.y0,o=n.x1,u=n.y1)&&c.length){var s=(r+o)/2,f=(i+u)/2;(e=c[3])&&a.push(new $v(e,s,f,o,u)),(e=c[2])&&a.push(new $v(e,r,f,s,u)),(e=c[1])&&a.push(new $v(e,s,i,o,f)),(e=c[0])&&a.push(new $v(e,r,i,s,f))}return this},tg=function(t){var n,e=[],r=[];for(this._root&&e.push(new $v(this._root,this._x0,this._y0,this._x1,this._y1));n=e.pop();){var i=n.node;if(i.length){var o,u=n.x0,a=n.y0,c=n.x1,s=n.y1,f=(u+c)/2,l=(a+s)/2;(o=i[0])&&e.push(new $v(o,u,a,f,l)),(o=i[1])&&e.push(new $v(o,f,a,c,l)),(o=i[2])&&e.push(new $v(o,u,l,f,s)),(o=i[3])&&e.push(new $v(o,f,l,c,s))}r.push(n)}for(;n=r.pop();)t(n.node,n.x0,n.y0,n.x1,n.y1);return this},ng=function(t){return arguments.length?(this._x=t,this):this._x},eg=function(t){return arguments.length?(this._y=t,this):this._y},rg=ur.prototype=ar.prototype;rg.copy=function(){var t,n,e=new ar(this._x,this._y,this._x0,this._y0,this._x1,this._y1),r=this._root;if(!r)return e;if(!r.length)return e._root=cr(r),e;for(t=[{source:r,target:e._root=new Array(4)}];r=t.pop();)for(var i=0;i<4;++i)(n=r.source[i])&&(n.length?t.push({source:n,target:r.target[i]=new Array(4)}):r.target[i]=cr(n));return e},rg.add=jv,rg.addAll=er,rg.cover=Xv,rg.data=Wv,rg.extent=Vv,rg.find=Zv,rg.remove=Gv,rg.removeAll=rr,rg.root=Qv,rg.size=Jv,rg.visit=Kv,rg.visitAfter=tg,rg.x=ng,rg.y=eg;var ig,og=function(t){function n(){function t(t,n,e,r,i){var o=t.data,a=t.r,p=l+a;{if(!o)return n>s+p||r<s-p||e>f+p||i<f-p;if(o.index>c.index){var d=s-o.x-o.vx,v=f-o.y-o.vy,g=d*d+v*v;g<p*p&&(0===d&&(d=Bv(),g+=d*d),0===v&&(v=Bv(),g+=v*v),g=(p-(g=Math.sqrt(g)))/g*u,c.vx+=(d*=g)*(p=(a*=a)/(h+a)),c.vy+=(v*=g)*p,o.vx-=d*(p=1-p),o.vy-=v*p)}}}for(var n,r,c,s,f,l,h,p=i.length,d=0;d<a;++d)for(r=ur(i,sr,fr).visitAfter(e),n=0;n<p;++n)c=i[n],l=o[c.index],h=l*l,s=c.x+c.vx,f=c.y+c.vy,r.visit(t)}function e(t){if(t.data)return t.r=o[t.data.index];for(var n=t.r=0;n<4;++n)t[n]&&t[n].r>t.r&&(t.r=t[n].r)}function r(){if(i){var n,e,r=i.length;for(o=new Array(r),n=0;n<r;++n)e=i[n],o[e.index]=+t(e,n,i)}}var i,o,u=1,a=1;return"function"!=typeof t&&(t=Hv(null==t?1:+t)),n.initialize=function(t){i=t,r()},n.iterations=function(t){return arguments.length?(a=+t,n):a},n.strength=function(t){return arguments.length?(u=+t,n):u},n.radius=function(e){return arguments.length?(t="function"==typeof e?e:Hv(+e),r(),n):t},n},ug=function(t){function n(t){return 1/Math.min(s[t.source.index],s[t.target.index])}function e(n){for(var e=0,r=t.length;e<d;++e)for(var i,o,c,s,l,h,p,v=0;v<r;++v)i=t[v],o=i.source,c=i.target,s=c.x+c.vx-o.x-o.vx||Bv(),l=c.y+c.vy-o.y-o.vy||Bv(),h=Math.sqrt(s*s+l*l),h=(h-a[v])/h*n*u[v],s*=h,l*=h,c.vx-=s*(p=f[v]),c.vy-=l*p,o.vx+=s*(p=1-p),o.vy+=l*p}function r(){if(c){var n,e,r=c.length,h=t.length,p=Xe(c,l);for(n=0,s=new Array(r);n<h;++n)e=t[n],e.index=n,"object"!=typeof e.source&&(e.source=hr(p,e.source)),"object"!=typeof e.target&&(e.target=hr(p,e.target)),s[e.source.index]=(s[e.source.index]||0)+1,s[e.target.index]=(s[e.target.index]||0)+1;for(n=0,f=new Array(h);n<h;++n)e=t[n],f[n]=s[e.source.index]/(s[e.source.index]+s[e.target.index]);u=new Array(h),i(),a=new Array(h),o()}}function i(){if(c)for(var n=0,e=t.length;n<e;++n)u[n]=+h(t[n],n,t)}function o(){if(c)for(var n=0,e=t.length;n<e;++n)a[n]=+p(t[n],n,t)}var u,a,c,s,f,l=lr,h=n,p=Hv(30),d=1;return null==t&&(t=[]),e.initialize=function(t){c=t,r()},e.links=function(n){return arguments.length?(t=n,r(),e):t},e.id=function(t){return arguments.length?(l=t,e):l},e.iterations=function(t){return arguments.length?(d=+t,e):d},e.strength=function(t){return arguments.length?(h="function"==typeof t?t:Hv(+t),i(),e):h},e.distance=function(t){return arguments.length?(p="function"==typeof t?t:Hv(+t),o(),e):p},e},ag=10,cg=Math.PI*(3-Math.sqrt(5)),sg=function(t){function n(){e(),p.call("tick",o),u<a&&(h.stop(),p.call("end",o))}function e(){var n,e,r=t.length;for(u+=(s-u)*c,l.each(function(t){t(u)}),n=0;n<r;++n)e=t[n],null==e.fx?e.x+=e.vx*=f:(e.x=e.fx,e.vx=0),null==e.fy?e.y+=e.vy*=f:(e.y=e.fy,e.vy=0)}function r(){for(var n,e=0,r=t.length;e<r;++e){if(n=t[e],n.index=e,isNaN(n.x)||isNaN(n.y)){var i=ag*Math.sqrt(e),o=e*cg;n.x=i*Math.cos(o),n.y=i*Math.sin(o)}(isNaN(n.vx)||isNaN(n.vy))&&(n.vx=n.vy=0)}}function i(n){return n.initialize&&n.initialize(t),n}var o,u=1,a=.001,c=1-Math.pow(a,1/300),s=0,f=.6,l=Xe(),h=bn(n),p=g("tick","end");return null==t&&(t=[]),r(),o={tick:e,restart:function(){return h.restart(n),o},stop:function(){return h.stop(),o},nodes:function(n){return arguments.length?(t=n,r(),l.each(i),o):t},alpha:function(t){return arguments.length?(u=+t,o):u},alphaMin:function(t){return arguments.length?(a=+t,o):a},alphaDecay:function(t){return arguments.length?(c=+t,o):+c},alphaTarget:function(t){return arguments.length?(s=+t,o):s},velocityDecay:function(t){return arguments.length?(f=1-t,o):1-f},force:function(t,n){return arguments.length>1?(null==n?l.remove(t):l.set(t,i(n)),o):l.get(t)},find:function(n,e,r){var i,o,u,a,c,s=0,f=t.length;for(null==r?r=1/0:r*=r,s=0;s<f;++s)a=t[s],i=n-a.x,o=e-a.y,(u=i*i+o*o)<r&&(c=a,r=u);return c},on:function(t,n){return arguments.length>1?(p.on(t,n),o):p.on(t)}}},fg=function(){function t(t){var n,a=i.length,c=ur(i,pr,dr).visitAfter(e);for(u=t,n=0;n<a;++n)o=i[n],c.visit(r)}function n(){if(i){var t,n,e=i.length;for(a=new Array(e),t=0;t<e;++t)n=i[t],a[n.index]=+c(n,t,i)}}function e(t){var n,e,r,i,o,u=0,c=0;if(t.length){for(r=i=o=0;o<4;++o)(n=t[o])&&(e=Math.abs(n.value))&&(u+=n.value,c+=e,r+=e*n.x,i+=e*n.y);t.x=r/c,t.y=i/c}else{n=t,n.x=n.data.x,n.y=n.data.y;do{u+=a[n.data.index]}while(n=n.next)}t.value=u}function r(t,n,e,r){if(!t.value)return!0;var i=t.x-o.x,c=t.y-o.y,h=r-n,p=i*i+c*c;if(h*h/l<p)return p<f&&(0===i&&(i=Bv(),p+=i*i),0===c&&(c=Bv(),p+=c*c),p<s&&(p=Math.sqrt(s*p)),o.vx+=i*t.value*u/p,o.vy+=c*t.value*u/p),!0;if(!(t.length||p>=f)){(t.data!==o||t.next)&&(0===i&&(i=Bv(),p+=i*i),0===c&&(c=Bv(),p+=c*c),p<s&&(p=Math.sqrt(s*p)));do{t.data!==o&&(h=a[t.data.index]*u/p,o.vx+=i*h,o.vy+=c*h)}while(t=t.next)}}var i,o,u,a,c=Hv(-30),s=1,f=1/0,l=.81;return t.initialize=function(t){i=t,n()},t.strength=function(e){return arguments.length?(c="function"==typeof e?e:Hv(+e),n(),t):c},t.distanceMin=function(n){return arguments.length?(s=n*n,t):Math.sqrt(s)},t.distanceMax=function(n){return arguments.length?(f=n*n,t):Math.sqrt(f)},t.theta=function(n){return arguments.length?(l=n*n,t):Math.sqrt(l)},t},lg=function(t,n,e){function r(t){for(var r=0,i=o.length;r<i;++r){var c=o[r],s=c.x-n||1e-6,f=c.y-e||1e-6,l=Math.sqrt(s*s+f*f),h=(a[r]-l)*u[r]*t/l;c.vx+=s*h,c.vy+=f*h}}function i(){if(o){var n,e=o.length;for(u=new Array(e),a=new Array(e),n=0;n<e;++n)a[n]=+t(o[n],n,o),u[n]=isNaN(a[n])?0:+c(o[n],n,o)}}var o,u,a,c=Hv(.1);return"function"!=typeof t&&(t=Hv(+t)),null==n&&(n=0),null==e&&(e=0),r.initialize=function(t){o=t,i()},r.strength=function(t){return arguments.length?(c="function"==typeof t?t:Hv(+t),i(),r):c},r.radius=function(n){return arguments.length?(t="function"==typeof n?n:Hv(+n),i(),r):t},r.x=function(t){return arguments.length?(n=+t,r):n},r.y=function(t){return arguments.length?(e=+t,r):e},r},hg=function(t){function n(t){for(var n,e=0,u=r.length;e<u;++e)n=r[e],n.vx+=(o[e]-n.x)*i[e]*t}function e(){if(r){var n,e=r.length;for(i=new Array(e),o=new Array(e),n=0;n<e;++n)i[n]=isNaN(o[n]=+t(r[n],n,r))?0:+u(r[n],n,r)}}var r,i,o,u=Hv(.1);return"function"!=typeof t&&(t=Hv(null==t?0:+t)),n.initialize=function(t){r=t,e()},n.strength=function(t){return arguments.length?(u="function"==typeof t?t:Hv(+t),e(),n):u},n.x=function(r){return arguments.length?(t="function"==typeof r?r:Hv(+r),e(),n):t},n},pg=function(t){function n(t){for(var n,e=0,u=r.length;e<u;++e)n=r[e],n.vy+=(o[e]-n.y)*i[e]*t}function e(){if(r){var n,e=r.length;for(i=new Array(e),o=new Array(e),n=0;n<e;++n)i[n]=isNaN(o[n]=+t(r[n],n,r))?0:+u(r[n],n,r)}}var r,i,o,u=Hv(.1);return"function"!=typeof t&&(t=Hv(null==t?0:+t)),n.initialize=function(t){r=t,e()},n.strength=function(t){return arguments.length?(u="function"==typeof t?t:Hv(+t),e(),n):u},n.y=function(r){return arguments.length?(t="function"==typeof r?r:Hv(+r),e(),n):t},n},dg=function(t,n){if((e=(t=n?t.toExponential(n-1):t.toExponential()).indexOf("e"))<0)return null;var e,r=t.slice(0,e);return[r.length>1?r[0]+r.slice(2):r,+t.slice(e+1)]},vg=function(t){return t=dg(Math.abs(t)),t?t[1]:NaN},gg=function(t,n){return function(e,r){for(var i=e.length,o=[],u=0,a=t[0],c=0;i>0&&a>0&&(c+a+1>r&&(a=Math.max(1,r-c)),o.push(e.substring(i-=a,i+a)),!((c+=a+1)>r));)a=t[u=(u+1)%t.length];return o.reverse().join(n)}},yg=function(t){return function(n){return n.replace(/[0-9]/g,function(n){return t[+n]})}},_g=function(t,n){t=t.toPrecision(n);t:for(var e,r=t.length,i=1,o=-1;i<r;++i)switch(t[i]){case".":o=e=i;break;case"0":0===o&&(o=i),e=i;break;case"e":break t;default:o>0&&(o=0)}return o>0?t.slice(0,o)+t.slice(e+1):t},mg=function(t,n){var e=dg(t,n);if(!e)return t+"";var r=e[0],i=e[1],o=i-(ig=3*Math.max(-8,Math.min(8,Math.floor(i/3))))+1,u=r.length;return o===u?r:o>u?r+new Array(o-u+1).join("0"):o>0?r.slice(0,o)+"."+r.slice(o):"0."+new Array(1-o).join("0")+dg(t,Math.max(0,n+o-1))[0]},xg=function(t,n){var e=dg(t,n);if(!e)return t+"";var r=e[0],i=e[1];return i<0?"0."+new Array(-i).join("0")+r:r.length>i+1?r.slice(0,i+1)+"."+r.slice(i+1):r+new Array(i-r.length+2).join("0")},bg={"":_g,"%":function(t,n){return(100*t).toFixed(n)},b:function(t){return Math.round(t).toString(2)},c:function(t){return t+""},d:function(t){return Math.round(t).toString(10)},e:function(t,n){return t.toExponential(n)},f:function(t,n){return t.toFixed(n)},g:function(t,n){return t.toPrecision(n)},o:function(t){return Math.round(t).toString(8)},p:function(t,n){return xg(100*t,n)},r:xg,s:mg,X:function(t){return Math.round(t).toString(16).toUpperCase()},x:function(t){return Math.round(t).toString(16)}},wg=/^(?:(.)?([<>=^]))?([+\-\( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?([a-z%])?$/i;vr.prototype=gr.prototype,gr.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(null==this.width?"":Math.max(1,0|this.width))+(this.comma?",":"")+(null==this.precision?"":"."+Math.max(0,0|this.precision))+this.type};var Mg,Tg=function(t){return t},Ng=["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"],kg=function(t){function n(t){function n(t){var n,i,a,f=g,x=y;if("c"===v)x=_(t)+x,t="";else{t=+t;var b=t<0;if(t=_(Math.abs(t),d),b&&0==+t&&(b=!1),f=(b?"("===s?s:"-":"-"===s||"("===s?"":s)+f,x=x+("s"===v?Ng[8+ig/3]:"")+(b&&"("===s?")":""),m)for(n=-1,i=t.length;++n<i;)if(48>(a=t.charCodeAt(n))||a>57){x=(46===a?o+t.slice(n+1):t.slice(n))+x,t=t.slice(0,n);break}}p&&!l&&(t=r(t,1/0));var w=f.length+t.length+x.length,M=w<h?new Array(h-w+1).join(e):"";switch(p&&l&&(t=r(M+t,M.length?h-x.length:1/0),M=""),c){case"<":t=f+t+x+M;break;case"=":t=f+M+t+x;break;case"^":t=M.slice(0,w=M.length>>1)+f+t+x+M.slice(w);break;default:t=M+f+t+x}return u(t)}t=vr(t);var e=t.fill,c=t.align,s=t.sign,f=t.symbol,l=t.zero,h=t.width,p=t.comma,d=t.precision,v=t.type,g="$"===f?i[0]:"#"===f&&/[boxX]/.test(v)?"0"+v.toLowerCase():"",y="$"===f?i[1]:/[%p]/.test(v)?a:"",_=bg[v],m=!v||/[defgprs%]/.test(v);return d=null==d?v?6:12:/[gprs]/.test(v)?Math.max(1,Math.min(21,d)):Math.max(0,Math.min(20,d)),n.toString=function(){return t+""},n}function e(t,e){var r=n((t=vr(t),t.type="f",t)),i=3*Math.max(-8,Math.min(8,Math.floor(vg(e)/3))),o=Math.pow(10,-i),u=Ng[8+i/3];return function(t){return r(o*t)+u}}var r=t.grouping&&t.thousands?gg(t.grouping,t.thousands):Tg,i=t.currency,o=t.decimal,u=t.numerals?yg(t.numerals):Tg,a=t.percent||"%";return{format:n,formatPrefix:e}};yr({decimal:".",thousands:",",grouping:[3],currency:["$",""]});var Sg=function(t){return Math.max(0,-vg(Math.abs(t)))},Ag=function(t,n){return Math.max(0,3*Math.max(-8,Math.min(8,Math.floor(vg(n)/3)))-vg(Math.abs(t)))},Eg=function(t,n){return t=Math.abs(t),n=Math.abs(n)-t,Math.max(0,vg(n)-vg(t))+1},Cg=function(){return new _r};_r.prototype={constructor:_r,reset:function(){this.s=this.t=0},add:function(t){mr(cy,t,this.t),mr(this,cy.s,this.s),this.s?this.t+=cy.t:this.s=cy.t},valueOf:function(){return this.s}};var zg,Pg,Rg,Lg,Dg,qg,Ug,Og,Fg,Yg,Ig,Hg,Bg,jg,Xg,Wg,Vg,$g,Zg,Gg,Qg,Jg,Kg,ty,ny,ey,ry,iy,oy,uy,ay,cy=new _r,sy=1e-6,fy=Math.PI,ly=fy/2,hy=fy/4,py=2*fy,dy=180/fy,vy=fy/180,gy=Math.abs,yy=Math.atan,_y=Math.atan2,my=Math.cos,xy=Math.ceil,by=Math.exp,wy=Math.log,My=Math.pow,Ty=Math.sin,Ny=Math.sign||function(t){return t>0?1:t<0?-1:0},ky=Math.sqrt,Sy=Math.tan,Ay={Feature:function(t,n){Tr(t.geometry,n)},FeatureCollection:function(t,n){for(var e=t.features,r=-1,i=e.length;++r<i;)Tr(e[r].geometry,n)}},Ey={Sphere:function(t,n){n.sphere()},Point:function(t,n){t=t.coordinates,n.point(t[0],t[1],t[2])},MultiPoint:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)t=e[r],n.point(t[0],t[1],t[2])},LineString:function(t,n){Nr(t.coordinates,n,0)},MultiLineString:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)Nr(e[r],n,0)},Polygon:function(t,n){kr(t.coordinates,n)},MultiPolygon:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)kr(e[r],n)},GeometryCollection:function(t,n){for(var e=t.geometries,r=-1,i=e.length;++r<i;)Tr(e[r],n)}},Cy=function(t,n){t&&Ay.hasOwnProperty(t.type)?Ay[t.type](t,n):Tr(t,n)},zy=Cg(),Py=Cg(),Ry={point:Mr,lineStart:Mr,lineEnd:Mr,polygonStart:function(){zy.reset(),Ry.lineStart=Sr,Ry.lineEnd=Ar},polygonEnd:function(){var t=+zy;Py.add(t<0?py+t:t),this.lineStart=this.lineEnd=this.point=Mr},sphere:function(){Py.add(py)}},Ly=function(t){return Py.reset(),Cy(t,Ry),2*Py},Dy=Cg(),qy={point:Or,lineStart:Yr,lineEnd:Ir,polygonStart:function(){qy.point=Hr,qy.lineStart=Br,qy.lineEnd=jr,Dy.reset(),Ry.polygonStart()},polygonEnd:function(){Ry.polygonEnd(),qy.point=Or,qy.lineStart=Yr,qy.lineEnd=Ir,zy<0?(qg=-(Og=180),Ug=-(Fg=90)):Dy>sy?Fg=90:Dy<-sy&&(Ug=-90),Xg[0]=qg,Xg[1]=Og}},Uy=function(t){var n,e,r,i,o,u,a;if(Fg=Og=-(qg=Ug=1/0),jg=[],Cy(t,qy),e=jg.length){for(jg.sort(Wr),n=1,r=jg[0],o=[r];n<e;++n)i=jg[n],Vr(r,i[0])||Vr(r,i[1])?(Xr(r[0],i[1])>Xr(r[0],r[1])&&(r[1]=i[1]),Xr(i[0],r[1])>Xr(r[0],r[1])&&(r[0]=i[0])):o.push(r=i);for(u=-1/0,e=o.length-1,n=0,r=o[e];n<=e;r=i,++n)i=o[n],(a=Xr(r[1],i[0]))>u&&(u=a,qg=i[0],Og=r[1])}return jg=Xg=null,qg===1/0||Ug===1/0?[[NaN,NaN],[NaN,NaN]]:[[qg,Ug],[Og,Fg]]},Oy={sphere:Mr,point:$r,lineStart:Gr,lineEnd:Kr,polygonStart:function(){Oy.lineStart=ti,Oy.lineEnd=ni},polygonEnd:function(){Oy.lineStart=Gr,Oy.lineEnd=Kr}},Fy=function(t){Wg=Vg=$g=Zg=Gg=Qg=Jg=Kg=ty=ny=ey=0,Cy(t,Oy);var n=ty,e=ny,r=ey,i=n*n+e*e+r*r;return i<1e-12&&(n=Qg,e=Jg,r=Kg,Vg<sy&&(n=$g,e=Zg,r=Gg),(i=n*n+e*e+r*r)<1e-12)?[NaN,NaN]:[_y(e,n)*dy,br(r/ky(i))*dy]},Yy=function(t){return function(){return t}},Iy=function(t,n){function e(e,r){return e=t(e,r),n(e[0],e[1])}return t.invert&&n.invert&&(e.invert=function(e,r){return(e=n.invert(e,r))&&t.invert(e[0],e[1])}),e};ii.invert=ii;var Hy,By,jy,Xy,Wy,Vy,$y,Zy,Gy,Qy,Jy,Ky=function(t){function n(n){return n=t(n[0]*vy,n[1]*vy),n[0]*=dy,n[1]*=dy,n}return t=oi(t[0]*vy,t[1]*vy,t.length>2?t[2]*vy:0),n.invert=function(n){return n=t.invert(n[0]*vy,n[1]*vy),n[0]*=dy,n[1]*=dy,n},n},t_=function(){function t(t,n){e.push(t=r(t,n)),t[0]*=dy,t[1]*=dy}function n(){var t=i.apply(this,arguments),n=o.apply(this,arguments)*vy,c=u.apply(this,arguments)*vy;return e=[],r=oi(-t[0]*vy,-t[1]*vy,0).invert,si(a,n,c,1),t={type:"Polygon",coordinates:[e]},e=r=null,t}var e,r,i=Yy([0,0]),o=Yy(90),u=Yy(6),a={point:t};return n.center=function(t){return arguments.length?(i="function"==typeof t?t:Yy([+t[0],+t[1]]),n):i},n.radius=function(t){return arguments.length?(o="function"==typeof t?t:Yy(+t),n):o},n.precision=function(t){return arguments.length?(u="function"==typeof t?t:Yy(+t),n):u},n},n_=function(){var t,n=[];return{point:function(n,e){t.push([n,e])},lineStart:function(){n.push(t=[])},lineEnd:Mr,rejoin:function(){n.length>1&&n.push(n.pop().concat(n.shift()))},result:function(){var e=n;return n=[],t=null,e}}},e_=function(t,n){return gy(t[0]-n[0])<sy&&gy(t[1]-n[1])<sy},r_=function(t,n,e,r,i){var o,u,a=[],c=[];if(t.forEach(function(t){if(!((n=t.length-1)<=0)){var n,e,r=t[0],u=t[n];if(e_(r,u)){for(i.lineStart(),o=0;o<n;++o)i.point((r=t[o])[0],r[1]);return void i.lineEnd()}a.push(e=new li(r,t,null,!0)),c.push(e.o=new li(r,null,e,!1)),a.push(e=new li(u,t,null,!1)),c.push(e.o=new li(u,null,e,!0))}}),a.length){for(c.sort(n),hi(a),hi(c),o=0,u=c.length;o<u;++o)c[o].e=e=!e;for(var s,f,l=a[0];;){for(var h=l,p=!0;h.v;)if((h=h.n)===l)return;s=h.z,i.lineStart();do{if(h.v=h.o.v=!0,h.e){if(p)for(o=0,u=s.length;o<u;++o)i.point((f=s[o])[0],f[1]);else r(h.x,h.n.x,1,i);h=h.n}else{if(p)for(s=h.p.z,o=s.length-1;o>=0;--o)i.point((f=s[o])[0],f[1]);else r(h.x,h.p.x,-1,i);h=h.p}h=h.o,s=h.z,p=!p}while(!h.v);i.lineEnd()}}},i_=Cg(),o_=function(t,n){var e=n[0],r=n[1],i=[Ty(e),-my(e),0],o=0,u=0;i_.reset();for(var a=0,c=t.length;a<c;++a)if(f=(s=t[a]).length)for(var s,f,l=s[f-1],h=l[0],p=l[1]/2+hy,d=Ty(p),v=my(p),g=0;g<f;++g,h=_,d=x,v=b,l=y){var y=s[g],_=y[0],m=y[1]/2+hy,x=Ty(m),b=my(m),w=_-h,M=w>=0?1:-1,T=M*w,N=T>fy,k=d*x;if(i_.add(_y(k*M*Ty(T),v*b+k*my(T))),o+=N?w+M*py:w,N^h>=e^_>=e){var S=Lr(Pr(l),Pr(y));Ur(S);var A=Lr(i,S);Ur(A);var E=(N^w>=0?-1:1)*br(A[2]);(r>E||r===E&&(S[0]||S[1]))&&(u+=N^w>=0?1:-1)}}return(o<-sy||o<sy&&i_<-sy)^1&u},u_=function(t,n,e,r){return function(i){function o(n,e){t(n,e)&&i.point(n,e)}function u(t,n){v.point(t,n)}function a(){m.point=u,v.lineStart()}function c(){m.point=o,v.lineEnd()}function s(t,n){d.push([t,n]),y.point(t,n)}function f(){y.lineStart(),d=[]}function l(){s(d[0][0],d[0][1]),y.lineEnd();var t,n,e,r,o=y.clean(),u=g.result(),a=u.length;if(d.pop(),h.push(d),d=null,a)if(1&o){if(e=u[0],(n=e.length-1)>0){for(_||(i.polygonStart(),_=!0),i.lineStart(),t=0;t<n;++t)i.point((r=e[t])[0],r[1]);i.lineEnd()}}else a>1&&2&o&&u.push(u.pop().concat(u.shift())),p.push(u.filter(pi))}var h,p,d,v=n(i),g=n_(),y=n(g),_=!1,m={point:o,lineStart:a,lineEnd:c,polygonStart:function(){m.point=s,m.lineStart=f,m.lineEnd=l,p=[],h=[]},polygonEnd:function(){m.point=o,m.lineStart=a,m.lineEnd=c,p=Kf(p);var t=o_(h,r);p.length?(_||(i.polygonStart(),_=!0),r_(p,di,t,e,i)):t&&(_||(i.polygonStart(),_=!0),i.lineStart(),e(null,null,1,i),i.lineEnd()),_&&(i.polygonEnd(),_=!1),p=h=null},sphere:function(){i.polygonStart(),i.lineStart(),e(null,null,1,i),i.lineEnd(),i.polygonEnd()}};return m}},a_=u_(function(){return!0},vi,yi,[-fy,-ly]),c_=function(t){function n(n,e,r,i){si(i,t,a,r,n,e)}function e(t,n){return my(t)*my(n)>u}function r(t){var n,r,u,a,f;return{lineStart:function(){a=u=!1,f=1},point:function(l,h){var p,d=[l,h],v=e(l,h),g=c?v?0:o(l,h):v?o(l+(l<0?fy:-fy),h):0;if(!n&&(a=u=v)&&t.lineStart(),v!==u&&(!(p=i(n,d))||e_(n,p)||e_(d,p))&&(d[0]+=sy,d[1]+=sy,v=e(d[0],d[1])),v!==u)f=0,v?(t.lineStart(),p=i(d,n),t.point(p[0],p[1])):(p=i(n,d),t.point(p[0],p[1]),t.lineEnd()),n=p;else if(s&&n&&c^v){var y;g&r||!(y=i(d,n,!0))||(f=0,c?(t.lineStart(),t.point(y[0][0],y[0][1]),t.point(y[1][0],y[1][1]),t.lineEnd()):(t.point(y[1][0],y[1][1]),t.lineEnd(),t.lineStart(),t.point(y[0][0],y[0][1])))}!v||n&&e_(n,d)||t.point(d[0],d[1]),n=d,u=v,r=g},lineEnd:function(){u&&t.lineEnd(),n=null},clean:function(){return f|(a&&u)<<1}}}function i(t,n,e){var r=Pr(t),i=Pr(n),o=[1,0,0],a=Lr(r,i),c=Rr(a,a),s=a[0],f=c-s*s;if(!f)return!e&&t;var l=u*c/f,h=-u*s/f,p=Lr(o,a),d=qr(o,l);Dr(d,qr(a,h));var v=p,g=Rr(d,v),y=Rr(v,v),_=g*g-y*(Rr(d,d)-1);if(!(_<0)){var m=ky(_),x=qr(v,(-g-m)/y);if(Dr(x,d),x=zr(x),!e)return x;var b,w=t[0],M=n[0],T=t[1],N=n[1];M<w&&(b=w,w=M,M=b);var k=M-w,S=gy(k-fy)<sy,A=S||k<sy;if(!S&&N<T&&(b=T,T=N,N=b),A?S?T+N>0^x[1]<(gy(x[0]-w)<sy?T:N):T<=x[1]&&x[1]<=N:k>fy^(w<=x[0]&&x[0]<=M)){var E=qr(v,(-g+m)/y);return Dr(E,d),[x,zr(E)]}}}function o(n,e){var r=c?t:fy-t,i=0;return n<-r?i|=1:n>r&&(i|=2),e<-r?i|=4:e>r&&(i|=8),i}var u=my(t),a=6*vy,c=u>0,s=gy(u)>sy;return u_(e,r,n,c?[0,-t]:[-fy,t-fy])},s_=function(t,n,e,r,i,o){var u,a=t[0],c=t[1],s=n[0],f=n[1],l=0,h=1,p=s-a,d=f-c;if(u=e-a,p||!(u>0)){if(u/=p,p<0){if(u<l)return;u<h&&(h=u)}else if(p>0){if(u>h)return;u>l&&(l=u)}if(u=i-a,p||!(u<0)){if(u/=p,p<0){if(u>h)return;u>l&&(l=u)}else if(p>0){if(u<l)return;u<h&&(h=u)}if(u=r-c,d||!(u>0)){if(u/=d,d<0){if(u<l)return;u<h&&(h=u)}else if(d>0){if(u>h)return;u>l&&(l=u)}if(u=o-c,d||!(u<0)){if(u/=d,d<0){if(u>h)return;u>l&&(l=u)}else if(d>0){if(u<l)return;u<h&&(h=u)}return l>0&&(t[0]=a+l*p,t[1]=c+l*d),h<1&&(n[0]=a+h*p,n[1]=c+h*d),!0}}}}},f_=1e9,l_=-f_,h_=function(){var t,n,e,r=0,i=0,o=960,u=500;return e={stream:function(e){return t&&n===e?t:t=_i(r,i,o,u)(n=e)},extent:function(a){return arguments.length?(r=+a[0][0],i=+a[0][1],o=+a[1][0],u=+a[1][1],t=n=null,e):[[r,i],[o,u]]}}},p_=Cg(),d_={sphere:Mr,point:Mr,lineStart:mi,lineEnd:Mr,polygonStart:Mr,polygonEnd:Mr},v_=function(t){return p_.reset(),Cy(t,d_),+p_},g_=[null,null],y_={type:"LineString",coordinates:g_},__=function(t,n){return g_[0]=t,g_[1]=n,v_(y_)},m_={Feature:function(t,n){return Mi(t.geometry,n)},FeatureCollection:function(t,n){for(var e=t.features,r=-1,i=e.length;++r<i;)if(Mi(e[r].geometry,n))return!0;return!1}},x_={Sphere:function(){return!0},Point:function(t,n){return Ti(t.coordinates,n)},MultiPoint:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)if(Ti(e[r],n))return!0;return!1},LineString:function(t,n){return Ni(t.coordinates,n)},MultiLineString:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)if(Ni(e[r],n))return!0;return!1},Polygon:function(t,n){return ki(t.coordinates,n)},MultiPolygon:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)if(ki(e[r],n))return!0;return!1},GeometryCollection:function(t,n){for(var e=t.geometries,r=-1,i=e.length;++r<i;)if(Mi(e[r],n))return!0;return!1}},b_=function(t,n){return(t&&m_.hasOwnProperty(t.type)?m_[t.type]:Mi)(t,n)},w_=function(t,n){var e=t[0]*vy,r=t[1]*vy,i=n[0]*vy,o=n[1]*vy,u=my(r),a=Ty(r),c=my(o),s=Ty(o),f=u*my(e),l=u*Ty(e),h=c*my(i),p=c*Ty(i),d=2*br(ky(wr(o-r)+u*c*wr(i-e))),v=Ty(d),g=d?function(t){var n=Ty(t*=d)/v,e=Ty(d-t)/v,r=e*f+n*h,i=e*l+n*p,o=e*a+n*s;return[_y(i,r)*dy,_y(o,ky(r*r+i*i))*dy]}:function(){return[e*dy,r*dy]};return g.distance=d,g},M_=function(t){return t},T_=Cg(),N_=Cg(),k_={point:Mr,lineStart:Mr,lineEnd:Mr,polygonStart:function(){k_.lineStart=Ri,k_.lineEnd=qi},polygonEnd:function(){k_.lineStart=k_.lineEnd=k_.point=Mr,T_.add(gy(N_)),N_.reset()},result:function(){var t=T_/2;return T_.reset(),t}},S_=1/0,A_=S_,E_=-S_,C_=E_,z_={point:Ui,lineStart:Mr,lineEnd:Mr,polygonStart:Mr,polygonEnd:Mr,result:function(){var t=[[S_,A_],[E_,C_]];return E_=C_=-(A_=S_=1/0),t}},P_=0,R_=0,L_=0,D_=0,q_=0,U_=0,O_=0,F_=0,Y_=0,I_={point:Oi,lineStart:Fi,lineEnd:Hi,polygonStart:function(){I_.lineStart=Bi,I_.lineEnd=ji},polygonEnd:function(){I_.point=Oi,I_.lineStart=Fi,I_.lineEnd=Hi},result:function(){var t=Y_?[O_/Y_,F_/Y_]:U_?[D_/U_,q_/U_]:L_?[P_/L_,R_/L_]:[NaN,NaN];return P_=R_=L_=D_=q_=U_=O_=F_=Y_=0,t}};Vi.prototype={_radius:4.5,pointRadius:function(t){return this._radius=t,this},polygonStart:function(){this._line=0},polygonEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){0===this._line&&this._context.closePath(),this._point=NaN},point:function(t,n){switch(this._point){case 0:this._context.moveTo(t,n),this._point=1;break;case 1:this._context.lineTo(t,n);break;default:this._context.moveTo(t+this._radius,n),this._context.arc(t,n,this._radius,0,py)}},result:Mr};var H_,B_,j_,X_,W_,V_=Cg(),$_={point:Mr,lineStart:function(){$_.point=$i},lineEnd:function(){H_&&Zi(B_,j_),$_.point=Mr},polygonStart:function(){H_=!0},polygonEnd:function(){H_=null},result:function(){var t=+V_;return V_.reset(),t}};Gi.prototype={_radius:4.5,_circle:Qi(4.5),pointRadius:function(t){return(t=+t)!==this._radius&&(this._radius=t,this._circle=null),this},polygonStart:function(){this._line=0},polygonEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){0===this._line&&this._string.push("Z"),this._point=NaN},point:function(t,n){switch(this._point){case 0:this._string.push("M",t,",",n),this._point=1;break;case 1:this._string.push("L",t,",",n);break;default:null==this._circle&&(this._circle=Qi(this._radius)),this._string.push("M",t,",",n,this._circle)}},result:function(){if(this._string.length){var t=this._string.join("");return this._string=[],t}return null}};var Z_=function(t,n){function e(t){return t&&("function"==typeof o&&i.pointRadius(+o.apply(this,arguments)),Cy(t,r(i))),i.result()}var r,i,o=4.5;return e.area=function(t){return Cy(t,r(k_)),k_.result()},e.measure=function(t){return Cy(t,r($_)),$_.result()},e.bounds=function(t){return Cy(t,r(z_)),z_.result()},e.centroid=function(t){return Cy(t,r(I_)),I_.result()},e.projection=function(n){return arguments.length?(r=null==n?(t=null,M_):(t=n).stream,e):t},e.context=function(t){return arguments.length?(i=null==t?(n=null,new Gi):new Vi(n=t),"function"!=typeof o&&i.pointRadius(o),e):n},e.pointRadius=function(t){return arguments.length?(o="function"==typeof t?t:(i.pointRadius(+t),+t),e):o},e.projection(t).context(n)},G_=function(t){return{stream:Ji(t)}};Ki.prototype={constructor:Ki,point:function(t,n){this.stream.point(t,n)},sphere:function(){this.stream.sphere()},lineStart:function(){this.stream.lineStart()},lineEnd:function(){this.stream.lineEnd()},polygonStart:function(){this.stream.polygonStart()},polygonEnd:function(){this.stream.polygonEnd()}};var Q_=16,J_=my(30*vy),K_=function(t,n){return+n?uo(t,n):oo(t)},tm=Ji({point:function(t,n){this.stream.point(t*vy,n*vy)}}),nm=function(){return fo(ho).scale(155.424).center([0,33.6442])},em=function(){return nm().parallels([29.5,45.5]).scale(1070).translate([480,250]).rotate([96,0]).center([-.6,38.7])},rm=function(){function t(t){var n=t[0],e=t[1];return a=null,i.point(n,e),a||(o.point(n,e),a)||(u.point(n,e),a)}function n(){return e=r=null,t}var e,r,i,o,u,a,c=em(),s=nm().rotate([154,0]).center([-2,58.5]).parallels([55,65]),f=nm().rotate([157,0]).center([-3,19.9]).parallels([8,18]),l={point:function(t,n){a=[t,n]}};return t.invert=function(t){var n=c.scale(),e=c.translate(),r=(t[0]-e[0])/n,i=(t[1]-e[1])/n;return(i>=.12&&i<.234&&r>=-.425&&r<-.214?s:i>=.166&&i<.234&&r>=-.214&&r<-.115?f:c).invert(t)},t.stream=function(t){return e&&r===t?e:e=po([c.stream(r=t),s.stream(t),f.stream(t)])},t.precision=function(t){return arguments.length?(c.precision(t),s.precision(t),f.precision(t),n()):c.precision()},t.scale=function(n){return arguments.length?(c.scale(n),s.scale(.35*n),f.scale(n),t.translate(c.translate())):c.scale()},t.translate=function(t){if(!arguments.length)return c.translate();var e=c.scale(),r=+t[0],a=+t[1];return i=c.translate(t).clipExtent([[r-.455*e,a-.238*e],[r+.455*e,a+.238*e]]).stream(l),o=s.translate([r-.307*e,a+.201*e]).clipExtent([[r-.425*e+sy,a+.12*e+sy],[r-.214*e-sy,a+.234*e-sy]]).stream(l),u=f.translate([r-.205*e,a+.212*e]).clipExtent([[r-.214*e+sy,a+.166*e+sy],[r-.115*e-sy,a+.234*e-sy]]).stream(l),n()},t.fitExtent=function(n,e){return no(t,n,e)},t.fitSize=function(n,e){return eo(t,n,e)},t.fitWidth=function(n,e){return ro(t,n,e)},t.fitHeight=function(n,e){return io(t,n,e)},t.scale(1070)},im=vo(function(t){return ky(2/(1+t))});im.invert=go(function(t){return 2*br(t/2)});var om=function(){return co(im).scale(124.75).clipAngle(179.999)},um=vo(function(t){return(t=xr(t))&&t/Ty(t)});um.invert=go(function(t){return t});var am=function(){return co(um).scale(79.4188).clipAngle(179.999)};yo.invert=function(t,n){return[t,2*yy(by(n))-ly]};var cm=function(){return _o(yo).scale(961/py)},sm=function(){return fo(xo).scale(109.5).parallels([30,30])};bo.invert=bo;var fm=function(){return co(bo).scale(152.63)},lm=function(){return fo(wo).scale(131.154).center([0,13.9389])};Mo.invert=go(yy);var hm=function(){return co(Mo).scale(144.049).clipAngle(60)},pm=function(){function t(){return i=o=null,u}var n,e,r,i,o,u,a=1,c=0,s=0,f=1,l=1,h=M_,p=null,d=M_;return u={stream:function(t){return i&&o===t?i:i=h(d(o=t))},postclip:function(i){return arguments.length?(d=i,p=n=e=r=null,t()):d},clipExtent:function(i){return arguments.length?(d=null==i?(p=n=e=r=null,M_):_i(p=+i[0][0],n=+i[0][1],e=+i[1][0],r=+i[1][1]),t()):null==p?null:[[p,n],[e,r]]},scale:function(n){return arguments.length?(h=To((a=+n)*f,a*l,c,s),t()):a},translate:function(n){return arguments.length?(h=To(a*f,a*l,c=+n[0],s=+n[1]),t()):[c,s]},reflectX:function(n){return arguments.length?(h=To(a*(f=n?-1:1),a*l,c,s),t()):f<0},reflectY:function(n){return arguments.length?(h=To(a*f,a*(l=n?-1:1),c,s),t()):l<0},fitExtent:function(t,n){return no(u,t,n)},fitSize:function(t,n){return eo(u,t,n)},fitWidth:function(t,n){return ro(u,t,n)},fitHeight:function(t,n){return io(u,t,n)}}};No.invert=function(t,n){
var e,r=n,i=25;do{var o=r*r,u=o*o;r-=e=(r*(1.007226+o*(.015085+u*(.028874*o-.044475-.005916*u)))-n)/(1.007226+o*(.045255+u*(.259866*o-.311325-.005916*11*u)))}while(gy(e)>sy&&--i>0);return[t/(.8707+(o=r*r)*(o*(o*o*o*(.003971-.001529*o)-.013791)-.131979)),r]};var dm=function(){return co(No).scale(175.295)};ko.invert=go(br);var vm=function(){return co(ko).scale(249.5).clipAngle(90+sy)};So.invert=go(function(t){return 2*yy(t)});var gm=function(){return co(So).scale(250).clipAngle(142)};Ao.invert=function(t,n){return[-n,2*yy(by(t))-ly]};var ym=function(){var t=_o(Ao),n=t.center,e=t.rotate;return t.center=function(t){return arguments.length?n([-t[1],t[0]]):(t=n(),[t[1],-t[0]])},t.rotate=function(t){return arguments.length?e([t[0],t[1],t.length>2?t[2]+90:90]):(t=e(),[t[0],t[1],t[2]-90])},e([0,0,90]).scale(159.155)},_m=function(){function t(t){var o,u=0;t.eachAfter(function(t){var e=t.children;e?(t.x=Co(e),t.y=Po(e)):(t.x=o?u+=n(t,o):0,t.y=0,o=t)});var a=Lo(t),c=Do(t),s=a.x-n(a,c)/2,f=c.x+n(c,a)/2;return t.eachAfter(i?function(n){n.x=(n.x-t.x)*e,n.y=(t.y-n.y)*r}:function(n){n.x=(n.x-s)/(f-s)*e,n.y=(1-(t.y?n.y/t.y:1))*r})}var n=Eo,e=1,r=1,i=!1;return t.separation=function(e){return arguments.length?(n=e,t):n},t.size=function(n){return arguments.length?(i=!1,e=+n[0],r=+n[1],t):i?null:[e,r]},t.nodeSize=function(n){return arguments.length?(i=!0,e=+n[0],r=+n[1],t):i?[e,r]:null},t},mm=function(){return this.eachAfter(qo)},xm=function(t){var n,e,r,i,o=this,u=[o];do{for(n=u.reverse(),u=[];o=n.pop();)if(t(o),e=o.children)for(r=0,i=e.length;r<i;++r)u.push(e[r])}while(u.length);return this},bm=function(t){for(var n,e,r=this,i=[r];r=i.pop();)if(t(r),n=r.children)for(e=n.length-1;e>=0;--e)i.push(n[e]);return this},wm=function(t){for(var n,e,r,i=this,o=[i],u=[];i=o.pop();)if(u.push(i),n=i.children)for(e=0,r=n.length;e<r;++e)o.push(n[e]);for(;i=u.pop();)t(i);return this},Mm=function(t){return this.eachAfter(function(n){for(var e=+t(n.data)||0,r=n.children,i=r&&r.length;--i>=0;)e+=r[i].value;n.value=e})},Tm=function(t){return this.eachBefore(function(n){n.children&&n.children.sort(t)})},Nm=function(t){for(var n=this,e=Uo(n,t),r=[n];n!==e;)n=n.parent,r.push(n);for(var i=r.length;t!==e;)r.splice(i,0,t),t=t.parent;return r},km=function(){for(var t=this,n=[t];t=t.parent;)n.push(t);return n},Sm=function(){var t=[];return this.each(function(n){t.push(n)}),t},Am=function(){var t=[];return this.eachBefore(function(n){n.children||t.push(n)}),t},Em=function(){var t=this,n=[];return t.each(function(e){e!==t&&n.push({source:e.parent,target:e})}),n};Bo.prototype=Oo.prototype={constructor:Bo,count:mm,each:xm,eachAfter:wm,eachBefore:bm,sum:Mm,sort:Tm,path:Nm,ancestors:km,descendants:Sm,leaves:Am,links:Em,copy:Fo};var Cm=Array.prototype.slice,zm=function(t){for(var n,e,r=0,i=(t=jo(Cm.call(t))).length,o=[];r<i;)n=t[r],e&&Vo(e,n)?++r:(e=Zo(o=Xo(o,n)),r=0);return e},Pm=function(t){return ru(t),t},Rm=function(t){return function(){return t}},Lm=function(){function t(t){return t.x=e/2,t.y=r/2,n?t.eachBefore(cu(n)).eachAfter(su(i,.5)).eachBefore(fu(1)):t.eachBefore(cu(au)).eachAfter(su(uu,1)).eachAfter(su(i,t.r/Math.min(e,r))).eachBefore(fu(Math.min(e,r)/(2*t.r))),t}var n=null,e=1,r=1,i=uu;return t.radius=function(e){return arguments.length?(n=iu(e),t):n},t.size=function(n){return arguments.length?(e=+n[0],r=+n[1],t):[e,r]},t.padding=function(n){return arguments.length?(i="function"==typeof n?n:Rm(+n),t):i},t},Dm=function(t){t.x0=Math.round(t.x0),t.y0=Math.round(t.y0),t.x1=Math.round(t.x1),t.y1=Math.round(t.y1)},qm=function(t,n,e,r,i){for(var o,u=t.children,a=-1,c=u.length,s=t.value&&(r-n)/t.value;++a<c;)o=u[a],o.y0=e,o.y1=i,o.x0=n,o.x1=n+=o.value*s},Um=function(){function t(t){var u=t.height+1;return t.x0=t.y0=i,t.x1=e,t.y1=r/u,t.eachBefore(n(r,u)),o&&t.eachBefore(Dm),t}function n(t,n){return function(e){e.children&&qm(e,e.x0,t*(e.depth+1)/n,e.x1,t*(e.depth+2)/n);var r=e.x0,o=e.y0,u=e.x1-i,a=e.y1-i;u<r&&(r=u=(r+u)/2),a<o&&(o=a=(o+a)/2),e.x0=r,e.y0=o,e.x1=u,e.y1=a}}var e=1,r=1,i=0,o=!1;return t.round=function(n){return arguments.length?(o=!!n,t):o},t.size=function(n){return arguments.length?(e=+n[0],r=+n[1],t):[e,r]},t.padding=function(n){return arguments.length?(i=+n,t):i},t},Om="$",Fm={depth:-1},Ym={},Im=function(){function t(t){var r,i,o,u,a,c,s,f=t.length,l=new Array(f),h={};for(i=0;i<f;++i)r=t[i],a=l[i]=new Bo(r),null!=(c=n(r,i,t))&&(c+="")&&(s=Om+(a.id=c),h[s]=s in h?Ym:a);for(i=0;i<f;++i)if(a=l[i],null!=(c=e(t[i],i,t))&&(c+="")){if(!(u=h[Om+c]))throw new Error("missing: "+c);if(u===Ym)throw new Error("ambiguous: "+c);u.children?u.children.push(a):u.children=[a],a.parent=u}else{if(o)throw new Error("multiple roots");o=a}if(!o)throw new Error("no root");if(o.parent=Fm,o.eachBefore(function(t){t.depth=t.parent.depth+1,--f}).eachBefore(Ho),o.parent=null,f>0)throw new Error("cycle");return o}var n=lu,e=hu;return t.id=function(e){return arguments.length?(n=ou(e),t):n},t.parentId=function(n){return arguments.length?(e=ou(n),t):e},t};mu.prototype=Object.create(Bo.prototype);var Hm=function(){function t(t){var r=xu(t);if(r.eachAfter(n),r.parent.m=-r.z,r.eachBefore(e),c)t.eachBefore(i);else{var s=t,f=t,l=t;t.eachBefore(function(t){t.x<s.x&&(s=t),t.x>f.x&&(f=t),t.depth>l.depth&&(l=t)});var h=s===f?1:o(s,f)/2,p=h-s.x,d=u/(f.x+h+p),v=a/(l.depth||1);t.eachBefore(function(t){t.x=(t.x+p)*d,t.y=t.depth*v})}return t}function n(t){var n=t.children,e=t.parent.children,i=t.i?e[t.i-1]:null;if(n){yu(t);var u=(n[0].z+n[n.length-1].z)/2;i?(t.z=i.z+o(t._,i._),t.m=t.z-u):t.z=u}else i&&(t.z=i.z+o(t._,i._));t.parent.A=r(t,i,t.parent.A||e[0])}function e(t){t._.x=t.z+t.parent.m,t.m+=t.parent.m}function r(t,n,e){if(n){for(var r,i=t,u=t,a=n,c=i.parent.children[0],s=i.m,f=u.m,l=a.m,h=c.m;a=vu(a),i=du(i),a&&i;)c=du(c),u=vu(u),u.a=t,r=a.z+l-i.z-s+o(a._,i._),r>0&&(gu(_u(a,t,e),t,r),s+=r,f+=r),l+=a.m,s+=i.m,h+=c.m,f+=u.m;a&&!vu(u)&&(u.t=a,u.m+=l-f),i&&!du(c)&&(c.t=i,c.m+=s-h,e=t)}return e}function i(t){t.x*=u,t.y=t.depth*a}var o=pu,u=1,a=1,c=null;return t.separation=function(n){return arguments.length?(o=n,t):o},t.size=function(n){return arguments.length?(c=!1,u=+n[0],a=+n[1],t):c?null:[u,a]},t.nodeSize=function(n){return arguments.length?(c=!0,u=+n[0],a=+n[1],t):c?[u,a]:null},t},Bm=function(t,n,e,r,i){for(var o,u=t.children,a=-1,c=u.length,s=t.value&&(i-e)/t.value;++a<c;)o=u[a],o.x0=n,o.x1=r,o.y0=e,o.y1=e+=o.value*s},jm=(1+Math.sqrt(5))/2,Xm=function t(n){function e(t,e,r,i,o){bu(n,t,e,r,i,o)}return e.ratio=function(n){return t((n=+n)>1?n:1)},e}(jm),Wm=function(){function t(t){return t.x0=t.y0=0,t.x1=i,t.y1=o,t.eachBefore(n),u=[0],r&&t.eachBefore(Dm),t}function n(t){var n=u[t.depth],r=t.x0+n,i=t.y0+n,o=t.x1-n,h=t.y1-n;o<r&&(r=o=(r+o)/2),h<i&&(i=h=(i+h)/2),t.x0=r,t.y0=i,t.x1=o,t.y1=h,t.children&&(n=u[t.depth+1]=a(t)/2,r+=l(t)-n,i+=c(t)-n,o-=s(t)-n,h-=f(t)-n,o<r&&(r=o=(r+o)/2),h<i&&(i=h=(i+h)/2),e(t,r,i,o,h))}var e=Xm,r=!1,i=1,o=1,u=[0],a=uu,c=uu,s=uu,f=uu,l=uu;return t.round=function(n){return arguments.length?(r=!!n,t):r},t.size=function(n){return arguments.length?(i=+n[0],o=+n[1],t):[i,o]},t.tile=function(n){return arguments.length?(e=ou(n),t):e},t.padding=function(n){return arguments.length?t.paddingInner(n).paddingOuter(n):t.paddingInner()},t.paddingInner=function(n){return arguments.length?(a="function"==typeof n?n:Rm(+n),t):a},t.paddingOuter=function(n){return arguments.length?t.paddingTop(n).paddingRight(n).paddingBottom(n).paddingLeft(n):t.paddingTop()},t.paddingTop=function(n){return arguments.length?(c="function"==typeof n?n:Rm(+n),t):c},t.paddingRight=function(n){return arguments.length?(s="function"==typeof n?n:Rm(+n),t):s},t.paddingBottom=function(n){return arguments.length?(f="function"==typeof n?n:Rm(+n),t):f},t.paddingLeft=function(n){return arguments.length?(l="function"==typeof n?n:Rm(+n),t):l},t},Vm=function(t,n,e,r,i){function o(t,n,e,r,i,u,a){if(t>=n-1){var s=c[t];return s.x0=r,s.y0=i,s.x1=u,s.y1=a,void 0}for(var l=f[t],h=e/2+l,p=t+1,d=n-1;p<d;){var v=p+d>>>1;f[v]<h?p=v+1:d=v}h-f[p-1]<f[p]-h&&t+1<p&&--p;var g=f[p]-l,y=e-g;if(u-r>a-i){var _=(r*y+u*g)/e;o(t,p,g,r,i,_,a),o(p,n,y,_,i,u,a)}else{var m=(i*y+a*g)/e;o(t,p,g,r,i,u,m),o(p,n,y,r,m,u,a)}}var u,a,c=t.children,s=c.length,f=new Array(s+1);for(f[0]=a=u=0;u<s;++u)f[u+1]=a+=c[u].value;o(0,s,t.value,n,e,r,i)},$m=function(t,n,e,r,i){(1&t.depth?Bm:qm)(t,n,e,r,i)},Zm=function t(n){function e(t,e,r,i,o){if((u=t._squarify)&&u.ratio===n)for(var u,a,c,s,f,l=-1,h=u.length,p=t.value;++l<h;){for(a=u[l],c=a.children,s=a.value=0,f=c.length;s<f;++s)a.value+=c[s].value;a.dice?qm(a,e,r,i,r+=(o-r)*a.value/p):Bm(a,e,r,e+=(i-e)*a.value/p,o),p-=a.value}else t._squarify=u=bu(n,t,e,r,i,o),u.ratio=n}return e.ratio=function(n){return t((n=+n)>1?n:1)},e}(jm),Gm=function(t){for(var n,e=-1,r=t.length,i=t[r-1],o=0;++e<r;)n=i,i=t[e],o+=n[1]*i[0]-n[0]*i[1];return o/2},Qm=function(t){for(var n,e,r=-1,i=t.length,o=0,u=0,a=t[i-1],c=0;++r<i;)n=a,a=t[r],c+=e=n[0]*a[1]-a[0]*n[1],o+=(n[0]+a[0])*e,u+=(n[1]+a[1])*e;return c*=3,[o/c,u/c]},Jm=function(t,n,e){return(n[0]-t[0])*(e[1]-t[1])-(n[1]-t[1])*(e[0]-t[0])},Km=function(t){if((e=t.length)<3)return null;var n,e,r=new Array(e),i=new Array(e);for(n=0;n<e;++n)r[n]=[+t[n][0],+t[n][1],n];for(r.sort(wu),n=0;n<e;++n)i[n]=[r[n][0],-r[n][1]];var o=Mu(r),u=Mu(i),a=u[0]===o[0],c=u[u.length-1]===o[o.length-1],s=[];for(n=o.length-1;n>=0;--n)s.push(t[r[o[n]][2]]);for(n=+a;n<u.length-c;++n)s.push(t[r[u[n]][2]]);return s},tx=function(t,n){for(var e,r,i=t.length,o=t[i-1],u=n[0],a=n[1],c=o[0],s=o[1],f=!1,l=0;l<i;++l)o=t[l],e=o[0],r=o[1],r>a!=s>a&&u<(c-e)*(a-r)/(s-r)+e&&(f=!f),c=e,s=r;return f},nx=function(t){for(var n,e,r=-1,i=t.length,o=t[i-1],u=o[0],a=o[1],c=0;++r<i;)n=u,e=a,o=t[r],u=o[0],a=o[1],n-=u,e-=a,c+=Math.sqrt(n*n+e*e);return c},ex=[].slice,rx={};Tu.prototype=Cu.prototype={constructor:Tu,defer:function(t){if("function"!=typeof t)throw new Error("invalid callback");if(this._call)throw new Error("defer after await");if(null!=this._error)return this;var n=ex.call(arguments,1);return n.push(t),++this._waiting,this._tasks.push(n),Nu(this),this},abort:function(){return null==this._error&&Au(this,new Error("abort")),this},await:function(t){if("function"!=typeof t)throw new Error("invalid callback");if(this._call)throw new Error("multiple await");return this._call=function(n,e){t.apply(null,[n].concat(e))},Eu(this),this},awaitAll:function(t){if("function"!=typeof t)throw new Error("invalid callback");if(this._call)throw new Error("multiple await");return this._call=t,Eu(this),this}};var ix=function(){return Math.random()},ox=function t(n){function e(t,e){return t=null==t?0:+t,e=null==e?1:+e,1===arguments.length?(e=t,t=0):e-=t,function(){return n()*e+t}}return e.source=t,e}(ix),ux=function t(n){function e(t,e){var r,i;return t=null==t?0:+t,e=null==e?1:+e,function(){var o;if(null!=r)o=r,r=null;else do{r=2*n()-1,o=2*n()-1,i=r*r+o*o}while(!i||i>1);return t+e*o*Math.sqrt(-2*Math.log(i)/i)}}return e.source=t,e}(ix),ax=function t(n){function e(){var t=ux.source(n).apply(this,arguments);return function(){return Math.exp(t())}}return e.source=t,e}(ix),cx=function t(n){function e(t){return function(){for(var e=0,r=0;r<t;++r)e+=n();return e}}return e.source=t,e}(ix),sx=function t(n){function e(t){var e=cx.source(n)(t);return function(){return e()/t}}return e.source=t,e}(ix),fx=function t(n){function e(t){return function(){return-Math.log(1-n())/t}}return e.source=t,e}(ix),lx=function(t,n){function e(t){var n,e=s.status;if(!e&&Pu(s)||e>=200&&e<300||304===e){if(o)try{n=o.call(r,s)}catch(t){return void a.call("error",r,t)}else n=s;a.call("load",r,n)}else a.call("error",r,t)}var r,i,o,u,a=g("beforesend","progress","load","error"),c=Xe(),s=new XMLHttpRequest,f=null,l=null,h=0;if("undefined"==typeof XDomainRequest||"withCredentials"in s||!/^(http(s)?:)?\/\//.test(t)||(s=new XDomainRequest),"onload"in s?s.onload=s.onerror=s.ontimeout=e:s.onreadystatechange=function(t){s.readyState>3&&e(t)},s.onprogress=function(t){a.call("progress",r,t)},r={header:function(t,n){return t=(t+"").toLowerCase(),arguments.length<2?c.get(t):(null==n?c.remove(t):c.set(t,n+""),r)},mimeType:function(t){return arguments.length?(i=null==t?null:t+"",r):i},responseType:function(t){return arguments.length?(u=t,r):u},timeout:function(t){return arguments.length?(h=+t,r):h},user:function(t){return arguments.length<1?f:(f=null==t?null:t+"",r)},password:function(t){return arguments.length<1?l:(l=null==t?null:t+"",r)},response:function(t){return o=t,r},get:function(t,n){return r.send("GET",t,n)},post:function(t,n){return r.send("POST",t,n)},send:function(n,e,o){return s.open(n,t,!0,f,l),null==i||c.has("accept")||c.set("accept",i+",*/*"),s.setRequestHeader&&c.each(function(t,n){s.setRequestHeader(n,t)}),null!=i&&s.overrideMimeType&&s.overrideMimeType(i),null!=u&&(s.responseType=u),h>0&&(s.timeout=h),null==o&&"function"==typeof e&&(o=e,e=null),null!=o&&1===o.length&&(o=zu(o)),null!=o&&r.on("error",o).on("load",function(t){o(null,t)}),a.call("beforesend",r,s),s.send(null==e?null:e),r},abort:function(){return s.abort(),r},on:function(){var t=a.on.apply(a,arguments);return t===a?r:t}},null!=n){if("function"!=typeof n)throw new Error("invalid callback: "+n);return r.get(n)}return r},hx=function(t,n){return function(e,r){var i=lx(e).mimeType(t).response(n);if(null!=r){if("function"!=typeof r)throw new Error("invalid callback: "+r);return i.get(r)}return i}},px=hx("text/html",function(t){return document.createRange().createContextualFragment(t.responseText)}),dx=hx("application/json",function(t){return JSON.parse(t.responseText)}),vx=hx("text/plain",function(t){return t.responseText}),gx=hx("application/xml",function(t){var n=t.responseXML;if(!n)throw new Error("parse error");return n}),yx=function(t,n){return function(e,r,i){arguments.length<3&&(i=r,r=null);var o=lx(e).mimeType(t);return o.row=function(t){return arguments.length?o.response(Ru(n,r=t)):r},o.row(r),i?o.get(i):o}},_x=yx("text/csv",Pv),mx=yx("text/tab-separated-values",Uv),xx=Array.prototype,bx=xx.map,wx=xx.slice,Mx={name:"implicit"},Tx=function(t){return function(){return t}},Nx=function(t){return+t},kx=[0,1],Sx=function(n,e,r){var o,u=n[0],a=n[n.length-1],c=i(u,a,null==e?10:e);switch(r=vr(null==r?",f":r),r.type){case"s":var s=Math.max(Math.abs(u),Math.abs(a));return null!=r.precision||isNaN(o=Ag(c,s))||(r.precision=o),t.formatPrefix(r,s);case"":case"e":case"g":case"p":case"r":null!=r.precision||isNaN(o=Eg(c,Math.max(Math.abs(u),Math.abs(a))))||(r.precision=o-("e"===r.type));break;case"f":case"%":null!=r.precision||isNaN(o=Sg(c))||(r.precision=o-2*("%"===r.type))}return t.format(r)},Ax=function(t,n){t=t.slice();var e,r=0,i=t.length-1,o=t[r],u=t[i];return u<o&&(e=r,r=i,i=e,e=o,o=u,u=e),t[r]=n.floor(o),t[i]=n.ceil(u),t},Ex=new Date,Cx=new Date,zx=aa(function(){},function(t,n){t.setTime(+t+n)},function(t,n){return n-t});zx.every=function(t){return t=Math.floor(t),isFinite(t)&&t>0?t>1?aa(function(n){n.setTime(Math.floor(n/t)*t)},function(n,e){n.setTime(+n+e*t)},function(n,e){return(e-n)/t}):zx:null};var Px=zx.range,Rx=6e4,Lx=6048e5,Dx=aa(function(t){t.setTime(1e3*Math.floor(t/1e3))},function(t,n){t.setTime(+t+1e3*n)},function(t,n){return(n-t)/1e3},function(t){return t.getUTCSeconds()}),qx=Dx.range,Ux=aa(function(t){t.setTime(Math.floor(t/Rx)*Rx)},function(t,n){t.setTime(+t+n*Rx)},function(t,n){return(n-t)/Rx},function(t){return t.getMinutes()}),Ox=Ux.range,Fx=aa(function(t){var n=t.getTimezoneOffset()*Rx%36e5;n<0&&(n+=36e5),t.setTime(36e5*Math.floor((+t-n)/36e5)+n)},function(t,n){t.setTime(+t+36e5*n)},function(t,n){return(n-t)/36e5},function(t){return t.getHours()}),Yx=Fx.range,Ix=aa(function(t){t.setHours(0,0,0,0)},function(t,n){t.setDate(t.getDate()+n)},function(t,n){return(n-t-(n.getTimezoneOffset()-t.getTimezoneOffset())*Rx)/864e5},function(t){return t.getDate()-1}),Hx=Ix.range,Bx=ca(0),jx=ca(1),Xx=ca(2),Wx=ca(3),Vx=ca(4),$x=ca(5),Zx=ca(6),Gx=Bx.range,Qx=jx.range,Jx=Xx.range,Kx=Wx.range,tb=Vx.range,nb=$x.range,eb=Zx.range,rb=aa(function(t){t.setDate(1),t.setHours(0,0,0,0)},function(t,n){t.setMonth(t.getMonth()+n)},function(t,n){return n.getMonth()-t.getMonth()+12*(n.getFullYear()-t.getFullYear())},function(t){return t.getMonth()}),ib=rb.range,ob=aa(function(t){t.setMonth(0,1),t.setHours(0,0,0,0)},function(t,n){t.setFullYear(t.getFullYear()+n)},function(t,n){return n.getFullYear()-t.getFullYear()},function(t){return t.getFullYear()});ob.every=function(t){return isFinite(t=Math.floor(t))&&t>0?aa(function(n){n.setFullYear(Math.floor(n.getFullYear()/t)*t),n.setMonth(0,1),n.setHours(0,0,0,0)},function(n,e){n.setFullYear(n.getFullYear()+e*t)}):null};var ub=ob.range,ab=aa(function(t){t.setUTCSeconds(0,0)},function(t,n){t.setTime(+t+n*Rx)},function(t,n){return(n-t)/Rx},function(t){return t.getUTCMinutes()}),cb=ab.range,sb=aa(function(t){t.setUTCMinutes(0,0,0)},function(t,n){t.setTime(+t+36e5*n)},function(t,n){return(n-t)/36e5},function(t){return t.getUTCHours()}),fb=sb.range,lb=aa(function(t){t.setUTCHours(0,0,0,0)},function(t,n){t.setUTCDate(t.getUTCDate()+n)},function(t,n){return(n-t)/864e5},function(t){return t.getUTCDate()-1}),hb=lb.range,pb=sa(0),db=sa(1),vb=sa(2),gb=sa(3),yb=sa(4),_b=sa(5),mb=sa(6),xb=pb.range,bb=db.range,wb=vb.range,Mb=gb.range,Tb=yb.range,Nb=_b.range,kb=mb.range,Sb=aa(function(t){t.setUTCDate(1),t.setUTCHours(0,0,0,0)},function(t,n){t.setUTCMonth(t.getUTCMonth()+n)},function(t,n){return n.getUTCMonth()-t.getUTCMonth()+12*(n.getUTCFullYear()-t.getUTCFullYear())},function(t){return t.getUTCMonth()}),Ab=Sb.range,Eb=aa(function(t){t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0)},function(t,n){t.setUTCFullYear(t.getUTCFullYear()+n)},function(t,n){return n.getUTCFullYear()-t.getUTCFullYear()},function(t){return t.getUTCFullYear()});Eb.every=function(t){return isFinite(t=Math.floor(t))&&t>0?aa(function(n){n.setUTCFullYear(Math.floor(n.getUTCFullYear()/t)*t),n.setUTCMonth(0,1),n.setUTCHours(0,0,0,0)},function(n,e){n.setUTCFullYear(n.getUTCFullYear()+e*t)}):null};var Cb,zb=Eb.range,Pb={"-":"",_:" ",0:"0"},Rb=/^\s*\d+/,Lb=/^%/,Db=/[\\^$*+?|[\]().{}]/g;xc({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});var qb=Date.prototype.toISOString?bc:t.utcFormat("%Y-%m-%dT%H:%M:%S.%LZ"),Ub=+new Date("2000-01-01T00:00:00.000Z")?wc:t.utcParse("%Y-%m-%dT%H:%M:%S.%LZ"),Ob=1e3,Fb=60*Ob,Yb=60*Fb,Ib=24*Yb,Hb=7*Ib,Bb=30*Ib,jb=365*Ib,Xb=function(){return Nc(ob,rb,Bx,Ix,Fx,Ux,Dx,zx,t.timeFormat).domain([new Date(2e3,0,1),new Date(2e3,0,2)])},Wb=function(){return Nc(Eb,Sb,pb,lb,sb,ab,Dx,zx,t.utcFormat).domain([Date.UTC(2e3,0,1),Date.UTC(2e3,0,2)])},Vb=function(t){return t.match(/.{6}/g).map(function(t){return"#"+t})},$b=Vb("1f77b4ff7f0e2ca02cd627289467bd8c564be377c27f7f7fbcbd2217becf"),Zb=Vb("393b795254a36b6ecf9c9ede6379398ca252b5cf6bcedb9c8c6d31bd9e39e7ba52e7cb94843c39ad494ad6616be7969c7b4173a55194ce6dbdde9ed6"),Gb=Vb("3182bd6baed69ecae1c6dbefe6550dfd8d3cfdae6bfdd0a231a35474c476a1d99bc7e9c0756bb19e9ac8bcbddcdadaeb636363969696bdbdbdd9d9d9"),Qb=Vb("1f77b4aec7e8ff7f0effbb782ca02c98df8ad62728ff98969467bdc5b0d58c564bc49c94e377c2f7b6d27f7f7fc7c7c7bcbd22dbdb8d17becf9edae5"),Jb=Sp(Gt(300,.5,0),Gt(-240,.5,1)),Kb=Sp(Gt(-100,.75,.35),Gt(80,1.5,.8)),tw=Sp(Gt(260,.75,.35),Gt(80,1.5,.8)),nw=Gt(),ew=function(t){(t<0||t>1)&&(t-=Math.floor(t));var n=Math.abs(t-.5);return nw.h=360*t-100,nw.s=1.5-1.5*n,nw.l=.8-.9*n,nw+""},rw=kc(Vb("44015444025645045745055946075a46085c460a5d460b5e470d60470e6147106347116447136548146748166848176948186a481a6c481b6d481c6e481d6f481f70482071482173482374482475482576482677482878482979472a7a472c7a472d7b472e7c472f7d46307e46327e46337f463480453581453781453882443983443a83443b84433d84433e85423f854240864241864142874144874045884046883f47883f48893e49893e4a893e4c8a3d4d8a3d4e8a3c4f8a3c508b3b518b3b528b3a538b3a548c39558c39568c38588c38598c375a8c375b8d365c8d365d8d355e8d355f8d34608d34618d33628d33638d32648e32658e31668e31678e31688e30698e306a8e2f6b8e2f6c8e2e6d8e2e6e8e2e6f8e2d708e2d718e2c718e2c728e2c738e2b748e2b758e2a768e2a778e2a788e29798e297a8e297b8e287c8e287d8e277e8e277f8e27808e26818e26828e26828e25838e25848e25858e24868e24878e23888e23898e238a8d228b8d228c8d228d8d218e8d218f8d21908d21918c20928c20928c20938c1f948c1f958b1f968b1f978b1f988b1f998a1f9a8a1e9b8a1e9c891e9d891f9e891f9f881fa0881fa1881fa1871fa28720a38620a48621a58521a68522a78522a88423a98324aa8325ab8225ac8226ad8127ad8128ae8029af7f2ab07f2cb17e2db27d2eb37c2fb47c31b57b32b67a34b67935b77937b87838b9773aba763bbb753dbc743fbc7340bd7242be7144bf7046c06f48c16e4ac16d4cc26c4ec36b50c46a52c56954c56856c66758c7655ac8645cc8635ec96260ca6063cb5f65cb5e67cc5c69cd5b6ccd5a6ece5870cf5773d05675d05477d1537ad1517cd2507fd34e81d34d84d44b86d54989d5488bd6468ed64590d74393d74195d84098d83e9bd93c9dd93ba0da39a2da37a5db36a8db34aadc32addc30b0dd2fb2dd2db5de2bb8de29bade28bddf26c0df25c2df23c5e021c8e020cae11fcde11dd0e11cd2e21bd5e21ad8e219dae319dde318dfe318e2e418e5e419e7e419eae51aece51befe51cf1e51df4e61ef6e620f8e621fbe723fde725")),iw=kc(Vb("00000401000501010601010802010902020b02020d03030f03031204041405041606051806051a07061c08071e0907200a08220b09240c09260d0a290e0b2b100b2d110c2f120d31130d34140e36150e38160f3b180f3d19103f1a10421c10441d11471e114920114b21114e22115024125325125527125829115a2a115c2c115f2d11612f116331116533106734106936106b38106c390f6e3b0f703d0f713f0f72400f74420f75440f764510774710784910784a10794c117a4e117b4f127b51127c52137c54137d56147d57157e59157e5a167e5c167f5d177f5f187f601880621980641a80651a80671b80681c816a1c816b1d816d1d816e1e81701f81721f817320817521817621817822817922827b23827c23827e24828025828125818326818426818627818827818928818b29818c29818e2a81902a81912b81932b80942c80962c80982d80992d809b2e7f9c2e7f9e2f7fa02f7fa1307ea3307ea5317ea6317da8327daa337dab337cad347cae347bb0357bb2357bb3367ab5367ab73779b83779ba3878bc3978bd3977bf3a77c03a76c23b75c43c75c53c74c73d73c83e73ca3e72cc3f71cd4071cf4070d0416fd2426fd3436ed5446dd6456cd8456cd9466bdb476adc4869de4968df4a68e04c67e24d66e34e65e44f64e55064e75263e85362e95462ea5661eb5760ec5860ed5a5fee5b5eef5d5ef05f5ef1605df2625df2645cf3655cf4675cf4695cf56b5cf66c5cf66e5cf7705cf7725cf8745cf8765cf9785df9795df97b5dfa7d5efa7f5efa815ffb835ffb8560fb8761fc8961fc8a62fc8c63fc8e64fc9065fd9266fd9467fd9668fd9869fd9a6afd9b6bfe9d6cfe9f6dfea16efea36ffea571fea772fea973feaa74feac76feae77feb078feb27afeb47bfeb67cfeb77efeb97ffebb81febd82febf84fec185fec287fec488fec68afec88cfeca8dfecc8ffecd90fecf92fed194fed395fed597fed799fed89afdda9cfddc9efddea0fde0a1fde2a3fde3a5fde5a7fde7a9fde9aafdebacfcecaefceeb0fcf0b2fcf2b4fcf4b6fcf6b8fcf7b9fcf9bbfcfbbdfcfdbf")),ow=kc(Vb("00000401000501010601010802010a02020c02020e03021004031204031405041706041907051b08051d09061f0a07220b07240c08260d08290e092b10092d110a30120a32140b34150b37160b39180c3c190c3e1b0c411c0c431e0c451f0c48210c4a230c4c240c4f260c51280b53290b552b0b572d0b592f0a5b310a5c320a5e340a5f3609613809623909633b09643d09653e0966400a67420a68440a68450a69470b6a490b6a4a0c6b4c0c6b4d0d6c4f0d6c510e6c520e6d540f6d550f6d57106e59106e5a116e5c126e5d126e5f136e61136e62146e64156e65156e67166e69166e6a176e6c186e6d186e6f196e71196e721a6e741a6e751b6e771c6d781c6d7a1d6d7c1d6d7d1e6d7f1e6c801f6c82206c84206b85216b87216b88226a8a226a8c23698d23698f24699025689225689326679526679727669827669a28659b29649d29649f2a63a02a63a22b62a32c61a52c60a62d60a82e5fa92e5eab2f5ead305dae305cb0315bb1325ab3325ab43359b63458b73557b93556ba3655bc3754bd3853bf3952c03a51c13a50c33b4fc43c4ec63d4dc73e4cc83f4bca404acb4149cc4248ce4347cf4446d04545d24644d34743d44842d54a41d74b3fd84c3ed94d3dda4e3cdb503bdd513ade5238df5337e05536e15635e25734e35933e45a31e55c30e65d2fe75e2ee8602de9612bea632aeb6429eb6628ec6726ed6925ee6a24ef6c23ef6e21f06f20f1711ff1731df2741cf3761bf37819f47918f57b17f57d15f67e14f68013f78212f78410f8850ff8870ef8890cf98b0bf98c0af98e09fa9008fa9207fa9407fb9606fb9706fb9906fb9b06fb9d07fc9f07fca108fca309fca50afca60cfca80dfcaa0ffcac11fcae12fcb014fcb216fcb418fbb61afbb81dfbba1ffbbc21fbbe23fac026fac228fac42afac62df9c72ff9c932f9cb35f8cd37f8cf3af7d13df7d340f6d543f6d746f5d949f5db4cf4dd4ff4df53f4e156f3e35af3e55df2e661f2e865f2ea69f1ec6df1ed71f1ef75f1f179f2f27df2f482f3f586f3f68af4f88ef5f992f6fa96f8fb9af9fc9dfafda1fcffa4")),uw=kc(Vb("0d088710078813078916078a19068c1b068d1d068e20068f2206902406912605912805922a05932c05942e05952f059631059733059735049837049938049a3a049a3c049b3e049c3f049c41049d43039e44039e46039f48039f4903a04b03a14c02a14e02a25002a25102a35302a35502a45601a45801a45901a55b01a55c01a65e01a66001a66100a76300a76400a76600a76700a86900a86a00a86c00a86e00a86f00a87100a87201a87401a87501a87701a87801a87a02a87b02a87d03a87e03a88004a88104a78305a78405a78606a68707a68808a68a09a58b0aa58d0ba58e0ca48f0da4910ea3920fa39410a29511a19613a19814a099159f9a169f9c179e9d189d9e199da01a9ca11b9ba21d9aa31e9aa51f99a62098a72197a82296aa2395ab2494ac2694ad2793ae2892b02991b12a90b22b8fb32c8eb42e8db52f8cb6308bb7318ab83289ba3388bb3488bc3587bd3786be3885bf3984c03a83c13b82c23c81c33d80c43e7fc5407ec6417dc7427cc8437bc9447aca457acb4679cc4778cc4977cd4a76ce4b75cf4c74d04d73d14e72d24f71d35171d45270d5536fd5546ed6556dd7566cd8576bd9586ada5a6ada5b69db5c68dc5d67dd5e66de5f65de6164df6263e06363e16462e26561e26660e3685fe4695ee56a5de56b5de66c5ce76e5be76f5ae87059e97158e97257ea7457eb7556eb7655ec7754ed7953ed7a52ee7b51ef7c51ef7e50f07f4ff0804ef1814df1834cf2844bf3854bf3874af48849f48948f58b47f58c46f68d45f68f44f79044f79143f79342f89441f89540f9973ff9983ef99a3efa9b3dfa9c3cfa9e3bfb9f3afba139fba238fca338fca537fca636fca835fca934fdab33fdac33fdae32fdaf31fdb130fdb22ffdb42ffdb52efeb72dfeb82cfeba2cfebb2bfebd2afebe2afec029fdc229fdc328fdc527fdc627fdc827fdca26fdcb26fccd25fcce25fcd025fcd225fbd324fbd524fbd724fad824fada24f9dc24f9dd25f8df25f8e125f7e225f7e425f6e626f6e826f5e926f5eb27f4ed27f3ee27f3f027f2f227f1f426f1f525f0f724f0f921")),aw=function(t){return function(){return t}},cw=Math.abs,sw=Math.atan2,fw=Math.cos,lw=Math.max,hw=Math.min,pw=Math.sin,dw=Math.sqrt,vw=1e-12,gw=Math.PI,yw=gw/2,_w=2*gw,mw=function(){function t(){var t,s,f=+n.apply(this,arguments),l=+e.apply(this,arguments),h=o.apply(this,arguments)-yw,p=u.apply(this,arguments)-yw,d=cw(p-h),v=p>h;if(c||(c=t=Oe()),l<f&&(s=l,l=f,f=s),l>vw)if(d>_w-vw)c.moveTo(l*fw(h),l*pw(h)),c.arc(0,0,l,h,p,!v),f>vw&&(c.moveTo(f*fw(p),f*pw(p)),c.arc(0,0,f,p,h,v));else{var g,y,_=h,m=p,x=h,b=p,w=d,M=d,T=a.apply(this,arguments)/2,N=T>vw&&(i?+i.apply(this,arguments):dw(f*f+l*l)),k=hw(cw(l-f)/2,+r.apply(this,arguments)),S=k,A=k;if(N>vw){var E=Ec(N/f*pw(T)),C=Ec(N/l*pw(T));(w-=2*E)>vw?(E*=v?1:-1,x+=E,b-=E):(w=0,x=b=(h+p)/2),(M-=2*C)>vw?(C*=v?1:-1,_+=C,m-=C):(M=0,_=m=(h+p)/2)}var z=l*fw(_),P=l*pw(_),R=f*fw(b),L=f*pw(b);if(k>vw){var D=l*fw(m),q=l*pw(m),U=f*fw(x),O=f*pw(x);if(d<gw){var F=w>vw?Dc(z,P,U,O,D,q,R,L):[R,L],Y=z-F[0],I=P-F[1],H=D-F[0],B=q-F[1],j=1/pw(Ac((Y*H+I*B)/(dw(Y*Y+I*I)*dw(H*H+B*B)))/2),X=dw(F[0]*F[0]+F[1]*F[1]);S=hw(k,(f-X)/(j-1)),A=hw(k,(l-X)/(j+1))}}M>vw?A>vw?(g=qc(U,O,z,P,l,A,v),y=qc(D,q,R,L,l,A,v),c.moveTo(g.cx+g.x01,g.cy+g.y01),A<k?c.arc(g.cx,g.cy,A,sw(g.y01,g.x01),sw(y.y01,y.x01),!v):(c.arc(g.cx,g.cy,A,sw(g.y01,g.x01),sw(g.y11,g.x11),!v),c.arc(0,0,l,sw(g.cy+g.y11,g.cx+g.x11),sw(y.cy+y.y11,y.cx+y.x11),!v),c.arc(y.cx,y.cy,A,sw(y.y11,y.x11),sw(y.y01,y.x01),!v))):(c.moveTo(z,P),c.arc(0,0,l,_,m,!v)):c.moveTo(z,P),f>vw&&w>vw?S>vw?(g=qc(R,L,D,q,f,-S,v),y=qc(z,P,U,O,f,-S,v),c.lineTo(g.cx+g.x01,g.cy+g.y01),S<k?c.arc(g.cx,g.cy,S,sw(g.y01,g.x01),sw(y.y01,y.x01),!v):(c.arc(g.cx,g.cy,S,sw(g.y01,g.x01),sw(g.y11,g.x11),!v),c.arc(0,0,f,sw(g.cy+g.y11,g.cx+g.x11),sw(y.cy+y.y11,y.cx+y.x11),v),c.arc(y.cx,y.cy,S,sw(y.y11,y.x11),sw(y.y01,y.x01),!v))):c.arc(0,0,f,b,x,v):c.lineTo(R,L)}else c.moveTo(0,0);if(c.closePath(),t)return c=null,t+""||null}var n=Cc,e=zc,r=aw(0),i=null,o=Pc,u=Rc,a=Lc,c=null;return t.centroid=function(){var t=(+n.apply(this,arguments)+ +e.apply(this,arguments))/2,r=(+o.apply(this,arguments)+ +u.apply(this,arguments))/2-gw/2;return[fw(r)*t,pw(r)*t]},t.innerRadius=function(e){return arguments.length?(n="function"==typeof e?e:aw(+e),t):n},t.outerRadius=function(n){return arguments.length?(e="function"==typeof n?n:aw(+n),t):e},t.cornerRadius=function(n){return arguments.length?(r="function"==typeof n?n:aw(+n),t):r},t.padRadius=function(n){return arguments.length?(i=null==n?null:"function"==typeof n?n:aw(+n),t):i},t.startAngle=function(n){return arguments.length?(o="function"==typeof n?n:aw(+n),t):o},t.endAngle=function(n){return arguments.length?(u="function"==typeof n?n:aw(+n),t):u},t.padAngle=function(n){return arguments.length?(a="function"==typeof n?n:aw(+n),t):a},t.context=function(n){return arguments.length?(c=null==n?null:n,t):c},t};Uc.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;default:this._context.lineTo(t,n)}}};var xw=function(t){return new Uc(t)},bw=function(){function t(t){var a,c,s,f=t.length,l=!1;for(null==i&&(u=o(s=Oe())),a=0;a<=f;++a)!(a<f&&r(c=t[a],a,t))===l&&((l=!l)?u.lineStart():u.lineEnd()),l&&u.point(+n(c,a,t),+e(c,a,t));if(s)return u=null,s+""||null}var n=Oc,e=Fc,r=aw(!0),i=null,o=xw,u=null;return t.x=function(e){return arguments.length?(n="function"==typeof e?e:aw(+e),t):n},t.y=function(n){return arguments.length?(e="function"==typeof n?n:aw(+n),t):e},t.defined=function(n){return arguments.length?(r="function"==typeof n?n:aw(!!n),t):r},t.curve=function(n){return arguments.length?(o=n,null!=i&&(u=o(i)),t):o},t.context=function(n){return arguments.length?(null==n?i=u=null:u=o(i=n),t):i},t},ww=function(){function t(t){var n,f,l,h,p,d=t.length,v=!1,g=new Array(d),y=new Array(d);for(null==a&&(s=c(p=Oe())),n=0;n<=d;++n){if(!(n<d&&u(h=t[n],n,t))===v)if(v=!v)f=n,s.areaStart(),s.lineStart();else{for(s.lineEnd(),s.lineStart(),l=n-1;l>=f;--l)s.point(g[l],y[l]);s.lineEnd(),s.areaEnd()}v&&(g[n]=+e(h,n,t),y[n]=+i(h,n,t),s.point(r?+r(h,n,t):g[n],o?+o(h,n,t):y[n]))}if(p)return s=null,p+""||null}function n(){return bw().defined(u).curve(c).context(a)}var e=Oc,r=null,i=aw(0),o=Fc,u=aw(!0),a=null,c=xw,s=null;return t.x=function(n){return arguments.length?(e="function"==typeof n?n:aw(+n),r=null,t):e},t.x0=function(n){return arguments.length?(e="function"==typeof n?n:aw(+n),t):e},t.x1=function(n){return arguments.length?(r=null==n?null:"function"==typeof n?n:aw(+n),t):r},t.y=function(n){return arguments.length?(i="function"==typeof n?n:aw(+n),o=null,t):i},t.y0=function(n){return arguments.length?(i="function"==typeof n?n:aw(+n),t):i},t.y1=function(n){return arguments.length?(o=null==n?null:"function"==typeof n?n:aw(+n),t):o},t.lineX0=t.lineY0=function(){return n().x(e).y(i)},t.lineY1=function(){return n().x(e).y(o)},t.lineX1=function(){return n().x(r).y(i)},t.defined=function(n){return arguments.length?(u="function"==typeof n?n:aw(!!n),t):u},t.curve=function(n){return arguments.length?(c=n,null!=a&&(s=c(a)),t):c},t.context=function(n){return arguments.length?(null==n?a=s=null:s=c(a=n),t):a},t},Mw=function(t,n){return n<t?-1:n>t?1:n>=t?0:NaN},Tw=function(t){return t},Nw=function(){function t(t){var a,c,s,f,l,h=t.length,p=0,d=new Array(h),v=new Array(h),g=+i.apply(this,arguments),y=Math.min(_w,Math.max(-_w,o.apply(this,arguments)-g)),_=Math.min(Math.abs(y)/h,u.apply(this,arguments)),m=_*(y<0?-1:1);for(a=0;a<h;++a)(l=v[d[a]=a]=+n(t[a],a,t))>0&&(p+=l);for(null!=e?d.sort(function(t,n){return e(v[t],v[n])}):null!=r&&d.sort(function(n,e){return r(t[n],t[e])}),a=0,s=p?(y-h*m)/p:0;a<h;++a,g=f)c=d[a],l=v[c],f=g+(l>0?l*s:0)+m,v[c]={data:t[c],index:a,value:l,startAngle:g,endAngle:f,padAngle:_};return v}var n=Tw,e=Mw,r=null,i=aw(0),o=aw(_w),u=aw(0);return t.value=function(e){return arguments.length?(n="function"==typeof e?e:aw(+e),t):n},t.sortValues=function(n){return arguments.length?(e=n,r=null,t):e},
t.sort=function(n){return arguments.length?(r=n,e=null,t):r},t.startAngle=function(n){return arguments.length?(i="function"==typeof n?n:aw(+n),t):i},t.endAngle=function(n){return arguments.length?(o="function"==typeof n?n:aw(+n),t):o},t.padAngle=function(n){return arguments.length?(u="function"==typeof n?n:aw(+n),t):u},t},kw=Ic(xw);Yc.prototype={areaStart:function(){this._curve.areaStart()},areaEnd:function(){this._curve.areaEnd()},lineStart:function(){this._curve.lineStart()},lineEnd:function(){this._curve.lineEnd()},point:function(t,n){this._curve.point(n*Math.sin(t),n*-Math.cos(t))}};var Sw=function(){return Hc(bw().curve(kw))},Aw=function(){var t=ww().curve(kw),n=t.curve,e=t.lineX0,r=t.lineX1,i=t.lineY0,o=t.lineY1;return t.angle=t.x,delete t.x,t.startAngle=t.x0,delete t.x0,t.endAngle=t.x1,delete t.x1,t.radius=t.y,delete t.y,t.innerRadius=t.y0,delete t.y0,t.outerRadius=t.y1,delete t.y1,t.lineStartAngle=function(){return Hc(e())},delete t.lineX0,t.lineEndAngle=function(){return Hc(r())},delete t.lineX1,t.lineInnerRadius=function(){return Hc(i())},delete t.lineY0,t.lineOuterRadius=function(){return Hc(o())},delete t.lineY1,t.curve=function(t){return arguments.length?n(Ic(t)):n()._curve},t},Ew=function(t,n){return[(n=+n)*Math.cos(t-=Math.PI/2),n*Math.sin(t)]},Cw=Array.prototype.slice,zw={draw:function(t,n){var e=Math.sqrt(n/gw);t.moveTo(e,0),t.arc(0,0,e,0,_w)}},Pw={draw:function(t,n){var e=Math.sqrt(n/5)/2;t.moveTo(-3*e,-e),t.lineTo(-e,-e),t.lineTo(-e,-3*e),t.lineTo(e,-3*e),t.lineTo(e,-e),t.lineTo(3*e,-e),t.lineTo(3*e,e),t.lineTo(e,e),t.lineTo(e,3*e),t.lineTo(-e,3*e),t.lineTo(-e,e),t.lineTo(-3*e,e),t.closePath()}},Rw=Math.sqrt(1/3),Lw=2*Rw,Dw={draw:function(t,n){var e=Math.sqrt(n/Lw),r=e*Rw;t.moveTo(0,-e),t.lineTo(r,0),t.lineTo(0,e),t.lineTo(-r,0),t.closePath()}},qw=Math.sin(gw/10)/Math.sin(7*gw/10),Uw=Math.sin(_w/10)*qw,Ow=-Math.cos(_w/10)*qw,Fw={draw:function(t,n){var e=Math.sqrt(.8908130915292852*n),r=Uw*e,i=Ow*e;t.moveTo(0,-e),t.lineTo(r,i);for(var o=1;o<5;++o){var u=_w*o/5,a=Math.cos(u),c=Math.sin(u);t.lineTo(c*e,-a*e),t.lineTo(a*r-c*i,c*r+a*i)}t.closePath()}},Yw={draw:function(t,n){var e=Math.sqrt(n),r=-e/2;t.rect(r,r,e,e)}},Iw=Math.sqrt(3),Hw={draw:function(t,n){var e=-Math.sqrt(n/(3*Iw));t.moveTo(0,2*e),t.lineTo(-Iw*e,-e),t.lineTo(Iw*e,-e),t.closePath()}},Bw=-.5,jw=Math.sqrt(3)/2,Xw=1/Math.sqrt(12),Ww=3*(Xw/2+1),Vw={draw:function(t,n){var e=Math.sqrt(n/Ww),r=e/2,i=e*Xw,o=r,u=e*Xw+e,a=-o,c=u;t.moveTo(r,i),t.lineTo(o,u),t.lineTo(a,c),t.lineTo(Bw*r-jw*i,jw*r+Bw*i),t.lineTo(Bw*o-jw*u,jw*o+Bw*u),t.lineTo(Bw*a-jw*c,jw*a+Bw*c),t.lineTo(Bw*r+jw*i,Bw*i-jw*r),t.lineTo(Bw*o+jw*u,Bw*u-jw*o),t.lineTo(Bw*a+jw*c,Bw*c-jw*a),t.closePath()}},$w=[zw,Pw,Dw,Yw,Fw,Hw,Vw],Zw=function(){function t(){var t;if(r||(r=t=Oe()),n.apply(this,arguments).draw(r,+e.apply(this,arguments)),t)return r=null,t+""||null}var n=aw(zw),e=aw(64),r=null;return t.type=function(e){return arguments.length?(n="function"==typeof e?e:aw(e),t):n},t.size=function(n){return arguments.length?(e="function"==typeof n?n:aw(+n),t):e},t.context=function(n){return arguments.length?(r=null==n?null:n,t):r},t},Gw=function(){};Kc.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){switch(this._point){case 3:Jc(this,this._x1,this._y1);case 2:this._context.lineTo(this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;break;case 2:this._point=3,this._context.lineTo((5*this._x0+this._x1)/6,(5*this._y0+this._y1)/6);default:Jc(this,t,n)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=n}};var Qw=function(t){return new Kc(t)};ts.prototype={areaStart:Gw,areaEnd:Gw,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._y0=this._y1=this._y2=this._y3=this._y4=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x2,this._y2),this._context.closePath();break;case 2:this._context.moveTo((this._x2+2*this._x3)/3,(this._y2+2*this._y3)/3),this._context.lineTo((this._x3+2*this._x2)/3,(this._y3+2*this._y2)/3),this._context.closePath();break;case 3:this.point(this._x2,this._y2),this.point(this._x3,this._y3),this.point(this._x4,this._y4)}},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._x2=t,this._y2=n;break;case 1:this._point=2,this._x3=t,this._y3=n;break;case 2:this._point=3,this._x4=t,this._y4=n,this._context.moveTo((this._x0+4*this._x1+t)/6,(this._y0+4*this._y1+n)/6);break;default:Jc(this,t,n)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=n}};var Jw=function(t){return new ts(t)};ns.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3;var e=(this._x0+4*this._x1+t)/6,r=(this._y0+4*this._y1+n)/6;this._line?this._context.lineTo(e,r):this._context.moveTo(e,r);break;case 3:this._point=4;default:Jc(this,t,n)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=n}};var Kw=function(t){return new ns(t)};es.prototype={lineStart:function(){this._x=[],this._y=[],this._basis.lineStart()},lineEnd:function(){var t=this._x,n=this._y,e=t.length-1;if(e>0)for(var r,i=t[0],o=n[0],u=t[e]-i,a=n[e]-o,c=-1;++c<=e;)r=c/e,this._basis.point(this._beta*t[c]+(1-this._beta)*(i+r*u),this._beta*n[c]+(1-this._beta)*(o+r*a));this._x=this._y=null,this._basis.lineEnd()},point:function(t,n){this._x.push(+t),this._y.push(+n)}};var tM=function t(n){function e(t){return 1===n?new Kc(t):new es(t,n)}return e.beta=function(n){return t(+n)},e}(.85);is.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:rs(this,this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2,this._x1=t,this._y1=n;break;case 2:this._point=3;default:rs(this,t,n)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var nM=function t(n){function e(t){return new is(t,n)}return e.tension=function(n){return t(+n)},e}(0);os.prototype={areaStart:Gw,areaEnd:Gw,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._x3=t,this._y3=n;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=n);break;case 2:this._point=3,this._x5=t,this._y5=n;break;default:rs(this,t,n)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var eM=function t(n){function e(t){return new os(t,n)}return e.tension=function(n){return t(+n)},e}(0);us.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:rs(this,t,n)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var rM=function t(n){function e(t){return new us(t,n)}return e.tension=function(n){return t(+n)},e}(0);cs.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:this.point(this._x2,this._y2)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){if(t=+t,n=+n,this._point){var e=this._x2-t,r=this._y2-n;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(e*e+r*r,this._alpha))}switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;break;case 2:this._point=3;default:as(this,t,n)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var iM=function t(n){function e(t){return n?new cs(t,n):new is(t,0)}return e.alpha=function(n){return t(+n)},e}(.5);ss.prototype={areaStart:Gw,areaEnd:Gw,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,n){if(t=+t,n=+n,this._point){var e=this._x2-t,r=this._y2-n;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(e*e+r*r,this._alpha))}switch(this._point){case 0:this._point=1,this._x3=t,this._y3=n;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=n);break;case 2:this._point=3,this._x5=t,this._y5=n;break;default:as(this,t,n)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var oM=function t(n){function e(t){return n?new ss(t,n):new os(t,0)}return e.alpha=function(n){return t(+n)},e}(.5);fs.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){if(t=+t,n=+n,this._point){var e=this._x2-t,r=this._y2-n;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(e*e+r*r,this._alpha))}switch(this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:as(this,t,n)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var uM=function t(n){function e(t){return n?new fs(t,n):new us(t,0)}return e.alpha=function(n){return t(+n)},e}(.5);ls.prototype={areaStart:Gw,areaEnd:Gw,lineStart:function(){this._point=0},lineEnd:function(){this._point&&this._context.closePath()},point:function(t,n){t=+t,n=+n,this._point?this._context.lineTo(t,n):(this._point=1,this._context.moveTo(t,n))}};var aM=function(t){return new ls(t)};gs.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=this._t0=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x1,this._y1);break;case 3:vs(this,this._t0,ds(this,this._t0))}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){var e=NaN;if(t=+t,n=+n,t!==this._x1||n!==this._y1){switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;break;case 2:this._point=3,vs(this,ds(this,e=ps(this,t,n)),e);break;default:vs(this,this._t0,e=ps(this,t,n))}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=n,this._t0=e}}},(ys.prototype=Object.create(gs.prototype)).point=function(t,n){gs.prototype.point.call(this,n,t)},_s.prototype={moveTo:function(t,n){this._context.moveTo(n,t)},closePath:function(){this._context.closePath()},lineTo:function(t,n){this._context.lineTo(n,t)},bezierCurveTo:function(t,n,e,r,i,o){this._context.bezierCurveTo(n,t,r,e,o,i)}},bs.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x=[],this._y=[]},lineEnd:function(){var t=this._x,n=this._y,e=t.length;if(e)if(this._line?this._context.lineTo(t[0],n[0]):this._context.moveTo(t[0],n[0]),2===e)this._context.lineTo(t[1],n[1]);else for(var r=ws(t),i=ws(n),o=0,u=1;u<e;++o,++u)this._context.bezierCurveTo(r[0][o],i[0][o],r[1][o],i[1][o],t[u],n[u]);(this._line||0!==this._line&&1===e)&&this._context.closePath(),this._line=1-this._line,this._x=this._y=null},point:function(t,n){this._x.push(+t),this._y.push(+n)}};var cM=function(t){return new bs(t)};Ms.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x=this._y=NaN,this._point=0},lineEnd:function(){0<this._t&&this._t<1&&2===this._point&&this._context.lineTo(this._x,this._y),(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line>=0&&(this._t=1-this._t,this._line=1-this._line)},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;default:if(this._t<=0)this._context.lineTo(this._x,n),this._context.lineTo(t,n);else{var e=this._x*(1-this._t)+t*this._t;this._context.lineTo(e,this._y),this._context.lineTo(e,n)}}this._x=t,this._y=n}};var sM=function(t){return new Ms(t,.5)},fM=function(t,n){if((i=t.length)>1)for(var e,r,i,o=1,u=t[n[0]],a=u.length;o<i;++o)for(r=u,u=t[n[o]],e=0;e<a;++e)u[e][1]+=u[e][0]=isNaN(r[e][1])?r[e][0]:r[e][1]},lM=function(t){for(var n=t.length,e=new Array(n);--n>=0;)e[n]=n;return e},hM=function(){function t(t){var o,u,a=n.apply(this,arguments),c=t.length,s=a.length,f=new Array(s);for(o=0;o<s;++o){for(var l,h=a[o],p=f[o]=new Array(c),d=0;d<c;++d)p[d]=l=[0,+i(t[d],h,d,t)],l.data=t[d];p.key=h}for(o=0,u=e(f);o<s;++o)f[u[o]].index=o;return r(f,u),f}var n=aw([]),e=lM,r=fM,i=ks;return t.keys=function(e){return arguments.length?(n="function"==typeof e?e:aw(Cw.call(e)),t):n},t.value=function(n){return arguments.length?(i="function"==typeof n?n:aw(+n),t):i},t.order=function(n){return arguments.length?(e=null==n?lM:"function"==typeof n?n:aw(Cw.call(n)),t):e},t.offset=function(n){return arguments.length?(r=null==n?fM:n,t):r},t},pM=function(t,n){if((r=t.length)>0){for(var e,r,i,o=0,u=t[0].length;o<u;++o){for(i=e=0;e<r;++e)i+=t[e][o][1]||0;if(i)for(e=0;e<r;++e)t[e][o][1]/=i}fM(t,n)}},dM=function(t,n){if((a=t.length)>1)for(var e,r,i,o,u,a,c=0,s=t[n[0]].length;c<s;++c)for(o=u=0,e=0;e<a;++e)(i=(r=t[n[e]][c])[1]-r[0])>=0?(r[0]=o,r[1]=o+=i):i<0?(r[1]=u,r[0]=u+=i):r[0]=o},vM=function(t,n){if((e=t.length)>0){for(var e,r=0,i=t[n[0]],o=i.length;r<o;++r){for(var u=0,a=0;u<e;++u)a+=t[u][r][1]||0;i[r][1]+=i[r][0]=-a/2}fM(t,n)}},gM=function(t,n){if((i=t.length)>0&&(r=(e=t[n[0]]).length)>0){for(var e,r,i,o=0,u=1;u<r;++u){for(var a=0,c=0,s=0;a<i;++a){for(var f=t[n[a]],l=f[u][1]||0,h=f[u-1][1]||0,p=(l-h)/2,d=0;d<a;++d){var v=t[n[d]];p+=(v[u][1]||0)-(v[u-1][1]||0)}c+=l,s+=p*l}e[u-1][1]+=e[u-1][0]=o,c&&(o-=s/c)}e[u-1][1]+=e[u-1][0]=o,fM(t,n)}},yM=function(t){var n=t.map(Ss);return lM(t).sort(function(t,e){return n[t]-n[e]})},_M=function(t){return yM(t).reverse()},mM=function(t){var n,e,r=t.length,i=t.map(Ss),o=lM(t).sort(function(t,n){return i[n]-i[t]}),u=0,a=0,c=[],s=[];for(n=0;n<r;++n)e=o[n],u<a?(u+=i[e],c.push(e)):(a+=i[e],s.push(e));return s.reverse().concat(c)},xM=function(t){return lM(t).reverse()},bM=function(t){return function(){return t}};Cs.prototype={constructor:Cs,insert:function(t,n){var e,r,i;if(t){if(n.P=t,n.N=t.N,t.N&&(t.N.P=n),t.N=n,t.R){for(t=t.R;t.L;)t=t.L;t.L=n}else t.R=n;e=t}else this._?(t=Ls(this._),n.P=null,n.N=t,t.P=t.L=n,e=t):(n.P=n.N=null,this._=n,e=null);for(n.L=n.R=null,n.U=e,n.C=!0,t=n;e&&e.C;)r=e.U,e===r.L?(i=r.R,i&&i.C?(e.C=i.C=!1,r.C=!0,t=r):(t===e.R&&(Ps(this,e),t=e,e=t.U),e.C=!1,r.C=!0,Rs(this,r))):(i=r.L,i&&i.C?(e.C=i.C=!1,r.C=!0,t=r):(t===e.L&&(Rs(this,e),t=e,e=t.U),e.C=!1,r.C=!0,Ps(this,r))),e=t.U;this._.C=!1},remove:function(t){t.N&&(t.N.P=t.P),t.P&&(t.P.N=t.N),t.N=t.P=null;var n,e,r,i=t.U,o=t.L,u=t.R;if(e=o?u?Ls(u):o:u,i?i.L===t?i.L=e:i.R=e:this._=e,o&&u?(r=e.C,e.C=t.C,e.L=o,o.U=e,e!==u?(i=e.U,e.U=t.U,t=e.R,i.L=t,e.R=u,u.U=e):(e.U=i,i=e,t=e.R)):(r=t.C,t=e),t&&(t.U=i),!r){if(t&&t.C)return void(t.C=!1);do{if(t===this._)break;if(t===i.L){if(n=i.R,n.C&&(n.C=!1,i.C=!0,Ps(this,i),n=i.R),n.L&&n.L.C||n.R&&n.R.C){n.R&&n.R.C||(n.L.C=!1,n.C=!0,Rs(this,n),n=i.R),n.C=i.C,i.C=n.R.C=!1,Ps(this,i),t=this._;break}}else if(n=i.L,n.C&&(n.C=!1,i.C=!0,Rs(this,i),n=i.L),n.L&&n.L.C||n.R&&n.R.C){n.L&&n.L.C||(n.R.C=!1,n.C=!0,Ps(this,n),n=i.L),n.C=i.C,i.C=n.L.C=!1,Rs(this,i),t=this._;break}n.C=!0,t=i,i=i.U}while(!t.C);t&&(t.C=!1)}}};var wM,MM,TM,NM,kM,SM=[],AM=[],EM=1e-6,CM=1e-12;uf.prototype={constructor:uf,polygons:function(){var t=this.edges;return this.cells.map(function(n){var e=n.halfedges.map(function(e){return Bs(n,t[e])});return e.data=n.site.data,e})},triangles:function(){var t=[],n=this.edges;return this.cells.forEach(function(e,r){if(o=(i=e.halfedges).length)for(var i,o,u,a=e.site,c=-1,s=n[i[o-1]],f=s.left===a?s.right:s.left;++c<o;)u=f,s=n[i[c]],f=s.left===a?s.right:s.left,u&&f&&r<u.index&&r<f.index&&rf(a,u,f)<0&&t.push([a.data,u.data,f.data])}),t},links:function(){return this.edges.filter(function(t){return t.right}).map(function(t){return{source:t.left.data,target:t.right.data}})},find:function(t,n,e){for(var r,i,o=this,u=o._found||0,a=o.cells.length;!(i=o.cells[u]);)if(++u>=a)return null;var c=t-i.site[0],s=n-i.site[1],f=c*c+s*s;do{i=o.cells[r=u],u=null,i.halfedges.forEach(function(e){var r=o.edges[e],a=r.left;if(a!==i.site&&a||(a=r.right)){var c=t-a[0],s=n-a[1],l=c*c+s*s;l<f&&(f=l,u=a.index)}})}while(null!==u);return o._found=r,null==e||f<=e*e?i.site:null}};var zM=function(){function t(t){return new uf(t.map(function(r,i){var o=[Math.round(n(r,i,t)/EM)*EM,Math.round(e(r,i,t)/EM)*EM];return o.index=i,o.data=r,o}),r)}var n=As,e=Es,r=null;return t.polygons=function(n){return t(n).polygons()},t.links=function(n){return t(n).links()},t.triangles=function(n){return t(n).triangles()},t.x=function(e){return arguments.length?(n="function"==typeof e?e:bM(+e),t):n},t.y=function(n){return arguments.length?(e="function"==typeof n?n:bM(+n),t):e},t.extent=function(n){return arguments.length?(r=null==n?null:[[+n[0][0],+n[0][1]],[+n[1][0],+n[1][1]]],t):r&&[[r[0][0],r[0][1]],[r[1][0],r[1][1]]]},t.size=function(n){return arguments.length?(r=null==n?null:[[0,0],[+n[0],+n[1]]],t):r&&[r[1][0]-r[0][0],r[1][1]-r[0][1]]},t},PM=function(t){return function(){return t}};cf.prototype={constructor:cf,scale:function(t){return 1===t?this:new cf(this.k*t,this.x,this.y)},translate:function(t,n){return 0===t&0===n?this:new cf(this.k,this.x+this.k*t,this.y+this.k*n)},apply:function(t){return[t[0]*this.k+this.x,t[1]*this.k+this.y]},applyX:function(t){return t*this.k+this.x},applyY:function(t){return t*this.k+this.y},invert:function(t){return[(t[0]-this.x)/this.k,(t[1]-this.y)/this.k]},invertX:function(t){return(t-this.x)/this.k},invertY:function(t){return(t-this.y)/this.k},rescaleX:function(t){return t.copy().domain(t.range().map(this.invertX,this).map(t.invert,t))},rescaleY:function(t){return t.copy().domain(t.range().map(this.invertY,this).map(t.invert,t))},toString:function(){return"translate("+this.x+","+this.y+") scale("+this.k+")"}};var RM=new cf(1,0,0);sf.prototype=cf.prototype;var LM=function(){t.event.preventDefault(),t.event.stopImmediatePropagation()},DM=function(){function n(t){t.property("__zoom",pf).on("wheel.zoom",c).on("mousedown.zoom",s).on("dblclick.zoom",f).filter(b).on("touchstart.zoom",l).on("touchmove.zoom",h).on("touchend.zoom touchcancel.zoom",p).style("touch-action","none").style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}function e(t,n){return n=Math.max(w[0],Math.min(w[1],n)),n===t.k?t:new cf(n,t.x,t.y)}function r(t,n,e){var r=n[0]-e[0]*t.k,i=n[1]-e[1]*t.k;return r===t.x&&i===t.y?t:new cf(t.k,r,i)}function i(t){return[(+t[0][0]+ +t[1][0])/2,(+t[0][1]+ +t[1][1])/2]}function o(t,n,e){t.on("start.zoom",function(){u(this,arguments).start()}).on("interrupt.zoom end.zoom",function(){u(this,arguments).end()}).tween("zoom",function(){var t=this,r=arguments,o=u(t,r),a=_.apply(t,r),c=e||i(a),s=Math.max(a[1][0]-a[0][0],a[1][1]-a[0][1]),f=t.__zoom,l="function"==typeof n?n.apply(t,r):n,h=N(f.invert(c).concat(s/f.k),l.invert(c).concat(s/l.k));return function(t){if(1===t)t=l;else{var n=h(t),e=s/n[2];t=new cf(e,c[0]-n[0]*e,c[1]-n[1]*e)}o.zoom(null,t)}})}function u(t,n){for(var e,r=0,i=k.length;r<i;++r)if((e=k[r]).that===t)return e;return new a(t,n)}function a(t,n){this.that=t,this.args=n,this.index=-1,this.active=0,this.extent=_.apply(t,n)}function c(){function t(){n.wheel=null,n.end()}if(y.apply(this,arguments)){var n=u(this,arguments),i=this.__zoom,o=Math.max(w[0],Math.min(w[1],i.k*Math.pow(2,x.apply(this,arguments)))),a=Al(this);if(n.wheel)n.mouse[0][0]===a[0]&&n.mouse[0][1]===a[1]||(n.mouse[1]=i.invert(n.mouse[0]=a)),clearTimeout(n.wheel);else{if(i.k===o)return;n.mouse=[a,i.invert(a)],Gp(this),n.start()}LM(),n.wheel=setTimeout(t,E),n.zoom("mouse",m(r(e(i,o),n.mouse[0],n.mouse[1]),n.extent,M))}}function s(){function n(){if(LM(),!i.moved){var n=t.event.clientX-c,e=t.event.clientY-s;i.moved=n*n+e*e>z}i.zoom("mouse",m(r(i.that.__zoom,i.mouse[0]=Al(i.that),i.mouse[1]),i.extent,M))}function e(){o.on("mousemove.zoom mouseup.zoom",null),xt(t.event.view,i.moved),LM(),i.end()}if(!v&&y.apply(this,arguments)){var i=u(this,arguments),o=fh(t.event.view).on("mousemove.zoom",n,!0).on("mouseup.zoom",e,!0),a=Al(this),c=t.event.clientX,s=t.event.clientY;vh(t.event.view),ff(),i.mouse=[a,this.__zoom.invert(a)],Gp(this),i.start()}}function f(){if(y.apply(this,arguments)){var i=this.__zoom,u=Al(this),a=i.invert(u),c=i.k*(t.event.shiftKey?.5:2),s=m(r(e(i,c),u,a),_.apply(this,arguments),M);LM(),T>0?fh(this).transition().duration(T).call(o,s,u):fh(this).call(n.transform,s)}}function l(){if(y.apply(this,arguments)){var n,e,r,i,o=u(this,arguments),a=t.event.changedTouches,c=a.length;for(ff(),e=0;e<c;++e)r=a[e],i=hh(this,a,r.identifier),i=[i,this.__zoom.invert(i),r.identifier],o.touch0?o.touch1||(o.touch1=i):(o.touch0=i,n=!0);if(d&&(d=clearTimeout(d),!o.touch1))return o.end(),void((i=fh(this).on("dblclick.zoom"))&&i.apply(this,arguments));n&&(d=setTimeout(function(){d=null},A),Gp(this),o.start())}}function h(){var n,i,o,a,c=u(this,arguments),s=t.event.changedTouches,f=s.length;for(LM(),d&&(d=clearTimeout(d)),n=0;n<f;++n)i=s[n],o=hh(this,s,i.identifier),c.touch0&&c.touch0[2]===i.identifier?c.touch0[0]=o:c.touch1&&c.touch1[2]===i.identifier&&(c.touch1[0]=o);if(i=c.that.__zoom,c.touch1){var l=c.touch0[0],h=c.touch0[1],p=c.touch1[0],v=c.touch1[1],g=(g=p[0]-l[0])*g+(g=p[1]-l[1])*g,y=(y=v[0]-h[0])*y+(y=v[1]-h[1])*y;i=e(i,Math.sqrt(g/y)),o=[(l[0]+p[0])/2,(l[1]+p[1])/2],a=[(h[0]+v[0])/2,(h[1]+v[1])/2]}else{if(!c.touch0)return;o=c.touch0[0],a=c.touch0[1]}c.zoom("touch",m(r(i,o,a),c.extent,M))}function p(){var n,e,r=u(this,arguments),i=t.event.changedTouches,o=i.length;for(ff(),v&&clearTimeout(v),v=setTimeout(function(){v=null},A),n=0;n<o;++n)e=i[n],r.touch0&&r.touch0[2]===e.identifier?delete r.touch0:r.touch1&&r.touch1[2]===e.identifier&&delete r.touch1;r.touch1&&!r.touch0&&(r.touch0=r.touch1,delete r.touch1),r.touch0?r.touch0[1]=this.__zoom.invert(r.touch0[0]):r.end()}var d,v,y=lf,_=hf,m=gf,x=df,b=vf,w=[0,1/0],M=[[-1/0,-1/0],[1/0,1/0]],T=250,N=bp,k=[],S=g("start","zoom","end"),A=500,E=150,z=0;return n.transform=function(t,n){var e=t.selection?t.selection():t;e.property("__zoom",pf),t!==e?o(t,n):e.interrupt().each(function(){u(this,arguments).start().zoom(null,"function"==typeof n?n.apply(this,arguments):n).end()})},n.scaleBy=function(t,e){n.scaleTo(t,function(){return this.__zoom.k*("function"==typeof e?e.apply(this,arguments):e)})},n.scaleTo=function(t,o){n.transform(t,function(){var t=_.apply(this,arguments),n=this.__zoom,u=i(t),a=n.invert(u),c="function"==typeof o?o.apply(this,arguments):o;return m(r(e(n,c),u,a),t,M)})},n.translateBy=function(t,e,r){n.transform(t,function(){return m(this.__zoom.translate("function"==typeof e?e.apply(this,arguments):e,"function"==typeof r?r.apply(this,arguments):r),_.apply(this,arguments),M)})},n.translateTo=function(t,e,r){n.transform(t,function(){var t=_.apply(this,arguments),n=this.__zoom,o=i(t);return m(RM.translate(o[0],o[1]).scale(n.k).translate("function"==typeof e?-e.apply(this,arguments):-e,"function"==typeof r?-r.apply(this,arguments):-r),t,M)})},a.prototype={start:function(){return 1==++this.active&&(this.index=k.push(this)-1,this.emit("start")),this},zoom:function(t,n){return this.mouse&&"mouse"!==t&&(this.mouse[1]=n.invert(this.mouse[0])),this.touch0&&"touch"!==t&&(this.touch0[1]=n.invert(this.touch0[0])),this.touch1&&"touch"!==t&&(this.touch1[1]=n.invert(this.touch1[0])),this.that.__zoom=n,this.emit("zoom"),this},end:function(){return 0==--this.active&&(k.splice(this.index,1),this.index=-1,this.emit("end")),this},emit:function(t){C(new af(n,t,this.that.__zoom),S.apply,S,[t,this.that,this.args])}},n.wheelDelta=function(t){return arguments.length?(x="function"==typeof t?t:PM(+t),n):x},n.filter=function(t){return arguments.length?(y="function"==typeof t?t:PM(!!t),n):y},n.touchable=function(t){return arguments.length?(b="function"==typeof t?t:PM(!!t),n):b},n.extent=function(t){return arguments.length?(_="function"==typeof t?t:PM([[+t[0][0],+t[0][1]],[+t[1][0],+t[1][1]]]),n):_},n.scaleExtent=function(t){return arguments.length?(w[0]=+t[0],w[1]=+t[1],n):[w[0],w[1]]},n.translateExtent=function(t){return arguments.length?(M[0][0]=+t[0][0],M[1][0]=+t[1][0],M[0][1]=+t[0][1],M[1][1]=+t[1][1],n):[[M[0][0],M[0][1]],[M[1][0],M[1][1]]]},n.constrain=function(t){return arguments.length?(m=t,n):m},n.duration=function(t){return arguments.length?(T=+t,n):T},n.interpolate=function(t){return arguments.length?(N=t,n):N},n.on=function(){var t=S.on.apply(S,arguments);return t===S?n:t},n.clickDistance=function(t){return arguments.length?(z=(t=+t)*t,n):Math.sqrt(z)},n},qM=function(t,n){var e=this.node();return e?e.getBBox?this.attr("transform",function(e,r){var i="function"==typeof t?t.call(this,e,r):t;return 0===n?i=[i,0]:1===n&&(i=[0,i]),"translate("+i[0]+","+i[1]+")"}):this.style("transform",function(e,r){var i="function"==typeof t?t.call(this,e,r):t;return 0===n?i=[i,0]:1===n&&(i=[0,i]),"translate("+i[0]+"px,"+i[1]+"px)"}):this},UM=function(t){if("string"==typeof t){var n,e={},r=t.split(/([\.#])/g);for(t=r.shift();n=r.shift();)"."==n?e.class=e.class?e.class+" "+r.shift():r.shift():"#"==n&&(e.id=r.shift());return{tag:t,attr:e}}return t},OM=function(t){var n,e;"function"==typeof t?n=t:(e=UM(t),n=_l(e.tag));var r=this.select(function(){return this.appendChild(n.apply(this,arguments))});if(e)for(var i in e.attr)r.attr(i,e.attr[i]);return r},FM=function(t,n){var e=UM(t),r=_l(e.tag),i=null==n?yf:"function"==typeof n?n:El(n),o=this.select(function(){return this.insertBefore(r.apply(this,arguments),i.apply(this,arguments)||null)});for(var u in e.attr)o.attr(u,e.attr[u]);return o},YM=function(){var t=[];return this.filter(function(){return!(t.indexOf(this.parentNode)>-1)&&(t.push(this.parentNode),!0)}).select(function(){return this.parentNode})},IM=function(t){var n,e=El(t),r=UM(t);t=_l(r.tag),n=this.select(function(){return e.apply(this,arguments)||this.appendChild(t.apply(this,arguments))});for(var i in r.attr)n.attr(i,r.attr[i]);return n},HM=function(t,n){return this.selectAll("tspan").data(function(n){return("function"==typeof t?t(n):t).map(function(t){return{line:t,parent:n}})}).enter().append("tspan").text(function(t){return t.line}).attr("x",0).attr("dy",function(t,e){return e?("function"==typeof n?n(t.parent,t.line,e):n)||15:0})},BM=function(t,n){if("string"==typeof n){console.warn("DEPRECATED: jetpack's appendMany order of arguments has changed. It's appendMany('div', data) from now on");var e=n;n=t,t=e}return this.selectAll(null).data(n).enter().append(t)},jM=function(t,n){if("object"==typeof t){for(var e in t)this.attr(e.replace(/([a-z\d])([A-Z])/g,"$1-$2").toLowerCase(),t[e]);return this}return 1==arguments.length?this.attr(t):this.attr(t,n)};_f.not=function(t){return!t},_f.run=function(t){return t()},_f.objToFn=function(t,n){return 1==arguments.length&&(n=void 0),function(e){return void 0!==t[e]?t[e]:n}};var XM=function(t,n){function e(t,n,e){return n=n.replace(/([a-z\d])([A-Z])/g,"$1-$2").toLowerCase(),~"top left bottom right padding-top padding-left padding-bottom padding-right border-top b-width border-left-width border-botto-width m border-right-width margin-top margin-left margin-bottom margin-right font-size width height stroke-width line-height margin padding border border-radius max-width min-width".indexOf(n)?t.style(n,"function"==typeof e?i(e):r(e)):t.style(n,e),t}function r(t){return t.match?t:t+"px"}function i(t){return function(){return r(t.apply(this,arguments))}}if("object"==typeof t){for(var o in t)e(this,o,t[o]);return this}return 1==arguments.length?this.style(t):e(this,t,n)},WM={A:7,a:7,B:8,b:7,C:8,c:6,D:9,d:7,E:7,e:7,F:7,f:4,G:9,g:7,H:9,h:7,I:3,i:3,J:5,j:3,K:8,k:6,L:7,l:3,M:11,m:11,N:9,n:7,O:9,o:7,P:8,p:7,Q:9,q:7,R:8,r:4,S:8,s:6,T:7,t:4,U:9,u:7,V:7,v:6,W:11,w:9,X:7,x:6,Y:7,y:6,Z:7,z:5,".":2,",":2,":":2,";":2},VM=function(t,n,e,r){function i(t){return!r&&WM[t]||WM.a}function o(t){return t.length}function u(t,n){return t-n}var a,c,s,f,l,h,p=[],d=[],v=[];return c=t.split(" "),c.forEach(function(t,n){var e=t.split("-");e.length>1?e.forEach(function(t,n){d.push(t+(n<e.length-1?"-":""))}):d.push(t+(n<c.length-1?" ":""))}),s=n||40,f=e||Math.max(3,Math.min(.5*s,.75*d.map(o).sort(u)[Math.round(d.length/2)])),l=s*WM.a,h=f*WM.a,a=0,d.forEach(function(t){var n=il(t.split("").map(i));return a+n>l&&a>h&&(p.push(v.join("")),v.length=0,a=0),a+=n,v.push(t)}),v.length&&p.push(v.join("")),p.filter(function(t){return""!==t})},$M=function(t){return"function"==typeof t?function(n,e){return t(n)<t(e)?-1:t(n)>t(e)?1:t(n)>=t(e)?0:NaN}:function(n,e){return n[t]<e[t]?-1:n[t]>e[t]?1:n[t]>=e[t]?0:NaN}},ZM=function(t){return"function"==typeof t?function(n,e){return t(e)<t(n)?-1:t(e)>t(n)?1:t(e)>=t(n)?0:NaN}:function(n,e){return e[t]<n[t]?-1:e[t]>n[t]?1:e[t]>=n[t]?0:NaN}},GM=function(t){t=t||{},t.margin=t.margin||{},["top","right","bottom","left"].forEach(function(n){t.margin[n]||0===t.margin[n]||(t.margin[n]=20)}),t.parentSel&&(t.sel=t.parentSel);var n=t.sel&&t.sel.node();return t.totalWidth=t.totalWidth||n&&n.offsetWidth||960,t.totalHeight=t.totalHeight||n&&n.offsetHeight||500,t.width=t.width||t.totalWidth-t.margin.left-t.margin.right,t.height=t.height||t.totalHeight-t.margin.top-t.margin.bottom,
t.totalWidth=t.width+t.margin.left+t.margin.right,t.totalHeight=t.height+t.margin.top+t.margin.bottom,t.sel=t.sel||fh("body"),t.sel.st({position:"relative",height:t.totalHeight,width:t.totalWidth}),t.x=t.x||Wu().range([0,t.width]),t.y=t.y||Wu().range([t.height,0]),t.xAxis=t.xAxis||d().scale(t.x),t.yAxis=t.yAxis||v().scale(t.y),t.layers=(t.layers||"s").split("").map(function(n){var e;if("s"==n)e=t.sel.append("svg").st({position:t.layers?"absolute":""}).attr("width",t.totalWidth).attr("height",t.totalHeight).append("g").attr("transform","translate("+t.margin.left+","+t.margin.top+")"),t.svg||(t.svg=e);else if("c"==n){var r=window.devicePixelRatio||1;e=t.sel.append("canvas").at({width:t.totalWidth*r,height:t.totalHeight*r}).st({width:t.totalWidth,height:t.totalHeight}).st({position:"absolute"}).node().getContext("2d"),e.scale(r,r),e.translate(t.margin.left,t.margin.top)}else"d"==n&&(e=t.sel.append("div").st({position:"absolute",left:t.margin.left,top:t.margin.top,width:t.width,height:t.height}));return e}),t},QM=function(t){return{xAxisSel:t.svg.append("g").attr("class","x axis").attr("transform","translate(0,"+t.height+")").call(t.xAxis),yAxisSel:t.svg.append("g").attr("class","y axis").call(t.yAxis)}},JM=function(t,n,e){return Math.max(t,Math.min(e,n))},KM=function(n,e,r){function i(t){e.classed("tooltip-hidden",!1).html("").appendMany("div",r).html(function(n){return n(t)}),fh(this).classed("tooltipped",!0)}function o(n){if(e.size()){var r=t.event,i=r.clientX,o=r.clientY,u=e.node().getBoundingClientRect(),a=JM(20,i-u.width/2,window.innerWidth-u.width-20),c=innerHeight>o+20+u.height?o+20:o-u.height-20;e.style("left",a+"px").style("top",c+"px")}}function u(t){e.classed("tooltip-hidden",!0),lh(".tooltipped").classed("tooltipped",!1)}if(n.size()){e=e||fh(".tooltip"),n.on("mouseover.attachTooltip",i).on("mousemove.attachTooltip",o).on("mouseout.attachTooltip",u).on("click.attachTooltip",function(t){console.log(t)});var a=n.datum();r=r||wv(a).filter(function(t){return"object"!=typeof a[t]&&"array"!=a[t]}).map(function(t){return function(n){return t+": <b>"+n[t]+"</b>"}})}},tT=function(){var t=Cu(),n=[].slice.call(arguments),e=n.slice(0,n.length-1),r=n[n.length-1];e.forEach(function(n){var e=n.split("?")[0].split(".").reverse()[0],i={csv:_x,tsv:mx,json:dx}[e];if(!i)return r(new Error("Invalid type",n));t.defer(i,n)}),t.awaitAll(r)},nT=function(t,n){return xv().key(n).entries(t).map(function(t){return t.values.key=t.key,t.values})},eT=function(t,n){return n?Math.round(t*(n=Math.pow(10,n)))/n:Math.round(t)},rT=function(t,n){for(var e,r,i,o,u,a,c=bf(n),s=-1,f=t.length-bf(t),l=t[f-1];++s<f;){for(e=n.slice(),n.length=0,o=t[s],u=e[(i=e.length-c)-1],r=-1;++r<i;)a=e[r],mf(a,l,o)?(mf(u,l,o)||n.push(xf(u,a,l,o)),n.push(a)):mf(u,l,o)&&n.push(xf(u,a,l,o)),u=a;c&&n.push(n[0]),l=o}return n};_t.prototype.translate=qM,ie.prototype.translate=qM,_t.prototype.append=OM,_t.prototype.insert=FM,_t.prototype.parent=YM,_t.prototype.selectAppend=IM,_t.prototype.tspans=HM,_t.prototype.appendMany=BM,_t.prototype.at=jM,_t.prototype.st=XM,ie.prototype.at=jM,ie.prototype.st=XM,_t.prototype.prop=_t.prototype.property,xc({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan.","Feb.","March","April","May","June","July","Aug.","Sept.","Oct.","Nov.","Dec."]}),t.version="4.12.0",t.bisect=kf,t.bisectRight=kf,t.bisectLeft=Sf,t.ascending=Mf,t.bisector=Tf,t.cross=Ef,t.descending=Cf,t.deviation=Rf,t.extent=Lf,t.histogram=Wf,t.thresholdFreedmanDiaconis=$f,t.thresholdScott=Zf,t.thresholdSturges=Xf,t.max=Gf,t.mean=Qf,t.median=Jf,t.merge=Kf,t.min=tl,t.pairs=Af,t.permute=nl,t.quantile=Vf,t.range=Yf,t.scan=el,t.shuffle=rl,t.sum=il,t.ticks=jf,t.tickIncrement=r,t.tickStep=i,t.transpose=ol,t.variance=Pf,t.zip=ul,t.axisTop=h,t.axisRight=p,t.axisBottom=d,t.axisLeft=v,t.brush=uv,t.brushX=Re,t.brushY=Le,t.brushSelection=Pe,t.chord=pv,t.ribbon=mv,t.nest=xv,t.set=Qe,t.map=Xe,t.keys=wv,t.values=Mv,t.entries=Tv,t.color=At,t.rgb=Pt,t.hsl=qt,t.lab=Yt,t.hcl=Vt,t.cubehelix=Gt,t.dispatch=g,t.drag=yh,t.dragDisable=vh,t.dragEnable=xt,t.dsvFormat=Cv,t.csvParse=Pv,t.csvParseRows=Rv,t.csvFormat=Lv,t.csvFormatRows=Dv,t.tsvParse=Uv,t.tsvParseRows=Ov,t.tsvFormat=Fv,t.tsvFormatRows=Yv,t.easeLinear=ue,t.easeQuad=se,t.easeQuadIn=ae,t.easeQuadOut=ce,t.easeQuadInOut=se,t.easeCubic=he,t.easeCubicIn=fe,t.easeCubicOut=le,t.easeCubicInOut=he,t.easePoly=bd,t.easePolyIn=md,t.easePolyOut=xd,t.easePolyInOut=bd,t.easeSin=ve,t.easeSinIn=pe,t.easeSinOut=de,t.easeSinInOut=ve,t.easeExp=_e,t.easeExpIn=ge,t.easeExpOut=ye,t.easeExpInOut=_e,t.easeCircle=be,t.easeCircleIn=me,t.easeCircleOut=xe,t.easeCircleInOut=be,t.easeBounce=Me,t.easeBounceIn=we,t.easeBounceOut=Me,t.easeBounceInOut=Te,t.easeBack=qd,t.easeBackIn=Ld,t.easeBackOut=Dd,t.easeBackInOut=qd,t.easeElastic=Fd,t.easeElasticIn=Od,t.easeElasticOut=Fd,t.easeElasticInOut=Yd,t.forceCenter=Iv,t.forceCollide=og,t.forceLink=ug,t.forceManyBody=fg,t.forceRadial=lg,t.forceSimulation=sg,t.forceX=hg,t.forceY=pg,t.formatDefaultLocale=yr,t.formatLocale=kg,t.formatSpecifier=vr,t.precisionFixed=Sg,t.precisionPrefix=Ag,t.precisionRound=Eg,t.geoArea=Ly,t.geoBounds=Uy,t.geoCentroid=Fy,t.geoCircle=t_,t.geoClipAntimeridian=a_,t.geoClipCircle=c_,t.geoClipExtent=h_,t.geoClipRectangle=_i,t.geoContains=b_,t.geoDistance=__,t.geoGraticule=zi,t.geoGraticule10=Pi,t.geoInterpolate=w_,t.geoLength=v_,t.geoPath=Z_,t.geoAlbers=em,t.geoAlbersUsa=rm,t.geoAzimuthalEqualArea=om,t.geoAzimuthalEqualAreaRaw=im,t.geoAzimuthalEquidistant=am,t.geoAzimuthalEquidistantRaw=um,t.geoConicConformal=sm,t.geoConicConformalRaw=xo,t.geoConicEqualArea=nm,t.geoConicEqualAreaRaw=ho,t.geoConicEquidistant=lm,t.geoConicEquidistantRaw=wo,t.geoEquirectangular=fm,t.geoEquirectangularRaw=bo,t.geoGnomonic=hm,t.geoGnomonicRaw=Mo,t.geoIdentity=pm,t.geoProjection=co,t.geoProjectionMutator=so,t.geoMercator=cm,t.geoMercatorRaw=yo,t.geoNaturalEarth1=dm,t.geoNaturalEarth1Raw=No,t.geoOrthographic=vm,t.geoOrthographicRaw=ko,t.geoStereographic=gm,t.geoStereographicRaw=So,t.geoTransverseMercator=ym,t.geoTransverseMercatorRaw=Ao,t.geoRotation=Ky,t.geoStream=Cy,t.geoTransform=G_,t.cluster=_m,t.hierarchy=Oo,t.pack=Lm,t.packSiblings=Pm,t.packEnclose=zm,t.partition=Um,t.stratify=Im,t.tree=Hm,t.treemap=Wm,t.treemapBinary=Vm,t.treemapDice=qm,t.treemapSlice=Bm,t.treemapSliceDice=$m,t.treemapSquarify=Xm,t.treemapResquarify=Zm,t.interpolate=pp,t.interpolateArray=up,t.interpolateBasis=tp,t.interpolateBasisClosed=np,t.interpolateDate=ap,t.interpolateNumber=cp,t.interpolateObject=sp,t.interpolateRound=dp,t.interpolateString=hp,t.interpolateTransformCss=_p,t.interpolateTransformSvg=mp,t.interpolateZoom=bp,t.interpolateRgb=rp,t.interpolateRgbBasis=ip,t.interpolateRgbBasisClosed=op,t.interpolateHsl=wp,t.interpolateHslLong=Mp,t.interpolateLab=vn,t.interpolateHcl=Tp;t.interpolateHclLong=Np,t.interpolateCubehelix=kp,t.interpolateCubehelixLong=Sp,t.quantize=Ap,t.path=Oe,t.polygonArea=Gm,t.polygonCentroid=Qm,t.polygonHull=Km,t.polygonContains=tx,t.polygonLength=nx,t.quadtree=ur,t.queue=Cu,t.randomUniform=ox,t.randomNormal=ux,t.randomLogNormal=ax,t.randomBates=sx,t.randomIrwinHall=cx,t.randomExponential=fx,t.request=lx,t.html=px,t.json=dx,t.text=vx,t.xml=gx,t.csv=_x,t.tsv=mx,t.scaleBand=Du,t.scalePoint=Uu,t.scaleIdentity=Vu,t.scaleLinear=Wu,t.scaleLog=ta,t.scaleOrdinal=Lu,t.scaleImplicit=Mx,t.scalePow=ea,t.scaleSqrt=ra,t.scaleQuantile=ia,t.scaleQuantize=oa,t.scaleThreshold=ua,t.scaleTime=Xb,t.scaleUtc=Wb,t.schemeCategory10=$b,t.schemeCategory20b=Zb,t.schemeCategory20c=Gb,t.schemeCategory20=Qb,t.interpolateCubehelixDefault=Jb,t.interpolateRainbow=ew,t.interpolateWarm=Kb,t.interpolateCool=tw,t.interpolateViridis=rw,t.interpolateMagma=iw,t.interpolateInferno=ow,t.interpolatePlasma=uw,t.scaleSequential=Sc,t.creator=_l,t.local=M,t.matcher=Ml,t.mouse=Al,t.namespace=yl,t.namespaces=gl,t.clientPoint=Sl,t.select=fh,t.selectAll=lh,t.selection=_t,t.selector=El,t.selectorAll=zl,t.style=W,t.touch=hh,t.touches=ph,t.window=Gl,t.customEvent=C,t.arc=mw,t.area=ww,t.line=bw,t.pie=Nw,t.areaRadial=Aw,t.radialArea=Aw,t.lineRadial=Sw,t.radialLine=Sw,t.pointRadial=Ew,t.linkHorizontal=Zc,t.linkVertical=Gc,t.linkRadial=Qc,t.symbol=Zw,t.symbols=$w,t.symbolCircle=zw,t.symbolCross=Pw,t.symbolDiamond=Dw,t.symbolSquare=Yw,t.symbolStar=Fw,t.symbolTriangle=Hw,t.symbolWye=Vw,t.curveBasisClosed=Jw,t.curveBasisOpen=Kw,t.curveBasis=Qw,t.curveBundle=tM,t.curveCardinalClosed=eM,t.curveCardinalOpen=rM,t.curveCardinal=nM,t.curveCatmullRomClosed=oM,t.curveCatmullRomOpen=uM,t.curveCatmullRom=iM,t.curveLinearClosed=aM,t.curveLinear=xw,t.curveMonotoneX=ms,t.curveMonotoneY=xs,t.curveNatural=cM,t.curveStep=sM,t.curveStepAfter=Ns,t.curveStepBefore=Ts,t.stack=hM,t.stackOffsetExpand=pM,t.stackOffsetDiverging=dM,t.stackOffsetNone=fM,t.stackOffsetSilhouette=vM,t.stackOffsetWiggle=gM,t.stackOrderAscending=yM,t.stackOrderDescending=_M,t.stackOrderInsideOut=mM,t.stackOrderNone=lM,t.stackOrderReverse=xM,t.timeInterval=aa,t.timeMillisecond=zx,t.timeMilliseconds=Px,t.utcMillisecond=zx,t.utcMilliseconds=Px,t.timeSecond=Dx,t.timeSeconds=qx,t.utcSecond=Dx,t.utcSeconds=qx,t.timeMinute=Ux,t.timeMinutes=Ox,t.timeHour=Fx,t.timeHours=Yx,t.timeDay=Ix,t.timeDays=Hx,t.timeWeek=Bx,t.timeWeeks=Gx,t.timeSunday=Bx,t.timeSundays=Gx,t.timeMonday=jx,t.timeMondays=Qx,t.timeTuesday=Xx,t.timeTuesdays=Jx,t.timeWednesday=Wx,t.timeWednesdays=Kx,t.timeThursday=Vx,t.timeThursdays=tb,t.timeFriday=$x,t.timeFridays=nb,t.timeSaturday=Zx,t.timeSaturdays=eb,t.timeMonth=rb,t.timeMonths=ib,t.timeYear=ob,t.timeYears=ub,t.utcMinute=ab,t.utcMinutes=cb,t.utcHour=sb,t.utcHours=fb,t.utcDay=lb,t.utcDays=hb,t.utcWeek=pb,t.utcWeeks=xb,t.utcSunday=pb,t.utcSundays=xb,t.utcMonday=db,t.utcMondays=bb,t.utcTuesday=vb,t.utcTuesdays=wb,t.utcWednesday=gb,t.utcWednesdays=Mb,t.utcThursday=yb,t.utcThursdays=Tb,t.utcFriday=_b,t.utcFridays=Nb,t.utcSaturday=mb,t.utcSaturdays=kb,t.utcMonth=Sb,t.utcMonths=Ab,t.utcYear=Eb,t.utcYears=zb,t.timeFormatDefaultLocale=xc,t.timeFormatLocale=pa,t.isoFormat=qb,t.isoParse=Ub,t.now=_n,t.timer=bn,t.timerFlush=wn,t.timeout=Op,t.interval=Fp,t.transition=ie,t.active=jd,t.interrupt=Gp,t.voronoi=zM,t.zoom=DM,t.zoomTransform=sf,t.zoomIdentity=RM,t.wordwrap=VM,t.parseAttributes=UM,t.f=_f,t.ascendingKey=$M;t.descendingKey=ZM,t.conventions=GM,t.drawAxis=QM,t.attachTooltip=KM,t.loadData=tT,t.nestBy=nT,t.round=eT,t.clamp=JM,t.polygonClip=rT,t.graphScroll=wf,Object.defineProperty(t,"__esModule",{value:!0})});
function initLine(){
var sel = d3.select('#graph').html('')
var bSel = sel.append('div')
.st({marginBottom: -16})
.append('b')
var c = d3.conventions({
sel: sel.append('div'),
totalHeight: 274,
totalWidth: 500,
margin: {left: 32, right: 30, top: 20},
layers: 'cs',
})
var ctx = c.layers[0]
var {width, height} = c
c.svg.append('rect')
.at({width, height: height + 1, fill: '#000', fillOpacity: .6})
c.svg.append('rect')
.at({x: width, width: c.margin.right, height: height + 1, fill: '#fff'})
c.svg.append('rect')
.at({x: -c.margin.left, width: c.margin.left, height: height + 1, fill: '#fff'})
var y = d3.scaleLog()
.domain([50, 10000])
.range(c.y.range())
c.yAxis.scale(y)
.tickFormat(d => d/100 + '×')
.tickValues([50, 100, 200, 500, 1000, 2000, 5000, 10000])
d3.drawAxis(c)
var xAxisSel = c.svg.select('.x')
var red = 'rgb(155,17,14)'
var green = '#0f0'
var green1 = 'rgb(0,160,138)'
c.svg.append('mask#line-mask').append('rect')
.at({width: c.width, y: -30, height: c.height + 30, fill: '#fff'})
var drawG = c.svg.append('g').at({mask: 'url(#line-mask)'})
var curT = 1
var startIFn = t => 0
var endIFn = t => 11910
var returns
var changes
var lastDays = null
return function(days, bT, sT, startI = startIFn(1), endI = endIFn(1)){
if (window.updateDayConnector) window.updateDayConnector()
d3.selectAll('.hover-rect').each(d => d.fn(bT, sT))
if (days == lastDays){
d3.selectAll('.slider-rect')
.data(_.filter(gridCache, {bT: gbT, sT: gsT}))
.at({fill: d => color(d.y2017/70)})
}
lastDays = days
var startTransition = false
if (startI != startIFn(1) || endI != endIFn(1) && arguments.length > 3){
startIFn = d3.interpolate(startIFn(curT), startI)
endIFn = d3.interpolate(endIFn(curT), endI)
curT = 0
startTransition = true
}
bSel.html(`
Buy After ${pctFmtLng(bT)} /
Sell After ${pctFmtLng(sT)}
${days} Day Change
`)
b = calcChangeVector(days, bT, 0)
s = calcChangeVector(days, sT, 1)
returns = calcReturnVector(b, s)
changes = returns.meta.changeIndices.map((d, i) => {
var n = returns.meta.changeIndices[i + 1] || data.length
return {i, v: d, n}
})
drawFrame(curT)
if (startTransition){
if (window.linetimer) linetimer.stop()
linetimer = d3.timer(t => {
curT += .03
if (curT > 1) return linetimer.stop()
drawFrame()
})
}
function drawFrame(){
var cubicT = d3.easeCubicInOut(curT)
startI = Math.round(startIFn(cubicT))
endI = Math.round(endIFn(cubicT))
c.x.domain([startI, endI])
var yTicks = yearIndex.filter(d => startI <= d.i && d.i <= endI).map(d => d.i)
var dTicks = decadeIndex.map(d => d.i).concat(data.length - 60)
c.xAxis
.tickFormat(d => data[d].year)
.tickValues((yTicks.length < 16 ? yTicks : dTicks)
.filter(d => -20 <= c.x(d) && c.x(d) <= c.width + 20))
xAxisSel.selectAll('.tick').remove()
xAxisSel.call(c.xAxis)
drawG.selectAll('*').remove()
ctx.clearRect(0, 0, c.width, c.height)
changes.forEach(d => d.x = c.x(d.v))
changes.forEach((d, i) => {
if (d.x > c.width) return
if (changes[i + 1] && changes[i + 1].x < 0) return
// if ()
ctx.beginPath()
ctx.fillStyle = returns[d.v].isHolding ? green1 : red
ctx.rect(
d.x,
0,
c.x(d.n) - d.x,
c.height)
ctx.fill()
})
var line = d3.line()
.x(d => c.x(d.i))
.y(d => y(d.v))
drawG.append('path')
.at({
d: line(data),
fill: 'none',
stroke: '#ccc',
strokeWidth: 1
})
// var initRatio = data[startI].v/returns[startI].v
// var initRatio = 1
// line.y(d => y(d.v*initRatio))
drawG.append('path')
.at({
d: line(returns.filter(d => d.changed)),
fill: 'none',
stroke: '#0f0',
strokeWidth: 2
})
.st({stroke: '#3dea05'})
drawG.append('path')
.at({
d: line.defined(d => !d.isHolding)(returns),
fill: 'none',
stroke: '#df3610',
strokeWidth: 2
})
.st({stroke: '#f00'})
}
}
}
date val
1971-02-05 100.00
1971-02-08 100.84
1971-02-09 100.76
1971-02-10 100.69
1971-02-11 101.45
1971-02-12 102.05
1971-02-15 .
1971-02-16 102.19
1971-02-17 101.74
1971-02-18 101.42
1971-02-19 100.70
1971-02-22 99.68
1971-02-23 99.72
1971-02-24 100.64
1971-02-25 101.23
1971-02-26 101.34
1971-03-01 101.78
1971-03-02 101.84
1971-03-03 102.07
1971-03-04 102.78
1971-03-05 103.51
1971-03-08 104.23
1971-03-09 104.41
1971-03-10 104.14
1971-03-11 104.26
1971-03-12 104.50
1971-03-15 105.13
1971-03-16 105.56
1971-03-17 105.50
1971-03-18 105.88
1971-03-19 105.77
1971-03-22 105.37
1971-03-23 105.11
1971-03-24 104.70
1971-03-25 104.60
1971-03-26 105.07
1971-03-29 105.20
1971-03-30 105.44
1971-03-31 105.97
1971-04-01 106.34
1971-04-02 106.86
1971-04-05 107.17
1971-04-06 107.56
1971-04-07 108.06
1971-04-08 108.38
1971-04-09 .
1971-04-12 108.87
1971-04-13 108.85
1971-04-14 109.08
1971-04-15 109.69
1971-04-16 109.96
1971-04-19 110.16
1971-04-20 109.53
1971-04-21 109.52
1971-04-22 109.99
1971-04-23 110.69
1971-04-26 111.13
1971-04-27 111.69
1971-04-28 112.37
1971-04-29 112.46
1971-04-30 112.30
1971-05-03 111.35
1971-05-04 111.77
1971-05-05 111.68
1971-05-06 111.06
1971-05-07 110.66
1971-05-10 110.15
1971-05-11 110.33
1971-05-12 110.37
1971-05-13 110.55
1971-05-14 110.74
1971-05-17 109.15
1971-05-18 108.40
1971-05-19 108.33
1971-05-20 108.72
1971-05-21 108.85
1971-05-24 108.42
1971-05-25 107.50
1971-05-26 107.53
1971-05-27 107.60
1971-05-28 108.25
1971-05-31 .
1971-06-01 108.87
1971-06-02 109.56
1971-06-03 110.22
1971-06-04 110.66
1971-06-07 110.76
1971-06-08 110.02
1971-06-09 109.79
1971-06-10 110.06
1971-06-11 110.20
1971-06-14 109.57
1971-06-15 109.36
1971-06-16 109.44
1971-06-17 109.44
1971-06-18 108.16
1971-06-21 106.50
1971-06-22 105.49
1971-06-23 105.99
1971-06-24 106.37
1971-06-25 106.56
1971-06-28 106.45
1971-06-29 107.22
1971-06-30 107.80
1971-07-01 108.47
1971-07-02 108.77
1971-07-05 .
1971-07-06 109.23
1971-07-07 110.01
1971-07-08 110.42
1971-07-09 110.91
1971-07-12 111.24
1971-07-13 110.76
1971-07-14 110.34
1971-07-15 110.72
1971-07-16 109.98
1971-07-19 109.37
1971-07-20 109.79
1971-07-21 109.74
1971-07-22 109.54
1971-07-23 109.63
1971-07-26 109.35
1971-07-27 108.57
1971-07-28 107.45
1971-07-29 105.81
1971-07-30 105.27
1971-08-02 105.59
1971-08-03 104.41
1971-08-04 103.26
1971-08-05 103.11
1971-08-06 103.78
1971-08-09 103.18
1971-08-10 103.04
1971-08-11 104.08
1971-08-12 105.21
1971-08-13 105.44
1971-08-16 107.86
1971-08-17 108.93
1971-08-18 108.39
1971-08-19 108.01
1971-08-20 107.89
1971-08-23 108.26
1971-08-24 108.60
1971-08-25 108.85
1971-08-26 108.97
1971-08-27 109.30
1971-08-30 108.71
1971-08-31 108.42
1971-09-01 108.65
1971-09-02 108.96
1971-09-03 109.98
1971-09-06 .
1971-09-07 110.53
1971-09-08 110.58
1971-09-09 110.55
1971-09-10 110.42
1971-09-13 110.22
1971-09-14 109.77
1971-09-15 109.79
1971-09-16 109.78
1971-09-17 110.10
1971-09-20 109.99
1971-09-21 109.82
1971-09-22 108.99
1971-09-23 108.80
1971-09-24 108.88
1971-09-27 108.18
1971-09-28 108.38
1971-09-29 108.60
1971-09-30 109.03
1971-10-01 109.58
1971-10-04 109.96
1971-10-05 109.99
1971-10-06 110.68
1971-10-07 110.98
1971-10-08 110.74
1971-10-11 110.71
1971-10-12 110.91
1971-10-13 110.69
1971-10-14 109.87
1971-10-15 109.60
1971-10-18 109.06
1971-10-19 107.99
1971-10-20 106.58
1971-10-21 106.61
1971-10-22 106.80
1971-10-25 106.29
1971-10-26 105.69
1971-10-27 104.28
1971-10-28 104.50
1971-10-29 105.10
1971-11-01 103.69
1971-11-02 103.54
1971-11-03 105.01
1971-11-04 105.56
1971-11-05 105.46
1971-11-08 105.43
1971-11-09 105.72
1971-11-10 104.86
1971-11-11 103.74
1971-11-12 103.91
1971-11-15 103.44
1971-11-16 103.71
1971-11-17 103.64
1971-11-18 103.44
1971-11-19 102.95
1971-11-22 101.79
1971-11-23 100.31
1971-11-24 100.40
1971-11-25 .
1971-11-26 101.64
1971-11-29 103.08
1971-11-30 103.97
1971-12-01 105.06
1971-12-02 106.15
1971-12-03 107.26
1971-12-06 106.92
1971-12-07 107.26
1971-12-08 107.71
1971-12-09 107.97
1971-12-10 108.81
1971-12-13 109.16
1971-12-14 109.07
1971-12-15 109.45
1971-12-16 110.01
1971-12-17 110.52
1971-12-20 111.50
1971-12-21 111.73
1971-12-22 111.97
1971-12-23 111.94
1971-12-24 .
1971-12-27 111.70
1971-12-28 111.93
1971-12-29 112.57
1971-12-30 112.97
1971-12-31 114.12
1972-01-03 113.65
1972-01-04 113.93
1972-01-05 114.83
1972-01-06 115.72
1972-01-07 116.05
1972-01-10 116.10
1972-01-11 116.64
1972-01-12 116.90
1972-01-13 116.42
1972-01-14 116.74
1972-01-17 116.93
1972-01-18 117.66
1972-01-19 117.45
1972-01-20 117.32
1972-01-21 117.21
1972-01-24 116.49
1972-01-25 116.30
1972-01-26 116.39
1972-01-27 117.37
1972-01-28 118.44
1972-01-31 118.87
1972-02-01 119.58
1972-02-02 120.47
1972-02-03 120.66
1972-02-04 121.24
1972-02-07 121.14
1972-02-08 121.35
1972-02-09 122.16
1972-02-10 122.71
1972-02-11 122.86
1972-02-14 122.26
1972-02-15 122.61
1972-02-16 123.35
1972-02-17 123.44
1972-02-18 123.40
1972-02-21 .
1972-02-22 123.30
1972-02-23 123.61
1972-02-24 124.00
1972-02-25 124.83
1972-02-28 124.94
1972-02-29 125.38
1972-03-01 126.29
1972-03-02 126.58
1972-03-03 127.19
1972-03-06 127.88
1972-03-07 127.83
1972-03-08 128.40
1972-03-09 128.85
1972-03-10 128.55
1972-03-13 127.34
1972-03-14 127.73
1972-03-15 128.14
1972-03-16 127.77
1972-03-17 128.01
1972-03-20 127.53
1972-03-21 125.73
1972-03-22 126.36
1972-03-23 127.38
1972-03-24 127.55
1972-03-27 127.56
1972-03-28 127.72
1972-03-29 127.53
1972-03-30 128.14
1972-03-31 .
1972-04-03 128.06
1972-04-04 128.78
1972-04-05 130.00
1972-04-06 130.92
1972-04-07 131.80
1972-04-10 131.76
1972-04-11 132.47
1972-04-12 133.17
1972-04-13 133.06
1972-04-14 133.88
1972-04-17 133.74
1972-04-18 134.10
1972-04-19 132.68
1972-04-20 132.86
1972-04-21 133.01
1972-04-24 131.90
1972-04-25 130.84
1972-04-26 130.92
1972-04-27 131.01
1972-04-28 131.33
1972-05-01 130.16
1972-05-02 129.34
1972-05-03 128.77
1972-05-04 128.92
1972-05-05 129.43
1972-05-08 128.62
1972-05-09 125.78
1972-05-10 126.77
1972-05-11 127.95
1972-05-12 129.44
1972-05-15 130.34
1972-05-16 130.36
1972-05-17 129.76
1972-05-18 130.82
1972-05-19 132.16
1972-05-22 132.38
1972-05-23 132.72
1972-05-24 133.47
1972-05-25 133.80
1972-05-26 133.95
1972-05-29 .
1972-05-30 133.45
1972-05-31 132.53
1972-06-01 133.13
1972-06-02 133.52
1972-06-05 132.74
1972-06-06 132.00
1972-06-07 131.00
1972-06-08 131.07
1972-06-09 130.57
1972-06-12 130.38
1972-06-13 130.78
1972-06-14 131.45
1972-06-15 131.29
1972-06-16 131.28
1972-06-19 130.76
1972-06-20 131.07
1972-06-21 131.38
1972-06-22 130.79
1972-06-23 130.22
1972-06-26 129.31
1972-06-27 129.79
1972-06-28 129.58
1972-06-29 129.35
1972-06-30 130.08
1972-07-03 130.59
1972-07-04 .
1972-07-05 131.28
1972-07-06 131.86
1972-07-07 131.50
1972-07-10 130.85
1972-07-11 130.47
1972-07-12 130.11
1972-07-13 129.03
1972-07-14 129.38
1972-07-17 128.40
1972-07-18 127.54
1972-07-19 127.77
1972-07-20 127.09
1972-07-21 127.63
1972-07-24 128.77
1972-07-25 128.47
1972-07-26 128.65
1972-07-27 128.36
1972-07-28 128.15
1972-07-31 127.75
1972-08-01 128.45
1972-08-02 129.39
1972-08-03 130.31
1972-08-04 130.94
1972-08-07 130.97
1972-08-08 130.61
1972-08-09 130.75
1972-08-10 130.84
1972-08-11 131.68
1972-08-14 131.70
1972-08-15 131.48
1972-08-16 131.46
1972-08-17 130.89
1972-08-18 131.43
1972-08-21 131.29
1972-08-22 131.29
1972-08-23 131.10
1972-08-24 130.40
1972-08-25 130.31
1972-08-28 129.77
1972-08-29 129.44
1972-08-30 129.78
1972-08-31 129.95
1972-09-01 130.70
1972-09-04 .
1972-09-05 130.33
1972-09-06 129.63
1972-09-07 129.21
1972-09-08 129.13
1972-09-11 128.26
1972-09-12 127.18
1972-09-13 127.51
1972-09-14 127.58
1972-09-15 127.67
1972-09-18 127.61
1972-09-19 127.42
1972-09-20 127.51
1972-09-21 127.30
1972-09-22 127.46
1972-09-25 126.82
1972-09-26 127.07
1972-09-27 128.55
1972-09-28 129.13
1972-09-29 129.61
1972-10-02 129.30
1972-10-03 129.48
1972-10-04 129.29
1972-10-05 128.01
1972-10-06 128.13
1972-10-09 128.51
1972-10-10 129.02
1972-10-11 128.57
1972-10-12 127.87
1972-10-13 127.19
1972-10-16 125.87
1972-10-17 126.43
1972-10-18 127.05
1972-10-19 126.91
1972-10-20 128.00
1972-10-23 128.66
1972-10-24 128.91
1972-10-25 128.89
1972-10-26 129.37
1972-10-27 129.53
1972-10-30 129.46
1972-10-31 130.24
1972-11-01 131.59
1972-11-02 132.12
1972-11-03 133.34
1972-11-06 133.58
1972-11-07 .
1972-11-08 133.06
1972-11-09 132.82
1972-11-10 133.12
1972-11-13 132.77
1972-11-14 132.90
1972-11-15 132.45
1972-11-16 132.62
1972-11-17 132.33
1972-11-20 132.12
1972-11-21 132.19
1972-11-22 132.49
1972-11-23 .
1972-11-24 133.02
1972-11-27 132.57
1972-11-28 132.71
1972-11-29 132.73
1972-11-30 132.96
1972-12-01 133.94
1972-12-04 134.14
1972-12-05 134.28
1972-12-06 134.68
1972-12-07 135.06
1972-12-08 135.15
1972-12-11 134.83
1972-12-12 134.27
1972-12-13 133.66
1972-12-14 133.33
1972-12-15 133.53
1972-12-18 132.54
1972-12-19 132.39
1972-12-20 131.93
1972-12-21 131.08
1972-12-22 131.28
1972-12-25 .
1972-12-26 131.18
1972-12-27 131.93
1972-12-28 .
1972-12-29 133.73
1973-01-01 .
1973-01-02 134.63
1973-01-03 135.38
1973-01-04 135.44
1973-01-05 135.91
1973-01-08 136.02
1973-01-09 135.99
1973-01-10 136.06
1973-01-11 136.84
1973-01-12 136.01
1973-01-15 134.60
1973-01-16 134.03
1973-01-17 134.07
1973-01-18 134.34
1973-01-19 133.87
1973-01-22 133.15
1973-01-23 132.44
1973-01-24 130.49
1973-01-25 .
1973-01-26 129.76
1973-01-29 128.46
1973-01-30 128.22
1973-01-31 128.40
1973-02-01 126.94
1973-02-02 126.48
1973-02-05 126.00
1973-02-06 126.27
1973-02-07 124.99
1973-02-08 123.97
1973-02-09 125.86
1973-02-12 126.88
1973-02-13 127.19
1973-02-14 125.42
1973-02-15 124.43
1973-02-16 124.55
1973-02-19 .
1973-02-20 125.01
1973-02-21 123.95
1973-02-22 123.68
1973-02-23 122.34
1973-02-26 121.27
1973-02-27 119.80
1973-02-28 120.41
1973-03-01 119.53
1973-03-02 120.11
1973-03-05 120.55
1973-03-06 121.91
1973-03-07 122.28
1973-03-08 122.11
1973-03-09 121.99
1973-03-12 121.86
1973-03-13 122.09
1973-03-14 122.10
1973-03-15 121.60
1973-03-16 121.22
1973-03-19 119.94
1973-03-20 119.26
1973-03-21 117.89
1973-03-22 115.69
1973-03-23 115.47
1973-03-26 115.54
1973-03-27 116.89
1973-03-28 117.14
1973-03-29 118.19
1973-03-30 117.46
1973-04-02 115.79
1973-04-03 114.47
1973-04-04 112.89
1973-04-05 112.02
1973-04-06 113.27
1973-04-09 114.01
1973-04-10 114.81
1973-04-11 115.29
1973-04-12 115.59
1973-04-13 115.22
1973-04-16 114.55
1973-04-17 113.64
1973-04-18 113.71
1973-04-19 114.15
1973-04-20 .
1973-04-23 113.02
1973-04-24 111.23
1973-04-25 109.37
1973-04-26 109.72
1973-04-27 108.40
1973-04-30 107.85
1973-05-01 107.96
1973-05-02 109.05
1973-05-03 109.81
1973-05-04 110.89
1973-05-07 110.48
1973-05-08 110.67
1973-05-09 110.54
1973-05-10 110.32
1973-05-11 109.10
1973-05-14 106.46
1973-05-15 106.14
1973-05-16 106.10
1973-05-17 105.19
1973-05-18 102.89
1973-05-21 100.76
1973-05-22 101.59
1973-05-23 102.09
1973-05-24 104.27
1973-05-25 105.17
1973-05-28 .
1973-05-29 104.85
1973-05-30 103.19
1973-05-31 102.64
1973-06-01 102.30
1973-06-04 100.77
1973-06-05 101.71
1973-06-06 101.70
1973-06-07 102.57
1973-06-08 103.72
1973-06-11 103.04
1973-06-12 104.79
1973-06-13 104.33
1973-06-14 103.56
1973-06-15 102.26
1973-06-18 100.77
1973-06-19 100.96
1973-06-20 101.19
1973-06-21 100.40
1973-06-22 100.99
1973-06-25 99.43
1973-06-26 99.96
1973-06-27 100.22
1973-06-28 101.16
1973-06-29 100.98
1973-07-02 100.15
1973-07-03 99.45
1973-07-04 .
1973-07-05 99.39
1973-07-06 99.48
1973-07-09 100.01
1973-07-10 101.18
1973-07-11 102.69
1973-07-12 103.17
1973-07-13 103.03
1973-07-16 103.97
1973-07-17 104.64
1973-07-18 105.77
1973-07-19 106.52
1973-07-20 107.68
1973-07-23 107.75
1973-07-24 108.29
1973-07-25 109.19
1973-07-26 109.17
1973-07-27 109.36
1973-07-30 108.88
1973-07-31 108.64
1973-08-01 107.13
1973-08-02 106.98
1973-08-03 106.82
1973-08-06 107.21
1973-08-07 107.30
1973-08-08 106.13
1973-08-09 106.15
1973-08-10 105.32
1973-08-13 104.35
1973-08-14 103.59
1973-08-15 103.35
1973-08-16 103.31
1973-08-17 103.71
1973-08-20 102.67
1973-08-21 102.12
1973-08-22 101.34
1973-08-23 102.53
1973-08-24 102.40
1973-08-27 102.91
1973-08-28 102.99
1973-08-29 103.79
1973-08-30 103.99
1973-08-31 104.87
1973-09-03 .
1973-09-04 105.50
1973-09-05 106.03
1973-09-06 106.36
1973-09-07 107.02
1973-09-10 106.25
1973-09-11 105.77
1973-09-12 105.33
1973-09-13 105.60
1973-09-14 106.07
1973-09-17 106.27
1973-09-18 106.30
1973-09-19 107.91
1973-09-20 108.76
1973-09-21 109.46
1973-09-24 109.69
1973-09-25 109.80
1973-09-26 110.62
1973-09-27 111.27
1973-09-28 111.20
1973-10-01 110.97
1973-10-02 111.76
1973-10-03 112.13
1973-10-04 111.51
1973-10-05 112.56
1973-10-08 113.17
1973-10-09 113.07
1973-10-10 112.17
1973-10-11 113.56
1973-10-12 114.10
1973-10-15 113.13
1973-10-16 113.14
1973-10-17 112.66
1973-10-18 112.82
1973-10-19 113.25
1973-10-22 112.29
1973-10-23 111.81
1973-10-24 112.13
1973-10-25 112.31
1973-10-26 112.79
1973-10-29 112.09
1973-10-30 110.63
1973-10-31 110.17
1973-11-01 109.62
1973-11-02 108.93
1973-11-05 107.21
1973-11-06 106.29
1973-11-07 106.72
1973-11-08 107.31
1973-11-09 105.77
1973-11-12 105.08
1973-11-13 104.74
1973-11-14 101.98
1973-11-15 101.63
1973-11-16 101.38
1973-11-19 99.00
1973-11-20 96.58
1973-11-21 97.32
1973-11-22 .
1973-11-23 97.30
1973-11-26 94.13
1973-11-27 93.07
1973-11-28 94.94
1973-11-29 94.62
1973-11-30 93.51
1973-12-03 91.97
1973-12-04 91.56
1973-12-05 89.73
1973-12-06 91.27
1973-12-07 92.32
1973-12-10 93.54
1973-12-11 92.20
1973-12-12 90.81
1973-12-13 89.12
1973-12-14 89.63
1973-12-17 89.13
1973-12-18 90.56
1973-12-19 90.24
1973-12-20 90.27
1973-12-21 89.52
1973-12-24 88.67
1973-12-25 .
1973-12-26 90.19
1973-12-27 91.25
1973-12-28 91.68
1973-12-31 92.19
1974-01-01 .
1974-01-02 92.53
1974-01-03 94.18
1974-01-04 94.10
1974-01-07 94.47
1974-01-08 94.02
1974-01-09 92.20
1974-01-10 91.42
1974-01-11 92.23
1974-01-14 92.40
1974-01-15 93.07
1974-01-16 94.49
1974-01-17 95.95
1974-01-18 95.32
1974-01-21 94.48
1974-01-22 95.29
1974-01-23 95.76
1974-01-24 95.61
1974-01-25 95.40
1974-01-28 95.02
1974-01-29 94.56
1974-01-30 95.17
1974-01-31 94.93
1974-02-01 94.15
1974-02-04 92.89
1974-02-05 92.46
1974-02-06 92.74
1974-02-07 92.81
1974-02-08 92.20
1974-02-11 91.13
1974-02-12 90.50
1974-02-13 90.08
1974-02-14 90.21
1974-02-15 90.98
1974-02-18 .
1974-02-19 90.82
1974-02-20 91.56
1974-02-21 92.17
1974-02-22 92.93
1974-02-25 92.72
1974-02-26 93.11
1974-02-27 94.06
1974-02-28 94.35
1974-03-01 94.05
1974-03-04 93.80
1974-03-05 94.71
1974-03-06 95.12
1974-03-07 94.53
1974-03-08 95.17
1974-03-11 95.87
1974-03-12 95.80
1974-03-13 96.33
1974-03-14 96.51
1974-03-15 96.53
1974-03-18 95.37
1974-03-19 94.75
1974-03-20 94.95
1974-03-21 95.36
1974-03-22 95.45
1974-03-25 95.35
1974-03-26 95.27
1974-03-27 94.21
1974-03-28 92.87
1974-03-29 92.27
1974-04-01 91.90
1974-04-02 92.03
1974-04-03 92.13
1974-04-04 91.88
1974-04-05 90.70
1974-04-08 89.92
1974-04-09 90.18
1974-04-10 89.87
1974-04-11 89.79
1974-04-12 .
1974-04-15 89.42
1974-04-16 90.33
1974-04-17 90.72
1974-04-18 90.90
1974-04-19 90.31
1974-04-22 90.27
1974-04-23 88.47
1974-04-24 86.95
1974-04-25 86.04
1974-04-26 86.24
1974-04-29 86.46
1974-04-30 86.86
1974-05-01 87.63
1974-05-02 87.97
1974-05-03 87.47
1974-05-06 87.31
1974-05-07 86.66
1974-05-08 85.74
1974-05-09 85.81
1974-05-10 84.30
1974-05-13 83.18
1974-05-14 83.16
1974-05-15 83.51
1974-05-16 83.50
1974-05-17 81.93
1974-05-20 81.43
1974-05-21 81.29
1974-05-22 80.72
1974-05-23 80.55
1974-05-24 81.45
1974-05-27 .
1974-05-28 81.06
1974-05-29 79.78
1974-05-30 80.09
1974-05-31 80.20
1974-06-03 81.08
1974-06-04 81.77
1974-06-05 82.21
1974-06-06 83.20
1974-06-07 83.71
1974-06-10 83.92
1974-06-11 83.34
1974-06-12 83.10
1974-06-13 83.24
1974-06-14 82.76
1974-06-17 81.54
1974-06-18 81.25
1974-06-19 80.66
1974-06-20 79.85
1974-06-21 79.11
1974-06-24 78.88
1974-06-25 79.35
1974-06-26 78.27
1974-06-27 76.83
1974-06-28 75.96
1974-07-01 75.39
1974-07-02 73.81
1974-07-03 73.66
1974-07-04 .
1974-07-05 73.57
1974-07-08 70.96
1974-07-09 70.59
1974-07-10 69.82
1974-07-11 69.95
1974-07-12 71.68
1974-07-15 71.98
1974-07-16 71.63
1974-07-17 72.71
1974-07-18 72.81
1974-07-19 73.40
1974-07-22 73.42
1974-07-23 74.44
1974-07-24 74.63
1974-07-25 73.51
1974-07-26 72.83
1974-07-29 71.49
1974-07-30 71.30
1974-07-31 69.99
1974-08-01 69.63
1974-08-02 69.40
1974-08-05 69.67
1974-08-06 70.53
1974-08-07 71.68
1974-08-08 70.66
1974-08-09 70.69
1974-08-12 70.36
1974-08-13 68.82
1974-08-14 67.25
1974-08-15 66.88
1974-08-16 65.86
1974-08-19 65.13
1974-08-20 65.72
1974-08-21 64.92
1974-08-22 63.59
1974-08-23 62.57
1974-08-26 62.94
1974-08-27 62.34
1974-08-28 62.43
1974-08-29 61.37
1974-08-30 62.37
1974-09-02 .
1974-09-03 60.88
1974-09-04 58.95
1974-09-05 60.22
1974-09-06 60.70
1974-09-09 59.37
1974-09-10 58.97
1974-09-11 58.96
1974-09-12 57.71
1974-09-13 56.66
1974-09-16 57.24
1974-09-17 57.72
1974-09-18 58.12
1974-09-19 59.52
1974-09-20 59.90
1974-09-23 59.66
1974-09-24 58.84
1974-09-25 58.76
1974-09-26 57.87
1974-09-27 57.12
1974-09-30 55.67
1974-10-01 55.48
1974-10-02 55.67
1974-10-03 54.87
1974-10-04 55.16
1974-10-07 56.57
1974-10-08 56.13
1974-10-09 57.57
1974-10-10 59.13
1974-10-11 60.42
1974-10-14 61.73
1974-10-15 61.40
1974-10-16 61.19
1974-10-17 62.04
1974-10-18 62.75
1974-10-21 63.82
1974-10-22 64.14
1974-10-23 63.40
1974-10-24 62.60
1974-10-25 62.88
1974-10-28 62.50
1974-10-29 63.67
1974-10-30 64.88
1974-10-31 65.23
1974-11-01 65.06
1974-11-04 64.62
1974-11-05 65.99
1974-11-06 66.11
1974-11-07 66.64
1974-11-08 66.51
1974-11-11 66.72
1974-11-12 65.36
1974-11-13 64.98
1974-11-14 65.04
1974-11-15 64.41
1974-11-18 62.09
1974-11-19 60.93
1974-11-20 60.75
1974-11-21 61.49
1974-11-22 62.07
1974-11-25 61.68
1974-11-26 62.65
1974-11-27 62.80
1974-11-28 .
1974-11-29 62.95
1974-12-02 61.66
1974-12-03 60.50
1974-12-04 60.41
1974-12-05 58.92
1974-12-06 58.21
1974-12-09 57.91
1974-12-10 58.76
1974-12-11 59.27
1974-12-12 59.36
1974-12-13 59.22
1974-12-16 58.85
1974-12-17 59.18
1974-12-18 59.63
1974-12-19 59.46
1974-12-20 58.67
1974-12-23 57.86
1974-12-24 58.31
1974-12-25 .
1974-12-26 58.88
1974-12-27 58.74
1974-12-30 58.78
1974-12-31 59.82
1975-01-01 .
1975-01-02 60.70
1975-01-03 61.23
1975-01-06 61.74
1975-01-07 61.89
1975-01-08 61.50
1975-01-09 62.37
1975-01-10 63.69
1975-01-13 63.34
1975-01-14 63.11
1975-01-15 63.87
1975-01-16 64.80
1975-01-17 64.40
1975-01-20 64.44
1975-01-21 64.18
1975-01-22 64.12
1975-01-23 64.49
1975-01-24 65.38
1975-01-27 67.04
1975-01-28 67.92
1975-01-29 69.08
1975-01-30 68.99
1975-01-31 69.78
1975-02-03 70.73
1975-02-04 70.13
1975-02-05 71.07
1975-02-06 71.46
1975-02-07 71.12
1975-02-10 70.82
1975-02-11 70.83
1975-02-12 71.59
1975-02-13 72.88
1975-02-14 73.26
1975-02-17 .
1975-02-18 72.47
1975-02-19 72.87
1975-02-20 73.58
1975-02-21 73.79
1975-02-24 73.14
1975-02-25 72.07
1975-02-26 72.24
1975-02-27 72.53
1975-02-28 73.00
1975-03-03 73.83
1975-03-04 74.21
1975-03-05 73.90
1975-03-06 74.03
1975-03-07 74.40
1975-03-10 74.88
1975-03-11 75.04
1975-03-12 74.13
1975-03-13 74.68
1975-03-14 76.07
1975-03-17 76.27
1975-03-18 76.18
1975-03-19 75.67
1975-03-20 75.78
1975-03-21 75.92
1975-03-24 74.42
1975-03-25 74.33
1975-03-26 75.56
1975-03-27 76.18
1975-03-28 .
1975-03-31 75.66
1975-04-01 75.42
1975-04-02 75.62
1975-04-03 74.95
1975-04-04 74.73
1975-04-07 74.34
1975-04-08 74.53
1975-04-09 75.40
1975-04-10 75.76
1975-04-11 76.31
1975-04-14 77.33
1975-04-15 77.51
1975-04-16 78.00
1975-04-17 78.26
1975-04-18 78.08
1975-04-21 79.08
1975-04-22 78.54
1975-04-23 78.24
1975-04-24 78.07
1975-04-25 78.64
1975-04-28 78.28
1975-04-29 77.82
1975-04-30 78.54
1975-05-01 79.27
1975-05-02 80.25
1975-05-05 81.14
1975-05-06 80.81
1975-05-07 81.31
1975-05-08 82.12
1975-05-09 82.82
1975-05-12 82.30
1975-05-13 82.35
1975-05-14 82.91
1975-05-15 82.79
1975-05-16 82.44
1975-05-19 81.99
1975-05-20 81.82
1975-05-21 80.95
1975-05-22 81.56
1975-05-23 82.62
1975-05-26 .
1975-05-27 82.49
1975-05-28 81.98
1975-05-29 81.78
1975-05-30 83.10
1975-06-02 83.88
1975-06-03 84.14
1975-06-04 84.04
1975-06-05 84.24
1975-06-06 84.77
1975-06-09 84.01
1975-06-10 83.40
1975-06-11 83.60
1975-06-12 82.99
1975-06-13 83.43
1975-06-16 84.01
1975-06-17 83.43
1975-06-18 83.47
1975-06-19 84.55
1975-06-20 85.24
1975-06-23 85.77
1975-06-24 86.23
1975-06-25 86.30
1975-06-26 86.45
1975-06-27 86.50
1975-06-30 87.02
1975-07-01 86.33
1975-07-02 85.64
1975-07-03 86.20
1975-07-04 .
1975-07-07 85.60
1975-07-08 85.39
1975-07-09 86.50
1975-07-10 86.83
1975-07-11 87.20
1975-07-14 87.58
1975-07-15 88.00
1975-07-16 87.39
1975-07-17 87.13
1975-07-18 87.02
1975-07-21 86.77
1975-07-22 85.72
1975-07-23 84.62
1975-07-24 84.14
1975-07-25 83.60
1975-07-28 83.09
1975-07-29 82.67
1975-07-30 83.03
1975-07-31 83.19
1975-08-01 81.62
1975-08-04 80.98
1975-08-05 80.17
1975-08-06 80.24
1975-08-07 79.59
1975-08-08 79.55
1975-08-11 79.45
1975-08-12 79.60
1975-08-13 79.09
1975-08-14 78.45
1975-08-15 78.58
1975-08-18 78.03
1975-08-19 76.65
1975-08-20 75.52
1975-08-21 75.90
1975-08-22 76.45
1975-08-25 76.84
1975-08-26 76.21
1975-08-27 76.57
1975-08-28 78.06
1975-08-29 79.01
1975-09-01 .
1975-09-02 77.89
1975-09-03 78.08
1975-09-04 78.13
1975-09-05 77.78
1975-09-08 77.46
1975-09-09 76.60
1975-09-10 75.24
1975-09-11 74.85
1975-09-12 74.72
1975-09-15 74.47
1975-09-16 73.78
1975-09-17 73.87
1975-09-18 74.78
1975-09-19 76.39
1975-09-22 75.86
1975-09-23 75.94
1975-09-24 76.43
1975-09-25 76.10
1975-09-26 76.14
1975-09-29 75.37
1975-09-30 74.33
1975-10-01 73.80
1975-10-02 74.16
1975-10-03 75.50
1975-10-06 76.03
1975-10-07 75.88
1975-10-08 76.61
1975-10-09 76.87
1975-10-10 76.96
1975-10-13 77.70
1975-10-14 78.19
1975-10-15 78.20
1975-10-16 77.63
1975-10-17 78.22
1975-10-20 78.13
1975-10-21 78.43
1975-10-22 78.91
1975-10-23 78.06
1975-10-24 78.62
1975-10-27 78.29
1975-10-28 78.73
1975-10-29 77.58
1975-10-30 77.45
1975-10-31 76.99
1975-11-03 76.62
1975-11-04 76.86
1975-11-05 77.30
1975-11-06 77.39
1975-11-07 77.21
1975-11-10 77.46
1975-11-11 78.00
1975-11-12 79.27
1975-11-13 79.22
1975-11-14 78.98
1975-11-17 79.10
1975-11-18 78.62
1975-11-19 77.87
1975-11-20 77.67
1975-11-21 77.74
1975-11-24 77.92
1975-11-25 78.18
1975-11-26 78.56
1975-11-27 .
1975-11-28 78.80
1975-12-01 78.66
1975-12-02 77.33
1975-12-03 75.67
1975-12-04 75.20
1975-12-05 74.72
1975-12-08 74.92
1975-12-09 74.52
1975-12-10 75.25
1975-12-11 75.08
1975-12-12 74.91
1975-12-15 74.54
1975-12-16 75.19
1975-12-17 75.80
1975-12-18 76.07
1975-12-19 75.92
1975-12-22 75.59
1975-12-23 75.88
1975-12-24 76.37
1975-12-25 .
1975-12-26 77.13
1975-12-29 76.94
1975-12-30 76.67
1975-12-31 77.62
1976-01-01 .
1976-01-02 78.06
1976-01-05 78.76
1976-01-06 80.27
1976-01-07 80.99
1976-01-08 81.65
1976-01-09 82.31
1976-01-12 82.71
1976-01-13 82.42
1976-01-14 83.62
1976-01-15 83.73
1976-01-16 84.30
1976-01-19 84.73
1976-01-20 84.90
1976-01-21 84.95
1976-01-22 84.62
1976-01-23 85.26
1976-01-26 85.05
1976-01-27 84.76
1976-01-28 84.63
1976-01-29 86.15
1976-01-30 87.05
1976-02-02 87.28
1976-02-03 87.38
1976-02-04 88.45
1976-02-05 88.02
1976-02-06 87.25
1976-02-09 87.83
1976-02-10 87.95
1976-02-11 88.69
1976-02-12 88.88
1976-02-13 88.96
1976-02-16 .
1976-02-17 88.82
1976-02-18 89.23
1976-02-19 90.14
1976-02-20 91.02
1976-02-23 91.31
1976-02-24 91.73
1976-02-25 92.09
1976-02-26 91.45
1976-02-27 90.26
1976-03-01 90.25
1976-03-02 90.54
1976-03-03 90.17
1976-03-04 89.65
1976-03-05 89.47
1976-03-08 89.97
1976-03-09 89.98
1976-03-10 90.20
1976-03-11 91.21
1976-03-12 90.99
1976-03-15 89.72
1976-03-16 89.86
1976-03-17 90.11
1976-03-18 89.55
1976-03-19 89.54
1976-03-22 89.69
1976-03-23 90.36
1976-03-24 90.93
1976-03-25 90.67
1976-03-26 90.89
1976-03-29 90.69
1976-03-30 90.49
1976-03-31 90.62
1976-04-01 90.44
1976-04-02 90.63
1976-04-05 91.43
1976-04-06 91.55
1976-04-07 90.80
1976-04-08 90.04
1976-04-09 88.89
1976-04-12 88.60
1976-04-13 88.66
1976-04-14 88.75
1976-04-15 89.17
1976-04-16 .
1976-04-19 89.59
1976-04-20 90.61
1976-04-21 90.77
1976-04-22 90.96
1976-04-23 90.60
1976-04-26 90.57
1976-04-27 89.98
1976-04-28 90.30
1976-04-29 90.55
1976-04-30 90.08
1976-05-03 89.05
1976-05-04 89.24
1976-05-05 89.24
1976-05-06 89.42
1976-05-07 90.02
1976-05-10 90.55
1976-05-11 90.59
1976-05-12 90.64
1976-05-13 90.22
1976-05-14 89.78
1976-05-17 89.49
1976-05-18 89.53
1976-05-19 89.25
1976-05-20 89.53
1976-05-21 89.39
1976-05-24 88.15
1976-05-25 87.81
1976-05-26 88.10
1976-05-27 87.78
1976-05-28 88.04
1976-05-31 .
1976-06-01 87.81
1976-06-02 88.16
1976-06-03 88.26
1976-06-04 87.75
1976-06-07 87.22
1976-06-08 87.12
1976-06-09 86.95
1976-06-10 87.31
1976-06-11 87.71
1976-06-14 88.40
1976-06-15 88.45
1976-06-16 88.93
1976-06-17 89.72
1976-06-18 90.05
1976-06-21 90.15
1976-06-22 89.54
1976-06-23 89.19
1976-06-24 89.80
1976-06-25 90.05
1976-06-28 89.87
1976-06-29 90.11
1976-06-30 90.32
1976-07-01 90.28
1976-07-02 90.88
1976-07-05 .
1976-07-06 90.62
1976-07-07 90.60
1976-07-08 90.79
1976-07-09 91.48
1976-07-12 91.94
1976-07-13 91.97
1976-07-14 92.44
1976-07-15 92.52
1976-07-16 92.40
1976-07-19 92.08
1976-07-20 91.68
1976-07-21 91.53
1976-07-22 91.66
1976-07-23 91.60
1976-07-26 91.48
1976-07-27 91.30
1976-07-28 91.01
1976-07-29 90.85
1976-07-30 91.29
1976-08-02 91.27
1976-08-03 92.01
1976-08-04 91.87
1976-08-05 91.48
1976-08-06 91.64
1976-08-09 91.33
1976-08-10 91.89
1976-08-11 91.81
1976-08-12 91.89
1976-08-13 91.81
1976-08-16 91.77
1976-08-17 92.01
1976-08-18 91.85
1976-08-19 90.74
1976-08-20 90.19
1976-08-23 89.60
1976-08-24 89.13
1976-08-25 89.55
1976-08-26 89.20
1976-08-27 89.14
1976-08-30 89.28
1976-08-31 89.70
1976-09-01 90.59
1976-09-02 90.68
1976-09-03 91.02
1976-09-06 .
1976-09-07 91.21
1976-09-08 91.26
1976-09-09 90.86
1976-09-10 91.19
1976-09-13 90.96
1976-09-14 90.53
1976-09-15 90.63
1976-09-16 91.04
1976-09-17 91.61
1976-09-20 91.89
1976-09-21 92.42
1976-09-22 92.44
1976-09-23 92.27
1976-09-24 92.31
1976-09-27 92.44
1976-09-28 91.64
1976-09-29 91.27
1976-09-30 91.26
1976-10-01 90.44
1976-10-04 90.46
1976-10-05 89.75
1976-10-06 89.07
1976-10-07 89.63
1976-10-08 89.38
1976-10-11 89.02
1976-10-12 88.76
1976-10-13 89.30
1976-10-14 88.73
1976-10-15 89.06
1976-10-18 89.46
1976-10-19 89.45
1976-10-20 89.63
1976-10-21 89.49
1976-10-22 89.26
1976-10-25 89.37
1976-10-26 89.42
1976-10-27 89.62
1976-10-28 89.85
1976-10-29 90.35
1976-11-01 90.39
1976-11-02 .
1976-11-03 89.38
1976-11-04 90.06
1976-11-05 89.47
1976-11-08 88.74
1976-11-09 88.08
1976-11-10 87.82
1976-11-11 88.15
1976-11-12 88.10
1976-11-15 88.13
1976-11-16 88.52
1976-11-17 89.01
1976-11-18 89.81
1976-11-19 89.97
1976-11-22 90.47
1976-11-23 90.22
1976-11-24 90.69
1976-11-25 .
1976-11-26 91.42
1976-11-29 91.08
1976-11-30 91.12
1976-12-01 91.83
1976-12-02 91.84
1976-12-03 92.31
1976-12-06 92.63
1976-12-07 93.01
1976-12-08 93.37
1976-12-09 94.10
1976-12-10 94.62
1976-12-13 94.62
1976-12-14 94.65
1976-12-15 94.92
1976-12-16 94.93
1976-12-17 94.64
1976-12-20 94.47
1976-12-21 94.68
1976-12-22 95.18
1976-12-23 95.22
1976-12-24 .
1976-12-27 95.68
1976-12-28 96.22
1976-12-29 96.29
1976-12-30 97.05
1976-12-31 97.88
1977-01-03 97.69
1977-01-04 97.22
1977-01-05 96.89
1977-01-06 97.29
1977-01-07 97.53
1977-01-10 97.31
1977-01-11 96.41
1977-01-12 96.02
1977-01-13 96.84
1977-01-14 97.20
1977-01-17 97.14
1977-01-18 97.13
1977-01-19 97.55
1977-01-20 97.08
1977-01-21 97.32
1977-01-24 97.37
1977-01-25 97.06
1977-01-26 96.51
1977-01-27 96.04
1977-01-28 95.72
1977-01-31 95.54
1977-02-01 96.30
1977-02-02 96.46
1977-02-03 96.33
1977-02-04 96.74
1977-02-07 96.61
1977-02-08 96.59
1977-02-09 95.99
1977-02-10 96.29
1977-02-11 96.09
1977-02-14 96.13
1977-02-15 96.41
1977-02-16 96.62
1977-02-17 96.56
1977-02-18 96.38
1977-02-21 .
1977-02-22 96.14
1977-02-23 95.76
1977-02-24 94.84
1977-02-25 94.90
1977-02-28 94.57
1977-03-01 95.14
1977-03-02 95.19
1977-03-03 95.53
1977-03-04 96.07
1977-03-07 96.17
1977-03-08 96.23
1977-03-09 95.75
1977-03-10 95.94
1977-03-11 96.07
1977-03-14 96.19
1977-03-15 96.39
1977-03-16 96.58
1977-03-17 96.42
1977-03-18 96.44
1977-03-21 96.26
1977-03-22 96.05
1977-03-23 95.76
1977-03-24 95.54
1977-03-25 95.28
1977-03-28 94.85
1977-03-29 94.92
1977-03-30 94.23
1977-03-31 94.13
1977-04-01 94.54
1977-04-04 93.90
1977-04-05 93.66
1977-04-06 93.89
1977-04-07 94.03
1977-04-08 .
1977-04-11 94.37
1977-04-12 95.06
1977-04-13 95.10
1977-04-14 96.00
1977-04-15 96.26
1977-04-18 96.17
1977-04-19 96.10
1977-04-20 96.36
1977-04-21 95.82
1977-04-22 95.12
1977-04-25 94.26
1977-04-26 94.12
1977-04-27 94.79
1977-04-28 95.06
1977-04-29 95.48
1977-05-02 95.83
1977-05-03 96.21
1977-05-04 96.63
1977-05-05 96.89
1977-05-06 96.90
1977-05-09 96.76
1977-05-10 97.16
1977-05-11 96.92
1977-05-12 96.96
1977-05-13 97.41
1977-05-16 97.79
1977-05-17 97.90
1977-05-18 98.47
1977-05-19 98.36
1977-05-20 98.00
1977-05-23 97.15
1977-05-24 96.66
1977-05-25 96.18
1977-05-26 96.17
1977-05-27 95.90
1977-05-30 .
1977-05-31 95.59
1977-06-01 95.86
1977-06-02 95.80
1977-06-03 96.19
1977-06-06 96.11
1977-06-07 96.17
1977-06-08 96.59
1977-06-09 96.63
1977-06-10 97.07
1977-06-13 97.28
1977-06-14 97.70
1977-06-15 97.67
1977-06-16 98.22
1977-06-17 98.61
1977-06-20 98.72
1977-06-21 98.83
1977-06-22 98.78
1977-06-23 99.17
1977-06-24 99.66
1977-06-27 99.63
1977-06-28 99.28
1977-06-29 99.34
1977-06-30 99.73
1977-07-01 99.90
1977-07-04 .
1977-07-05 100.12
1977-07-06 99.96
1977-07-07 100.28
1977-07-08 100.81
1977-07-11 100.85
1977-07-12 100.75
1977-07-13 100.93
1977-07-14 .
1977-07-15 101.41
1977-07-18 102.01
1977-07-19 102.38
1977-07-20 102.43
1977-07-21 102.70
1977-07-22 103.11
1977-07-25 103.01
1977-07-26 102.40
1977-07-27 101.25
1977-07-28 100.68
1977-07-29 100.65
1977-08-01 100.76
1977-08-02 100.40
1977-08-03 100.02
1977-08-04 100.39
1977-08-05 100.86
1977-08-08 100.55
1977-08-09 100.52
1977-08-10 100.81
1977-08-11 100.94
1977-08-12 100.76
1977-08-15 100.89
1977-08-16 100.65
1977-08-17 100.72
1977-08-18 100.86
1977-08-19 100.85
1977-08-22 101.05
1977-08-23 100.94
1977-08-24 100.75
1977-08-25 100.14
1977-08-26 99.89
1977-08-29 100.37
1977-08-30 100.11
1977-08-31 100.10
1977-09-01 100.40
1977-09-02 100.83
1977-09-05 .
1977-09-06 100.78
1977-09-07 101.16
1977-09-08 101.28
1977-09-09 100.91
1977-09-12 100.60
1977-09-13 100.46
1977-09-14 100.61
1977-09-15 100.97
1977-09-16 100.74
1977-09-19 100.35
1977-09-20 100.23
1977-09-21 99.76
1977-09-22 99.47
1977-09-23 99.57
1977-09-26 99.74
1977-09-27 99.74
1977-09-28 99.96
1977-09-29 100.27
1977-09-30 100.85
1977-10-03 101.16
1977-10-04 100.81
1977-10-05 100.82
1977-10-06 101.31
1977-10-07 101.62
1977-10-10 101.69
1977-10-11 101.23
1977-10-12 99.83
1977-10-13 99.03
1977-10-14 99.05
1977-10-17 99.14
1977-10-18 99.25
1977-10-19 98.45
1977-10-20 98.60
1977-10-21 98.54
1977-10-24 97.89
1977-10-25 96.83
1977-10-26 96.86
1977-10-27 97.07
1977-10-28 97.49
1977-10-31 97.52
1977-11-01 96.74
1977-11-02 96.51
1977-11-03 96.49
1977-11-04 97.21
1977-11-07 97.85
1977-11-08 98.21
1977-11-09 98.70
1977-11-10 99.98
1977-11-11 100.94
1977-11-14 100.98
1977-11-15 101.52
1977-11-16 101.56
1977-11-17 101.86
1977-11-18 102.22
1977-11-21 102.35
1977-11-22 102.93
1977-11-23 103.74
1977-11-24 .
1977-11-25 104.33
1977-11-28 104.06
1977-11-29 103.20
1977-11-30 103.15
1977-12-01 103.68
1977-12-02 104.10
1977-12-05 104.15
1977-12-06 102.97
1977-12-07 102.85
1977-12-08 103.06
1977-12-09 103.57
1977-12-12 103.89
1977-12-13 104.10
1977-12-14 103.96
1977-12-15 103.89
1977-12-16 104.05
1977-12-19 103.30
1977-12-20 102.50
1977-12-21 103.03
1977-12-22 103.41
1977-12-23 103.94
1977-12-26 .
1977-12-27 103.96
1977-12-28 104.04
1977-12-29 104.42
1977-12-30 105.05
1978-01-02 .
1978-01-03 104.00
1978-01-04 103.66
1978-01-05 103.21
1978-01-06 101.66
1978-01-09 100.20
1978-01-10 99.58
1978-01-11 99.09
1978-01-12 99.54
1978-01-13 99.77
1978-01-16 99.36
1978-01-17 99.98
1978-01-18 100.42
1978-01-19 100.58
1978-01-20 100.63
1978-01-23 100.34
1978-01-24 100.54
1978-01-25 100.87
1978-01-26 100.53
1978-01-27 100.62
1978-01-30 100.97
1978-01-31 100.84
1978-02-01 101.54
1978-02-02 101.94
1978-02-03 102.22
1978-02-06 102.27
1978-02-07 102.75
1978-02-08 103.18
1978-02-09 103.20
1978-02-10 103.58
1978-02-13 103.34
1978-02-14 102.78
1978-02-15 102.56
1978-02-16 102.17
1978-02-17 102.25
1978-02-20 .
1978-02-21 101.99
1978-02-22 102.13
1978-02-23 102.16
1978-02-24 102.70
1978-02-27 102.22
1978-02-28 101.47
1978-03-01 101.47
1978-03-02 101.71
1978-03-03 101.95
1978-03-06 101.74
1978-03-07 102.02
1978-03-08 102.41
1978-03-09 102.82
1978-03-10 103.42
1978-03-13 103.53
1978-03-14 103.66
1978-03-15 103.80
1978-03-16 104.38
1978-03-17 104.94
1978-03-20 105.36
1978-03-21 105.02
1978-03-22 105.16
1978-03-23 105.39
1978-03-24 .
1978-03-27 105.30
1978-03-28 105.68
1978-03-29 106.08
1978-03-30 106.18
1978-03-31 106.20
1978-04-03 105.89
1978-04-04 106.20
1978-04-05 106.95
1978-04-06 107.47
1978-04-07 108.23
1978-04-10 108.53
1978-04-11 108.44
1978-04-12 108.87
1978-04-13 109.99
1978-04-14 111.29
1978-04-17 111.91
1978-04-18 111.43
1978-04-19 111.64
1978-04-20 112.86
1978-04-21 113.32
1978-04-24 113.60
1978-04-25 114.28
1978-04-26 114.70
1978-04-27 114.59
1978-04-28 115.18
1978-05-01 115.96
1978-05-02 116.12
1978-05-03 116.21
1978-05-04 116.48
1978-05-05 117.27
1978-05-08 117.14
1978-05-09 117.05
1978-05-10 117.55
1978-05-11 118.25
1978-05-12 119.40
1978-05-15 119.80
1978-05-16 120.78
1978-05-17 121.84
1978-05-18 121.66
1978-05-19 121.57
1978-05-22 121.93
1978-05-23 120.97
1978-05-24 119.80
1978-05-25 119.82
1978-05-26 119.86
1978-05-29 .
1978-05-30 120.00
1978-05-31 120.24
1978-06-01 120.34
1978-06-02 121.03
1978-06-05 122.10
1978-06-06 122.85
1978-06-07 123.10
1978-06-08 123.99
1978-06-09 124.41
1978-06-12 124.29
1978-06-13 124.24
1978-06-14 124.51
1978-06-15 124.19
1978-06-16 123.69
1978-06-19 122.92
1978-06-20 122.03
1978-06-21 120.63
1978-06-22 120.68
1978-06-23 120.74
1978-06-26 119.54
1978-06-27 119.18
1978-06-28 119.52
1978-06-29 119.98
1978-06-30 120.30
1978-07-03 120.15
1978-07-04 .
1978-07-05 119.22
1978-07-06 118.82
1978-07-07 119.16
1978-07-10 119.38
1978-07-11 119.83
1978-07-12 120.28
1978-07-13 120.43
1978-07-14 121.58
1978-07-17 122.36
1978-07-18 122.09
1978-07-19 122.80
1978-07-20 123.75
1978-07-21 123.60
1978-07-24 123.59
1978-07-25 123.79
1978-07-26 124.48
1978-07-27 125.13
1978-07-28 125.62
1978-07-31 126.32
1978-08-01 126.81
1978-08-02 128.16
1978-08-03 129.02
1978-08-04 129.71
1978-08-07 130.21
1978-08-08 130.49
1978-08-09 131.64
1978-08-10 131.58
1978-08-11 132.00
1978-08-14 132.11
1978-08-15 131.95
1978-08-16 132.77
1978-08-17 134.14
1978-08-18 134.71
1978-08-21 133.77
1978-08-22 133.87
1978-08-23 134.73
1978-08-24 135.28
1978-08-25 135.84
1978-08-28 135.24
1978-08-29 134.63
1978-08-30 134.75
1978-08-31 135.01
1978-09-01 135.35
1978-09-04 .
1978-09-05 135.46
1978-09-06 136.48
1978-09-07 137.09
1978-09-08 138.36
1978-09-11 138.95
1978-09-12 139.24
1978-09-13 139.25
1978-09-14 138.34
1978-09-15 137.36
1978-09-18 135.65
1978-09-19 134.06
1978-09-20 132.66
1978-09-21 132.10
1978-09-22 132.30
1978-09-25 132.11
1978-09-26 132.92
1978-09-27 132.01
1978-09-28 132.11
1978-09-29 132.89
1978-10-02 133.30
1978-10-03 133.11
1978-10-04 133.10
1978-10-05 133.54
1978-10-06 134.00
1978-10-09 134.64
1978-10-10 134.93
1978-10-11 135.27
1978-10-12 135.57
1978-10-13 135.58
1978-10-16 133.94
1978-10-17 130.96
1978-10-18 128.92
1978-10-19 127.22
1978-10-20 123.82
1978-10-23 121.94
1978-10-24 121.14
1978-10-25 121.16
1978-10-26 118.00
1978-10-27 115.25
1978-10-30 112.40
1978-10-31 111.12
1978-11-01 114.65
1978-11-02 114.63
1978-11-03 115.49
1978-11-06 115.08
1978-11-07 112.83
1978-11-08 112.99
1978-11-09 113.88
1978-11-10 114.84
1978-11-13 113.00
1978-11-14 110.88
1978-11-15 111.44
1978-11-16 112.21
1978-11-17 113.69
1978-11-20 114.51
1978-11-21 114.56
1978-11-22 115.37
1978-11-23 .
1978-11-24 116.17
1978-11-27 115.97
1978-11-28 115.60
1978-11-29 114.09
1978-11-30 114.69
1978-12-01 116.19
1978-12-04 116.57
1978-12-05 117.67
1978-12-06 118.45
1978-12-07 118.55
1978-12-08 118.77
1978-12-11 119.15
1978-12-12 118.50
1978-12-13 118.13
1978-12-14 118.15
1978-12-15 117.41
1978-12-18 114.33
1978-12-19 114.73
1978-12-20 115.30
1978-12-21 115.85
1978-12-22 116.93
1978-12-25 .
1978-12-26 117.68
1978-12-27 117.33
1978-12-28 117.30
1978-12-29 117.98
1979-01-01 .
1979-01-02 117.84
1979-01-03 119.11
1979-01-04 120.66
1979-01-05 122.05
1979-01-08 121.92
1979-01-09 122.66
1979-01-10 122.28
1979-01-11 122.76
1979-01-12 123.74
1979-01-15 124.47
1979-01-16 123.74
1979-01-17 123.59
1979-01-18 124.31
1979-01-19 124.65
1979-01-22 124.66
1979-01-23 125.46
1979-01-24 125.34
1979-01-25 126.42
1979-01-26 127.04
1979-01-29 126.77
1979-01-30 126.51
1979-01-31 125.82
1979-02-01 125.76
1979-02-02 125.82
1979-02-05 124.34
1979-02-06 124.31
1979-02-07 122.80
1979-02-08 123.41
1979-02-09 123.76
1979-02-12 124.05
1979-02-13 124.89
1979-02-14 124.61
1979-02-15 124.93
1979-02-16 125.57
1979-02-19 .
1979-02-20 125.83
1979-02-21 125.76
1979-02-22 125.45
1979-02-23 125.04
1979-02-26 124.90
1979-02-27 122.64
1979-02-28 122.56
1979-03-01 123.33
1979-03-02 123.67
1979-03-05 124.72
1979-03-06 124.43
1979-03-07 125.61
1979-03-08 127.05
1979-03-09 127.25
1979-03-12 127.19
1979-03-13 127.69
1979-03-14 127.59
1979-03-15 127.85
1979-03-16 128.55
1979-03-19 129.14
1979-03-20 128.79
1979-03-21 129.44
1979-03-22 130.08
1979-03-23 130.58
1979-03-26 130.11
1979-03-27 130.78
1979-03-28 130.87
1979-03-29 131.29
1979-03-30 131.76
1979-04-02 131.36
1979-04-03 132.33
1979-04-04 132.75
1979-04-05 133.37
1979-04-06 133.75
1979-04-09 133.74
1979-04-10 134.22
1979-04-11 133.57
1979-04-12 133.54
1979-04-13 .
1979-04-16 132.48
1979-04-17 132.26
1979-04-18 132.91
1979-04-19 133.18
1979-04-20 133.67
1979-04-23 133.87
1979-04-24 134.29
1979-04-25 134.78
1979-04-26 134.65
1979-04-27 134.37
1979-04-30 133.82
1979-05-01 133.79
1979-05-02 133.99
1979-05-03 134.20
1979-05-04 133.72
1979-05-07 130.60
1979-05-08 129.60
1979-05-09 130.34
1979-05-10 129.71
1979-05-11 129.69
1979-05-14 128.99
1979-05-15 129.01
1979-05-16 129.35
1979-05-17 130.44
1979-05-18 131.01
1979-05-21 131.16
1979-05-22 131.90
1979-05-23 132.12
1979-05-24 132.10
1979-05-25 132.68
1979-05-28 .
1979-05-29 132.46
1979-05-30 131.39
1979-05-31 131.42
1979-06-01 131.76
1979-06-04 131.95
1979-06-05 133.02
1979-06-06 133.62
1979-06-07 134.55
1979-06-08 134.96
1979-06-11 135.04
1979-06-12 135.92
1979-06-13 136.01
1979-06-14 136.02
1979-06-15 136.25
1979-06-18 135.85
1979-06-19 136.05
1979-06-20 136.45
1979-06-21 136.71
1979-06-22 137.24
1979-06-25 136.89
1979-06-26 136.53
1979-06-27 137.40
1979-06-28 138.08
1979-06-29 138.13
1979-07-02 137.03
1979-07-03 137.03
1979-07-04 .
1979-07-05 137.79
1979-07-06 138.64
1979-07-09 139.15
1979-07-10 138.97
1979-07-11 138.85
1979-07-12 138.68
1979-07-13 138.52
1979-07-16 138.89
1979-07-17 137.86
1979-07-18 137.26
1979-07-19 137.57
1979-07-20 137.98
1979-07-23 137.57
1979-07-24 138.02
1979-07-25 138.97
1979-07-26 139.52
1979-07-27 140.02
1979-07-30 140.54
1979-07-31 141.33
1979-08-01 141.90
1979-08-02 142.54
1979-08-03 142.63
1979-08-06 142.41
1979-08-07 143.30
1979-08-08 144.06
1979-08-09 144.27
1979-08-10 145.07
1979-08-13 146.07
1979-08-14 146.30
1979-08-15 147.14
1979-08-16 147.44
1979-08-17 147.84
1979-08-20 147.95
1979-08-21 147.99
1979-08-22 148.74
1979-08-23 149.13
1979-08-24 149.40
1979-08-27 149.51
1979-08-28 149.54
1979-08-29 150.04
1979-08-30 150.06
1979-08-31 150.44
1979-09-03 .
1979-09-04 148.49
1979-09-05 146.03
1979-09-06 146.87
1979-09-07 148.07
1979-09-10 148.91
1979-09-11 148.39
1979-09-12 148.66
1979-09-13 149.33
1979-09-14 150.56
1979-09-17 150.46
1979-09-18 149.19
1979-09-19 149.44
1979-09-20 150.20
1979-09-21 150.65
1979-09-24 150.12
1979-09-25 149.27
1979-09-26 149.88
1979-09-27 150.37
1979-09-28 149.98
1979-10-01 149.59
1979-10-02 150.01
1979-10-03 150.51
1979-10-04 151.42
1979-10-05 152.29
1979-10-08 150.98
1979-10-09 145.20
1979-10-10 139.31
1979-10-11 140.09
1979-10-12 140.71
1979-10-15 138.39
1979-10-16 138.34
1979-10-17 139.04
1979-10-18 139.46
1979-10-19 136.59
1979-10-22 133.16
1979-10-23 132.61
1979-10-24 133.02
1979-10-25 132.72
1979-10-26 133.75
1979-10-29 133.91
1979-10-30 135.48
1979-10-31 135.53
1979-11-01 136.42
1979-11-02 136.88
1979-11-05 136.11
1979-11-06 135.66
1979-11-07 134.14
1979-11-08 134.77
1979-11-09 135.86
1979-11-12 137.05
1979-11-13 137.14
1979-11-14 137.76
1979-11-15 138.92
1979-11-16 139.07
1979-11-19 139.98
1979-11-20 139.50
1979-11-21 138.88
1979-11-22 .
1979-11-23 139.85
1979-11-26 141.95
1979-11-27 142.55
1979-11-28 143.53
1979-11-29 144.16
1979-11-30 144.26
1979-12-03 143.86
1979-12-04 144.80
1979-12-05 145.92
1979-12-06 147.04
1979-12-07 147.49
1979-12-10 147.97
1979-12-11 147.83
1979-12-12 148.51
1979-12-13 148.97
1979-12-14 150.03
1979-12-17 150.56
1979-12-18 149.72
1979-12-19 149.65
1979-12-20 150.27
1979-12-21 150.17
1979-12-24 149.97
1979-12-25 .
1979-12-26 150.01
1979-12-27 150.23
1979-12-28 150.83
1979-12-31 151.14
1980-01-01 .
1980-01-02 148.17
1980-01-03 145.97
1980-01-04 148.02
1980-01-07 148.62
1980-01-08 150.68
1980-01-09 151.60
1980-01-10 153.12
1980-01-11 153.87
1980-01-14 154.40
1980-01-15 154.96
1980-01-16 155.99
1980-01-17 155.81
1980-01-18 156.14
1980-01-21 157.35
1980-01-22 156.92
1980-01-23 158.50
1980-01-24 159.24
1980-01-25 159.70
1980-01-28 160.70
1980-01-29 160.29
1980-01-30 161.30
1980-01-31 161.75
1980-02-01 162.30
1980-02-04 162.02
1980-02-05 162.20
1980-02-06 162.99
1980-02-07 163.77
1980-02-08 165.25
1980-02-11 164.46
1980-02-12 164.57
1980-02-13 164.98
1980-02-14 163.54
1980-02-15 162.56
1980-02-18 .
1980-02-19 161.06
1980-02-20 162.10
1980-02-21 161.31
1980-02-22 160.08
1980-02-25 157.97
1980-02-26 158.50
1980-02-27 157.73
1980-02-28 157.46
1980-02-29 158.03
1980-03-03 156.87
1980-03-04 155.39
1980-03-05 152.94
1980-03-06 148.64
1980-03-07 146.19
1980-03-10 143.75
1980-03-11 144.56
1980-03-12 144.63
1980-03-13 144.98
1980-03-14 144.44
1980-03-17 139.70
1980-03-18 138.92
1980-03-19 139.97
1980-03-20 139.64
1980-03-21 138.80
1980-03-24 134.61
1980-03-25 132.52
1980-03-26 132.22
1980-03-27 124.09
1980-03-28 129.25
1980-03-31 131.00
1980-04-01 133.14
1980-04-02 135.80
1980-04-03 136.01
1980-04-04 .
1980-04-07 133.40
1980-04-08 134.37
1980-04-09 136.04
1980-04-10 137.28
1980-04-11 137.75
1980-04-14 136.67
1980-04-15 136.39
1980-04-16 135.76
1980-04-17 134.55
1980-04-18 134.66
1980-04-21 133.08
1980-04-22 135.71
1980-04-23 136.92
1980-04-24 138.69
1980-04-25 137.92
1980-04-28 138.54
1980-04-29 139.35
1980-04-30 139.99
1980-05-01 139.68
1980-05-02 140.25
1980-05-05 141.04
1980-05-06 142.23
1980-05-07 143.58
1980-05-08 143.26
1980-05-09 143.06
1980-05-12 142.96
1980-05-13 144.10
1980-05-14 145.66
1980-05-15 146.62
1980-05-16 147.24
1980-05-19 147.24
1980-05-20 146.93
1980-05-21 146.75
1980-05-22 147.96
1980-05-23 149.48
1980-05-26 .
1980-05-27 150.10
1980-05-28 150.70
1980-05-29 150.09
1980-05-30 150.45
1980-06-02 150.17
1980-06-03 149.92
1980-06-04 151.21
1980-06-05 152.21
1980-06-06 152.68
1980-06-09 153.00
1980-06-10 154.15
1980-06-11 155.22
1980-06-12 155.31
1980-06-13 156.59
1980-06-16 156.79
1980-06-17 156.98
1980-06-18 157.19
1980-06-19 156.73
1980-06-20 156.51
1980-06-23 156.99
1980-06-24 157.66
1980-06-25 158.74
1980-06-26 159.00
1980-06-27 159.18
1980-06-30 157.78
1980-07-01 158.17
1980-07-02 159.18
1980-07-03 160.87
1980-07-04 .
1980-07-07 163.63
1980-07-08 163.58
1980-07-09 164.09
1980-07-10 163.84
1980-07-11 164.82
1980-07-14 166.52
1980-07-15 167.05
1980-07-16 167.10
1980-07-17 168.67
1980-07-18 169.99
1980-07-21 170.48
1980-07-22 169.79
1980-07-23 169.82
1980-07-24 169.92
1980-07-25 169.63
1980-07-28 170.02
1980-07-29 171.06
1980-07-30 172.33
1980-07-31 171.81
1980-08-01 172.49
1980-08-04 171.89
1980-08-05 172.52
1980-08-06 173.45
1980-08-07 175.24
1980-08-08 175.88
1980-08-11 177.11
1980-08-12 176.62
1980-08-13 177.02
1980-08-14 178.76
1980-08-15 179.89
1980-08-18 177.24
1980-08-19 176.28
1980-08-20 177.68
1980-08-21 179.91
1980-08-22 181.70
1980-08-25 181.58
1980-08-26 182.39
1980-08-27 182.15
1980-08-28 180.99
1980-08-29 181.52
1980-09-01 .
1980-09-02 182.34
1980-09-03 184.53
1980-09-04 185.05
1980-09-05 185.61
1980-09-08 184.45
1980-09-09 184.84
1980-09-10 186.31
1980-09-11 188.16
1980-09-12 189.58
1980-09-15 189.59
1980-09-16 191.31
1980-09-17 193.95
1980-09-18 193.61
1980-09-19 195.33
1980-09-22 195.94
1980-09-23 195.05
1980-09-24 195.18
1980-09-25 194.05
1980-09-26 190.77
1980-09-29 185.79
1980-09-30 187.76
1980-10-01 189.62
1980-10-02 190.81
1980-10-03 193.43
1980-10-06 196.01
1980-10-07 196.17
1980-10-08 197.18
1980-10-09 197.53
1980-10-10 197.79
1980-10-13 198.87
1980-10-14 199.02
1980-10-15 199.43
1980-10-16 197.95
1980-10-17 197.24
1980-10-20 197.15
1980-10-21 196.46
1980-10-22 197.90
1980-10-23 195.81
1980-10-24 196.17
1980-10-27 194.35
1980-10-28 193.76
1980-10-29 194.49
1980-10-30 192.51
1980-10-31 192.78
1980-11-03 193.15
1980-11-04 .
1980-11-05 196.03
1980-11-06 193.96
1980-11-07 193.51
1980-11-10 193.10
1980-11-11 195.02
1980-11-12 197.78
1980-11-13 200.25
1980-11-14 201.76
1980-11-17 201.59
1980-11-18 203.76
1980-11-19 205.02
1980-11-20 206.50
1980-11-21 206.07
1980-11-24 204.22
1980-11-25 205.41
1980-11-26 207.06
1980-11-27 .
1980-11-28 208.15
1980-12-01 204.91
1980-12-02 203.71
1980-12-03 204.90
1980-12-04 206.19
1980-12-05 203.02
1980-12-08 195.87
1980-12-09 195.07
1980-12-10 193.58
1980-12-11 188.75
1980-12-12 191.22
1980-12-15 194.02
1980-12-16 191.88
1980-12-17 194.02
1980-12-18 196.01
1980-12-19 197.91
1980-12-22 199.79
1980-12-23 199.86
1980-12-24 200.14
1980-12-25 .
1980-12-26 201.28
1980-12-29 199.84
1980-12-30 200.46
1980-12-31 202.34
1981-01-01 .
1981-01-02 203.55
1981-01-05 204.17
1981-01-06 204.07
1981-01-07 197.35
1981-01-08 195.89
1981-01-09 197.66
1981-01-12 198.44
1981-01-13 198.05
1981-01-14 199.08
1981-01-15 199.85
1981-01-16 197.66
1981-01-19 201.58
1981-01-20 198.72
1981-01-21 198.09
1981-01-22 197.12
1981-01-23 197.52
1981-01-26 196.13
1981-01-27 197.18
1981-01-28 197.37
1981-01-29 197.88
1981-01-30 197.81
1981-02-02 193.09
1981-02-03 193.56
1981-02-04 194.57
1981-02-05 196.29
1981-02-06 197.87
1981-02-09 196.93
1981-02-10 196.70
1981-02-11 195.81
1981-02-12 194.61
1981-02-13 193.89
1981-02-16 .
1981-02-17 193.98
1981-02-18 194.73
1981-02-19 192.74
1981-02-20 192.29
1981-02-23 193.06
1981-02-24 193.94
1981-02-25 193.99
1981-02-26 196.13
1981-02-27 198.01
1981-03-02 199.06
1981-03-03 198.35
1981-03-04 198.75
1981-03-05 199.05
1981-03-06 199.89
1981-03-09 200.14
1981-03-10 199.03
1981-03-11 198.16
1981-03-12 200.67
1981-03-13 202.17
1981-03-16 203.44
1981-03-17 203.19
1981-03-18 204.00
1981-03-19 204.45
1981-03-20 206.29
1981-03-23 207.62
1981-03-24 207.70
1981-03-25 209.31
1981-03-26 209.53
1981-03-27 208.82
1981-03-30 209.25
1981-03-31 210.18
1981-04-01 211.34
1981-04-02 211.96
1981-04-03 212.65
1981-04-06 211.27
1981-04-07 211.76
1981-04-08 212.80
1981-04-09 213.91
1981-04-10 215.15
1981-04-13 214.33
1981-04-14 213.39
1981-04-15 212.80
1981-04-16 216.64
1981-04-17 .
1981-04-20 217.55
1981-04-21 216.73
1981-04-22 217.19
1981-04-23 218.02
1981-04-24 219.56
1981-04-27 219.88
1981-04-28 217.63
1981-04-29 216.22
1981-04-30 216.74
1981-05-01 216.68
1981-05-04 213.32
1981-05-05 211.55
1981-05-06 211.98
1981-05-07 213.66
1981-05-08 214.84
1981-05-11 212.79
1981-05-12 213.12
1981-05-13 213.78
1981-05-14 215.18
1981-05-15 216.51
1981-05-18 216.94
1981-05-19 216.12
1981-05-20 217.63
1981-05-21 218.35
1981-05-22 219.23
1981-05-25 .
1981-05-26 220.24
1981-05-27 222.17
1981-05-28 223.31
1981-05-29 223.47
1981-06-01 223.02
1981-06-02 219.59
1981-06-03 218.89
1981-06-04 219.68
1981-06-05 221.30
1981-06-08 220.84
1981-06-09 220.01
1981-06-10 220.40
1981-06-11 222.34
1981-06-12 222.76
1981-06-15 222.96
1981-06-16 220.58
1981-06-17 220.61
1981-06-18 218.71
1981-06-19 219.56
1981-06-22 218.60
1981-06-23 219.23
1981-06-24 218.77
1981-06-25 219.31
1981-06-26 219.76
1981-06-29 218.22
1981-06-30 215.75
1981-07-01 214.63
1981-07-02 212.80
1981-07-03 .
1981-07-06 209.10
1981-07-07 208.01
1981-07-08 208.44
1981-07-09 210.03
1981-07-10 210.54
1981-07-13 210.86
1981-07-14 209.88
1981-07-15 210.84
1981-07-16 212.02
1981-07-17 212.76
1981-07-20 207.27
1981-07-21 207.17
1981-07-22 206.16
1981-07-23 206.41
1981-07-24 208.00
1981-07-27 209.42
1981-07-28 208.91
1981-07-29 208.95
1981-07-30 210.03
1981-07-31 211.63
1981-08-03 210.40
1981-08-04 210.09
1981-08-05 211.03
1981-08-06 211.67
1981-08-07 211.94
1981-08-10 210.84
1981-08-11 211.67
1981-08-12 211.95
1981-08-13 212.36
1981-08-14 212.12
1981-08-17 209.65
1981-08-18 207.01
1981-08-19 207.22
1981-08-20 207.97
1981-08-21 206.76
1981-08-24 200.76
1981-08-25 197.78
1981-08-26 197.81
1981-08-27 196.82
1981-08-28 197.55
1981-08-31 195.75
1981-09-01 195.17
1981-09-02 195.39
1981-09-03 191.99
1981-09-04 189.63
1981-09-07 .
1981-09-08 184.79
1981-09-09 184.77
1981-09-10 187.55
1981-09-11 189.81
1981-09-14 189.62
1981-09-15 189.56
1981-09-16 187.82
1981-09-17 185.71
1981-09-18 184.27
1981-09-21 184.41
1981-09-22 183.26
1981-09-23 179.99
1981-09-24 180.39
1981-09-25 175.12
1981-09-28 175.03
1981-09-29 178.51
1981-09-30 180.03
1981-10-01 181.09
1981-10-02 184.37
1981-10-05 185.91
1981-10-06 185.87
1981-10-07 188.78
1981-10-08 191.01
1981-10-09 191.27
1981-10-12 191.28
1981-10-13 191.92
1981-10-14 189.43
1981-10-15 189.85
1981-10-16 190.24
1981-10-19 189.77
1981-10-20 191.23
1981-10-21 192.38
1981-10-22 192.43
1981-10-23 191.91
1981-10-26 191.01
1981-10-27 192.61
1981-10-28 193.75
1981-10-29 193.08
1981-10-30 195.24
1981-11-02 197.25
1981-11-03 198.78
1981-11-04 199.73
1981-11-05 200.02
1981-11-06 199.97
1981-11-09 199.92
1981-11-10 199.90
1981-11-11 200.05
1981-11-12 200.99
1981-11-13 200.16
1981-11-16 197.16
1981-11-17 197.68
1981-11-18 197.60
1981-11-19 197.32
1981-11-20 198.60
1981-11-23 198.01
1981-11-24 199.04
1981-11-25 200.01
1981-11-26 .
1981-11-27 201.02
1981-11-30 201.37
1981-12-01 201.13
1981-12-02 200.35
1981-12-03 199.90
1981-12-04 200.88
1981-12-07 199.71
1981-12-08 198.13
1981-12-09 198.29
1981-12-10 198.92
1981-12-11 198.64
1981-12-14 195.67
1981-12-15 195.16
1981-12-16 195.09
1981-12-17 195.70
1981-12-18 197.01
1981-12-21 196.37
1981-12-22 195.64
1981-12-23 195.45
1981-12-24 195.70
1981-12-25 .
1981-12-28 195.14
1981-12-29 193.91
1981-12-30 194.66
1981-12-31 195.84
1982-01-01 .
1982-01-04 195.53
1982-01-05 192.33
1982-01-06 191.15
1982-01-07 191.02
1982-01-08 192.05
1982-01-11 188.80
1982-01-12 187.32
1982-01-13 185.73
1982-01-14 185.89
1982-01-15 187.32
1982-01-18 187.21
1982-01-19 186.16
1982-01-20 185.72
1982-01-21 186.40
1982-01-22 185.83
1982-01-25 183.52
1982-01-26 183.41
1982-01-27 183.57
1982-01-28 186.22
1982-01-29 188.39
1982-02-01 186.82
1982-02-02 187.46
1982-02-03 187.43
1982-02-04 187.14
1982-02-05 188.21
1982-02-08 184.63
1982-02-09 182.51
1982-02-10 182.97
1982-02-11 182.25
1982-02-12 182.52
1982-02-15 .
1982-02-16 180.71
1982-02-17 181.25
1982-02-18 181.38
1982-02-19 180.65
1982-02-22 179.07
1982-02-23 177.49
1982-02-24 178.58
1982-02-25 179.44
1982-02-26 179.43
1982-03-01 180.13
1982-03-02 180.14
1982-03-03 178.01
1982-03-04 176.29
1982-03-05 173.97
1982-03-08 171.03
1982-03-09 169.71
1982-03-10 170.42
1982-03-11 170.09
1982-03-12 168.23
1982-03-15 167.92
1982-03-16 168.28
1982-03-17 168.20
1982-03-18 170.13
1982-03-19 171.76
1982-03-22 173.83
1982-03-23 174.95
1982-03-24 174.84
1982-03-25 175.83
1982-03-26 175.20
1982-03-29 175.50
1982-03-30 175.42
1982-03-31 175.65
1982-04-01 177.31
1982-04-02 178.56
1982-04-05 178.21
1982-04-06 178.68
1982-04-07 179.91
1982-04-08 181.15
1982-04-09 .
1982-04-12 180.89
1982-04-13 180.76
1982-04-14 180.41
1982-04-15 181.12
1982-04-16 182.25
1982-04-19 182.37
1982-04-20 181.94
1982-04-21 182.32
1982-04-22 183.66
1982-04-23 184.93
1982-04-26 185.80
1982-04-27 184.72
1982-04-28 184.89
1982-04-29 184.15
1982-04-30 184.70
1982-05-03 184.97
1982-05-04 185.95
1982-05-05 185.88
1982-05-06 187.27
1982-05-07 188.13
1982-05-10 187.57
1982-05-11 188.19
1982-05-12 188.06
1982-05-13 187.66
1982-05-14 188.22
1982-05-17 186.90
1982-05-18 185.81
1982-05-19 183.91
1982-05-20 182.72
1982-05-21 182.40
1982-05-24 181.71
1982-05-25 181.12
1982-05-26 178.76
1982-05-27 178.37
1982-05-28 178.54
1982-05-31 .
1982-06-01 177.36
1982-06-02 177.82
1982-06-03 177.10
1982-06-04 174.82
1982-06-07 173.87
1982-06-08 173.28
1982-06-09 170.94
1982-06-10 171.37
1982-06-11 173.55
1982-06-14 172.15
1982-06-15 171.19
1982-06-16 171.44
1982-06-17 169.85
1982-06-18 168.50
1982-06-21 168.00
1982-06-22 169.05
1982-06-23 170.86
1982-06-24 171.12
1982-06-25 170.48
1982-06-28 171.07
1982-06-29 170.53
1982-06-30 171.30
1982-07-01 170.60
1982-07-02 170.05
1982-07-05 .
1982-07-06 169.22
1982-07-07 168.08
1982-07-08 166.80
1982-07-09 168.07
1982-07-12 168.85
1982-07-13 169.35
1982-07-14 169.21
1982-07-15 169.61
1982-07-16 170.18
1982-07-19 170.09
1982-07-20 170.83
1982-07-21 171.54
1982-07-22 172.06
1982-07-23 172.11
1982-07-26 171.45
1982-07-27 170.71
1982-07-28 168.37
1982-07-29 167.60
1982-07-30 167.35
1982-08-02 168.37
1982-08-03 167.97
1982-08-04 166.56
1982-08-05 165.15
1982-08-06 163.59
1982-08-09 161.38
1982-08-10 161.32
1982-08-11 160.77
1982-08-12 159.84
1982-08-13 159.14
1982-08-16 159.68
1982-08-17 162.28
1982-08-18 164.99
1982-08-19 164.92
1982-08-20 166.96
1982-08-23 169.88
1982-08-24 172.23
1982-08-25 174.93
1982-08-26 178.17
1982-08-27 177.60
1982-08-30 178.98
1982-08-31 177.71
1982-09-01 177.30
1982-09-02 179.59
1982-09-03 182.05
1982-09-06 .
1982-09-07 180.88
1982-09-08 181.79
1982-09-09 182.77
1982-09-10 182.47
1982-09-13 182.90
1982-09-14 184.60
1982-09-15 186.31
1982-09-16 186.80
1982-09-17 186.61
1982-09-20 186.00
1982-09-21 187.91
1982-09-22 188.62
1982-09-23 188.15
1982-09-24 188.61
1982-09-27 188.64
1982-09-28 189.04
1982-09-29 188.26
1982-09-30 187.65
1982-10-01 188.70
1982-10-04 188.02
1982-10-05 188.77
1982-10-06 191.98
1982-10-07 195.59
1982-10-08 198.19
1982-10-11 202.31
1982-10-12 202.16
1982-10-13 205.17
1982-10-14 204.85
1982-10-15 204.46
1982-10-18 206.61
1982-10-19 207.48
1982-10-20 210.70
1982-10-21 214.28
1982-10-22 215.29
1982-10-25 209.92
1982-10-26 209.92
1982-10-27 212.20
1982-10-28 211.87
1982-10-29 212.63
1982-11-01 214.52
1982-11-02 217.65
1982-11-03 222.77
1982-11-04 225.01
1982-11-05 227.03
1982-11-08 226.74
1982-11-09 230.19
1982-11-10 230.41
1982-11-11 231.52
1982-11-12 232.61
1982-11-15 229.34
1982-11-16 224.97
1982-11-17 227.75
1982-11-18 229.28
1982-11-19 229.41
1982-11-22 225.79
1982-11-23 225.17
1982-11-24 226.88
1982-11-25 .
1982-11-26 228.64
1982-11-29 228.39
1982-11-30 232.31
1982-12-01 235.59
1982-12-02 236.18
1982-12-03 237.16
1982-12-06 239.29
1982-12-07 240.65
1982-12-08 240.70
1982-12-09 237.24
1982-12-10 233.85
1982-12-13 233.33
1982-12-14 231.33
1982-12-15 225.69
1982-12-16 225.60
1982-12-17 228.93
1982-12-20 227.88
1982-12-21 228.52
1982-12-22 231.04
1982-12-23 232.33
1982-12-24 .
1982-12-27 233.20
1982-12-28 232.20
1982-12-29 232.27
1982-12-30 231.28
1982-12-31 232.41
1983-01-03 230.59
1983-01-04 231.64
1983-01-05 232.73
1983-01-06 236.61
1983-01-07 238.60
1983-01-10 240.94
1983-01-11 240.85
1983-01-12 242.90
1983-01-13 243.48
1983-01-14 245.63
1983-01-17 247.14
1983-01-18 246.70
1983-01-19 245.20
1983-01-20 245.99
1983-01-21 243.97
1983-01-24 236.73
1983-01-25 239.19
1983-01-26 241.43
1983-01-27 245.44
1983-01-28 246.93
1983-01-31 248.35
1983-02-01 248.15
1983-02-02 248.28
1983-02-03 249.44
1983-02-04 251.65
1983-02-07 252.02
1983-02-08 251.10
1983-02-09 251.38
1983-02-10 254.77
1983-02-11 256.64
1983-02-14 258.67
1983-02-15 259.06
1983-02-16 259.07
1983-02-17 259.00
1983-02-18 261.29
1983-02-21 .
1983-02-22 259.18
1983-02-23 259.99
1983-02-24 262.31
1983-02-25 262.44
1983-02-28 260.67
1983-03-01 261.82
1983-03-02 263.40
1983-03-03 265.21
1983-03-04 265.94
1983-03-07 265.39
1983-03-08 263.16
1983-03-09 265.06
1983-03-10 266.08
1983-03-11 266.18
1983-03-14 264.34
1983-03-15 264.25
1983-03-16 264.66
1983-03-17 264.01
1983-03-18 265.01
1983-03-21 266.37
1983-03-22 267.52
1983-03-23 269.26
1983-03-24 270.37
1983-03-25 270.89
1983-03-28 269.15
1983-03-29 268.77
1983-03-30 270.76
1983-03-31 270.80
1983-04-01 .
1983-04-04 268.73
1983-04-05 268.83
1983-04-06 266.47
1983-04-07 266.74
1983-04-08 268.10
1983-04-11 270.81
1983-04-12 272.73
1983-04-13 275.93
1983-04-14 278.81
1983-04-15 281.60
1983-04-18 282.23
1983-04-19 281.86
1983-04-20 284.81
1983-04-21 286.84
1983-04-22 288.55
1983-04-25 286.58
1983-04-26 288.11
1983-04-27 288.93
1983-04-28 290.84
1983-04-29 293.06
1983-05-02 290.54
1983-05-03 289.65
1983-05-04 293.21
1983-05-05 297.32
1983-05-06 301.64
1983-05-09 302.65
1983-05-10 304.34
1983-05-11 302.89
1983-05-12 302.15
1983-05-13 303.75
1983-05-16 299.60
1983-05-17 301.02
1983-05-18 303.51
1983-05-19 302.82
1983-05-20 303.56
1983-05-23 303.86
1983-05-24 307.36
1983-05-25 309.16
1983-05-26 311.39
1983-05-27 312.05
1983-05-30 .
1983-05-31 308.73
1983-06-01 307.95
1983-06-02 310.45
1983-06-03 313.85
1983-06-06 315.48
1983-06-07 314.17
1983-06-08 312.49
1983-06-09 312.74
1983-06-10 315.24
1983-06-13 318.05
1983-06-14 320.04
1983-06-15 322.04
1983-06-16 326.50
1983-06-17 326.11
1983-06-20 324.63
1983-06-21 325.96
1983-06-22 328.19
1983-06-23 327.73
1983-06-24 328.91
1983-06-27 324.34
1983-06-28 315.87
1983-06-29 316.24
1983-06-30 318.70
1983-07-01 321.58
1983-07-04 .
1983-07-05 317.15
1983-07-06 316.24
1983-07-07 320.03
1983-07-08 319.57
1983-07-11 320.88
1983-07-12 316.93
1983-07-13 314.59
1983-07-14 315.49
1983-07-15 312.87
1983-07-18 310.29
1983-07-19 311.17
1983-07-20 316.76
1983-07-21 319.29
1983-07-22 320.71
1983-07-25 320.48
1983-07-26 320.38
1983-07-27 315.04
1983-07-28 308.47
1983-07-29 303.96
1983-08-01 302.08
1983-08-02 303.18
1983-08-03 303.86
1983-08-04 299.70
1983-08-05 300.20
1983-08-08 294.93
1983-08-09 294.26
1983-08-10 296.65
1983-08-11 297.56
1983-08-12 299.58
1983-08-15 301.77
1983-08-16 299.85
1983-08-17 300.84
1983-08-18 299.78
1983-08-19 299.10
1983-08-22 298.76
1983-08-23 293.66
1983-08-24 290.86
1983-08-25 289.53
1983-08-26 290.31
1983-08-29 289.36
1983-08-30 289.86
1983-08-31 292.42
1983-09-01 294.55
1983-09-02 297.85
1983-09-05 .
1983-09-06 301.23
1983-09-07 300.76
1983-09-08 301.79
1983-09-09 302.23
1983-09-12 300.76
1983-09-13 297.93
1983-09-14 298.34
1983-09-15 297.19
1983-09-16 298.27
1983-09-19 301.83
1983-09-20 303.36
1983-09-21 303.26
1983-09-22 304.56
1983-09-23 303.61
1983-09-26 303.77
1983-09-27 300.78
1983-09-28 299.76
1983-09-29 299.29
1983-09-30 296.65
1983-10-03 294.64
1983-10-04 294.81
1983-10-05 294.57
1983-10-06 295.78
1983-10-07 297.36
1983-10-10 297.42
1983-10-11 295.41
1983-10-12 291.59
1983-10-13 290.44
1983-10-14 290.04
1983-10-17 289.69
1983-10-18 283.62
1983-10-19 283.62
1983-10-20 281.25
1983-10-21 279.49
1983-10-24 276.81
1983-10-25 278.60
1983-10-26 277.85
1983-10-27 277.50
1983-10-28 276.14
1983-10-31 274.55
1983-11-01 273.04
1983-11-02 275.18
1983-11-03 274.26
1983-11-04 273.17
1983-11-07 271.12
1983-11-08 269.57
1983-11-09 271.00
1983-11-10 273.08
1983-11-11 277.13
1983-11-14 279.51
1983-11-15 278.92
1983-11-16 279.94
1983-11-17 281.26
1983-11-18 281.28
1983-11-21 283.05
1983-11-22 284.55
1983-11-23 284.69
1983-11-24 .
1983-11-25 285.49
1983-11-28 284.47
1983-11-29 285.62
1983-11-30 285.67
1983-12-01 286.07
1983-12-02 283.91
1983-12-05 282.49
1983-12-06 282.05
1983-12-07 282.15
1983-12-08 280.57
1983-12-09 280.51
1983-12-12 279.94
1983-12-13 278.92
1983-12-14 276.42
1983-12-15 275.35
1983-12-16 276.01
1983-12-19 275.58
1983-12-20 274.51
1983-12-21 275.63
1983-12-22 276.21
1983-12-23 276.54
1983-12-26 .
1983-12-27 276.68
1983-12-28 276.57
1983-12-29 277.06
1983-12-30 278.60
1984-01-02 .
1984-01-03 277.63
1984-01-04 280.97
1984-01-05 284.45
1984-01-06 287.90
1984-01-09 287.27
1984-01-10 287.63
1984-01-11 287.68
1984-01-12 287.63
1984-01-13 286.85
1984-01-16 286.29
1984-01-17 286.86
1984-01-18 287.21
1984-01-19 286.49
1984-01-20 284.41
1984-01-23 280.20
1984-01-24 278.82
1984-01-25 277.35
1984-01-26 275.61
1984-01-27 273.18
1984-01-30 269.23
1984-01-31 268.43
1984-02-01 266.43
1984-02-02 266.16
1984-02-03 264.01
1984-02-06 258.64
1984-02-07 257.81
1984-02-08 253.96
1984-02-09 251.69
1984-02-10 254.04
1984-02-13 250.57
1984-02-14 252.43
1984-02-15 252.73
1984-02-16 251.84
1984-02-17 251.33
1984-02-20 .
1984-02-21 249.96
1984-02-22 249.16
1984-02-23 247.09
1984-02-24 251.44
1984-02-27 254.32
1984-02-28 251.55
1984-02-29 252.57
1984-03-01 253.50
1984-03-02 255.54
1984-03-05 253.86
1984-03-06 252.24
1984-03-07 249.16
1984-03-08 249.66
1984-03-09 249.01
1984-03-12 249.74
1984-03-13 250.67
1984-03-14 250.25
1984-03-15 251.05
1984-03-16 253.37
1984-03-19 251.65
1984-03-20 252.74
1984-03-21 252.49
1984-03-22 250.77
1984-03-23 249.98
1984-03-26 249.30
1984-03-27 249.10
1984-03-28 251.01
1984-03-29 251.63
1984-03-30 250.78
1984-04-02 249.80
1984-04-03 248.88
1984-04-04 248.51
1984-04-05 245.74
1984-04-06 243.94
1984-04-09 242.84
1984-04-10 243.45
1984-04-11 241.79
1984-04-12 242.56
1984-04-13 244.01
1984-04-16 243.88
1984-04-17 245.59
1984-04-18 245.48
1984-04-19 245.51
1984-04-20 .
1984-04-23 243.93
1984-04-24 244.06
1984-04-25 243.90
1984-04-26 245.93
1984-04-27 246.90
1984-04-30 247.44
1984-05-01 250.26
1984-05-02 253.01
1984-05-03 252.55
1984-05-04 250.89
1984-05-07 251.35
1984-05-08 252.42
1984-05-09 252.60
1984-05-10 252.91
1984-05-11 250.57
1984-05-14 248.87
1984-05-15 249.00
1984-05-16 248.68
1984-05-17 246.12
1984-05-18 244.61
1984-05-21 243.15
1984-05-22 240.80
1984-05-23 239.58
1984-05-24 235.39
1984-05-25 235.23
1984-05-28 .
1984-05-29 232.61
1984-05-30 231.93
1984-05-31 232.82
1984-06-01 235.90
1984-06-04 238.75
1984-06-05 238.43
1984-06-06 239.49
1984-06-07 239.89
1984-06-08 240.35
1984-06-11 238.12
1984-06-12 237.04
1984-06-13 237.78
1984-06-14 235.62
1984-06-15 235.64
1984-06-18 236.82
1984-06-19 237.87
1984-06-20 238.35
1984-06-21 239.75
1984-06-22 241.11
1984-06-25 240.85
1984-06-26 237.87
1984-06-27 238.35
1984-06-28 239.75
1984-06-29 241.11
1984-07-02 237.91
1984-07-03 238.29
1984-07-04 .
1984-07-05 237.83
1984-07-06 236.72
1984-07-09 236.99
1984-07-10 236.25
1984-07-11 234.82
1984-07-12 234.22
1984-07-13 234.67
1984-07-16 233.69
1984-07-17 233.50
1984-07-18 232.23
1984-07-19 230.89
1984-07-20 229.37
1984-07-23 227.06
1984-07-24 225.73
1984-07-25 225.30
1984-07-26 227.06
1984-07-27 229.30
1984-07-30 228.95
1984-07-31 229.70
1984-08-01 233.35
1984-08-02 238.87
1984-08-03 246.24
1984-08-06 249.27
1984-08-07 249.09
1984-08-08 248.02
1984-08-09 250.33
1984-08-10 252.43
1984-08-13 251.35
1984-08-14 250.63
1984-08-15 249.70
1984-08-16 250.33
1984-08-17 250.37
1984-08-20 250.22
1984-08-21 253.33
1984-08-22 253.86
1984-08-23 254.12
1984-08-24 254.78
1984-08-27 253.29
1984-08-28 254.37
1984-08-29 254.81
1984-08-30 254.56
1984-08-31 254.64
1984-09-03 .
1984-09-04 251.39
1984-09-05 250.61
1984-09-06 252.22
1984-09-07 251.68
1984-09-10 250.53
1984-09-11 251.80
1984-09-12 251.45
1984-09-13 253.34
1984-09-14 255.60
1984-09-17 255.39
1984-09-18 253.99
1984-09-19 253.01
1984-09-20 253.13
1984-09-21 252.68
1984-09-24 250.80
1984-09-25 250.01
1984-09-26 250.23
1984-09-27 250.29
1984-09-28 249.94
1984-10-01 247.86
1984-10-02 246.10
1984-10-03 244.81
1984-10-04 245.20
1984-10-05 245.46
1984-10-08 244.56
1984-10-09 244.09
1984-10-10 243.29
1984-10-11 244.73
1984-10-12 246.11
1984-10-15 247.67
1984-10-16 247.27
1984-10-17 247.09
1984-10-18 249.76
1984-10-19 251.18
1984-10-22 250.56
1984-10-23 250.61
1984-10-24 250.83
1984-10-25 249.00
1984-10-26 247.38
1984-10-29 246.50
1984-10-30 247.45
1984-10-31 247.03
1984-11-01 247.97
1984-11-02 247.92
1984-11-05 248.41
1984-11-06 250.54
1984-11-07 249.75
1984-11-08 249.50
1984-11-09 249.50
1984-11-12 249.26
1984-11-13 247.84
1984-11-14 246.98
1984-11-15 246.01
1984-11-16 245.12
1984-11-19 242.88
1984-11-20 243.04
1984-11-21 243.01
1984-11-22 .
1984-11-23 245.45
1984-11-26 244.90
1984-11-27 245.41
1984-11-28 245.04
1984-11-29 243.30
1984-11-30 242.53
1984-12-03 240.90
1984-12-04 240.96
1984-12-05 238.78
1984-12-06 239.07
1984-12-07 238.94
1984-12-10 238.50
1984-12-11 238.79
1984-12-12 238.67
1984-12-13 238.08
1984-12-14 239.04
1984-12-17 238.46
1984-12-18 243.44
1984-12-19 244.88
1984-12-20 244.49
1984-12-21 244.28
1984-12-24 245.82
1984-12-25 .
1984-12-26 246.06
1984-12-27 245.65
1984-12-28 246.08
1984-12-31 247.35
1985-01-01 .
1985-01-02 245.91
1985-01-03 246.41
1985-01-04 246.19
1985-01-07 246.04
1985-01-08 246.00
1985-01-09 247.34
1985-01-10 249.46
1985-01-11 252.16
1985-01-14 255.46
1985-01-15 257.78
1985-01-16 260.24
1985-01-17 261.16
1985-01-18 263.05
1985-01-21 266.41
1985-01-22 268.42
1985-01-23 270.72
1985-01-24 272.34
1985-01-25 274.00
1985-01-28 275.03
1985-01-29 276.17
1985-01-30 278.58
1985-01-31 278.70
1985-02-01 278.43
1985-02-04 280.77
1985-02-05 282.72
1985-02-06 284.46
1985-02-07 287.20
1985-02-08 288.35
1985-02-11 287.43
1985-02-12 286.57
1985-02-13 288.32
1985-02-14 288.35
1985-02-15 287.72
1985-02-18 .
1985-02-19 286.91
1985-02-20 287.27
1985-02-21 286.99
1985-02-22 286.18
1985-02-25 283.95
1985-02-26 285.00
1985-02-27 284.11
1985-02-28 284.17
1985-03-01 287.16
1985-03-04 287.06
1985-03-05 287.10
1985-03-06 285.45
1985-03-07 283.19
1985-03-08 282.37
1985-03-11 281.20
1985-03-12 281.42
1985-03-13 278.21
1985-03-14 277.46
1985-03-15 277.97
1985-03-18 277.14
1985-03-19 286.91
1985-03-20 278.78
1985-03-21 279.03
1985-03-22 278.91
1985-03-25 276.26
1985-03-26 276.18
1985-03-27 277.56
1985-03-28 278.17
1985-03-29 279.20
1985-04-01 280.32
1985-04-02 279.74
1985-04-03 277.86
1985-04-04 277.44
1985-04-05 .
1985-04-08 276.45
1985-04-09 276.63
1985-04-10 278.76
1985-04-11 280.12
1985-04-12 280.63
1985-04-15 281.07
1985-04-16 282.28
1985-04-17 283.33
1985-04-18 283.11
1985-04-19 282.81
1985-04-22 281.82
1985-04-23 282.57
1985-04-24 283.07
1985-04-25 283.97
1985-04-26 284.14
1985-04-29 282.11
1985-04-30 280.56
1985-05-01 279.63
1985-05-02 279.01
1985-05-03 280.31
1985-05-06 279.85
1985-05-07 280.89
1985-05-08 281.07
1985-05-09 283.27
1985-05-10 287.46
1985-05-13 288.14
1985-05-14 287.72
1985-05-15 288.33
1985-05-16 289.75
1985-05-17 291.70
1985-05-20 294.48
1985-05-21 293.94
1985-05-22 293.03
1985-05-23 291.15
1985-05-24 292.14
1985-05-27 .
1985-05-28 290.88
1985-05-29 290.64
1985-05-30 289.94
1985-05-31 290.80
1985-06-03 290.59
1985-06-04 290.99
1985-06-05 291.77
1985-06-06 291.85
1985-06-07 291.03
1985-06-10 290.70
1985-06-11 290.54
1985-06-12 289.66
1985-06-13 286.93
1985-06-14 287.95
1985-06-17 287.38
1985-06-18 287.92
1985-06-19 288.15
1985-06-20 287.37
1985-06-21 288.71
1985-06-24 289.97
1985-06-25 292.30
1985-06-26 293.40
1985-06-27 295.34
1985-06-28 296.20
1985-07-01 296.48
1985-07-02 296.91
1985-07-03 297.33
1985-07-04 .
1985-07-05 298.58
1985-07-08 297.80
1985-07-09 297.15
1985-07-10 298.51
1985-07-11 300.52
1985-07-12 302.39
1985-07-15 303.04
1985-07-16 305.17
1985-07-17 307.77
1985-07-18 306.88
1985-07-19 307.76
1985-07-22 306.83
1985-07-23 306.23
1985-07-24 303.71
1985-07-25 304.44
1985-07-26 304.62
1985-07-29 300.94
1985-07-30 300.59
1985-07-31 301.29
1985-08-01 304.01
1985-08-02 304.53
1985-08-05 302.14
1985-08-06 300.21
1985-08-07 298.20
1985-08-08 298.72
1985-08-09 299.14
1985-08-12 298.31
1985-08-13 297.02
1985-08-14 297.64
1985-08-15 297.61
1985-08-16 296.46
1985-08-19 295.63
1985-08-20 296.36
1985-08-21 297.65
1985-08-22 296.85
1985-08-23 296.68
1985-08-26 296.29
1985-08-27 295.98
1985-08-28 296.99
1985-08-29 297.31
1985-08-30 297.71
1985-09-02 .
1985-09-03 296.56
1985-09-04 295.58
1985-09-05 295.28
1985-09-06 296.19
1985-09-09 296.06
1985-09-10 294.50
1985-09-11 291.43
1985-09-12 289.93
1985-09-13 287.21
1985-09-16 285.38
1985-09-17 281.07
1985-09-18 281.04
1985-09-19 283.59
1985-09-20 284.35
1985-09-23 286.09
1985-09-24 284.12
1985-09-25 281.82
1985-09-26 280.20
1985-09-27 .
1985-09-30 280.33
1985-10-01 281.77
1985-10-02 281.15
1985-10-03 281.41
1985-10-04 280.46
1985-10-07 278.30
1985-10-08 276.95
1985-10-09 278.28
1985-10-10 279.41
1985-10-11 281.75
1985-10-14 284.25
1985-10-15 284.97
1985-10-16 286.68
1985-10-17 288.25
1985-10-18 288.38
1985-10-21 287.71
1985-10-22 288.54
1985-10-23 289.81
1985-10-24 290.58
1985-10-25 289.49
1985-10-28 289.18
1985-10-29 291.12
1985-10-30 292.26
1985-10-31 292.54
1985-11-01 294.11
1985-11-04 294.23
1985-11-05 295.25
1985-11-06 296.74
1985-11-07 297.47
1985-11-08 300.02
1985-11-11 302.31
1985-11-12 304.41
1985-11-13 303.85
1985-11-14 305.21
1985-11-15 306.17
1985-11-18 306.10
1985-11-19 306.85
1985-11-20 307.01
1985-11-21 309.27
1985-11-22 310.80
1985-11-25 309.79
1985-11-26 310.50
1985-11-27 313.01
1985-11-28 .
1985-11-29 313.95
1985-12-02 312.95
1985-12-03 313.14
1985-12-04 316.68
1985-12-05 318.19
1985-12-06 316.59
1985-12-09 316.88
1985-12-10 317.29
1985-12-11 318.86
1985-12-12 320.58
1985-12-13 323.99
1985-12-16 325.16
1985-12-17 323.25
1985-12-18 322.48
1985-12-19 322.67
1985-12-20 323.12
1985-12-23 321.58
1985-12-24 320.37
1985-12-25 .
1985-12-26 320.29
1985-12-27 322.75
1985-12-30 323.13
1985-12-31 324.93
1986-01-01 .
1986-01-02 324.99
1986-01-03 325.72
1986-01-06 325.99
1986-01-07 329.74
1986-01-08 328.09
1986-01-09 323.01
1986-01-10 324.14
1986-01-13 324.19
1986-01-14 324.79
1986-01-15 328.19
1986-01-16 330.01
1986-01-17 330.72
1986-01-20 329.51
1986-01-21 328.52
1986-01-22 326.76
1986-01-23 326.69
1986-01-24 328.85
1986-01-27 330.10
1986-01-28 332.64
1986-01-29 334.72
1986-01-30 334.32
1986-01-31 335.77
1986-02-03 337.50
1986-02-04 337.88
1986-02-05 338.85
1986-02-06 340.76
1986-02-07 342.20
1986-02-10 344.04
1986-02-11 344.91
1986-02-12 346.27
1986-02-13 347.88
1986-02-14 350.21
1986-02-17 .
1986-02-18 352.36
1986-02-19 352.09
1986-02-20 353.11
1986-02-21 355.65
1986-02-24 355.49
1986-02-25 354.88
1986-02-26 355.27
1986-02-27 358.06
1986-02-28 359.53
1986-03-03 359.78
1986-03-04 361.01
1986-03-05 359.84
1986-03-06 361.50
1986-03-07 362.24
1986-03-10 363.93
1986-03-11 367.36
1986-03-12 369.69
1986-03-13 370.35
1986-03-14 371.83
1986-03-17 370.01
1986-03-18 371.52
1986-03-19 371.69
1986-03-20 372.71
1986-03-21 372.59
1986-03-24 370.67
1986-03-25 369.28
1986-03-26 370.60
1986-03-27 373.31
1986-03-28 .
1986-03-31 374.72
1986-04-01 374.15
1986-04-02 374.13
1986-04-03 374.51
1986-04-04 372.23
1986-04-07 369.07
1986-04-08 373.09
1986-04-09 374.16
1986-04-10 377.17
1986-04-11 378.91
1986-04-14 380.84
1986-04-15 381.71
1986-04-16 387.64
1986-04-17 389.96
1986-04-18 390.06
1986-04-21 391.04
1986-04-22 390.48
1986-04-23 389.05
1986-04-24 391.52
1986-04-25 392.34
1986-04-28 391.43
1986-04-29 389.18
1986-04-30 383.24
1986-05-01 381.67
1986-05-02 383.18
1986-05-05 386.00
1986-05-06 386.28
1986-05-07 385.33
1986-05-08 387.40
1986-05-09 389.10
1986-05-12 388.07
1986-05-13 386.66
1986-05-14 387.34
1986-05-15 385.75
1986-05-16 384.67
1986-05-19 383.74
1986-05-20 385.28
1986-05-21 386.05
1986-05-22 389.62
1986-05-23 391.91
1986-05-26 .
1986-05-27 394.89
1986-05-28 397.16
1986-05-29 397.97
1986-05-30 400.16
1986-06-02 399.35
1986-06-03 399.48
1986-06-04 399.05
1986-06-05 400.03
1986-06-06 400.25
1986-06-09 394.73
1986-06-10 392.83
1986-06-11 395.44
1986-06-12 396.53
1986-06-13 399.59
1986-06-16 398.54
1986-06-17 396.28
1986-06-18 395.24
1986-06-19 396.40
1986-06-20 396.88
1986-06-23 396.83
1986-06-24 398.92
1986-06-25 402.22
1986-06-26 402.87
1986-06-27 403.53
1986-06-30 405.51
1986-07-01 407.61
1986-07-02 409.48
1986-07-03 411.16
1986-07-04 .
1986-07-07 400.96
1986-07-08 390.65
1986-07-09 393.39
1986-07-10 392.03
1986-07-11 391.55
1986-07-14 384.80
1986-07-15 378.70
1986-07-16 379.73
1986-07-17 381.59
1986-07-18 381.07
1986-07-21 379.46
1986-07-22 379.87
1986-07-23 379.85
1986-07-24 378.74
1986-07-25 379.83
1986-07-28 374.78
1986-07-29 372.03
1986-07-30 370.83
1986-07-31 371.37
1986-08-01 370.66
1986-08-04 366.66
1986-08-05 366.75
1986-08-06 364.73
1986-08-07 365.05
1986-08-08 365.87
1986-08-11 369.94
1986-08-12 373.29
1986-08-13 376.92
1986-08-14 379.52
1986-08-15 380.18
1986-08-18 379.27
1986-08-19 378.82
1986-08-20 380.93
1986-08-21 381.15
1986-08-22 381.52
1986-08-25 379.26
1986-08-26 380.49
1986-08-27 381.69
1986-08-28 382.40
1986-08-29 382.86
1986-09-01 .
1986-09-02 380.14
1986-09-03 378.88
1986-09-04 381.03
1986-09-05 378.36
1986-09-08 372.78
1986-09-09 369.55
1986-09-10 366.80
1986-09-11 353.34
1986-09-12 346.78
1986-09-15 345.86
1986-09-16 343.67
1986-09-17 346.90
1986-09-18 348.60
1986-09-19 349.43
1986-09-22 352.55
1986-09-23 353.37
1986-09-24 354.52
1986-09-25 351.49
1986-09-26 351.61
1986-09-29 347.83
1986-09-30 350.67
1986-10-01 352.34
1986-10-02 352.59
1986-10-03 352.75
1986-10-06 353.20
1986-10-07 352.38
1986-10-08 352.90
1986-10-09 353.06
1986-10-10 353.53
1986-10-13 354.05
1986-10-14 353.77
1986-10-15 355.65
1986-10-16 356.37
1986-10-17 355.72
1986-10-20 353.51
1986-10-21 353.10
1986-10-22 353.92
1986-10-23 356.20
1986-10-24 356.66
1986-10-27 356.58
1986-10-28 357.20
1986-10-29 358.45
1986-10-30 361.05
1986-10-31 360.77
1986-11-03 361.14
1986-11-04 361.89
1986-11-05 362.08
1986-11-06 361.23
1986-11-07 360.99
1986-11-10 359.98
1986-11-11 361.31
1986-11-12 361.19
1986-11-13 358.00
1986-11-14 358.59
1986-11-17 357.07
1986-11-18 352.62
1986-11-19 349.80
1986-11-20 352.19
1986-11-21 354.65
1986-11-24 356.10
1986-11-25 356.95
1986-11-26 358.15
1986-11-27 .
1986-11-28 359.57
1986-12-01 357.87
1986-12-02 360.71
1986-12-03 363.04
1986-12-04 364.07
1986-12-05 362.96
1986-12-08 361.01
1986-12-09 359.03
1986-12-10 359.05
1986-12-11 357.73
1986-12-12 355.93
1986-12-15 353.32
1986-12-16 353.77
1986-12-17 352.29
1986-12-18 351.38
1986-12-19 352.24
1986-12-22 351.30
1986-12-23 348.76
1986-12-24 349.62
1986-12-25 .
1986-12-26 350.01
1986-12-29 348.03
1986-12-30 347.32
1986-12-31 348.83
1987-01-01 .
1987-01-02 353.26
1987-01-05 361.19
1987-01-06 366.02
1987-01-07 372.49
1987-01-08 377.54
1987-01-09 380.65
1987-01-12 385.46
1987-01-13 386.40
1987-01-14 389.95
1987-01-15 392.57
1987-01-16 389.87
1987-01-19 392.59
1987-01-20 392.06
1987-01-21 389.55
1987-01-22 393.17
1987-01-23 392.19
1987-01-26 387.98
1987-01-27 390.75
1987-01-28 392.04
1987-01-29 390.98
1987-01-30 392.06
1987-02-02 397.18
1987-02-03 399.38
1987-02-04 403.12
1987-02-05 405.70
1987-02-06 406.91
1987-02-09 405.78
1987-02-10 403.50
1987-02-11 408.25
1987-02-12 409.18
1987-02-13 412.48
1987-02-16 .
1987-02-17 418.18
1987-02-18 417.09
1987-02-19 417.03
1987-02-20 417.24
1987-02-23 415.22
1987-02-24 417.39
1987-02-25 421.01
1987-02-26 422.93
1987-02-27 424.97
1987-03-02 423.91
1987-03-03 423.56
1987-03-04 426.74
1987-03-05 429.00
1987-03-06 429.45
1987-03-09 426.79
1987-03-10 429.39
1987-03-11 431.43
1987-03-12 432.48
1987-03-13 431.97
1987-03-16 430.86
1987-03-17 434.79
1987-03-18 435.16
1987-03-19 437.00
1987-03-20 439.64
1987-03-23 438.04
1987-03-24 438.13
1987-03-25 437.48
1987-03-26 438.71
1987-03-27 436.85
1987-03-30 427.07
1987-03-31 430.05
1987-04-01 428.34
1987-04-02 432.07
1987-04-03 437.36
1987-04-06 437.78
1987-04-07 434.01
1987-04-08 434.91
1987-04-09 431.99
1987-04-10 430.93
1987-04-13 423.71
1987-04-14 413.20
1987-04-15 416.32
1987-04-16 419.46
1987-04-17 .
1987-04-20 417.73
1987-04-21 418.56
1987-04-22 418.16
1987-04-23 417.43
1987-04-24 412.62
1987-04-27 409.67
1987-04-28 411.94
1987-04-29 414.20
1987-04-30 417.81
1987-05-01 418.44
1987-05-04 418.45
1987-05-05 422.43
1987-05-06 422.38
1987-05-07 422.63
1987-05-08 423.17
1987-05-11 422.16
1987-05-12 420.53
1987-05-13 421.91
1987-05-14 422.65
1987-05-15 418.88
1987-05-18 413.54
1987-05-19 408.15
1987-05-20 406.57
1987-05-21 408.47
1987-05-22 407.40
1987-05-25 .
1987-05-26 411.44
1987-05-27 412.59
1987-05-28 414.35
1987-05-29 416.54
1987-06-01 415.01
1987-06-02 413.60
1987-06-03 415.90
1987-06-04 417.41
1987-06-05 417.82
1987-06-08 419.41
1987-06-09 421.67
1987-06-10 422.81
1987-06-11 423.37
1987-06-12 425.38
1987-06-15 425.39
1987-06-16 427.53
1987-06-17 428.44
1987-06-18 428.97
1987-06-19 429.08
1987-06-22 429.25
1987-06-23 427.98
1987-06-24 427.26
1987-06-25 427.20
1987-06-26 426.68
1987-06-29 426.48
1987-06-30 424.67
1987-07-01 424.46
1987-07-02 425.88
1987-07-03 .
1987-07-06 425.10
1987-07-07 424.55
1987-07-08 424.93
1987-07-09 425.58
1987-07-10 426.00
1987-07-13 426.53
1987-07-14 431.14
1987-07-15 431.21
1987-07-16 433.21
1987-07-17 434.08
1987-07-20 431.51
1987-07-21 429.37
1987-07-22 429.30
1987-07-23 427.63
1987-07-24 429.13
1987-07-27 428.87
1987-07-28 429.97
1987-07-29 431.20
1987-07-30 433.57
1987-07-31 434.93
1987-08-03 433.13
1987-08-04 432.77
1987-08-05 436.26
1987-08-06 440.80
1987-08-07 443.58
1987-08-10 446.27
1987-08-11 449.36
1987-08-12 449.23
1987-08-13 451.55
1987-08-14 451.61
1987-08-17 451.65
1987-08-18 446.76
1987-08-19 447.95
1987-08-20 452.75
1987-08-21 455.20
1987-08-24 453.80
1987-08-25 455.10
1987-08-26 455.26
1987-08-27 454.79
1987-08-28 453.29
1987-08-31 454.97
1987-09-01 452.50
1987-09-02 448.93
1987-09-03 448.36
1987-09-04 446.48
1987-09-07 .
1987-09-08 437.60
1987-09-09 439.19
1987-09-10 443.48
1987-09-11 446.17
1987-09-14 445.49
1987-09-15 441.94
1987-09-16 440.85
1987-09-17 440.75
1987-09-18 440.86
1987-09-21 436.01
1987-09-22 437.90
1987-09-23 440.70
1987-09-24 441.24
1987-09-25 441.88
1987-09-28 442.29
1987-09-29 441.86
1987-09-30 444.29
1987-10-01 448.45
1987-10-02 451.61
1987-10-05 453.63
1987-10-06 447.51
1987-10-07 444.64
1987-10-08 440.03
1987-10-09 438.43
1987-10-12 433.04
1987-10-13 434.81
1987-10-14 428.28
1987-10-15 422.51
1987-10-16 406.33
1987-10-19 360.21
1987-10-20 327.79
1987-10-21 351.86
1987-10-22 336.13
1987-10-23 328.45
1987-10-26 298.90
1987-10-27 296.34
1987-10-28 291.88
1987-10-29 307.05
1987-10-30 323.30
1987-11-02 328.33
1987-11-03 320.66
1987-11-04 320.13
1987-11-05 326.18
1987-11-06 326.39
1987-11-09 320.43
1987-11-10 315.19
1987-11-11 317.80
1987-11-12 324.00
1987-11-13 322.97
1987-11-16 322.37
1987-11-17 316.75
1987-11-18 318.22
1987-11-19 313.93
1987-11-20 312.49
1987-11-23 313.13
1987-11-24 316.68
1987-11-25 317.78
1987-11-26 .
1987-11-27 316.47
1987-11-30 305.16
1987-12-01 305.24
1987-12-02 305.22
1987-12-03 298.75
1987-12-04 292.92
1987-12-07 294.77
1987-12-08 297.96
1987-12-09 301.95
1987-12-10 300.81
1987-12-11 302.57
1987-12-14 309.36
1987-12-15 312.68
1987-12-16 319.25
1987-12-17 319.51
1987-12-18 326.91
1987-12-21 328.67
1987-12-22 327.30
1987-12-23 331.48
1987-12-24 333.19
1987-12-25 .
1987-12-28 325.60
1987-12-29 325.53
1987-12-30 329.70
1987-12-31 330.47
1988-01-01 .
1988-01-04 338.48
1988-01-05 344.07
1988-01-06 346.72
1988-01-07 349.66
1988-01-08 338.47
1988-01-11 336.20
1988-01-12 331.97
1988-01-13 332.68
1988-01-14 334.23
1988-01-15 340.14
1988-01-18 340.53
1988-01-19 340.36
1988-01-20 333.68
1988-01-21 334.25
1988-01-22 337.59
1988-01-25 340.51
1988-01-26 339.22
1988-01-27 339.80
1988-01-28 342.36
1988-01-29 344.66
1988-02-01 346.20
1988-02-02 347.19
1988-02-03 343.71
1988-02-04 344.66
1988-02-05 345.75
1988-02-08 344.52
1988-02-09 344.97
1988-02-10 349.32
1988-02-11 351.04
1988-02-12 353.27
1988-02-15 .
1988-02-16 354.74
1988-02-17 355.28
1988-02-18 355.63
1988-02-19 357.12
1988-02-22 359.98
1988-02-23 361.08
1988-02-24 363.14
1988-02-25 363.62
1988-02-26 363.40
1988-02-29 366.94
1988-03-01 367.32
1988-03-02 370.38
1988-03-03 372.01
1988-03-04 373.37
1988-03-07 374.54
1988-03-08 376.93
1988-03-09 380.28
1988-03-10 376.76
1988-03-11 375.48
1988-03-14 376.67
1988-03-15 376.57
1988-03-16 378.54
1988-03-17 380.70
1988-03-18 381.58
1988-03-21 378.57
1988-03-22 379.76
1988-03-23 380.09
1988-03-24 375.60
1988-03-25 372.54
1988-03-28 370.42
1988-03-29 372.96
1988-03-30 371.78
1988-03-31 374.64
1988-04-01 .
1988-04-04 371.89
1988-04-05 373.41
1988-04-06 377.74
1988-04-07 378.88
1988-04-08 381.83
1988-04-11 382.52
1988-04-12 383.38
1988-04-13 383.41
1988-04-14 374.52
1988-04-15 373.90
1988-04-18 375.11
1988-04-19 376.86
1988-04-20 374.24
1988-04-21 373.20
1988-04-22 374.04
1988-04-25 375.27
1988-04-26 377.84
1988-04-27 378.67
1988-04-28 378.77
1988-04-29 379.23
1988-05-02 379.74
1988-05-03 382.23
1988-05-04 381.62
1988-05-05 379.51
1988-05-06 379.42
1988-05-09 376.27
1988-05-10 375.43
1988-05-11 369.24
1988-05-12 370.23
1988-05-13 372.48
1988-05-16 373.35
1988-05-17 372.27
1988-05-18 366.99
1988-05-19 366.25
1988-05-20 366.03
1988-05-23 363.26
1988-05-24 365.16
1988-05-25 365.73
1988-05-26 367.29
1988-05-27 366.66
1988-05-30 .
1988-05-31 370.34
1988-06-01 374.81
1988-06-02 374.65
1988-06-03 376.86
1988-06-06 379.35
1988-06-07 379.32
1988-06-08 383.41
1988-06-09 384.60
1988-06-10 386.25
1988-06-13 386.81
1988-06-14 388.53
1988-06-15 389.08
1988-06-16 387.10
1988-06-17 386.92
1988-06-20 385.99
1988-06-21 387.75
1988-06-22 390.53
1988-06-23 391.03
1988-06-24 391.62
1988-06-27 389.00
1988-06-28 391.67
1988-06-29 391.66
1988-06-30 394.66
1988-07-01 394.69
1988-07-04 .
1988-07-05 396.11
1988-07-06 395.45
1988-07-07 395.43
1988-07-08 394.33
1988-07-11 394.15
1988-07-12 393.52
1988-07-13 393.56
1988-07-14 394.67
1988-07-15 394.59
1988-07-18 394.77
1988-07-19 391.28
1988-07-20 391.63
1988-07-21 388.86
1988-07-22 387.35
1988-07-25 387.12
1988-07-26 385.79
1988-07-27 383.32
1988-07-28 384.08
1988-07-29 387.33
1988-08-01 388.00
1988-08-02 387.80
1988-08-03 388.52
1988-08-04 388.86
1988-08-05 387.71
1988-08-08 387.66
1988-08-09 384.23
1988-08-10 378.51
1988-08-11 379.11
1988-08-12 378.95
1988-08-15 374.07
1988-08-16 375.66
1988-08-17 376.22
1988-08-18 377.22
1988-08-19 377.42
1988-08-22 373.73
1988-08-23 373.53
1988-08-24 376.03
1988-08-25 374.04
1988-08-26 374.43
1988-08-29 376.21
1988-08-30 376.49
1988-08-31 376.55
1988-09-01 372.96
1988-09-02 376.51
1988-09-05 .
1988-09-06 377.33
1988-09-07 377.96
1988-09-08 379.73
1988-09-09 381.60
1988-09-12 382.07
1988-09-13 382.38
1988-09-14 383.85
1988-09-15 382.70
1988-09-16 383.91
1988-09-19 383.44
1988-09-20 384.10
1988-09-21 384.91
1988-09-22 384.86
1988-09-23 384.97
1988-09-26 382.75
1988-09-27 382.22
1988-09-28 383.28
1988-09-29 386.05
1988-09-30 387.71
1988-10-03 384.48
1988-10-04 384.20
1988-10-05 384.52
1988-10-06 385.15
1988-10-07 385.67
1988-10-10 385.49
1988-10-11 385.28
1988-10-12 382.55
1988-10-13 383.46
1988-10-14 384.59
1988-10-17 385.01
1988-10-18 386.25
1988-10-19 385.76
1988-10-20 388.62
1988-10-21 388.59
1988-10-24 387.23
1988-10-25 386.12
1988-10-26 385.19
1988-10-27 381.77
1988-10-28 382.79
1988-10-31 382.46
1988-11-01 382.35
1988-11-02 381.78
1988-11-03 382.77
1988-11-04 381.02
1988-11-07 376.51
1988-11-08 378.84
1988-11-09 377.74
1988-11-10 378.40
1988-11-11 373.76
1988-11-14 372.36
1988-11-15 372.13
1988-11-16 367.79
1988-11-17 367.43
1988-11-18 367.58
1988-11-21 365.07
1988-11-22 365.36
1988-11-23 367.76
1988-11-24 .
1988-11-25 366.38
1988-11-28 366.09
1988-11-29 368.15
1988-11-30 371.45
1988-12-01 373.87
1988-12-02 373.91
1988-12-05 375.41
1988-12-06 377.00
1988-12-07 376.36
1988-12-08 375.22
1988-12-09 375.20
1988-12-12 374.20
1988-12-13 372.98
1988-12-14 372.77
1988-12-15 373.01
1988-12-16 375.80
1988-12-19 376.39
1988-12-20 376.05
1988-12-21 375.60
1988-12-22 376.50
1988-12-23 377.34
1988-12-26 .
1988-12-27 376.64
1988-12-28 376.76
1988-12-29 379.05
1988-12-30 381.38
1989-01-02 .
1989-01-03 378.56
1989-01-04 382.76
1989-01-05 383.79
1989-01-06 384.74
1989-01-09 385.28
1989-01-10 384.59
1989-01-11 385.31
1989-01-12 387.01
1989-01-13 387.09
1989-01-16 387.36
1989-01-17 386.05
1989-01-18 388.88
1989-01-19 391.08
1989-01-20 391.66
1989-01-23 389.99
1989-01-24 391.99
1989-01-25 394.03
1989-01-26 397.09
1989-01-27 397.96
1989-01-30 399.22
1989-01-31 401.30
1989-02-01 403.23
1989-02-02 405.16
1989-02-03 406.35
1989-02-06 406.00
1989-02-07 409.19
1989-02-08 407.97
1989-02-09 406.39
1989-02-10 402.37
1989-02-13 401.27
1989-02-14 402.02
1989-02-15 404.17
1989-02-16 405.70
1989-02-17 407.19
1989-02-20 .
1989-02-21 406.38
1989-02-22 402.49
1989-02-23 403.07
1989-02-24 399.96
1989-02-27 398.94
1989-02-28 399.71
1989-03-01 399.80
1989-03-02 402.53
1989-03-03 403.99
1989-03-06 406.26
1989-03-07 406.18
1989-03-08 406.40
1989-03-09 405.67
1989-03-10 405.90
1989-03-13 406.56
1989-03-14 406.01
1989-03-15 406.98
1989-03-16 409.51
1989-03-17 402.19
1989-03-20 398.50
1989-03-21 401.77
1989-03-22 400.57
1989-03-23 400.94
1989-03-24 .
1989-03-27 400.56
1989-03-28 402.60
1989-03-29 403.70
1989-03-30 404.56
1989-03-31 406.73
1989-04-03 407.65
1989-04-04 407.18
1989-04-05 408.30
1989-04-06 408.20
1989-04-07 410.71
1989-04-10 411.14
1989-04-11 413.54
1989-04-12 415.68
1989-04-13 413.86
1989-04-14 417.68
1989-04-17 417.76
1989-04-18 420.72
1989-04-19 421.91
1989-04-20 421.51
1989-04-21 423.76
1989-04-24 423.18
1989-04-25 422.71
1989-04-26 423.38
1989-04-27 426.18
1989-04-28 427.55
1989-05-01 427.47
1989-05-02 428.03
1989-05-03 428.84
1989-05-04 429.23
1989-05-05 430.74
1989-05-08 429.32
1989-05-09 428.97
1989-05-10 429.64
1989-05-11 430.63
1989-05-12 434.83
1989-05-15 436.21
1989-05-16 435.66
1989-05-17 438.52
1989-05-18 439.81
1989-05-19 442.05
1989-05-22 441.78
1989-05-23 440.15
1989-05-24 441.49
1989-05-25 442.89
1989-05-26 445.21
1989-05-29 .
1989-05-30 444.21
1989-05-31 446.17
1989-06-01 448.32
1989-06-02 451.63
1989-06-05 447.84
1989-06-06 447.96
1989-06-07 452.20
1989-06-08 453.99
1989-06-09 453.65
1989-06-12 453.39
1989-06-13 450.73
1989-06-14 450.64
1989-06-15 447.10
1989-06-16 447.21
1989-06-19 446.09
1989-06-20 444.58
1989-06-21 443.86
1989-06-22 445.33
1989-06-23 448.36
1989-06-26 447.29
1989-06-27 448.55
1989-06-28 444.90
1989-06-29 437.91
1989-06-30 435.29
1989-07-03 436.00
1989-07-04 .
1989-07-05 436.94
1989-07-06 439.57
1989-07-07 442.42
1989-07-10 442.69
1989-07-11 444.50
1989-07-12 446.81
1989-07-13 447.89
1989-07-14 448.90
1989-07-17 449.88
1989-07-18 447.86
1989-07-19 451.23
1989-07-20 449.24
1989-07-21 449.29
1989-07-24 445.98
1989-07-25 446.47
1989-07-26 449.12
1989-07-27 452.48
1989-07-28 452.82
1989-07-31 453.84
1989-08-01 453.29
1989-08-02 454.08
1989-08-03 456.93
1989-08-04 457.42
1989-08-07 461.73
1989-08-08 463.30
1989-08-09 462.41
1989-08-10 463.55
1989-08-11 462.48
1989-08-14 459.99
1989-08-15 460.91
1989-08-16 460.79
1989-08-17 460.83
1989-08-18 461.97
1989-08-21 458.33
1989-08-22 458.36
1989-08-23 461.68
1989-08-24 465.88
1989-08-25 466.75
1989-08-28 467.19
1989-08-29 466.57
1989-08-30 468.27
1989-08-31 469.33
1989-09-01 471.34
1989-09-04 .
1989-09-05 471.42
1989-09-06 469.25
1989-09-07 469.68
1989-09-08 471.31
1989-09-11 470.42
1989-09-12 471.86
1989-09-13 471.83
1989-09-14 468.78
1989-09-15 467.57
1989-09-18 466.89
1989-09-19 467.05
1989-09-20 466.72
1989-09-21 467.00
1989-09-22 468.07
1989-09-25 466.71
1989-09-26 467.84
1989-09-27 467.77
1989-09-28 471.14
1989-09-29 472.92
1989-10-02 475.19
1989-10-03 477.28
1989-10-04 479.32
1989-10-05 480.66
1989-10-06 483.64
1989-10-09 485.73
1989-10-10 484.14
1989-10-11 482.16
1989-10-12 482.19
1989-10-13 467.29
1989-10-16 460.98
1989-10-17 459.93
1989-10-18 463.28
1989-10-19 470.80
1989-10-20 470.67
1989-10-23 467.22
1989-10-24 461.70
1989-10-25 462.89
1989-10-26 458.15
1989-10-27 452.76
1989-10-30 451.37
1989-10-31 455.63
1989-11-01 456.64
1989-11-02 453.14
1989-11-03 452.97
1989-11-06 448.02
1989-11-07 449.40
1989-11-08 454.05
1989-11-09 454.07
1989-11-10 456.19
1989-11-13 455.94
1989-11-14 454.03
1989-11-15 455.84
1989-11-16 455.28
1989-11-17 456.72
1989-11-20 455.71
1989-11-21 454.14
1989-11-22 455.14
1989-11-23 .
1989-11-24 456.63
1989-11-27 456.17
1989-11-28 456.66
1989-11-29 455.81
1989-11-30 456.09
1989-12-01 457.10
1989-12-04 458.28
1989-12-05 458.55
1989-12-06 456.67
1989-12-07 456.31
1989-12-08 456.22
1989-12-11 452.42
1989-12-12 450.43
1989-12-13 451.14
1989-12-14 447.48
1989-12-15 443.84
1989-12-18 436.03
1989-12-19 434.35
1989-12-20 436.94
1989-12-21 441.09
1989-12-22 444.57
1989-12-25 .
1989-12-26 445.26
1989-12-27 448.81
1989-12-28 449.98
1989-12-29 454.82
1990-01-01 .
1990-01-02 459.33
1990-01-03 460.90
1990-01-04 459.39
1990-01-05 458.22
1990-01-08 458.71
1990-01-09 456.77
1990-01-10 450.70
1990-01-11 448.86
1990-01-12 439.72
1990-01-15 436.64
1990-01-16 440.16
1990-01-17 438.68
1990-01-18 437.52
1990-01-19 440.88
1990-01-22 431.94
1990-01-23 430.42
1990-01-24 425.66
1990-01-25 425.24
1990-01-26 421.33
1990-01-29 418.11
1990-01-30 410.72
1990-01-31 415.81
1990-02-01 417.76
1990-02-02 422.21
1990-02-05 424.73
1990-02-06 423.99
1990-02-07 426.79
1990-02-08 427.32
1990-02-09 428.84
1990-02-12 426.38
1990-02-13 425.75
1990-02-14 426.56
1990-02-15 429.61
1990-02-16 429.01
1990-02-19 .
1990-02-20 423.83
1990-02-21 421.52
1990-02-22 422.75
1990-02-23 419.52
1990-02-26 420.95
1990-02-27 422.61
1990-02-28 425.83
1990-03-01 427.21
1990-03-02 431.02
1990-03-05 430.15
1990-03-06 432.33
1990-03-07 432.47
1990-03-08 436.50
1990-03-09 436.76
1990-03-12 436.56
1990-03-13 434.58
1990-03-14 436.15
1990-03-15 438.06
1990-03-16 442.16
1990-03-19 442.91
1990-03-20 440.08
1990-03-21 439.30
1990-03-22 434.51
1990-03-23 437.25
1990-03-26 438.84
1990-03-27 439.50
1990-03-28 436.69
1990-03-29 435.42
1990-03-30 435.54
1990-04-02 433.18
1990-04-03 437.65
1990-04-04 435.42
1990-04-05 433.42
1990-04-06 430.90
1990-04-09 430.18
1990-04-10 431.90
1990-04-11 433.53
1990-04-12 436.31
1990-04-13 .
1990-04-16 436.70
1990-04-17 435.42
1990-04-18 431.52
1990-04-19 429.00
1990-04-20 425.79
1990-04-23 420.08
1990-04-24 419.19
1990-04-25 420.56
1990-04-26 421.06
1990-04-27 417.98
1990-04-30 420.07
1990-05-01 421.85
1990-05-02 423.58
1990-05-03 425.44
1990-05-04 428.61
1990-05-07 431.23
1990-05-08 431.84
1990-05-09 431.34
1990-05-10 433.20
1990-05-11 438.10
1990-05-14 441.61
1990-05-15 442.50
1990-05-16 442.93
1990-05-17 445.74
1990-05-18 448.31
1990-05-21 452.89
1990-05-22 453.89
1990-05-23 456.87
1990-05-24 458.29
1990-05-25 453.69
1990-05-28 .
1990-05-29 457.51
1990-05-30 458.77
1990-05-31 458.97
1990-06-01 462.13
1990-06-04 465.61
1990-06-05 464.61
1990-06-06 464.96
1990-06-07 464.09
1990-06-08 460.87
1990-06-11 462.79
1990-06-12 466.56
1990-06-13 468.86
1990-06-14 467.10
1990-06-15 467.55
1990-06-18 460.79
1990-06-19 460.53
1990-06-20 460.80
1990-06-21 461.27
1990-06-22 459.33
1990-06-25 455.64
1990-06-26 455.38
1990-06-27 456.89
1990-06-28 460.38
1990-06-29 462.29
1990-07-02 462.04
1990-07-03 461.76
1990-07-04 .
1990-07-05 459.19
1990-07-06 460.53
1990-07-09 461.68
1990-07-10 460.97
1990-07-11 463.90
1990-07-12 467.17
1990-07-13 468.44
1990-07-16 469.60
1990-07-17 464.48
1990-07-18 460.82
1990-07-19 458.17
1990-07-20 455.27
1990-07-23 444.64
1990-07-24 442.56
1990-07-25 445.45
1990-07-26 445.43
1990-07-27 442.59
1990-07-30 439.38
1990-07-31 438.24
1990-08-01 435.91
1990-08-02 428.89
1990-08-03 417.46
1990-08-06 400.04
1990-08-07 402.08
1990-08-08 407.73
1990-08-09 412.98
1990-08-10 408.03
1990-08-13 408.30
1990-08-14 410.33
1990-08-15 411.45
1990-08-16 402.27
1990-08-17 393.49
1990-08-20 388.59
1990-08-21 379.68
1990-08-22 374.84
1990-08-23 360.22
1990-08-24 367.33
1990-08-27 381.27
1990-08-28 382.86
1990-08-29 381.78
1990-08-30 378.68
1990-08-31 381.21
1990-09-03 .
1990-09-04 381.67
1990-09-05 382.44
1990-09-06 378.78
1990-09-07 380.38
1990-09-10 381.73
1990-09-11 379.49
1990-09-12 380.32
1990-09-13 376.18
1990-09-14 374.42
1990-09-17 374.11
1990-09-18 372.21
1990-09-19 371.68
1990-09-20 364.43
1990-09-21 362.25
1990-09-24 352.16
1990-09-25 354.78
1990-09-26 350.03
1990-09-27 341.19
1990-09-28 344.51
1990-10-01 354.65
1990-10-02 356.39
1990-10-03 351.45
1990-10-04 349.89
1990-10-05 347.36
1990-10-08 348.14
1990-10-09 339.11
1990-10-10 333.25
1990-10-11 325.61
1990-10-12 327.55
1990-10-15 329.54
1990-10-16 325.44
1990-10-17 326.78
1990-10-18 334.03
1990-10-19 337.36
1990-10-22 341.12
1990-10-23 341.09
1990-10-24 340.98
1990-10-25 339.74
1990-10-26 334.36
1990-10-29 330.80
1990-10-30 329.83
1990-10-31 329.84
1990-11-01 330.60
1990-11-02 336.45
1990-11-05 340.76
1990-11-06 340.53
1990-11-07 336.80
1990-11-08 336.37
1990-11-09 341.95
1990-11-12 351.46
1990-11-13 352.87
1990-11-14 356.87
1990-11-15 354.46
1990-11-16 350.85
1990-11-19 352.73
1990-11-20 348.29
1990-11-21 348.77
1990-11-22 .
1990-11-23 349.04
1990-11-26 348.86
1990-11-27 354.05
1990-11-28 355.06
1990-11-29 355.75
1990-11-30 359.06
1990-12-03 361.32
1990-12-04 364.11
1990-12-05 370.87
1990-12-06 372.29
1990-12-07 371.54
1990-12-10 371.47
1990-12-11 367.99
1990-12-12 370.42
1990-12-13 371.50
1990-12-14 368.83
1990-12-17 365.72
1990-12-18 370.17
1990-12-19 371.22
1990-12-20 372.30
1990-12-21 373.60
1990-12-24 372.41
1990-12-25 .
1990-12-26 372.40
1990-12-27 371.05
1990-12-28 371.20
1990-12-31 373.84
1991-01-01 .
1991-01-02 372.19
1991-01-03 367.51
1991-01-04 367.24
1991-01-07 360.24
1991-01-08 359.00
1991-01-09 357.45
1991-01-10 361.92
1991-01-11 361.80
1991-01-14 355.75
1991-01-15 357.30
1991-01-16 365.20
1991-01-17 375.81
1991-01-18 376.99
1991-01-21 379.70
1991-01-22 379.03
1991-01-23 383.91
1991-01-24 391.33
1991-01-25 394.28
1991-01-28 396.80
1991-01-29 400.61
1991-01-30 408.53
1991-01-31 414.20
1991-02-01 417.69
1991-02-04 424.80
1991-02-05 432.20
1991-02-06 439.24
1991-02-07 435.01
1991-02-08 436.80
1991-02-11 444.10
1991-02-12 443.98
1991-02-13 447.97
1991-02-14 444.31
1991-02-15 448.71
1991-02-18 .
1991-02-19 450.32
1991-02-20 446.02
1991-02-21 446.38
1991-02-22 448.95
1991-02-25 451.09
1991-02-26 447.71
1991-02-27 450.82
1991-02-28 453.05
1991-03-01 456.73
1991-03-04 461.13
1991-03-05 473.05
1991-03-06 473.80
1991-03-07 475.74
1991-03-08 475.11
1991-03-11 467.15
1991-03-12 461.40
1991-03-13 468.18
1991-03-14 467.79
1991-03-15 466.29
1991-03-18 466.27
1991-03-19 462.81
1991-03-20 466.09
1991-03-21 464.60
1991-03-22 464.15
1991-03-25 468.49
1991-03-26 478.57
1991-03-27 482.37
1991-03-28 482.30
1991-03-29 .
1991-04-01 480.86
1991-04-02 491.20
1991-04-03 495.05
1991-04-04 497.57
1991-04-05 495.79
1991-04-08 495.65
1991-04-09 492.46
1991-04-10 490.76
1991-04-11 499.31
1991-04-12 501.62
1991-04-15 500.84
1991-04-16 506.75
1991-04-17 511.31
1991-04-18 506.62
1991-04-19 501.19
1991-04-22 494.38
1991-04-23 496.08
1991-04-24 498.45
1991-04-25 496.03
1991-04-26 494.64
1991-04-29 487.74
1991-04-30 484.72
1991-05-01 487.85
1991-05-02 491.13
1991-05-03 492.10
1991-05-06 491.48
1991-05-07 491.51
1991-05-08 492.51
1991-05-09 497.81
1991-05-10 493.42
1991-05-13 493.93
1991-05-14 488.79
1991-05-15 478.08
1991-05-16 481.77
1991-05-17 481.38
1991-05-20 480.10
1991-05-21 483.60
1991-05-22 487.29
1991-05-23 489.60
1991-05-24 492.67
1991-05-27 .
1991-05-28 497.17
1991-05-29 499.05
1991-05-30 503.19
1991-05-31 506.11
1991-06-03 507.10
1991-06-04 507.25
1991-06-05 505.20
1991-06-06 502.94
1991-06-07 498.54
1991-06-10 495.85
1991-06-11 496.62
1991-06-12 491.05
1991-06-13 491.14
1991-06-14 495.07
1991-06-17 494.32
1991-06-18 491.59
1991-06-19 485.36
1991-06-20 485.88
1991-06-21 485.82
1991-06-24 475.23
1991-06-25 473.30
1991-06-26 473.08
1991-06-27 476.24
1991-06-28 475.92
1991-07-01 481.31
1991-07-02 478.78
1991-07-03 474.32
1991-07-04 .
1991-07-05 474.05
1991-07-08 479.51
1991-07-09 483.64
1991-07-10 487.17
1991-07-11 488.37
1991-07-12 492.71
1991-07-15 496.19
1991-07-16 493.60
1991-07-17 493.42
1991-07-18 496.80
1991-07-19 497.55
1991-07-22 494.99
1991-07-23 489.65
1991-07-24 487.42
1991-07-25 490.28
1991-07-26 492.69
1991-07-29 493.35
1991-07-30 498.27
1991-07-31 502.04
1991-08-01 504.15
1991-08-02 505.67
1991-08-05 502.61
1991-08-06 505.20
1991-08-07 507.46
1991-08-08 509.39
1991-08-09 508.31
1991-08-12 510.00
1991-08-13 514.40
1991-08-14 517.68
1991-08-15 515.67
1991-08-16 512.47
1991-08-19 497.64
1991-08-20 502.05
1991-08-21 517.97
1991-08-22 518.30
1991-08-23 521.06
1991-08-26 521.38
1991-08-27 521.75
1991-08-28 526.29
1991-08-29 526.39
1991-08-30 525.68
1991-09-02 .
1991-09-03 520.91
1991-09-04 517.92
1991-09-05 516.93
1991-09-06 516.94
1991-09-09 518.07
1991-09-10 511.28
1991-09-11 514.76
1991-09-12 521.13
1991-09-13 516.71
1991-09-16 515.68
1991-09-17 515.17
1991-09-18 518.55
1991-09-19 522.67
1991-09-20 527.19
1991-09-23 524.69
1991-09-24 526.47
1991-09-25 527.82
1991-09-26 526.94
1991-09-27 524.48
1991-09-30 526.88
1991-10-01 528.51
1991-10-02 526.33
1991-10-03 520.51
1991-10-04 520.40
1991-10-07 516.20
1991-10-08 517.25
1991-10-09 513.81
1991-10-10 515.94
1991-10-11 519.05
1991-10-14 525.66
1991-10-15 534.11
1991-10-16 540.94
1991-10-17 536.27
1991-10-18 538.90
1991-10-21 536.96
1991-10-22 537.14
1991-10-23 535.17
1991-10-24 528.75
1991-10-25 525.13
1991-10-28 529.41
1991-10-29 534.51
1991-10-30 541.32
1991-10-31 542.98
1991-11-01 540.93
1991-11-04 537.50
1991-11-05 538.82
1991-11-06 539.48
1991-11-07 545.28
1991-11-08 548.08
1991-11-11 550.71
1991-11-12 555.68
1991-11-13 556.17
1991-11-14 554.84
1991-11-15 531.28
1991-11-18 534.73
1991-11-19 523.47
1991-11-20 526.12
1991-11-21 530.33
1991-11-22 526.46
1991-11-25 522.88
1991-11-26 522.23
1991-11-27 522.78
1991-11-28 .
1991-11-29 523.90
1991-12-02 530.91
1991-12-03 533.34
1991-12-04 535.28
1991-12-05 534.03
1991-12-06 536.30
1991-12-09 535.35
1991-12-10 534.23
1991-12-11 531.64
1991-12-12 536.02
1991-12-13 540.90
1991-12-16 543.73
1991-12-17 539.70
1991-12-18 539.84
1991-12-19 534.53
1991-12-20 535.76
1991-12-23 543.90
1991-12-24 549.56
1991-12-25 .
1991-12-26 559.30
1991-12-27 565.71
1991-12-30 579.75
1991-12-31 586.34
1992-01-01 .
1992-01-02 586.45
1992-01-03 592.65
1992-01-06 597.90
1992-01-07 602.29
1992-01-08 610.32
1992-01-09 619.80
1992-01-10 615.70
1992-01-13 617.63
1992-01-14 625.75
1992-01-15 630.82
1992-01-16 627.34
1992-01-17 626.85
1992-01-20 619.38
1992-01-21 604.87
1992-01-22 620.68
1992-01-23 622.86
1992-01-24 624.68
1992-01-27 621.00
1992-01-28 621.29
1992-01-29 616.31
1992-01-30 621.37
1992-01-31 620.21
1992-02-03 623.43
1992-02-04 631.00
1992-02-05 636.97
1992-02-06 637.67
1992-02-07 634.95
1992-02-10 634.13
1992-02-11 633.37
1992-02-12 644.92
1992-02-13 639.10
1992-02-14 636.43
1992-02-17 .
1992-02-18 626.41
1992-02-19 622.41
1992-02-20 632.23
1992-02-21 629.75
1992-02-24 624.93
1992-02-25 621.40
1992-02-26 632.40
1992-02-27 633.95
1992-02-28 633.47
1992-03-02 635.47
1992-03-03 634.25
1992-03-04 630.29
1992-03-05 621.97
1992-03-06 615.95
1992-03-09 615.82
1992-03-10 623.46
1992-03-11 617.14
1992-03-12 615.92
1992-03-13 618.62
1992-03-16 617.94
1992-03-17 623.27
1992-03-18 624.94
1992-03-19 625.96
1992-03-20 624.28
1992-03-23 621.83
1992-03-24 618.68
1992-03-25 619.48
1992-03-26 615.40
1992-03-27 604.67
1992-03-30 602.07
1992-03-31 603.77
1992-04-01 602.09
1992-04-02 593.82
1992-04-03 590.01
1992-04-06 596.29
1992-04-07 581.61
1992-04-08 573.68
1992-04-09 586.75
1992-04-10 584.24
1992-04-13 588.15
1992-04-14 594.81
1992-04-15 600.03
1992-04-16 591.81
1992-04-17 .
1992-04-20 577.20
1992-04-21 575.05
1992-04-22 578.23
1992-04-23 576.05
1992-04-24 572.89
1992-04-27 566.94
1992-04-28 560.33
1992-04-29 569.94
1992-04-30 578.68
1992-05-01 578.14
1992-05-04 583.54
1992-05-05 588.07
1992-05-06 589.36
1992-05-07 587.16
1992-05-08 585.76
1992-05-11 587.13
1992-05-12 583.96
1992-05-13 582.38
1992-05-14 576.46
1992-05-15 574.43
1992-05-18 576.53
1992-05-19 578.05
1992-05-20 580.29
1992-05-21 579.10
1992-05-22 580.30
1992-05-25 .
1992-05-26 575.65
1992-05-27 577.35
1992-05-28 580.49
1992-05-29 585.31
1992-06-01 588.37
1992-06-02 589.18
1992-06-03 589.93
1992-06-04 588.26
1992-06-05 585.43
1992-06-08 582.01
1992-06-09 573.80
1992-06-10 569.71
1992-06-11 567.68
1992-06-12 569.52
1992-06-15 569.01
1992-06-16 564.07
1992-06-17 553.24
1992-06-18 549.17
1992-06-19 554.20
1992-06-22 549.72
1992-06-23 553.36
1992-06-24 551.39
1992-06-25 548.20
1992-06-26 547.84
1992-06-29 558.80
1992-06-30 563.60
1992-07-01 568.99
1992-07-02 563.35
1992-07-03 .
1992-07-06 563.17
1992-07-07 557.41
1992-07-08 557.57
1992-07-09 564.75
1992-07-10 567.80
1992-07-13 570.22
1992-07-14 575.21
1992-07-15 575.47
1992-07-16 576.19
1992-07-17 570.52
1992-07-20 564.28
1992-07-21 568.63
1992-07-22 563.88
1992-07-23 565.24
1992-07-24 565.61
1992-07-27 564.73
1992-07-28 571.63
1992-07-29 577.49
1992-07-30 578.80
1992-07-31 580.83
1992-08-03 582.36
1992-08-04 581.32
1992-08-05 576.87
1992-08-06 574.02
1992-08-07 573.74
1992-08-10 573.14
1992-08-11 571.60
1992-08-12 570.85
1992-08-13 570.99
1992-08-14 573.18
1992-08-17 572.47
1992-08-18 570.87
1992-08-19 567.61
1992-08-20 567.86
1992-08-21 563.70
1992-08-24 555.39
1992-08-25 554.22
1992-08-26 558.80
1992-08-27 563.27
1992-08-28 563.56
1992-08-31 563.12
1992-09-01 565.61
1992-09-02 571.25
1992-09-03 574.88
1992-09-04 573.44
1992-09-07 .
1992-09-08 571.17
1992-09-09 574.89
1992-09-10 581.24
1992-09-11 583.01
1992-09-14 594.21
1992-09-15 587.86
1992-09-16 585.89
1992-09-17 587.82
1992-09-18 589.12
1992-09-21 588.58
1992-09-22 583.00
1992-09-23 582.96
1992-09-24 585.93
1992-09-25 577.20
1992-09-28 575.34
1992-09-29 577.63
1992-09-30 583.27
1992-10-01 578.33
1992-10-02 571.63
1992-10-05 565.21
1992-10-06 570.55
1992-10-07 569.20
1992-10-08 573.88
1992-10-09 570.52
1992-10-12 573.84
1992-10-13 576.44
1992-10-14 576.22
1992-10-15 578.64
1992-10-16 582.61
1992-10-19 590.67
1992-10-20 592.70
1992-10-21 597.15
1992-10-22 597.12
1992-10-23 597.30
1992-10-26 598.92
1992-10-27 596.95
1992-10-28 601.39
1992-10-29 605.82
1992-10-30 605.17
1992-11-02 607.57
1992-11-03 604.58
1992-11-04 605.52
1992-11-05 614.08
1992-11-06 616.82
1992-11-09 622.05
1992-11-10 627.76
1992-11-11 634.92
1992-11-12 634.37
1992-11-13 637.16
1992-11-16 634.01
1992-11-17 627.07
1992-11-18 634.86
1992-11-19 638.57
1992-11-20 642.60
1992-11-23 638.84
1992-11-24 645.94
1992-11-25 648.33
1992-11-26 .
1992-11-27 649.49
1992-11-30 652.73
1992-12-01 653.95
1992-12-02 652.91
1992-12-03 656.36
1992-12-04 661.60
1992-12-07 666.53
1992-12-08 667.12
1992-12-09 663.92
1992-12-10 658.93
1992-12-11 655.79
1992-12-14 654.73
1992-12-15 650.75
1992-12-16 649.63
1992-12-17 658.46
1992-12-18 661.29
1992-12-21 662.46
1992-12-22 660.84
1992-12-23 662.96
1992-12-24 665.88
1992-12-25 .
1992-12-28 666.25
1992-12-29 669.01
1992-12-30 671.85
1992-12-31 676.95
1993-01-01 .
1993-01-04 671.80
1993-01-05 674.34
1993-01-06 681.85
1993-01-07 678.21
1993-01-08 677.21
1993-01-11 682.40
1993-01-12 679.45
1993-01-13 686.78
1993-01-14 695.70
1993-01-15 697.15
1993-01-18 698.13
1993-01-19 696.81
1993-01-20 697.44
1993-01-21 700.77
1993-01-22 701.63
1993-01-25 706.95
1993-01-26 707.16
1993-01-27 697.90
1993-01-28 694.67
1993-01-29 696.34
1993-02-01 701.77
1993-02-02 705.12
1993-02-03 708.67
1993-02-04 708.85
1993-02-05 700.98
1993-02-08 698.44
1993-02-09 692.21
1993-02-10 695.02
1993-02-11 695.88
1993-02-12 690.54
1993-02-15 .
1993-02-16 665.39
1993-02-17 659.43
1993-02-18 662.45
1993-02-19 663.61
1993-02-22 652.42
1993-02-23 651.56
1993-02-24 662.46
1993-02-25 667.07
1993-02-26 670.77
1993-03-01 669.51
1993-03-02 677.72
1993-03-03 683.92
1993-03-04 680.73
1993-03-05 681.37
1993-03-08 687.23
1993-03-09 688.96
1993-03-10 692.87
1993-03-11 694.28
1993-03-12 692.78
1993-03-15 695.21
1993-03-16 695.47
1993-03-17 687.40
1993-03-18 687.41
1993-03-19 682.72
1993-03-22 676.62
1993-03-23 675.04
1993-03-24 674.36
1993-03-25 681.01
1993-03-26 681.54
1993-03-29 680.76
1993-03-30 686.25
1993-03-31 690.13
1993-04-01 686.64
1993-04-02 669.85
1993-04-05 670.71
1993-04-06 664.14
1993-04-07 668.88
1993-04-08 666.33
1993-04-09 .
1993-04-12 673.12
1993-04-13 673.83
1993-04-14 673.94
1993-04-15 670.32
1993-04-16 666.78
1993-04-19 663.03
1993-04-20 661.97
1993-04-21 664.04
1993-04-22 663.51
1993-04-23 658.41
1993-04-26 645.87
1993-04-27 652.52
1993-04-28 658.16
1993-04-29 658.45
1993-04-30 661.42
1993-05-03 666.71
1993-05-04 678.16
1993-05-05 683.26
1993-05-06 680.04
1993-05-07 681.44
1993-05-10 682.82
1993-05-11 683.06
1993-05-12 681.69
1993-05-13 675.64
1993-05-14 676.37
1993-05-17 677.96
1993-05-18 680.78
1993-05-19 690.43
1993-05-20 697.43
1993-05-21 694.29
1993-05-24 694.69
1993-05-25 695.04
1993-05-26 704.09
1993-05-27 704.59
1993-05-28 700.53
1993-05-31 .
1993-06-01 704.28
1993-06-02 705.86
1993-06-03 706.22
1993-06-04 702.01
1993-06-07 694.61
1993-06-08 687.74
1993-06-09 689.24
1993-06-10 688.05
1993-06-11 693.19
1993-06-14 696.41
1993-06-15 697.34
1993-06-16 696.25
1993-06-17 695.94
1993-06-18 689.59
1993-06-21 688.74
1993-06-22 686.77
1993-06-23 684.79
1993-06-24 688.72
1993-06-25 694.81
1993-06-28 702.84
1993-06-29 701.07
1993-06-30 703.95
1993-07-01 703.59
1993-07-02 704.49
1993-07-05 .
1993-07-06 702.22
1993-07-07 698.79
1993-07-08 702.71
1993-07-09 705.81
1993-07-12 707.67
1993-07-13 708.47
1993-07-14 712.49
1993-07-15 708.69
1993-07-16 699.73
1993-07-19 695.83
1993-07-20 701.90
1993-07-21 700.08
1993-07-22 695.52
1993-07-23 700.24
1993-07-26 704.54
1993-07-27 701.00
1993-07-28 705.59
1993-07-29 707.24
1993-07-30 704.70
1993-08-02 707.66
1993-08-03 709.01
1993-08-04 713.79
1993-08-05 715.50
1993-08-06 718.08
1993-08-09 718.49
1993-08-10 717.08
1993-08-11 718.77
1993-08-12 717.12
1993-08-13 718.26
1993-08-16 726.89
1993-08-17 731.01
1993-08-18 734.83
1993-08-19 730.48
1993-08-20 730.96
1993-08-23 730.86
1993-08-24 735.14
1993-08-25 733.66
1993-08-26 731.39
1993-08-27 734.07
1993-08-30 737.38
1993-08-31 742.84
1993-09-01 746.15
1993-09-02 748.65
1993-09-03 749.71
1993-09-06 .
1993-09-07 739.35
1993-09-08 730.73
1993-09-09 737.71
1993-09-10 744.31
1993-09-13 740.32
1993-09-14 732.64
1993-09-15 739.55
1993-09-16 739.80
1993-09-17 740.11
1993-09-20 740.21
1993-09-21 733.56
1993-09-22 745.54
1993-09-23 752.26
1993-09-24 754.65
1993-09-27 759.95
1993-09-28 763.66
1993-09-29 763.17
1993-09-30 762.78
1993-10-01 763.23
1993-10-04 764.84
1993-10-05 762.27
1993-10-06 764.77
1993-10-07 762.49
1993-10-08 764.27
1993-10-11 767.65
1993-10-12 772.46
1993-10-13 778.97
1993-10-14 785.41
1993-10-15 787.42
1993-10-18 782.91
1993-10-19 768.71
1993-10-20 768.25
1993-10-21 771.28
1993-10-22 772.68
1993-10-25 769.75
1993-10-26 765.46
1993-10-27 771.88
1993-10-28 773.49
1993-10-29 779.26
1993-11-01 783.77
1993-11-02 785.66
1993-11-03 772.95
1993-11-04 757.26
1993-11-05 762.99
1993-11-08 766.21
1993-11-09 769.84
1993-11-10 776.50
1993-11-11 778.98
1993-11-12 779.32
1993-11-15 772.45
1993-11-16 771.69
1993-11-17 762.36
1993-11-18 754.34
1993-11-19 751.56
1993-11-22 738.13
1993-11-23 746.82
1993-11-24 753.18
1993-11-25 .
1993-11-26 754.87
1993-11-29 751.54
1993-11-30 754.39
1993-12-01 763.81
1993-12-02 766.73
1993-12-03 772.22
1993-12-06 771.09
1993-12-07 769.35
1993-12-08 767.89
1993-12-09 761.49
1993-12-10 760.74
1993-12-13 759.72
1993-12-14 751.47
1993-12-15 752.97
1993-12-16 755.53
1993-12-17 759.23
1993-12-20 760.15
1993-12-21 755.63
1993-12-22 756.07
1993-12-23 758.70
1993-12-24 .
1993-12-27 761.06
1993-12-28 764.56
1993-12-29 768.48
1993-12-30 771.08
1993-12-31 776.80
1994-01-03 770.76
1994-01-04 774.28
1994-01-05 778.05
1994-01-06 780.41
1994-01-07 782.94
1994-01-10 786.69
1994-01-11 785.52
1994-01-12 786.87
1994-01-13 787.81
1994-01-14 792.31
1994-01-17 792.18
1994-01-18 793.02
1994-01-19 789.28
1994-01-20 793.02
1994-01-21 794.28
1994-01-24 790.65
1994-01-25 786.39
1994-01-26 788.80
1994-01-27 792.88
1994-01-28 796.53
1994-01-31 800.47
1994-02-01 797.24
1994-02-02 799.57
1994-02-03 797.79
1994-02-04 777.28
1994-02-07 779.20
1994-02-08 782.70
1994-02-09 786.53
1994-02-10 783.42
1994-02-11 781.39
1994-02-14 785.45
1994-02-15 790.12
1994-02-16 792.62
1994-02-17 790.24
1994-02-18 788.85
1994-02-21 .
1994-02-22 791.15
1994-02-23 789.11
1994-02-24 779.44
1994-02-25 783.78
1994-02-28 792.50
1994-03-01 788.64
1994-03-02 783.47
1994-03-03 784.58
1994-03-04 790.55
1994-03-07 795.05
1994-03-08 792.12
1994-03-09 793.05
1994-03-10 789.09
1994-03-11 789.20
1994-03-14 792.80
1994-03-15 793.52
1994-03-16 798.99
1994-03-17 803.85
1994-03-18 803.93
1994-03-21 797.30
1994-03-22 796.34
1994-03-23 797.51
1994-03-24 786.68
1994-03-25 783.45
1994-03-28 772.50
1994-03-29 755.29
1994-03-30 744.91
1994-03-31 743.46
1994-04-01 .
1994-04-04 727.41
1994-04-05 750.95
1994-04-06 750.72
1994-04-07 755.17
1994-04-08 748.71
1994-04-11 748.11
1994-04-12 739.22
1994-04-13 727.38
1994-04-14 727.31
1994-04-15 727.97
1994-04-18 720.45
1994-04-19 712.85
1994-04-20 705.52
1994-04-21 718.74
1994-04-22 722.56
1994-04-25 730.80
1994-04-26 734.21
1994-04-27 .
1994-04-28 731.69
1994-04-29 733.84
1994-05-02 740.68
1994-05-03 739.37
1994-05-04 740.30
1994-05-05 740.55
1994-05-06 732.86
1994-05-09 722.96
1994-05-10 725.00
1994-05-11 717.00
1994-05-12 719.61
1994-05-13 716.92
1994-05-16 711.91
1994-05-17 711.52
1994-05-18 721.90
1994-05-19 727.31
1994-05-20 726.70
1994-05-23 724.95
1994-05-24 731.47
1994-05-25 732.07
1994-05-26 731.64
1994-05-27 733.14
1994-05-30 .
1994-05-31 735.19
1994-06-01 735.52
1994-06-02 739.50
1994-06-03 742.38
1994-06-06 743.43
1994-06-07 739.30
1994-06-08 729.79
1994-06-09 728.88
1994-06-10 734.25
1994-06-13 731.70
1994-06-14 735.98
1994-06-15 735.84
1994-06-16 734.97
1994-06-17 729.35
1994-06-20 718.85
1994-06-21 708.79
1994-06-22 712.74
1994-06-23 700.85
1994-06-24 693.79
1994-06-27 702.68
1994-06-28 702.05
1994-06-29 704.01
1994-06-30 705.96
1994-07-01 706.85
1994-07-04 .
1994-07-05 703.59
1994-07-06 701.00
1994-07-07 706.53
1994-07-08 707.46
1994-07-11 706.83
1994-07-12 709.59
1994-07-13 719.35
1994-07-14 721.56
1994-07-15 721.36
1994-07-18 722.62
1994-07-19 719.32
1994-07-20 712.77
1994-07-21 715.03
1994-07-22 716.68
1994-07-25 716.88
1994-07-26 715.66
1994-07-27 712.13
1994-07-28 712.43
1994-07-29 722.16
1994-08-01 724.85
1994-08-02 724.80
1994-08-03 723.69
1994-08-04 720.18
1994-08-05 718.67
1994-08-08 720.47
1994-08-09 722.61
1994-08-10 728.20
1994-08-11 728.20
1994-08-12 731.61
1994-08-15 732.89
1994-08-16 735.51
1994-08-17 742.66
1994-08-18 742.17
1994-08-19 742.43
1994-08-22 742.29
1994-08-23 747.98
1994-08-24 751.72
1994-08-25 754.80
1994-08-26 762.94
1994-08-29 763.21
1994-08-30 766.46
1994-08-31 765.62
1994-09-01 758.95
1994-09-02 759.23
1994-09-05 .
1994-09-06 759.48
1994-09-07 764.28
1994-09-08 769.30
1994-09-09 763.73
1994-09-12 760.01
1994-09-13 765.83
1994-09-14 768.61
1994-09-15 778.66
1994-09-16 777.91
1994-09-19 776.72
1994-09-20 766.74
1994-09-21 760.71
1994-09-22 760.44
1994-09-23 757.46
1994-09-26 755.63
1994-09-27 755.37
1994-09-28 760.01
1994-09-29 759.34
1994-09-30 764.29
1994-10-03 760.88
1994-10-04 747.30
1994-10-05 746.28
1994-10-06 744.19
1994-10-07 749.96
1994-10-10 756.81
1994-10-11 765.57
1994-10-12 767.00
1994-10-13 767.89
1994-10-14 767.08
1994-10-17 765.78
1994-10-18 764.81
1994-10-19 770.62
1994-10-20 768.24
1994-10-21 765.38
1994-10-24 761.21
1994-10-25 758.26
1994-10-26 763.24
1994-10-27 767.47
1994-10-28 776.15
1994-10-31 777.49
1994-11-01 772.19
1994-11-02 771.82
1994-11-03 772.10
1994-11-04 766.08
1994-11-07 762.31
1994-11-08 767.54
1994-11-09 767.25
1994-11-10 764.38
1994-11-11 762.12
1994-11-14 768.14
1994-11-15 769.02
1994-11-16 769.64
1994-11-17 765.84
1994-11-18 764.67
1994-11-21 757.74
1994-11-22 741.21
1994-11-23 736.70
1994-11-24 .
1994-11-25 742.52
1994-11-28 745.73
1994-11-29 751.48
1994-11-30 750.32
1994-12-01 741.20
1994-12-02 745.02
1994-12-05 745.71
1994-12-06 741.23
1994-12-07 734.27
1994-12-08 719.12
1994-12-09 719.05
1994-12-12 719.12
1994-12-13 719.49
1994-12-14 725.67
1994-12-15 730.68
1994-12-16 729.07
1994-12-19 727.89
1994-12-20 728.51
1994-12-21 737.12
1994-12-22 739.34
1994-12-23 742.19
1994-12-26 .
1994-12-27 746.19
1994-12-28 742.46
1994-12-29 749.53
1994-12-30 751.96
1995-01-02 .
1995-01-03 743.58
1995-01-04 745.84
1995-01-05 745.66
1995-01-06 749.69
1995-01-09 752.09
1995-01-10 756.52
1995-01-11 755.74
1995-01-12 756.51
1995-01-13 762.16
1995-01-16 768.16
1995-01-17 772.14
1995-01-18 772.38
1995-01-19 768.55
1995-01-20 762.05
1995-01-23 759.51
1995-01-24 763.20
1995-01-25 760.98
1995-01-26 757.56
1995-01-27 758.91
1995-01-30 751.83
1995-01-31 755.20
1995-02-01 758.31
1995-02-02 763.64
1995-02-03 772.06
1995-02-06 778.85
1995-02-07 778.97
1995-02-08 783.77
1995-02-09 785.44
1995-02-10 790.43
1995-02-13 789.42
1995-02-14 790.62
1995-02-15 795.63
1995-02-16 793.31
1995-02-17 786.97
1995-02-20 .
1995-02-21 784.62
1995-02-22 787.93
1995-02-23 791.35
1995-02-24 791.08
1995-02-27 784.50
1995-02-28 793.73
1995-03-01 791.87
1995-03-02 793.68
1995-03-03 798.79
1995-03-06 797.77
1995-03-07 791.33
1995-03-08 795.81
1995-03-09 796.24
1995-03-10 802.22
1995-03-13 802.31
1995-03-14 808.24
1995-03-15 807.38
1995-03-16 809.34
1995-03-17 808.33
1995-03-20 810.49
1995-03-21 809.78
1995-03-22 809.10
1995-03-23 811.39
1995-03-24 818.66
1995-03-27 822.63
1995-03-28 826.14
1995-03-29 819.16
1995-03-30 816.86
1995-03-31 817.21
1995-04-03 818.05
1995-04-04 813.72
1995-04-05 816.32
1995-04-06 813.80
1995-04-07 814.69
1995-04-10 821.26
1995-04-11 824.83
1995-04-12 828.53
1995-04-13 832.64
1995-04-14 .
1995-04-17 830.82
1995-04-18 825.74
1995-04-19 816.55
1995-04-20 819.01
1995-04-21 823.44
1995-04-24 828.91
1995-04-25 831.28
1995-04-26 836.91
1995-04-27 840.95
1995-04-28 843.98
1995-05-01 841.63
1995-05-02 841.79
1995-05-03 850.26
1995-05-04 846.75
1995-05-05 843.53
1995-05-08 849.29
1995-05-09 848.17
1995-05-10 847.62
1995-05-11 853.83
1995-05-12 858.94
1995-05-15 863.06
1995-05-16 868.25
1995-05-17 871.93
1995-05-18 864.06
1995-05-19 864.32
1995-05-22 871.18
1995-05-23 879.64
1995-05-24 877.98
1995-05-25 877.32
1995-05-26 871.87
1995-05-29 .
1995-05-30 858.70
1995-05-31 864.58
1995-06-01 868.82
1995-06-02 872.97
1995-06-05 882.85
1995-06-06 879.40
1995-06-07 881.58
1995-06-08 886.13
1995-06-09 884.38
1995-06-12 887.98
1995-06-13 894.23
1995-06-14 895.72
1995-06-15 902.68
1995-06-16 908.65
1995-06-19 922.09
1995-06-20 929.83
1995-06-21 929.19
1995-06-22 940.09
1995-06-23 938.87
1995-06-26 926.98
1995-06-27 919.56
1995-06-28 920.52
1995-06-29 926.81
1995-06-30 933.45
1995-07-03 934.53
1995-07-04 .
1995-07-05 941.82
1995-07-06 952.93
1995-07-07 969.76
1995-07-10 976.62
1995-07-11 970.22
1995-07-12 988.63
1995-07-13 994.15
1995-07-14 999.33
1995-07-17 1005.89
1995-07-18 988.53
1995-07-19 952.87
1995-07-20 960.57
1995-07-21 961.77
1995-07-24 978.57
1995-07-25 993.75
1995-07-26 1000.18
1995-07-27 1010.66
1995-07-28 1005.28
1995-07-31 1001.21
1995-08-01 991.11
1995-08-02 983.75
1995-08-03 982.70
1995-08-04 991.09
1995-08-07 995.22
1995-08-08 997.12
1995-08-09 1005.10
1995-08-10 1000.61
1995-08-11 1004.11
1995-08-14 1012.44
1995-08-15 1012.37
1995-08-16 1025.75
1995-08-17 1029.24
1995-08-18 1031.28
1995-08-21 1019.70
1995-08-22 1025.29
1995-08-23 1028.19
1995-08-24 1020.93
1995-08-25 1019.97
1995-08-28 1008.15
1995-08-29 1003.64
1995-08-30 1012.61
1995-08-31 1020.11
1995-09-01 1019.47
1995-09-04 .
1995-09-05 1039.30
1995-09-06 1044.28
1995-09-07 1051.08
1995-09-08 1060.03
1995-09-11 1066.56
1995-09-12 1065.00
1995-09-13 1067.40
1995-09-14 1066.96
1995-09-15 1051.10
1995-09-18 1050.18
1995-09-19 1060.32
1995-09-20 1065.09
1995-09-21 1058.51
1995-09-22 1053.39
1995-09-25 1046.15
1995-09-26 1038.05
1995-09-27 1026.54
1995-09-28 1047.05
1995-09-29 1043.54
1995-10-02 1027.57
1995-10-03 1020.45
1995-10-04 1002.27
1995-10-05 1014.20
1995-10-06 1012.04
1995-10-09 984.74
1995-10-10 983.47
1995-10-11 1001.57
1995-10-12 1015.63
1995-10-13 1018.38
1995-10-16 1018.13
1995-10-17 1035.44
1995-10-18 1045.13
1995-10-19 1046.97
1995-10-20 1039.53
1995-10-23 1036.92
1995-10-24 1039.24
1995-10-25 1026.47
1995-10-26 1017.57
1995-10-27 1025.55
1995-10-30 1039.69
1995-10-31 1036.06
1995-11-01 1040.50
1995-11-02 1057.32
1995-11-03 1065.66
1995-11-06 1062.14
1995-11-07 1043.90
1995-11-08 1047.94
1995-11-09 1065.59
1995-11-10 1063.87
1995-11-13 1058.46
1995-11-14 1040.62
1995-11-15 1041.85
1995-11-16 1044.48
1995-11-17 1045.03
1995-11-20 1029.47
1995-11-21 1024.99
1995-11-22 1021.24
1995-11-23 .
1995-11-24 1030.17
1995-11-27 1029.32
1995-11-28 1050.05
1995-11-29 1057.57
1995-11-30 1059.20
1995-12-01 1055.31
1995-12-04 1069.79
1995-12-05 1065.89
1995-12-06 1061.73
1995-12-07 1053.17
1995-12-08 1062.41
1995-12-11 1061.50
1995-12-12 1052.07
1995-12-13 1056.54
1995-12-14 1038.19
1995-12-15 1030.48
1995-12-18 1002.56
1995-12-19 1026.41
1995-12-20 1025.27
1995-12-21 1040.64
1995-12-22 1046.89
1995-12-25 .
1995-12-26 1049.37
1995-12-27 1048.13
1995-12-28 1042.22
1995-12-29 1052.13
1996-01-01 .
1996-01-02 1058.65
1996-01-03 1046.26
1996-01-04 1029.82
1996-01-05 1033.47
1996-01-08 1032.37
1996-01-09 998.81
1996-01-10 990.21
1996-01-11 1011.10
1996-01-12 1008.23
1996-01-15 988.57
1996-01-16 995.87
1996-01-17 998.30
1996-01-18 1007.24
1996-01-19 1018.45
1996-01-22 1029.44
1996-01-23 1028.04
1996-01-24 1043.46
1996-01-25 1035.95
1996-01-26 1040.96
1996-01-29 1042.51
1996-01-30 1051.30
1996-01-31 1059.79
1996-02-01 1069.46
1996-02-02 1072.11
1996-02-05 1083.34
1996-02-06 1089.08
1996-02-07 1084.88
1996-02-08 1093.17
1996-02-09 1094.60
1996-02-12 1095.38
1996-02-13 1087.22
1996-02-14 1088.03
1996-02-15 1090.54
1996-02-16 1090.71
1996-02-19 .
1996-02-20 1083.24
1996-02-21 1096.85
1996-02-22 1117.11
1996-02-23 1117.79
1996-02-26 1113.05
1996-02-27 1106.17
1996-02-28 1107.55
1996-02-29 1100.05
1996-03-01 1086.08
1996-03-04 1084.88
1996-03-05 1096.81
1996-03-06 1091.82
1996-03-07 1093.12
1996-03-08 1063.73
1996-03-11 1080.50
1996-03-12 1073.05
1996-03-13 1088.64
1996-03-14 1091.07
1996-03-15 1099.59
1996-03-18 1114.42
1996-03-19 1112.50
1996-03-20 1101.82
1996-03-21 1099.79
1996-03-22 1102.22
1996-03-25 1087.09
1996-03-26 1088.35
1996-03-27 1093.88
1996-03-28 1094.83
1996-03-29 1101.40
1996-04-01 1106.57
1996-04-02 1111.29
1996-04-03 1115.85
1996-04-04 1118.21
1996-04-05 .
1996-04-08 1105.66
1996-04-09 1109.15
1996-04-10 1105.28
1996-04-11 1097.14
1996-04-12 1100.94
1996-04-15 1110.44
1996-04-16 1124.92
1996-04-17 1120.87
1996-04-18 1136.30
1996-04-19 1138.70
1996-04-22 1153.50
1996-04-23 1166.76
1996-04-24 1176.83
1996-04-25 1184.17
1996-04-26 1186.89
1996-04-29 1188.20
1996-04-30 1190.52
1996-05-01 1199.66
1996-05-02 1178.33
1996-05-03 1184.60
1996-05-06 1186.31
1996-05-07 1182.67
1996-05-08 1183.43
1996-05-09 1187.82
1996-05-10 1202.76
1996-05-13 1221.87
1996-05-14 1234.49
1996-05-15 1233.56
1996-05-16 1239.31
1996-05-17 1241.88
1996-05-20 1248.11
1996-05-21 1244.42
1996-05-22 1247.38
1996-05-23 1248.65
1996-05-24 1247.80
1996-05-27 .
1996-05-28 1236.30
1996-05-29 1225.63
1996-05-30 1233.48
1996-05-31 1243.43
1996-06-03 1238.73
1996-06-04 1243.68
1996-06-05 1249.15
1996-06-06 1232.52
1996-06-07 1229.76
1996-06-10 1230.04
1996-06-11 1230.76
1996-06-12 1235.47
1996-06-13 1225.65
1996-06-14 1213.18
1996-06-17 1207.64
1996-06-18 1183.08
1996-06-19 1179.27
1996-06-20 1167.34
1996-06-21 1175.44
1996-06-24 1182.90
1996-06-25 1172.58
1996-06-26 1153.29
1996-06-27 1166.01
1996-06-28 1185.02
1996-07-01 1197.45
1996-07-02 1191.15
1996-07-03 1181.60
1996-07-04 .
1996-07-05 1158.35
1996-07-08 1148.82
1996-07-09 1153.59
1996-07-10 1141.19
1996-07-11 1106.36
1996-07-12 1103.49
1996-07-15 1060.19
1996-07-16 1053.47
1996-07-17 1086.65
1996-07-18 1109.82
1996-07-19 1097.68
1996-07-22 1081.39
1996-07-23 1049.07
1996-07-24 1042.37
1996-07-25 1062.39
1996-07-26 1079.44
1996-07-29 1066.47
1996-07-30 1071.95
1996-07-31 1080.59
1996-08-01 1098.85
1996-08-02 1124.92
1996-08-05 1120.53
1996-08-06 1128.87
1996-08-07 1141.11
1996-08-08 1137.51
1996-08-09 1137.27
1996-08-12 1138.27
1996-08-13 1126.15
1996-08-14 1133.51
1996-08-15 1134.69
1996-08-16 1133.65
1996-08-19 1130.91
1996-08-20 1124.67
1996-08-21 1126.84
1996-08-22 1143.96
1996-08-23 1143.05
1996-08-26 1139.22
1996-08-27 1149.02
1996-08-28 1153.88
1996-08-29 1145.03
1996-08-30 1141.50
1996-09-02 .
1996-09-03 1142.29
1996-09-04 1143.82
1996-09-05 1125.66
1996-09-06 1139.39
1996-09-09 1148.71
1996-09-10 1149.43
1996-09-11 1153.95
1996-09-12 1165.81
1996-09-13 1188.67
1996-09-16 1193.96
1996-09-17 1203.31
1996-09-18 1205.71
1996-09-19 1212.09
1996-09-20 1219.69
1996-09-23 1211.47
1996-09-24 1215.27
1996-09-25 1224.66
1996-09-26 1227.98
1996-09-27 1230.05
1996-09-30 1226.92
1996-10-01 1221.51
1996-10-02 1236.11
1996-10-03 1233.09
1996-10-04 1247.56
1996-10-07 1250.87
1996-10-08 1240.15
1996-10-09 1237.98
1996-10-10 1236.97
1996-10-11 1248.27
1996-10-14 1256.36
1996-10-15 1258.10
1996-10-16 1250.99
1996-10-17 1241.96
1996-10-18 1242.48
1996-10-21 1236.41
1996-10-22 1220.00
1996-10-23 1227.88
1996-10-24 1227.00
1996-10-25 1222.60
1996-10-28 1215.89
1996-10-29 1203.05
1996-10-30 1206.23
1996-10-31 1221.51
1996-11-01 1221.78
1996-11-04 1220.48
1996-11-05 1229.07
1996-11-06 1245.49
1996-11-07 1254.14
1996-11-08 1257.51
1996-11-11 1262.67
1996-11-12 1256.53
1996-11-13 1260.72
1996-11-14 1270.36
1996-11-15 1261.80
1996-11-18 1254.57
1996-11-19 1262.62
1996-11-20 1264.94
1996-11-21 1258.08
1996-11-22 1274.36
1996-11-25 1280.37
1996-11-26 1281.20
1996-11-27 1287.32
1996-11-28 .
1996-11-29 1292.61
1996-12-02 1299.82
1996-12-03 1300.37
1996-12-04 1297.02
1996-12-05 1300.12
1996-12-06 1287.68
1996-12-09 1316.27
1996-12-10 1312.55
1996-12-11 1309.12
1996-12-12 1298.33
1996-12-13 1284.91
1996-12-16 1260.98
1996-12-17 1266.32
1996-12-18 1285.38
1996-12-19 1295.86
1996-12-20 1288.56
1996-12-23 1279.52
1996-12-24 1287.63
1996-12-25 .
1996-12-26 1294.57
1996-12-27 1291.38
1996-12-30 1287.75
1996-12-31 1291.03
1997-01-01 .
1997-01-02 1280.70
1997-01-03 1310.68
1997-01-06 1316.40
1997-01-07 1327.73
1997-01-08 1320.35
1997-01-09 1326.20
1997-01-10 1332.02
1997-01-13 1330.91
1997-01-14 1346.36
1997-01-15 1333.53
1997-01-16 1340.58
1997-01-17 1349.05
1997-01-20 1364.28
1997-01-21 1376.97
1997-01-22 1388.06
1997-01-23 1378.37
1997-01-24 1363.83
1997-01-27 1352.81
1997-01-28 1354.37
1997-01-29 1355.17
1997-01-30 1371.02
1997-01-31 1379.85
1997-02-03 1376.05
1997-02-04 1373.75
1997-02-05 1348.44
1997-02-06 1346.40
1997-02-07 1357.71
1997-02-10 1335.34
1997-02-11 1331.51
1997-02-12 1358.96
1997-02-13 1370.81
1997-02-14 1367.19
1997-02-17 .
1997-02-18 1365.79
1997-02-19 1365.58
1997-02-20 1347.40
1997-02-21 1334.32
1997-02-24 1345.08
1997-02-25 1347.69
1997-02-26 1340.55
1997-02-27 1312.66
1997-02-28 1309.00
1997-03-03 1311.18
1997-03-04 1317.37
1997-03-05 1329.09
1997-03-06 1315.43
1997-03-07 1311.80
1997-03-10 1322.72
1997-03-11 1316.76
1997-03-12 1304.13
1997-03-13 1293.28
1997-03-14 1292.97
1997-03-17 1279.43
1997-03-18 1269.34
1997-03-19 1249.29
1997-03-20 1259.26
1997-03-21 1254.07
1997-03-24 1242.64
1997-03-25 1248.06
1997-03-26 1269.08
1997-03-27 1249.51
1997-03-28 .
1997-03-31 1221.70
1997-04-01 1216.93
1997-04-02 1201.00
1997-04-03 1213.76
1997-04-04 1236.73
1997-04-07 1251.35
1997-04-08 1257.37
1997-04-09 1249.43
1997-04-10 1235.77
1997-04-11 1206.90
1997-04-14 1216.41
1997-04-15 1212.88
1997-04-16 1210.27
1997-04-17 1217.07
1997-04-18 1222.57
1997-04-21 1203.95
1997-04-22 1212.74
1997-04-23 1227.14
1997-04-24 1228.10
1997-04-25 1209.29
1997-04-28 1217.03
1997-04-29 1242.63
1997-04-30 1260.76
1997-05-01 1270.50
1997-05-02 1305.33
1997-05-05 1339.24
1997-05-06 1328.30
1997-05-07 1322.91
1997-05-08 1330.83
1997-05-09 1335.05
1997-05-12 1344.19
1997-05-13 1333.59
1997-05-14 1335.55
1997-05-15 1353.58
1997-05-16 1340.73
1997-05-19 1341.24
1997-05-20 1363.88
1997-05-21 1373.75
1997-05-22 1372.60
1997-05-23 1389.72
1997-05-26 .
1997-05-27 1409.21
1997-05-28 1410.18
1997-05-29 1403.04
1997-05-30 1400.32
1997-06-02 1404.79
1997-06-03 1384.91
1997-06-04 1379.67
1997-06-05 1390.05
1997-06-06 1404.84
1997-06-09 1412.04
1997-06-10 1401.69
1997-06-11 1407.85
1997-06-12 1411.32
1997-06-13 1423.03
1997-06-16 1431.95
1997-06-17 1443.11
1997-06-18 1432.43
1997-06-19 1447.14
1997-06-20 1447.10
1997-06-23 1434.32
1997-06-24 1452.43
1997-06-25 1446.24
1997-06-26 1436.38
1997-06-27 1438.15
1997-06-30 1442.07
1997-07-01 1438.25
1997-07-02 1455.61
1997-07-03 1467.61
1997-07-04 .
1997-07-07 1470.74
1997-07-08 1485.10
1997-07-09 1486.63
1997-07-10 1490.93
1997-07-11 1502.62
1997-07-14 1523.88
1997-07-15 1542.11
1997-07-16 1580.63
1997-07-17 1568.85
1997-07-18 1547.99
1997-07-21 1536.23
1997-07-22 1563.86
1997-07-23 1567.65
1997-07-24 1569.13
1997-07-25 1569.58
1997-07-28 1563.53
1997-07-29 1572.32
1997-07-30 1588.05
1997-07-31 1593.81
1997-08-01 1594.33
1997-08-04 1605.45
1997-08-05 1621.53
1997-08-06 1630.44
1997-08-07 1624.18
1997-08-08 1598.52
1997-08-11 1586.74
1997-08-12 1576.24
1997-08-13 1583.40
1997-08-14 1586.69
1997-08-15 1562.03
1997-08-18 1569.52
1997-08-19 1600.71
1997-08-20 1628.70
1997-08-21 1607.36
1997-08-22 1598.69
1997-08-25 1601.57
1997-08-26 1591.30
1997-08-27 1595.54
1997-08-28 1581.32
1997-08-29 1587.32
1997-09-01 .
1997-09-02 1618.09
1997-09-03 1618.24
1997-09-04 1624.63
1997-09-05 1635.77
1997-09-08 1645.35
1997-09-09 1656.22
1997-09-10 1639.25
1997-09-11 1639.86
1997-09-12 1649.33
1997-09-15 1634.92
1997-09-16 1668.60
1997-09-17 1666.47
1997-09-18 1670.02
1997-09-19 1680.36
1997-09-22 1689.45
1997-09-23 1697.36
1997-09-24 1687.41
1997-09-25 1678.89
1997-09-26 1682.24
1997-09-29 1694.98
1997-09-30 1685.69
1997-10-01 1690.30
1997-10-02 1702.41
1997-10-03 1715.87
1997-10-06 1721.91
1997-10-07 1737.27
1997-10-08 1741.77
1997-10-09 1745.85
1997-10-10 1739.03
1997-10-13 1742.12
1997-10-14 1732.79
1997-10-15 1723.37
1997-10-16 1699.66
1997-10-17 1666.85
1997-10-20 1685.45
1997-10-21 1712.54
1997-10-22 1708.08
1997-10-23 1671.25
1997-10-24 1650.92
1997-10-27 1535.09
1997-10-28 1603.02
1997-10-29 1602.75
1997-10-30 1570.41
1997-10-31 1593.61
1997-11-03 1629.98
1997-11-04 1631.15
1997-11-05 1637.33
1997-11-06 1623.44
1997-11-07 1602.40
1997-11-10 1590.72
1997-11-11 1584.86
1997-11-12 1541.72
1997-11-13 1559.25
1997-11-14 1583.51
1997-11-17 1614.11
1997-11-18 1600.44
1997-11-19 1601.22
1997-11-20 1626.56
1997-11-21 1620.75
1997-11-24 1586.99
1997-11-25 1589.04
1997-11-26 1594.50
1997-11-27 .
1997-11-28 1600.55
1997-12-01 1630.72
1997-12-02 1606.37
1997-12-03 1615.13
1997-12-04 1613.42
1997-12-05 1633.90
1997-12-08 1651.54
1997-12-09 1620.55
1997-12-10 1596.61
1997-12-11 1558.54
1997-12-12 1536.58
1997-12-15 1536.56
1997-12-16 1553.00
1997-12-17 1547.37
1997-12-18 1523.19
1997-12-19 1524.74
1997-12-22 1532.06
1997-12-23 1509.91
1997-12-24 1499.53
1997-12-25 .
1997-12-26 1511.38
1997-12-29 1537.45
1997-12-30 1565.03
1997-12-31 1570.35
1998-01-01 .
1998-01-02 1581.53
1998-01-05 1594.12
1998-01-06 1580.14
1998-01-07 1561.70
1998-01-08 1555.54
1998-01-09 1503.22
1998-01-12 1507.58
1998-01-13 1541.63
1998-01-14 1548.76
1998-01-15 1547.06
1998-01-16 1562.88
1998-01-19 .
1998-01-20 1590.14
1998-01-21 1587.92
1998-01-22 1576.51
1998-01-23 1575.93
1998-01-26 1561.46
1998-01-27 1578.90
1998-01-28 1610.82
1998-01-29 1619.49
1998-01-30 1619.36
1998-02-02 1652.89
1998-02-03 1666.34
1998-02-04 1680.44
1998-02-05 1676.90
1998-02-06 1694.35
1998-02-09 1690.43
1998-02-10 1709.04
1998-02-11 1708.55
1998-02-12 1714.34
1998-02-13 1710.42
1998-02-16 .
1998-02-17 1703.43
1998-02-18 1715.73
1998-02-19 1727.01
1998-02-20 1728.13
1998-02-23 1751.76
1998-02-24 1738.71
1998-02-25 1766.48
1998-02-26 1777.11
1998-02-27 1770.51
1998-03-02 1758.54
1998-03-03 1757.14
1998-03-04 1759.70
1998-03-05 1711.92
1998-03-06 1753.49
1998-03-09 1725.16
1998-03-10 1748.51
1998-03-11 1756.85
1998-03-12 1764.06
1998-03-13 1771.66
1998-03-16 1788.18
1998-03-17 1779.30
1998-03-18 1788.28
1998-03-19 1799.98
1998-03-20 1789.16
1998-03-23 1792.51
1998-03-24 1812.44
1998-03-25 1824.51
1998-03-26 1828.54
1998-03-27 1823.62
1998-03-30 1818.70
1998-03-31 1835.68
1998-04-01 1847.66
1998-04-02 1852.96
1998-04-03 1855.40
1998-04-06 1829.14
1998-04-07 1798.71
1998-04-08 1807.01
1998-04-09 1820.24
1998-04-10 .
1998-04-13 1824.95
1998-04-14 1843.03
1998-04-15 1863.26
1998-04-16 1858.24
1998-04-17 1866.60
1998-04-20 1887.14
1998-04-21 1903.87
1998-04-22 1917.61
1998-04-23 1881.39
1998-04-24 1868.96
1998-04-27 1820.31
1998-04-28 1831.77
1998-04-29 1851.64
1998-04-30 1868.41
1998-05-01 1873.44
1998-05-04 1878.86
1998-05-05 1864.91
1998-05-06 1856.68
1998-05-07 1835.14
1998-05-08 1864.37
1998-05-11 1848.07
1998-05-12 1860.16
1998-05-13 1866.18
1998-05-14 1865.36
1998-05-15 1846.77
1998-05-18 1831.62
1998-05-19 1845.87
1998-05-20 1831.75
1998-05-21 1820.99
1998-05-22 1805.00
1998-05-25 .
1998-05-26 1778.09
1998-05-27 1781.10
1998-05-28 1794.62
1998-05-29 1778.87
1998-06-01 1746.82
1998-06-02 1761.79
1998-06-03 1742.31
1998-06-04 1769.95
1998-06-05 1782.92
1998-06-08 1787.77
1998-06-09 1800.76
1998-06-10 1773.25
1998-06-11 1749.75
1998-06-12 1745.05
1998-06-15 1715.75
1998-06-16 1753.12
1998-06-17 1776.40
1998-06-18 1772.70
1998-06-19 1781.29
1998-06-22 1805.82
1998-06-23 1844.57
1998-06-24 1877.76
1998-06-25 1863.25
1998-06-26 1869.53
1998-06-29 1891.08
1998-06-30 1894.74
1998-07-01 1914.46
1998-07-02 1894.00
1998-07-03 .
1998-07-06 1909.47
1998-07-07 1908.11
1998-07-08 1935.39
1998-07-09 1939.82
1998-07-10 1943.04
1998-07-13 1965.53
1998-07-14 1968.41
1998-07-15 1994.54
1998-07-16 2000.56
1998-07-17 2008.76
1998-07-20 2014.25
1998-07-21 1979.14
1998-07-22 1969.75
1998-07-23 1935.22
1998-07-24 1930.99
1998-07-27 1933.26
1998-07-28 1896.53
1998-07-29 1881.49
1998-07-30 1919.58
1998-07-31 1872.39
1998-08-03 1851.10
1998-08-04 1785.64
1998-08-05 1788.20
1998-08-06 1829.51
1998-08-07 1846.77
1998-08-10 1839.21
1998-08-11 1792.70
1998-08-12 1825.53
1998-08-13 1802.54
1998-08-14 1790.19
1998-08-17 1818.04
1998-08-18 1855.12
1998-08-19 1842.69
1998-08-20 1832.45
1998-08-21 1797.61
1998-08-24 1790.82
1998-08-25 1798.17
1998-08-26 1768.13
1998-08-27 1686.41
1998-08-28 1639.68
1998-08-31 1499.25
1998-09-01 1575.09
1998-09-02 1592.85
1998-09-03 1571.86
1998-09-04 1566.52
1998-09-07 .
1998-09-08 1660.86
1998-09-09 1624.55
1998-09-10 1585.33
1998-09-11 1641.64
1998-09-14 1665.69
1998-09-15 1678.11
1998-09-16 1689.91
1998-09-17 1646.25
1998-09-18 1663.77
1998-09-21 1680.43
1998-09-22 1697.80
1998-09-23 1760.27
1998-09-24 1720.34
1998-09-25 1743.59
1998-09-28 1739.22
1998-09-29 1734.05
1998-09-30 1693.84
1998-10-01 1612.33
1998-10-02 1614.98
1998-10-05 1536.69
1998-10-06 1510.89
1998-10-07 1462.61
1998-10-08 1419.12
1998-10-09 1492.49
1998-10-12 1546.08
1998-10-13 1509.45
1998-10-14 1540.97
1998-10-15 1611.01
1998-10-16 1620.95
1998-10-19 1648.73
1998-10-20 1639.19
1998-10-21 1674.75
1998-10-22 1702.64
1998-10-23 1693.86
1998-10-26 1724.98
1998-10-27 1717.63
1998-10-28 1737.35
1998-10-29 1757.19
1998-10-30 1771.39
1998-11-02 1800.91
1998-11-03 1788.43
1998-11-04 1823.57
1998-11-05 1837.10
1998-11-06 1856.56
1998-11-09 1861.05
1998-11-10 1865.62
1998-11-11 1862.11
1998-11-12 1851.06
1998-11-13 1847.99
1998-11-16 1861.68
1998-11-17 1878.52
1998-11-18 1897.44
1998-11-19 1919.68
1998-11-20 1928.21
1998-11-23 1977.42
1998-11-24 1965.88
1998-11-25 1985.21
1998-11-26 .
1998-11-27 2016.44
1998-11-30 1949.54
1998-12-01 2003.75
1998-12-02 1995.21
1998-12-03 1954.33
1998-12-04 2003.16
1998-12-07 2040.64
1998-12-08 2034.75
1998-12-09 2050.42
1998-12-10 2015.96
1998-12-11 2029.31
1998-12-14 1966.92
1998-12-15 2012.60
1998-12-16 2009.36
1998-12-17 2043.88
1998-12-18 2086.14
1998-12-21 2138.03
1998-12-22 2120.98
1998-12-23 2172.54
1998-12-24 2163.03
1998-12-25 .
1998-12-28 2180.30
1998-12-29 2181.77
1998-12-30 2166.95
1998-12-31 2192.69
1999-01-01 .
1999-01-04 2208.05
1999-01-05 2251.27
1999-01-06 2320.86
1999-01-07 2326.09
1999-01-08 2344.41
1999-01-11 2384.59
1999-01-12 2320.75
1999-01-13 2316.81
1999-01-14 2276.82
1999-01-15 2348.20
1999-01-18 .
1999-01-19 2408.17
1999-01-20 2415.49
1999-01-21 2344.72
1999-01-22 2338.88
1999-01-25 2369.31
1999-01-26 2433.41
1999-01-27 2407.14
1999-01-28 2477.34
1999-01-29 2505.89
1999-02-01 2510.09
1999-02-02 2463.42
1999-02-03 2493.41
1999-02-04 2410.07
1999-02-05 2373.62
1999-02-08 2404.92
1999-02-09 2310.79
1999-02-10 2309.50
1999-02-11 2405.55
1999-02-12 2321.89
1999-02-15 .
1999-02-16 2313.87
1999-02-17 2248.91
1999-02-18 2260.55
1999-02-19 2283.60
1999-02-22 2342.01
1999-02-23 2376.35
1999-02-24 2339.38
1999-02-25 2326.82
1999-02-26 2288.03
1999-03-01 2295.18
1999-03-02 2259.03
1999-03-03 2265.20
1999-03-04 2292.89
1999-03-05 2337.11
1999-03-08 2397.62
1999-03-09 2392.94
1999-03-10 2406.00
1999-03-11 2412.25
1999-03-12 2381.53
1999-03-15 2431.44
1999-03-16 2439.27
1999-03-17 2428.97
1999-03-18 2462.96
1999-03-19 2421.27
1999-03-22 2395.94
1999-03-23 2322.84
1999-03-24 2365.28
1999-03-25 2434.80
1999-03-26 2419.17
1999-03-29 2492.84
1999-03-30 2480.29
1999-03-31 2461.40
1999-04-01 2493.37
1999-04-02 .
1999-04-05 2560.06
1999-04-06 2563.17
1999-04-07 2544.43
1999-04-08 2573.39
1999-04-09 2593.05
1999-04-12 2598.81
1999-04-13 2583.50
1999-04-14 2507.28
1999-04-15 2521.77
1999-04-16 2484.04
1999-04-19 2345.61
1999-04-20 2409.64
1999-04-21 2489.08
1999-04-22 2561.61
1999-04-23 2590.69
1999-04-26 2652.05
1999-04-27 2602.41
1999-04-28 2550.37
1999-04-29 2528.44
1999-04-30 2542.85
1999-05-03 2535.58
1999-05-04 2485.12
1999-05-05 2534.45
1999-05-06 2472.28
1999-05-07 2503.62
1999-05-10 2526.39
1999-05-11 2566.68
1999-05-12 2606.54
1999-05-13 2582.00
1999-05-14 2527.86
1999-05-17 2561.84
1999-05-18 2558.36
1999-05-19 2577.40
1999-05-20 2542.23
1999-05-21 2520.14
1999-05-24 2453.66
1999-05-25 2380.90
1999-05-26 2427.18
1999-05-27 2419.15
1999-05-28 2470.52
1999-05-31 .
1999-06-01 2412.03
1999-06-02 2432.41
1999-06-03 2403.32
1999-06-04 2478.34
1999-06-07 2524.21
1999-06-08 2474.56
1999-06-09 2519.35
1999-06-10 2484.62
1999-06-11 2447.88
1999-06-14 2398.31
1999-06-15 2414.67
1999-06-16 2517.83
1999-06-17 2544.15
1999-06-18 2563.44
1999-06-21 2630.28
1999-06-22 2580.26
1999-06-23 2598.12
1999-06-24 2553.99
1999-06-25 2552.65
1999-06-28 2602.44
1999-06-29 2642.11
1999-06-30 2686.12
1999-07-01 2706.18
1999-07-02 2741.02
1999-07-05 .
1999-07-06 2736.78
1999-07-07 2743.04
1999-07-08 2771.86
1999-07-09 2793.07
1999-07-12 2790.44
1999-07-13 2778.23
1999-07-14 2818.13
1999-07-15 2839.37
1999-07-16 2864.48
1999-07-19 2830.29
1999-07-20 2732.18
1999-07-21 2761.77
1999-07-22 2684.44
1999-07-23 2692.40
1999-07-26 2619.19
1999-07-27 2679.33
1999-07-28 2705.84
1999-07-29 2640.01
1999-07-30 2638.49
1999-08-02 2623.63
1999-08-03 2587.99
1999-08-04 2540.00
1999-08-05 2565.83
1999-08-06 2547.97
1999-08-09 2518.98
1999-08-10 2490.11
1999-08-11 2564.98
1999-08-12 2549.49
1999-08-13 2637.81
1999-08-16 2645.28
1999-08-17 2671.22
1999-08-18 2657.73
1999-08-19 2621.43
1999-08-20 2648.33
1999-08-23 2719.57
1999-08-24 2752.37
1999-08-25 2805.60
1999-08-26 2774.62
1999-08-27 2758.90
1999-08-30 2712.69
1999-08-31 2739.35
1999-09-01 2750.80
1999-09-02 2734.24
1999-09-03 2843.11
1999-09-06 .
1999-09-07 2837.26
1999-09-08 2808.74
1999-09-09 2852.02
1999-09-10 2887.06
1999-09-13 2844.77
1999-09-14 2868.29
1999-09-15 2814.17
1999-09-16 2806.72
1999-09-17 2869.62
1999-09-20 2886.15
1999-09-21 2821.10
1999-09-22 2858.16
1999-09-23 2749.83
1999-09-24 2740.41
1999-09-27 2761.75
1999-09-28 2756.25
1999-09-29 2730.27
1999-09-30 2746.16
1999-10-01 2736.85
1999-10-04 2795.97
1999-10-05 2799.67
1999-10-06 2857.21
1999-10-07 2860.70
1999-10-08 2886.57
1999-10-11 2915.95
1999-10-12 2872.43
1999-10-13 2801.27
1999-10-14 2806.84
1999-10-15 2731.83
1999-10-18 2689.15
1999-10-19 2688.18
1999-10-20 2788.13
1999-10-21 2801.95
1999-10-22 2816.52
1999-10-25 2815.95
1999-10-26 2811.47
1999-10-27 2802.52
1999-10-28 2875.22
1999-10-29 2966.43
1999-11-01 2967.65
1999-11-02 2981.63
1999-11-03 3028.51
1999-11-04 3055.95
1999-11-05 3102.29
1999-11-08 3143.97
1999-11-09 3125.04
1999-11-10 3155.96
1999-11-11 3197.29
1999-11-12 3221.15
1999-11-15 3219.54
1999-11-16 3295.52
1999-11-17 3269.39
1999-11-18 3347.11
1999-11-19 3369.25
1999-11-22 3392.56
1999-11-23 3342.87
1999-11-24 3420.50
1999-11-25 .
1999-11-26 3447.81
1999-11-29 3421.37
1999-11-30 3336.16
1999-12-01 3353.71
1999-12-02 3452.78
1999-12-03 3520.63
1999-12-06 3546.01
1999-12-07 3586.92
1999-12-08 3586.08
1999-12-09 3594.17
1999-12-10 3620.24
1999-12-13 3658.17
1999-12-14 3571.66
1999-12-15 3621.95
1999-12-16 3715.06
1999-12-17 3753.06
1999-12-20 3783.87
1999-12-21 3911.15
1999-12-22 3937.30
1999-12-23 3969.44
1999-12-24 .
1999-12-27 3975.38
1999-12-28 3972.11
1999-12-29 4041.46
1999-12-30 4036.87
1999-12-31 4069.31
2000-01-03 4131.15
2000-01-04 3901.69
2000-01-05 3877.54
2000-01-06 3727.13
2000-01-07 3882.62
2000-01-10 4049.67
2000-01-11 3921.19
2000-01-12 3850.02
2000-01-13 3957.21
2000-01-14 4064.27
2000-01-17 .
2000-01-18 4130.81
2000-01-19 4151.29
2000-01-20 4189.51
2000-01-21 4235.40
2000-01-24 4096.08
2000-01-25 4167.41
2000-01-26 4069.91
2000-01-27 4039.56
2000-01-28 3887.07
2000-01-31 3940.35
2000-02-01 4051.98
2000-02-02 4073.96
2000-02-03 4210.98
2000-02-04 4244.14
2000-02-07 4321.77
2000-02-08 4427.50
2000-02-09 4363.24
2000-02-10 4485.63
2000-02-11 4395.45
2000-02-14 4418.55
2000-02-15 4420.77
2000-02-16 4427.65
2000-02-17 4548.92
2000-02-18 4411.74
2000-02-21 .
2000-02-22 4382.12
2000-02-23 4550.33
2000-02-24 4617.65
2000-02-25 4590.50
2000-02-28 4577.85
2000-02-29 4696.69
2000-03-01 4784.08
2000-03-02 4754.51
2000-03-03 4914.79
2000-03-06 4904.85
2000-03-07 4847.84
2000-03-08 4897.26
2000-03-09 5046.86
2000-03-10 5048.62
2000-03-13 4907.24
2000-03-14 4706.63
2000-03-15 4582.62
2000-03-16 4717.39
2000-03-17 4798.13
2000-03-20 4610.00
2000-03-21 4711.68
2000-03-22 4864.75
2000-03-23 4940.61
2000-03-24 4963.03
2000-03-27 4958.56
2000-03-28 4833.89
2000-03-29 4644.67
2000-03-30 4457.89
2000-03-31 4572.83
2000-04-03 4223.68
2000-04-04 4148.89
2000-04-05 4169.22
2000-04-06 4267.56
2000-04-07 4446.45
2000-04-10 4188.20
2000-04-11 4055.90
2000-04-12 3769.63
2000-04-13 3676.78
2000-04-14 3321.29
2000-04-17 3539.16
2000-04-18 3793.57
2000-04-19 3706.41
2000-04-20 3643.88
2000-04-21 .
2000-04-24 3482.48
2000-04-25 3711.23
2000-04-26 3630.09
2000-04-27 3774.03
2000-04-28 3860.66
2000-05-01 3958.08
2000-05-02 3785.45
2000-05-03 3707.31
2000-05-04 3720.24
2000-05-05 3816.82
2000-05-08 3669.38
2000-05-09 3585.01
2000-05-10 3384.73
2000-05-11 3499.58
2000-05-12 3529.06
2000-05-15 3607.65
2000-05-16 3717.57
2000-05-17 3644.96
2000-05-18 3538.71
2000-05-19 3390.40
2000-05-22 3364.21
2000-05-23 3164.55
2000-05-24 3270.61
2000-05-25 3205.35
2000-05-26 3205.11
2000-05-29 .
2000-05-30 3459.48
2000-05-31 3400.91
2000-06-01 3582.50
2000-06-02 3813.38
2000-06-05 3821.76
2000-06-06 3756.37
2000-06-07 3839.26
2000-06-08 3825.56
2000-06-09 3874.84
2000-06-12 3767.91
2000-06-13 3851.06
2000-06-14 3797.41
2000-06-15 3845.74
2000-06-16 3860.56
2000-06-19 3989.83
2000-06-20 4013.36
2000-06-21 4064.01
2000-06-22 3936.84
2000-06-23 3845.34
2000-06-26 3912.12
2000-06-27 3858.96
2000-06-28 3940.34
2000-06-29 3877.23
2000-06-30 3966.11
2000-07-03 3991.93
2000-07-04 .
2000-07-05 3863.10
2000-07-06 3960.57
2000-07-07 4023.20
2000-07-10 3980.29
2000-07-11 3956.42
2000-07-12 4099.59
2000-07-13 4174.86
2000-07-14 4246.18
2000-07-17 4274.67
2000-07-18 4177.17
2000-07-19 4055.63
2000-07-20 4184.56
2000-07-21 4094.45
2000-07-24 3981.57
2000-07-25 4029.57
2000-07-26 3987.72
2000-07-27 3842.23
2000-07-28 3663.00
2000-07-31 3766.99
2000-08-01 3685.52
2000-08-02 3658.46
2000-08-03 3759.88
2000-08-04 3787.36
2000-08-07 3862.99
2000-08-08 3848.55
2000-08-09 3853.50
2000-08-10 3759.99
2000-08-11 3789.47
2000-08-14 3849.69
2000-08-15 3851.66
2000-08-16 3861.20
2000-08-17 3940.87
2000-08-18 3930.34
2000-08-21 3953.15
2000-08-22 3958.21
2000-08-23 4011.01
2000-08-24 4053.28
2000-08-25 4042.68
2000-08-28 4070.59
2000-08-29 4082.17
2000-08-30 4103.81
2000-08-31 4206.35
2000-09-01 4234.33
2000-09-04 .
2000-09-05 4143.18
2000-09-06 4013.34
2000-09-07 4098.35
2000-09-08 3978.41
2000-09-11 3896.35
2000-09-12 3849.51
2000-09-13 3893.89
2000-09-14 3913.86
2000-09-15 3835.23
2000-09-18 3726.52
2000-09-19 3865.64
2000-09-20 3897.44
2000-09-21 3828.87
2000-09-22 3803.76
2000-09-25 3741.22
2000-09-26 3689.10
2000-09-27 3656.30
2000-09-28 3778.32
2000-09-29 3672.82
2000-10-02 3568.90
2000-10-03 3455.83
2000-10-04 3523.10
2000-10-05 3472.10
2000-10-06 3361.01
2000-10-09 3355.56
2000-10-10 3240.54
2000-10-11 3168.49
2000-10-12 3074.68
2000-10-13 3316.77
2000-10-16 3290.28
2000-10-17 3213.96
2000-10-18 3171.56
2000-10-19 3418.60
2000-10-20 3483.14
2000-10-23 3468.69
2000-10-24 3419.79
2000-10-25 3229.57
2000-10-26 3272.18
2000-10-27 3278.36
2000-10-30 3191.40
2000-10-31 3369.63
2000-11-01 3333.39
2000-11-02 3429.02
2000-11-03 3451.58
2000-11-06 3416.21
2000-11-07 3415.79
2000-11-08 3231.70
2000-11-09 3200.35
2000-11-10 3028.99
2000-11-13 2966.72
2000-11-14 3138.27
2000-11-15 3165.49
2000-11-16 3031.88
2000-11-17 3027.19
2000-11-20 2875.64
2000-11-21 2871.45
2000-11-22 2755.34
2000-11-23 .
2000-11-24 2904.38
2000-11-27 2880.49
2000-11-28 2734.98
2000-11-29 2706.93
2000-11-30 2597.93
2000-12-01 2645.29
2000-12-04 2615.75
2000-12-05 2889.80
2000-12-06 2796.50
2000-12-07 2752.66
2000-12-08 2917.43
2000-12-11 3015.10
2000-12-12 2931.77
2000-12-13 2822.77
2000-12-14 2728.51
2000-12-15 2653.27
2000-12-18 2624.52
2000-12-19 2511.71
2000-12-20 2332.78
2000-12-21 2340.12
2000-12-22 2517.02
2000-12-25 .
2000-12-26 2493.52
2000-12-27 2539.35
2000-12-28 2557.76
2000-12-29 2470.52
2001-01-01 .
2001-01-02 2291.86
2001-01-03 2616.69
2001-01-04 2566.83
2001-01-05 2407.65
2001-01-08 2395.92
2001-01-09 2441.30
2001-01-10 2524.18
2001-01-11 2640.57
2001-01-12 2626.50
2001-01-15 .
2001-01-16 2618.55
2001-01-17 2682.78
2001-01-18 2768.49
2001-01-19 2770.38
2001-01-22 2757.91
2001-01-23 2840.39
2001-01-24 2859.15
2001-01-25 2754.28
2001-01-26 2781.30
2001-01-29 2838.34
2001-01-30 2838.35
2001-01-31 2772.73
2001-02-01 2782.79
2001-02-02 2660.50
2001-02-05 2643.21
2001-02-06 2664.49
2001-02-07 2607.82
2001-02-08 2562.06
2001-02-09 2470.97
2001-02-12 2489.66
2001-02-13 2427.72
2001-02-14 2491.40
2001-02-15 2552.91
2001-02-16 2425.38
2001-02-19 .
2001-02-20 2318.35
2001-02-21 2268.94
2001-02-22 2244.96
2001-02-23 2262.51
2001-02-26 2308.50
2001-02-27 2207.82
2001-02-28 2151.83
2001-03-01 2183.37
2001-03-02 2117.63
2001-03-05 2142.92
2001-03-06 2204.43
2001-03-07 2223.92
2001-03-08 2168.73
2001-03-09 2052.78
2001-03-12 1923.38
2001-03-13 2014.78
2001-03-14 1972.09
2001-03-15 1940.71
2001-03-16 1890.91
2001-03-19 1951.18
2001-03-20 1857.44
2001-03-21 1830.23
2001-03-22 1897.70
2001-03-23 1928.68
2001-03-26 1918.49
2001-03-27 1972.26
2001-03-28 1854.13
2001-03-29 1820.57
2001-03-30 1840.26
2001-04-02 1782.97
2001-04-03 1673.00
2001-04-04 1638.80
2001-04-05 1785.00
2001-04-06 1720.36
2001-04-09 1745.71
2001-04-10 1852.03
2001-04-11 1898.95
2001-04-12 1961.43
2001-04-13 .
2001-04-16 1909.57
2001-04-17 1923.22
2001-04-18 2079.44
2001-04-19 2182.14
2001-04-20 2163.41
2001-04-23 2059.32
2001-04-24 2016.61
2001-04-25 2059.80
2001-04-26 2034.88
2001-04-27 2075.68
2001-04-30 2116.24
2001-05-01 2168.24
2001-05-02 2220.60
2001-05-03 2146.20
2001-05-04 2191.53
2001-05-07 2173.57
2001-05-08 2198.77
2001-05-09 2156.63
2001-05-10 2128.86
2001-05-11 2107.43
2001-05-14 2081.92
2001-05-15 2085.58
2001-05-16 2166.44
2001-05-17 2193.68
2001-05-18 2198.88
2001-05-21 2305.59
2001-05-22 2313.85
2001-05-23 2243.48
2001-05-24 2282.02
2001-05-25 2251.03
2001-05-28 .
2001-05-29 2175.54
2001-05-30 2084.50
2001-05-31 2110.49
2001-06-01 2149.44
2001-06-04 2155.93
2001-06-05 2233.66
2001-06-06 2217.73
2001-06-07 2264.00
2001-06-08 2215.10
2001-06-11 2170.78
2001-06-12 2169.95
2001-06-13 2121.66
2001-06-14 2044.07
2001-06-15 2028.43
2001-06-18 1988.63
2001-06-19 1992.66
2001-06-20 2031.24
2001-06-21 2058.76
2001-06-22 2034.84
2001-06-25 2050.87
2001-06-26 2064.62
2001-06-27 2074.74
2001-06-28 2125.46
2001-06-29 2160.54
2001-07-02 2148.72
2001-07-03 2140.80
2001-07-04 .
2001-07-05 2080.11
2001-07-06 2004.16
2001-07-09 2026.71
2001-07-10 1962.79
2001-07-11 1972.04
2001-07-12 2075.74
2001-07-13 2084.79
2001-07-16 2029.12
2001-07-17 2067.32
2001-07-18 2016.17
2001-07-19 2046.59
2001-07-20 2029.37
2001-07-23 1988.56
2001-07-24 1959.24
2001-07-25 1984.32
2001-07-26 2022.96
2001-07-27 2029.07
2001-07-30 2017.84
2001-07-31 2027.13
2001-08-01 2068.38
2001-08-02 2087.38
2001-08-03 2066.33
2001-08-06 2034.26
2001-08-07 2027.79
2001-08-08 1966.36
2001-08-09 1963.32
2001-08-10 1956.47
2001-08-13 1982.25
2001-08-14 1964.53
2001-08-15 1918.89
2001-08-16 1930.32
2001-08-17 1867.01
2001-08-20 1881.35
2001-08-21 1831.30
2001-08-22 1860.01
2001-08-23 1842.97
2001-08-24 1916.80
2001-08-27 1912.41
2001-08-28 1864.98
2001-08-29 1843.17
2001-08-30 1791.68
2001-08-31 1805.43
2001-09-03 .
2001-09-04 1770.78
2001-09-05 1759.01
2001-09-06 1705.64
2001-09-07 1687.70
2001-09-10 1695.38
2001-09-11 .
2001-09-12 .
2001-09-13 .
2001-09-14 .
2001-09-17 1579.55
2001-09-18 1555.08
2001-09-19 1527.80
2001-09-20 1470.93
2001-09-21 1423.19
2001-09-24 1499.40
2001-09-25 1501.64
2001-09-26 1464.04
2001-09-27 1460.71
2001-09-28 1498.80
2001-10-01 1480.46
2001-10-02 1492.33
2001-10-03 1580.81
2001-10-04 1597.31
2001-10-05 1605.30
2001-10-08 1605.95
2001-10-09 1570.19
2001-10-10 1626.26
2001-10-11 1701.47
2001-10-12 1703.40
2001-10-15 1696.31
2001-10-16 1722.07
2001-10-17 1646.34
2001-10-18 1652.72
2001-10-19 1671.31
2001-10-22 1708.08
2001-10-23 1704.44
2001-10-24 1731.54
2001-10-25 1775.47
2001-10-26 1768.96
2001-10-29 1699.52
2001-10-30 1667.41
2001-10-31 1690.20
2001-11-01 1746.30
2001-11-02 1745.73
2001-11-05 1793.65
2001-11-06 1835.08
2001-11-07 1837.53
2001-11-08 1827.77
2001-11-09 1828.48
2001-11-12 1840.13
2001-11-13 1892.11
2001-11-14 1903.19
2001-11-15 1900.57
2001-11-16 1898.58
2001-11-19 1934.42
2001-11-20 1880.51
2001-11-21 1875.05
2001-11-22 .
2001-11-23 1903.20
2001-11-26 1941.23
2001-11-27 1935.97
2001-11-28 1887.97
2001-11-29 1933.26
2001-11-30 1930.58
2001-12-03 1904.90
2001-12-04 1963.10
2001-12-05 2046.84
2001-12-06 2054.27
2001-12-07 2021.26
2001-12-10 1992.12
2001-12-11 2001.93
2001-12-12 2011.38
2001-12-13 1946.51
2001-12-14 1953.17
2001-12-17 1987.45
2001-12-18 2004.76
2001-12-19 1982.89
2001-12-20 1918.54
2001-12-21 1945.83
2001-12-24 1944.48
2001-12-25 .
2001-12-26 1960.70
2001-12-27 1976.42
2001-12-28 1987.26
2001-12-31 1950.40
2002-01-01 .
2002-01-02 1979.25
2002-01-03 2044.27
2002-01-04 2059.38
2002-01-07 2037.10
2002-01-08 2055.74
2002-01-09 2044.89
2002-01-10 2047.24
2002-01-11 2022.46
2002-01-14 1990.74
2002-01-15 2000.91
2002-01-16 1944.44
2002-01-17 1985.82
2002-01-18 1930.34
2002-01-21 .
2002-01-22 1882.53
2002-01-23 1922.38
2002-01-24 1942.58
2002-01-25 1937.70
2002-01-28 1943.91
2002-01-29 1892.99
2002-01-30 1913.44
2002-01-31 1934.03
2002-02-01 1911.24
2002-02-04 1855.53
2002-02-05 1838.52
2002-02-06 1812.71
2002-02-07 1782.11
2002-02-08 1818.88
2002-02-11 1846.66
2002-02-12 1834.21
2002-02-13 1859.16
2002-02-14 1843.37
2002-02-15 1805.20
2002-02-18 .
2002-02-19 1750.61
2002-02-20 1775.57
2002-02-21 1716.24
2002-02-22 1724.54
2002-02-25 1769.88
2002-02-26 1766.86
2002-02-27 1751.88
2002-02-28 1731.49
2002-03-01 1802.74
2002-03-04 1859.32
2002-03-05 1866.29
2002-03-06 1890.40
2002-03-07 1881.63
2002-03-08 1929.67
2002-03-11 1929.49
2002-03-12 1897.12
2002-03-13 1862.03
2002-03-14 1854.14
2002-03-15 1868.30
2002-03-18 1877.06
2002-03-19 1880.87
2002-03-20 1832.87
2002-03-21 1868.83
2002-03-22 1851.39
2002-03-25 1812.49
2002-03-26 1824.17
2002-03-27 1826.75
2002-03-28 1845.35
2002-03-29 .
2002-04-01 1862.62
2002-04-02 1804.40
2002-04-03 1784.35
2002-04-04 1789.75
2002-04-05 1770.03
2002-04-08 1785.87
2002-04-09 1742.57
2002-04-10 1767.07
2002-04-11 1725.24
2002-04-12 1756.19
2002-04-15 1753.78
2002-04-16 1816.79
2002-04-17 1810.67
2002-04-18 1802.43
2002-04-19 1796.83
2002-04-22 1758.68
2002-04-23 1730.29
2002-04-24 1713.34
2002-04-25 1713.70
2002-04-26 1663.89
2002-04-29 1656.93
2002-04-30 1688.23
2002-05-01 1677.53
2002-05-02 1644.82
2002-05-03 1613.03
2002-05-06 1578.48
2002-05-07 1573.82
2002-05-08 1696.29
2002-05-09 1650.49
2002-05-10 1600.85
2002-05-13 1652.54
2002-05-14 1719.05
2002-05-15 1725.56
2002-05-16 1730.44
2002-05-17 1741.39
2002-05-20 1701.59
2002-05-21 1664.18
2002-05-22 1673.45
2002-05-23 1697.63
2002-05-24 1661.49
2002-05-27 .
2002-05-28 1652.17
2002-05-29 1624.39
2002-05-30 1631.92
2002-05-31 1615.73
2002-06-03 1562.56
2002-06-04 1578.12
2002-06-05 1595.26
2002-06-06 1554.88
2002-06-07 1535.48
2002-06-10 1530.69
2002-06-11 1497.18
2002-06-12 1519.12
2002-06-13 1496.86
2002-06-14 1504.74
2002-06-17 1553.29
2002-06-18 1542.96
2002-06-19 1496.83
2002-06-20 1464.75
2002-06-21 1440.96
2002-06-24 1460.34
2002-06-25 1423.99
2002-06-26 1429.33
2002-06-27 1459.20
2002-06-28 1463.21
2002-07-01 1403.80
2002-07-02 1357.82
2002-07-03 1380.17
2002-07-04 .
2002-07-05 1448.36
2002-07-08 1405.61
2002-07-09 1381.12
2002-07-10 1346.01
2002-07-11 1374.43
2002-07-12 1373.50
2002-07-15 1382.62
2002-07-16 1375.26
2002-07-17 1397.25
2002-07-18 1356.95
2002-07-19 1319.15
2002-07-22 1282.65
2002-07-23 1229.05
2002-07-24 1290.23
2002-07-25 1240.08
2002-07-26 1262.12
2002-07-29 1335.25
2002-07-30 1344.19
2002-07-31 1328.26
2002-08-01 1280.00
2002-08-02 1247.92
2002-08-05 1206.01
2002-08-06 1259.55
2002-08-07 1280.90
2002-08-08 1316.52
2002-08-09 1306.12
2002-08-12 1306.84
2002-08-13 1269.28
2002-08-14 1334.30
2002-08-15 1345.01
2002-08-16 1361.01
2002-08-19 1394.54
2002-08-20 1376.59
2002-08-21 1409.25
2002-08-22 1422.95
2002-08-23 1380.62
2002-08-26 1391.74
2002-08-27 1347.78
2002-08-28 1314.38
2002-08-29 1335.77
2002-08-30 1314.85
2002-09-02 .
2002-09-03 1263.84
2002-09-04 1292.31
2002-09-05 1251.00
2002-09-06 1295.30
2002-09-09 1304.60
2002-09-10 1320.09
2002-09-11 1315.45
2002-09-12 1279.68
2002-09-13 1291.40
2002-09-16 1275.88
2002-09-17 1259.94
2002-09-18 1252.13
2002-09-19 1216.45
2002-09-20 1221.09
2002-09-23 1184.93
2002-09-24 1182.17
2002-09-25 1222.29
2002-09-26 1221.61
2002-09-27 1199.16
2002-09-30 1172.06
2002-10-01 1213.72
2002-10-02 1187.30
2002-10-03 1165.56
2002-10-04 1139.90
2002-10-07 1119.40
2002-10-08 1129.21
2002-10-09 1114.11
2002-10-10 1163.37
2002-10-11 1210.47
2002-10-14 1220.53
2002-10-15 1282.44
2002-10-16 1232.42
2002-10-17 1272.29
2002-10-18 1287.86
2002-10-21 1309.67
2002-10-22 1292.80
2002-10-23 1320.23
2002-10-24 1298.71
2002-10-25 1331.13
2002-10-28 1315.83
2002-10-29 1300.54
2002-10-30 1326.73
2002-10-31 1329.75
2002-11-01 1360.70
2002-11-04 1396.54
2002-11-05 1401.17
2002-11-06 1418.99
2002-11-07 1376.71
2002-11-08 1359.28
2002-11-11 1319.19
2002-11-12 1349.56
2002-11-13 1361.34
2002-11-14 1411.52
2002-11-15 1411.14
2002-11-18 1393.69
2002-11-19 1374.51
2002-11-20 1419.35
2002-11-21 1467.55
2002-11-22 1468.74
2002-11-25 1481.90
2002-11-26 1444.43
2002-11-27 1487.94
2002-11-28 .
2002-11-29 1478.78
2002-12-02 1484.78
2002-12-03 1448.96
2002-12-04 1430.35
2002-12-05 1410.75
2002-12-06 1422.44
2002-12-09 1367.14
2002-12-10 1390.76
2002-12-11 1396.59
2002-12-12 1399.55
2002-12-13 1362.42
2002-12-16 1400.33
2002-12-17 1392.05
2002-12-18 1361.51
2002-12-19 1354.10
2002-12-20 1363.05
2002-12-23 1381.69
2002-12-24 1372.47
2002-12-25 .
2002-12-26 1367.89
2002-12-27 1348.31
2002-12-30 1339.54
2002-12-31 1335.51
2003-01-01 .
2003-01-02 1384.85
2003-01-03 1387.08
2003-01-06 1421.32
2003-01-07 1431.57
2003-01-08 1401.07
2003-01-09 1438.46
2003-01-10 1447.72
2003-01-13 1446.04
2003-01-14 1460.99
2003-01-15 1438.80
2003-01-16 1423.75
2003-01-17 1376.19
2003-01-20 .
2003-01-21 1364.25
2003-01-22 1359.48
2003-01-23 1388.27
2003-01-24 1342.14
2003-01-27 1325.27
2003-01-28 1342.18
2003-01-29 1358.06
2003-01-30 1322.35
2003-01-31 1320.91
2003-02-03 1323.79
2003-02-04 1306.15
2003-02-05 1301.50
2003-02-06 1301.73
2003-02-07 1282.47
2003-02-10 1296.68
2003-02-11 1295.46
2003-02-12 1278.97
2003-02-13 1277.44
2003-02-14 1310.17
2003-02-17 .
2003-02-18 1346.54
2003-02-19 1334.32
2003-02-20 1331.23
2003-02-21 1349.02
2003-02-24 1322.38
2003-02-25 1328.98
2003-02-26 1303.68
2003-02-27 1323.94
2003-02-28 1337.52
2003-03-03 1320.29
2003-03-04 1307.77
2003-03-05 1314.40
2003-03-06 1302.89
2003-03-07 1305.29
2003-03-10 1278.37
2003-03-11 1271.47
2003-03-12 1279.24
2003-03-13 1340.77
2003-03-14 1340.33
2003-03-17 1392.27
2003-03-18 1400.55
2003-03-19 1397.07
2003-03-20 1402.77
2003-03-21 1421.84
2003-03-24 1369.78
2003-03-25 1391.01
2003-03-26 1387.45
2003-03-27 1384.25
2003-03-28 1369.60
2003-03-31 1341.17
2003-04-01 1348.30
2003-04-02 1396.72
2003-04-03 1396.58
2003-04-04 1383.51
2003-04-07 1389.51
2003-04-08 1382.94
2003-04-09 1356.74
2003-04-10 1365.61
2003-04-11 1358.85
2003-04-14 1384.95
2003-04-15 1391.01
2003-04-16 1394.72
2003-04-17 1425.50
2003-04-18 .
2003-04-21 1424.37
2003-04-22 1451.36
2003-04-23 1466.16
2003-04-24 1457.23
2003-04-25 1434.54
2003-04-28 1462.24
2003-04-29 1471.30
2003-04-30 1464.31
2003-05-01 1472.56
2003-05-02 1502.88
2003-05-05 1504.04
2003-05-06 1523.71
2003-05-07 1506.76
2003-05-08 1489.69
2003-05-09 1520.15
2003-05-12 1541.40
2003-05-13 1539.68
2003-05-14 1534.90
2003-05-15 1551.38
2003-05-16 1538.53
2003-05-19 1492.77
2003-05-20 1491.09
2003-05-21 1489.87
2003-05-22 1507.55
2003-05-23 1510.09
2003-05-26 .
2003-05-27 1556.69
2003-05-28 1563.24
2003-05-29 1574.95
2003-05-30 1595.91
2003-06-02 1590.75
2003-06-03 1603.56
2003-06-04 1634.65
2003-06-05 1646.01
2003-06-06 1627.42
2003-06-09 1603.97
2003-06-10 1627.67
2003-06-11 1646.02
2003-06-12 1653.62
2003-06-13 1626.49
2003-06-16 1666.58
2003-06-17 1668.44
2003-06-18 1677.14
2003-06-19 1648.64
2003-06-20 1644.72
2003-06-23 1610.75
2003-06-24 1605.61
2003-06-25 1602.66
2003-06-26 1634.01
2003-06-27 1625.26
2003-06-30 1622.80
2003-07-01 1640.13
2003-07-02 1678.73
2003-07-03 1663.46
2003-07-04 .
2003-07-07 1720.71
2003-07-08 1746.46
2003-07-09 1747.46
2003-07-10 1715.86
2003-07-11 1733.93
2003-07-14 1754.82
2003-07-15 1753.21
2003-07-16 1747.97
2003-07-17 1698.02
2003-07-18 1708.50
2003-07-21 1681.41
2003-07-22 1706.10
2003-07-23 1719.18
2003-07-24 1701.42
2003-07-25 1730.70
2003-07-28 1735.36
2003-07-29 1731.37
2003-07-30 1720.91
2003-07-31 1735.02
2003-08-01 1715.62
2003-08-04 1714.06
2003-08-05 1673.50
2003-08-06 1652.68
2003-08-07 1652.18
2003-08-08 1644.03
2003-08-11 1661.51
2003-08-12 1687.01
2003-08-13 1686.61
2003-08-14 1700.34
2003-08-15 1702.01
2003-08-18 1739.49
2003-08-19 1761.11
2003-08-20 1760.54
2003-08-21 1777.55
2003-08-22 1765.32
2003-08-25 1764.31
2003-08-26 1770.65
2003-08-27 1782.13
2003-08-28 1800.18
2003-08-29 1810.45
2003-09-01 .
2003-09-02 1841.48
2003-09-03 1852.90
2003-09-04 1868.97
2003-09-05 1858.24
2003-09-08 1888.62
2003-09-09 1873.43
2003-09-10 1823.81
2003-09-11 1846.09
2003-09-12 1855.03
2003-09-15 1845.70
2003-09-16 1887.25
2003-09-17 1883.10
2003-09-18 1909.55
2003-09-19 1905.70
2003-09-22 1874.62
2003-09-23 1901.72
2003-09-24 1843.70
2003-09-25 1817.24
2003-09-26 1792.07
2003-09-29 1824.56
2003-09-30 1786.94
2003-10-01 1832.25
2003-10-02 1836.22
2003-10-03 1880.57
2003-10-06 1893.46
2003-10-07 1907.85
2003-10-08 1893.78
2003-10-09 1911.90
2003-10-10 1915.31
2003-10-13 1933.53
2003-10-14 1943.19
2003-10-15 1939.10
2003-10-16 1950.14
2003-10-17 1912.36
2003-10-20 1925.14
2003-10-21 1940.90
2003-10-22 1898.07
2003-10-23 1885.51
2003-10-24 1865.59
2003-10-27 1882.91
2003-10-28 1932.26
2003-10-29 1936.56
2003-10-30 1932.69
2003-10-31 1932.21
2003-11-03 1967.70
2003-11-04 1957.96
2003-11-05 1959.37
2003-11-06 1976.37
2003-11-07 1970.74
2003-11-10 1941.64
2003-11-11 1930.75
2003-11-12 1973.11
2003-11-13 1967.35
2003-11-14 1930.26
2003-11-17 1909.61
2003-11-18 1881.75
2003-11-19 1899.65
2003-11-20 1881.92
2003-11-21 1893.88
2003-11-24 1947.14
2003-11-25 1943.04
2003-11-26 1953.31
2003-11-27 .
2003-11-28 1960.26
2003-12-01 1989.82
2003-12-02 1980.07
2003-12-03 1960.25
2003-12-04 1968.80
2003-12-05 1937.82
2003-12-08 1948.85
2003-12-09 1908.32
2003-12-10 1904.65
2003-12-11 1942.32
2003-12-12 1949.00
2003-12-15 1918.26
2003-12-16 1924.29
2003-12-17 1921.33
2003-12-18 1956.18
2003-12-19 1951.02
2003-12-22 1955.80
2003-12-23 1974.78
2003-12-24 1969.23
2003-12-25 .
2003-12-26 1973.14
2003-12-29 2006.48
2003-12-30 2009.88
2003-12-31 2003.37
2004-01-01 .
2004-01-02 2006.68
2004-01-05 2047.36
2004-01-06 2057.37
2004-01-07 2077.68
2004-01-08 2100.25
2004-01-09 2086.92
2004-01-12 2111.78
2004-01-13 2096.44
2004-01-14 2111.13
2004-01-15 2109.08
2004-01-16 2140.46
2004-01-19 .
2004-01-20 2147.98
2004-01-21 2142.45
2004-01-22 2119.01
2004-01-23 2123.87
2004-01-26 2153.83
2004-01-27 2116.04
2004-01-28 2077.37
2004-01-29 2068.23
2004-01-30 2066.15
2004-02-02 2063.15
2004-02-03 2066.21
2004-02-04 2014.14
2004-02-05 2019.56
2004-02-06 2064.01
2004-02-09 2060.57
2004-02-10 2075.33
2004-02-11 2089.66
2004-02-12 2073.61
2004-02-13 2053.56
2004-02-16 .
2004-02-17 2080.35
2004-02-18 2076.47
2004-02-19 2045.96
2004-02-20 2037.93
2004-02-23 2007.52
2004-02-24 2005.44
2004-02-25 2022.98
2004-02-26 2032.57
2004-02-27 2029.82
2004-03-01 2057.80
2004-03-02 2039.65
2004-03-03 2033.36
2004-03-04 2055.11
2004-03-05 2047.63
2004-03-08 2008.78
2004-03-09 1995.16
2004-03-10 1964.15
2004-03-11 1943.89
2004-03-12 1984.73
2004-03-15 1939.20
2004-03-16 1943.09
2004-03-17 1976.76
2004-03-18 1962.44
2004-03-19 1940.47
2004-03-22 1909.90
2004-03-23 1901.80
2004-03-24 1909.48
2004-03-25 1967.17
2004-03-26 1960.02
2004-03-29 1992.57
2004-03-30 2000.63
2004-03-31 1994.22
2004-04-01 2015.01
2004-04-02 2057.17
2004-04-05 2079.12
2004-04-06 2059.90
2004-04-07 2050.24
2004-04-08 2052.88
2004-04-09 .
2004-04-12 2065.48
2004-04-13 2030.08
2004-04-14 2024.85
2004-04-15 2002.17
2004-04-16 1995.74
2004-04-19 2020.43
2004-04-20 1978.63
2004-04-21 1995.63
2004-04-22 2032.91
2004-04-23 2049.77
2004-04-26 2036.77
2004-04-27 2032.53
2004-04-28 1989.54
2004-04-29 1958.78
2004-04-30 1920.15
2004-05-03 1938.72
2004-05-04 1950.48
2004-05-05 1957.26
2004-05-06 1937.74
2004-05-07 1917.96
2004-05-10 1896.07
2004-05-11 1931.35
2004-05-12 1925.59
2004-05-13 1926.03
2004-05-14 1904.25
2004-05-17 1876.64
2004-05-18 1897.82
2004-05-19 1898.17
2004-05-20 1896.59
2004-05-21 1912.09
2004-05-24 1922.98
2004-05-25 1964.65
2004-05-26 1976.15
2004-05-27 1984.50
2004-05-28 1986.74
2004-05-31 .
2004-06-01 1990.77
2004-06-02 1988.98
2004-06-03 1960.26
2004-06-04 1978.62
2004-06-07 2020.62
2004-06-08 2023.53
2004-06-09 1990.61
2004-06-10 1999.87
2004-06-11 .
2004-06-14 1969.99
2004-06-15 1995.60
2004-06-16 1998.23
2004-06-17 1983.67
2004-06-18 1986.73
2004-06-21 1974.38
2004-06-22 1994.15
2004-06-23 2020.98
2004-06-24 2015.57
2004-06-25 2025.47
2004-06-28 2019.82
2004-06-29 2034.93
2004-06-30 2047.79
2004-07-01 2015.55
2004-07-02 2006.66
2004-07-05 .
2004-07-06 1963.43
2004-07-07 1966.08
2004-07-08 1935.32
2004-07-09 1946.33
2004-07-12 1936.92
2004-07-13 1931.66
2004-07-14 1914.88
2004-07-15 1912.71
2004-07-16 1883.15
2004-07-19 1883.83
2004-07-20 1917.07
2004-07-21 1874.37
2004-07-22 1889.06
2004-07-23 1849.09
2004-07-26 1839.02
2004-07-27 1869.10
2004-07-28 1858.26
2004-07-29 1881.06
2004-07-30 1887.36
2004-08-02 1892.09
2004-08-03 1859.42
2004-08-04 1855.06
2004-08-05 1821.63
2004-08-06 1776.89
2004-08-09 1774.64
2004-08-10 1808.70
2004-08-11 1782.42
2004-08-12 1752.49
2004-08-13 1757.22
2004-08-16 1782.84
2004-08-17 1795.25
2004-08-18 1831.37
2004-08-19 1819.89
2004-08-20 1838.02
2004-08-23 1838.70
2004-08-24 1836.89
2004-08-25 1860.72
2004-08-26 1852.92
2004-08-27 1862.09
2004-08-30 1836.49
2004-08-31 1838.10
2004-09-01 1850.41
2004-09-02 1873.43
2004-09-03 1844.48
2004-09-06 .
2004-09-07 1858.56
2004-09-08 1850.64
2004-09-09 1869.65
2004-09-10 1894.31
2004-09-13 1910.38
2004-09-14 1915.40
2004-09-15 1896.52
2004-09-16 1904.08
2004-09-17 1910.09
2004-09-20 1908.07
2004-09-21 1921.18
2004-09-22 1885.71
2004-09-23 1886.43
2004-09-24 1879.48
2004-09-27 1859.88
2004-09-28 1869.87
2004-09-29 1893.94
2004-09-30 1896.84
2004-10-01 1942.20
2004-10-04 1952.40
2004-10-05 1955.50
2004-10-06 1971.03
2004-10-07 1948.52
2004-10-08 1919.97
2004-10-11 1928.76
2004-10-12 1925.17
2004-10-13 1920.53
2004-10-14 1903.02
2004-10-15 1911.50
2004-10-18 1936.52
2004-10-19 1922.90
2004-10-20 1932.97
2004-10-21 1953.62
2004-10-22 1915.14
2004-10-25 1914.04
2004-10-26 1928.79
2004-10-27 1969.99
2004-10-28 1975.74
2004-10-29 1974.99
2004-11-01 1979.87
2004-11-02 1984.79
2004-11-03 2004.33
2004-11-04 2023.63
2004-11-05 2038.94
2004-11-08 2039.25
2004-11-09 2043.33
2004-11-10 2034.56
2004-11-11 2061.27
2004-11-12 2085.34
2004-11-15 2094.09
2004-11-16 2078.62
2004-11-17 2099.68
2004-11-18 2104.28
2004-11-19 2070.63
2004-11-22 2085.19
2004-11-23 2084.28
2004-11-24 2102.54
2004-11-25 .
2004-11-26 2101.97
2004-11-29 2106.87
2004-11-30 2096.81
2004-12-01 2138.23
2004-12-02 2143.57
2004-12-03 2147.96
2004-12-06 2151.25
2004-12-07 2114.66
2004-12-08 2126.11
2004-12-09 2129.01
2004-12-10 2128.07
2004-12-13 2148.50
2004-12-14 2159.84
2004-12-15 2162.55
2004-12-16 2146.15
2004-12-17 2135.20
2004-12-20 2127.85
2004-12-21 2150.91
2004-12-22 2157.03
2004-12-23 2160.62
2004-12-24 .
2004-12-27 2154.22
2004-12-28 2177.19
2004-12-29 2177.00
2004-12-30 2178.34
2004-12-31 2175.44
2005-01-03 2152.15
2005-01-04 2107.86
2005-01-05 2091.24
2005-01-06 2090.00
2005-01-07 2088.61
2005-01-10 2097.04
2005-01-11 2079.62
2005-01-12 2092.53
2005-01-13 2070.56
2005-01-14 2087.91
2005-01-17 .
2005-01-18 2106.04
2005-01-19 2073.59
2005-01-20 2045.88
2005-01-21 2034.27
2005-01-24 2008.70
2005-01-25 2019.95
2005-01-26 2046.09
2005-01-27 2047.15
2005-01-28 2035.83
2005-01-31 2062.41
2005-02-01 2068.70
2005-02-02 2075.06
2005-02-03 2057.64
2005-02-04 2086.66
2005-02-07 2082.03
2005-02-08 2086.68
2005-02-09 2052.55
2005-02-10 2053.10
2005-02-11 2076.66
2005-02-14 2082.91
2005-02-15 2089.21
2005-02-16 2087.43
2005-02-17 2061.34
2005-02-18 2058.62
2005-02-21 .
2005-02-22 2030.32
2005-02-23 2031.25
2005-02-24 2051.70
2005-02-25 2065.40
2005-02-28 2051.72
2005-03-01 2071.25
2005-03-02 2067.50
2005-03-03 2058.40
2005-03-04 2070.61
2005-03-07 2090.21
2005-03-08 2073.55
2005-03-09 2061.29
2005-03-10 2059.72
2005-03-11 2041.60
2005-03-14 2051.04
2005-03-15 2034.98
2005-03-16 2015.75
2005-03-17 2016.42
2005-03-18 2007.79
2005-03-21 2007.51
2005-03-22 1989.34
2005-03-23 1990.22
2005-03-24 1991.06
2005-03-25 .
2005-03-28 1992.52
2005-03-29 1973.88
2005-03-30 2005.67
2005-03-31 1999.23
2005-04-01 1984.81
2005-04-04 1991.07
2005-04-05 1999.32
2005-04-06 1999.14
2005-04-07 2018.79
2005-04-08 1999.35
2005-04-11 1992.12
2005-04-12 2005.40
2005-04-13 1974.37
2005-04-14 1946.71
2005-04-15 1908.15
2005-04-18 1912.92
2005-04-19 1932.36
2005-04-20 1913.76
2005-04-21 1962.41
2005-04-22 1932.19
2005-04-25 1950.78
2005-04-26 1927.44
2005-04-27 1930.43
2005-04-28 1904.18
2005-04-29 1921.65
2005-05-02 1928.65
2005-05-03 1933.07
2005-05-04 1962.23
2005-05-05 1961.80
2005-05-06 1967.35
2005-05-09 1979.67
2005-05-10 1962.77
2005-05-11 1971.55
2005-05-12 1963.88
2005-05-13 1976.78
2005-05-16 1994.43
2005-05-17 2004.15
2005-05-18 2030.65
2005-05-19 2042.58
2005-05-20 2046.42
2005-05-23 2056.65
2005-05-24 2061.62
2005-05-25 2050.12
2005-05-26 2071.24
2005-05-27 2075.73
2005-05-30 .
2005-05-31 2068.22
2005-06-01 2087.86
2005-06-02 2097.80
2005-06-03 2071.43
2005-06-06 2075.76
2005-06-07 2067.16
2005-06-08 2060.18
2005-06-09 2076.91
2005-06-10 2063.00
2005-06-13 2068.96
2005-06-14 2069.04
2005-06-15 2074.92
2005-06-16 2089.15
2005-06-17 2090.11
2005-06-20 2088.13
2005-06-21 2091.07
2005-06-22 2092.03
2005-06-23 2070.66
2005-06-24 2053.27
2005-06-27 2045.20
2005-06-28 2069.89
2005-06-29 2068.89
2005-06-30 2056.96
2005-07-01 2057.37
2005-07-04 .
2005-07-05 2078.75
2005-07-06 2068.65
2005-07-07 2075.66
2005-07-08 2112.88
2005-07-11 2135.43
2005-07-12 2143.15
2005-07-13 2144.11
2005-07-14 2152.82
2005-07-15 2156.78
2005-07-18 2144.87
2005-07-19 2173.18
2005-07-20 2188.57
2005-07-21 2178.60
2005-07-22 2179.74
2005-07-25 2166.74
2005-07-26 2175.99
2005-07-27 2186.22
2005-07-28 2198.44
2005-07-29 2184.83
2005-08-01 2195.38
2005-08-02 2218.15
2005-08-03 2216.81
2005-08-04 2191.32
2005-08-05 2177.91
2005-08-08 2164.39
2005-08-09 2174.19
2005-08-10 2157.81
2005-08-11 2174.55
2005-08-12 2156.90
2005-08-15 2167.04
2005-08-16 2137.06
2005-08-17 2145.15
2005-08-18 2136.08
2005-08-19 2135.56
2005-08-22 2141.41
2005-08-23 2137.25
2005-08-24 2128.91
2005-08-25 2134.37
2005-08-26 2120.77
2005-08-29 2137.65
2005-08-30 2129.76
2005-08-31 2152.09
2005-09-01 2147.90
2005-09-02 2141.07
2005-09-05 .
2005-09-06 2166.86
2005-09-07 2172.03
2005-09-08 2166.03
2005-09-09 2175.51
2005-09-12 2182.83
2005-09-13 2171.75
2005-09-14 2149.33
2005-09-15 2146.15
2005-09-16 2160.35
2005-09-19 2145.26
2005-09-20 2131.33
2005-09-21 2106.64
2005-09-22 2110.78
2005-09-23 2116.84
2005-09-26 2121.46
2005-09-27 2116.42
2005-09-28 2115.40
2005-09-29 2141.22
2005-09-30 2151.69
2005-10-03 2155.43
2005-10-04 2139.36
2005-10-05 2103.02
2005-10-06 2084.08
2005-10-07 2090.35
2005-10-10 2078.92
2005-10-11 2061.09
2005-10-12 2037.47
2005-10-13 2047.22
2005-10-14 2064.83
2005-10-17 2070.30
2005-10-18 2056.00
2005-10-19 2091.24
2005-10-20 2068.11
2005-10-21 2082.21
2005-10-24 2115.83
2005-10-25 2109.45
2005-10-26 2100.05
2005-10-27 2063.81
2005-10-28 2089.88
2005-10-31 2120.30
2005-11-01 2114.05
2005-11-02 2144.31
2005-11-03 2160.22
2005-11-04 2169.43
2005-11-07 2178.24
2005-11-08 2172.07
2005-11-09 2175.81
2005-11-10 2196.68
2005-11-11 2202.47
2005-11-14 2200.95
2005-11-15 2186.74
2005-11-16 2187.93
2005-11-17 2220.46
2005-11-18 2227.07
2005-11-21 2241.67
2005-11-22 2253.56
2005-11-23 2259.98
2005-11-24 .
2005-11-25 2263.01
2005-11-28 2239.37
2005-11-29 2232.71
2005-11-30 2232.82
2005-12-01 2267.17
2005-12-02 2273.37
2005-12-05 2257.64
2005-12-06 2260.76
2005-12-07 2252.01
2005-12-08 2246.46
2005-12-09 2256.73
2005-12-12 2260.95
2005-12-13 2265.00
2005-12-14 2262.59
2005-12-15 2260.63
2005-12-16 2252.48
2005-12-19 2222.74
2005-12-20 2222.42
2005-12-21 2231.66
2005-12-22 2246.49
2005-12-23 2249.42
2005-12-26 .
2005-12-27 2226.89
2005-12-28 2228.94
2005-12-29 2218.16
2005-12-30 2205.32
2006-01-02 .
2006-01-03 2243.74
2006-01-04 2263.46
2006-01-05 2276.87
2006-01-06 2305.62
2006-01-09 2318.69
2006-01-10 2320.32
2006-01-11 2331.36
2006-01-12 2316.69
2006-01-13 2317.04
2006-01-16 .
2006-01-17 2302.69
2006-01-18 2279.64
2006-01-19 2301.81
2006-01-20 2247.70
2006-01-23 2248.47
2006-01-24 2265.25
2006-01-25 2260.65
2006-01-26 2283.00
2006-01-27 2304.23
2006-01-30 2306.78
2006-01-31 2305.82
2006-02-01 2310.56
2006-02-02 2281.57
2006-02-03 2262.58
2006-02-06 2258.80
2006-02-07 2244.96
2006-02-08 2266.98
2006-02-09 2255.87
2006-02-10 2261.88
2006-02-13 2239.81
2006-02-14 2262.17
2006-02-15 2276.43
2006-02-16 2294.63
2006-02-17 2282.36
2006-02-20 .
2006-02-21 2262.96
2006-02-22 2283.17
2006-02-23 2279.32
2006-02-24 2287.04
2006-02-27 2307.18
2006-02-28 2281.39
2006-03-01 2314.64
2006-03-02 2311.11
2006-03-03 2302.60
2006-03-06 2286.03
2006-03-07 2268.38
2006-03-08 2267.46
2006-03-09 2249.72
2006-03-10 2262.04
2006-03-13 2267.03
2006-03-14 2295.90
2006-03-15 2311.84
2006-03-16 2299.56
2006-03-17 2306.48
2006-03-20 2314.11
2006-03-21 2294.23
2006-03-22 2303.35
2006-03-23 2300.15
2006-03-24 2312.82
2006-03-27 2315.58
2006-03-28 2304.46
2006-03-29 2337.78
2006-03-30 2340.82
2006-03-31 2339.79
2006-04-03 2336.74
2006-04-04 2345.36
2006-04-05 2359.75
2006-04-06 2361.17
2006-04-07 2339.02
2006-04-10 2333.27
2006-04-11 2310.35
2006-04-12 2314.68
2006-04-13 2326.11
2006-04-14 .
2006-04-17 2311.16
2006-04-18 2356.14
2006-04-19 2370.88
2006-04-20 2362.55
2006-04-21 2342.86
2006-04-24 2333.38
2006-04-25 2330.30
2006-04-26 2333.63
2006-04-27 2344.95
2006-04-28 2322.57
2006-05-01 2304.79
2006-05-02 2309.84
2006-05-03 2303.97
2006-05-04 2323.90
2006-05-05 2342.57
2006-05-08 2344.99
2006-05-09 2338.25
2006-05-10 2320.74
2006-05-11 2272.70
2006-05-12 2243.78
2006-05-15 2238.52
2006-05-16 2229.13
2006-05-17 2195.80
2006-05-18 2180.32
2006-05-19 2193.88
2006-05-22 2172.86
2006-05-23 2158.76
2006-05-24 2169.17
2006-05-25 2198.24
2006-05-26 2210.37
2006-05-29 .
2006-05-30 2164.74
2006-05-31 2178.88
2006-06-01 2219.86
2006-06-02 2219.41
2006-06-05 2169.62
2006-06-06 2162.78
2006-06-07 2151.80
2006-06-08 2145.32
2006-06-09 2135.06
2006-06-12 2091.32
2006-06-13 2072.47
2006-06-14 2086.00
2006-06-15 2144.15
2006-06-16 2129.95
2006-06-19 2110.42
2006-06-20 2107.06
2006-06-21 2141.20
2006-06-22 2122.98
2006-06-23 2121.47
2006-06-26 2133.67
2006-06-27 2100.25
2006-06-28 2111.84
2006-06-29 2174.38
2006-06-30 2172.09
2006-07-03 2190.43
2006-07-04 .
2006-07-05 2153.34
2006-07-06 2155.09
2006-07-07 2130.06
2006-07-10 2116.93
2006-07-11 2128.86
2006-07-12 2090.24
2006-07-13 2054.11
2006-07-14 2037.35
2006-07-17 2037.72
2006-07-18 2043.22
2006-07-19 2080.71
2006-07-20 2039.42
2006-07-21 2020.39
2006-07-24 2061.84
2006-07-25 2073.90
2006-07-26 2070.46
2006-07-27 2054.47
2006-07-28 2094.14
2006-07-31 2091.47
2006-08-01 2061.99
2006-08-02 2078.81
2006-08-03 2092.34
2006-08-04 2085.05
2006-08-07 2072.50
2006-08-08 2060.85
2006-08-09 2060.28
2006-08-10 2071.74
2006-08-11 2057.71
2006-08-14 2069.04
2006-08-15 2115.01
2006-08-16 2149.54
2006-08-17 2157.61
2006-08-18 2163.95
2006-08-21 2147.75
2006-08-22 2150.02
2006-08-23 2134.66
2006-08-24 2137.11
2006-08-25 2140.29
2006-08-28 2160.70
2006-08-29 2172.30
2006-08-30 2185.73
2006-08-31 2183.75
2006-09-01 2193.16
2006-09-04 .
2006-09-05 2205.70
2006-09-06 2167.84
2006-09-07 2155.29
2006-09-08 2165.79
2006-09-11 2173.25
2006-09-12 2215.82
2006-09-13 2227.67
2006-09-14 2228.73
2006-09-15 2235.59
2006-09-18 2235.75
2006-09-19 2222.37
2006-09-20 2252.89
2006-09-21 2237.75
2006-09-22 2218.93
2006-09-25 2249.07
2006-09-26 2261.34
2006-09-27 2263.39
2006-09-28 2270.02
2006-09-29 2258.43
2006-10-02 2237.60
2006-10-03 2243.65
2006-10-04 2290.95
2006-10-05 2306.34
2006-10-06 2299.99
2006-10-09 2311.77
2006-10-10 2315.43
2006-10-11 2308.27
2006-10-12 2346.18
2006-10-13 2357.29
2006-10-16 2363.84
2006-10-17 2344.95
2006-10-18 2337.15
2006-10-19 2340.94
2006-10-20 2342.30
2006-10-23 2355.56
2006-10-24 2344.84
2006-10-25 2356.59
2006-10-26 2379.10
2006-10-27 2350.62
2006-10-30 2363.77
2006-10-31 2366.71
2006-11-01 2334.35
2006-11-02 2334.02
2006-11-03 2330.79
2006-11-06 2365.95
2006-11-07 2375.88
2006-11-08 2384.94
2006-11-09 2376.01
2006-11-10 2389.72
2006-11-13 2406.38
2006-11-14 2430.66
2006-11-15 2442.75
2006-11-16 2449.06
2006-11-17 2445.86
2006-11-20 2452.72
2006-11-21 2454.84
2006-11-22 2465.98
2006-11-23 .
2006-11-24 2460.26
2006-11-27 2405.92
2006-11-28 2412.61
2006-11-29 2432.23
2006-11-30 2431.77
2006-12-01 2413.21
2006-12-04 2448.39
2006-12-05 2452.38
2006-12-06 2445.86
2006-12-07 2427.69
2006-12-08 2437.36
2006-12-11 2442.86
2006-12-12 2431.60
2006-12-13 2432.41
2006-12-14 2453.85
2006-12-15 2457.20
2006-12-18 2435.57
2006-12-19 2429.55
2006-12-20 2427.61
2006-12-21 2415.85
2006-12-22 2401.18
2006-12-25 .
2006-12-26 2413.51
2006-12-27 2431.22
2006-12-28 2425.57
2006-12-29 2415.29
2007-01-01 .
2007-01-02 .
2007-01-03 2423.16
2007-01-04 2453.43
2007-01-05 2434.25
2007-01-08 2438.20
2007-01-09 2443.83
2007-01-10 2459.33
2007-01-11 2484.85
2007-01-12 2502.82
2007-01-15 .
2007-01-16 2497.78
2007-01-17 2479.42
2007-01-18 2443.21
2007-01-19 2451.31
2007-01-22 2431.07
2007-01-23 2431.41
2007-01-24 2466.28
2007-01-25 2434.24
2007-01-26 2435.49
2007-01-29 2441.09
2007-01-30 2448.64
2007-01-31 2463.93
2007-02-01 2468.38
2007-02-02 2475.88
2007-02-05 2470.60
2007-02-06 2471.49
2007-02-07 2490.50
2007-02-08 2488.67
2007-02-09 2459.82
2007-02-12 2450.38
2007-02-13 2459.88
2007-02-14 2488.38
2007-02-15 2497.10
2007-02-16 2496.31
2007-02-19 .
2007-02-20 2513.04
2007-02-21 2518.42
2007-02-22 2524.94
2007-02-23 2515.10
2007-02-26 2504.52
2007-02-27 2407.86
2007-02-28 2416.15
2007-03-01 2404.21
2007-03-02 2368.00
2007-03-05 2340.68
2007-03-06 2385.14
2007-03-07 2374.64
2007-03-08 2387.73
2007-03-09 2387.55
2007-03-12 2402.29
2007-03-13 2350.57
2007-03-14 2371.74
2007-03-15 2378.70
2007-03-16 2372.66
2007-03-19 2394.41
2007-03-20 2408.21
2007-03-21 2455.92
2007-03-22 2451.74
2007-03-23 2448.93
2007-03-26 2455.63
2007-03-27 2437.43
2007-03-28 2417.10
2007-03-29 2417.88
2007-03-30 2421.64
2007-04-02 2422.26
2007-04-03 2450.33
2007-04-04 2458.69
2007-04-05 2471.34
2007-04-06 .
2007-04-09 2469.18
2007-04-10 2477.61
2007-04-11 2459.31
2007-04-12 2480.32
2007-04-13 2491.94
2007-04-16 2518.33
2007-04-17 2516.95
2007-04-18 2510.50
2007-04-19 2505.35
2007-04-20 2526.39
2007-04-23 2523.67
2007-04-24 2524.54
2007-04-25 2547.89
2007-04-26 2554.46
2007-04-27 2557.21
2007-04-30 2525.09
2007-05-01 2531.53
2007-05-02 2557.84
2007-05-03 2565.46
2007-05-04 2572.15
2007-05-07 2570.95
2007-05-08 2571.75
2007-05-09 2576.34
2007-05-10 2533.74
2007-05-11 2562.22
2007-05-14 2546.44
2007-05-15 2525.29
2007-05-16 2547.42
2007-05-17 2539.38
2007-05-18 2558.45
2007-05-21 2578.79
2007-05-22 2588.02
2007-05-23 2577.05
2007-05-24 2537.92
2007-05-25 2557.19
2007-05-28 .
2007-05-29 2572.06
2007-05-30 2592.59
2007-05-31 2604.52
2007-06-01 2613.92
2007-06-04 2618.29
2007-06-05 2611.23
2007-06-06 2587.18
2007-06-07 2541.38
2007-06-08 2573.54
2007-06-11 2572.15
2007-06-12 2549.77
2007-06-13 2582.31
2007-06-14 2599.41
2007-06-15 2626.71
2007-06-18 2626.60
2007-06-19 2626.76
2007-06-20 2599.96
2007-06-21 2616.96
2007-06-22 2588.96
2007-06-25 2577.08
2007-06-26 2574.16
2007-06-27 2605.35
2007-06-28 2608.37
2007-06-29 2603.23
2007-07-02 2632.30
2007-07-03 2644.95
2007-07-04 .
2007-07-05 2656.65
2007-07-06 2666.51
2007-07-09 2670.02
2007-07-10 2639.16
2007-07-11 2651.79
2007-07-12 2701.73
2007-07-13 2707.00
2007-07-16 2697.33
2007-07-17 2712.29
2007-07-18 2699.49
2007-07-19 2720.04
2007-07-20 2687.60
2007-07-23 2690.58
2007-07-24 2639.86
2007-07-25 2648.17
2007-07-26 2599.34
2007-07-27 2562.24
2007-07-30 2583.28
2007-07-31 2546.27
2007-08-01 2553.87
2007-08-02 2575.98
2007-08-03 2511.25
2007-08-06 2547.33
2007-08-07 2561.60
2007-08-08 2612.98
2007-08-09 2556.49
2007-08-10 2544.89
2007-08-13 2542.24
2007-08-14 2499.12
2007-08-15 2458.83
2007-08-16 2451.07
2007-08-17 2505.03
2007-08-20 2508.59
2007-08-21 2521.30
2007-08-22 2552.80
2007-08-23 2541.70
2007-08-24 2576.69
2007-08-27 2561.25
2007-08-28 2500.64
2007-08-29 2563.16
2007-08-30 2565.30
2007-08-31 2596.36
2007-09-03 .
2007-09-04 2630.24
2007-09-05 2605.95
2007-09-06 2614.32
2007-09-07 2565.70
2007-09-10 2559.11
2007-09-11 2597.47
2007-09-12 2592.07
2007-09-13 2601.06
2007-09-14 2602.18
2007-09-17 2581.66
2007-09-18 2651.66
2007-09-19 2666.48
2007-09-20 2654.29
2007-09-21 2671.22
2007-09-24 2667.95
2007-09-25 2683.45
2007-09-26 2699.03
2007-09-27 2709.59
2007-09-28 2701.50
2007-10-01 2740.99
2007-10-02 2747.11
2007-10-03 2729.43
2007-10-04 2733.57
2007-10-05 2780.32
2007-10-08 2787.37
2007-10-09 2803.91
2007-10-10 2811.61
2007-10-11 2772.20
2007-10-12 2805.68
2007-10-15 2780.05
2007-10-16 2763.91
2007-10-17 2792.67
2007-10-18 2799.31
2007-10-19 2725.16
2007-10-22 2753.93
2007-10-23 2799.26
2007-10-24 2774.76
2007-10-25 2750.86
2007-10-26 2804.19
2007-10-29 2817.44
2007-10-30 2816.71
2007-10-31 2859.12
2007-11-01 2794.83
2007-11-02 2810.38
2007-11-05 2795.18
2007-11-06 2825.18
2007-11-07 2748.76
2007-11-08 2696.00
2007-11-09 2627.94
2007-11-12 2584.13
2007-11-13 2673.65
2007-11-14 2644.32
2007-11-15 2618.51
2007-11-16 2637.24
2007-11-19 2593.38
2007-11-20 2596.81
2007-11-21 2562.15
2007-11-22 .
2007-11-23 2596.60
2007-11-26 2540.99
2007-11-27 2580.80
2007-11-28 2662.91
2007-11-29 2668.13
2007-11-30 2660.96
2007-12-03 2637.13
2007-12-04 2619.83
2007-12-05 2666.36
2007-12-06 2709.03
2007-12-07 2706.16
2007-12-10 2718.95
2007-12-11 2652.35
2007-12-12 2671.14
2007-12-13 2668.49
2007-12-14 2635.74
2007-12-17 2574.46
2007-12-18 2596.03
2007-12-19 2601.01
2007-12-20 2640.86
2007-12-21 2691.99
2007-12-24 2713.50
2007-12-25 .
2007-12-26 2724.41
2007-12-27 2676.79
2007-12-28 2674.46
2007-12-31 2652.28
2008-01-01 .
2008-01-02 2609.63
2008-01-03 2602.68
2008-01-04 2504.65
2008-01-07 2499.46
2008-01-08 2440.51
2008-01-09 2474.55
2008-01-10 2488.52
2008-01-11 2439.94
2008-01-14 2478.30
2008-01-15 2417.59
2008-01-16 2394.59
2008-01-17 2346.90
2008-01-18 2340.02
2008-01-21 .
2008-01-22 2292.27
2008-01-23 2316.41
2008-01-24 2360.92
2008-01-25 2326.20
2008-01-28 2349.91
2008-01-29 2358.06
2008-01-30 2349.00
2008-01-31 2389.86
2008-02-01 2413.36
2008-02-04 2382.85
2008-02-05 2309.57
2008-02-06 2278.75
2008-02-07 2293.03
2008-02-08 2304.85
2008-02-11 2320.06
2008-02-12 2320.04
2008-02-13 2373.93
2008-02-14 2332.54
2008-02-15 2321.80
2008-02-18 .
2008-02-19 2306.20
2008-02-20 2327.10
2008-02-21 2299.78
2008-02-22 2303.35
2008-02-25 2327.48
2008-02-26 2344.99
2008-02-27 2353.78
2008-02-28 2331.57
2008-02-29 2271.48
2008-03-03 2258.60
2008-03-04 2260.28
2008-03-05 2272.81
2008-03-06 2220.50
2008-03-07 2212.49
2008-03-10 2169.34
2008-03-11 2255.76
2008-03-12 2243.87
2008-03-13 2263.61
2008-03-14 2212.49
2008-03-17 2177.01
2008-03-18 2268.26
2008-03-19 2209.96
2008-03-20 2258.11
2008-03-21 .
2008-03-24 2326.75
2008-03-25 2341.05
2008-03-26 2324.36
2008-03-27 2280.83
2008-03-28 2261.18
2008-03-31 2279.10
2008-04-01 2362.75
2008-04-02 2361.40
2008-04-03 2363.30
2008-04-04 2370.98
2008-04-07 2364.83
2008-04-08 2348.76
2008-04-09 2322.12
2008-04-10 2351.70
2008-04-11 2290.24
2008-04-14 2275.82
2008-04-15 2286.04
2008-04-16 2350.11
2008-04-17 2341.83
2008-04-18 2402.97
2008-04-21 2408.04
2008-04-22 2376.94
2008-04-23 2405.21
2008-04-24 2428.92
2008-04-25 2422.93
2008-04-28 2424.40
2008-04-29 2426.10
2008-04-30 2412.80
2008-05-01 2480.71
2008-05-02 2476.99
2008-05-05 2464.12
2008-05-06 2483.31
2008-05-07 2438.49
2008-05-08 2451.24
2008-05-09 2445.52
2008-05-12 2488.49
2008-05-13 2495.12
2008-05-14 2496.70
2008-05-15 2533.73
2008-05-16 2528.85
2008-05-19 2516.09
2008-05-20 2492.26
2008-05-21 2448.27
2008-05-22 2464.58
2008-05-23 2444.67
2008-05-26 .
2008-05-27 2481.24
2008-05-28 2486.70
2008-05-29 2508.32
2008-05-30 2522.66
2008-06-02 2491.53
2008-06-03 2480.48
2008-06-04 2503.14
2008-06-05 2549.94
2008-06-06 2474.56
2008-06-09 2459.46
2008-06-10 2448.94
2008-06-11 2394.01
2008-06-12 2404.35
2008-06-13 2454.50
2008-06-16 2474.78
2008-06-17 2457.73
2008-06-18 2429.71
2008-06-19 2462.06
2008-06-20 2406.09
2008-06-23 2385.74
2008-06-24 2368.28
2008-06-25 2401.26
2008-06-26 2321.37
2008-06-27 2315.63
2008-06-30 2292.98
2008-07-01 2304.97
2008-07-02 2251.46
2008-07-03 2245.38
2008-07-04 .
2008-07-07 2243.32
2008-07-08 2294.44
2008-07-09 2234.89
2008-07-10 2257.85
2008-07-11 2239.08
2008-07-14 2212.87
2008-07-15 2215.71
2008-07-16 2284.85
2008-07-17 2312.30
2008-07-18 2282.78
2008-07-21 2279.53
2008-07-22 2303.96
2008-07-23 2325.88
2008-07-24 2280.11
2008-07-25 2310.53
2008-07-28 2264.22
2008-07-29 2319.62
2008-07-30 2329.72
2008-07-31 2325.55
2008-08-01 2310.96
2008-08-04 2285.56
2008-08-05 2349.83
2008-08-06 2378.37
2008-08-07 2355.73
2008-08-08 2414.10
2008-08-11 2439.95
2008-08-12 2430.61
2008-08-13 2428.62
2008-08-14 2453.67
2008-08-15 2452.52
2008-08-18 2416.98
2008-08-19 2384.36
2008-08-20 2389.08
2008-08-21 2380.38
2008-08-22 2414.71
2008-08-25 2365.59
2008-08-26 2361.97
2008-08-27 2382.46
2008-08-28 2411.64
2008-08-29 2367.52
2008-09-01 .
2008-09-02 2349.24
2008-09-03 2333.73
2008-09-04 2259.04
2008-09-05 2255.88
2008-09-08 2269.76
2008-09-09 2209.81
2008-09-10 2228.70
2008-09-11 2258.22
2008-09-12 2261.27
2008-09-15 2179.91
2008-09-16 2207.90
2008-09-17 2098.85
2008-09-18 2199.10
2008-09-19 2273.90
2008-09-22 2178.98
2008-09-23 2153.33
2008-09-24 2155.68
2008-09-25 2186.57
2008-09-26 2183.34
2008-09-29 1983.73
2008-09-30 2082.33
2008-10-01 2069.40
2008-10-02 1976.72
2008-10-03 1947.39
2008-10-06 1862.96
2008-10-07 1754.88
2008-10-08 1740.33
2008-10-09 1645.12
2008-10-10 1649.51
2008-10-13 1844.25
2008-10-14 1779.01
2008-10-15 1628.33
2008-10-16 1717.71
2008-10-17 1711.29
2008-10-20 1770.03
2008-10-21 1696.68
2008-10-22 1615.75
2008-10-23 1603.91
2008-10-24 1552.03
2008-10-27 1505.90
2008-10-28 1649.47
2008-10-29 1657.21
2008-10-30 1698.52
2008-10-31 1720.95
2008-11-03 1726.33
2008-11-04 1780.12
2008-11-05 1681.64
2008-11-06 1608.70
2008-11-07 1647.40
2008-11-10 1616.74
2008-11-11 1580.90
2008-11-12 1499.21
2008-11-13 1596.70
2008-11-14 1516.85
2008-11-17 1482.05
2008-11-18 1483.27
2008-11-19 1386.42
2008-11-20 1316.12
2008-11-21 1384.35
2008-11-24 1472.02
2008-11-25 1464.73
2008-11-26 1532.10
2008-11-27 .
2008-11-28 1535.57
2008-12-01 1398.07
2008-12-02 1449.80
2008-12-03 1492.38
2008-12-04 1445.56
2008-12-05 1509.31
2008-12-08 1571.74
2008-12-09 1547.34
2008-12-10 1565.48
2008-12-11 1507.88
2008-12-12 1540.72
2008-12-15 1508.34
2008-12-16 1589.89
2008-12-17 1579.31
2008-12-18 1552.37
2008-12-19 1564.32
2008-12-22 1532.35
2008-12-23 1521.54
2008-12-24 1524.90
2008-12-25 .
2008-12-26 1530.24
2008-12-29 1510.32
2008-12-30 1550.70
2008-12-31 1577.03
2009-01-01 .
2009-01-02 1632.21
2009-01-05 1628.03
2009-01-06 1652.38
2009-01-07 1599.06
2009-01-08 1617.01
2009-01-09 1571.59
2009-01-12 1538.79
2009-01-13 1546.46
2009-01-14 1489.64
2009-01-15 1511.84
2009-01-16 1529.33
2009-01-19 .
2009-01-20 1440.86
2009-01-21 1507.07
2009-01-22 1465.49
2009-01-23 1477.29
2009-01-26 1489.46
2009-01-27 1504.90
2009-01-28 1558.34
2009-01-29 1507.84
2009-01-30 1476.42
2009-02-02 1494.43
2009-02-03 1516.30
2009-02-04 1515.05
2009-02-05 1546.24
2009-02-06 1591.71
2009-02-09 1591.56
2009-02-10 1524.73
2009-02-11 1530.50
2009-02-12 1541.71
2009-02-13 1534.36
2009-02-16 .
2009-02-17 1470.66
2009-02-18 1467.97
2009-02-19 1442.82
2009-02-20 1441.23
2009-02-23 1387.72
2009-02-24 1441.83
2009-02-25 1425.43
2009-02-26 1391.47
2009-02-27 1377.84
2009-03-02 1322.85
2009-03-03 1321.01
2009-03-04 1353.74
2009-03-05 1299.59
2009-03-06 1293.85
2009-03-09 1268.64
2009-03-10 1358.28
2009-03-11 1371.64
2009-03-12 1426.10
2009-03-13 1431.50
2009-03-16 1404.02
2009-03-17 1462.11
2009-03-18 1491.22
2009-03-19 1483.48
2009-03-20 1457.27
2009-03-23 1555.77
2009-03-24 1516.52
2009-03-25 1528.95
2009-03-26 1587.00
2009-03-27 1545.20
2009-03-30 1501.80
2009-03-31 1528.59
2009-04-01 1551.60
2009-04-02 1602.63
2009-04-03 1621.87
2009-04-06 1606.71
2009-04-07 1561.61
2009-04-08 1590.66
2009-04-09 1652.54
2009-04-10 .
2009-04-13 1653.31
2009-04-14 1625.72
2009-04-15 1626.80
2009-04-16 1670.44
2009-04-17 1673.07
2009-04-20 1608.21
2009-04-21 1643.85
2009-04-22 1646.12
2009-04-23 1652.21
2009-04-24 1694.29
2009-04-27 1679.41
2009-04-28 1673.81
2009-04-29 1711.94
2009-04-30 1717.30
2009-05-01 1719.20
2009-05-04 1763.56
2009-05-05 1754.12
2009-05-06 1759.10
2009-05-07 1716.24
2009-05-08 1739.00
2009-05-11 1731.24
2009-05-12 1715.92
2009-05-13 1664.19
2009-05-14 1689.21
2009-05-15 1680.14
2009-05-18 1732.36
2009-05-19 1734.54
2009-05-20 1727.84
2009-05-21 1695.25
2009-05-22 1692.01
2009-05-25 .
2009-05-26 1750.43
2009-05-27 1731.08
2009-05-28 1751.79
2009-05-29 1774.33
2009-06-01 1828.68
2009-06-02 1836.80
2009-06-03 1825.92
2009-06-04 1850.02
2009-06-05 1849.42
2009-06-08 1842.40
2009-06-09 1860.13
2009-06-10 1853.08
2009-06-11 1862.37
2009-06-12 1858.80
2009-06-15 1816.38
2009-06-16 1796.18
2009-06-17 1808.06
2009-06-18 1807.72
2009-06-19 1827.47
2009-06-22 1766.19
2009-06-23 1764.92
2009-06-24 1792.34
2009-06-25 1829.54
2009-06-26 1838.22
2009-06-29 1844.06
2009-06-30 1835.04
2009-07-01 1845.72
2009-07-02 1796.52
2009-07-03 .
2009-07-06 1787.40
2009-07-07 1746.17
2009-07-08 1747.17
2009-07-09 1752.55
2009-07-10 1756.03
2009-07-13 1793.21
2009-07-14 1799.73
2009-07-15 1862.90
2009-07-16 1885.03
2009-07-17 1886.61
2009-07-20 1909.29
2009-07-21 1916.20
2009-07-22 1926.38
2009-07-23 1973.60
2009-07-24 1965.96
2009-07-27 1967.89
2009-07-28 1975.51
2009-07-29 1967.76
2009-07-30 1984.30
2009-07-31 1978.50
2009-08-03 2008.61
2009-08-04 2011.31
2009-08-05 1993.05
2009-08-06 1973.16
2009-08-07 2000.25
2009-08-10 1992.24
2009-08-11 1969.73
2009-08-12 1998.72
2009-08-13 2009.35
2009-08-14 1985.52
2009-08-17 1930.84
2009-08-18 1955.92
2009-08-19 1969.24
2009-08-20 1989.22
2009-08-21 2020.90
2009-08-24 2017.98
2009-08-25 2024.23
2009-08-26 2024.43
2009-08-27 2027.73
2009-08-28 2028.77
2009-08-31 2009.06
2009-09-01 1968.89
2009-09-02 1967.07
2009-09-03 1983.20
2009-09-04 2018.78
2009-09-07 .
2009-09-08 2037.77
2009-09-09 2060.39
2009-09-10 2084.02
2009-09-11 2080.90
2009-09-14 2091.78
2009-09-15 2102.64
2009-09-16 2133.15
2009-09-17 2126.75
2009-09-18 2132.86
2009-09-21 2138.04
2009-09-22 2146.30
2009-09-23 2131.42
2009-09-24 2107.61
2009-09-25 2090.92
2009-09-28 2130.74
2009-09-29 2124.04
2009-09-30 2122.42
2009-10-01 2057.48
2009-10-02 2048.11
2009-10-05 2068.15
2009-10-06 2103.57
2009-10-07 2110.33
2009-10-08 2123.93
2009-10-09 2139.28
2009-10-12 2139.14
2009-10-13 2139.89
2009-10-14 2172.23
2009-10-15 2173.29
2009-10-16 2156.80
2009-10-19 2176.32
2009-10-20 2163.47
2009-10-21 2150.73
2009-10-22 2165.29
2009-10-23 2154.47
2009-10-26 2141.85
2009-10-27 2116.09
2009-10-28 2059.61
2009-10-29 2097.55
2009-10-30 2045.11
2009-11-02 2049.20
2009-11-03 2057.32
2009-11-04 2055.52
2009-11-05 2105.32
2009-11-06 2112.44
2009-11-09 2154.06
2009-11-10 2151.08
2009-11-11 2166.90
2009-11-12 2149.02
2009-11-13 2167.88
2009-11-16 2197.85
2009-11-17 2203.78
2009-11-18 2193.14
2009-11-19 2156.82
2009-11-20 2146.04
2009-11-23 2176.01
2009-11-24 2169.18
2009-11-25 2176.05
2009-11-26 .
2009-11-27 2138.44
2009-11-30 2144.60
2009-12-01 2175.81
2009-12-02 2185.03
2009-12-03 2173.14
2009-12-04 2194.35
2009-12-07 2189.61
2009-12-08 2172.99
2009-12-09 2183.73
2009-12-10 2190.86
2009-12-11 2190.31
2009-12-14 2212.10
2009-12-15 2201.05
2009-12-16 2206.91
2009-12-17 2180.05
2009-12-18 2211.69
2009-12-21 2237.66
2009-12-22 2252.67
2009-12-23 2269.64
2009-12-24 2285.69
2009-12-25 .
2009-12-28 2291.08
2009-12-29 2288.40
2009-12-30 2291.28
2009-12-31 2269.15
2010-01-01 .
2010-01-04 2308.42
2010-01-05 2308.71
2010-01-06 2301.09
2010-01-07 2300.05
2010-01-08 2317.17
2010-01-11 2312.41
2010-01-12 2282.31
2010-01-13 2307.90
2010-01-14 2316.74
2010-01-15 2287.99
2010-01-18 .
2010-01-19 2320.40
2010-01-20 2291.25
2010-01-21 2265.70
2010-01-22 2205.29
2010-01-25 2210.80
2010-01-26 2203.73
2010-01-27 2221.41
2010-01-28 2179.00
2010-01-29 2147.35
2010-02-01 2171.20
2010-02-02 2190.06
2010-02-03 2190.91
2010-02-04 2125.43
2010-02-05 2141.12
2010-02-08 2126.05
2010-02-09 2150.87
2010-02-10 2147.87
2010-02-11 2177.41
2010-02-12 2183.53
2010-02-15 .
2010-02-16 2214.19
2010-02-17 2226.29
2010-02-18 2241.71
2010-02-19 2243.87
2010-02-22 2242.03
2010-02-23 2213.44
2010-02-24 2235.90
2010-02-25 2234.22
2010-02-26 2238.26
2010-03-01 2273.57
2010-03-02 2280.79
2010-03-03 2280.68
2010-03-04 2292.31
2010-03-05 2326.35
2010-03-08 2332.21
2010-03-09 2340.68
2010-03-10 2358.95
2010-03-11 2368.46
2010-03-12 2367.66
2010-03-15 2362.21
2010-03-16 2378.01
2010-03-17 2389.09
2010-03-18 2391.28
2010-03-19 2374.41
2010-03-22 2395.40
2010-03-23 2415.24
2010-03-24 2398.76
2010-03-25 2397.41
2010-03-26 2395.13
2010-03-29 2404.36
2010-03-30 2410.69
2010-03-31 2397.96
2010-04-01 2402.58
2010-04-02 .
2010-04-05 2429.53
2010-04-06 2436.81
2010-04-07 2431.16
2010-04-08 2436.81
2010-04-09 2454.05
2010-04-12 2457.87
2010-04-13 2465.99
2010-04-14 2504.86
2010-04-15 2515.69
2010-04-16 2481.26
2010-04-19 2480.11
2010-04-20 2500.31
2010-04-21 2504.61
2010-04-22 2519.07
2010-04-23 2530.15
2010-04-26 2522.95
2010-04-27 2471.47
2010-04-28 2471.73
2010-04-29 2511.92
2010-04-30 2461.19
2010-05-03 2498.74
2010-05-04 2424.25
2010-05-05 2402.29
2010-05-06 2319.64
2010-05-07 2265.64
2010-05-10 2374.67
2010-05-11 2375.31
2010-05-12 2425.02
2010-05-13 2394.36
2010-05-14 2346.85
2010-05-17 2354.23
2010-05-18 2317.26
2010-05-19 2298.37
2010-05-20 2204.01
2010-05-21 2229.04
2010-05-24 2213.55
2010-05-25 2210.95
2010-05-26 2195.88
2010-05-27 2277.68
2010-05-28 2257.04
2010-05-31 .
2010-06-01 2222.33
2010-06-02 2281.07
2010-06-03 2303.03
2010-06-04 2219.17
2010-06-07 2173.90
2010-06-08 2170.57
2010-06-09 2158.85
2010-06-10 2218.71
2010-06-11 2243.60
2010-06-14 2243.96
2010-06-15 2305.88
2010-06-16 2305.93
2010-06-17 2307.16
2010-06-18 2309.80
2010-06-21 2289.09
2010-06-22 2261.80
2010-06-23 2254.23
2010-06-24 2217.42
2010-06-25 2223.48
2010-06-28 2220.65
2010-06-29 2135.18
2010-06-30 2109.24
2010-07-01 2101.36
2010-07-02 2091.79
2010-07-05 .
2010-07-06 2093.88
2010-07-07 2159.47
2010-07-08 2175.40
2010-07-09 2196.45
2010-07-12 2198.36
2010-07-13 2242.03
2010-07-14 2249.84
2010-07-15 2249.08
2010-07-16 2179.05
2010-07-19 2198.23
2010-07-20 2222.49
2010-07-21 2187.33
2010-07-22 2245.89
2010-07-23 2269.47
2010-07-26 2296.43
2010-07-27 2288.25
2010-07-28 2264.56
2010-07-29 2251.69
2010-07-30 2254.70
2010-08-02 2295.36
2010-08-03 2283.52
2010-08-04 2303.57
2010-08-05 2293.06
2010-08-06 2288.47
2010-08-09 2305.69
2010-08-10 2277.17
2010-08-11 2208.63
2010-08-12 2190.27
2010-08-13 2173.48
2010-08-16 2181.87
2010-08-17 2209.44
2010-08-18 2215.70
2010-08-19 2178.95
2010-08-20 2179.76
2010-08-23 2159.63
2010-08-24 2123.76
2010-08-25 2141.54
2010-08-26 2118.69
2010-08-27 2153.63
2010-08-30 2119.97
2010-08-31 2114.03
2010-09-01 2176.84
2010-09-02 2200.01
2010-09-03 2233.75
2010-09-06 .
2010-09-07 2208.89
2010-09-08 2228.87
2010-09-09 2236.20
2010-09-10 2242.48
2010-09-13 2285.71
2010-09-14 2289.77
2010-09-15 2301.32
2010-09-16 2303.25
2010-09-17 2315.61
2010-09-20 2355.83
2010-09-21 2349.35
2010-09-22 2334.55
2010-09-23 2327.08
2010-09-24 2381.22
2010-09-27 2369.77
2010-09-28 2379.59
2010-09-29 2376.56
2010-09-30 2368.62
2010-10-01 2370.75
2010-10-04 2344.52
2010-10-05 2399.83
2010-10-06 2380.66
2010-10-07 2383.67
2010-10-08 2401.91
2010-10-11 2402.33
2010-10-12 2417.92
2010-10-13 2441.23
2010-10-14 2435.38
2010-10-15 2468.77
2010-10-18 2480.66
2010-10-19 2436.95
2010-10-20 2457.39
2010-10-21 2459.67
2010-10-22 2479.39
2010-10-25 2490.85
2010-10-26 2497.29
2010-10-27 2503.26
2010-10-28 2507.37
2010-10-29 2507.41
2010-11-01 2504.84
2010-11-02 2533.52
2010-11-03 2540.27
2010-11-04 2577.34
2010-11-05 2578.98
2010-11-08 2580.05
2010-11-09 2562.98
2010-11-10 2578.78
2010-11-11 2555.52
2010-11-12 2518.21
2010-11-15 2513.82
2010-11-16 2469.84
2010-11-17 2476.01
2010-11-18 2514.40
2010-11-19 2518.12
2010-11-22 2532.02
2010-11-23 2494.95
2010-11-24 2543.12
2010-11-25 .
2010-11-26 2534.56
2010-11-29 2525.22
2010-11-30 2498.23
2010-12-01 2549.43
2010-12-02 2579.35
2010-12-03 2591.46
2010-12-06 2594.92
2010-12-07 2598.49
2010-12-08 2609.16
2010-12-09 2616.67
2010-12-10 2637.54
2010-12-13 2624.91
2010-12-14 2627.72
2010-12-15 2617.22
2010-12-16 2637.31
2010-12-17 2642.97
2010-12-20 2649.56
2010-12-21 2667.61
2010-12-22 2671.48
2010-12-23 2665.60
2010-12-24 .
2010-12-27 2667.27
2010-12-28 2662.88
2010-12-29 2666.93
2010-12-30 2662.98
2010-12-31 2652.87
2011-01-03 2691.52
2011-01-04 2681.25
2011-01-05 2702.20
2011-01-06 2709.89
2011-01-07 2703.17
2011-01-10 2707.80
2011-01-11 2716.83
2011-01-12 2737.33
2011-01-13 2735.29
2011-01-14 2755.30
2011-01-17 .
2011-01-18 2765.85
2011-01-19 2725.36
2011-01-20 2704.29
2011-01-21 2689.54
2011-01-24 2717.55
2011-01-25 2719.25
2011-01-26 2739.50
2011-01-27 2755.28
2011-01-28 2686.89
2011-01-31 2700.08
2011-02-01 2751.19
2011-02-02 2749.56
2011-02-03 2753.88
2011-02-04 2769.30
2011-02-07 2783.99
2011-02-08 2797.05
2011-02-09 2789.07
2011-02-10 2790.45
2011-02-11 2809.44
2011-02-14 2817.18
2011-02-15 2804.35
2011-02-16 2825.56
2011-02-17 2831.58
2011-02-18 2833.95
2011-02-21 .
2011-02-22 2756.42
2011-02-23 2722.99
2011-02-24 2737.90
2011-02-25 2781.05
2011-02-28 2782.27
2011-03-01 2737.41
2011-03-02 2748.07
2011-03-03 2798.74
2011-03-04 2784.67
2011-03-07 2745.63
2011-03-08 2765.77
2011-03-09 2751.72
2011-03-10 2701.02
2011-03-11 2715.61
2011-03-14 2700.97
2011-03-15 2667.33
2011-03-16 2616.82
2011-03-17 2636.05
2011-03-18 2643.67
2011-03-21 2692.09
2011-03-22 2683.87
2011-03-23 2698.30
2011-03-24 2736.42
2011-03-25 2743.06
2011-03-28 2730.68
2011-03-29 2756.89
2011-03-30 2776.79
2011-03-31 2781.07
2011-04-01 2789.60
2011-04-04 2789.19
2011-04-05 2791.19
2011-04-06 2799.82
2011-04-07 2796.14
2011-04-08 2780.42
2011-04-11 2771.51
2011-04-12 2744.79
2011-04-13 2761.52
2011-04-14 2760.22
2011-04-15 2764.65
2011-04-18 2735.38
2011-04-19 2744.97
2011-04-20 2802.51
2011-04-21 2820.16
2011-04-22 .
2011-04-25 2825.88
2011-04-26 2847.54
2011-04-27 2869.88
2011-04-28 2872.53
2011-04-29 2873.54
2011-05-02 2864.08
2011-05-03 2841.62
2011-05-04 2828.23
2011-05-05 2814.72
2011-05-06 2827.56
2011-05-09 2843.25
2011-05-10 2871.89
2011-05-11 2845.06
2011-05-12 2863.04
2011-05-13 2828.47
2011-05-16 2782.31
2011-05-17 2783.21
2011-05-18 2815.00
2011-05-19 2823.31
2011-05-20 2803.32
2011-05-23 2758.90
2011-05-24 2746.16
2011-05-25 2761.38
2011-05-26 2782.92
2011-05-27 2796.86
2011-05-30 .
2011-05-31 2835.30
2011-06-01 2769.19
2011-06-02 2773.31
2011-06-03 2732.78
2011-06-06 2702.56
2011-06-07 2701.56
2011-06-08 2675.38
2011-06-09 2684.87
2011-06-10 2643.73
2011-06-13 2639.69
2011-06-14 2678.72
2011-06-15 2631.46
2011-06-16 2623.70
2011-06-17 2616.48
2011-06-20 2629.66
2011-06-21 2687.26
2011-06-22 2669.19
2011-06-23 2686.75
2011-06-24 2652.89
2011-06-27 2688.28
2011-06-28 2729.31
2011-06-29 2740.49
2011-06-30 2773.52
2011-07-01 2816.03
2011-07-04 .
2011-07-05 2825.77
2011-07-06 2834.02
2011-07-07 2872.66
2011-07-08 2859.81
2011-07-11 2802.62
2011-07-12 2781.91
2011-07-13 2796.92
2011-07-14 2762.67
2011-07-15 2789.80
2011-07-18 2765.11
2011-07-19 2826.52
2011-07-20 2814.23
2011-07-21 2834.43
2011-07-22 2858.83
2011-07-25 2842.80
2011-07-26 2839.96
2011-07-27 2764.79
2011-07-28 2766.25
2011-07-29 2756.38
2011-08-01 2744.61
2011-08-02 2669.24
2011-08-03 2693.07
2011-08-04 2556.39
2011-08-05 2532.41
2011-08-08 2357.69
2011-08-09 2482.52
2011-08-10 2381.05
2011-08-11 2492.68
2011-08-12 2507.98
2011-08-15 2555.20
2011-08-16 2523.45
2011-08-17 2511.48
2011-08-18 2380.43
2011-08-19 2341.84
2011-08-22 2345.38
2011-08-23 2446.06
2011-08-24 2467.69
2011-08-25 2419.63
2011-08-26 2479.85
2011-08-29 2562.11
2011-08-30 2576.11
2011-08-31 2579.46
2011-09-01 2546.04
2011-09-02 2480.33
2011-09-05 .
2011-09-06 2473.83
2011-09-07 2548.94
2011-09-08 2529.14
2011-09-09 2467.99
2011-09-12 2495.09
2011-09-13 2532.15
2011-09-14 2572.55
2011-09-15 2607.07
2011-09-16 2622.31
2011-09-19 2612.83
2011-09-20 2590.24
2011-09-21 2538.19
2011-09-22 2455.67
2011-09-23 2483.23
2011-09-26 2516.69
2011-09-27 2546.83
2011-09-28 2491.58
2011-09-29 2480.76
2011-09-30 2415.40
2011-10-03 2335.83
2011-10-04 2404.82
2011-10-05 2460.51
2011-10-06 2506.82
2011-10-07 2479.35
2011-10-10 2566.05
2011-10-11 2583.03
2011-10-12 2604.73
2011-10-13 2620.24
2011-10-14 2667.85
2011-10-17 2614.92
2011-10-18 2657.43
2011-10-19 2604.04
2011-10-20 2598.62
2011-10-21 2637.46
2011-10-24 2699.44
2011-10-25 2638.42
2011-10-26 2650.67
2011-10-27 2738.63
2011-10-28 2737.15
2011-10-31 2684.41
2011-11-01 2606.96
2011-11-02 2639.98
2011-11-03 2697.97
2011-11-04 2686.15
2011-11-07 2695.25
2011-11-08 2727.49
2011-11-09 2621.65
2011-11-10 2625.15
2011-11-11 2678.75
2011-11-14 2657.22
2011-11-15 2686.20
2011-11-16 2639.61
2011-11-17 2587.99
2011-11-18 2572.50
2011-11-21 2523.14
2011-11-22 2521.28
2011-11-23 2460.08
2011-11-24 .
2011-11-25 2441.51
2011-11-28 2527.34
2011-11-29 2515.51
2011-11-30 2620.34
2011-12-01 2626.20
2011-12-02 2626.93
2011-12-05 2655.76
2011-12-06 2649.56
2011-12-07 2649.21
2011-12-08 2596.38
2011-12-09 2646.85
2011-12-12 2612.26
2011-12-13 2579.27
2011-12-14 2539.31
2011-12-15 2541.01
2011-12-16 2555.33
2011-12-19 2523.14
2011-12-20 2603.73
2011-12-21 2577.97
2011-12-22 2599.45
2011-12-23 2618.64
2011-12-26 .
2011-12-27 2625.20
2011-12-28 2589.98
2011-12-29 2613.74
2011-12-30 2605.15
2012-01-02 .
2012-01-03 2648.72
2012-01-04 2648.36
2012-01-05 2669.86
2012-01-06 2674.22
2012-01-09 2676.56
2012-01-10 2702.50
2012-01-11 2710.76
2012-01-12 2724.70
2012-01-13 2710.67
2012-01-16 .
2012-01-17 2728.08
2012-01-18 2769.71
2012-01-19 2788.33
2012-01-20 2786.70
2012-01-23 2784.17
2012-01-24 2786.64
2012-01-25 2818.31
2012-01-26 2805.28
2012-01-27 2816.55
2012-01-30 2811.94
2012-01-31 2813.84
2012-02-01 2848.27
2012-02-02 2859.68
2012-02-03 2905.66
2012-02-06 2901.99
2012-02-07 2904.08
2012-02-08 2915.86
2012-02-09 2927.23
2012-02-10 2903.88
2012-02-13 2931.39
2012-02-14 2931.83
2012-02-15 2915.83
2012-02-16 2959.85
2012-02-17 2951.78
2012-02-20 .
2012-02-21 2948.57
2012-02-22 2933.17
2012-02-23 2956.98
2012-02-24 2963.75
2012-02-27 2966.16
2012-02-28 2986.76
2012-02-29 2966.89
2012-03-01 2988.97
2012-03-02 2976.19
2012-03-05 2950.48
2012-03-06 2910.32
2012-03-07 2935.69
2012-03-08 2970.42
2012-03-09 2988.34
2012-03-12 2983.66
2012-03-13 3039.88
2012-03-14 3040.73
2012-03-15 3056.37
2012-03-16 3055.26
2012-03-19 3078.32
2012-03-20 3074.15
2012-03-21 3075.32
2012-03-22 3063.32
2012-03-23 3067.92
2012-03-26 3122.57
2012-03-27 3120.35
2012-03-28 3104.96
2012-03-29 3095.36
2012-03-30 3091.57
2012-04-02 3119.70
2012-04-03 3113.57
2012-04-04 3068.09
2012-04-05 3080.50
2012-04-06 .
2012-04-09 3047.08
2012-04-10 2991.22
2012-04-11 3016.46
2012-04-12 3055.55
2012-04-13 3011.33
2012-04-16 2988.40
2012-04-17 3042.82
2012-04-18 3031.45
2012-04-19 3007.56
2012-04-20 3000.45
2012-04-23 2970.45
2012-04-24 2961.60
2012-04-25 3029.63
2012-04-26 3050.61
2012-04-27 3069.20
2012-04-30 3046.36
2012-05-01 3050.44
2012-05-02 3059.85
2012-05-03 3024.30
2012-05-04 2956.34
2012-05-07 2957.76
2012-05-08 2946.27
2012-05-09 2934.71
2012-05-10 2933.64
2012-05-11 2933.82
2012-05-14 2902.58
2012-05-15 2893.76
2012-05-16 2874.04
2012-05-17 2813.69
2012-05-18 2778.79
2012-05-21 2847.21
2012-05-22 2839.08
2012-05-23 2850.12
2012-05-24 2839.38
2012-05-25 2837.53
2012-05-28 .
2012-05-29 2870.99
2012-05-30 2837.36
2012-05-31 2827.34
2012-06-01 2747.48
2012-06-04 2760.01
2012-06-05 2778.11
2012-06-06 2844.72
2012-06-07 2831.02
2012-06-08 2858.42
2012-06-11 2809.73
2012-06-12 2843.07
2012-06-13 2818.61
2012-06-14 2836.33
2012-06-15 2872.80
2012-06-18 2895.33
2012-06-19 2929.76
2012-06-20 2930.45
2012-06-21 2859.09
2012-06-22 2892.42
2012-06-25 2836.17
2012-06-26 2854.06
2012-06-27 2875.32
2012-06-28 2849.49
2012-06-29 2935.06
2012-07-02 2951.24
2012-07-03 2976.09
2012-07-04 .
2012-07-05 2976.12
2012-07-06 2937.33
2012-07-09 2931.77
2012-07-10 2902.34
2012-07-11 2887.99
2012-07-12 2866.19
2012-07-13 2908.47
2012-07-16 2896.94
2012-07-17 2910.04
2012-07-18 2942.60
2012-07-19 2965.90
2012-07-20 2925.30
2012-07-23 2890.15
2012-07-24 2862.99
2012-07-25 2854.24
2012-07-26 2893.25
2012-07-27 2958.09
2012-07-30 2945.84
2012-07-31 2939.52
2012-08-01 2920.21
2012-08-02 2909.77
2012-08-03 2967.90
2012-08-06 2989.91
2012-08-07 3015.86
2012-08-08 3011.25
2012-08-09 3018.64
2012-08-10 3020.86
2012-08-13 3022.52
2012-08-14 3016.98
2012-08-15 3030.93
2012-08-16 3062.39
2012-08-17 3076.59
2012-08-20 3076.21
2012-08-21 3067.26
2012-08-22 3073.67
2012-08-23 3053.40
2012-08-24 3069.79
2012-08-27 3073.19
2012-08-28 3077.14
2012-08-29 3081.19
2012-08-30 3048.71
2012-08-31 3066.96
2012-09-03 .
2012-09-04 3075.06
2012-09-05 3069.27
2012-09-06 3135.81
2012-09-07 3136.42
2012-09-10 3104.02
2012-09-11 3104.53
2012-09-12 3114.31
2012-09-13 3155.83
2012-09-14 3183.95
2012-09-17 3178.67
2012-09-18 3177.80
2012-09-19 3182.62
2012-09-20 3175.96
2012-09-21 3179.96
2012-09-24 3160.78
2012-09-25 3117.73
2012-09-26 3093.70
2012-09-27 3136.60
2012-09-28 3116.23
2012-10-01 3113.53
2012-10-02 3120.04
2012-10-03 3135.23
2012-10-04 3149.46
2012-10-05 3136.19
2012-10-08 3112.35
2012-10-09 3065.02
2012-10-10 3051.78
2012-10-11 3049.41
2012-10-12 3044.11
2012-10-15 3064.18
2012-10-16 3101.17
2012-10-17 3104.12
2012-10-18 3072.87
2012-10-19 3005.62
2012-10-22 3016.96
2012-10-23 2990.46
2012-10-24 2981.70
2012-10-25 2986.12
2012-10-26 2987.95
2012-10-29 .
2012-10-30 .
2012-10-31 2977.23
2012-11-01 3020.06
2012-11-02 2982.13
2012-11-05 2999.66
2012-11-06 3011.93
2012-11-07 2937.29
2012-11-08 2895.58
2012-11-09 2904.87
2012-11-12 2904.26
2012-11-13 2883.89
2012-11-14 2846.81
2012-11-15 2836.94
2012-11-16 2853.13
2012-11-19 2916.07
2012-11-20 2916.68
2012-11-21 2926.55
2012-11-22 .
2012-11-23 2966.85
2012-11-26 2976.78
2012-11-27 2967.79
2012-11-28 2991.78
2012-11-29 3012.03
2012-11-30 3010.24
2012-12-03 3002.20
2012-12-04 2996.69
2012-12-05 2973.70
2012-12-06 2989.27
2012-12-07 2978.04
2012-12-10 2986.96
2012-12-11 3022.30
2012-12-12 3013.81
2012-12-13 2992.16
2012-12-14 2971.33
2012-12-17 3010.60
2012-12-18 3054.53
2012-12-19 3044.36
2012-12-20 3050.39
2012-12-21 3021.01
2012-12-24 3012.60
2012-12-25 .
2012-12-26 2990.16
2012-12-27 2985.91
2012-12-28 2960.31
2012-12-31 3019.51
2013-01-01 .
2013-01-02 3112.26
2013-01-03 3100.57
2013-01-04 3101.66
2013-01-07 3098.81
2013-01-08 3091.81
2013-01-09 3105.81
2013-01-10 3121.76
2013-01-11 3125.63
2013-01-14 3117.50
2013-01-15 3110.78
2013-01-16 3117.54
2013-01-17 3136.00
2013-01-18 3134.71
2013-01-21 .
2013-01-22 3143.18
2013-01-23 3153.67
2013-01-24 3130.38
2013-01-25 3149.71
2013-01-28 3154.30
2013-01-29 3153.66
2013-01-30 3142.31
2013-01-31 3142.13
2013-02-01 3179.10
2013-02-04 3131.17
2013-02-05 3171.58
2013-02-06 3168.48
2013-02-07 3165.13
2013-02-08 3193.87
2013-02-11 3192.00
2013-02-12 3186.49
2013-02-13 3196.88
2013-02-14 3198.66
2013-02-15 3192.03
2013-02-18 .
2013-02-19 3213.59
2013-02-20 3164.41
2013-02-21 3131.49
2013-02-22 3161.82
2013-02-25 3116.25
2013-02-26 3129.65
2013-02-27 3162.26
2013-02-28 3160.19
2013-03-01 3169.74
2013-03-04 3182.03
2013-03-05 3224.13
2013-03-06 3222.37
2013-03-07 3232.09
2013-03-08 3244.37
2013-03-11 3252.87
2013-03-12 3242.32
2013-03-13 3245.12
2013-03-14 3258.93
2013-03-15 3249.07
2013-03-18 3237.59
2013-03-19 3229.10
2013-03-20 3254.19
2013-03-21 3222.60
2013-03-22 3245.00
2013-03-25 3235.30
2013-03-26 3252.48
2013-03-27 3256.52
2013-03-28 3267.52
2013-03-29 .
2013-04-01 3239.17
2013-04-02 3254.86
2013-04-03 3218.60
2013-04-04 3224.98
2013-04-05 3203.86
2013-04-08 3222.25
2013-04-09 3237.86
2013-04-10 3297.25
2013-04-11 3300.16
2013-04-12 3294.95
2013-04-15 3216.49
2013-04-16 3264.63
2013-04-17 3204.67
2013-04-18 3166.36
2013-04-19 3206.06
2013-04-22 3233.55
2013-04-23 3269.33
2013-04-24 3269.65
2013-04-25 3289.99
2013-04-26 3279.26
2013-04-29 3307.02
2013-04-30 3328.79
2013-05-01 3299.13
2013-05-02 3340.62
2013-05-03 3378.63
2013-05-06 3392.97
2013-05-07 3396.63
2013-05-08 3413.27
2013-05-09 3409.17
2013-05-10 3436.58
2013-05-13 3438.79
2013-05-14 3462.61
2013-05-15 3471.62
2013-05-16 3465.24
2013-05-17 3498.97
2013-05-20 3496.43
2013-05-21 3502.12
2013-05-22 3463.30
2013-05-23 3459.42
2013-05-24 3459.14
2013-05-27 .
2013-05-28 3488.89
2013-05-29 3467.52
2013-05-30 3491.30
2013-05-31 3455.91
2013-06-03 3465.37
2013-06-04 3445.26
2013-06-05 3401.48
2013-06-06 3424.05
2013-06-07 3469.22
2013-06-10 3473.77
2013-06-11 3436.95
2013-06-12 3400.43
2013-06-13 3445.37
2013-06-14 3423.56
2013-06-17 3452.13
2013-06-18 3482.18
2013-06-19 3443.20
2013-06-20 3364.63
2013-06-21 3357.25
2013-06-24 3320.76
2013-06-25 3347.89
2013-06-26 3376.22
2013-06-27 3401.86
2013-06-28 3403.25
2013-07-01 3434.49
2013-07-02 3433.40
2013-07-03 3443.67
2013-07-04 .
2013-07-05 3479.38
2013-07-08 3484.83
2013-07-09 3504.26
2013-07-10 3520.76
2013-07-11 3578.30
2013-07-12 3600.08
2013-07-15 3607.49
2013-07-16 3598.50
2013-07-17 3610.00
2013-07-18 3611.28
2013-07-19 3587.61
2013-07-22 3600.39
2013-07-23 3579.27
2013-07-24 3579.60
2013-07-25 3605.19
2013-07-26 3613.16
2013-07-29 3599.14
2013-07-30 3616.47
2013-07-31 3626.37
2013-08-01 3675.74
2013-08-02 3689.59
2013-08-05 3692.95
2013-08-06 3665.77
2013-08-07 3654.01
2013-08-08 3669.12
2013-08-09 3660.11
2013-08-12 3669.95
2013-08-13 3684.44
2013-08-14 3669.27
2013-08-15 3606.12
2013-08-16 3602.78
2013-08-19 3589.09
2013-08-20 3613.59
2013-08-21 3599.79
2013-08-22 3638.71
2013-08-23 3657.79
2013-08-26 3657.57
2013-08-27 3578.52
2013-08-28 3593.35
2013-08-29 3620.30
2013-08-30 3589.87
2013-09-02 .
2013-09-03 3612.61
2013-09-04 3649.04
2013-09-05 3658.78
2013-09-06 3660.01
2013-09-09 3706.18
2013-09-10 3729.02
2013-09-11 3725.01
2013-09-12 3715.97
2013-09-13 3722.18
2013-09-16 3717.85
2013-09-17 3745.70
2013-09-18 3783.64
2013-09-19 3789.38
2013-09-20 3774.73
2013-09-23 3765.29
2013-09-24 3768.25
2013-09-25 3761.10
2013-09-26 3787.43
2013-09-27 3781.59
2013-09-30 3771.48
2013-10-01 3817.98
2013-10-02 3815.02
2013-10-03 3774.34
2013-10-04 3807.75
2013-10-07 3770.38
2013-10-08 3694.83
2013-10-09 3677.78
2013-10-10 3760.75
2013-10-11 3791.87
2013-10-14 3815.27
2013-10-15 3794.01
2013-10-16 3839.43
2013-10-17 3863.15
2013-10-18 3914.28
2013-10-21 3920.05
2013-10-22 3929.57
2013-10-23 3907.07
2013-10-24 3928.96
2013-10-25 3943.36
2013-10-28 3940.13
2013-10-29 3952.34
2013-10-30 3930.62
2013-10-31 3919.71
2013-11-01 3922.04
2013-11-04 3936.59
2013-11-05 3939.86
2013-11-06 3931.95
2013-11-07 3857.33
2013-11-08 3919.23
2013-11-11 3919.79
2013-11-12 3919.92
2013-11-13 3965.58
2013-11-14 3972.74
2013-11-15 3985.97
2013-11-18 3949.07
2013-11-19 3931.55
2013-11-20 3921.27
2013-11-21 3969.15
2013-11-22 3991.65
2013-11-25 3994.57
2013-11-26 4017.75
2013-11-27 4044.75
2013-11-28 .
2013-11-29 4059.89
2013-12-02 4045.26
2013-12-03 4037.20
2013-12-04 4038.00
2013-12-05 4033.16
2013-12-06 4062.52
2013-12-09 4068.75
2013-12-10 4060.49
2013-12-11 4003.81
2013-12-12 3998.40
2013-12-13 4000.98
2013-12-16 4029.52
2013-12-17 4023.68
2013-12-18 4070.06
2013-12-19 4058.13
2013-12-20 4104.74
2013-12-23 4148.90
2013-12-24 4155.42
2013-12-25 .
2013-12-26 4167.18
2013-12-27 4156.59
2013-12-30 4154.20
2013-12-31 4176.59
2014-01-01 .
2014-01-02 4143.07
2014-01-03 4131.91
2014-01-06 4113.68
2014-01-07 4153.18
2014-01-08 4165.61
2014-01-09 4156.19
2014-01-10 4174.66
2014-01-13 4113.30
2014-01-14 4183.02
2014-01-15 4214.88
2014-01-16 4218.69
2014-01-17 4197.58
2014-01-20 .
2014-01-21 4225.76
2014-01-22 4243.00
2014-01-23 4218.87
2014-01-24 4128.17
2014-01-27 4083.61
2014-01-28 4097.96
2014-01-29 4051.43
2014-01-30 4123.13
2014-01-31 4103.88
2014-02-03 3996.96
2014-02-04 4031.52
2014-02-05 4011.55
2014-02-06 4057.12
2014-02-07 4125.86
2014-02-10 4148.17
2014-02-11 4191.04
2014-02-12 4201.29
2014-02-13 4240.67
2014-02-14 4244.03
2014-02-17 .
2014-02-18 4272.78
2014-02-19 4237.95
2014-02-20 4267.55
2014-02-21 4263.41
2014-02-24 4292.97
2014-02-25 4287.59
2014-02-26 4292.06
2014-02-27 4318.93
2014-02-28 4308.12
2014-03-03 4277.30
2014-03-04 4351.97
2014-03-05 4357.97
2014-03-06 4352.13
2014-03-07 4336.22
2014-03-10 4334.45
2014-03-11 4307.19
2014-03-12 4323.33
2014-03-13 4260.42
2014-03-14 4245.40
2014-03-17 4279.95
2014-03-18 4333.31
2014-03-19 4307.60
2014-03-20 4319.29
2014-03-21 4276.79
2014-03-24 4226.39
2014-03-25 4234.27
2014-03-26 4173.58
2014-03-27 4151.23
2014-03-28 4155.76
2014-03-31 4198.99
2014-04-01 4268.04
2014-04-02 4276.46
2014-04-03 4237.74
2014-04-04 4127.73
2014-04-07 4079.75
2014-04-08 4112.99
2014-04-09 4183.90
2014-04-10 4054.11
2014-04-11 3999.73
2014-04-14 4022.69
2014-04-15 4034.16
2014-04-16 4086.23
2014-04-17 4095.52
2014-04-18 .
2014-04-21 4121.55
2014-04-22 4161.46
2014-04-23 4126.97
2014-04-24 4148.34
2014-04-25 4075.56
2014-04-28 4074.40
2014-04-29 4103.54
2014-04-30 4114.56
2014-05-01 4127.45
2014-05-02 4123.90
2014-05-05 4138.06
2014-05-06 4080.76
2014-05-07 4067.67
2014-05-08 4051.50
2014-05-09 4071.87
2014-05-12 4143.86
2014-05-13 4130.17
2014-05-14 4100.63
2014-05-15 4069.29
2014-05-16 4090.59
2014-05-19 4125.82
2014-05-20 4096.89
2014-05-21 4131.54
2014-05-22 4154.34
2014-05-23 4185.81
2014-05-26 .
2014-05-27 4237.07
2014-05-28 4225.07
2014-05-29 4247.95
2014-05-30 4242.62
2014-06-02 4237.20
2014-06-03 4234.08
2014-06-04 4251.64
2014-06-05 4296.23
2014-06-06 4321.40
2014-06-09 4336.24
2014-06-10 4338.00
2014-06-11 4331.93
2014-06-12 4297.63
2014-06-13 4310.65
2014-06-16 4321.11
2014-06-17 4337.23
2014-06-18 4362.84
2014-06-19 4359.33
2014-06-20 4368.04
2014-06-23 4368.68
2014-06-24 4350.36
2014-06-25 4379.76
2014-06-26 4379.05
2014-06-27 4397.93
2014-06-30 4408.18
2014-07-01 4458.65
2014-07-02 4457.73
2014-07-03 4485.93
2014-07-04 .
2014-07-07 4451.53
2014-07-08 4391.46
2014-07-09 4419.03
2014-07-10 4396.20
2014-07-11 4415.49
2014-07-14 4440.42
2014-07-15 4416.39
2014-07-16 4425.97
2014-07-17 4363.45
2014-07-18 4432.15
2014-07-21 4424.70
2014-07-22 4456.02
2014-07-23 4473.70
2014-07-24 4472.11
2014-07-25 4449.56
2014-07-28 4444.91
2014-07-29 4442.70
2014-07-30 4462.90
2014-07-31 4369.77
2014-08-01 4352.64
2014-08-04 4383.89
2014-08-05 4352.84
2014-08-06 4355.05
2014-08-07 4334.97
2014-08-08 4370.90
2014-08-11 4401.33
2014-08-12 4389.25
2014-08-13 4434.13
2014-08-14 4453.00
2014-08-15 4464.93
2014-08-18 4508.31
2014-08-19 4527.51
2014-08-20 4526.48
2014-08-21 4532.10
2014-08-22 4538.55
2014-08-25 4557.35
2014-08-26 4570.64
2014-08-27 4569.62
2014-08-28 4557.70
2014-08-29 4580.27
2014-09-01 .
2014-09-02 4598.19
2014-09-03 4572.57
2014-09-04 4562.29
2014-09-05 4582.90
2014-09-08 4592.29
2014-09-09 4552.29
2014-09-10 4586.52
2014-09-11 4591.81
2014-09-12 4567.60
2014-09-15 4518.90
2014-09-16 4552.76
2014-09-17 4562.19
2014-09-18 4593.43
2014-09-19 4579.79
2014-09-22 4527.69
2014-09-23 4508.69
2014-09-24 4555.22
2014-09-25 4466.75
2014-09-26 4512.19
2014-09-29 4505.85
2014-09-30 4493.39
2014-10-01 4422.09
2014-10-02 4430.20
2014-10-03 4475.62
2014-10-06 4454.80
2014-10-07 4385.20
2014-10-08 4468.59
2014-10-09 4378.34
2014-10-10 4276.24
2014-10-13 4213.66
2014-10-14 4227.17
2014-10-15 4215.32
2014-10-16 4217.39
2014-10-17 4258.44
2014-10-20 4316.07
2014-10-21 4419.48
2014-10-22 4382.85
2014-10-23 4452.79
2014-10-24 4483.72
2014-10-27 4485.93
2014-10-28 4564.29
2014-10-29 4549.23
2014-10-30 4566.14
2014-10-31 4630.74
2014-11-03 4638.91
2014-11-04 4623.64
2014-11-05 4620.72
2014-11-06 4638.47
2014-11-07 4632.53
2014-11-10 4651.62
2014-11-11 4660.56
2014-11-12 4675.13
2014-11-13 4680.14
2014-11-14 4688.54
2014-11-17 4671.00
2014-11-18 4702.44
2014-11-19 4675.71
2014-11-20 4701.87
2014-11-21 4712.97
2014-11-24 4754.89
2014-11-25 4758.25
2014-11-26 4787.32
2014-11-27 .
2014-11-28 4791.63
2014-12-01 4727.35
2014-12-02 4755.81
2014-12-03 4774.47
2014-12-04 4769.44
2014-12-05 4780.76
2014-12-08 4740.69
2014-12-09 4766.47
2014-12-10 4684.03
2014-12-11 4708.16
2014-12-12 4653.60
2014-12-15 4605.16
2014-12-16 4547.83
2014-12-17 4644.31
2014-12-18 4748.40
2014-12-19 4765.38
2014-12-22 4781.42
2014-12-23 4765.42
2014-12-24 4773.47
2014-12-25 .
2014-12-26 4806.86
2014-12-29 4806.91
2014-12-30 4777.44
2014-12-31 4736.05
2015-01-01 .
2015-01-02 4726.81
2015-01-05 4652.57
2015-01-06 4592.74
2015-01-07 4650.47
2015-01-08 4736.19
2015-01-09 4704.07
2015-01-12 4664.71
2015-01-13 4661.50
2015-01-14 4639.32
2015-01-15 4570.82
2015-01-16 4634.38
2015-01-19 .
2015-01-20 4654.85
2015-01-21 4667.42
2015-01-22 4750.40
2015-01-23 4757.88
2015-01-26 4771.76
2015-01-27 4681.50
2015-01-28 4637.99
2015-01-29 4683.41
2015-01-30 4635.24
2015-02-02 4676.69
2015-02-03 4727.74
2015-02-04 4716.70
2015-02-05 4765.10
2015-02-06 4744.40
2015-02-09 4726.01
2015-02-10 4787.64
2015-02-11 4801.18
2015-02-12 4857.61
2015-02-13 4893.84
2015-02-16 .
2015-02-17 4899.27
2015-02-18 4906.36
2015-02-19 4924.70
2015-02-20 4955.97
2015-02-23 4960.97
2015-02-24 4968.12
2015-02-25 4967.14
2015-02-26 4987.89
2015-02-27 4963.53
2015-03-02 5008.10
2015-03-03 4979.90
2015-03-04 4967.14
2015-03-05 4982.81
2015-03-06 4927.37
2015-03-09 4942.44
2015-03-10 4859.79
2015-03-11 4849.94
2015-03-12 4893.29
2015-03-13 4871.76
2015-03-16 4929.51
2015-03-17 4937.43
2015-03-18 4982.83
2015-03-19 4992.38
2015-03-20 5026.42
2015-03-23 5010.97
2015-03-24 4994.73
2015-03-25 4876.52
2015-03-26 4863.36
2015-03-27 4891.22
2015-03-30 4947.44
2015-03-31 4900.89
2015-04-01 4880.23
2015-04-02 4886.94
2015-04-03 .
2015-04-06 4917.32
2015-04-07 4910.23
2015-04-08 4950.82
2015-04-09 4974.56
2015-04-10 4995.98
2015-04-13 4988.25
2015-04-14 4977.29
2015-04-15 5011.02
2015-04-16 5007.79
2015-04-17 4931.81
2015-04-20 4994.60
2015-04-21 5014.10
2015-04-22 5035.17
2015-04-23 5056.06
2015-04-24 5092.08
2015-04-27 5060.25
2015-04-28 5055.42
2015-04-29 5023.64
2015-04-30 4941.42
2015-05-01 5005.39
2015-05-04 5016.93
2015-05-05 4939.33
2015-05-06 4919.64
2015-05-07 4945.54
2015-05-08 5003.55
2015-05-11 4993.57
2015-05-12 4976.19
2015-05-13 4981.69
2015-05-14 5050.80
2015-05-15 5048.29
2015-05-18 5078.44
2015-05-19 5070.03
2015-05-20 5071.74
2015-05-21 5090.79
2015-05-22 5089.36
2015-05-25 .
2015-05-26 5032.75
2015-05-27 5106.59
2015-05-28 5097.98
2015-05-29 5070.03
2015-06-01 5082.93
2015-06-02 5076.52
2015-06-03 5099.23
2015-06-04 5059.12
2015-06-05 5068.46
2015-06-08 5021.63
2015-06-09 5013.87
2015-06-10 5076.69
2015-06-11 5082.51
2015-06-12 5051.10
2015-06-15 5029.97
2015-06-16 5055.55
2015-06-17 5064.88
2015-06-18 5132.95
2015-06-19 5117.00
2015-06-22 5153.97
2015-06-23 5160.09
2015-06-24 5122.41
2015-06-25 5112.19
2015-06-26 5080.51
2015-06-29 4958.47
2015-06-30 4986.87
2015-07-01 5013.12
2015-07-02 5009.21
2015-07-03 .
2015-07-06 4991.94
2015-07-07 4997.46
2015-07-08 4909.76
2015-07-09 4922.40
2015-07-10 4997.70
2015-07-13 5071.51
2015-07-14 5104.89
2015-07-15 5098.94
2015-07-16 5163.18
2015-07-17 5210.14
2015-07-20 5218.86
2015-07-21 5208.12
2015-07-22 5171.77
2015-07-23 5146.41
2015-07-24 5088.63
2015-07-27 5039.78
2015-07-28 5089.21
2015-07-29 5111.73
2015-07-30 5128.78
2015-07-31 5128.28
2015-08-03 5115.38
2015-08-04 5105.55
2015-08-05 5139.94
2015-08-06 5056.44
2015-08-07 5043.54
2015-08-10 5101.80
2015-08-11 5036.79
2015-08-12 5044.39
2015-08-13 5033.56
2015-08-14 5048.24
2015-08-17 5091.70
2015-08-18 5059.35
2015-08-19 5019.05
2015-08-20 4877.49
2015-08-21 4706.04
2015-08-24 4526.25
2015-08-25 4506.49
2015-08-26 4697.54
2015-08-27 4812.71
2015-08-28 4828.32
2015-08-31 4776.51
2015-09-01 4636.11
2015-09-02 4749.98
2015-09-03 4733.50
2015-09-04 4683.92
2015-09-07 .
2015-09-08 4811.93
2015-09-09 4756.53
2015-09-10 4796.25
2015-09-11 4822.34
2015-09-14 4805.76
2015-09-15 4860.52
2015-09-16 4889.24
2015-09-17 4893.95
2015-09-18 4827.23
2015-09-21 4828.95
2015-09-22 4756.72
2015-09-23 4752.74
2015-09-24 4734.48
2015-09-25 4686.50
2015-09-28 4543.97
2015-09-29 4517.32
2015-09-30 4620.16
2015-10-01 4627.08
2015-10-02 4707.78
2015-10-05 4781.26
2015-10-06 4748.36
2015-10-07 4791.15
2015-10-08 4810.79
2015-10-09 4830.47
2015-10-12 4838.64
2015-10-13 4796.61
2015-10-14 4782.85
2015-10-15 4870.10
2015-10-16 4886.69
2015-10-19 4905.47
2015-10-20 4880.97
2015-10-21 4840.12
2015-10-22 4920.05
2015-10-23 5031.86
2015-10-26 5034.70
2015-10-27 5030.15
2015-10-28 5095.69
2015-10-29 5074.27
2015-10-30 5053.75
2015-11-02 5127.15
2015-11-03 5145.13
2015-11-04 5142.48
2015-11-05 5127.74
2015-11-06 5147.12
2015-11-09 5095.30
2015-11-10 5083.24
2015-11-11 5067.02
2015-11-12 5005.08
2015-11-13 4927.88
2015-11-16 4984.62
2015-11-17 4986.01
2015-11-18 5075.20
2015-11-19 5073.64
2015-11-20 5104.92
2015-11-23 5102.48
2015-11-24 5102.81
2015-11-25 5116.14
2015-11-26 .
2015-11-27 5127.52
2015-11-30 5108.67
2015-12-01 5156.31
2015-12-02 5123.22
2015-12-03 5037.53
2015-12-04 5142.27
2015-12-07 5101.81
2015-12-08 5098.24
2015-12-09 5022.87
2015-12-10 5045.17
2015-12-11 4933.47
2015-12-14 4952.23
2015-12-15 4995.36
2015-12-16 5071.13
2015-12-17 5002.55
2015-12-18 4923.08
2015-12-21 4968.92
2015-12-22 5001.11
2015-12-23 5045.93
2015-12-24 5048.49
2015-12-25 .
2015-12-28 5040.99
2015-12-29 5107.94
2015-12-30 5065.85
2015-12-31 5007.41
2016-01-01 .
2016-01-04 4903.09
2016-01-05 4891.43
2016-01-06 4835.76
2016-01-07 4689.43
2016-01-08 4643.63
2016-01-11 4637.99
2016-01-12 4685.92
2016-01-13 4526.06
2016-01-14 4615.00
2016-01-15 4488.42
2016-01-18 .
2016-01-19 4476.95
2016-01-20 4471.69
2016-01-21 4472.06
2016-01-22 4591.18
2016-01-25 4518.49
2016-01-26 4567.67
2016-01-27 4468.17
2016-01-28 4506.68
2016-01-29 4613.95
2016-02-01 4620.37
2016-02-02 4516.95
2016-02-03 4504.24
2016-02-04 4509.56
2016-02-05 4363.14
2016-02-08 4283.75
2016-02-09 4268.76
2016-02-10 4283.59
2016-02-11 4266.84
2016-02-12 4337.51
2016-02-15 .
2016-02-16 4435.96
2016-02-17 4534.06
2016-02-18 4487.54
2016-02-19 4504.43
2016-02-22 4570.61
2016-02-23 4503.58
2016-02-24 4542.61
2016-02-25 4582.20
2016-02-26 4590.47
2016-02-29 4557.95
2016-03-01 4689.60
2016-03-02 4703.42
2016-03-03 4707.42
2016-03-04 4717.02
2016-03-07 4708.25
2016-03-08 4648.82
2016-03-09 4674.38
2016-03-10 4662.16
2016-03-11 4748.47
2016-03-14 4750.28
2016-03-15 4728.67
2016-03-16 4763.97
2016-03-17 4774.99
2016-03-18 4795.65
2016-03-21 4808.87
2016-03-22 4821.66
2016-03-23 4768.86
2016-03-24 4773.51
2016-03-25 .
2016-03-28 4766.79
2016-03-29 4846.62
2016-03-30 4869.29
2016-03-31 4869.85
2016-04-01 4914.54
2016-04-04 4891.80
2016-04-05 4843.93
2016-04-06 4920.72
2016-04-07 4848.37
2016-04-08 4850.69
2016-04-11 4833.40
2016-04-12 4872.09
2016-04-13 4947.42
2016-04-14 4945.89
2016-04-15 4938.22
2016-04-18 4960.02
2016-04-19 4940.33
2016-04-20 4948.13
2016-04-21 4945.89
2016-04-22 4906.23
2016-04-25 4895.79
2016-04-26 4888.28
2016-04-27 4863.14
2016-04-28 4805.29
2016-04-29 4775.36
2016-05-02 4817.59
2016-05-03 4763.22
2016-05-04 4725.64
2016-05-05 4717.09
2016-05-06 4736.16
2016-05-09 4750.21
2016-05-10 4809.88
2016-05-11 4760.69
2016-05-12 4737.33
2016-05-13 4717.68
2016-05-16 4775.46
2016-05-17 4715.73
2016-05-18 4739.12
2016-05-19 4712.53
2016-05-20 4769.56
2016-05-23 4765.78
2016-05-24 4861.06
2016-05-25 4894.89
2016-05-26 4901.77
2016-05-27 4933.50
2016-05-30 .
2016-05-31 4948.05
2016-06-01 4952.25
2016-06-02 4971.36
2016-06-03 4942.52
2016-06-06 4968.71
2016-06-07 4961.75
2016-06-08 4974.64
2016-06-09 4958.62
2016-06-10 4894.55
2016-06-13 4848.44
2016-06-14 4843.55
2016-06-15 4834.93
2016-06-16 4844.91
2016-06-17 4800.34
2016-06-20 4837.21
2016-06-21 4843.76
2016-06-22 4833.32
2016-06-23 4910.04
2016-06-24 4707.98
2016-06-27 4594.44
2016-06-28 4691.87
2016-06-29 4779.25
2016-06-30 4842.67
2016-07-01 4862.57
2016-07-04 .
2016-07-05 4822.90
2016-07-06 4859.16
2016-07-07 4876.81
2016-07-08 4956.76
2016-07-11 4988.64
2016-07-12 5022.82
2016-07-13 5005.73
2016-07-14 5034.06
2016-07-15 5029.59
2016-07-18 5055.78
2016-07-19 5036.37
2016-07-20 5089.93
2016-07-21 5073.90
2016-07-22 5100.16
2016-07-25 5097.63
2016-07-26 5110.05
2016-07-27 5139.81
2016-07-28 5154.98
2016-07-29 5162.13
2016-08-01 5184.20
2016-08-02 5137.73
2016-08-03 5159.74
2016-08-04 5166.25
2016-08-05 5221.12
2016-08-08 5213.14
2016-08-09 5225.48
2016-08-10 5204.58
2016-08-11 5228.40
2016-08-12 5232.89
2016-08-15 5262.02
2016-08-16 5227.11
2016-08-17 5228.66
2016-08-18 5240.15
2016-08-19 5238.38
2016-08-22 5244.60
2016-08-23 5260.08
2016-08-24 5217.69
2016-08-25 5212.20
2016-08-26 5218.92
2016-08-29 5232.33
2016-08-30 5222.99
2016-08-31 5213.22
2016-09-01 5227.21
2016-09-02 5249.90
2016-09-05 .
2016-09-06 5275.91
2016-09-07 5283.93
2016-09-08 5259.48
2016-09-09 5125.91
2016-09-12 5211.89
2016-09-13 5155.25
2016-09-14 5173.77
2016-09-15 5249.69
2016-09-16 5244.57
2016-09-19 5235.03
2016-09-20 5241.35
2016-09-21 5295.18
2016-09-22 5339.52
2016-09-23 5305.75
2016-09-26 5257.49
2016-09-27 5305.71
2016-09-28 5318.55
2016-09-29 5269.15
2016-09-30 5312.00
2016-10-03 5300.87
2016-10-04 5289.66
2016-10-05 5316.02
2016-10-06 5306.85
2016-10-07 5292.40
2016-10-10 5328.67
2016-10-11 5246.79
2016-10-12 5239.02
2016-10-13 5213.33
2016-10-14 5214.16
2016-10-17 5199.82
2016-10-18 5243.84
2016-10-19 5246.41
2016-10-20 5241.83
2016-10-21 5257.40
2016-10-24 5309.83
2016-10-25 5283.40
2016-10-26 5250.27
2016-10-27 5215.97
2016-10-28 5190.10
2016-10-31 5189.13
2016-11-01 5153.58
2016-11-02 5105.57
2016-11-03 5058.41
2016-11-04 5046.37
2016-11-07 5166.17
2016-11-08 5193.49
2016-11-09 5251.07
2016-11-10 5208.80
2016-11-11 5237.11
2016-11-14 5218.40
2016-11-15 5275.62
2016-11-16 5294.58
2016-11-17 5333.97
2016-11-18 5321.51
2016-11-21 5368.86
2016-11-22 5386.35
2016-11-23 5380.68
2016-11-24 .
2016-11-25 5398.92
2016-11-28 5368.81
2016-11-29 5379.92
2016-11-30 5323.68
2016-12-01 5251.11
2016-12-02 5255.65
2016-12-05 5308.89
2016-12-06 5333.00
2016-12-07 5393.76
2016-12-08 5417.36
2016-12-09 5444.50
2016-12-12 5412.54
2016-12-13 5463.83
2016-12-14 5436.67
2016-12-15 5456.85
2016-12-16 5437.16
2016-12-19 5457.44
2016-12-20 5483.94
2016-12-21 5471.43
2016-12-22 5447.42
2016-12-23 5462.69
2016-12-26 .
2016-12-27 5487.44
2016-12-28 5438.56
2016-12-29 5432.09
2016-12-30 5383.12
2017-01-02 .
2017-01-03 5429.08
2017-01-04 5477.00
2017-01-05 5487.94
2017-01-06 5521.06
2017-01-09 5531.82
2017-01-10 5551.82
2017-01-11 5563.65
2017-01-12 5547.49
2017-01-13 5574.12
2017-01-16 .
2017-01-17 5538.73
2017-01-18 5555.65
2017-01-19 5540.08
2017-01-20 5555.33
2017-01-23 5552.94
2017-01-24 5600.96
2017-01-25 5656.34
2017-01-26 5655.18
2017-01-27 5660.78
2017-01-30 5613.71
2017-01-31 5614.79
2017-02-01 5642.65
2017-02-02 5636.20
2017-02-03 5666.77
2017-02-06 5663.55
2017-02-07 5674.22
2017-02-08 5682.45
2017-02-09 5715.18
2017-02-10 5734.13
2017-02-13 5763.96
2017-02-14 5782.57
2017-02-15 5819.44
2017-02-16 5814.90
2017-02-17 5838.58
2017-02-20 .
2017-02-21 5865.95
2017-02-22 5860.63
2017-02-23 5835.51
2017-02-24 5845.31
2017-02-27 5861.90
2017-02-28 5825.44
2017-03-01 5904.03
2017-03-02 5861.22
2017-03-03 5870.75
2017-03-06 5849.17
2017-03-07 5833.93
2017-03-08 5837.55
2017-03-09 5838.81
2017-03-10 5861.73
2017-03-13 5875.78
2017-03-14 5856.82
2017-03-15 5900.05
2017-03-16 5900.76
2017-03-17 5901.00
2017-03-20 5901.53
2017-03-21 5793.83
2017-03-22 5821.64
2017-03-23 5817.69
2017-03-24 5828.74
2017-03-27 5840.37
2017-03-28 5875.14
2017-03-29 5897.55
2017-03-30 5914.34
2017-03-31 5911.74
2017-04-03 5894.68
2017-04-04 5898.61
2017-04-05 5864.48
2017-04-06 5878.95
2017-04-07 5877.81
2017-04-10 5880.93
2017-04-11 5866.77
2017-04-12 5836.16
2017-04-13 5805.15
2017-04-14 .
2017-04-17 5856.79
2017-04-18 5849.47
2017-04-19 5863.03
2017-04-20 5916.78
2017-04-21 5910.52
2017-04-24 5983.82
2017-04-25 6025.49
2017-04-26 6025.23
2017-04-27 6048.94
2017-04-28 6047.61
2017-05-01 6091.60
2017-05-02 6095.37
2017-05-03 6072.55
2017-05-04 6075.34
2017-05-05 6100.76
2017-05-08 6102.66
2017-05-09 6120.59
2017-05-10 6129.14
2017-05-11 6115.96
2017-05-12 6121.23
2017-05-15 6149.67
2017-05-16 6169.87
2017-05-17 6011.24
2017-05-18 6055.13
2017-05-19 6083.70
2017-05-22 6133.62
2017-05-23 6138.71
2017-05-24 6163.02
2017-05-25 6205.26
2017-05-26 6210.19
2017-05-29 .
2017-05-30 6203.19
2017-05-31 6198.52
2017-06-01 6246.83
2017-06-02 6305.80
2017-06-05 6295.68
2017-06-06 6275.06
2017-06-07 6297.38
2017-06-08 6321.76
2017-06-09 6207.92
2017-06-12 6175.46
2017-06-13 6220.37
2017-06-14 6194.89
2017-06-15 6165.50
2017-06-16 6151.76
2017-06-19 6239.01
2017-06-20 6188.03
2017-06-21 6233.95
2017-06-22 6236.69
2017-06-23 6265.25
2017-06-26 6247.15
2017-06-27 6146.62
2017-06-28 6234.41
2017-06-29 6144.35
2017-06-30 6140.42
2017-07-03 6110.06
2017-07-04 .
2017-07-05 6150.86
2017-07-06 6089.46
2017-07-07 6153.08
2017-07-10 6176.39
2017-07-11 6193.30
2017-07-12 6261.17
2017-07-13 6274.44
2017-07-14 6312.47
2017-07-17 6314.43
2017-07-18 6344.31
2017-07-19 6385.04
2017-07-20 6390.00
2017-07-21 6387.75
2017-07-24 6410.81
2017-07-25 6412.17
2017-07-26 6422.75
2017-07-27 6382.19
2017-07-28 6374.68
2017-07-31 6348.12
2017-08-01 6362.94
2017-08-02 6362.65
2017-08-03 6340.34
2017-08-04 6351.56
2017-08-07 6383.77
2017-08-08 6370.46
2017-08-09 6352.33
2017-08-10 6216.87
2017-08-11 6256.56
2017-08-14 6340.23
2017-08-15 6333.01
2017-08-16 6345.11
2017-08-17 6221.91
2017-08-18 6216.53
2017-08-21 6213.13
2017-08-22 6297.48
2017-08-23 6278.41
2017-08-24 6271.33
2017-08-25 6265.64
2017-08-28 6283.02
2017-08-29 6301.89
2017-08-30 6368.31
2017-08-31 6428.66
2017-09-01 6435.33
2017-09-04 .
2017-09-05 6375.57
2017-09-06 6393.31
2017-09-07 6397.87
2017-09-08 6360.19
2017-09-11 6432.26
2017-09-12 6454.28
2017-09-13 6460.19
2017-09-14 6429.08
2017-09-15 6448.47
2017-09-18 6454.64
2017-09-19 6461.32
2017-09-20 6456.04
2017-09-21 6422.69
2017-09-22 6426.92
2017-09-25 6370.59
2017-09-26 6380.16
2017-09-27 6453.26
2017-09-28 6453.45
2017-09-29 6495.96
2017-10-02 6516.72
2017-10-03 6531.71
2017-10-04 6534.63
2017-10-05 6585.36
2017-10-06 6590.18
2017-10-09 6579.73
2017-10-10 6587.25
2017-10-11 6603.55
2017-10-12 6591.51
2017-10-13 6605.80
2017-10-16 6624.00
2017-10-17 6623.66
2017-10-18 6624.22
2017-10-19 6605.07
2017-10-20 6629.05
2017-10-23 6586.83
2017-10-24 6598.43
2017-10-25 6563.89
2017-10-26 6556.77
2017-10-27 6701.26
2017-10-30 6698.96
2017-10-31 6727.67
2017-11-01 6716.53
2017-11-02 6714.94
2017-11-03 6764.44
2017-11-06 6786.44
2017-11-07 6767.78
2017-11-08 6789.12
2017-11-09 6750.05
2017-11-10 6750.94
2017-11-13 6757.60
2017-11-14 6737.87
2017-11-15 6706.21
2017-11-16 6793.29
2017-11-17 6782.79
2017-11-20 6790.71
2017-11-21 6862.48
2017-11-22 6867.36
2017-11-23 .
2017-11-24 6889.16
2017-11-27 6878.52
2017-11-28 6912.36
2017-11-29 6824.39
2017-11-30 6873.97
2017-12-01 6847.59
2017-12-04 6775.37
2017-12-05 6762.21
2017-12-06 6776.38
2017-12-07 6812.84
2017-12-08 6840.08
2017-12-11 6875.08
2017-12-12 6862.32
2017-12-13 6875.80
2017-12-14 6856.53
2017-12-15 6936.58
2017-12-18 6994.76
2017-12-19 6963.85
2017-12-20 6960.96
2017-12-21 6965.36
2017-12-22 6959.96
2017-12-25 .
2017-12-26 6936.25
2017-12-27 6939.34
2017-12-28 6950.16
2017-12-29 6903.39
2018-01-01 .
2018-01-02 7006.90
2018-01-03 7065.53
2018-01-04 7077.91
2018-01-05 7136.56
2018-01-08 7157.39
2018-01-09 7163.58
2018-01-10 7153.57
2018-01-11 7211.78
2018-01-12 7261.06
2018-01-15 .
2018-01-16 7223.69
2018-01-17 7298.28
2018-01-18 7296.05
2018-01-19 7336.38
2018-01-22 7408.03
2018-01-23 7460.29
2018-01-24 7415.06
2018-01-25 7411.16
2018-01-26 7505.77
2018-01-29 7466.51
2018-01-30 7402.48
2018-01-31 7411.48
2018-02-01 7385.86
2018-02-02 7240.95
2018-02-05 6967.53
2018-02-06 7115.88
2018-02-07 7051.98
2018-02-08 6777.16
2018-02-09 6874.49
2018-02-12 6981.96
2018-02-13 7013.51
2018-02-14 7143.62
2018-02-15 7256.43
2018-02-16 7239.47
2018-02-19 .
2018-02-20 7234.31
2018-02-21 7218.23
2018-02-22 7210.09
2018-02-23 7337.39
2018-02-26 7421.46
2018-02-27 7330.35
2018-02-28 7273.01
2018-03-01 7180.56
2018-03-02 7257.87
2018-03-05 7330.70
2018-03-06 7372.01
2018-03-07 7396.65
2018-03-08 7427.95
2018-03-09 7560.81
2018-03-12 7588.32
2018-03-13 7511.01
2018-03-14 7496.81
2018-03-15 7481.74
2018-03-16 7481.99
2018-03-19 7344.24
2018-03-20 7364.30
2018-03-21 7345.29
2018-03-22 7166.68
2018-03-23 6992.67
2018-03-26 7220.54
2018-03-27 7008.81
2018-03-28 6949.23
2018-03-29 7063.44
2018-03-30 .
2018-04-02 6870.12
2018-04-03 6941.28
2018-04-04 7042.11
2018-04-05 7076.55
2018-04-06 6915.11
2018-04-09 6950.34
2018-04-10 7094.30
2018-04-11 7069.03
2018-04-12 7140.25
2018-04-13 7106.65
2018-04-16 7156.28
2018-04-17 7281.10
2018-04-18 7295.24
2018-04-19 7238.06
2018-04-20 7146.13
2018-04-23 7128.60
2018-04-24 7007.35
2018-04-25 7003.74
We can't make this file beautiful and searchable because it's too large.
days,bT,sT,y1970,y1980,y1990,y2000,y2010,y2017
2,1.01,0.99,4.81969,8.65398,11.51062,0.21492,1.66134,171.42213
2,1.01,0.985,3.85862,8.25060,9.35710,0.25119,2.15088,160.94464
2,1.01,0.98,3.18221,5.82213,7.94357,0.24865,2.09900,76.81049
2,1.01,0.975,2.61363,4.71833,7.45434,0.38046,2.41997,84.63650
2,1.01,0.97,2.03553,4.76221,7.24585,0.34088,2.40804,57.65547
2,1.01,0.965,1.82428,4.88692,8.28219,0.33690,2.16124,53.76174
2,1.01,0.96,1.75740,4.75332,7.97788,0.40279,2.17856,58.47907
2,1.01,0.955,1.49798,4.30042,7.47471,0.41303,2.13557,42.47285
2,1.01,0.95,1.39850,3.81338,8.24799,0.43831,2.36965,45.68665
2,1.01,0.945,1.46696,3.36619,8.96543,0.42712,2.51757,47.60531
2,1.01,0.94,1.46696,3.36619,9.10946,0.35831,2.62982,42.38664
2,1.01,0.9349999999999999,1.46696,3.55364,8.85704,0.38621,2.63109,46.91840
2,1.01,0.9299999999999999,1.46696,3.23392,9.57946,0.37731,2.74818,47.12302
2,1.01,0.925,1.46696,3.23392,8.10799,0.38985,2.85219,42.77023
2,1.01,0.9199999999999999,1.48170,3.23392,8.10799,0.33028,3.03400,38.93124
2,1.01,0.915,1.48170,3.23392,8.46536,0.32687,3.03400,40.22833
2,1.01,0.91,1.48170,3.23392,8.46536,0.33107,3.03400,40.74406
2,1.01,0.905,1.48170,3.23392,8.46536,0.37741,3.03400,46.44800
2,1.015,0.99,3.12452,7.03106,9.20753,0.22464,1.56035,70.90238
2,1.015,0.985,2.50652,7.36589,8.65008,0.23623,2.17354,82.00245
2,1.015,0.98,2.65894,5.28733,7.83072,0.21856,2.00260,48.18524
2,1.015,0.975,2.22547,4.10273,7.71417,0.31505,2.31280,51.32143
2,1.015,0.97,1.84933,4.79937,7.05699,0.32058,2.49744,50.14829
2,1.015,0.965,1.99950,4.78427,8.16111,0.31358,2.16961,53.11423
2,1.015,0.96,1.79739,4.60641,7.64785,0.37625,2.18700,52.10418
2,1.015,0.955,1.56478,4.20561,7.36679,0.38196,2.17285,40.23545
2,1.015,0.95,1.43585,3.76307,8.24799,0.40534,2.34030,42.27533
2,1.015,0.945,1.50613,3.36619,8.96543,0.39173,2.54282,45.27727
2,1.015,0.94,1.50613,3.36619,9.10946,0.32862,2.62982,39.91353
2,1.015,0.9349999999999999,1.50613,3.55364,8.85704,0.35422,2.63109,44.18088
2,1.015,0.9299999999999999,1.50613,3.23392,9.57946,0.37349,2.74818,47.89163
2,1.015,0.925,1.50613,3.23392,8.10799,0.43456,2.85219,48.94806
2,1.015,0.9199999999999999,1.48170,3.23392,8.10799,0.38065,3.03400,44.86890
2,1.015,0.915,1.48170,3.23392,8.46536,0.37673,3.03400,46.36382
2,1.015,0.91,1.48170,3.23392,8.46536,0.38156,3.03400,46.95820
2,1.015,0.905,1.48170,3.23392,8.46536,0.43497,3.03400,53.53209
2,1.02,0.99,2.18908,3.71256,4.60301,0.27077,1.56555,15.85774
2,1.02,0.985,2.05275,4.20836,4.19994,0.28836,2.17885,22.79615
2,1.02,0.98,2.27540,2.87947,4.43232,0.26840,1.82593,14.23208
2,1.02,0.975,2.06516,3.68430,4.37613,0.36616,2.18970,26.69628
2,1.02,0.97,1.79425,4.37114,4.74907,0.35514,2.13945,28.30025
2,1.02,0.965,2.08791,4.65123,6.84753,0.33050,2.04120,44.86173
2,1.02,0.96,1.77858,4.58615,6.75888,0.41786,2.18561,50.35005
2,1.02,0.955,1.54841,4.11327,6.81651,0.41758,2.17285,39.39153
2,1.02,0.95,1.38628,3.68046,7.68500,0.44561,2.34030,40.89012
2,1.02,0.945,1.45414,3.36619,8.48305,0.38906,2.54282,41.08010
2,1.02,0.94,1.45414,3.36619,8.99366,0.32638,2.62982,37.78627
2,1.02,0.9349999999999999,1.45414,3.55364,8.74445,0.34411,2.63109,40.91172
2,1.02,0.9299999999999999,1.45414,3.23392,9.57946,0.37293,2.74818,46.16948
2,1.02,0.925,1.45414,3.23392,8.10799,0.43391,2.85219,47.18792
2,1.02,0.9199999999999999,1.48170,3.23392,8.10799,0.38008,3.03400,44.80197
2,1.02,0.915,1.48170,3.23392,8.46536,0.37673,3.03400,46.36382
2,1.02,0.91,1.48170,3.23392,8.46536,0.38156,3.03400,46.95820
2,1.02,0.905,1.48170,3.23392,8.46536,0.43497,3.03400,53.53209
2,1.025,0.99,1.66047,2.56149,3.02972,0.33756,1.25594,5.46321
2,1.025,0.985,1.55732,3.19144,2.89686,0.33226,1.46124,6.99024
2,1.025,0.98,1.53267,2.90873,3.51416,0.31325,1.32437,6.49933
2,1.025,0.975,1.72403,2.99838,3.63298,0.48417,1.80984,16.45641
2,1.025,0.97,1.57534,4.02966,4.41665,0.49582,1.90029,26.41646
2,1.025,0.965,2.00418,4.11507,6.45176,0.46965,1.88053,46.99414
2,1.025,0.96,1.74268,4.67972,6.50127,0.54640,1.95553,56.65153
2,1.025,0.955,1.51715,4.95061,6.27827,0.44948,2.12274,44.99188
2,1.025,0.95,1.35806,4.39466,7.41862,0.46151,2.28633,46.71865
2,1.025,0.945,1.39310,4.01941,8.18901,0.37495,2.51393,43.22230
2,1.025,0.94,1.39310,4.01941,8.68192,0.31881,2.62982,40.75838
2,1.025,0.9349999999999999,1.39310,4.01941,8.44135,0.34161,2.63109,42.48433
2,1.025,0.9299999999999999,1.39310,3.65779,9.24742,0.37023,2.74818,47.94418
2,1.025,0.925,1.39310,3.65779,8.10799,0.43076,2.85219,50.76125
2,1.025,0.9199999999999999,1.48170,3.23392,8.10799,0.37733,3.03400,44.47690
2,1.025,0.915,1.48170,3.23392,8.46536,0.37673,3.03400,46.36382
2,1.025,0.91,1.48170,3.23392,8.46536,0.38156,3.03400,46.95820
2,1.025,0.905,1.48170,3.23392,8.46536,0.43497,3.03400,53.53209
2,1.03,0.99,1.19449,1.54711,2.50940,0.37241,1.27639,2.20432
2,1.03,0.985,1.14483,1.67344,2.51299,0.32287,1.46046,2.27015
2,1.03,0.98,1.15418,2.53111,3.40734,0.28835,1.30544,3.74693
2,1.03,0.975,1.22049,2.92625,3.07167,0.44259,1.40606,6.82698
2,1.03,0.97,1.07692,3.82547,3.93996,0.41950,2.19507,14.94652
2,1.03,0.965,1.35927,4.06831,5.65408,0.38822,2.28700,27.76050
2,1.03,0.96,1.80703,5.40291,5.78514,0.53239,2.11081,63.47229
2,1.03,0.955,1.48869,5.95780,6.50213,0.58019,2.32717,77.86608
2,1.03,0.95,1.38499,5.28874,8.50520,0.52087,2.49286,80.89319
2,1.03,0.945,1.39310,4.11339,8.87009,0.44771,2.51393,57.20828
2,1.03,0.94,1.39310,4.11339,9.40399,0.38067,2.62982,53.94707
2,1.03,0.9349999999999999,1.39310,4.11339,9.14341,0.36357,2.63109,50.12033
2,1.03,0.9299999999999999,1.39310,4.11339,9.24742,0.38048,2.74818,55.40942
2,1.03,0.925,1.39310,4.11339,8.10799,0.44270,2.85219,58.66513
2,1.03,0.9199999999999999,1.48170,3.63673,8.10799,0.38778,3.03400,51.40226
2,1.03,0.915,1.48170,3.63673,8.46536,0.38716,3.03400,53.58299
2,1.03,0.91,1.48170,3.63673,8.46536,0.39213,3.03400,54.26992
2,1.03,0.905,1.48170,3.63673,8.46536,0.44476,3.03400,61.55483
2,1.035,0.99,1.21529,1.27971,2.32060,0.29899,1.19374,1.28812
2,1.035,0.985,1.20298,1.40427,2.51935,0.27115,1.35041,1.55837
2,1.035,0.98,1.30061,2.06609,3.55303,0.25400,1.22579,2.97273
2,1.035,0.975,1.48809,2.25993,3.81515,0.35195,1.27146,5.74148
2,1.035,0.97,1.36177,3.06122,3.31999,0.40840,2.07970,11.75506
2,1.035,0.965,1.25706,3.11873,3.78079,0.34603,2.37143,12.16282
2,1.035,0.96,2.02571,4.14183,4.51436,0.44556,2.18036,36.79583
2,1.035,0.955,1.83515,5.02570,4.92069,0.51577,2.34879,54.97813
2,1.035,0.95,1.32867,4.46132,7.61569,0.46303,2.46691,51.56503
2,1.035,0.945,1.39310,4.11339,8.87009,0.41053,2.50612,52.29473
2,1.035,0.94,1.39310,4.11339,9.40399,0.36632,2.62982,51.91300
2,1.035,0.9349999999999999,1.39310,4.11339,9.14341,0.34986,2.63109,48.23055
2,1.035,0.9299999999999999,1.39310,4.11339,9.24742,0.36614,2.74818,53.32021
2,1.035,0.925,1.39310,4.11339,8.10799,0.44270,2.85219,58.66513
2,1.035,0.9199999999999999,1.48170,3.63673,8.10799,0.38778,3.03400,51.40226
2,1.035,0.915,1.48170,3.63673,8.46536,0.38716,3.03400,53.58299
2,1.035,0.91,1.48170,3.63673,8.46536,0.39213,3.03400,54.26992
2,1.035,0.905,1.48170,3.63673,8.46536,0.44476,3.03400,61.55483
2,1.04,0.99,1.06610,1.01267,1.81229,0.32884,1.15049,0.74022
2,1.04,0.985,1.05530,1.00953,2.06503,0.29518,1.29439,0.84057
2,1.04,0.98,1.14761,1.48531,2.86132,0.28787,1.22195,1.71567
2,1.04,0.975,1.17037,1.53095,3.62535,0.33993,1.29437,2.85814
2,1.04,0.97,1.14845,2.14337,3.21764,0.33157,2.12231,5.57354
2,1.04,0.965,1.05804,2.07517,3.62451,0.28222,2.47423,5.55697
2,1.04,0.96,1.05804,2.73123,3.98800,0.45988,2.30285,12.20459
2,1.04,0.955,1.01415,3.37012,5.11030,0.54289,2.49373,23.64558
2,1.04,0.95,0.60745,2.99165,7.61569,0.48738,2.47781,16.71337
2,1.04,0.945,1.39310,3.90664,8.87009,0.42182,2.49461,50.79819
2,1.04,0.94,1.39310,3.90664,9.40399,0.35610,2.56689,46.78204
2,1.04,0.9349999999999999,1.39310,3.90664,9.14341,0.34011,2.56813,43.46355
2,1.04,0.9299999999999999,1.39310,3.90664,9.24742,0.36467,2.68242,49.23085
2,1.04,0.925,1.39310,3.90664,8.10799,0.43019,2.85219,54.14278
2,1.04,0.9199999999999999,1.48170,3.45394,8.10799,0.37682,3.03400,47.43979
2,1.04,0.915,1.48170,3.45394,8.46536,0.38716,3.03400,50.88975
2,1.04,0.91,1.48170,3.45394,8.46536,0.39213,3.03400,51.54215
2,1.04,0.905,1.48170,3.45394,8.46536,0.44476,3.03400,58.46090
2,1.045,0.99,1.06610,1.02942,1.66077,0.32492,1.01183,0.59923
2,1.045,0.985,1.05530,1.02623,1.99102,0.28860,1.07889,0.67138
2,1.045,0.98,1.14761,1.50989,2.61222,0.27630,1.03178,1.29039
2,1.045,0.975,1.17037,1.56679,3.05878,0.29987,1.00510,1.69055
2,1.045,0.97,1.14845,2.19355,2.80207,0.30777,0.99179,2.15467
2,1.045,0.965,1.05804,2.12374,3.12387,0.30612,1.20011,2.57874
2,1.045,0.96,1.05804,2.03856,2.66476,0.47672,1.14727,3.14347
2,1.045,0.955,1.01415,3.37012,4.34689,0.59442,1.24294,10.97653
2,1.045,0.95,0.60745,2.99165,7.23788,0.55151,1.46358,10.61692
2,1.045,0.945,1.39310,3.90664,8.43006,0.50771,1.47350,34.32250
2,1.045,0.94,1.39310,3.90664,8.93747,0.44130,1.73625,37.26922
2,1.045,0.9349999999999999,1.39310,3.90664,8.93747,0.46688,2.54562,57.80896
2,1.045,0.9299999999999999,1.39310,3.90664,9.03914,0.45629,2.68242,60.21216
2,1.045,0.925,1.39310,3.90664,8.66772,0.51715,2.85219,69.57979
2,1.045,0.9199999999999999,1.48170,3.45394,8.66772,0.50929,3.03400,68.54294
2,1.045,0.915,1.48170,3.45394,8.46536,0.52327,3.03400,68.77943
2,1.045,0.91,1.48170,3.45394,8.46536,0.52998,3.03400,69.66117
2,1.045,0.905,1.48170,3.45394,8.46536,0.44476,3.03400,58.46090
2,1.05,0.99,1.06610,1.02942,1.54462,0.42723,0.99882,0.72338
2,1.05,0.985,1.05530,1.02623,1.56223,0.42001,1.03034,0.73216
2,1.05,0.98,1.14761,1.50989,1.97230,0.40711,0.97658,1.35872
2,1.05,0.975,1.17037,1.56679,2.50696,0.42518,0.97971,1.91492
2,1.05,0.97,1.14845,2.19355,2.36883,0.41640,0.99062,2.46154
2,1.05,0.965,1.05804,2.12374,3.13123,0.40315,1.27638,3.62049
2,1.05,0.96,1.05804,2.03856,2.85514,0.59109,1.22019,4.44155
2,1.05,0.955,1.01415,3.37012,4.44327,0.75962,1.32194,15.24939
2,1.05,0.95,0.60745,2.99165,7.23788,0.58918,1.57816,12.23003
2,1.05,0.945,1.39310,3.90664,8.43006,0.53102,1.61002,39.22470
2,1.05,0.94,1.39310,3.90664,8.93747,0.52191,1.73625,44.07632
2,1.05,0.9349999999999999,1.39310,3.90664,8.93747,0.55215,2.54562,68.36759
2,1.05,0.9299999999999999,1.39310,3.90664,9.03914,0.54049,2.68242,71.32319
2,1.05,0.925,1.39310,3.90664,8.66772,0.61258,2.85219,82.41945
2,1.05,0.9199999999999999,1.48170,3.45394,8.66772,0.60327,3.03400,81.19126
2,1.05,0.915,1.48170,3.45394,8.46536,0.52327,3.03400,68.77943
2,1.05,0.91,1.48170,3.45394,8.46536,0.52998,3.03400,69.66117
2,1.05,0.905,1.48170,3.45394,8.46536,0.44476,3.03400,58.46090
2,1.055,0.99,1.00700,1.02942,1.31907,0.49512,0.95726,0.64809
2,1.055,0.985,0.99680,1.02623,1.30423,0.48948,0.93256,0.60901
2,1.055,0.98,1.08400,1.50989,1.34919,0.47520,0.93256,0.97858
2,1.055,0.975,1.06500,1.56679,1.58986,0.53324,0.93256,1.31922
2,1.055,0.97,1.09370,2.19355,1.60253,0.52632,0.93256,1.88700
2,1.055,0.965,1.00760,2.12374,1.95114,0.39524,0.93256,1.53891
2,1.055,0.96,1.00760,2.03856,1.77910,0.51487,0.90933,1.71093
2,1.055,0.955,0.96580,3.37012,3.06604,0.47130,0.83730,3.93812
2,1.055,0.95,0.58950,2.99165,4.45268,0.83541,0.83730,5.49289
2,1.055,0.945,1.39310,3.90664,7.17335,0.58923,0.85421,19.64978
2,1.055,0.94,1.39310,3.90664,8.93747,0.64595,1.79091,56.26904
2,1.055,0.9349999999999999,1.39310,3.90664,8.93747,0.68338,2.62575,87.27994
2,1.055,0.9299999999999999,1.39310,3.90664,9.03914,0.62297,2.62575,80.46931
2,1.055,0.925,1.39310,3.90664,8.66772,0.70605,2.79193,92.98849
2,1.055,0.9199999999999999,1.48170,3.45394,8.66772,0.73659,3.03400,99.13408
2,1.055,0.915,1.48170,3.45394,8.46536,0.63891,3.03400,83.97930
2,1.055,0.91,1.48170,3.45394,8.46536,0.63387,3.03400,83.31711
2,1.055,0.905,1.48170,3.45394,8.46536,0.49858,3.03400,65.53400
2,1.06,0.99,1.00700,0.99019,1.27065,0.52341,0.96331,0.63882
2,1.06,0.985,0.99680,0.99019,1.27065,0.51745,0.96331,0.62515
2,1.06,0.98,1.08400,0.99019,1.28907,0.52304,0.96331,0.69714
2,1.06,0.975,1.06500,0.97491,1.52816,0.63933,0.96331,0.97717
2,1.06,0.97,1.09370,0.97491,1.54271,0.60189,0.96331,0.95375
2,1.06,0.965,1.00760,0.94389,1.56563,0.52867,0.96331,0.75831
2,1.06,0.96,1.00760,0.90603,1.46159,0.52399,0.94416,0.66012
2,1.06,0.955,0.96580,1.42075,1.27293,0.42588,0.89009,0.66212
2,1.06,0.95,0.58950,1.42075,1.27933,0.87423,0.89009,0.83377
2,1.06,0.945,1.39310,1.42075,1.27933,0.83674,0.93696,1.98515
2,1.06,0.94,1.39310,1.42075,2.21980,0.86096,0.97502,3.68818
2,1.06,0.9349999999999999,1.39310,1.42075,2.21980,0.96395,1.48632,6.29478
2,1.06,0.9299999999999999,1.39310,1.42075,9.03914,0.80524,1.48632,21.41246
2,1.06,0.925,1.39310,1.42075,8.66772,0.68372,1.48632,17.43388
2,1.06,0.9199999999999999,1.48170,3.45394,8.66772,0.71329,3.03400,95.99847
2,1.06,0.915,1.48170,3.45394,8.46536,0.65132,3.03400,85.61057
2,1.06,0.91,1.48170,3.45394,8.46536,0.64618,3.03400,84.93553
2,1.06,0.905,1.48170,3.45394,8.46536,0.50826,3.03400,66.80698
2,1.065,0.99,1.00700,0.99019,1.26096,0.53850,0.96331,0.65223
2,1.065,0.985,0.99680,0.99019,1.26096,0.53237,0.96331,0.63828
2,1.065,0.98,1.08400,0.99019,1.26405,0.53695,0.96331,0.70180
2,1.065,0.975,1.06500,0.97491,1.49851,0.65634,0.96331,0.98371
2,1.065,0.97,1.09370,0.97491,1.51278,0.59671,0.96331,0.92718
2,1.065,0.965,1.00760,0.94389,1.53525,0.52411,0.96331,0.73719
2,1.065,0.96,1.00760,0.90603,1.53525,0.52928,0.94416,0.70039
2,1.065,0.955,0.96580,1.42075,1.33708,0.43018,0.89009,0.70251
2,1.065,0.95,0.58950,1.42075,1.32130,0.88305,0.89009,0.86982
2,1.065,0.945,1.39310,1.42075,1.32130,0.84519,0.93696,2.07098
2,1.065,0.94,1.39310,1.42075,1.32130,1.00607,0.97502,2.56535
2,1.065,0.9349999999999999,1.39310,1.42075,1.32130,0.97875,1.48632,3.80441
2,1.065,0.9299999999999999,1.39310,1.42075,8.92993,0.80148,1.48632,21.05496
2,1.065,0.925,1.39310,1.42075,8.92993,0.68052,1.48632,17.87738
2,1.065,0.9199999999999999,1.48170,3.45394,8.92993,0.70996,3.03400,98.44056
2,1.065,0.915,1.48170,3.45394,8.72144,0.64827,3.03400,87.78841
2,1.065,0.91,1.48170,3.45394,8.72144,0.64316,3.03400,87.09619
2,1.065,0.905,1.48170,3.45394,8.72144,0.50589,3.03400,68.50648
2,1.07,0.99,1.00700,0.99019,1.26096,0.61108,1.00000,0.76834
2,1.07,0.985,0.99680,0.99019,1.26096,0.60412,1.00000,0.75189
2,1.07,0.98,1.08400,0.99019,1.26405,0.62723,1.00000,0.85103
2,1.07,0.975,1.06500,0.97491,1.49851,0.73208,1.00000,1.13902
2,1.07,0.97,1.09370,0.97491,1.51278,0.66557,1.00000,1.07357
2,1.07,0.965,1.00760,0.94389,1.53525,0.58550,1.00000,0.85490
2,1.07,0.96,1.00760,0.90603,1.53525,0.61454,1.00000,0.86131
2,1.07,0.955,0.96580,1.42075,1.33708,0.49307,1.00000,0.90464
2,1.07,0.95,0.58950,1.42075,1.32130,1.05970,1.00000,1.17270
2,1.07,0.945,1.39310,1.42075,1.32130,1.06642,0.98147,2.73720
2,1.07,0.94,1.39310,1.42075,1.32130,1.37659,1.02134,3.67689
2,1.07,0.9349999999999999,1.39310,1.42075,1.32130,1.25446,1.02134,3.35068
2,1.07,0.9299999999999999,1.39310,1.42075,8.92993,0.94555,1.02134,17.06895
2,1.07,0.925,1.39310,1.42075,8.92993,0.67569,1.02134,12.19745
2,1.07,0.9199999999999999,1.48170,3.45394,8.92993,0.70492,3.03400,97.74165
2,1.07,0.915,1.48170,3.45394,8.72144,0.65039,3.03400,88.07492
2,1.07,0.91,1.48170,3.45394,8.72144,0.73118,3.03400,99.01570
2,1.07,0.905,1.48170,3.45394,8.72144,0.48758,3.03400,66.02704
2,1.075,0.99,1.00700,0.99019,1.26096,0.67614,1.00000,0.85013
2,1.075,0.985,0.99680,0.99019,1.26096,0.67821,1.00000,0.84410
2,1.075,0.98,1.08400,0.99019,1.26405,0.73355,1.00000,0.99528
2,1.075,0.975,1.06500,0.97491,1.49851,0.79011,1.00000,1.22931
2,1.075,0.97,1.09370,0.97491,1.51278,0.71833,1.00000,1.15868
2,1.075,0.965,1.00760,0.94389,1.53525,0.69387,1.00000,1.01313
2,1.075,0.96,1.00760,0.90603,1.53525,0.66313,1.00000,0.92942
2,1.075,0.955,0.96580,1.42075,1.33708,0.64805,1.00000,1.18898
2,1.075,0.95,0.58950,1.42075,1.32130,1.39277,1.00000,1.54129
2,1.075,0.945,1.39310,1.42075,1.32130,1.53085,0.98147,3.92928
2,1.075,0.94,1.39310,1.42075,1.32130,1.22076,1.02134,3.26067
2,1.075,0.9349999999999999,1.39310,1.42075,1.32130,1.11246,1.02134,2.97139
2,1.075,0.9299999999999999,1.39310,1.42075,8.92993,0.83852,1.02134,15.13678
2,1.075,0.925,1.39310,1.42075,8.92993,0.59920,1.02134,10.81673
2,1.075,0.9199999999999999,1.48170,3.45394,8.92993,0.62513,3.03400,86.67752
2,1.075,0.915,1.48170,3.45394,8.72144,0.65039,3.03400,88.07492
2,1.075,0.91,1.48170,3.45394,8.72144,0.73118,3.03400,99.01570
2,1.075,0.905,1.48170,3.45394,8.72144,0.48758,3.03400,66.02704
2,1.08,0.99,1.00700,0.99019,1.26096,0.63580,1.00000,0.79941
2,1.08,0.985,0.99680,0.99019,1.26096,0.63775,1.00000,0.79375
2,1.08,0.98,1.08400,0.99019,1.26405,0.68979,1.00000,0.93591
2,1.08,0.975,1.06500,0.97491,1.49851,0.74297,1.00000,1.15598
2,1.08,0.97,1.09370,0.97491,1.51278,0.72813,1.00000,1.17449
2,1.08,0.965,1.00760,0.94389,1.53525,0.70334,1.00000,1.02696
2,1.08,0.96,1.00760,0.90603,1.53525,0.67218,1.00000,0.94210
2,1.08,0.955,0.96580,1.42075,1.33708,0.65689,1.00000,1.20520
2,1.08,0.95,0.58950,1.42075,1.32130,1.44807,1.00000,1.60249
2,1.08,0.945,1.39310,1.42075,1.32130,1.59163,0.98147,4.08529
2,1.08,0.94,1.39310,1.42075,1.32130,1.26923,1.02134,3.39013
2,1.08,0.9349999999999999,1.39310,1.42075,1.32130,1.19241,1.02134,3.18495
2,1.08,0.9299999999999999,1.39310,1.42075,8.92993,0.89878,1.02134,16.22467
2,1.08,0.925,1.39310,1.42075,8.92993,0.58225,1.02134,10.51066
2,1.08,0.9199999999999999,1.48170,3.45394,8.92993,0.66958,3.03400,92.84095
2,1.08,0.915,1.48170,3.45394,8.72144,0.69664,3.03400,94.33771
2,1.08,0.91,1.48170,3.45394,8.72144,0.78318,3.03400,106.05646
2,1.08,0.905,1.48170,3.45394,8.72144,0.52225,3.03400,70.72206
2,1.085,0.99,1.00700,0.99019,1.26096,0.64989,1.00000,0.81713
2,1.085,0.985,0.99680,0.99019,1.26096,0.65189,1.00000,0.81134
2,1.085,0.98,1.08400,0.99019,1.26405,0.67932,1.00000,0.92170
2,1.085,0.975,1.06500,0.97491,1.49851,0.71000,1.00000,1.10467
2,1.085,0.97,1.09370,0.97491,1.51278,0.69313,1.00000,1.11803
2,1.085,0.965,1.00760,0.94389,1.53525,0.69313,1.00000,1.01205
2,1.085,0.96,1.00760,0.90603,1.53525,0.66242,1.00000,0.92843
2,1.085,0.955,0.96580,1.42075,1.33708,0.64585,1.00000,1.18494
2,1.085,0.95,0.58950,1.42075,1.32130,1.34823,1.00000,1.49200
2,1.085,0.945,1.39310,1.42075,1.32130,1.84988,0.98147,4.74814
2,1.085,0.94,1.39310,1.42075,1.32130,1.81151,1.02134,4.83858
2,1.085,0.9349999999999999,1.39310,1.42075,1.32130,1.70187,1.02134,4.54572
2,1.085,0.9299999999999999,1.39310,1.42075,8.92993,1.28279,1.02134,23.15670
2,1.085,0.925,1.39310,1.42075,8.92993,0.93218,1.02134,16.82747
2,1.085,0.9199999999999999,1.48170,3.45394,8.92993,0.94118,3.03400,130.49979
2,1.085,0.915,1.48170,3.45394,8.72144,0.69664,3.03400,94.33771
2,1.085,0.91,1.48170,3.45394,8.72144,0.78318,3.03400,106.05646
2,1.085,0.905,1.48170,3.45394,8.72144,0.52225,3.03400,70.72206
2,1.09,0.99,1.00700,0.99019,1.00000,0.62401,1.00000,0.62222
2,1.09,0.985,0.99680,0.99019,1.00000,0.62593,1.00000,0.61781
2,1.09,0.98,1.08400,0.99019,1.00000,0.60326,1.00000,0.64752
2,1.09,0.975,1.06500,0.97491,1.00000,0.60326,1.00000,0.62635
2,1.09,0.97,1.09370,0.97491,1.00000,0.57709,1.00000,0.61533
2,1.09,0.965,1.00760,0.94389,1.00000,0.57709,1.00000,0.54885
2,1.09,0.96,1.00760,0.90603,1.00000,0.55153,1.00000,0.50350
2,1.09,0.955,0.96580,1.42075,0.87092,0.55153,1.00000,0.65911
2,1.09,0.95,0.58950,1.42075,0.87092,0.60411,1.00000,0.44066
2,1.09,0.945,1.39310,1.42075,0.87092,0.57547,1.00000,0.99198
2,1.09,0.94,1.39310,1.42075,0.87092,0.56353,1.00000,0.97140
2,1.09,0.9349999999999999,1.39310,1.42075,0.87092,0.52943,1.00000,0.91261
2,1.09,0.9299999999999999,1.39310,1.42075,3.34202,0.42980,1.00000,2.84299
2,1.09,0.925,1.39310,1.42075,3.34202,0.31233,1.00000,2.06594
2,1.09,0.9199999999999999,1.48170,3.45394,3.34202,0.33883,1.00000,5.79513
2,1.09,0.915,1.48170,3.45394,3.26399,0.41100,1.00000,6.86542
2,1.09,0.91,1.48170,3.45394,3.26399,0.67862,3.03400,34.39284
2,1.09,0.905,1.48170,3.45394,3.26399,0.49806,3.03400,25.24173
2,1.095,0.99,1.00700,0.99019,1.00000,0.65510,1.00000,0.65322
2,1.095,0.985,0.99680,0.99019,1.00000,0.65711,1.00000,0.64859
2,1.095,0.98,1.08400,0.99019,1.00000,0.63331,1.00000,0.67978
2,1.095,0.975,1.06500,0.97491,1.00000,0.63331,1.00000,0.65756
2,1.095,0.97,1.09370,0.97491,1.00000,0.60584,1.00000,0.64599
2,1.095,0.965,1.00760,0.94389,1.00000,0.60584,1.00000,0.57620
2,1.095,0.96,1.00760,0.90603,1.00000,0.57901,1.00000,0.52859
2,1.095,0.955,0.96580,1.42075,0.87092,0.57901,1.00000,0.69194
2,1.095,0.95,0.58950,1.42075,0.87092,0.57901,1.00000,0.42234
2,1.095,0.945,1.39310,1.42075,0.87092,0.55155,1.00000,0.95075
2,1.095,0.94,1.39310,1.42075,0.87092,0.54011,1.00000,0.93103
2,1.095,0.9349999999999999,1.39310,1.42075,0.87092,0.50742,1.00000,0.87468
2,1.095,0.9299999999999999,1.39310,1.42075,3.34202,0.41194,1.00000,2.72484
2,1.095,0.925,1.39310,1.42075,3.34202,0.31233,1.00000,2.06594
2,1.095,0.9199999999999999,1.48170,3.45394,3.34202,0.33883,1.00000,5.79513
2,1.095,0.915,1.48170,3.45394,3.26399,0.41100,1.00000,6.86542
2,1.095,0.91,1.48170,3.45394,3.26399,0.67862,3.03400,34.39284
2,1.095,0.905,1.48170,3.45394,3.26399,0.49806,3.03400,25.24173
2,1.1,0.99,1.00700,0.99019,1.00000,0.71270,1.00000,0.71065
2,1.1,0.985,0.99680,0.99019,1.00000,0.71489,1.00000,0.70561
2,1.1,0.98,1.08400,0.99019,1.00000,0.72958,1.00000,0.78311
2,1.1,0.975,1.06500,0.97491,1.00000,0.72958,1.00000,0.75751
2,1.1,0.97,1.09370,0.97491,1.00000,0.69793,1.00000,0.74418
2,1.1,0.965,1.00760,0.94389,1.00000,0.69793,1.00000,0.66378
2,1.1,0.96,1.00760,0.90603,1.00000,0.66702,1.00000,0.60893
2,1.1,0.955,0.96580,1.42075,0.87092,0.66702,1.00000,0.79712
2,1.1,0.95,0.58950,1.42075,0.87092,0.66702,1.00000,0.48654
2,1.1,0.945,1.39310,1.42075,0.87092,0.63539,1.00000,1.09527
2,1.1,0.94,1.39310,1.42075,0.87092,0.62221,1.00000,1.07255
2,1.1,0.9349999999999999,1.39310,1.42075,0.87092,0.60475,1.00000,1.04245
2,1.1,0.9299999999999999,1.39310,1.42075,3.34202,0.62511,1.00000,4.13489
2,1.1,0.925,1.39310,1.42075,3.34202,0.46634,1.00000,3.08471
2,1.1,0.9199999999999999,1.48170,3.45394,3.34202,0.50591,1.00000,8.65287
2,1.1,0.915,1.48170,3.45394,3.26399,0.41100,1.00000,6.86542
2,1.1,0.91,1.48170,3.45394,3.26399,0.67862,3.03400,34.39284
2,1.1,0.905,1.48170,3.45394,3.26399,0.49806,3.03400,25.24173
3,1.01,0.99,4.88354,9.59110,8.69260,0.57661,1.51984,356.80666
3,1.01,0.985,3.66862,7.43265,7.80213,0.56449,1.35253,162.42849
3,1.01,0.98,3.36188,7.42388,6.87509,0.59307,1.68753,171.73246
3,1.01,0.975,3.25408,6.12495,5.84016,0.63803,1.68304,124.99393
3,1.01,0.97,2.64120,4.71803,6.52237,0.70502,2.12841,121.96125
3,1.01,0.965,2.39884,4.72652,7.54195,0.72648,2.14350,133.16050
3,1.01,0.96,2.12157,4.53389,6.04206,0.67923,2.22400,87.79364
3,1.01,0.955,1.79857,4.87973,5.85514,0.59758,2.14431,65.84837
3,1.01,0.95,1.53752,4.53899,6.66109,0.43587,2.38646,48.35391
3,1.01,0.945,1.46651,4.47031,7.06511,0.48762,2.43010,54.88378
3,1.01,0.94,1.46651,4.39569,6.67801,0.47943,2.56116,52.85977
3,1.01,0.9349999999999999,1.49395,3.82351,7.76317,0.33141,2.89155,42.49478
3,1.01,0.9299999999999999,1.49395,3.38953,8.36132,0.33753,2.52333,36.06143
3,1.01,0.925,1.52359,3.38953,8.82960,0.38519,2.69888,47.40300
3,1.01,0.9199999999999999,1.52359,3.63673,8.82960,0.36580,2.69888,48.30041
3,1.01,0.915,1.52359,3.63673,9.11521,0.39202,2.69888,53.43583
3,1.01,0.91,1.48170,3.63673,8.33454,0.31885,2.69888,38.64828
3,1.01,0.905,1.48170,3.63673,8.38546,0.34979,2.69888,42.65663
3,1.015,0.99,4.05350,7.39901,7.43970,0.48350,1.64164,177.10547
3,1.015,0.985,3.13096,6.53677,6.83947,0.47781,1.33559,89.32944
3,1.015,0.98,2.75198,6.75128,6.04998,0.57106,1.89079,121.36985
3,1.015,0.975,2.90714,5.52617,5.45123,0.57013,1.76066,87.90960
3,1.015,0.97,2.43109,4.50256,5.94115,0.61792,2.22710,89.49576
3,1.015,0.965,2.18148,4.68035,6.84967,0.64399,2.17719,98.05505
3,1.015,0.96,2.08012,4.53262,5.61060,0.63663,2.27716,76.68838
3,1.015,0.955,1.79857,4.83594,5.43702,0.56456,2.19556,58.61675
3,1.015,0.95,1.53752,4.53899,6.34339,0.41178,2.38646,43.50277
3,1.015,0.945,1.46651,4.47031,6.99537,0.41855,2.43010,46.64513
3,1.015,0.94,1.46651,4.39569,6.61209,0.40804,2.56116,44.54386
3,1.015,0.9349999999999999,1.49395,3.82351,7.76317,0.28978,2.89155,37.15623
3,1.015,0.9299999999999999,1.49395,3.38953,8.36132,0.30014,2.52333,32.06574
3,1.015,0.925,1.52359,3.38953,8.82960,0.34251,2.69888,42.15064
3,1.015,0.9199999999999999,1.52359,3.63673,8.82960,0.32527,2.69888,42.94862
3,1.015,0.915,1.52359,3.63673,9.11521,0.34858,2.69888,47.51502
3,1.015,0.91,1.48170,3.63673,8.33454,0.28353,2.69888,34.36596
3,1.015,0.905,1.48170,3.63673,8.38546,0.31103,2.69888,37.93017
3,1.02,0.99,2.61717,6.03616,5.10536,0.58107,1.41962,66.53039
3,1.02,0.985,2.18688,5.62012,5.18992,0.61866,1.33432,52.65501
3,1.02,0.98,2.05245,5.92846,5.12547,0.75350,1.77082,83.21627
3,1.02,0.975,2.52850,5.01307,5.05148,0.73411,1.78136,83.73339
3,1.02,0.97,2.17868,4.24747,5.36627,0.72661,2.02127,72.93241
3,1.02,0.965,2.12426,4.15536,6.19074,0.72652,1.97340,78.34656
3,1.02,0.96,2.13854,3.99554,5.37506,0.65387,2.09899,63.03477
3,1.02,0.955,1.87010,4.56229,5.32900,0.58160,2.05851,54.43373
3,1.02,0.95,1.51021,4.28214,6.21737,0.41778,2.30672,38.74782
3,1.02,0.945,1.43524,4.32476,6.85639,0.41410,2.38521,42.03521
3,1.02,0.94,1.43524,4.25257,6.58463,0.41463,2.51385,41.88979
3,1.02,0.9349999999999999,1.48282,3.82351,7.73093,0.29212,2.89155,37.02375
3,1.02,0.9299999999999999,1.48282,3.38953,8.32660,0.30257,2.52333,31.95140
3,1.02,0.925,1.52359,3.38953,8.82960,0.34528,2.69888,42.49192
3,1.02,0.9199999999999999,1.52359,3.63673,8.82960,0.32790,2.69888,43.29635
3,1.02,0.915,1.52359,3.63673,9.11521,0.35140,2.69888,47.89973
3,1.02,0.91,1.48170,3.63673,8.33454,0.28582,2.69888,34.64421
3,1.02,0.905,1.48170,3.63673,8.38546,0.32286,2.69888,39.37273
3,1.025,0.99,1.97139,4.27776,3.41572,0.53063,1.32898,20.31343
3,1.025,0.985,1.73930,4.20034,3.69215,0.52776,1.44867,20.62257
3,1.025,0.98,1.64983,4.26618,3.86723,0.68440,1.71309,31.91300
3,1.025,0.975,2.13672,3.39921,4.20718,0.67949,1.51028,31.35859
3,1.025,0.97,2.03020,2.81356,4.76985,0.72660,1.76110,34.86414
3,1.025,0.965,2.11390,3.55481,5.70182,0.80133,1.78206,61.18547
3,1.025,0.96,1.98376,3.24750,5.10356,0.72870,1.82195,43.65146
3,1.025,0.955,1.82786,3.42497,5.24555,0.64642,1.85822,39.44575
3,1.025,0.95,1.48404,3.17098,6.28505,0.44391,2.18209,28.64950
3,1.025,0.945,1.44655,4.32476,6.40625,0.44842,2.25634,40.54997
3,1.025,0.94,1.44655,4.25257,6.33944,0.44236,2.46232,42.47736
3,1.025,0.9349999999999999,1.40928,3.82351,7.44305,0.30657,2.83227,34.82360
3,1.025,0.9299999999999999,1.40928,3.38953,8.01653,0.31891,2.47161,30.18371
3,1.025,0.925,1.44802,3.38953,8.50080,0.36394,2.69888,40.98114
3,1.025,0.9199999999999999,1.44802,3.63673,8.50080,0.34562,2.69888,41.75697
3,1.025,0.915,1.44802,3.63673,8.77578,0.37039,2.69888,46.19668
3,1.025,0.91,1.48170,3.63673,8.02418,0.29886,2.69888,34.87530
3,1.025,0.905,1.48170,3.63673,8.07321,0.33758,2.69888,39.63536
3,1.03,0.99,1.77688,3.45818,3.06223,0.48917,1.41184,12.99538
3,1.03,0.985,1.59106,3.44021,3.18729,0.45594,1.66025,13.20627
3,1.03,0.98,1.54956,3.68174,3.24376,0.61182,1.47724,16.72570
3,1.03,0.975,1.85573,3.21788,3.17503,0.54468,1.64351,16.97253
3,1.03,0.97,1.80273,2.89999,3.17708,0.57662,1.76883,16.94068
3,1.03,0.965,1.85435,3.49455,4.47693,0.70482,1.59780,32.67135
3,1.03,0.96,2.12990,3.20826,5.02390,0.63052,1.87684,40.62546
3,1.03,0.955,1.97726,3.27014,5.16366,0.67088,1.91420,42.87667
3,1.03,0.95,1.39623,3.06920,6.62504,0.48123,2.23884,30.58766
3,1.03,0.945,1.36096,4.03896,6.29468,0.50843,2.34693,41.28815
3,1.03,0.94,1.36096,3.97155,6.33944,0.52781,2.47781,44.81285
3,1.03,0.9349999999999999,1.35583,3.57084,7.44305,0.31470,2.80745,31.83757
3,1.03,0.9299999999999999,1.35583,3.16554,8.01653,0.31102,2.44994,26.21687
3,1.03,0.925,1.39310,3.16554,8.50080,0.28537,2.69888,28.87209
3,1.03,0.9199999999999999,1.39310,3.39640,8.50080,0.28309,2.69888,30.73054
3,1.03,0.915,1.39310,3.39640,8.77578,0.30338,2.69888,33.99789
3,1.03,0.91,1.48170,3.45394,8.02418,0.24479,2.69888,27.12986
3,1.03,0.905,1.48170,3.45394,8.07321,0.30811,2.69888,34.35632
3,1.035,0.99,1.58485,2.23527,2.58147,0.40644,1.20202,4.46779
3,1.035,0.985,1.44837,2.48704,2.85378,0.38602,1.27146,5.04538
3,1.035,0.98,1.38704,2.81508,2.88152,0.56088,1.18955,7.50688
3,1.035,0.975,1.82964,3.27239,2.49796,0.52489,1.42675,11.20044
3,1.035,0.97,1.83463,3.08411,2.68996,0.60404,1.48781,13.67843
3,1.035,0.965,1.85229,4.32170,3.56219,0.62173,1.55443,27.55857
3,1.035,0.96,2.12753,3.75475,4.00287,0.53907,1.69491,29.21594
3,1.035,0.955,1.98749,3.92530,4.91687,0.67881,2.00376,52.17510
3,1.035,0.95,1.65958,3.82673,6.54898,0.49946,2.40347,49.92731
3,1.035,0.945,1.34918,4.16301,7.32590,0.51412,2.30381,48.73580
3,1.035,0.94,1.34918,4.16301,8.18589,0.53371,2.47741,60.79191
3,1.035,0.9349999999999999,1.35583,4.33600,9.61094,0.31822,2.80745,50.47769
3,1.035,0.9299999999999999,1.35583,3.84385,9.19069,0.30521,2.44994,35.81583
3,1.035,0.925,1.39310,3.84385,9.16957,0.28004,2.69888,37.11080
3,1.035,0.9199999999999999,1.39310,3.84385,9.16957,0.27780,2.69888,36.81463
3,1.035,0.915,1.39310,3.84385,8.77578,0.29771,2.69888,37.75836
3,1.035,0.91,1.48170,3.45394,8.02418,0.24888,2.69888,27.58316
3,1.035,0.905,1.48170,3.45394,8.07321,0.31535,2.69888,35.16425
3,1.04,0.99,1.25371,1.87055,2.49907,0.39822,1.15060,2.68530
3,1.04,0.985,1.24102,2.14488,2.84936,0.38683,1.25241,3.67447
3,1.04,0.98,1.26171,2.26741,3.04040,0.53772,1.19130,5.57181
3,1.04,0.975,1.58424,2.64880,2.82072,0.51253,1.33792,8.11659
3,1.04,0.97,1.48954,2.69983,3.34322,0.63271,1.46561,12.46757
3,1.04,0.965,1.41926,4.63751,3.71253,0.63671,1.65650,25.77203
3,1.04,0.96,1.38024,4.28365,2.73505,0.60447,1.97931,19.34731
3,1.04,0.955,2.13923,4.59108,3.43113,0.72197,2.19144,53.31631
3,1.04,0.95,1.65385,4.36001,4.69913,0.56833,2.62858,50.62004
3,1.04,0.945,1.11849,4.10808,7.10974,0.63571,2.61751,54.35946
3,1.04,0.94,1.11849,4.10808,7.94435,0.61517,2.75963,61.96913
3,1.04,0.9349999999999999,1.12400,4.33600,9.71241,0.38164,2.80745,50.71656
3,1.04,0.9299999999999999,1.12400,3.84385,9.28771,0.36785,2.44994,36.16307
3,1.04,0.925,1.39310,3.84385,9.26637,0.30727,2.69888,41.14886
3,1.04,0.9199999999999999,1.39310,3.84385,9.26637,0.30481,2.69888,40.82047
3,1.04,0.915,1.39310,3.84385,8.86842,0.32666,2.69888,41.86689
3,1.04,0.91,1.48170,3.45394,8.10889,0.26674,2.69888,29.87509
3,1.04,0.905,1.48170,3.45394,8.15844,0.33799,2.69888,38.08610
3,1.045,0.99,1.14608,1.40434,2.51190,0.44904,1.08897,1.97693
3,1.045,0.985,1.13448,1.41135,2.95512,0.41943,1.21389,2.40902
3,1.045,0.98,1.17761,2.06803,2.98282,0.49274,1.18726,4.24964
3,1.045,0.975,1.47864,2.41589,2.88619,0.39512,1.14172,4.65108
3,1.045,0.97,1.39025,2.46244,3.36861,0.47393,1.48073,8.09278
3,1.045,0.965,1.32466,4.42927,3.80651,0.55324,1.71350,21.17197
3,1.045,0.96,1.28824,4.09131,2.95344,0.49689,1.91099,14.78103
3,1.045,0.955,1.99663,4.38493,3.78663,0.60371,2.22171,44.46640
3,1.045,0.95,1.97030,4.16424,3.87458,0.37980,2.62858,31.73687
3,1.045,0.945,1.02156,4.10808,5.28546,0.44240,2.61751,25.68551
3,1.045,0.94,1.02156,4.10808,7.56884,0.61431,2.75963,53.84794
3,1.045,0.9349999999999999,1.12400,4.33600,9.57205,0.39415,2.80745,51.62141
3,1.045,0.9299999999999999,1.12400,3.84385,9.28771,0.37990,2.44994,37.34798
3,1.045,0.925,1.39310,3.84385,9.26637,0.31733,2.69888,42.49713
3,1.045,0.9199999999999999,1.39310,3.84385,9.26637,0.31480,2.69888,42.15798
3,1.045,0.915,1.39310,3.84385,8.86842,0.33736,2.69888,43.23868
3,1.045,0.91,1.48170,3.45394,8.10889,0.27548,2.69888,30.85397
3,1.045,0.905,1.48170,3.45394,8.15844,0.34906,2.69888,39.33401
3,1.05,0.99,1.10708,1.21032,2.48506,0.44987,1.04135,1.55991
3,1.05,0.985,1.09587,1.21636,2.71197,0.42830,1.17530,1.81972
3,1.05,0.98,1.13753,1.73991,2.51289,0.50570,1.15916,2.91541
3,1.05,0.975,1.42832,2.05265,2.52611,0.40551,1.15233,3.46070
3,1.05,0.97,1.34294,2.09219,2.86829,0.45217,1.43540,5.23069
3,1.05,0.965,1.27958,3.76331,3.10686,0.52767,1.50519,11.88258
3,1.05,0.96,1.24440,3.47615,2.49785,0.55094,1.38138,8.22325
3,1.05,0.955,1.92868,3.72563,2.98563,0.66428,2.09232,29.81770
3,1.05,0.95,1.90325,3.53812,3.21758,0.41790,2.47549,22.41442
3,1.05,0.945,1.00832,4.03672,4.09327,0.45014,2.41708,18.12739
3,1.05,0.94,1.00832,4.03672,4.86513,0.62505,2.71355,33.58756
3,1.05,0.9349999999999999,1.12400,4.33600,6.55275,0.41205,2.80745,36.94368
3,1.05,0.9299999999999999,1.12400,3.84385,6.35810,0.41887,2.44994,28.19014
3,1.05,0.925,1.39310,3.84385,7.46099,0.35333,2.69888,38.09853
3,1.05,0.9199999999999999,1.39310,3.84385,7.46099,0.35051,2.69888,37.79449
3,1.05,0.915,1.39310,3.84385,7.14057,0.40115,2.69888,41.39696
3,1.05,0.91,1.48170,3.45394,6.52902,0.35500,2.69888,32.01382
3,1.05,0.905,1.48170,3.45394,6.56891,0.49791,2.69888,45.17538
3,1.055,0.99,1.08849,1.01737,2.24686,0.55169,0.94240,1.29364
3,1.055,0.985,1.07747,1.02245,2.39451,0.54733,1.06363,1.53568
3,1.055,0.98,1.11843,1.46253,2.31249,0.62679,1.04902,2.48714
3,1.055,0.975,1.40433,1.62275,2.32466,0.50135,1.04283,2.76972
3,1.055,0.97,1.32039,1.63532,2.68481,0.51129,0.95567,2.83265
3,1.055,0.965,1.25809,2.17287,2.93533,0.59713,1.00213,4.80165
3,1.055,0.96,1.22350,2.08571,2.71880,0.60702,0.91970,3.87331
3,1.055,0.955,1.89630,2.27319,2.83390,0.72668,1.39303,12.36597
3,1.055,0.95,1.87129,2.15878,3.05406,0.46512,2.37130,13.60757
3,1.055,0.945,0.99139,3.70054,2.41660,0.45666,2.31535,9.37405
3,1.055,0.94,0.99139,3.70054,4.94234,0.69890,2.59934,32.93982
3,1.055,0.9349999999999999,1.12400,4.33600,6.65675,0.48030,2.68929,41.90557
3,1.055,0.9299999999999999,1.12400,3.84385,7.09693,0.45722,2.34683,32.90141
3,1.055,0.925,1.39310,3.84385,8.54432,0.38568,2.69888,47.62527
3,1.055,0.9199999999999999,1.39310,3.84385,8.54432,0.38260,2.69888,47.24520
3,1.055,0.915,1.39310,3.84385,8.17737,0.39731,2.69888,46.95397
3,1.055,0.91,1.48170,3.45394,8.17737,0.35160,2.69888,39.71242
3,1.055,0.905,1.48170,3.45394,8.22734,0.49314,2.69888,56.03904
3,1.06,0.99,1.04333,0.99775,1.40843,0.71754,0.88247,0.92838
3,1.06,0.985,1.03277,1.00272,1.50525,0.71187,0.92039,1.02133
3,1.06,0.98,1.07203,1.38880,1.45370,0.79440,0.90934,1.56345
3,1.06,0.975,1.14643,1.54094,1.45370,0.64339,0.90398,1.49362
3,1.06,0.97,1.08406,1.55287,1.68016,0.65332,0.84317,1.55805
3,1.06,0.965,1.08406,2.08961,1.68016,0.70203,0.80196,2.14276
3,1.06,0.96,1.12393,2.00579,1.45769,0.78402,0.78396,2.01982
3,1.06,0.955,1.01611,2.27319,1.54207,0.95142,1.18743,4.02400
3,1.06,0.95,1.01611,2.15878,1.54052,0.74079,2.02132,5.05999
3,1.06,0.945,0.60930,3.70054,1.90907,0.58901,1.97363,5.00386
3,1.06,0.94,0.60930,3.70054,1.90907,0.90840,2.21571,8.66377
3,1.06,0.9349999999999999,1.12400,4.33600,6.64216,0.69539,2.62349,59.05750
3,1.06,0.9299999999999999,1.12400,3.84385,7.56572,0.57745,2.28941,43.21345
3,1.06,0.925,1.39310,3.84385,9.55707,0.48709,2.63285,65.63108
3,1.06,0.9199999999999999,1.39310,3.84385,9.55707,0.48320,2.63285,65.10731
3,1.06,0.915,1.39310,3.84385,9.14663,0.50177,2.63285,64.70598
3,1.06,0.91,1.48170,3.45394,9.14663,0.41121,2.63285,50.67866
3,1.06,0.905,1.48170,3.45394,9.14663,0.52003,2.63285,64.09012
3,1.065,0.99,1.04333,0.99775,1.22549,0.61383,0.89103,0.69774
3,1.065,0.985,1.03277,1.00272,1.20811,0.61000,0.89383,0.68215
3,1.065,0.98,1.07203,1.38880,1.19772,0.66918,0.89383,1.06660
3,1.065,0.975,1.14643,1.54094,1.19772,0.54197,0.87517,1.00360
3,1.065,0.97,1.08406,1.55287,1.19772,0.56943,0.86142,0.98902
3,1.065,0.965,1.08406,2.08961,1.19772,0.61954,0.81932,1.37720
3,1.065,0.96,1.12393,2.00579,1.19772,0.68804,0.80304,1.49187
3,1.065,0.955,1.01611,2.27319,1.38643,0.67107,1.28263,2.75641
3,1.065,0.95,1.01611,2.15878,1.28953,0.54323,1.36876,2.10325
3,1.065,0.945,0.60930,3.70054,1.12308,0.60636,2.06373,3.16876
3,1.065,0.94,0.60930,3.70054,1.12308,0.93866,2.31687,5.50701
3,1.065,0.9349999999999999,1.12400,4.33600,1.94867,0.84220,2.68729,21.49434
3,1.065,0.9299999999999999,1.12400,3.84385,2.21963,0.69935,2.34509,15.72780
3,1.065,0.925,1.39310,3.84385,2.21963,0.62300,2.62434,19.43270
3,1.065,0.9199999999999999,1.39310,3.84385,2.21963,0.62906,2.62434,19.62183
3,1.065,0.915,1.39310,3.84385,8.51747,0.65324,2.62434,78.18943
3,1.065,0.91,1.48170,3.45394,8.51747,0.39231,2.62434,44.87795
3,1.065,0.905,1.48170,3.45394,8.51747,0.49613,2.62434,56.75432
3,1.07,0.99,1.04333,0.99775,1.22549,0.56124,0.89103,0.63796
3,1.07,0.985,1.03277,1.00272,1.20811,0.52387,0.89383,0.58583
3,1.07,0.98,1.07203,1.38880,1.19772,0.59795,0.89383,0.95307
3,1.07,0.975,1.14643,1.54094,1.19772,0.49948,0.87517,0.92492
3,1.07,0.97,1.08406,1.55287,1.19772,0.46685,0.86142,0.81084
3,1.07,0.965,1.08406,2.08961,1.19772,0.51498,0.81932,1.14478
3,1.07,0.96,1.12393,2.00579,1.19772,0.59389,0.80304,1.28773
3,1.07,0.955,1.01611,2.27319,1.38643,0.58562,1.28263,2.40540
3,1.07,0.95,1.01611,2.15878,1.28953,0.48596,1.36876,1.88151
3,1.07,0.945,0.60930,3.70054,1.12308,0.54244,2.06373,2.83470
3,1.07,0.94,0.60930,3.70054,1.12308,0.83001,2.31687,4.86954
3,1.07,0.9349999999999999,1.12400,4.33600,1.94867,0.74471,2.68729,19.00621
3,1.07,0.9299999999999999,1.12400,3.84385,2.21963,0.69119,2.34509,15.54412
3,1.07,0.925,1.39310,3.84385,2.21963,0.60732,2.62434,18.94383
3,1.07,0.9199999999999999,1.39310,3.84385,2.21963,0.58955,2.62434,18.38945
3,1.07,0.915,1.39310,3.84385,8.51747,0.61221,2.62434,73.27862
3,1.07,0.91,1.48170,3.45394,8.51747,0.39391,2.62434,45.06103
3,1.07,0.905,1.48170,3.45394,8.51747,0.51057,2.62434,58.40637
3,1.075,0.99,1.04333,0.97491,0.99561,0.70119,1.00000,0.71009
3,1.075,0.985,1.03277,0.97491,0.99561,0.68018,1.00000,0.68184
3,1.075,0.98,1.07203,0.97491,0.98705,0.77637,1.00000,0.80091
3,1.075,0.975,1.14643,0.97491,0.98705,0.67495,1.00000,0.74460
3,1.075,0.97,1.08406,0.97491,0.98705,0.63085,1.00000,0.65808
3,1.075,0.965,1.08406,0.94389,0.98705,0.69589,1.00000,0.70284
3,1.075,0.96,1.12393,0.90603,0.98705,0.83209,1.00000,0.83636
3,1.075,0.955,1.01611,1.02682,0.98705,0.72399,1.00000,0.74560
3,1.075,0.95,1.01611,1.02682,0.92945,0.64641,1.00000,0.62686
3,1.075,0.945,0.60930,1.42075,0.80948,0.76111,1.00486,0.53593
3,1.075,0.94,0.60930,1.42075,0.80948,1.16461,1.00486,0.82005
3,1.075,0.9349999999999999,1.12400,1.42075,1.40455,1.17122,1.00486,2.63976
3,1.075,0.9299999999999999,1.12400,1.42075,1.40455,0.92205,1.00486,2.07817
3,1.075,0.925,1.39310,1.42075,1.40455,0.71566,1.02134,2.03197
3,1.075,0.9199999999999999,1.39310,1.42075,1.40455,0.69472,1.02134,1.97250
3,1.075,0.915,1.39310,1.42075,5.38973,0.72142,1.02134,7.86007
3,1.075,0.91,1.48170,3.45394,5.38973,0.46418,1.02134,13.07668
3,1.075,0.905,1.48170,3.45394,5.38973,0.55805,1.02134,15.72135
3,1.08,0.99,1.00700,0.97491,0.99561,0.74762,1.00000,0.73075
3,1.08,0.985,0.99680,0.97491,0.99561,0.74153,1.00000,0.71745
3,1.08,0.98,0.99680,0.97491,0.98705,0.78020,1.00000,0.74838
3,1.08,0.975,1.06500,0.97491,0.98705,0.67828,1.00000,0.69512
3,1.08,0.97,1.05490,0.97491,0.98705,0.65827,1.00000,0.66822
3,1.08,0.965,1.05490,0.94389,0.98705,0.71647,1.00000,0.70416
3,1.08,0.96,1.09370,0.90603,0.98705,0.99893,1.00000,0.97705
3,1.08,0.955,1.00760,1.02682,0.98705,0.97341,1.00000,0.99407
3,1.08,0.95,1.00760,1.02682,0.92945,0.95679,1.00000,0.92008
3,1.08,0.945,0.60930,1.42075,0.80948,1.16652,1.00486,0.82140
3,1.08,0.94,0.60930,1.42075,0.80948,1.55689,1.00486,1.09628
3,1.08,0.9349999999999999,1.12400,1.42075,1.40455,1.09827,1.00486,2.47535
3,1.08,0.9299999999999999,1.12400,1.42075,1.40455,0.86462,1.00486,1.94874
3,1.08,0.925,1.39310,1.42075,1.40455,0.67109,1.02134,1.90541
3,1.08,0.9199999999999999,1.39310,1.42075,1.40455,0.65145,1.02134,1.84965
3,1.08,0.915,1.39310,1.42075,5.38973,0.67649,1.02134,7.37053
3,1.08,0.91,1.48170,3.45394,5.38973,0.43527,1.02134,12.26225
3,1.08,0.905,1.48170,3.45394,5.38973,0.52330,1.02134,14.74220
3,1.085,0.99,1.00700,0.97491,0.99561,0.86736,1.00000,0.84779
3,1.085,0.985,0.99680,0.97491,0.99561,0.81553,1.00000,0.78905
3,1.085,0.98,0.99680,0.97491,0.98705,0.85807,1.00000,0.82307
3,1.085,0.975,1.06500,0.97491,0.98705,0.75901,1.00000,0.77786
3,1.085,0.97,1.05490,0.97491,0.98705,0.73662,1.00000,0.74776
3,1.085,0.965,1.05490,0.94389,0.98705,0.79162,1.00000,0.77801
3,1.085,0.96,1.09370,0.90603,0.98705,1.10370,1.00000,1.07952
3,1.085,0.955,1.00760,1.02682,0.98705,1.10315,1.00000,1.12657
3,1.085,0.95,1.00760,1.02682,0.92945,1.14397,1.00000,1.10008
3,1.085,0.945,0.60930,1.42075,0.80948,1.27290,1.00486,0.89631
3,1.085,0.94,0.60930,1.42075,0.80948,1.69887,1.00486,1.19625
3,1.085,0.9349999999999999,1.12400,1.42075,1.40455,1.38677,1.00486,3.12558
3,1.085,0.9299999999999999,1.12400,1.42075,1.40455,1.13421,1.00486,2.55635
3,1.085,0.925,1.39310,1.42075,1.40455,0.95592,1.02134,2.71414
3,1.085,0.9199999999999999,1.39310,1.42075,1.40455,0.92795,1.02134,2.63471
3,1.085,0.915,1.39310,1.42075,5.38973,1.05468,1.02134,11.49103
3,1.085,0.91,1.48170,3.45394,5.38973,0.67860,1.02134,19.11745
3,1.085,0.905,1.48170,3.45394,5.38973,0.68051,1.02134,19.17120
3,1.09,0.99,1.00700,0.97491,0.99561,1.01903,1.00000,0.99604
3,1.09,0.985,0.99680,0.97491,0.99561,1.00613,1.00000,0.97347
3,1.09,0.98,0.99680,0.97491,0.98705,1.04513,1.00000,1.00250
3,1.09,0.975,1.06500,0.97491,0.98705,0.95637,1.00000,0.98013
3,1.09,0.97,1.05490,0.97491,0.98705,0.92816,1.00000,0.94220
3,1.09,0.965,1.05490,0.94389,0.98705,0.89717,1.00000,0.88175
3,1.09,0.96,1.09370,0.90603,0.98705,1.04078,1.00000,1.01798
3,1.09,0.955,1.00760,1.02682,0.98705,1.04027,1.00000,1.06235
3,1.09,0.95,1.00760,1.02682,0.92945,1.07876,1.00000,1.03737
3,1.09,0.945,0.60930,1.42075,0.80948,1.20034,1.00486,0.84522
3,1.09,0.94,0.60930,1.42075,0.80948,1.10053,1.00486,0.77494
3,1.09,0.9349999999999999,1.12400,1.42075,1.40455,0.89835,1.00486,2.02476
3,1.09,0.9299999999999999,1.12400,1.42075,1.40455,0.91996,1.00486,2.07347
3,1.09,0.925,1.39310,1.42075,1.40455,1.16884,1.02134,3.31869
3,1.09,0.9199999999999999,1.39310,1.42075,1.40455,1.13464,1.02134,3.22157
3,1.09,0.915,1.39310,1.42075,5.38973,1.28960,1.02134,14.05057
3,1.09,0.91,1.48170,3.45394,5.38973,0.82976,1.02134,23.37573
3,1.09,0.905,1.48170,3.45394,5.38973,0.78574,1.02134,22.13572
3,1.095,0.99,1.00700,0.95998,1.00000,1.21201,1.00000,1.17165
3,1.095,0.985,0.99680,0.95998,1.00000,1.19666,1.00000,1.14510
3,1.095,0.98,0.99680,0.95998,1.00000,1.24304,1.00000,1.18947
3,1.095,0.975,1.06500,0.95998,1.00000,1.13748,1.00000,1.16293
3,1.095,0.97,1.05490,0.95998,1.00000,1.10393,1.00000,1.11793
3,1.095,0.965,1.05490,0.92943,1.00000,1.06707,1.00000,1.04621
3,1.095,0.96,1.09370,0.89215,1.00000,1.16172,1.00000,1.13355
3,1.095,0.955,1.00760,1.01109,1.00000,1.16115,1.00000,1.18295
3,1.095,0.95,1.00760,1.01109,1.00000,1.20412,1.00000,1.22672
3,1.095,0.945,0.60930,1.39899,0.87092,1.58416,1.00486,1.18176
3,1.095,0.94,0.60930,1.39899,0.87092,1.45244,1.00486,1.08350
3,1.095,0.9349999999999999,1.12400,1.39899,0.87092,1.34897,1.00486,1.85638
3,1.095,0.9299999999999999,1.12400,1.39899,0.87092,1.38142,1.00486,1.90104
3,1.095,0.925,1.39310,1.39899,0.87092,1.87137,1.02134,3.24420
3,1.095,0.9199999999999999,1.39310,1.39899,0.87092,1.81661,1.02134,3.14926
3,1.095,0.915,1.39310,1.39899,3.34202,1.76562,1.02134,11.74558
3,1.095,0.91,1.48170,3.40102,3.34202,1.13604,1.02134,19.54094
3,1.095,0.905,1.48170,3.40102,3.34202,0.93941,1.02134,16.15870
3,1.1,0.99,1.00700,0.95998,1.00000,1.15350,1.00000,1.11509
3,1.1,0.985,0.99680,0.95998,1.00000,1.13889,1.00000,1.08982
3,1.1,0.98,0.99680,0.95998,1.00000,1.18303,1.00000,1.13205
3,1.1,0.975,1.06500,0.95998,1.00000,1.08257,1.00000,1.10679
3,1.1,0.97,1.05490,0.95998,1.00000,1.05064,1.00000,1.06396
3,1.1,0.965,1.05490,0.92943,1.00000,1.01555,1.00000,0.99571
3,1.1,0.96,1.09370,0.89215,1.00000,1.10564,1.00000,1.07883
3,1.1,0.955,1.00760,1.01109,1.00000,1.10510,1.00000,1.12584
3,1.1,0.95,1.00760,1.01109,1.00000,1.14599,1.00000,1.16750
3,1.1,0.945,0.60930,1.39899,0.87092,1.50769,1.00486,1.12471
3,1.1,0.94,0.60930,1.39899,0.87092,1.38233,1.00486,1.03119
3,1.1,0.9349999999999999,1.12400,1.39899,0.87092,1.28385,1.00486,1.76677
3,1.1,0.9299999999999999,1.12400,1.39899,0.87092,1.31474,1.00486,1.80927
3,1.1,0.925,1.39310,1.39899,0.87092,1.78103,1.02134,3.08759
3,1.1,0.9199999999999999,1.39310,1.39899,0.87092,1.72891,1.02134,2.99723
3,1.1,0.915,1.39310,1.39899,3.34202,1.68038,1.02134,11.17856
3,1.1,0.91,1.48170,3.40102,3.34202,1.08120,1.02134,18.59760
3,1.1,0.905,1.48170,3.40102,3.34202,0.89406,1.02134,15.37863
4,1.01,0.99,3.70422,8.10955,6.93055,0.60192,1.39009,174.19767
4,1.01,0.985,2.85239,6.08208,6.17667,0.63905,1.50494,103.05483
4,1.01,0.98,2.65114,5.54838,5.59910,0.78893,1.75944,114.32268
4,1.01,0.975,2.87070,5.38603,5.90038,0.83144,1.62601,123.33610
4,1.01,0.97,2.77782,4.93777,6.72791,0.62577,1.82003,105.10226
4,1.01,0.965,2.62696,4.11506,6.71289,0.76187,1.92778,106.58035
4,1.01,0.96,2.00030,3.92481,7.22251,0.58463,2.28722,75.82049
4,1.01,0.955,1.91211,4.15183,6.03013,0.48254,2.04183,47.16651
4,1.01,0.95,1.91823,4.09189,6.13640,0.48721,2.10302,49.35098
4,1.01,0.945,1.83891,4.29242,6.10260,0.52537,2.15219,54.46569
4,1.01,0.94,1.82093,4.23158,6.90754,0.52809,2.13918,60.12765
4,1.01,0.9349999999999999,1.60885,3.65768,7.36046,0.38431,2.49830,41.58642
4,1.01,0.9299999999999999,1.63348,3.55683,7.71059,0.33923,2.49830,37.96683
4,1.01,0.925,1.63348,3.15611,8.02678,0.34630,2.47486,35.46549
4,1.01,0.9199999999999999,1.47414,3.15611,7.35301,0.37080,2.21609,28.11173
4,1.01,0.915,1.48170,3.15611,7.39851,0.52333,2.50612,45.37646
4,1.01,0.91,1.48170,3.15611,7.54628,0.54875,2.50612,48.53116
4,1.01,0.905,1.48170,3.15611,8.24120,0.45312,2.68242,46.84234
4,1.015,0.99,3.21796,8.09878,5.87721,0.67774,1.68157,174.56308
4,1.015,0.985,2.51960,6.68313,5.34211,0.73689,1.66946,110.66270
4,1.015,0.98,2.36419,6.16476,4.94485,0.87458,1.91897,120.95385
4,1.015,0.975,2.67858,5.71610,5.44919,0.91025,1.70536,129.51261
4,1.015,0.97,2.62957,5.33226,6.60654,0.74920,1.93021,133.95864
4,1.015,0.965,2.58474,4.23149,6.53363,0.87621,2.09230,131.00848
4,1.015,0.96,1.96166,4.07508,7.07016,0.64348,2.38333,86.67804
4,1.015,0.955,1.84210,4.04338,5.96464,0.54898,2.13838,52.15302
4,1.015,0.95,1.86456,4.03241,6.06976,0.54938,2.20280,55.22847
4,1.015,0.945,1.80289,4.27056,6.11576,0.58621,2.28482,63.06799
4,1.015,0.94,1.79274,4.19413,6.92244,0.55777,2.28181,66.24490
4,1.015,0.9349999999999999,1.58394,3.62531,7.11977,0.40311,2.49830,41.17362
4,1.015,0.9299999999999999,1.63348,3.55683,7.45845,0.36691,2.49830,39.72180
4,1.015,0.925,1.63348,3.15611,7.67006,0.35451,2.47486,34.69311
4,1.015,0.9199999999999999,1.47414,3.15611,7.35301,0.37516,2.21609,28.44218
4,1.015,0.915,1.48170,3.15611,7.39851,0.52333,2.50612,45.37646
4,1.015,0.91,1.48170,3.15611,7.54628,0.54875,2.50612,48.53116
4,1.015,0.905,1.48170,3.15611,8.24120,0.45312,2.68242,46.84234
4,1.02,0.99,2.55875,6.59838,4.52270,0.70990,1.59502,86.46214
4,1.02,0.985,2.19463,5.85279,4.64304,0.87778,1.53443,80.32654
4,1.02,0.98,2.00211,5.47212,4.56603,0.95571,1.83104,87.53918
4,1.02,0.975,2.52034,5.73265,5.41567,0.95011,1.67076,124.21002
4,1.02,0.97,2.41464,5.75751,6.05683,0.77990,1.88192,123.58644
4,1.02,0.965,2.38817,4.17505,6.30017,0.96066,2.00943,121.26167
4,1.02,0.96,1.85956,4.07353,7.06403,0.68445,2.37665,87.04426
4,1.02,0.955,1.74622,4.04184,6.31772,0.58356,2.13239,55.48738
4,1.02,0.95,1.78179,4.00315,6.44676,0.58934,2.20280,59.69505
4,1.02,0.945,1.78378,4.23956,6.59175,0.63097,2.28482,71.86671
4,1.02,0.94,1.79631,4.19413,7.32823,0.61287,2.28181,77.20888
4,1.02,0.9349999999999999,1.58336,3.62531,7.65139,0.41998,2.49830,46.08289
4,1.02,0.9299999999999999,1.63288,3.55683,8.01536,0.38227,2.49830,44.45797
4,1.02,0.925,1.63288,3.15611,8.24277,0.36778,2.47486,38.66493
4,1.02,0.9199999999999999,1.47360,3.15611,8.32894,0.38921,2.21609,33.41080
4,1.02,0.915,1.48170,3.15611,7.88491,0.54292,2.50612,50.16983
4,1.02,0.91,1.48170,3.15611,7.54628,0.54875,2.50612,48.53116
4,1.02,0.905,1.48170,3.15611,8.24120,0.45312,2.68242,46.84234
4,1.025,0.99,2.06415,5.09665,3.94738,0.68118,1.72358,48.75638
4,1.025,0.985,1.75689,4.48181,3.72997,0.80298,1.79695,42.37813
4,1.025,0.98,1.55383,4.98682,3.54525,0.99728,1.99749,54.72371
4,1.025,0.975,1.89694,4.80753,4.09438,1.00026,1.94246,72.54811
4,1.025,0.97,2.03321,5.37862,5.12626,0.82005,1.91500,88.03705
4,1.025,0.965,2.48068,4.09967,5.04105,0.99854,2.04858,104.87137
4,1.025,0.96,1.89515,3.86110,6.87906,0.70749,2.36060,84.06776
4,1.025,0.955,1.83455,3.83106,6.11992,0.68063,2.14574,62.81746
4,1.025,0.95,1.65802,3.95548,6.24493,0.67682,2.23653,61.99598
4,1.025,0.945,1.66746,4.23956,6.38538,0.78051,2.37538,83.69059
4,1.025,0.94,1.67918,4.19413,7.44433,0.75811,2.35052,93.42439
4,1.025,0.9349999999999999,1.49510,3.62531,7.85924,0.48118,2.49022,51.04408
4,1.025,0.9299999999999999,1.54186,3.55683,8.23309,0.48510,2.49022,54.54359
4,1.025,0.925,1.54186,3.15611,8.46668,0.41710,2.46686,42.39319
4,1.025,0.9199999999999999,1.39147,3.15611,8.55519,0.45927,2.20892,38.11553
4,1.025,0.915,1.48170,3.15611,8.09910,0.64664,2.49802,61.17951
4,1.025,0.91,1.48170,3.15611,7.72941,0.65995,2.49802,59.58873
4,1.025,0.905,1.48170,3.15611,8.44119,0.60231,2.67375,63.57052
4,1.03,0.99,1.94366,3.36221,2.91488,0.62459,1.47529,17.55251
4,1.03,0.985,1.79337,2.96300,3.04573,0.69817,1.55254,17.54269
4,1.03,0.98,1.64969,3.35858,3.09486,0.88832,1.68117,25.60834
4,1.03,0.975,2.14808,3.33523,4.04039,0.93032,1.71995,46.31774
4,1.03,0.97,2.34383,2.88086,4.73247,0.78316,1.69473,42.41188
4,1.03,0.965,2.79199,2.16827,5.30319,1.01131,1.67505,54.38439
4,1.03,0.96,2.34153,2.89611,7.05101,0.64197,2.02628,62.19843
4,1.03,0.955,2.15422,2.87358,5.64863,0.57657,1.88761,38.05598
4,1.03,0.95,1.61563,3.95468,5.76401,0.57248,2.17063,45.76387
4,1.03,0.945,1.62465,3.91458,6.11029,0.67359,2.31486,60.59388
4,1.03,0.94,1.66073,3.97557,7.05710,0.67041,2.35052,73.42251
4,1.03,0.9349999999999999,1.50043,3.43639,7.85924,0.40443,2.49022,40.81153
4,1.03,0.9299999999999999,1.54736,3.45411,8.23309,0.40773,2.49022,44.67825
4,1.03,0.925,1.54736,3.15611,8.46668,0.35057,2.46686,35.75821
4,1.03,0.9199999999999999,1.39642,3.15611,8.55519,0.38601,2.20892,32.15005
4,1.03,0.915,1.48170,3.15611,8.09910,0.57871,2.49802,54.75271
4,1.03,0.91,1.48170,3.15611,7.72941,0.59062,2.49802,53.32903
4,1.03,0.905,1.48170,3.15611,8.44119,0.55655,2.67375,58.74084
4,1.035,0.99,1.72039,3.29763,2.58093,0.49949,1.37704,10.07113
4,1.035,0.985,1.66699,3.10198,2.54179,0.55609,1.40955,10.30239
4,1.035,0.98,1.57523,3.52796,2.61381,0.60820,1.39905,12.36007
4,1.035,0.975,1.88580,3.44681,3.64225,0.65434,1.26363,19.57505
4,1.035,0.97,1.90651,2.86668,4.26463,0.58796,1.75267,24.01840
4,1.035,0.965,2.04456,2.23465,4.76549,0.73095,1.52616,24.28876
4,1.035,0.96,2.39091,2.98391,8.26458,0.53447,1.66411,52.44172
4,1.035,0.955,2.19966,2.96070,6.70728,0.45431,1.60840,31.91842
4,1.035,0.95,1.64970,3.77213,6.52269,0.53899,2.11200,46.20591
4,1.035,0.945,1.65892,3.82601,6.96655,0.70075,2.25234,69.78863
4,1.035,0.94,1.69576,3.88562,7.45447,0.65037,2.28704,73.05862
4,1.035,0.9349999999999999,1.48715,3.35864,8.53836,0.40961,2.49022,43.50164
4,1.035,0.9299999999999999,1.49890,3.37596,7.97416,0.35755,2.49022,35.92769
4,1.035,0.925,1.49890,3.08470,8.20040,0.30743,2.46686,28.75470
4,1.035,0.9199999999999999,1.35269,3.08470,8.28613,0.35711,2.20892,27.27376
4,1.035,0.915,1.48170,3.15611,7.84438,0.49021,2.49802,44.92061
4,1.035,0.91,1.48170,3.15611,7.48632,0.54945,2.49802,48.05092
4,1.035,0.905,1.48170,3.15611,8.26853,0.52821,2.67375,54.60934
4,1.04,0.99,1.61673,1.94729,2.29110,0.44312,1.11020,3.54839
4,1.04,0.985,1.58998,1.98558,2.21918,0.53830,1.19233,4.49667
4,1.04,0.98,1.58542,2.35513,2.25686,0.63497,1.11505,5.96638
4,1.04,0.975,1.95938,3.55517,3.02089,0.73865,1.01193,15.72911
4,1.04,0.97,1.84213,3.08424,3.39974,0.64778,1.27798,15.99068
4,1.04,0.965,2.03393,2.59440,4.04218,0.70972,1.14679,17.36038
4,1.04,0.96,2.13567,3.70756,6.61320,0.51827,1.43473,38.93665
4,1.04,0.955,2.00161,3.67872,5.10548,0.41227,1.55727,24.13579
4,1.04,0.95,1.42351,4.63929,5.93596,0.56579,2.17560,48.25419
4,1.04,0.945,1.51292,4.70555,6.72861,0.76189,2.32016,84.67582
4,1.04,0.94,1.40082,3.97624,7.61452,0.71106,2.37870,71.73651
4,1.04,0.9349999999999999,1.22849,3.43697,8.08166,0.40719,2.50547,34.81283
4,1.04,0.9299999999999999,1.23820,3.56031,7.57330,0.35221,2.50547,29.46160
4,1.04,0.925,1.23820,3.76856,7.78816,0.30284,2.48196,27.31537
4,1.04,0.9199999999999999,1.11120,3.76856,7.86958,0.35178,2.22245,25.76431
4,1.04,0.915,1.48170,3.15611,7.63492,0.49057,2.49802,43.75317
4,1.04,0.91,1.48170,3.15611,7.28642,0.54945,2.49802,46.76786
4,1.04,0.905,1.48170,3.15611,8.04774,0.52821,2.67375,53.15116
4,1.045,0.99,1.62428,1.46508,2.28033,0.52268,1.12143,3.18076
4,1.045,0.985,1.67492,1.65910,2.18967,0.68121,1.22959,5.09664
4,1.045,0.98,1.68346,1.66098,2.34285,0.76935,1.15397,5.81606
4,1.045,0.975,2.09404,2.64624,2.70960,0.77325,1.05075,12.19944
4,1.045,0.97,1.98273,2.45392,3.14995,0.69720,1.34270,14.34712
4,1.045,0.965,2.19798,2.18647,4.04024,0.83736,1.23258,20.04023
4,1.045,0.96,2.41037,2.95229,4.47373,0.69531,1.41421,31.30435
4,1.045,0.955,2.28296,2.96906,4.42946,0.53254,1.54396,24.68613
4,1.045,0.95,1.94959,5.09860,4.46467,0.76923,2.17560,74.27090
4,1.045,0.945,1.50042,4.94649,5.08398,1.06979,2.32016,93.65492
4,1.045,0.94,1.38924,4.30880,7.65291,0.84728,2.37870,92.32684
4,1.045,0.9349999999999999,1.21835,3.72443,8.12241,0.50142,2.50547,46.30277
4,1.045,0.9299999999999999,1.23820,3.85809,7.44780,0.40927,2.50547,36.48261
4,1.045,0.925,1.23820,3.76856,7.65910,0.28082,2.48196,24.90947
4,1.045,0.9199999999999999,1.11120,3.76856,7.73917,0.32620,2.22245,23.49502
4,1.045,0.915,1.48170,3.15611,7.50840,0.46240,2.49802,40.55798
4,1.045,0.91,1.48170,3.15611,7.16567,0.51790,2.49802,43.35251
4,1.045,0.905,1.48170,3.15611,7.91438,0.49789,2.67375,49.26965
4,1.05,0.99,1.16503,1.39833,2.55818,0.48331,1.06281,2.14073
4,1.05,0.985,1.19862,1.58351,2.46300,0.58795,1.17756,3.23660
4,1.05,0.98,1.23479,1.58530,2.78462,0.64009,1.14136,3.98230
4,1.05,0.975,1.50009,2.52568,2.99283,0.60758,1.09319,7.53140
4,1.05,0.97,1.52259,2.34211,3.57474,0.55053,1.36504,9.57996
4,1.05,0.965,1.43943,2.08685,3.93108,0.63291,1.28364,9.59354
4,1.05,0.96,1.41999,2.81778,4.21607,0.58099,1.40082,13.72932
4,1.05,0.955,1.38395,2.83378,3.93318,0.53684,1.63736,13.55875
4,1.05,0.95,1.19765,4.86630,3.62239,0.63407,2.03666,27.26365
4,1.05,0.945,1.46083,4.94649,3.98019,0.76505,2.34987,51.70546
4,1.05,0.94,1.38924,4.30880,5.70339,0.68134,2.40916,56.03992
4,1.05,0.9349999999999999,1.21835,3.72443,6.68873,0.62339,2.53755,48.01151
4,1.05,0.9299999999999999,1.23820,3.85809,6.13319,0.55792,2.53755,41.47959
4,1.05,0.925,1.23820,3.76856,6.30720,0.38282,2.51375,28.32130
4,1.05,0.9199999999999999,1.11120,3.76856,6.47218,0.44468,2.25090,27.12827
4,1.05,0.915,1.48170,3.15611,6.27919,0.52882,2.53001,39.28685
4,1.05,0.91,1.48170,3.15611,5.99257,0.51790,2.53001,36.71948
4,1.05,0.905,1.48170,3.15611,6.61871,0.49789,2.67375,41.20367
4,1.055,0.99,1.13629,1.32165,2.53860,0.58814,1.00755,2.25919
4,1.055,0.985,1.12062,1.43737,2.44521,0.70824,1.03934,2.89926
4,1.055,0.98,1.15444,1.50354,2.65957,0.72804,1.02856,3.45690
4,1.055,0.975,1.40248,2.46364,2.76554,0.71706,1.00445,6.88232
4,1.055,0.97,1.42351,2.28261,3.18920,0.67181,1.24213,8.64746
4,1.055,0.965,1.36343,2.21054,3.59204,0.78362,1.18328,10.03852
4,1.055,0.96,1.34502,2.98480,4.04484,0.73097,1.27077,15.08389
4,1.055,0.955,1.34502,3.00175,3.55109,0.71769,1.36794,14.07573
4,1.055,0.95,1.16397,5.15475,3.09272,0.84768,1.79882,28.29503
4,1.055,0.945,1.42461,5.12287,3.21231,1.02278,2.04274,48.98041
4,1.055,0.94,1.27117,4.46244,4.82864,1.03093,2.37171,66.97159
4,1.055,0.9349999999999999,1.10749,3.85723,5.66519,1.04647,2.53755,64.26437
4,1.055,0.9299999999999999,1.23820,4.06628,5.19466,1.07023,2.53755,71.02927
4,1.055,0.925,1.23820,3.76856,5.34204,0.82676,2.51375,51.80505
4,1.055,0.9199999999999999,1.11120,3.76856,5.48178,0.81723,2.25090,42.22717
4,1.055,0.915,1.48170,3.15611,6.17125,0.74712,2.53001,54.55008
4,1.055,0.91,1.48170,3.15611,5.88956,0.73169,2.53001,50.98527
4,1.055,0.905,1.48170,3.15611,6.50493,0.70341,2.67375,57.21160
4,1.06,0.99,1.11721,1.32189,2.52840,0.49466,0.89269,1.64887
4,1.06,0.985,1.10181,1.43763,2.44683,0.61282,0.90544,2.15053
4,1.06,0.98,1.13506,1.50354,2.72491,0.62846,0.90684,2.65030
4,1.06,0.975,1.37893,2.46364,2.88496,0.61898,0.89203,5.41146
4,1.06,0.97,1.39961,2.28261,3.25605,0.62398,0.85285,5.53574
4,1.06,0.965,1.34054,2.21054,3.61123,0.73754,0.85062,6.71361
4,1.06,0.96,1.32244,2.98480,4.10466,0.69217,0.86046,9.64961
4,1.06,0.955,1.32244,3.00175,3.89694,0.67959,1.00957,10.61355
4,1.06,0.95,1.14442,5.15475,3.39392,0.79772,1.34059,21.41120
4,1.06,0.945,1.40069,5.12287,3.63329,1.00921,1.43842,37.84618
4,1.06,0.94,1.24982,4.46244,5.86480,1.01725,1.71698,57.13034
4,1.06,0.9349999999999999,1.08889,3.85723,6.30771,0.96626,2.53317,64.84675
4,1.06,0.9299999999999999,1.23820,4.06628,6.30771,0.98820,2.53317,79.49997
4,1.06,0.925,1.23820,3.76856,6.54472,0.76339,2.50940,58.50212
4,1.06,0.9199999999999999,1.11120,3.76856,6.71592,0.75459,2.24702,47.68607
4,1.06,0.915,1.48170,3.15611,8.26880,0.71724,2.62709,72.86068
4,1.06,0.91,1.48170,3.15611,7.37647,0.69952,2.62709,63.39193
4,1.06,0.905,1.48170,3.15611,8.14720,0.67248,2.67375,68.50473
4,1.065,0.99,1.11721,1.23242,1.57134,0.55851,0.90875,1.09810
4,1.065,0.985,1.10181,1.34032,1.51740,0.69192,0.92172,1.42913
4,1.065,0.98,1.13506,1.40177,1.65488,0.69151,0.92315,1.68085
4,1.065,0.975,1.37893,2.32615,1.69395,0.68451,0.90807,3.37740
4,1.065,0.97,1.39961,2.15523,1.86287,0.66794,0.86819,3.25864
4,1.065,0.965,1.34054,2.08718,2.29854,0.72505,0.86592,4.03775
4,1.065,0.96,1.32244,2.81824,2.26378,0.68044,0.87594,5.02867
4,1.065,0.955,1.32244,2.82819,2.00265,0.65283,1.02773,5.02536
4,1.065,0.95,1.14442,3.51757,2.00265,0.76630,1.36470,8.43083
4,1.065,0.945,1.40069,3.49582,2.14390,0.98098,1.48842,15.32775
4,1.065,0.94,1.24982,4.38129,2.72136,0.99592,1.77667,26.36742
4,1.065,0.9349999999999999,1.08889,3.78709,3.73445,0.94600,2.62122,38.18660
4,1.065,0.9299999999999999,1.23820,3.99234,3.73445,0.96748,2.62122,46.81551
4,1.065,0.925,1.23820,3.76856,4.02866,0.74738,2.59663,36.48201
4,1.065,0.9199999999999999,1.11120,3.76856,4.13404,0.75459,2.32512,30.37389
4,1.065,0.915,1.48170,3.15611,5.08993,0.71724,2.55429,43.60716
4,1.065,0.91,1.48170,3.15611,7.37647,0.69952,2.55429,61.63526
4,1.065,0.905,1.48170,3.15611,8.14720,0.67248,2.59965,66.60638
4,1.07,0.99,1.11721,1.04203,1.28113,0.57825,0.98865,0.85265
4,1.07,0.985,1.10181,1.02954,1.29690,0.71117,0.98213,1.02754
4,1.07,0.98,1.13506,1.07674,1.48591,0.71075,0.98213,1.26766
4,1.07,0.975,1.37893,1.78678,1.52100,0.70355,0.98213,2.58944
4,1.07,0.97,1.39961,1.71106,1.67267,0.67781,0.96756,2.62704
4,1.07,0.965,1.34054,1.65704,2.06386,0.70725,0.96756,3.13718
4,1.07,0.96,1.32244,2.23743,2.03264,0.69197,1.07139,4.45885
4,1.07,0.955,1.32244,2.24533,1.64940,0.67546,1.26447,4.18301
4,1.07,0.95,1.14442,2.83986,1.64940,0.79286,1.61744,6.87440
4,1.07,0.945,1.40069,2.82229,1.60071,1.02179,1.80067,11.64268
4,1.07,0.94,1.24982,3.53716,1.39409,1.08938,1.75875,11.80803
4,1.07,0.9349999999999999,1.08889,3.44891,2.08600,1.28733,1.75875,17.73681
4,1.07,0.9299999999999999,1.23820,3.51597,2.08600,1.33357,1.75875,21.29953
4,1.07,0.925,1.23820,3.76856,2.25034,1.08997,1.75875,20.12953
4,1.07,0.9199999999999999,1.11120,3.76856,2.48605,0.91785,1.69156,16.16342
4,1.07,0.915,1.48170,3.15611,2.48605,0.87241,1.69156,17.15655
4,1.07,0.91,1.48170,3.15611,8.11197,0.72286,1.69156,46.38489
4,1.07,0.905,1.48170,3.15611,8.95954,0.69492,1.76028,51.25228
4,1.075,0.99,1.02576,0.99501,1.30886,0.61426,0.98865,0.81126
4,1.075,0.985,1.00923,0.98308,1.31208,0.71833,0.98213,0.91841
4,1.075,0.98,1.00923,0.96828,1.50329,0.73319,0.98213,1.05785
4,1.075,0.975,1.07828,1.54924,1.50186,0.72099,0.98213,1.77655
4,1.075,0.97,1.10070,1.48358,1.60748,0.68320,0.96756,1.73521
4,1.075,0.965,1.06105,1.44916,2.05967,0.71287,0.96756,2.18444
4,1.075,0.96,1.16365,2.00564,2.02852,0.69358,1.07139,3.51803
4,1.075,0.955,1.16365,2.01273,1.74919,0.67703,1.26447,3.50719
4,1.075,0.95,1.01348,1.89015,1.74919,0.71526,1.60961,3.85773
4,1.075,0.945,0.72853,1.89015,1.70289,1.12882,1.80067,4.76639
4,1.075,0.94,0.65006,2.90612,1.48308,1.14689,1.75875,5.65143
4,1.075,0.9349999999999999,0.60750,2.83361,2.16080,1.40673,1.75875,9.20275
4,1.075,0.9299999999999999,1.23820,2.88871,2.16080,1.45726,1.75875,19.80845
4,1.075,0.925,1.23820,3.76856,2.19336,1.19107,1.75875,21.43961
4,1.075,0.9199999999999999,1.11120,3.76856,2.42310,0.91785,1.69156,15.75416
4,1.075,0.915,1.48170,3.15611,2.42310,0.87241,1.69156,16.72215
4,1.075,0.91,1.48170,3.15611,8.11197,0.72286,1.69156,46.38489
4,1.075,0.905,1.48170,3.15611,8.95954,0.69492,1.76028,51.25228
4,1.08,0.99,1.02576,0.98292,1.19830,0.78863,1.00000,0.95279
4,1.08,0.985,1.00923,0.97113,1.20124,0.86435,1.00000,1.01763
4,1.08,0.98,1.00923,0.95651,1.20124,0.88223,1.00000,1.02305
4,1.08,0.975,1.07828,1.53041,1.20809,0.93478,1.00000,1.86357
4,1.08,0.97,1.10070,1.46555,1.29305,0.89244,1.00000,1.86150
4,1.08,0.965,1.06105,1.43155,1.56672,0.95697,1.00000,2.27737
4,1.08,0.96,1.16365,1.98127,1.54303,0.92827,1.00000,3.30228
4,1.08,0.955,1.16365,1.98826,1.44476,0.90612,1.00000,3.02883
4,1.08,0.95,1.01348,1.86718,1.44476,1.05029,1.00000,2.87145
4,1.08,0.945,0.72853,1.86718,1.40651,1.53005,1.00486,2.94166
4,1.08,0.94,0.65006,2.87080,1.22496,1.56818,0.98147,3.51847
4,1.08,0.9349999999999999,0.60750,2.79917,1.88512,1.77930,0.98147,5.59808
4,1.08,0.9299999999999999,1.23820,2.85359,1.88512,1.70426,0.98147,11.14129
4,1.08,0.925,1.23820,3.76856,1.91353,1.39295,0.98147,12.20712
4,1.08,0.9199999999999999,1.11120,3.76856,2.11396,1.07342,0.98147,9.32628
4,1.08,0.915,1.48170,3.15611,2.11396,1.03496,0.98147,10.04166
4,1.08,0.91,1.48170,3.15611,8.11197,0.85330,0.98147,31.77005
4,1.08,0.905,1.48170,3.15611,8.95954,0.73683,1.02134,31.53094
4,1.085,0.99,1.02576,0.96786,1.19830,0.74356,1.00000,0.88458
4,1.085,0.985,1.00923,0.95626,1.20124,0.83328,1.00000,0.96602
4,1.085,0.98,1.00923,0.94186,1.20124,0.86877,1.00000,0.99201
4,1.085,0.975,1.07828,1.50696,1.20809,0.92051,1.00000,1.80702
4,1.085,0.97,1.10070,1.44310,1.29305,0.85685,1.00000,1.75989
4,1.085,0.965,1.06105,1.40962,1.56672,0.90720,1.00000,2.12585
4,1.085,0.96,1.16365,1.95091,1.54303,0.92072,1.00000,3.22522
4,1.085,0.955,1.16365,1.95780,1.44476,0.92422,1.00000,3.04202
4,1.085,0.95,1.01348,1.83857,1.44476,1.02248,1.00000,2.75259
4,1.085,0.945,0.72853,1.83857,1.40651,1.39732,1.00486,2.64531
4,1.085,0.94,0.65006,2.82682,1.22496,1.41585,0.98147,3.12803
4,1.085,0.9349999999999999,0.60750,2.75629,1.88512,1.66914,0.98147,5.17104
4,1.085,0.9299999999999999,1.23820,2.80988,1.88512,1.33130,0.98147,8.56977
4,1.085,0.925,1.23820,3.71082,1.91353,1.14967,0.98147,9.92080
4,1.085,0.9199999999999999,1.11120,3.71082,2.11396,0.93862,0.98147,8.03018
4,1.085,0.915,1.48170,3.10775,2.11396,0.95152,0.98147,9.09070
4,1.085,0.91,1.48170,3.10775,8.11197,0.68846,0.98147,25.24002
4,1.085,0.905,1.48170,3.10775,8.95954,0.59449,1.02134,25.05006
4,1.09,0.99,1.02576,0.95970,1.15404,0.77076,1.00000,0.87562
4,1.09,0.985,1.00923,0.95114,1.15687,0.80216,1.00000,0.89080
4,1.09,0.98,1.00923,0.95902,1.15687,0.79579,1.00000,0.89105
4,1.09,0.975,1.07828,1.35973,1.16347,0.86719,1.00000,1.47930
4,1.09,0.97,1.10070,1.30211,1.16347,0.80722,1.00000,1.34605
4,1.09,0.965,1.06105,1.27190,1.43478,0.85465,1.00000,1.65487
4,1.09,0.96,1.16365,1.24486,1.41308,0.89181,1.00000,1.82549
4,1.09,0.955,1.16365,1.24486,1.32308,0.89520,1.00000,1.71573
4,1.09,0.95,1.01348,1.29705,1.32308,0.99037,1.00000,1.72249
4,1.09,0.945,0.72853,1.29705,1.28806,1.39795,1.00486,1.70979
4,1.09,0.94,0.65006,1.99423,1.12180,1.47105,0.98147,2.09967
4,1.09,0.9349999999999999,0.60750,1.94447,1.12180,1.95520,0.98147,2.54291
4,1.09,0.9299999999999999,1.23820,1.94447,1.12180,1.52122,0.98147,4.03252
4,1.09,0.925,1.23820,3.71082,1.13870,1.31369,0.98147,6.74589
4,1.09,0.9199999999999999,1.11120,3.71082,1.97579,0.96763,0.98147,7.73731
4,1.09,0.915,1.48170,3.10775,1.97579,1.01530,0.98147,9.06604
4,1.09,0.91,1.48170,3.10775,7.58177,0.73461,0.98147,25.17156
4,1.09,0.905,1.48170,3.10775,8.37395,0.63434,1.02134,24.98212
4,1.095,0.99,1.02576,0.95998,0.97597,0.80539,1.00000,0.77402
4,1.095,0.985,1.00923,0.95998,0.97597,0.84177,1.00000,0.79594
4,1.095,0.98,1.00923,0.96793,0.97597,0.90019,1.00000,0.85823
4,1.095,0.975,1.07828,0.96793,0.98153,0.98096,1.00000,1.00492
4,1.095,0.97,1.10070,0.95176,0.98153,0.92240,1.00000,0.94845
4,1.095,0.965,1.06105,0.92967,0.98153,0.98856,1.00000,0.95714
4,1.095,0.96,1.16365,0.90991,0.98153,1.08056,1.00000,1.12298
4,1.095,0.955,1.16365,0.90991,0.91902,1.08467,1.00000,1.05546
4,1.095,0.95,1.01348,0.90991,0.91902,1.27653,1.00000,1.08185
4,1.095,0.945,0.72853,0.90991,0.91902,1.71512,1.00486,1.04996
4,1.095,0.94,0.65006,1.39899,0.80039,1.87388,0.98147,1.33873
4,1.095,0.9349999999999999,0.60750,1.39899,0.80039,2.49061,0.98147,1.66282
4,1.095,0.9299999999999999,1.23820,1.39899,0.80039,2.12272,0.98147,2.88854
4,1.095,0.925,1.23820,1.39899,0.80039,2.14919,0.98147,2.92456
4,1.095,0.9199999999999999,1.11120,1.39899,1.38878,1.58305,0.98147,3.35437
4,1.095,0.915,1.48170,1.17163,1.38878,1.44168,0.98147,3.41137
4,1.095,0.91,1.48170,1.17163,5.32923,1.04311,0.98147,9.47155
4,1.095,0.905,1.48170,1.17163,5.32923,0.90073,1.02134,8.51100
4,1.1,0.99,1.00700,0.95998,0.97597,0.96452,1.00000,0.90999
4,1.1,0.985,0.99680,0.95998,0.97597,1.00808,1.00000,0.94146
4,1.1,0.98,0.99680,0.96793,0.97597,1.01159,1.00000,0.95257
4,1.1,0.975,1.06500,0.96793,0.98153,1.04861,1.00000,1.06100
4,1.1,0.97,1.05490,0.95176,0.98153,1.01769,1.00000,1.00290
4,1.1,0.965,1.05490,0.92967,0.98153,1.09069,1.00000,1.04990
4,1.1,0.96,1.15690,0.90991,0.98153,0.99584,1.00000,1.02893
4,1.1,0.955,1.15690,0.90991,0.91902,0.99584,1.00000,0.96340
4,1.1,0.95,1.00760,0.90991,0.91902,0.99641,1.00000,0.83955
4,1.1,0.945,0.73810,0.90991,0.91902,1.35531,1.00486,0.84059
4,1.1,0.94,0.65860,1.39899,0.80039,1.60015,0.98147,1.15818
4,1.1,0.9349999999999999,0.60750,1.39899,0.80039,1.48344,0.98147,0.99040
4,1.1,0.9299999999999999,1.23820,1.39899,0.80039,2.73373,0.98147,3.71999
4,1.1,0.925,1.23820,1.39899,0.80039,2.76782,0.98147,3.76637
4,1.1,0.9199999999999999,1.11120,1.39899,1.38878,2.08949,0.98147,4.42749
4,1.1,0.915,1.48170,1.17163,1.38878,1.90289,0.98147,4.50273
4,1.1,0.91,1.48170,1.17163,5.32923,1.39153,0.98147,12.63522
4,1.1,0.905,1.48170,1.17163,5.32923,1.08737,1.02134,10.27463
5,1.01,0.99,3.32924,6.53680,5.87434,0.62912,1.41130,113.50621
5,1.01,0.985,2.85753,6.35381,5.32748,0.75181,1.61540,117.47233
5,1.01,0.98,2.78593,5.60382,4.89953,0.74774,1.60619,91.86616
5,1.01,0.975,2.82351,4.99189,6.56217,0.67447,1.69906,105.99207
5,1.01,0.97,2.62750,5.24777,6.46507,0.81414,1.81165,131.48149
5,1.01,0.965,2.53204,4.23010,6.50658,0.86678,1.99853,120.72353
5,1.01,0.96,2.33153,3.89673,6.80488,0.63531,1.92786,75.72219
5,1.01,0.955,1.82248,4.08727,5.80010,0.71352,2.00122,61.69202
5,1.01,0.95,1.79333,3.71715,7.02029,0.54636,2.15037,54.98137
5,1.01,0.945,1.91444,3.86539,6.32879,0.59359,2.18138,60.64164
5,1.01,0.94,1.90903,3.76947,7.01437,0.58463,2.34532,69.20987
5,1.01,0.9349999999999999,1.84109,3.85882,6.71289,0.58526,2.24383,62.62943
5,1.01,0.9299999999999999,1.82052,3.85882,6.99747,0.53240,2.26613,59.30797
5,1.01,0.925,1.68043,3.41004,7.07169,0.41129,2.45305,40.88455
5,1.01,0.9199999999999999,1.62847,3.41004,7.15575,0.43333,2.59215,44.63504
5,1.01,0.915,1.59423,3.10775,7.15575,0.40841,2.62434,37.99853
5,1.01,0.91,1.48170,3.10775,6.99482,0.50125,2.62434,42.36992
5,1.01,0.905,1.48170,3.10775,6.99482,0.50249,2.62434,42.47502
5,1.015,0.99,2.99338,6.82295,5.61402,0.61459,1.40918,99.30293
5,1.015,0.985,2.61878,7.00576,4.98741,0.73443,1.61244,108.35871
5,1.015,0.98,2.51094,6.11028,4.79123,0.78581,1.61315,93.18337
5,1.015,0.975,2.56745,5.42504,6.62735,0.69353,1.82391,116.76545
5,1.015,0.97,2.45014,5.53778,6.43547,0.82718,1.85822,134.21516
5,1.015,0.965,2.38877,4.16852,6.39632,0.90897,1.96611,113.82607
5,1.015,0.96,2.13279,3.91498,6.99728,0.68417,1.94087,77.58375
5,1.015,0.955,1.65620,4.15784,5.87311,0.78354,2.08598,66.10301
5,1.015,0.95,1.73987,3.77114,7.08062,0.60930,2.25619,63.86533
5,1.015,0.945,1.89522,3.86539,6.38318,0.67344,2.28909,72.08681
5,1.015,0.94,1.88987,3.76947,7.08057,0.66765,2.31734,78.04019
5,1.015,0.9349999999999999,1.82261,3.85882,6.77624,0.64889,2.23342,69.06818
5,1.015,0.9299999999999999,1.82052,3.85882,7.06351,0.59028,2.25562,66.06858
5,1.015,0.925,1.68043,3.41004,7.07169,0.44425,2.41491,43.47389
5,1.015,0.9199999999999999,1.62847,3.41004,7.15575,0.45076,2.55185,45.70879
5,1.015,0.915,1.59423,3.10775,7.15575,0.42484,2.62434,39.52713
5,1.015,0.91,1.48170,3.10775,6.99482,0.52141,2.62434,44.07437
5,1.015,0.905,1.48170,3.10775,6.99482,0.52271,2.62434,44.18370
5,1.02,0.99,3.11638,5.35542,5.22474,0.73427,1.47678,94.55379
5,1.02,0.985,2.83158,5.86245,4.97907,0.88355,1.63098,119.10703
5,1.02,0.98,2.50187,5.19115,4.54025,0.82902,1.73236,84.68573
5,1.02,0.975,2.43532,5.04054,6.51531,0.72344,1.89979,109.91891
5,1.02,0.97,2.39016,5.58363,6.46412,0.80126,1.88673,130.41762
5,1.02,0.965,2.35223,4.38474,6.42308,0.84746,1.82981,102.72797
5,1.02,0.96,2.13638,4.14396,6.96981,0.66588,1.83773,75.50783
5,1.02,0.955,1.66171,4.46666,5.72917,0.79106,2.00885,67.57547
5,1.02,0.95,1.71729,3.85263,7.10379,0.63475,2.17276,64.81951
5,1.02,0.945,1.87062,3.85642,6.40407,0.68965,2.22791,70.98311
5,1.02,0.94,1.86533,3.76072,7.12056,0.68372,2.25541,77.02739
5,1.02,0.9349999999999999,1.79895,3.84987,6.81451,0.66451,2.17374,68.17182
5,1.02,0.9299999999999999,1.82865,3.84987,7.10341,0.60449,2.20085,66.53036
5,1.02,0.925,1.68793,3.40213,7.11163,0.45494,2.35627,43.77774
5,1.02,0.9199999999999999,1.62847,3.40213,7.19617,0.44080,2.48989,43.75790
5,1.02,0.915,1.59423,3.10775,7.19617,0.41545,2.62434,38.87205
5,1.02,0.91,1.48170,3.10775,6.97293,0.50989,2.62434,42.96556
5,1.02,0.905,1.48170,3.10775,6.97293,0.51116,2.62434,43.07214
5,1.025,0.99,2.33093,4.89644,4.01681,0.71620,1.40954,46.28139
5,1.025,0.985,2.24939,5.48312,4.06398,0.87273,1.66840,72.98338
5,1.025,0.98,2.05666,5.40099,3.36471,0.89806,1.78657,59.96648
5,1.025,0.975,2.37419,4.99964,5.56240,0.83745,1.86366,103.04945
5,1.025,0.97,2.39298,5.69955,5.86105,0.90373,1.95568,141.28397
5,1.025,0.965,2.63599,4.25216,5.72246,0.87156,1.81147,101.26638
5,1.025,0.96,2.50166,4.04403,6.36893,0.72506,1.74774,81.65073
5,1.025,0.955,1.86379,4.35895,5.62254,0.85335,1.95562,76.22925
5,1.025,0.95,1.89409,3.80510,6.96637,0.64958,2.16476,70.60147
5,1.025,0.945,1.99517,3.83921,6.28019,0.68791,2.31596,76.64045
5,1.025,0.94,1.98347,3.73984,7.44140,0.64302,2.40072,85.21206
5,1.025,0.9349999999999999,1.79466,3.84987,7.12156,0.63701,2.31378,72.52225
5,1.025,0.9299999999999999,1.82429,3.84987,7.57778,0.59556,2.34671,74.38206
5,1.025,0.925,1.68391,3.40213,7.68451,0.44822,2.35627,46.49464
5,1.025,0.9199999999999999,1.62459,3.40213,7.77586,0.44080,2.48989,47.17018
5,1.025,0.915,1.60147,3.10775,7.77586,0.41545,2.62434,42.19406
5,1.025,0.91,1.48170,3.10775,6.97293,0.50989,2.62434,42.96556
5,1.025,0.905,1.48170,3.10775,6.97293,0.51116,2.62434,43.07214
5,1.03,0.99,1.93931,4.34439,3.39158,0.80720,1.42862,32.95172
5,1.03,0.985,1.84033,4.69683,3.45057,0.89825,1.53489,41.12139
5,1.03,0.98,1.87175,4.69730,2.97867,0.98668,1.67257,43.21980
5,1.03,0.975,2.00148,4.12020,4.31748,0.94548,1.89614,63.82949
5,1.03,0.97,1.99855,4.16422,5.17991,1.01500,2.01586,88.20557
5,1.03,0.965,2.61220,3.07542,4.81505,1.05266,1.81838,74.04273
5,1.03,0.96,2.39641,3.34185,5.94194,0.98948,1.77711,83.67546
5,1.03,0.955,1.88046,4.14296,5.36299,1.03113,1.83850,79.20609
5,1.03,0.95,1.98853,3.84556,7.21790,0.79547,2.05965,90.43138
5,1.03,0.945,1.94740,3.67635,6.65961,0.77374,2.20351,81.28836
5,1.03,0.94,1.93599,3.52267,7.98774,0.73720,2.28415,91.72926
5,1.03,0.9349999999999999,1.75169,3.76070,7.11395,0.66784,2.20143,68.89936
5,1.03,0.9299999999999999,1.78488,3.76070,7.87028,0.56363,2.29202,68.24602
5,1.03,0.925,1.64753,3.32333,7.68451,0.42305,2.38182,42.39619
5,1.03,0.9199999999999999,1.59536,3.32333,7.77586,0.42302,2.51689,43.89385
5,1.03,0.915,1.60147,3.10296,7.77586,0.39869,2.65280,40.86771
5,1.03,0.91,1.48170,3.10296,6.97293,0.48932,2.65280,41.61496
5,1.03,0.905,1.48170,3.10296,6.97293,0.49053,2.65280,41.71818
5,1.035,0.99,1.69768,3.15259,3.24232,0.77214,1.42048,19.03307
5,1.035,0.985,1.74505,3.55664,3.24864,0.93323,1.60178,30.14011
5,1.035,0.98,1.74033,3.39307,3.06146,1.00820,1.67930,30.60735
5,1.035,0.975,1.90820,2.92328,4.59773,0.94224,1.75376,42.38105
5,1.035,0.97,1.97543,3.13254,5.30205,1.05089,1.90526,65.69246
5,1.035,0.965,2.57192,2.40100,5.39683,1.17786,1.63852,64.31857
5,1.035,0.96,2.41216,1.86191,6.08265,1.12346,1.69892,52.14198
5,1.035,0.955,1.82503,2.84988,5.49578,1.10958,1.82359,57.83786
5,1.035,0.95,2.03734,3.62652,7.91454,0.89124,2.10355,109.62905
5,1.035,0.945,1.89363,3.54821,7.32733,0.95457,2.29371,107.79402
5,1.035,0.94,1.88253,3.39989,7.98936,0.86079,2.37766,104.65614
5,1.035,0.9349999999999999,1.72410,3.62962,7.11539,0.78816,2.31373,81.19868
5,1.035,0.9299999999999999,1.67249,3.62962,7.87187,0.66517,2.31268,73.51080
5,1.035,0.925,1.55365,3.27948,7.68607,0.49927,2.40329,46.98971
5,1.035,0.9199999999999999,1.52657,3.27948,7.77586,0.47813,2.51689,46.84748
5,1.035,0.915,1.59022,3.10296,7.77586,0.45063,2.65280,45.86823
5,1.035,0.91,1.48170,3.10296,6.97293,0.55308,2.65280,47.03715
5,1.035,0.905,1.48170,3.10296,6.97293,0.55445,2.65280,47.15382
5,1.04,0.99,1.43608,2.72715,2.31529,0.71854,1.23225,8.02865
5,1.04,0.985,1.58961,3.52463,2.45640,0.80407,1.30474,14.43836
5,1.04,0.98,1.60569,3.46645,2.09650,0.83717,1.34367,13.12650
5,1.04,0.975,1.79239,3.02083,3.09381,0.78955,1.19757,15.83907
5,1.04,0.97,1.88445,3.18260,3.43813,0.84588,1.26407,22.04800
5,1.04,0.965,2.22637,2.73296,4.11775,0.96549,1.53979,37.24784
5,1.04,0.96,2.11011,2.49691,5.07184,1.04781,1.42373,39.86443
5,1.04,0.955,1.57092,3.29114,4.83008,0.97635,1.72352,42.02167
5,1.04,0.95,1.86230,3.79541,5.75067,0.83520,2.08833,70.89501
5,1.04,0.945,1.74154,3.50593,5.22576,0.96997,2.38419,73.78775
5,1.04,0.94,1.73133,3.22660,5.85443,0.83206,2.47145,67.25397
5,1.04,0.9349999999999999,1.58563,3.44463,5.21400,0.81095,2.40500,55.54210
5,1.04,0.9299999999999999,1.53817,3.44463,5.86877,0.71796,2.40928,53.78693
5,1.04,0.925,1.42887,3.11233,7.38318,0.56239,2.55905,47.25385
5,1.04,0.9199999999999999,1.40397,3.11233,7.46944,0.46601,2.51689,38.28160
5,1.04,0.915,1.50319,3.10296,7.46944,0.43921,2.65280,40.59295
5,1.04,0.91,1.48170,3.10296,6.97293,0.52852,2.65280,44.94887
5,1.04,0.905,1.48170,3.10296,6.97293,0.52983,2.65280,45.06037
5,1.045,0.99,1.45363,2.12018,2.35709,0.71587,1.01418,5.27417
5,1.045,0.985,1.57924,2.65756,2.39890,0.76418,1.11195,8.55508
5,1.045,0.98,1.63824,2.65444,2.23393,0.81263,1.04923,8.28289
5,1.045,0.975,1.91125,2.39141,3.47293,0.75577,0.95361,11.43994
5,1.045,0.97,1.85500,3.37876,4.03913,0.84026,0.88606,18.84813
5,1.045,0.965,2.03882,2.82372,4.49281,0.92793,1.12061,26.89599
5,1.045,0.96,1.93235,2.64331,5.35768,1.03105,1.01106,28.52755
5,1.045,0.955,1.48370,3.61989,4.83193,0.96893,1.55860,39.19127
5,1.045,0.95,1.75890,4.47499,4.97302,0.91452,1.90333,68.13315
5,1.045,0.945,1.46332,4.63908,4.58207,1.05050,2.38419,77.90609
5,1.045,0.94,1.49401,3.39333,5.40268,0.90115,2.47145,61.00095
5,1.045,0.9349999999999999,1.45408,3.73403,4.81167,0.90655,2.40500,56.95981
5,1.045,0.9299999999999999,1.27767,3.73403,5.45447,0.88155,2.40928,55.26896
5,1.045,0.925,1.17507,3.37381,7.24061,0.67597,2.55905,49.65506
5,1.045,0.9199999999999999,1.23820,3.37381,7.32520,0.55832,2.51689,43.00131
5,1.045,0.915,1.23820,3.00265,7.32520,0.53035,2.65280,38.31650
5,1.045,0.91,1.48170,3.10296,6.81159,0.63286,2.65280,52.57696
5,1.045,0.905,1.48170,3.10296,6.81159,0.59956,2.65280,49.81107
5,1.05,0.99,1.45926,1.73219,2.28972,0.59134,1.04651,3.58177
5,1.05,0.985,1.60686,2.10280,2.23914,0.65561,1.16934,5.80028
5,1.05,0.98,1.66923,2.11989,2.33113,0.68503,1.03640,5.85644
5,1.05,0.975,1.99971,1.92851,3.37002,0.64115,1.00200,8.34932
5,1.05,0.97,1.96506,2.84121,3.51974,0.58487,0.90578,10.41046
5,1.05,0.965,2.09526,2.44317,3.25635,0.66266,0.89923,9.93306
5,1.05,0.96,2.14171,2.28707,3.77200,0.74653,0.86937,11.99124
5,1.05,0.955,1.75308,3.13203,3.40186,0.74059,0.89641,12.40026
5,1.05,0.95,2.07825,3.87189,4.18095,0.64503,0.98134,21.29588
5,1.05,0.945,2.06905,4.01386,3.85227,0.83173,2.36138,62.83424
5,1.05,0.94,1.94216,3.03742,4.58395,0.70454,2.46625,46.98595
5,1.05,0.9349999999999999,1.89025,3.78988,4.08250,0.81116,2.40202,56.98390
5,1.05,0.9299999999999999,1.88227,3.78988,4.96824,0.78878,2.40630,67.26962
5,1.05,0.925,1.88227,3.59373,6.87331,0.62918,2.55589,74.76690
5,1.05,0.9199999999999999,1.23820,3.59373,7.32520,0.53952,2.51689,44.26135
5,1.05,0.915,1.23820,3.70509,7.32520,0.51249,2.65280,45.68776
5,1.05,0.91,1.48170,3.10296,6.81159,0.57055,2.65280,47.40053
5,1.05,0.905,1.48170,3.10296,6.81159,0.54054,2.65280,44.90695
5,1.055,0.99,1.32649,1.41059,2.25162,0.61129,0.96390,2.48242
5,1.055,0.985,1.46066,1.63327,2.24398,0.58685,0.96945,3.04560
5,1.055,0.98,1.51735,1.65340,2.43691,0.58735,0.89941,3.22967
5,1.055,0.975,1.81776,1.52030,3.59304,0.57862,0.88472,5.08307
5,1.055,0.97,1.78626,2.39446,3.50633,0.56096,0.81400,6.84802
5,1.055,0.965,1.90462,2.05660,3.50193,0.60241,0.80812,6.67776
5,1.055,0.96,1.94684,2.00297,4.09210,0.68970,0.73740,8.11557
5,1.055,0.955,1.59357,2.74299,3.64966,0.74005,0.77483,9.14770
5,1.055,0.95,1.88915,3.39094,4.23277,0.68909,0.78878,14.73825
5,1.055,0.945,1.88078,3.53716,3.69753,0.86531,2.36072,50.24810
5,1.055,0.94,1.76544,3.38498,4.11521,0.79499,2.41821,47.27791
5,1.055,0.9349999999999999,1.71826,3.69320,4.00765,0.92590,2.40202,56.56171
5,1.055,0.9299999999999999,1.71100,3.69320,4.65073,0.95363,2.40630,67.43790
5,1.055,0.925,1.71100,3.50205,6.81555,0.85276,2.55589,89.01072
5,1.055,0.9199999999999999,1.23820,3.50205,7.30086,0.74303,2.51689,59.20496
5,1.055,0.915,1.23820,3.70509,7.30086,0.77344,2.65280,68.72195
5,1.055,0.91,1.48170,3.10296,6.91365,0.65790,2.65280,55.47643
5,1.055,0.905,1.48170,3.10296,6.91365,0.62329,2.65280,52.55801
5,1.06,0.99,1.10623,1.40621,2.09743,0.49725,0.89496,1.45198
5,1.06,0.985,1.13506,1.64470,2.15204,0.49628,0.90010,1.79463
5,1.06,0.98,1.13506,1.59501,2.27203,0.50144,0.84943,1.75205
5,1.06,0.975,1.43954,1.52015,3.02696,0.51275,0.83556,2.83791
5,1.06,0.97,1.40759,2.39422,2.96412,0.50323,0.77825,3.91220
5,1.06,0.965,1.34054,2.05640,2.87046,0.50236,0.80502,3.20009
5,1.06,0.96,1.62248,2.00278,3.16056,0.58294,0.73458,4.39780
5,1.06,0.955,1.32806,2.77516,2.69382,0.63486,0.77185,4.86502
5,1.06,0.95,1.27231,3.43071,3.12421,0.59114,0.75934,6.12135
5,1.06,0.945,1.98971,3.53428,2.72915,0.74231,2.27261,32.37628
5,1.06,0.94,1.86769,3.38223,3.29599,0.72515,2.38403,35.99437
5,1.06,0.9349999999999999,1.81777,3.69019,3.20984,0.84456,2.36808,43.06247
5,1.06,0.9299999999999999,1.70418,3.69019,3.80044,0.89774,2.37230,50.90003
5,1.06,0.925,1.70418,3.50205,5.59986,0.80278,2.60611,69.92081
5,1.06,0.9199999999999999,1.23820,3.50205,5.99861,0.70852,2.56635,47.29688
5,1.06,0.915,1.23820,3.70509,5.99861,0.73752,2.79466,56.72079
5,1.06,0.91,1.48170,3.10296,6.49795,0.62735,2.79466,52.37791
5,1.06,0.905,1.48170,3.10296,6.49795,0.59434,2.79466,49.62249
5,1.065,0.99,1.10623,1.22466,2.11663,0.51278,0.87484,1.28638
5,1.065,0.985,1.13506,1.44405,2.25500,0.51178,0.90711,1.71591
5,1.065,0.98,1.13506,1.41223,2.38074,0.51710,0.87239,1.72156
5,1.065,0.975,1.43954,1.39492,3.17468,0.54308,0.85814,2.97097
5,1.065,0.97,1.40759,2.19700,3.19575,0.53300,0.83596,4.40345
5,1.065,0.965,1.34054,2.08306,3.09478,0.53208,0.80977,3.72349
5,1.065,0.96,1.62248,2.02874,3.40754,0.64380,0.76477,5.52238
5,1.065,0.955,1.32806,2.81114,2.90433,0.69363,0.80358,6.04372
5,1.065,0.95,1.27231,3.47519,3.15454,0.66662,0.79055,7.35053
5,1.065,0.945,1.98971,3.60794,2.75564,0.86379,1.47885,25.26995
5,1.065,0.94,1.86769,3.44927,3.33915,0.76982,1.55136,25.69024
5,1.065,0.9349999999999999,1.81777,3.76334,3.25188,0.92578,1.54097,31.73586
5,1.065,0.9299999999999999,1.70418,3.76334,3.50809,1.00305,1.58708,35.81639
5,1.065,0.925,1.70418,3.65419,5.32870,0.95591,1.74350,55.30558
5,1.065,0.9199999999999999,1.23820,3.65419,5.96312,0.89320,1.71694,41.37690
5,1.065,0.915,1.23820,3.70509,5.96312,0.92975,1.74619,44.41444
5,1.065,0.91,1.48170,3.10296,6.49795,0.98275,1.74619,51.26812
5,1.065,0.905,1.48170,3.10296,6.49795,0.93879,1.74619,48.97475
5,1.07,0.99,1.10623,1.23588,1.87155,0.50643,0.89167,1.15542
5,1.07,0.985,1.13506,1.44405,1.98244,0.52291,0.92455,1.57094
5,1.07,0.98,1.13506,1.41223,2.09298,0.52923,0.89215,1.58405
5,1.07,0.975,1.43954,1.39492,2.83334,0.55952,0.89215,2.84006
5,1.07,0.97,1.40759,2.19700,2.85215,0.55916,0.86909,4.28631
5,1.07,0.965,1.34054,2.08306,2.76204,0.57387,0.84185,3.72616
5,1.07,0.96,1.62248,2.02874,3.04118,0.67359,0.82570,5.56758
5,1.07,0.955,1.32806,2.81114,2.74504,0.70260,0.86760,6.24708
5,1.07,0.95,1.27231,3.47519,2.98152,0.68115,0.85354,7.66435
5,1.07,0.945,1.98971,3.60794,2.60450,0.90541,1.59667,27.02928
5,1.07,0.94,1.86769,3.44927,3.15601,0.80974,1.69555,27.91437
5,1.07,0.9349999999999999,1.81777,3.76334,3.07353,0.90613,1.58445,30.18704
5,1.07,0.9299999999999999,1.70418,3.76334,3.31569,0.95864,1.63231,33.27532
5,1.07,0.925,1.70418,3.65419,4.76297,0.91359,1.79320,48.59176
5,1.07,0.9199999999999999,1.23820,3.65419,5.33003,0.83022,1.71694,34.37619
5,1.07,0.915,1.23820,3.70509,5.33003,0.86419,1.74619,36.89980
5,1.07,0.91,1.48170,3.10296,5.80808,0.98275,1.74619,45.82511
5,1.07,0.905,1.48170,3.10296,5.80808,0.93879,1.74619,43.77521
5,1.075,0.99,1.10623,1.20452,1.86331,0.61065,0.91378,1.38542
5,1.075,0.985,1.13506,1.40741,1.96736,0.60120,0.93634,1.76921
5,1.075,0.98,1.13506,1.37641,2.07779,0.60847,0.90352,1.78461
5,1.075,0.975,1.43954,1.35953,2.71452,0.58452,0.90352,2.80572
5,1.075,0.97,1.40759,2.14126,2.73254,0.61750,0.87169,4.43311
5,1.075,0.965,1.34054,2.03021,2.64621,0.63995,0.86529,3.98794
5,1.075,0.96,1.62248,1.97727,2.91364,0.71948,0.84868,5.70752
5,1.075,0.955,1.32806,2.73982,2.62992,0.78857,0.92872,7.00831
5,1.075,0.95,1.27231,3.38703,2.86546,0.76450,0.91367,8.62529
5,1.075,0.945,1.98971,3.51641,2.54284,1.01621,1.39171,25.16167
5,1.075,0.94,1.86769,3.36177,3.08130,0.90883,1.47790,25.98561
5,1.075,0.9349999999999999,1.81777,3.71300,3.00076,1.01702,1.44202,29.70281
5,1.075,0.9299999999999999,1.70418,3.71300,3.23719,1.13682,1.48324,34.53916
5,1.075,0.925,1.70418,3.60531,4.68142,1.08340,1.62943,50.77590
5,1.075,0.9199999999999999,1.23820,3.60531,5.23877,0.87293,1.77889,36.31547
5,1.075,0.915,1.23820,3.70509,5.23877,0.90866,1.80920,39.50994
5,1.075,0.91,1.48170,3.10296,5.70864,1.03331,1.80920,49.06658
5,1.075,0.905,1.48170,3.10296,5.70864,0.98709,1.80920,46.87169
5,1.08,0.99,1.03112,1.20452,1.56017,0.73483,0.92454,1.31645
5,1.08,0.985,1.03112,1.40741,1.64729,0.73061,0.94160,1.64457
5,1.08,0.98,1.03112,1.37641,1.89701,0.73944,0.92022,1.83197
5,1.08,0.975,1.13533,1.35953,2.29413,0.72112,0.92022,2.34978
5,1.08,0.97,1.12456,2.14126,2.38932,0.77959,0.90176,4.04468
5,1.08,0.965,1.08406,2.03021,2.34567,0.76222,0.89514,3.52235
5,1.08,0.96,1.32011,1.97727,2.34472,0.86704,0.87797,4.65890
5,1.08,0.955,1.18888,2.73982,2.11640,0.91582,0.87797,5.54301
5,1.08,0.95,1.15116,3.38703,2.30594,0.92506,0.86374,7.18384
5,1.08,0.945,1.05734,3.51641,2.04632,1.20675,0.86729,7.96292
5,1.08,0.94,0.99249,3.36177,2.23892,1.15253,0.82497,7.10273
5,1.08,0.9349999999999999,0.99249,3.71300,2.18041,1.46379,0.80494,9.46751
5,1.08,0.9299999999999999,0.93047,3.71300,2.35220,1.53642,1.48324,18.51933
5,1.08,0.925,0.93047,3.60531,3.40160,1.46422,1.62943,27.22520
5,1.08,0.9199999999999999,1.23820,3.60531,3.80658,0.99507,1.77889,30.07938
5,1.08,0.915,1.23820,3.70509,3.80658,1.03579,1.80920,32.72530
5,1.08,0.91,1.48170,3.10296,4.25575,1.02264,1.80920,36.20098
5,1.08,0.905,1.48170,3.10296,4.25575,0.97689,1.80920,34.58160
5,1.085,0.99,1.03112,0.97065,1.35748,0.72998,0.99241,0.98426
5,1.085,0.985,1.03112,0.97034,1.43328,0.73395,1.01073,1.06382
5,1.085,0.98,1.03112,0.94896,1.40790,0.72995,0.98778,0.99331
5,1.085,0.975,1.13533,0.91156,1.70263,0.72995,0.98778,1.27053
5,1.085,0.97,1.12456,1.44709,1.77328,0.78914,0.96797,2.20431
5,1.085,0.965,1.08406,1.40694,1.77328,0.79365,0.96087,2.06253
5,1.085,0.96,1.32011,1.40150,1.83479,0.90280,0.94243,2.88820
5,1.085,0.955,1.18888,1.40150,1.65613,0.95359,0.94243,2.47990
5,1.085,0.95,1.15116,1.76186,1.58667,0.96322,0.94243,2.92124
5,1.085,0.945,1.05734,1.83573,1.54925,1.19983,0.94631,3.41428
5,1.085,0.94,0.99249,1.75500,1.54925,1.14592,0.90013,2.78347
5,1.085,0.9349999999999999,0.99249,1.75500,1.50876,1.45539,0.87828,3.35923
5,1.085,0.9299999999999999,0.93047,1.75500,1.66679,1.58870,1.61593,6.98758
5,1.085,0.925,0.93047,2.70094,1.44034,1.51404,1.77520,9.72896
5,1.085,0.9199999999999999,1.23820,2.70094,2.09486,1.02892,1.93803,13.97016
5,1.085,0.915,1.23820,3.70509,2.09486,1.07103,1.80432,18.57204
5,1.085,0.91,1.48170,3.10296,1.84229,1.05743,1.80432,16.16070
5,1.085,0.905,1.48170,3.10296,1.84229,1.04597,1.80432,15.98558
5,1.09,0.99,1.03112,0.96546,1.27473,0.75485,0.99241,0.95064
5,1.09,0.985,1.03112,0.96546,1.34591,0.75896,1.01073,1.02781
5,1.09,0.98,1.03112,0.96625,1.32208,0.75794,0.98778,0.98617
5,1.09,0.975,1.13533,0.93554,1.51045,0.75794,0.98778,1.20113
5,1.09,0.97,1.12456,1.30609,1.59728,0.81940,0.96797,1.86078
5,1.09,0.965,1.08406,1.26985,1.59728,0.86984,0.96087,1.83775
5,1.09,0.96,1.32011,1.24294,1.83479,1.02828,0.94243,2.91745
5,1.09,0.955,1.18888,1.24294,1.65613,1.11108,0.94243,2.56254
5,1.09,0.95,1.15116,1.24294,1.58667,1.13339,0.94243,2.42494
5,1.09,0.945,1.05734,1.29505,1.54925,1.45377,0.94631,2.91845
5,1.09,0.94,0.99249,1.23810,1.54925,1.38845,0.90013,2.37925
5,1.09,0.9349999999999999,0.99249,1.23810,1.50876,1.76342,0.87828,2.87139
5,1.09,0.9299999999999999,0.93047,1.23810,1.66679,1.92494,1.61593,5.97282
5,1.09,0.925,0.93047,1.94147,1.44034,1.77561,1.77520,8.20151
5,1.09,0.9199999999999999,1.23820,1.94147,2.09486,1.02892,1.93803,10.04193
5,1.09,0.915,1.23820,3.70509,2.09486,1.07103,1.80432,18.57204
5,1.09,0.91,1.48170,3.10296,1.84229,1.05743,1.80432,16.16070
5,1.09,0.905,1.48170,3.10296,1.84229,1.04597,1.80432,15.98558
5,1.095,0.99,1.03112,0.96546,1.27473,0.74949,1.02783,0.97757
5,1.095,0.985,1.03112,0.96546,1.34591,0.77975,1.04680,1.09366
5,1.095,0.98,1.03112,0.96625,1.32208,0.77871,1.02303,1.04935
5,1.095,0.975,1.13533,0.93554,1.51045,0.77871,1.02303,1.27807
5,1.095,0.97,1.12456,1.30609,1.59728,0.84185,1.00251,1.97998
5,1.095,0.965,1.08406,1.26985,1.59728,0.89512,1.00251,1.97313
5,1.095,0.96,1.32011,1.24294,1.83479,1.08072,0.98328,3.19913
5,1.095,0.955,1.18888,1.24294,1.65613,1.08746,0.98328,2.61679
5,1.095,0.95,1.15116,1.24294,1.58667,1.17954,0.98328,2.63306
5,1.095,0.945,1.05734,1.29505,1.54925,1.51296,0.98733,3.16892
5,1.095,0.94,0.99249,1.23810,1.54925,1.58559,0.98733,2.98028
5,1.095,0.9349999999999999,0.99249,1.23810,1.50876,2.01381,0.96336,3.59675
5,1.095,0.9299999999999999,0.93047,1.23810,1.66679,2.19826,1.77247,7.48165
5,1.095,0.925,0.93047,1.94147,1.44034,2.02773,1.77247,9.35165
5,1.095,0.9199999999999999,1.23820,1.94147,2.09486,0.97333,1.93505,9.48484
5,1.095,0.915,1.23820,3.70509,2.09486,1.03170,1.80155,17.86258
5,1.095,0.91,1.48170,3.10296,1.84229,1.04043,1.80155,15.87641
5,1.095,0.905,1.48170,3.10296,1.84229,1.02915,1.80155,15.70438
5,1.1,0.99,0.99680,1.00000,1.21976,0.76731,1.00000,0.93293
5,1.1,0.985,0.99680,1.00000,1.22671,0.79829,1.00000,0.97614
5,1.1,0.98,0.99680,1.00000,1.22642,0.80219,1.00000,0.98067
5,1.1,0.975,1.06500,1.00000,1.40116,0.80219,1.00000,1.19705
5,1.1,0.97,1.05490,1.00000,1.48170,0.80219,1.00000,1.25386
5,1.1,0.965,1.05490,1.00000,1.48170,0.88893,1.00000,1.38944
5,1.1,0.96,1.28460,1.00000,1.70203,1.07324,1.00000,2.34657
5,1.1,0.955,1.15690,1.00000,1.53630,1.13087,1.00000,2.00995
5,1.1,0.95,1.12020,1.00000,1.47187,1.22663,1.00000,2.02244
5,1.1,0.945,1.02890,1.00000,1.43291,1.57335,1.00486,2.33090
5,1.1,0.94,0.96580,1.00000,1.43291,1.64889,1.00486,2.29299
5,1.1,0.9349999999999999,0.96580,1.00000,1.43446,2.03437,1.00486,2.83212
5,1.1,0.9299999999999999,0.96580,1.00000,1.57803,2.42441,1.00486,3.71290
5,1.1,0.925,0.96580,1.00000,1.56574,2.23633,1.00486,3.39820
5,1.1,0.9199999999999999,1.23820,1.00000,2.40533,1.02208,1.09703,3.33940
5,1.1,0.915,1.23820,1.00000,2.40533,1.11749,1.02134,3.39924
5,1.1,0.91,1.48170,0.83748,2.34918,1.04110,1.02134,3.09969
5,1.1,0.905,1.48170,0.83748,2.34918,1.02982,1.02134,3.06610
6,1.01,0.99,2.84229,7.69647,4.98174,0.58376,1.38918,88.37623
6,1.01,0.985,2.62205,6.89615,5.18578,0.60077,1.30687,73.62108
6,1.01,0.98,2.63445,6.12160,5.26750,0.60759,1.75585,90.62650
6,1.01,0.975,2.41228,5.70364,5.84310,0.73632,1.70853,101.13806
6,1.01,0.97,2.60803,5.00467,5.88465,0.68632,1.78641,94.17082
6,1.01,0.965,2.52310,4.98540,6.53111,0.68493,1.69734,95.50751
6,1.01,0.96,2.50300,4.54163,6.35750,0.63937,1.82192,84.18607
6,1.01,0.955,2.25209,4.69769,6.84597,0.59405,1.88864,81.25983
6,1.01,0.95,1.85987,4.49245,6.57531,0.64469,1.84139,65.21981
6,1.01,0.945,1.97688,4.13163,6.85988,0.66680,2.02628,75.70345
6,1.01,0.94,1.89875,3.89272,6.61049,0.66044,2.34229,75.58325
6,1.01,0.9349999999999999,1.84857,3.95112,6.63556,0.65146,2.45573,77.53541
6,1.01,0.9299999999999999,1.75633,3.87777,6.48997,0.65914,2.44138,71.12831
6,1.01,0.925,1.72919,3.81304,6.62176,0.73747,2.36636,76.19275
6,1.01,0.9199999999999999,1.69570,3.62591,7.58156,0.65329,2.43598,74.18319
6,1.01,0.915,1.60921,3.62591,7.76916,0.65280,2.36505,69.98766
6,1.01,0.91,1.63341,3.68624,7.51922,0.61403,2.53230,70.39693
6,1.01,0.905,1.59907,3.18209,7.51922,0.58285,2.59323,57.82908
6,1.015,0.99,2.77008,6.49207,4.09001,0.64044,1.30600,61.52081
6,1.015,0.985,2.55934,6.29277,4.23544,0.70259,1.28970,61.80971
6,1.015,0.98,2.61234,5.62192,4.32257,0.70412,1.69066,75.57197
6,1.015,0.975,2.31450,5.07329,5.22117,0.85979,1.62118,85.45525
6,1.015,0.97,2.43682,4.81802,5.56934,0.86040,1.70857,96.12327
6,1.015,0.965,2.39347,4.84652,6.42566,0.87383,1.58752,103.40022
6,1.015,0.96,2.41108,4.81937,6.07819,0.85393,1.70902,103.07365
6,1.015,0.955,2.16938,4.44356,6.46328,0.81847,1.84551,94.11077
6,1.015,0.95,1.81314,4.28592,6.20774,0.86664,1.84900,77.30054
6,1.015,0.945,1.94109,3.94027,6.64643,0.92368,2.09181,98.22111
6,1.015,0.94,1.85747,3.77073,6.67599,0.92753,2.41805,104.87064
6,1.015,0.9349999999999999,1.80838,3.82730,6.91403,0.94891,2.53515,115.11785
6,1.015,0.9299999999999999,1.71815,3.75625,6.76233,1.01564,2.52033,111.71416
6,1.015,0.925,1.69160,3.69355,6.89965,1.13634,2.44289,119.66836
6,1.015,0.9199999999999999,1.65884,3.62591,7.89973,1.01124,2.51476,120.83259
6,1.015,0.915,1.60921,3.62591,7.89010,0.85747,2.42903,95.88761
6,1.015,0.91,1.63341,3.68624,7.63626,0.80654,2.60081,96.44833
6,1.015,0.905,1.59907,3.18209,7.63626,0.67264,2.66339,69.61096
6,1.02,0.99,3.11000,6.47220,3.34880,0.65549,1.48850,65.76848
6,1.02,0.985,2.92975,6.47235,3.62608,0.70276,1.41237,68.24744
6,1.02,0.98,3.02930,5.74303,3.61167,0.72584,1.83002,83.46195
6,1.02,0.975,2.74347,5.11494,4.68790,0.86774,1.74675,99.70983
6,1.02,0.97,2.94948,4.64353,5.17721,0.87684,1.84224,114.53982
6,1.02,0.965,2.81546,4.90139,6.00086,0.83978,1.57795,109.73372
6,1.02,0.96,2.71400,4.92220,5.87659,0.85679,1.62144,109.06132
6,1.02,0.955,2.43043,4.53837,6.76834,0.82860,1.75370,108.48371
6,1.02,0.95,2.04653,4.37737,6.56086,0.96336,1.75701,99.48403
6,1.02,0.945,2.02614,4.12865,7.02450,1.10704,1.98774,129.30533
6,1.02,0.94,1.94219,3.79546,6.57960,1.11165,2.31955,125.06325
6,1.02,0.9349999999999999,1.89087,3.81842,7.12781,1.12799,2.43189,141.17232
6,1.02,0.9299999999999999,1.69969,3.74753,6.97141,1.05196,2.44107,114.02917
6,1.02,0.925,1.67342,3.68498,6.86524,1.17698,2.36607,117.89388
6,1.02,0.9199999999999999,1.61503,3.61750,7.78027,1.06943,2.48954,121.01947
6,1.02,0.915,1.57543,3.61750,7.54707,0.90681,2.42903,94.74031
6,1.02,0.91,1.59913,3.68624,7.30427,0.85295,2.60081,95.51597
6,1.02,0.905,1.56608,3.18209,7.30427,0.71135,2.66339,68.96348
6,1.025,0.99,2.65745,5.77124,3.22626,0.62154,1.27491,39.20860
6,1.025,0.985,2.68373,5.81975,3.63244,0.64695,1.19655,43.91795
6,1.025,0.98,2.65011,5.14491,3.76090,0.80805,1.59800,66.21376
6,1.025,0.975,2.43281,4.96649,5.02697,0.96868,1.57620,92.73838
6,1.025,0.97,2.68599,4.86478,4.97355,0.89011,1.68048,97.20984
6,1.025,0.965,2.53388,5.05315,5.43302,0.85676,1.44647,86.21060
6,1.025,0.96,2.53239,5.35973,5.48620,0.88444,1.51215,99.58791
6,1.025,0.955,2.14557,4.50674,6.48219,0.81742,1.67408,85.77251
6,1.025,0.95,1.84910,4.33768,6.42111,0.93173,1.68963,81.07920
6,1.025,0.945,1.92545,4.11578,6.88797,1.07980,1.93185,113.86476
6,1.025,0.94,1.84567,3.74602,6.47155,1.12106,2.25562,113.14313
6,1.025,0.9349999999999999,1.79690,3.80016,7.00121,1.13259,2.34859,127.16812
6,1.025,0.9299999999999999,1.61522,3.72961,6.84760,1.08070,2.35745,105.09532
6,1.025,0.925,1.59026,3.66736,6.86812,1.20914,2.28502,110.66830
6,1.025,0.9199999999999999,1.55857,3.60019,7.69294,1.08686,2.40426,112.79731
6,1.025,0.915,1.56515,3.60019,7.46235,0.84595,2.34583,83.44500
6,1.025,0.91,1.58869,3.68055,7.22228,0.80955,2.51172,85.87011
6,1.025,0.905,1.56608,3.17718,7.22228,0.65845,2.59954,61.51013
6,1.03,0.99,2.15299,5.25551,2.86717,0.61248,1.26445,25.12470
6,1.03,0.985,2.29162,5.39154,3.44620,0.70078,1.16822,34.85804
6,1.03,0.98,2.43591,4.72713,3.46512,0.91237,1.47920,53.84875
6,1.03,0.975,2.14640,4.17721,4.16704,1.20463,1.52153,68.47941
6,1.03,0.97,2.50136,4.12558,4.70958,1.09382,1.61853,86.04161
6,1.03,0.965,2.47932,4.19748,5.02446,1.08365,1.34863,76.41764
6,1.03,0.96,2.67382,5.51841,5.06190,1.00753,1.43026,107.62997
6,1.03,0.955,2.28500,4.69757,6.18448,0.95407,1.60527,101.67012
6,1.03,0.95,2.04166,4.54159,6.65669,1.02545,1.62018,102.54784
6,1.03,0.945,2.06408,4.10542,7.35962,1.19286,1.90726,141.88644
6,1.03,0.94,1.83947,3.77900,7.42239,1.13465,2.26090,132.35999
6,1.03,0.9349999999999999,1.79086,3.87451,8.02988,1.10570,2.35409,145.02643
6,1.03,0.9299999999999999,1.60980,3.80258,7.85370,1.05504,2.36297,119.85393
6,1.03,0.925,1.58492,3.73911,7.97895,1.18043,2.29037,127.83917
6,1.03,0.9199999999999999,1.55333,3.67063,8.20323,1.06105,2.40989,119.59819
6,1.03,0.915,1.55989,3.67063,7.95736,0.82526,2.35132,88.41135
6,1.03,0.91,1.58335,3.75256,8.03662,0.78975,2.51172,94.71958
6,1.03,0.905,1.56608,3.23934,8.03662,0.65203,2.59954,69.10508
6,1.035,0.99,1.82956,4.39258,2.85858,0.63905,1.17238,17.21144
6,1.035,0.985,1.92607,4.72648,3.63713,0.71251,1.08085,25.49915
6,1.035,0.98,2.03040,4.07522,3.63381,0.83551,1.43342,36.00964
6,1.035,0.975,1.90064,3.99260,4.03481,1.13710,1.58141,55.05819
6,1.035,0.97,1.91549,4.13604,4.35301,1.01337,1.64665,57.54654
6,1.035,0.965,2.24295,4.34508,5.03911,0.99076,1.35098,65.73371
6,1.035,0.96,2.49975,4.90132,5.13272,0.91132,1.38559,79.40781
6,1.035,0.955,2.13625,4.17226,6.42724,0.87906,1.57577,79.35211
6,1.035,0.95,1.90875,4.03373,6.24029,0.96935,1.64133,76.44280
6,1.035,0.945,1.99064,3.63082,6.92183,1.22211,1.98249,121.21030
6,1.035,0.94,1.77402,3.54268,7.09480,1.17301,2.35008,122.91816
6,1.035,0.9349999999999999,1.72714,3.75278,7.67548,1.13555,2.44694,138.23453
6,1.035,0.9299999999999999,1.55252,3.68310,7.50707,1.08353,2.52085,117.24899
6,1.035,0.925,1.52852,3.62163,7.62680,1.22184,2.45197,126.48810
6,1.035,0.9199999999999999,1.50012,3.55530,8.06692,1.09828,2.42897,114.77512
6,1.035,0.915,1.53332,3.55530,7.95736,0.85422,2.32890,86.29769
6,1.035,0.91,1.56010,3.75256,8.03662,0.78797,2.48777,92.22985
6,1.035,0.905,1.56608,3.23934,8.03662,0.65056,2.59954,68.94892
6,1.04,0.99,1.46501,3.71572,2.13614,0.60011,1.01741,7.09966
6,1.04,0.985,1.61457,3.48655,2.42250,0.64299,0.94655,8.29979
6,1.04,0.98,1.74151,3.16872,2.44432,0.72178,1.11780,10.88272
6,1.04,0.975,1.69540,3.10967,2.98040,0.93529,1.10905,16.29877
6,1.04,0.97,1.73397,3.40087,3.31959,0.85471,1.11542,18.66269
6,1.04,0.965,2.02408,3.29168,3.66338,0.88041,0.92179,19.80820
6,1.04,0.96,2.21853,3.71745,4.01949,0.80981,1.25244,33.62175
6,1.04,0.955,1.89592,3.24336,4.74228,0.78496,1.44664,33.11395
6,1.04,0.95,1.72066,3.35324,4.62007,0.84267,1.69542,38.08394
6,1.04,0.945,1.96460,4.08939,5.59108,1.06439,2.04782,97.90860
6,1.04,0.94,1.77217,3.41272,6.78372,1.02163,2.50465,104.98193
6,1.04,0.9349999999999999,1.72534,3.61376,7.51716,1.00870,2.60788,123.29207
6,1.04,0.9299999999999999,1.55090,3.54666,7.35223,0.96248,2.68666,104.57496
6,1.04,0.925,1.57643,3.48747,7.46948,1.08535,2.61325,116.47265
6,1.04,0.9199999999999999,1.52888,3.42360,7.90053,0.98262,2.58874,105.19314
6,1.04,0.915,1.49089,3.42360,7.88008,0.78899,2.48763,78.94343
6,1.04,0.91,1.46271,3.61355,8.03662,0.72779,2.65733,82.15221
6,1.04,0.905,1.56608,3.23934,8.03662,0.60728,2.65733,65.79273
6,1.045,0.99,1.45566,3.75229,2.04120,0.54860,1.04454,6.38887
6,1.045,0.985,1.60695,3.58027,2.30833,0.57850,0.97348,7.47899
6,1.045,0.98,1.82488,3.25441,2.56588,0.63178,1.09495,10.54154
6,1.045,0.975,1.75251,3.14819,3.36441,0.78125,1.04026,15.08545
6,1.045,0.97,1.74062,3.69734,3.88415,0.78489,1.00724,19.76197
6,1.045,0.965,1.91084,3.61546,4.16239,0.81584,0.85372,20.02854
6,1.045,0.96,1.79060,4.24384,4.55944,0.76128,1.17660,31.03457
6,1.045,0.955,1.55241,3.86756,4.97320,0.76622,1.55703,35.62304
6,1.045,0.95,1.36165,3.99694,5.11125,0.77252,1.57215,33.78483
6,1.045,0.945,1.61391,5.19613,5.63042,1.11237,1.93542,101.65396
6,1.045,0.94,1.45583,3.63464,5.14005,1.14928,2.39687,74.92205
6,1.045,0.9349999999999999,1.41736,3.61376,5.69578,1.01285,2.60167,76.87563
6,1.045,0.9299999999999999,1.27406,3.54666,5.57081,0.91991,2.68259,62.11920
6,1.045,0.925,1.30364,3.48747,5.89748,1.03733,2.60929,72.57319
6,1.045,0.9199999999999999,1.27456,3.42360,7.90377,0.96414,2.58482,85.95051
6,1.045,0.915,1.24289,3.42360,7.88008,0.69734,2.48456,58.09487
6,1.045,0.91,1.21940,3.61355,8.03662,0.64325,2.65404,60.45623
6,1.045,0.905,1.21940,3.11934,8.03662,0.53673,2.65404,43.54622
6,1.05,0.99,1.45273,2.26981,2.20630,0.53993,1.00787,3.95894
6,1.05,0.985,1.64755,2.24038,2.33980,0.53724,0.94639,4.39115
6,1.05,0.98,1.67435,2.03647,2.77947,0.62016,1.04132,6.12028
6,1.05,0.975,1.70667,1.95736,3.32320,0.71101,1.02947,8.12579
6,1.05,0.97,1.88507,2.23043,3.27949,0.64755,0.95292,8.50843
6,1.05,0.965,2.09512,2.95588,3.08301,0.71380,0.79357,10.81519
6,1.05,0.96,1.91030,3.71076,3.43855,0.68377,0.96360,16.05985
6,1.05,0.955,1.65619,3.21134,3.95679,0.68820,1.24140,17.97905
6,1.05,0.95,1.57046,3.33616,4.10340,0.77169,1.25345,20.79558
6,1.05,0.945,1.72076,4.56143,4.63009,1.11917,1.95136,79.36777
6,1.05,0.94,1.59775,3.29941,4.02505,1.08066,2.44325,56.02395
6,1.05,0.9349999999999999,1.59450,3.78019,4.96179,1.09650,2.65202,86.96909
6,1.05,0.9299999999999999,1.53232,3.71001,4.85292,0.99772,2.68259,73.84009
6,1.05,0.925,1.56790,3.64809,5.13750,1.12508,2.60929,86.26657
6,1.05,0.9199999999999999,1.26353,3.36413,7.60319,1.04570,2.58482,87.35556
6,1.05,0.915,1.23213,3.36413,7.88008,0.75632,2.48456,61.37878
6,1.05,0.91,1.21940,3.61355,8.03662,0.72005,2.65404,67.67445
6,1.05,0.905,1.21940,3.11934,8.03662,0.60082,2.65404,48.74546
6,1.055,0.99,1.33403,2.23651,2.05734,0.44439,1.06563,2.90681
6,1.055,0.985,1.51294,2.20751,2.19346,0.44595,1.03557,3.38315
6,1.055,0.98,1.53755,2.02394,2.58486,0.50127,1.06468,4.29296
6,1.055,0.975,1.56722,1.94531,3.03513,0.55283,1.02337,5.23510
6,1.055,0.97,1.73105,2.17254,2.93437,0.49113,0.93716,5.07924
6,1.055,0.965,1.92393,2.97385,2.78044,0.55400,0.79470,7.00387
6,1.055,0.96,1.75422,3.84133,2.77266,0.55899,0.96497,10.07807
6,1.055,0.955,1.56048,3.32434,3.03468,0.52258,1.23300,10.14362
6,1.055,0.95,1.47971,3.45355,3.58928,0.57948,1.28176,13.62383
6,1.055,0.945,1.63453,4.72193,4.04997,0.73920,2.02997,46.90459
6,1.055,0.94,1.51769,3.47274,3.55369,0.95908,2.56909,46.14983
6,1.055,0.9349999999999999,1.51460,3.97878,4.44610,0.97314,2.62923,68.55434
6,1.055,0.9299999999999999,1.45554,3.90491,4.34855,0.91650,2.65954,60.24479
6,1.055,0.925,1.40218,3.90491,4.60355,1.09864,2.58687,71.63718
6,1.055,0.9199999999999999,1.11995,3.60097,6.94555,1.02112,2.56261,73.29607
6,1.055,0.915,1.09212,3.60097,7.88008,0.73855,2.46321,56.37648
6,1.055,0.91,1.21940,3.86794,8.03662,0.70313,2.63124,70.12817
6,1.055,0.905,1.21940,3.86794,8.03662,0.67197,2.63124,67.02064
6,1.06,0.99,1.32938,1.80575,1.86047,0.50455,1.02927,2.31933
6,1.06,0.985,1.50766,1.79433,1.98097,0.51036,1.00994,2.76219
6,1.06,0.98,1.53488,1.75136,2.50854,0.58299,0.96152,3.78002
6,1.06,0.975,1.58520,1.70141,3.11658,0.62736,0.94509,4.98381
6,1.06,0.97,1.75091,1.91146,3.00936,0.56415,0.88917,5.05224
6,1.06,0.965,1.94601,2.61647,2.87370,0.64010,0.81500,7.63326
6,1.06,0.96,1.78153,3.52636,2.91601,0.64586,0.73963,8.75116
6,1.06,0.955,1.58478,3.05176,3.17957,0.58930,1.08579,9.83949
6,1.06,0.95,1.47971,3.18523,3.94091,0.66283,1.12873,13.89650
6,1.06,0.945,1.63453,4.35506,4.20069,0.84535,1.99984,50.55248
6,1.06,0.94,1.51769,4.05049,4.01415,1.14633,2.54854,72.09181
6,1.06,0.9349999999999999,1.51460,3.93654,4.69219,1.29019,2.60821,94.14248
6,1.06,0.9299999999999999,1.45554,3.86345,4.58924,1.21510,2.63827,82.73136
6,1.06,0.925,1.40218,3.86345,4.85835,1.45657,2.56619,98.37600
6,1.06,0.9199999999999999,1.11995,3.60097,7.65013,1.40943,2.54211,110.54133
6,1.06,0.915,1.09212,3.60097,7.92541,0.96650,2.46321,74.20154
6,1.06,0.91,1.21940,3.86794,8.08284,0.98652,2.63124,98.95875
6,1.06,0.905,1.21940,3.86794,8.08284,0.89467,2.63124,89.74573
6,1.065,0.99,1.21363,1.61776,2.13560,0.51666,0.91392,1.97985
6,1.065,0.985,1.36431,1.59966,2.27435,0.52395,0.90760,2.36039
6,1.065,0.98,1.39700,1.58098,2.79466,0.60966,0.88051,3.31336
6,1.065,0.975,1.43254,1.53589,3.15169,0.66126,0.87456,4.01027
6,1.065,0.97,1.63086,1.78829,2.97915,0.60853,0.83570,4.41855
6,1.065,0.965,1.59039,2.44788,3.04521,0.69045,0.76600,6.27003
6,1.065,0.96,1.55513,3.32519,3.08269,0.72953,0.71733,8.34209
6,1.065,0.955,1.39199,3.15176,3.40538,0.68687,1.04941,10.76904
6,1.065,0.95,1.29971,3.31518,3.81866,0.77257,1.09091,13.86727
6,1.065,0.945,2.04110,4.53275,3.90872,0.97929,1.93283,68.44856
6,1.065,0.94,1.89519,4.21153,3.43455,1.19276,2.60238,85.09121
6,1.065,0.9349999999999999,1.89519,4.21934,3.59321,1.28899,2.66331,98.63899
6,1.065,0.9299999999999999,1.82128,4.14100,3.51437,1.21396,2.69400,86.68284
6,1.065,0.925,1.82128,4.14100,3.88247,1.45521,2.62040,111.65624
6,1.065,0.9199999999999999,1.74573,3.60097,6.41308,1.41489,2.59582,148.06703
6,1.065,0.915,1.09212,3.60097,7.96563,0.96650,2.58063,78.13333
6,1.065,0.91,1.21940,3.86794,8.08284,0.98652,2.75667,103.67613
6,1.065,0.905,1.21940,3.86794,8.08284,0.89467,2.75667,94.02393
6,1.07,0.99,1.11843,1.59568,2.18392,0.52238,0.92641,1.88618
6,1.07,0.985,1.11843,1.57783,2.32581,0.50938,0.92641,1.93681
6,1.07,0.98,1.14523,1.55941,2.94128,0.58549,0.89875,2.76406
6,1.07,0.975,1.22161,1.51493,3.31704,0.63504,0.90750,3.53777
6,1.07,0.97,1.39073,1.76389,3.10421,0.58441,0.88788,3.95125
6,1.07,0.965,1.32792,2.41448,3.05496,0.62345,0.81990,5.00689
6,1.07,0.96,1.29849,3.27982,3.15421,0.65874,0.81990,7.25522
6,1.07,0.955,1.29056,3.10875,3.26770,0.60956,1.22931,9.82393
6,1.07,0.95,1.29971,3.26995,3.51856,0.68561,1.27792,13.10191
6,1.07,0.945,2.04110,4.47090,3.60154,0.87939,2.26417,65.43900
6,1.07,0.94,1.89519,4.15407,3.16464,1.22741,2.87963,88.05975
6,1.07,0.9349999999999999,1.89519,4.16176,3.31083,1.34779,2.94705,103.72329
6,1.07,0.9299999999999999,1.82128,4.08450,3.23935,1.42242,2.83446,97.15633
6,1.07,0.925,1.82128,4.08450,3.57865,1.70509,2.75702,125.14715
6,1.07,0.9199999999999999,1.74573,3.60097,5.11525,1.65784,2.73116,145.59699
6,1.07,0.915,1.09212,3.60097,7.03319,1.13246,2.74498,85.98094
6,1.07,0.91,1.21940,3.86794,8.13232,0.98652,2.83675,107.34090
6,1.07,0.905,1.21940,3.86794,8.13232,0.89467,2.83675,97.34751
6,1.075,0.99,1.11843,1.54000,2.01502,0.52937,0.96758,1.77770
6,1.075,0.985,1.11843,1.52276,2.35611,0.52291,0.96758,2.03025
6,1.075,0.98,1.14523,1.50499,2.81761,0.60104,0.94419,2.75591
6,1.075,0.975,1.22161,1.46206,3.17757,0.65191,0.94419,3.49333
6,1.075,0.97,1.39073,1.70233,2.97369,0.59993,0.92956,3.92607
6,1.075,0.965,1.32792,2.33021,2.92651,0.64001,0.89967,5.21422
6,1.075,0.96,1.29849,3.16536,3.02158,0.62169,0.89967,6.94631
6,1.075,0.955,1.29056,3.00026,3.13030,0.62137,0.88948,6.69899
6,1.075,0.95,1.29971,3.15583,3.37062,0.69889,0.93180,9.00329
6,1.075,0.945,2.04110,4.31487,3.45011,0.89642,1.34121,36.53197
6,1.075,0.94,1.89519,4.00909,3.03157,1.37000,1.70972,53.95239
6,1.075,0.9349999999999999,1.89519,4.01652,3.17162,1.50436,1.66991,60.64981
6,1.075,0.9299999999999999,1.82128,3.94195,3.10315,1.58766,1.60612,56.80993
6,1.075,0.925,1.82128,3.94195,3.36298,1.90316,1.60612,73.80176
6,1.075,0.9199999999999999,1.74573,3.55868,4.80698,1.85043,1.60612,88.75412
6,1.075,0.915,1.09212,3.55868,6.60933,1.23672,1.73387,55.08162
6,1.075,0.91,1.21940,3.87435,7.64222,1.07734,1.73387,67.44283
6,1.075,0.905,1.21940,3.87435,7.64222,1.01716,1.73387,63.67508
6,1.08,0.99,1.10721,1.28170,1.53718,0.63412,0.96758,1.33844
6,1.08,0.985,1.10721,1.26632,1.79738,0.65262,0.96758,1.59134
6,1.08,0.98,1.13374,1.26640,2.37586,0.70448,0.94419,2.26898
6,1.08,0.975,1.20936,1.23028,2.72704,0.76512,0.94419,2.93116
6,1.08,0.97,1.37678,1.43246,2.55766,0.71107,0.92956,3.33409
6,1.08,0.965,1.31460,1.40451,2.51412,0.77275,0.89967,3.22723
6,1.08,0.96,1.28546,1.90788,2.64607,0.76009,0.89967,4.43774
6,1.08,0.955,1.27762,1.80837,2.74128,0.71366,0.88948,4.02041
6,1.08,0.95,1.28667,1.80425,2.94300,0.80692,0.93180,5.13700
6,1.08,0.945,2.02062,2.46689,3.09661,0.96598,1.34121,19.99802
6,1.08,0.94,1.87618,2.37854,2.88993,1.53893,1.70972,33.93244
6,1.08,0.9349999999999999,1.87618,2.38295,3.02343,1.68986,1.66991,38.14467
6,1.08,0.9299999999999999,1.80301,2.33870,2.95816,1.70905,1.60612,34.23954
6,1.08,0.925,1.80301,2.33870,3.25423,2.12620,1.60612,46.86006
6,1.08,0.9199999999999999,1.72821,2.31383,4.92523,2.01280,1.60612,63.66993
6,1.08,0.915,1.08116,2.31383,6.19127,1.41984,1.73387,38.12931
6,1.08,0.91,1.21940,2.51907,7.22369,1.05738,1.73387,40.68125
6,1.08,0.905,1.21940,2.51907,7.22369,0.99831,1.73387,38.40856
6,1.085,0.99,1.07203,1.24264,1.50562,0.77487,0.96758,1.50377
6,1.085,0.985,1.07203,1.22773,1.76048,0.80785,0.96758,1.81117
6,1.085,0.98,1.06305,1.22780,2.36696,0.89677,0.94419,2.61584
6,1.085,0.975,1.13533,1.19279,2.71683,0.97396,0.94419,3.38335
6,1.085,0.97,1.13533,1.38880,2.54808,0.90516,0.92956,3.38046
6,1.085,0.965,1.08406,1.36170,2.50471,0.94561,0.89967,3.14547
6,1.085,0.96,1.07296,1.84973,2.63616,0.93011,0.89967,4.37808
6,1.085,0.955,1.07296,1.75325,2.73101,0.83618,0.88948,3.82108
6,1.085,0.95,1.18888,1.74926,2.93198,0.90168,0.93180,5.12300
6,1.085,0.945,1.10831,2.39171,3.12008,1.07941,1.34121,11.97338
6,1.085,0.94,1.05734,2.30604,2.91183,1.53697,1.70972,18.65680
6,1.085,0.9349999999999999,1.05734,2.33875,3.04635,1.68770,1.66991,21.23084
6,1.085,0.9299999999999999,1.01611,2.29533,2.98058,1.70687,1.60612,19.05730
6,1.085,0.925,1.01611,2.29533,3.27889,2.12348,1.60612,26.08172
6,1.085,0.9199999999999999,0.97395,2.27091,4.96256,2.13038,1.60612,37.55590
6,1.085,0.915,0.60930,2.27091,6.54525,1.50278,1.73387,23.59774
6,1.085,0.91,1.21940,2.47235,7.63670,1.11915,1.73387,44.67511
6,1.085,0.905,1.21940,2.47235,7.63670,1.05663,1.73387,42.17929
6,1.09,0.99,1.07203,1.08415,1.55161,0.85213,0.99628,1.53097
6,1.09,0.985,1.07203,1.08415,1.81425,0.88841,0.99628,1.86632
6,1.09,0.98,1.06305,1.08415,2.32903,1.01736,0.97219,2.65488
6,1.09,0.975,1.13533,1.08415,2.67328,1.04698,0.97219,3.34923
6,1.09,0.97,1.13533,1.07562,2.50724,0.98954,0.97219,2.94550
6,1.09,0.965,1.08406,1.04894,2.46456,0.96913,0.94093,2.55552
6,1.09,0.96,1.07296,1.04894,2.59391,0.95325,0.94093,2.61849
6,1.09,0.955,1.07296,0.99423,2.68724,0.85698,0.93623,2.30000
6,1.09,0.95,1.18888,0.99423,2.88499,0.94133,0.89054,2.85865
6,1.09,0.945,1.10831,0.99423,3.18640,1.19103,0.89054,3.72415
6,1.09,0.94,1.05734,0.95862,3.15253,1.69591,0.96484,5.22853
6,1.09,0.9349999999999999,1.05734,0.95862,3.44178,1.86224,0.94238,6.12217
6,1.09,0.9299999999999999,1.01611,0.95862,3.36748,1.88339,0.94238,5.82177
6,1.09,0.925,1.01611,0.95862,3.70451,2.34309,0.94238,7.96765
6,1.09,0.9199999999999999,0.97395,1.33259,4.88302,2.37779,0.94238,14.20119
6,1.09,0.915,0.60930,1.33259,6.44035,1.67730,1.73387,15.20781
6,1.09,0.91,1.21940,1.33259,7.51430,1.24912,1.73387,26.44557
6,1.09,0.905,1.21940,1.33259,7.51430,1.17934,1.73387,24.96816
6,1.095,0.99,1.07203,0.96631,1.37054,0.82407,0.99086,1.15929
6,1.095,0.985,1.07203,0.96631,1.36500,0.85915,0.99086,1.20375
6,1.095,0.98,1.06305,0.96631,1.75231,0.96793,0.96691,1.68464
6,1.095,0.975,1.13533,0.96631,1.97514,0.99611,0.96691,2.08701
6,1.095,0.97,1.13533,0.96631,1.88701,0.94146,0.96691,1.88450
6,1.095,0.965,1.08406,0.96631,1.86290,0.92204,0.93582,1.68382
6,1.095,0.96,1.07296,0.96631,1.98791,0.90693,0.93582,1.74928
6,1.095,0.955,1.07296,0.91591,2.13174,0.81534,0.93115,1.59046
6,1.095,0.95,1.18888,0.91591,1.97317,0.89559,0.88570,1.70431
6,1.095,0.945,1.10831,0.91591,2.47314,1.13722,0.88570,2.52868
6,1.095,0.94,1.05734,0.89803,2.44685,1.61929,0.95960,3.61018
6,1.095,0.9349999999999999,1.05734,0.89803,2.67135,1.77810,0.93726,4.22722
6,1.095,0.9299999999999999,1.01611,0.89803,2.61368,1.79829,0.93726,4.01980
6,1.095,0.925,1.01611,0.89803,2.87527,2.23722,0.93726,5.50148
6,1.095,0.9199999999999999,0.97395,1.40821,3.78998,2.36595,0.93726,11.52680
6,1.095,0.915,0.60930,1.40821,4.99870,1.66896,1.72445,12.34385
6,1.095,0.91,1.21940,1.40821,7.51430,1.24290,1.72445,27.65600
6,1.095,0.905,1.21940,1.40821,7.51430,1.17347,1.72445,26.11097
6,1.1,0.99,1.07203,0.96631,1.28582,0.83461,1.00926,1.12200
6,1.1,0.985,1.07203,0.96631,1.28582,0.87014,1.00926,1.16976
6,1.1,0.98,1.06305,0.96631,1.55169,0.98261,1.00926,1.58074
6,1.1,0.975,1.13533,0.96631,1.74900,0.93705,1.00926,1.81465
6,1.1,0.97,1.13533,0.96631,1.72182,0.89201,1.00926,1.70059
6,1.1,0.965,1.08406,0.96631,1.72182,0.87361,0.97681,1.53916
6,1.1,0.96,1.07296,0.96631,1.83736,0.86414,0.97681,1.60802
6,1.1,0.955,1.07296,0.91591,1.78873,0.77687,0.97681,1.33395
6,1.1,0.95,1.18888,0.91591,1.64733,0.85334,0.97681,1.49520
6,1.1,0.945,1.10831,0.91591,1.64733,1.14571,0.97681,1.87146
6,1.1,0.94,1.05734,0.89803,1.64733,1.22091,0.95703,1.82767
6,1.1,0.9349999999999999,1.05734,0.89803,1.57825,1.02643,0.93475,1.43782
6,1.1,0.9299999999999999,1.01611,0.89803,1.57825,0.94029,0.93475,1.26579
6,1.1,0.925,1.01611,0.89803,1.73621,1.16979,0.93475,1.73235
6,1.1,0.9199999999999999,0.97395,1.40821,1.57020,2.06694,0.93475,4.16087
6,1.1,0.915,0.60930,1.40821,1.63946,1.45803,1.71983,3.52737
6,1.1,0.91,1.21940,1.40821,2.46452,1.08582,1.71983,7.90296
6,1.1,0.905,1.21940,1.40821,2.46452,1.02516,1.71983,7.46145
7,1.01,0.99,2.72110,6.44476,5.01857,0.69445,1.35474,82.79959
7,1.01,0.985,2.31934,6.03251,5.17135,0.68390,1.43047,70.78431
7,1.01,0.98,2.22383,5.30011,4.98854,0.62050,1.33057,48.54487
7,1.01,0.975,2.39445,4.60182,4.63318,0.64872,1.46085,48.38108
7,1.01,0.97,2.30061,4.97852,5.55934,0.60562,1.54478,59.57061
7,1.01,0.965,2.27075,5.04185,5.66405,0.66293,1.50953,64.89279
7,1.01,0.96,2.33704,5.08467,7.35165,0.71752,1.57611,98.79443
7,1.01,0.955,2.42942,4.42406,6.42045,0.75367,1.62877,84.70891
7,1.01,0.95,2.02800,4.39368,5.98417,0.91180,1.81846,88.41071
7,1.01,0.945,2.03943,4.53962,7.19822,0.82714,1.96637,108.39233
7,1.01,0.94,1.86197,4.49819,7.75623,0.76325,2.25622,111.86926
7,1.01,0.9349999999999999,1.84949,4.11594,7.07521,0.79534,2.32983,99.80192
7,1.01,0.9299999999999999,1.75988,3.83687,7.03523,0.77992,2.14833,79.59610
7,1.01,0.925,1.78489,3.88248,7.03523,0.70983,2.39336,82.82560
7,1.01,0.9199999999999999,1.77945,4.08111,7.06169,0.68885,2.46204,86.97407
7,1.01,0.915,1.58913,4.07028,6.58881,0.69363,2.75959,81.57597
7,1.01,0.91,1.58049,3.11480,7.58421,0.72364,2.75959,74.55897
7,1.01,0.905,1.58657,3.18244,7.37406,0.57485,2.94279,62.98574
7,1.015,0.99,3.09512,5.73642,4.24039,0.67214,1.46556,74.16340
7,1.015,0.985,2.74913,5.58236,4.73789,0.67417,1.63743,80.26583
7,1.015,0.98,2.56880,5.02747,4.65277,0.59724,1.57960,56.68737
7,1.015,0.975,2.85833,4.51981,4.51385,0.61819,1.64202,59.19391
7,1.015,0.97,2.66661,4.98691,5.53672,0.58880,1.76280,76.42156
7,1.015,0.965,2.57460,4.89336,5.70342,0.67882,1.74060,84.89943
7,1.015,0.96,2.54469,4.99499,7.42828,0.69163,1.68412,109.97768
7,1.015,0.955,2.68334,4.36921,6.38995,0.70057,1.63998,86.07281
7,1.015,0.95,2.13401,4.35052,5.85783,0.84756,1.83097,84.39719
7,1.015,0.945,2.18270,4.50338,7.04624,0.81619,1.97990,111.92396
7,1.015,0.94,1.99376,4.46228,7.85171,0.77822,2.27175,123.49649
7,1.015,0.9349999999999999,1.98039,4.11594,7.16230,0.80320,2.34586,110.00235
7,1.015,0.9299999999999999,1.88445,3.83687,7.12183,0.84422,2.16311,94.03443
7,1.015,0.925,1.78064,3.88248,7.12183,0.79562,2.43155,95.25039
7,1.015,0.9199999999999999,1.77521,4.08111,6.98385,0.77210,2.50132,97.71582
7,1.015,0.915,1.58535,4.07028,6.51619,0.69569,2.75959,80.72426
7,1.015,0.91,1.58049,3.11480,7.58421,0.72580,2.75959,74.78103
7,1.015,0.905,1.58657,3.18244,7.37406,0.57657,2.94279,63.17334
7,1.02,0.99,2.95917,5.51237,4.11065,0.57272,1.40068,53.79040
7,1.02,0.985,2.69507,5.69734,4.72009,0.57898,1.61838,67.91064
7,1.02,0.98,2.55115,5.30287,4.88052,0.56726,1.63061,61.07278
7,1.02,0.975,2.86773,4.47454,4.79361,0.60066,1.55617,57.49579
7,1.02,0.97,2.64833,5.19927,5.71305,0.57488,1.69776,76.77848
7,1.02,0.965,2.54410,5.28695,5.37210,0.67721,1.67115,81.77545
7,1.02,0.96,2.56090,5.49608,6.86628,0.64872,1.65348,103.66355
7,1.02,0.955,2.74931,4.52946,5.94962,0.67846,1.61025,80.94249
7,1.02,0.95,2.09673,4.28839,5.38741,0.82493,1.79779,71.84074
7,1.02,0.945,2.07275,4.48877,6.51377,0.84145,1.97548,100.74175
7,1.02,0.94,1.93322,4.44781,7.38535,0.83336,2.26668,119.95610
7,1.02,0.9349999999999999,1.92026,4.10259,6.80669,0.88475,2.34063,111.04675
7,1.02,0.9299999999999999,1.82723,3.82442,6.76823,0.92908,2.15829,94.84122
7,1.02,0.925,1.72657,3.86989,6.76823,0.90309,2.42612,99.08274
7,1.02,0.9199999999999999,1.73439,4.06787,6.95500,0.83807,2.49574,102.63388
7,1.02,0.915,1.54269,4.05708,6.48927,0.75690,2.75343,84.64502
7,1.02,0.91,1.57018,3.10470,7.57507,0.78965,2.75343,80.29088
7,1.02,0.905,1.58657,3.18244,7.36517,0.62729,2.94279,68.64872
7,1.025,0.99,2.89416,5.49618,4.24401,0.57260,1.45413,56.20993
7,1.025,0.985,2.55653,5.49081,4.92555,0.60948,1.56619,66.00035
7,1.025,0.98,2.47536,5.23059,5.90775,0.60954,1.62623,75.82144
7,1.025,0.975,2.67619,4.32419,5.47327,0.69475,1.60151,70.47370
7,1.025,0.97,2.55090,4.86564,6.19850,0.65873,1.79085,90.75897
7,1.025,0.965,2.47246,5.01767,5.63402,0.74331,1.73820,90.30702
7,1.025,0.96,2.45650,5.28206,7.30678,0.65089,1.70558,105.25143
7,1.025,0.955,2.68866,4.35308,6.40331,0.69503,1.66098,86.51823
7,1.025,0.95,2.09631,4.18585,5.79823,0.77892,1.85757,73.61565
7,1.025,0.945,1.85432,4.37632,7.15456,0.80808,2.05718,96.51629
7,1.025,0.94,1.87456,4.36380,8.29716,0.83721,2.36042,134.12756
7,1.025,0.9349999999999999,1.86199,4.03032,7.89809,0.88883,2.43743,128.40786
7,1.025,0.9299999999999999,1.77178,3.78844,7.86322,0.95644,2.24755,113.45807
7,1.025,0.925,1.67417,3.86989,7.86322,0.92809,2.49809,118.11314
7,1.025,0.9199999999999999,1.68176,4.06787,7.43623,0.86128,2.56978,112.59574
7,1.025,0.915,1.49588,4.05708,6.48927,0.75690,2.75343,82.07652
7,1.025,0.91,1.53711,3.10470,7.57507,0.78965,2.75343,78.60005
7,1.025,0.905,1.55529,3.18244,7.36517,0.62729,2.94279,67.29548
7,1.03,0.99,2.56608,4.91885,3.37492,0.54219,1.46237,33.77577
7,1.03,0.985,2.32485,4.64707,4.14557,0.57831,1.55462,40.26616
7,1.03,0.98,2.28194,4.84978,4.92326,0.55780,1.62857,49.49565
7,1.03,0.975,2.39316,4.28781,4.90150,0.66362,1.64483,54.90079
7,1.03,0.97,2.15459,5.17971,5.93304,0.63877,1.79359,75.86068
7,1.03,0.965,2.08834,5.23034,5.71847,0.72409,1.82193,82.40153
7,1.03,0.96,2.23447,6.07509,7.21197,0.61555,1.60769,96.88304
7,1.03,0.955,2.48516,5.03241,6.55937,0.68044,1.59508,89.03571
7,1.03,0.95,1.93765,4.87673,5.93955,0.80929,1.78819,81.22190
7,1.03,0.945,1.73773,4.36132,6.68372,0.86711,1.98035,86.98361
7,1.03,0.94,1.77478,4.34885,8.84361,0.89938,2.27987,139.95942
7,1.03,0.9349999999999999,1.76288,3.97675,8.50701,0.98135,2.33474,136.64343
7,1.03,0.9299999999999999,1.67747,3.73808,8.55150,1.07852,2.21745,128.24105
7,1.03,0.925,1.58506,3.81844,8.55150,0.96602,2.46463,123.22924
7,1.03,0.9199999999999999,1.62081,4.04148,8.08714,0.89648,2.53756,120.51036
7,1.03,0.915,1.44166,4.03076,7.34371,0.75690,2.75343,88.93669
7,1.03,0.91,1.50782,3.08456,8.65239,0.78965,2.75343,87.49640
7,1.03,0.905,1.55529,3.22128,8.41263,0.62729,2.94279,77.80431
7,1.035,0.99,2.19650,4.14637,2.73154,0.60833,1.38364,20.93950
7,1.035,0.985,1.96212,4.60178,4.06483,0.67534,1.32049,32.73044
7,1.035,0.98,2.16998,4.38670,4.69767,0.64863,1.50111,43.53978
7,1.035,0.975,2.05690,4.01112,4.50935,0.78295,1.64155,47.81673
7,1.035,0.97,1.71961,4.59810,5.22961,0.71868,1.79596,53.37186
7,1.035,0.965,1.74358,4.78124,5.03628,0.82694,1.77952,61.78301
7,1.035,0.96,2.23613,5.39576,6.57942,0.76401,1.61854,98.16512
7,1.035,0.955,2.55690,4.46967,5.90135,0.77661,1.62041,84.87317
7,1.035,0.95,1.99358,4.39863,5.45838,0.95495,1.83503,83.87689
7,1.035,0.945,1.82432,3.96288,6.14976,1.05254,2.10229,98.37849
7,1.035,0.94,1.86320,4.20274,8.58753,1.01012,2.40020,163.03519
7,1.035,0.9349999999999999,1.85071,3.97070,8.32644,1.00964,2.52354,155.89818
7,1.035,0.9299999999999999,1.76105,3.73159,8.36998,1.09694,2.39676,144.60922
7,1.035,0.925,1.71798,3.81181,8.36998,0.98252,2.50806,135.06812
7,1.035,0.9199999999999999,1.67598,4.04148,7.90003,0.91179,2.58227,125.98951
7,1.035,0.915,1.47025,4.03076,7.17380,0.76284,2.80195,90.87013
7,1.035,0.91,1.49570,3.08456,8.65239,0.78787,2.80195,88.12280
7,1.035,0.905,1.55529,3.22128,8.41263,0.62588,2.94279,77.62849
7,1.04,0.99,2.03623,3.49153,2.56864,0.63581,1.26591,14.69846
7,1.04,0.985,1.92015,4.21332,3.69313,0.70868,1.22516,25.94173
7,1.04,0.98,2.18132,3.97103,4.41760,0.65631,1.15425,28.98783
7,1.04,0.975,2.05510,3.75333,4.28827,0.81148,1.37983,37.03654
7,1.04,0.97,1.75192,4.66712,4.84804,0.74464,1.66230,49.06623
7,1.04,0.965,1.75316,4.85593,4.95558,0.84781,1.62848,58.24631
7,1.04,0.96,2.54792,5.34932,6.89839,0.79261,1.59029,118.51335
7,1.04,0.955,2.46825,4.43121,6.24119,0.80596,1.60125,88.09496
7,1.04,0.95,1.92446,4.43705,5.90277,0.92731,1.82605,85.34904
7,1.04,0.945,1.79483,3.91499,6.09560,1.05455,2.09200,94.49312
7,1.04,0.94,1.85475,4.17077,8.48013,1.05729,2.42508,168.20036
7,1.04,0.9349999999999999,1.84863,3.72027,8.22229,1.05679,2.54970,152.36854
7,1.04,0.9299999999999999,1.75906,3.49624,8.26529,1.15130,2.42161,141.72007
7,1.04,0.925,1.61011,3.57141,8.26529,1.03121,2.53406,124.19862
7,1.04,0.9199999999999999,1.57076,3.82723,7.90003,0.95697,2.60904,118.57699
7,1.04,0.915,1.38473,3.81708,7.17380,0.80641,2.83100,86.56515
7,1.04,0.91,1.40384,2.92104,8.65239,0.83287,2.83100,83.65831
7,1.04,0.905,1.55529,3.22128,8.41263,0.66163,2.94279,82.06273
7,1.045,0.99,1.73671,2.97605,2.42491,0.71610,1.11199,9.98021
7,1.045,0.985,1.66979,3.08222,2.86725,0.73128,1.06451,11.48738
7,1.045,0.98,1.88479,2.98994,3.41640,0.68187,0.97956,12.85955
7,1.045,0.975,1.81168,2.81416,3.43850,0.83891,1.18888,17.48462
7,1.045,0.97,1.55341,3.63177,3.91386,0.76982,1.40163,23.82474
7,1.045,0.965,1.57532,4.00804,3.86681,0.89518,1.29716,28.35027
7,1.045,0.96,2.13371,4.61158,4.71575,0.89183,1.35230,55.96202
7,1.045,0.955,2.05092,4.40935,4.26649,0.94223,1.53522,55.81099
7,1.045,0.95,1.60586,4.27527,4.31159,1.05749,1.64271,51.42161
7,1.045,0.945,1.57009,5.07295,4.45244,1.20844,1.97202,84.51209
7,1.045,0.94,1.85475,4.98046,7.79903,1.21158,2.20722,192.66082
7,1.045,0.9349999999999999,1.84863,4.00287,7.56190,1.29262,2.46910,178.59119
7,1.045,0.9299999999999999,1.75906,3.76182,8.26529,1.31429,2.34506,168.57073
7,1.045,0.925,1.61011,3.91539,8.26529,1.23719,2.45396,158.19550
7,1.045,0.9199999999999999,1.57076,3.82723,7.90003,1.14813,2.57676,140.50285
7,1.045,0.915,1.38473,3.81708,7.17380,0.89741,2.79949,95.26117
7,1.045,0.91,1.40384,2.92104,8.65239,0.91942,2.79949,91.32370
7,1.045,0.905,1.55529,3.22128,8.41263,0.73038,2.94279,90.59024
7,1.05,0.99,1.77027,2.62413,2.45445,0.59643,1.11998,7.61637
7,1.05,0.985,1.74173,2.72834,3.05443,0.61248,1.08111,9.61111
7,1.05,0.98,2.00916,2.51458,3.43086,0.58201,1.01558,10.24526
7,1.05,0.975,2.07832,2.38200,3.35812,0.60362,0.96881,9.72189
7,1.05,0.97,1.83527,3.60691,4.18685,0.57242,0.86515,13.72548
7,1.05,0.965,1.77483,3.89975,4.07096,0.74015,0.77908,16.24774
7,1.05,0.96,2.01395,4.48699,4.48476,0.70868,0.76239,21.89619
7,1.05,0.955,1.94870,4.29022,4.33126,0.77702,1.16521,32.78510
7,1.05,0.95,1.46507,4.20101,3.87088,0.82628,1.30565,25.70249
7,1.05,0.945,1.29454,4.98483,3.99733,0.97344,1.49929,37.64726
7,1.05,0.94,1.53677,4.89395,6.37707,1.04622,2.20660,110.72175
7,1.05,0.9349999999999999,1.53169,3.93334,6.44620,1.11619,2.46841,107.00195
7,1.05,0.9299999999999999,1.46717,3.69648,6.22360,1.15688,2.34440,91.54382
7,1.05,0.925,1.34294,3.84738,6.22360,1.11067,2.45327,87.61819
7,1.05,0.9199999999999999,1.31011,3.76075,5.96628,1.03286,2.57603,78.21280
7,1.05,0.915,1.15495,3.75078,5.41782,0.76042,2.79870,49.94836
7,1.05,0.91,1.17886,2.87030,8.45187,0.78261,2.79870,62.63880
7,1.05,0.905,1.21940,3.09130,8.21767,0.62170,2.95304,56.86999
7,1.055,0.99,1.67681,1.94567,2.51983,0.51273,1.16707,4.91942
7,1.055,0.985,1.65906,2.04043,3.14559,0.51630,1.09075,5.99673
7,1.055,0.98,1.92583,1.93892,3.53935,0.50392,1.07638,7.16849
7,1.055,0.975,2.11804,1.83931,3.65343,0.49697,1.02680,7.26289
7,1.055,0.97,1.90535,2.80237,4.24583,0.48644,0.92633,10.21542
7,1.055,0.965,1.84260,3.81790,4.12830,0.63296,0.83470,15.34379
7,1.055,0.96,2.13697,4.46987,4.68465,0.58974,0.84231,22.22809
7,1.055,0.955,2.01029,4.27385,4.52431,0.57015,1.23004,27.26070
7,1.055,0.95,1.51919,4.18498,3.84380,0.61652,1.33414,20.10087
7,1.055,0.945,1.36544,4.92943,3.78965,0.73167,1.54759,28.88276
7,1.055,0.94,1.60403,4.83955,6.31361,0.79554,2.28409,89.05784
7,1.055,0.9349999999999999,1.60403,3.93334,6.38205,0.84875,2.66228,90.98487
7,1.055,0.9299999999999999,1.53646,3.69648,6.16167,0.99357,2.43221,84.56811
7,1.055,0.925,1.48195,3.84738,6.16167,0.95389,2.41385,80.89194
7,1.055,0.9199999999999999,1.44573,3.76075,5.90691,0.88705,2.53465,72.20859
7,1.055,0.915,1.41957,3.75078,5.36390,0.65308,2.75374,51.36249
7,1.055,0.91,1.46336,2.87030,8.45187,0.69551,2.75374,67.99189
7,1.055,0.905,1.21940,3.09130,8.21767,0.55251,2.90559,49.72888
7,1.06,0.99,1.63351,1.68845,2.23479,0.56717,1.15776,4.04742
7,1.06,0.985,1.63604,1.77068,2.76883,0.57932,1.09931,5.10816
7,1.06,0.98,1.81674,1.68691,3.17584,0.54396,1.08482,5.74343
7,1.06,0.975,2.07227,1.60025,2.97741,0.53646,1.05205,5.57250
7,1.06,0.97,1.90989,1.95135,3.58111,0.49839,1.01603,6.75832
7,1.06,0.965,1.85128,2.65537,3.54534,0.60081,0.91325,9.56273
7,1.06,0.96,2.06973,3.27231,3.50440,0.56465,0.81237,10.88706
7,1.06,0.955,1.94703,3.36344,3.40072,0.59792,1.21862,16.22696
7,1.06,0.95,1.48412,3.29350,3.02547,0.61931,1.44892,13.27003
7,1.06,0.945,1.33392,4.11242,3.10706,0.68761,1.52518,17.87487
7,1.06,0.94,1.68239,4.03744,5.42133,0.83660,2.25102,69.34818
7,1.06,0.9349999999999999,1.68239,4.19645,6.59116,0.91123,2.62374,111.25483
7,1.06,0.9299999999999999,1.61153,4.19645,6.36355,1.06670,2.39699,110.03464
7,1.06,0.925,1.55436,4.13242,6.36355,1.02410,2.37890,99.58030
7,1.06,0.9199999999999999,1.55436,4.03938,6.24240,0.96895,2.49795,94.86356
7,1.06,0.915,1.52623,4.02866,5.93978,0.71337,2.71386,70.70583
7,1.06,0.91,1.46336,3.57139,8.67090,0.76721,2.71386,94.35297
7,1.06,0.905,1.21940,3.84638,8.43063,0.67663,2.90559,77.74048
7,1.065,0.99,1.48993,1.60729,2.40698,0.58442,0.95980,3.23328
7,1.065,0.985,1.49224,1.75304,3.04878,0.59576,0.92262,4.38381
7,1.065,0.98,1.64832,1.69873,3.52754,0.59095,0.89752,5.23877
7,1.065,0.975,1.88016,1.60920,3.11546,0.58756,0.88063,4.87719
7,1.065,0.97,1.74089,1.88221,3.53167,0.56080,0.86380,5.60579
7,1.065,0.965,1.71210,2.56129,3.60328,0.67604,0.82214,8.78225
7,1.065,0.96,1.91412,3.15637,3.39039,0.68613,0.73815,10.37425
7,1.065,0.955,1.90717,3.22271,3.40180,0.72656,0.79732,12.11216
7,1.065,0.95,1.50372,3.15570,3.06417,0.76932,0.83457,9.33569
7,1.065,0.945,1.49197,3.94036,2.90205,0.87338,1.18824,17.70533
7,1.065,0.94,1.93654,3.92203,4.38108,1.07577,2.26471,81.06812
7,1.065,0.9349999999999999,1.93654,4.07650,5.32645,1.17422,2.68713,132.67516
7,1.065,0.9299999999999999,1.86102,4.07650,5.14251,1.29780,2.47912,125.52139
7,1.065,0.925,1.86102,4.07715,5.14251,1.24597,2.46041,119.61774
7,1.065,0.9199999999999999,1.86102,3.98535,5.26429,1.17887,2.58353,118.91437
7,1.065,0.915,1.82734,3.97477,5.00909,0.92163,2.81156,94.27471
7,1.065,0.91,1.46336,3.52362,7.93799,0.80952,2.81156,93.15873
7,1.065,0.905,1.21940,3.84638,7.71803,0.79287,3.05828,87.77795
7,1.07,0.99,1.22636,1.47697,2.32545,0.65872,0.98336,2.72842
7,1.07,0.985,1.24585,1.61090,2.93857,0.67149,0.94903,3.75829
7,1.07,0.98,1.37615,1.59320,3.50716,0.67050,0.93432,4.81716
7,1.07,0.975,1.52590,1.50924,3.12950,0.66666,0.91592,4.40071
7,1.07,0.97,1.45286,1.84348,3.36255,0.65766,0.90639,5.36844
7,1.07,0.965,1.42883,2.50858,3.43073,0.79559,0.89511,8.75705
7,1.07,0.96,1.59743,3.09142,3.22803,0.80053,0.88767,11.32774
7,1.07,0.955,1.56135,3.15639,3.26210,0.85817,0.97315,13.42579
7,1.07,0.95,1.36438,3.09076,2.93834,0.84895,1.05273,11.07402
7,1.07,0.945,1.52213,3.85927,2.81511,1.03825,0.98836,16.96931
7,1.07,0.94,1.89519,3.84132,4.25136,1.34001,1.66976,69.25066
7,1.07,0.9349999999999999,1.89519,3.99261,4.75944,1.64343,1.98121,117.25927
7,1.07,0.9299999999999999,1.82128,3.99261,4.29616,1.59400,1.82496,90.87732
7,1.07,0.925,1.82128,3.99324,4.29616,1.53034,1.81118,86.60308
7,1.07,0.9199999999999999,1.82128,3.98535,5.06219,1.44113,1.81118,95.90633
7,1.07,0.915,1.78833,3.97477,4.81679,1.17326,1.79855,72.24930
7,1.07,0.91,1.43212,3.52362,7.63325,0.97359,1.79855,67.44911
7,1.07,0.905,1.21940,3.84638,7.42173,0.95357,1.95638,64.93980
7,1.075,0.99,1.10823,1.44958,2.37477,0.60187,0.95331,2.18893
7,1.075,0.985,1.13237,1.58102,2.95360,0.62315,0.93081,3.06715
7,1.075,0.98,1.25081,1.56365,3.37741,0.62223,0.91639,3.76658
7,1.075,0.975,1.38971,1.48125,3.01371,0.61867,0.89835,3.44788
7,1.075,0.97,1.32719,1.80928,3.23815,0.61032,0.89835,4.26319
7,1.075,0.965,1.30715,2.46205,3.30380,0.75623,0.89835,7.22328
7,1.075,0.96,1.30715,3.03408,3.10860,0.78361,0.89088,8.60669
7,1.075,0.955,1.27762,3.09785,3.14141,0.84004,0.97667,10.20077
7,1.075,0.95,1.12197,3.03343,2.82963,0.84562,1.02102,8.31491
7,1.075,0.945,1.50686,3.78769,2.71096,1.03417,0.95859,15.33888
7,1.075,0.94,1.87618,3.77007,4.14062,1.33476,1.61947,63.30853
7,1.075,0.9349999999999999,1.87618,3.91855,4.63546,1.63699,1.98121,110.52687
7,1.075,0.9299999999999999,1.80301,3.91855,4.18425,1.58775,1.82496,85.65962
7,1.075,0.925,1.80301,3.91917,4.18425,1.52434,1.81118,81.63079
7,1.075,0.9199999999999999,1.80301,3.91143,5.06219,1.43548,1.81118,92.81781
7,1.075,0.915,1.77039,3.90105,4.81679,1.17326,1.79855,70.19789
7,1.075,0.91,1.43212,3.45827,7.63325,0.97359,1.79855,66.19806
7,1.075,0.905,1.21940,3.77503,7.42173,0.95357,1.95638,63.73529
7,1.08,0.99,1.10823,1.38797,2.37594,0.64349,0.96808,2.27668
7,1.08,0.985,1.13237,1.50520,2.72416,0.66625,0.94524,2.92408
7,1.08,0.98,1.25081,1.50859,3.09113,0.68020,0.93059,3.69210
7,1.08,0.975,1.38971,1.43282,2.79713,0.67630,0.91226,3.43627
7,1.08,0.97,1.32719,1.80909,2.87249,0.69994,0.91226,4.40385
7,1.08,0.965,1.30715,2.48124,2.68806,0.75963,0.91226,6.04165
7,1.08,0.96,1.30715,3.05772,2.57273,0.76881,0.91226,7.21198
7,1.08,0.955,1.27762,3.14872,2.72415,0.82416,1.00784,9.10274
7,1.08,0.95,1.12197,3.08324,2.32354,0.83042,1.05361,7.03257
7,1.08,0.945,1.50686,4.20389,2.22244,1.25173,0.98918,17.43164
7,1.08,0.94,1.87618,4.13234,3.16648,1.30568,1.36077,43.61815
7,1.08,0.9349999999999999,1.87618,4.29509,3.54490,1.70924,1.66473,81.28221
7,1.08,0.9299999999999999,1.80301,4.29509,3.19985,1.65782,1.60113,65.77553
7,1.08,0.925,1.80301,3.91917,3.19985,1.59162,1.58904,57.18670
7,1.08,0.9199999999999999,1.80301,3.91143,3.90631,1.49884,1.58904,65.61295
7,1.08,0.915,1.77039,3.90105,3.90631,1.22504,1.79296,59.25686
7,1.08,0.91,1.43212,3.45827,6.19040,1.01656,1.79296,55.88044
7,1.08,0.905,1.21940,3.77503,6.01887,0.99566,1.94575,53.67592
7,1.085,0.99,1.10823,1.31370,2.30692,0.78246,0.96808,2.54410
7,1.085,0.985,1.13237,1.44157,2.64502,0.80583,0.94524,3.28878
7,1.085,0.98,1.25081,1.44482,3.00134,0.83923,0.93059,4.23604
7,1.085,0.975,1.38971,1.37225,2.95469,0.81684,0.91226,4.19884
7,1.085,0.97,1.32719,1.73262,3.03430,0.86409,0.91226,5.50012
7,1.085,0.965,1.30715,1.70216,2.83109,0.93778,0.91226,5.38891
7,1.085,0.96,1.30715,2.09764,2.70962,0.92038,0.91226,6.23810
7,1.085,0.955,1.27762,2.04890,2.94929,0.92341,1.00784,7.18497
7,1.085,0.95,1.12197,2.00630,2.51557,0.86051,1.05361,5.13388
7,1.085,0.945,1.50686,2.74673,2.40611,1.28777,0.98918,12.68578
7,1.085,0.94,1.87618,2.69998,3.45598,1.39629,1.36077,33.26319
7,1.085,0.9349999999999999,1.87618,2.90028,3.86900,2.00451,1.66473,70.25297
7,1.085,0.9299999999999999,1.80301,2.90028,3.49240,1.94422,1.60113,56.85040
7,1.085,0.925,1.80301,2.90028,3.49240,1.86657,1.58904,54.16794
7,1.085,0.9199999999999999,1.80301,2.97996,3.90631,1.75777,1.58904,58.62350
7,1.085,0.915,1.77039,2.97205,3.90631,1.38229,1.79296,50.94047
7,1.085,0.91,1.43212,2.63471,6.19040,0.97617,1.79296,40.88163
7,1.085,0.905,1.21940,2.89974,6.01887,0.95610,1.94575,39.59230
7,1.09,0.99,1.07015,1.31370,2.28572,0.78964,0.99447,2.52337
7,1.09,0.985,1.09345,1.44157,2.67393,0.82380,0.97099,3.37151
7,1.09,0.98,1.20782,1.44482,3.03413,0.85796,0.97099,4.41094
7,1.09,0.975,1.34195,1.37225,2.98698,0.83507,0.95187,4.37220
7,1.09,0.97,1.28158,1.73262,3.06746,0.86097,0.95187,5.58204
7,1.09,0.965,1.26222,1.70216,2.86202,0.93440,0.95187,5.46917
7,1.09,0.96,1.26222,2.09764,2.73923,0.91706,0.95187,6.33101
7,1.09,0.955,1.23371,2.04890,2.99700,0.92008,0.96097,6.69816
7,1.09,0.95,1.08341,2.00630,2.55626,0.85740,1.00461,4.78604
7,1.09,0.945,1.45507,2.74673,2.53888,1.28313,0.92384,12.02844
7,1.09,0.94,1.81170,2.69998,3.31490,1.39629,0.90142,20.40886
7,1.09,0.9349999999999999,1.81170,2.90028,3.71106,2.00451,0.93726,36.63487
7,1.09,0.9299999999999999,1.74105,2.90028,3.34984,1.94422,0.93726,30.82340
7,1.09,0.925,1.74105,2.90028,3.34984,1.86657,0.93019,29.36901
7,1.09,0.9199999999999999,1.74105,2.97996,3.21135,1.75777,0.93019,27.24203
7,1.09,0.915,1.70955,2.97205,3.21135,1.38229,1.04956,23.67177
7,1.09,0.91,1.40173,2.63471,6.19040,0.97617,1.04956,23.42329
7,1.09,0.905,1.21940,2.89974,6.01887,0.95610,1.94575,39.59230
7,1.095,0.99,1.07015,1.28209,2.23612,0.75325,0.99447,2.29819
7,1.095,0.985,1.09345,1.40688,2.61590,0.78584,0.97099,3.07065
7,1.095,0.98,1.20782,1.40351,2.97479,0.81842,0.97099,4.00745
7,1.095,0.975,1.34195,1.33302,2.92856,0.79658,0.95187,3.97226
7,1.095,0.97,1.28158,1.51943,3.00746,0.84063,0.95187,4.68604
7,1.095,0.965,1.26222,1.47740,2.85703,0.91232,0.95187,4.62672
7,1.095,0.96,1.26222,1.47740,2.73446,0.89539,0.95187,4.34606
7,1.095,0.955,1.23371,1.44636,2.99178,0.89834,0.96097,4.60860
7,1.095,0.95,1.08341,1.41814,2.85382,0.83714,1.00461,3.68753
7,1.095,0.945,1.45507,1.94151,2.83442,1.25280,0.92384,9.26763
7,1.095,0.94,1.81170,1.90847,3.73036,1.40413,0.90142,16.32504
7,1.095,0.9349999999999999,1.81170,2.07528,4.17617,2.01577,0.93726,29.66480
7,1.095,0.9299999999999999,1.74105,2.07528,4.07806,1.95514,0.93726,27.00087
7,1.095,0.925,1.74105,2.07528,4.07806,1.98812,0.93019,27.24915
7,1.095,0.9199999999999999,1.74105,2.97996,3.60518,1.87223,0.93019,32.57446
7,1.095,0.915,1.70955,2.97205,3.60518,1.48249,1.04956,28.50121
7,1.095,0.91,1.40173,2.63471,6.94957,1.04693,1.04956,28.20203
7,1.095,0.905,1.21940,2.89974,6.94957,1.02541,1.94575,49.02836
7,1.1,0.99,1.05025,0.97262,1.84539,0.82369,0.99447,1.54412
7,1.1,0.985,1.04049,1.07062,1.89127,0.93826,0.97099,1.91940
7,1.1,0.98,1.14932,1.07062,2.08171,0.97715,0.97099,2.43039
7,1.1,0.975,1.12167,1.03585,2.08171,0.93270,0.95187,2.14736
7,1.1,0.97,1.07121,1.04443,2.13780,0.94189,0.95187,2.14436
7,1.1,0.965,1.06105,1.00289,2.10798,0.95852,0.95187,2.04660
7,1.1,0.96,1.06105,1.00289,2.04557,0.94604,0.95187,1.96015
7,1.1,0.955,1.05019,0.98182,2.29205,0.94817,0.96097,2.15337
7,1.1,0.95,1.03862,0.96266,2.27532,0.89869,1.00461,2.05391
7,1.1,0.945,1.03862,0.96266,2.25985,1.08101,0.97872,2.39055
7,1.1,0.94,1.03490,0.94665,2.87577,1.41713,0.90142,3.59899
7,1.1,0.9349999999999999,1.03490,0.94665,3.21945,2.03444,0.93726,6.01419
7,1.1,0.9299999999999999,0.99454,0.94665,3.14381,2.03110,0.93726,5.63461
7,1.1,0.925,0.99454,0.94665,3.14381,2.28037,0.93019,6.27836
7,1.1,0.9199999999999999,0.99454,1.48446,2.77927,2.28037,0.93019,8.70354
7,1.1,0.915,0.99160,1.48446,2.77927,1.40453,1.04956,6.03076
7,1.1,0.91,1.40173,1.31596,5.35749,0.99187,1.04956,10.28802
7,1.1,0.905,1.21940,1.31596,5.35749,0.97148,1.94575,16.25074
8,1.01,0.99,2.70294,5.57970,5.27681,0.75769,1.32164,79.69373
8,1.01,0.985,2.66805,5.65860,5.35043,0.57572,1.35203,62.87662
8,1.01,0.98,2.41310,5.41960,5.47771,0.60989,1.70334,74.42137
8,1.01,0.975,2.48295,4.69817,5.55942,0.54009,1.78091,62.37855
8,1.01,0.97,2.60344,5.03320,6.48714,0.54997,1.81231,84.72633
8,1.01,0.965,2.61079,4.83485,5.87645,0.56390,1.84897,77.33950
8,1.01,0.96,2.56688,4.95606,7.04829,0.56251,1.88679,95.16624
8,1.01,0.955,2.49745,4.52794,7.77855,0.66627,1.76408,103.38703
8,1.01,0.95,2.31563,4.58850,6.62642,0.65122,1.94875,89.35228
8,1.01,0.945,1.97481,4.41288,6.19303,0.73309,1.98244,78.43469
8,1.01,0.94,2.03251,4.26695,6.48656,0.76367,1.94506,83.56020
8,1.01,0.9349999999999999,1.93625,4.24814,6.74822,0.87051,2.04132,98.63530
8,1.01,0.9299999999999999,1.77173,3.71099,7.44160,0.90291,1.91756,84.71275
8,1.01,0.925,1.65730,3.73408,6.89399,0.97491,1.95882,81.47340
8,1.01,0.9199999999999999,1.64063,3.99242,8.26952,0.88135,2.39747,114.45371
8,1.01,0.915,1.74053,3.99242,8.26952,0.76941,2.53023,111.87111
8,1.01,0.91,1.80038,3.41549,8.34091,0.66024,2.71758,92.02743
8,1.01,0.905,1.75781,3.02782,8.34091,0.59404,2.83954,74.88292
8,1.015,0.99,2.59994,5.06826,4.64779,0.68245,1.49554,62.50823
8,1.015,0.985,2.70944,5.54461,4.79191,0.49374,1.59394,56.65443
8,1.015,0.98,2.45107,5.21720,5.05035,0.55745,1.97981,71.27613
8,1.015,0.975,2.43736,4.58642,5.40609,0.49018,1.93257,57.24879
8,1.015,0.97,2.61976,4.56248,5.97209,0.47923,2.07622,71.02474
8,1.015,0.965,2.62789,4.41140,5.41872,0.49217,1.89855,58.69763
8,1.015,0.96,2.70509,4.66339,6.45413,0.48771,1.99857,79.35947
8,1.015,0.955,2.64880,4.33109,7.30760,0.58762,1.82139,89.72606
8,1.015,0.95,2.44735,4.45118,6.20538,0.60480,2.00672,82.04152
8,1.015,0.945,2.07975,4.32559,5.79953,0.69182,2.04140,73.68360
8,1.015,0.94,2.16548,4.18255,6.24763,0.73293,2.00291,83.06838
8,1.015,0.9349999999999999,2.06293,4.16412,6.50773,0.83175,2.10714,97.97628
8,1.015,0.9299999999999999,1.88764,3.72094,7.17640,0.86271,1.97939,86.07480
8,1.015,0.925,1.76573,3.74409,6.64830,0.93132,2.02935,83.06806
8,1.015,0.9199999999999999,1.69755,4.04115,8.26952,0.79528,2.48378,112.05689
8,1.015,0.915,1.80091,4.04115,8.26952,0.69427,2.53023,105.72220
8,1.015,0.91,1.76459,3.45718,8.34091,0.59576,2.71758,82.38243
8,1.015,0.905,1.72287,3.06477,8.34091,0.53603,2.83954,67.03477
8,1.02,0.99,2.66383,5.19198,4.49119,0.68499,1.40557,59.80503
8,1.02,0.985,2.70103,5.48252,4.98688,0.50806,1.53991,57.77581
8,1.02,0.98,2.47962,5.26789,5.68710,0.60099,1.82379,81.42511
8,1.02,0.975,2.32343,4.61355,5.65935,0.54016,1.85957,60.93529
8,1.02,0.97,2.46923,4.77525,6.00753,0.53770,2.04600,77.92912
8,1.02,0.965,2.47620,4.71781,5.49416,0.55785,1.87092,66.98797
8,1.02,0.96,2.57895,4.90587,6.40704,0.55814,1.96019,88.68652
8,1.02,0.955,2.53228,4.19416,7.25428,0.67994,1.79107,93.82859
8,1.02,0.95,2.36964,4.31045,6.44116,0.73224,1.97119,94.96302
8,1.02,0.945,2.06001,4.20769,5.71202,0.83683,2.03601,84.35735
8,1.02,0.94,2.14493,4.06855,6.35207,0.89184,1.99146,98.45220
8,1.02,0.9349999999999999,2.04335,4.08482,6.72901,1.02736,2.10594,121.51617
8,1.02,0.9299999999999999,1.86973,3.65008,7.62806,1.09975,1.97939,113.32392
8,1.02,0.925,1.74897,3.67279,7.28871,1.22162,2.02935,116.07026
8,1.02,0.9199999999999999,1.68144,3.99154,8.17666,0.97269,2.48378,132.58240
8,1.02,0.915,1.78382,3.99154,8.17666,0.76496,2.53023,112.68565
8,1.02,0.91,1.79039,3.41474,8.32412,0.65642,2.71758,90.78425
8,1.02,0.905,1.74806,3.02715,8.32412,0.59061,2.83954,73.87134
8,1.025,0.99,2.82186,5.12946,4.27938,0.68687,1.31445,55.92549
8,1.025,0.985,2.93266,5.49122,4.72850,0.54376,1.42395,58.96025
8,1.025,0.98,2.69453,5.53961,5.91493,0.66707,1.64186,96.69765
8,1.025,0.975,2.54149,4.95426,6.05413,0.57771,1.69994,74.86193
8,1.025,0.97,2.73609,5.14762,6.23450,0.63201,1.95234,108.34641
8,1.025,0.965,2.78769,5.11832,5.67379,0.62981,1.80840,92.20419
8,1.025,0.96,2.97151,5.23287,6.34172,0.63147,1.90637,118.70926
8,1.025,0.955,2.94297,4.57867,7.17093,0.74873,1.65025,119.39241
8,1.025,0.95,2.82352,4.44286,6.49794,0.76522,1.83307,114.33954
8,1.025,0.945,2.09135,4.15010,5.35218,0.88627,1.89968,78.20983
8,1.025,0.94,2.16930,4.01286,5.95026,0.95005,1.92986,94.96875
8,1.025,0.9349999999999999,2.06656,4.02891,6.38498,1.09442,2.04079,118.73446
8,1.025,0.9299999999999999,1.89097,3.62332,7.32030,1.16158,1.94744,113.45788
8,1.025,0.925,1.76884,3.60976,6.99464,1.29275,2.00952,116.02118
8,1.025,0.9199999999999999,1.70054,3.92304,7.84677,1.02472,2.46959,132.47413
8,1.025,0.915,1.80409,3.92304,7.84677,0.80588,2.51648,112.62493
8,1.025,0.91,1.79039,3.35614,7.98758,0.69154,2.70281,89.70827
8,1.025,0.905,1.74806,2.97520,7.98758,0.62220,2.82411,72.99581
8,1.03,0.99,2.61561,4.26771,3.09265,0.60741,1.33003,27.88935
8,1.03,0.985,2.61753,4.29778,3.49322,0.49639,1.39963,27.30225
8,1.03,0.98,2.37773,4.48196,4.59083,0.58194,1.60156,45.59797
8,1.03,0.975,2.17950,4.42867,5.48946,0.51689,1.65704,45.38281
8,1.03,0.97,2.31704,4.89557,5.41925,0.55933,1.88652,64.86409
8,1.03,0.965,2.41345,4.72164,4.93186,0.54215,1.76555,53.79462
8,1.03,0.96,2.68820,5.55312,5.52492,0.54358,1.88543,84.52742
8,1.03,0.955,2.67196,4.89667,6.74395,0.65621,1.56739,90.75377
8,1.03,0.95,2.47394,4.75143,6.11104,0.73267,1.75321,92.27205
8,1.03,0.945,1.95336,4.00207,5.03350,0.81343,1.81692,58.15614
8,1.03,0.94,2.02616,4.01538,5.85808,0.90425,1.88127,81.07648
8,1.03,0.9349999999999999,1.93021,4.03144,6.44913,1.04957,1.98043,104.31264
8,1.03,0.9299999999999999,1.76620,3.62332,7.23009,1.16019,1.88984,101.44863
8,1.03,0.925,1.65213,3.60976,6.90845,1.28752,1.95009,103.44535
8,1.03,0.9199999999999999,1.58833,3.92304,7.84677,0.92879,2.42149,109.96612
8,1.03,0.915,1.68505,3.92304,7.84677,0.75336,2.46747,96.42361
8,1.03,0.91,1.72886,3.35614,7.98758,0.64647,2.70281,80.98028
8,1.03,0.905,1.68798,2.97520,7.98758,0.58165,2.82411,65.89383
8,1.035,0.99,2.61963,3.59558,2.94175,0.68060,1.39774,26.35945
8,1.035,0.985,2.64418,3.81726,3.31596,0.56337,1.39296,26.26550
8,1.035,0.98,2.52042,4.49290,4.57656,0.69221,1.57675,56.56395
8,1.035,0.975,2.24086,4.64245,5.02531,0.62157,1.60537,52.16670
8,1.035,0.97,2.19042,5.00852,5.03827,0.70461,1.99871,77.84286
8,1.035,0.965,2.23035,5.09491,4.59746,0.70721,1.83869,67.93300
8,1.035,0.96,2.54296,5.01099,4.95601,0.72630,1.98139,90.88238
8,1.035,0.955,2.58578,4.42648,6.39226,0.90455,1.68358,111.42234
8,1.035,0.95,2.44387,4.56683,5.83710,0.96291,1.93862,121.61022
8,1.035,0.945,1.87133,3.91386,4.80787,1.07785,1.86876,70.92841
8,1.035,0.94,1.96199,3.92688,6.26847,1.08493,2.00451,105.03078
8,1.035,0.9349999999999999,1.86907,3.91831,6.91308,1.21955,2.11017,130.29081
8,1.035,0.9299999999999999,1.71026,3.52164,7.17898,1.27773,2.01364,111.24800
8,1.035,0.925,1.59980,3.50208,6.85961,1.34421,2.08599,107.76325
8,1.035,0.9199999999999999,1.53803,3.86613,7.84677,0.96969,2.45363,111.01239
8,1.035,0.915,1.63168,3.86613,7.84677,0.78653,2.50021,97.34104
8,1.035,0.91,1.71201,3.30745,7.98758,0.67494,2.76853,84.51336
8,1.035,0.905,1.67153,2.93204,7.98758,0.60036,2.89277,67.98681
8,1.04,0.99,2.23806,3.29771,2.82044,0.71424,1.27767,18.99631
8,1.04,0.985,2.46799,3.69308,3.32685,0.62357,1.29569,24.49913
8,1.04,0.98,2.30170,3.89099,4.38516,0.75262,1.38832,41.03526
8,1.04,0.975,2.13873,3.76219,4.70108,0.66819,1.47789,37.35373
8,1.04,0.97,1.93557,4.25222,4.67886,0.76861,1.75688,52.00093
8,1.04,0.965,2.03870,4.56958,4.57266,0.77143,1.61622,53.11262
8,1.04,0.96,2.50835,5.16341,5.19410,0.78798,1.81199,96.05169
8,1.04,0.955,2.68016,4.56112,5.87579,0.91906,1.48467,98.01021
8,1.04,0.95,2.53307,4.83735,5.43045,0.97836,1.73760,113.11967
8,1.04,0.945,1.96256,4.15069,4.47292,1.13760,1.67498,69.42806
8,1.04,0.94,2.07741,4.20983,6.24487,1.10889,1.79666,108.80894
8,1.04,0.9349999999999999,1.97903,4.10414,6.88705,1.23825,2.06424,142.98065
8,1.04,0.9299999999999999,1.80470,3.70954,7.13490,1.29733,1.96981,122.06366
8,1.04,0.925,1.71275,3.48912,6.81749,1.36482,2.08488,115.92884
8,1.04,0.9199999999999999,1.64662,3.86613,7.86068,0.98456,2.45232,120.82210
8,1.04,0.915,1.62103,3.86613,7.86068,0.79859,2.49888,98.31006
8,1.04,0.91,1.70083,3.30745,7.98758,0.68529,2.76853,85.24917
8,1.04,0.905,1.66062,2.93204,7.98758,0.61771,2.89277,69.49519
8,1.045,0.99,1.92954,2.94812,2.66881,0.65774,1.30705,13.05165
8,1.045,0.985,2.16760,2.81603,3.10945,0.55669,1.22012,12.89199
8,1.045,0.98,2.06087,3.03330,3.73368,0.67053,1.25050,19.57071
8,1.045,0.975,1.91829,2.94495,4.20876,0.56083,1.47866,19.71710
8,1.045,0.97,1.75439,3.23743,4.21394,0.66808,1.67704,26.81559
8,1.045,0.965,1.88854,3.69730,4.21919,0.67054,1.59539,31.51606
8,1.045,0.96,2.48355,4.30666,5.00807,0.69062,1.79163,66.27804
8,1.045,0.955,2.53219,3.94922,5.37587,0.74011,1.49210,59.36752
8,1.045,0.95,2.30773,4.10512,5.01947,0.80571,1.79253,68.67682
8,1.045,0.945,1.82225,4.76263,4.13441,0.94166,1.74190,58.85479
8,1.045,0.94,1.94803,4.87160,5.95310,0.92364,1.77700,92.72618
8,1.045,0.9349999999999999,1.85577,4.23073,6.93346,1.10053,2.02723,121.44909
8,1.045,0.9299999999999999,1.69230,3.82396,7.18974,1.08261,1.94242,97.83996
8,1.045,0.925,1.60608,3.59674,6.87781,1.26386,2.05589,103.23414
8,1.045,0.9199999999999999,1.54406,3.69673,7.86068,0.95397,2.43853,104.37737
8,1.045,0.915,1.52007,3.69673,7.86068,0.77379,2.51210,85.86145
8,1.045,0.91,1.70228,3.30745,7.98758,0.66400,2.78318,83.10869
8,1.045,0.905,1.66203,2.93204,7.98758,0.61771,2.89277,69.55427
8,1.05,0.99,1.71227,2.21860,2.47897,0.65976,1.12289,6.97668
8,1.05,0.985,1.92353,2.17858,2.79205,0.57128,1.08296,7.23861
8,1.05,0.98,1.84634,2.27389,3.24716,0.64733,1.05726,9.33029
8,1.05,0.975,1.73674,2.75720,3.64667,0.54142,1.09914,10.39168
8,1.05,0.97,1.63221,3.06446,3.59668,0.65691,1.11433,13.16899
8,1.05,0.965,1.65263,3.49165,3.98579,0.67390,1.09241,16.93176
8,1.05,0.96,2.11157,4.06712,4.62499,0.71330,1.26395,35.81031
8,1.05,0.955,1.98653,3.72956,4.87924,0.73993,1.11884,29.92697
8,1.05,0.95,1.81030,3.87679,4.57426,0.79607,1.91548,48.95242
8,1.05,0.945,1.69689,4.73283,4.02383,0.93594,1.76504,53.38497
8,1.05,0.94,1.81402,4.85268,4.84475,0.91804,1.80174,70.54218
8,1.05,0.9349999999999999,1.72811,4.21430,4.98413,1.08074,2.07029,81.21551
8,1.05,0.9299999999999999,1.57588,3.75754,5.23268,1.08117,2.00759,67.25381
8,1.05,0.925,1.49559,3.53427,5.00566,1.20706,2.15428,68.80204
8,1.05,0.9199999999999999,1.43784,3.63252,6.03308,0.91110,2.39936,68.88376
8,1.05,0.915,1.41550,3.63252,6.03308,0.74459,2.47174,57.09200
8,1.05,0.91,1.59539,3.25000,7.93860,0.63894,2.73846,72.02160
8,1.05,0.905,1.55767,2.88111,7.93860,0.59440,2.84630,60.27541
8,1.055,0.99,1.61771,1.69175,2.42824,0.60747,1.14419,4.61905
8,1.055,0.985,1.96056,1.65955,2.84940,0.52958,1.13572,5.57604
8,1.055,0.98,1.91423,1.63709,3.18562,0.56824,1.11656,6.33389
8,1.055,0.975,1.89011,2.32848,3.29379,0.47312,1.14437,7.84871
8,1.055,0.97,1.80990,2.97274,3.44345,0.58297,1.05077,11.34896
8,1.055,0.965,1.70804,3.38715,3.42475,0.61802,1.18278,14.48330
8,1.055,0.96,1.99860,3.94539,3.62473,0.64414,1.27706,23.51161
8,1.055,0.955,1.88530,3.61794,3.46143,0.71822,1.17424,19.91164
8,1.055,0.95,1.72862,3.76075,3.29842,0.77551,2.01032,33.42985
8,1.055,0.945,1.41804,4.59118,2.95372,0.93397,1.85967,33.40036
8,1.055,0.94,1.56606,4.70744,3.80998,0.96772,1.91118,51.94773
8,1.055,0.9349999999999999,1.49189,4.08816,4.01013,1.15097,2.09082,58.85791
8,1.055,0.9299999999999999,1.36047,3.64507,5.11789,1.15039,2.06569,60.31079
8,1.055,0.925,1.29974,3.53427,4.89585,1.29010,2.12805,61.74328
8,1.055,0.9199999999999999,1.24955,3.63252,5.96313,0.89407,2.37015,57.35655
8,1.055,0.915,1.23058,3.63252,5.96313,0.73067,2.43595,47.44422
8,1.055,0.91,1.30894,3.10759,7.93860,0.62700,2.69881,54.64226
8,1.055,0.905,1.27799,2.75487,7.93860,0.58329,2.80509,45.73051
8,1.06,0.99,1.60245,1.75683,2.53432,0.56144,1.02171,4.09266
8,1.06,0.985,1.96004,1.73623,3.03568,0.51973,1.01414,5.44506
8,1.06,0.98,1.91372,1.71977,3.51552,0.55421,0.96559,6.19166
8,1.06,0.975,1.88962,2.27314,3.63489,0.46861,0.91659,6.70615
8,1.06,0.97,1.83336,2.91662,3.71157,0.52402,0.83684,8.70305
8,1.06,0.965,1.73018,3.20779,3.64990,0.55622,0.83098,9.36305
8,1.06,0.96,2.06916,3.73648,3.84358,0.57973,0.79679,13.72657
8,1.06,0.955,1.95186,3.42636,3.74846,0.57514,0.74091,10.68244
8,1.06,0.95,1.74546,3.70957,3.46466,0.67086,1.37717,20.72597
8,1.06,0.945,1.43185,4.53610,3.15185,0.77364,1.34479,21.29813
8,1.06,0.94,1.56606,4.69204,4.06554,0.78025,1.79868,41.92532
8,1.06,0.9349999999999999,1.49189,4.07479,4.27912,0.96500,1.98140,49.73888
8,1.06,0.9299999999999999,1.36047,4.16003,5.46119,0.96451,1.99007,59.32624
8,1.06,0.925,1.29974,4.03357,5.22425,1.26743,2.11938,73.57048
8,1.06,0.9199999999999999,1.24955,3.63252,5.54538,0.87836,2.36049,52.18770
8,1.06,0.915,1.23058,3.63252,5.54538,0.71783,2.42603,43.16865
8,1.06,0.91,1.30894,3.10759,7.66932,0.61598,2.68782,51.64996
8,1.06,0.905,1.27799,2.75487,7.66932,0.62873,2.79366,47.42683
8,1.065,0.99,1.63230,1.63830,2.39378,0.54674,1.14213,3.99738
8,1.065,0.985,1.95148,1.61659,2.67615,0.51228,1.11466,4.82085
8,1.065,0.98,1.91044,1.61330,3.12224,0.54868,1.08530,5.73039
8,1.065,0.975,1.92168,2.20248,3.27847,0.46393,1.04060,6.69894
8,1.065,0.97,1.86447,2.11290,3.34762,0.53659,0.95007,6.72311
8,1.065,0.965,1.75954,2.33792,3.29201,0.57311,0.94341,7.32192
8,1.065,0.96,2.10427,2.85089,3.47942,0.61275,0.89504,11.44770
8,1.065,0.955,1.98498,2.90453,3.56242,0.60429,0.86260,10.70615
8,1.065,0.95,1.78426,3.13320,3.40743,0.64093,1.44580,17.65187
8,1.065,0.945,1.46853,3.87580,3.09978,0.75018,1.41181,18.68597
8,1.065,0.94,1.63235,4.97352,3.43568,0.77510,1.90262,41.13362
8,1.065,0.9349999999999999,1.55504,4.31924,4.06469,0.95862,2.13357,55.83812
8,1.065,0.9299999999999999,1.51103,4.40959,5.18753,0.95813,2.14290,70.96758
8,1.065,0.925,1.44358,4.27554,5.32324,1.25906,2.31020,95.56606
8,1.065,0.9199999999999999,1.38784,3.91579,6.14030,0.87256,2.57303,74.91775
8,1.065,0.915,1.36677,3.91579,6.14030,0.71309,2.64446,61.97051
8,1.065,0.91,1.46411,3.88067,8.34535,0.61191,2.68782,77.98541
8,1.065,0.905,1.46411,3.44020,8.34535,0.62458,2.79366,73.34317
8,1.07,0.99,1.35542,1.68262,2.61379,0.57906,1.10793,3.82442
8,1.07,0.985,1.61769,1.66032,2.73717,0.54256,1.08128,4.31300
8,1.07,0.98,1.59978,1.65694,3.00240,0.58112,1.05280,4.86907
8,1.07,0.975,1.56428,2.26206,3.11071,0.52973,0.98695,5.75477
8,1.07,0.97,1.54330,2.17006,3.22505,0.56758,0.97783,5.99441
8,1.07,0.965,1.54226,2.43183,3.24849,0.61375,0.96992,7.25271
8,1.07,0.96,1.71317,2.96540,3.55226,0.58482,0.93273,9.84398
8,1.07,0.955,1.68729,2.86568,3.35089,0.60067,0.98148,9.55202
8,1.07,0.95,1.65014,3.09129,3.01232,0.64484,1.68944,16.74002
8,1.07,0.945,1.89077,3.82396,2.89139,0.81726,1.53462,26.21914
8,1.07,0.94,2.05558,4.90699,3.20471,0.84441,2.02306,55.22029
8,1.07,0.9349999999999999,2.01717,4.26146,3.26899,0.98513,2.26863,62.80203
8,1.07,0.9299999999999999,2.01717,4.35061,4.18287,0.99303,2.29279,83.57852
8,1.07,0.925,1.97541,4.21835,4.29230,1.29825,2.47675,115.00955
8,1.07,0.9199999999999999,1.97541,3.86341,5.15334,1.01052,2.76188,109.76542
8,1.07,0.915,1.94542,3.86341,5.15334,0.85527,2.83856,94.03171
8,1.07,0.91,1.94918,3.82876,7.51092,0.73392,2.88509,118.68976
8,1.07,0.905,1.94918,3.39418,7.51092,0.74911,2.98155,110.98605
8,1.075,0.99,1.35542,1.68262,2.60542,0.56892,1.03469,3.49784
8,1.075,0.985,1.61769,1.66032,2.71408,0.53501,1.01659,3.96475
8,1.075,0.98,1.59978,1.65694,2.73118,0.57427,1.00172,4.16463
8,1.075,0.975,1.56428,2.26206,2.73155,0.50050,0.93906,4.54288
8,1.075,0.97,1.54330,2.17006,2.86381,0.53709,0.93039,4.79263
8,1.075,0.965,1.54226,2.43183,2.64376,0.58947,0.93101,5.44163
8,1.075,0.96,1.71317,2.96540,2.63042,0.58223,0.92821,7.22195
8,1.075,0.955,1.68729,2.86568,2.59991,0.65405,0.97672,8.03080
8,1.075,0.95,1.65014,3.09129,2.27692,0.65599,1.55836,11.87340
8,1.075,0.945,1.89077,3.82396,2.03311,0.84402,1.41554,17.56255
8,1.075,0.94,2.05558,4.90699,2.27904,0.87206,1.86608,37.40904
8,1.075,0.9349999999999999,2.01717,4.26146,2.32475,1.09666,2.09260,45.86044
8,1.075,0.9299999999999999,2.01717,4.35061,2.97466,1.10545,2.11489,61.03223
8,1.075,0.925,1.97541,4.21835,3.05248,1.43299,2.28458,83.27253
8,1.075,0.9199999999999999,1.97541,3.86341,3.89921,1.20125,2.54758,91.06811
8,1.075,0.915,1.94542,3.86341,3.89921,1.01670,2.61831,78.01446
8,1.075,0.91,1.94918,3.82876,5.68305,0.91335,2.66033,103.05441
8,1.075,0.905,1.94918,3.39418,5.68305,0.94779,2.74928,97.97196
8,1.08,0.99,1.25049,1.51801,2.55341,0.56894,1.01297,2.79342
8,1.08,0.985,1.49246,1.53444,2.71493,0.53503,0.99525,3.31069
8,1.08,0.98,1.47891,1.53132,2.73204,0.57428,0.98070,3.48459
8,1.08,0.975,1.46775,2.09056,2.73241,0.50052,0.93075,3.90583
8,1.08,0.97,1.43213,2.00554,2.87960,0.53710,0.93075,4.13461
8,1.08,0.965,1.43213,2.34701,2.66746,0.56857,0.93138,4.74798
8,1.08,0.96,1.42294,2.86197,2.65401,0.56159,0.92857,5.63629
8,1.08,0.955,1.40837,2.76573,2.63297,0.65159,0.97710,6.52956
8,1.08,0.95,1.37737,2.98347,2.34113,0.65352,1.13616,7.14324
8,1.08,0.945,1.22925,3.69058,2.09044,0.84084,0.98516,7.85579
8,1.08,0.94,2.05558,4.73584,2.34415,0.86877,1.29871,25.74737
8,1.08,0.9349999999999999,2.01717,4.11283,2.16688,1.09253,1.49727,29.40694
8,1.08,0.9299999999999999,2.01717,4.26468,2.87907,1.10128,1.51322,41.27460
8,1.08,0.925,1.97541,4.13504,3.18416,1.42758,1.63463,60.69497
8,1.08,0.9199999999999999,1.97541,3.83185,3.83008,1.19672,1.83366,63.61862
8,1.08,0.915,1.94542,3.83185,3.83008,1.01287,1.88432,54.49237
8,1.08,0.91,1.94918,3.79748,5.58229,0.90991,1.94575,73.15489
8,1.08,0.905,1.94918,3.36645,5.58229,0.94422,1.94575,67.29709
8,1.085,0.99,1.14136,1.51801,2.55341,0.65479,0.93203,2.69991
8,1.085,0.985,1.36221,1.53444,2.71493,0.61577,0.93203,3.25684
8,1.085,0.98,1.34984,1.53132,2.73204,0.66094,0.91759,3.42489
8,1.085,0.975,1.33965,2.09056,2.73241,0.58819,0.91759,4.13016
8,1.085,0.97,1.30715,2.00554,2.87960,0.63118,0.91759,4.37207
8,1.085,0.965,1.30715,2.34701,2.66746,0.73477,0.91820,5.52111
8,1.085,0.96,1.29876,2.86197,2.65401,0.73467,0.92698,6.71825
8,1.085,0.955,1.28546,2.76573,2.63297,0.85832,0.90320,7.25683
8,1.085,0.95,1.25716,2.98347,2.34113,0.86086,1.03452,7.82005
8,1.085,0.945,1.12197,3.69058,2.09044,1.13009,0.89702,8.77460
8,1.085,0.94,1.87618,4.73584,2.34415,1.16762,1.23473,30.02829
8,1.085,0.9349999999999999,1.84113,4.11283,2.16688,1.48403,1.45277,35.37498
8,1.085,0.9299999999999999,1.84113,4.26468,2.87907,1.18129,1.35123,36.08367
8,1.085,0.925,1.80301,4.13504,3.18416,1.61744,1.45965,56.04664
8,1.085,0.9199999999999999,1.80301,3.83185,3.83008,1.48415,1.63738,64.30436
8,1.085,0.915,1.77564,3.83185,3.83008,1.25614,1.68261,55.07973
8,1.085,0.91,1.94918,3.79748,5.58229,1.12845,1.94322,90.60772
8,1.085,0.905,1.94918,3.36645,5.58229,1.17100,1.94322,83.35241
8,1.09,0.99,1.10213,1.48244,2.49369,0.74802,0.95730,2.91750
8,1.09,0.985,1.31539,1.49849,2.69858,0.69912,0.95730,3.55993
8,1.09,0.98,1.30345,1.49544,2.71834,0.77903,0.95730,3.95158
8,1.09,0.975,1.29361,2.04158,2.71871,0.70445,0.95730,4.84209
8,1.09,0.97,1.26222,1.95854,2.86516,0.75838,0.95730,5.14221
8,1.09,0.965,1.26222,2.29201,2.70549,0.84996,0.95730,6.36859
8,1.09,0.96,1.25412,2.79491,2.75890,0.84984,0.96645,7.94256
8,1.09,0.955,1.24128,2.70092,2.73703,1.01239,0.94833,8.80991
8,1.09,0.95,1.21395,2.91356,2.43366,1.03620,0.94421,8.42171
8,1.09,0.945,1.08341,3.60410,2.19043,1.22629,0.85519,8.96965
8,1.09,0.94,1.81170,4.62487,2.45674,1.38666,0.81782,23.34369
8,1.09,0.9349999999999999,1.77785,4.01646,2.39286,1.46510,0.81782,20.47285
8,1.09,0.9299999999999999,1.77785,4.26468,3.17932,1.16623,0.79088,22.23347
8,1.09,0.925,1.74105,4.13504,3.10463,1.59681,0.85433,30.49152
8,1.09,0.9199999999999999,1.74105,3.83185,4.35231,1.46522,0.95835,40.77251
8,1.09,0.915,1.71461,3.83185,4.35231,1.25614,1.68261,60.43877
8,1.09,0.91,1.90782,3.79748,6.34343,1.12845,1.94322,100.77706
8,1.09,0.905,1.90782,3.36645,6.34343,1.17100,1.94322,92.70745
8,1.095,0.99,1.10213,1.40013,2.17480,0.79148,0.95730,2.54277
8,1.095,0.985,1.31539,1.42607,2.35575,0.73974,0.95730,3.12932
8,1.095,0.98,1.30345,1.42317,2.37300,0.82430,0.95730,3.47359
8,1.095,0.975,1.29361,1.94869,2.37332,0.74777,0.95730,4.28270
8,1.095,0.97,1.26222,1.94698,2.50116,0.81000,0.95730,4.76621
8,1.095,0.965,1.26222,2.27848,2.36178,0.87617,0.95730,5.69715
8,1.095,0.96,1.25412,2.80219,2.25695,0.89128,0.96645,6.83211
8,1.095,0.955,1.24128,2.70796,2.25695,1.01776,0.94833,7.32218
8,1.095,0.95,1.21395,2.92115,2.26817,1.04170,0.94421,7.91119
8,1.095,0.945,1.08341,3.94576,2.04149,1.24382,0.85519,9.28305
8,1.095,0.94,1.81170,5.11927,2.28968,1.40648,0.81782,24.42643
8,1.095,0.9349999999999999,1.77785,4.44581,2.23014,1.48605,0.81782,21.42244
8,1.095,0.9299999999999999,1.77785,4.53977,2.96313,1.18290,0.79088,22.37365
8,1.095,0.925,1.74105,4.45594,2.89351,1.61964,0.85433,31.06133
8,1.095,0.9199999999999999,1.74105,3.78159,4.05636,1.48617,0.95835,38.03792
8,1.095,0.915,1.71461,3.78159,4.05636,1.27410,1.68261,56.38517
8,1.095,0.91,1.90782,3.74768,5.91208,1.14459,1.94322,94.01799
8,1.095,0.905,1.90782,3.32230,5.91208,1.18775,1.94322,86.48960
8,1.1,0.99,1.10213,1.37447,1.99024,0.82432,0.95730,2.37913
8,1.1,0.985,1.31539,1.37403,2.33110,0.77043,0.95730,3.10739
8,1.1,0.98,1.30345,1.37192,2.34817,0.85850,0.95730,3.45097
8,1.1,0.975,1.29361,1.34557,2.34849,0.77880,0.95730,3.04769
8,1.1,0.97,1.26222,1.24683,2.47500,0.84361,0.95730,3.14565
8,1.1,0.965,1.26222,1.43151,2.33707,0.91253,0.95730,3.68890
8,1.1,0.96,1.25412,1.43188,2.23334,0.92827,0.96645,3.59795
8,1.1,0.955,1.24128,1.38447,2.23334,1.05999,0.94833,3.85807
8,1.1,0.95,1.21395,1.42352,2.36107,1.05214,0.94421,4.05340
8,1.1,0.945,1.08341,1.92282,2.25922,1.28709,0.85519,5.18039
8,1.1,0.94,1.81170,2.51390,2.56067,1.43429,0.81782,13.67980
8,1.1,0.9349999999999999,1.77785,2.18318,2.56067,1.42738,0.81782,11.60211
8,1.1,0.9299999999999999,1.77785,3.21250,2.96313,1.13620,0.79088,15.20736
8,1.1,0.925,1.74105,3.15318,2.89351,1.55570,0.85433,21.11237
8,1.1,0.9199999999999999,1.74105,2.88740,4.05636,1.42750,0.95835,27.89692
8,1.1,0.915,1.71461,2.88740,4.05636,1.25701,1.68261,42.47493
8,1.1,0.91,1.90782,2.86151,5.91208,1.12924,1.94322,70.82372
8,1.1,0.905,1.90782,2.53671,5.91208,1.18775,1.94322,66.03831
9,1.01,0.99,2.39304,6.43013,5.64344,0.66003,1.56220,89.53944
9,1.01,0.985,2.57257,6.61393,5.15787,0.59451,1.69636,88.50646
9,1.01,0.98,2.48220,5.48888,5.26321,0.60176,1.81474,78.30793
9,1.01,0.975,2.45724,5.25914,5.93355,0.64533,1.79219,88.68320
9,1.01,0.97,2.74751,4.99114,5.86945,0.60320,2.14443,104.11355
9,1.01,0.965,2.52629,5.13615,6.23614,0.62600,1.81209,91.78844
9,1.01,0.96,2.46128,5.39480,5.49632,0.72553,1.75043,92.68436
9,1.01,0.955,2.54186,4.66881,6.00724,0.83583,1.89396,112.85522
9,1.01,0.95,2.50240,4.92440,6.18879,1.29069,2.00347,197.20692
9,1.01,0.945,2.47647,4.44957,5.59937,1.47928,1.97109,179.90742
9,1.01,0.94,2.09089,4.44957,6.25472,1.50424,2.04595,179.08848
9,1.01,0.9349999999999999,1.93313,4.45301,6.44686,1.56522,2.22889,193.60924
9,1.01,0.9299999999999999,1.79287,4.49735,6.97762,1.61046,2.29952,208.35308
9,1.01,0.925,1.71102,3.67140,6.23226,1.30570,2.17663,111.26499
9,1.01,0.9199999999999999,1.72080,3.88483,6.29265,1.25493,2.29974,121.40391
9,1.01,0.915,1.67733,3.88483,7.11475,1.03373,2.18933,104.92310
9,1.01,0.91,1.71226,3.88483,7.67835,1.09816,2.34614,131.59258
9,1.01,0.905,1.71226,4.01237,7.68642,0.96327,2.50320,127.33169
9,1.015,0.99,2.51616,5.51162,5.73771,0.58338,1.50591,69.90526
9,1.015,0.985,2.65931,5.88450,5.66466,0.53920,1.59555,76.26200
9,1.015,0.98,2.53861,5.11644,5.79678,0.55127,1.61843,67.17552
9,1.015,0.975,2.45968,4.91799,6.45457,0.56403,1.56979,69.13144
9,1.015,0.97,2.65726,4.45286,6.19652,0.56739,1.90022,79.05115
9,1.015,0.965,2.51962,4.62651,6.74878,0.57830,1.60573,73.05336
9,1.015,0.96,2.54389,5.12096,6.01831,0.62264,1.62263,79.20952
9,1.015,0.955,2.52448,4.43697,6.66647,0.72359,1.76638,95.44049
9,1.015,0.95,2.48529,4.71018,7.03502,1.13405,1.88901,176.41895
9,1.015,0.945,2.56596,4.26174,6.38816,1.24852,1.88784,164.65510
9,1.015,0.94,2.12898,4.26174,6.31435,1.18936,1.99943,136.24009
9,1.015,0.9349999999999999,1.96835,4.31081,6.53147,1.38069,2.22710,170.41564
9,1.015,0.9299999999999999,1.82554,4.35373,6.92829,1.46164,2.29768,184.93022
9,1.015,0.925,1.74220,3.57867,6.18820,1.23672,2.17489,103.77449
9,1.015,0.9199999999999999,1.75215,3.79974,6.29265,1.18863,2.29910,114.48895
9,1.015,0.915,1.70789,3.79974,7.11475,0.97912,2.18872,98.94686
9,1.015,0.91,1.73849,3.79974,7.67835,1.04328,2.34614,124.15078
9,1.015,0.905,1.73849,3.96311,7.68642,0.82518,2.50320,109.38901
9,1.02,0.99,2.69817,5.84806,5.68863,0.52952,1.42410,67.68880
9,1.02,0.985,2.88744,6.25020,5.81839,0.49662,1.50680,78.57528
9,1.02,0.98,2.77643,5.29394,6.11729,0.50727,1.59160,72.59313
9,1.02,0.975,2.63218,5.34379,6.64206,0.57948,1.62600,88.02873
9,1.02,0.97,2.80291,4.86881,5.33803,0.59051,2.00029,86.04649
9,1.02,0.965,2.80844,5.23608,5.93793,0.58712,1.68431,86.34834
9,1.02,0.96,2.84750,5.20437,5.33200,0.65065,1.63030,83.81847
9,1.02,0.955,2.81955,4.30497,5.93827,0.77335,1.71814,95.77326
9,1.02,0.95,2.81446,4.59508,6.26657,1.13924,1.84531,170.37302
9,1.02,0.945,2.80440,4.15271,5.84598,1.31461,1.84417,165.05418
9,1.02,0.94,2.17968,4.15271,5.84680,1.25231,1.95318,129.44815
9,1.02,0.9349999999999999,2.03950,4.20052,6.12869,1.44776,2.19065,166.51964
9,1.02,0.9299999999999999,1.89152,4.25048,6.51530,1.39778,2.28552,167.34320
9,1.02,0.925,1.80517,3.49380,5.81933,1.13677,2.16337,90.25940
9,1.02,0.9199999999999999,1.81548,3.70326,5.91755,1.09257,2.29910,99.93672
9,1.02,0.915,1.76962,3.70326,6.69065,0.90085,2.18872,86.45181
9,1.02,0.91,1.76522,3.70326,7.22065,0.95987,2.34614,106.29916
9,1.02,0.905,1.76522,3.96311,7.37566,0.75921,2.50320,98.05999
9,1.025,0.99,3.28451,5.63117,5.11724,0.50116,1.43808,68.21292
9,1.025,0.985,3.52320,6.00115,5.40787,0.48562,1.55164,86.15583
9,1.025,0.98,3.10941,5.21638,5.28505,0.53172,1.59960,72.91122
9,1.025,0.975,2.99696,5.32920,6.12271,0.61404,1.60147,96.16171
9,1.025,0.97,2.95254,5.00776,4.72257,0.62590,1.92261,84.02628
9,1.025,0.965,2.97398,5.51580,5.60962,0.59956,1.68673,93.05959
9,1.025,0.96,3.03847,5.23540,5.04869,0.62644,1.52496,76.72230
9,1.025,0.955,3.02614,4.33063,5.74127,0.71159,1.64756,88.21072
9,1.025,0.95,3.02845,4.67427,6.07770,1.03668,1.76950,157.82217
9,1.025,0.945,3.03654,4.00730,5.69556,1.19626,1.76841,146.61446
9,1.025,0.94,2.13012,4.00730,5.73166,1.16228,1.91361,108.81768
9,1.025,0.9349999999999999,2.02218,4.16453,6.16747,1.34368,2.14627,149.78698
9,1.025,0.9299999999999999,1.87545,4.21509,6.51648,1.30587,2.26071,152.07909
9,1.025,0.925,1.78983,3.47074,5.82038,1.10520,2.13989,85.51025
9,1.025,0.9199999999999999,1.80006,3.67882,5.97666,1.06223,2.27414,95.60682
9,1.025,0.915,1.62818,3.67882,6.75747,0.89745,2.16496,78.64214
9,1.025,0.91,1.69333,3.67882,7.29042,0.95987,2.34614,102.27561
9,1.025,0.905,1.69333,3.96311,7.44693,0.75921,2.50320,94.97522
9,1.03,0.99,2.91775,5.01062,4.58202,0.51833,1.43674,49.88597
9,1.03,0.985,2.99716,5.25068,4.58558,0.49288,1.65141,58.73760
9,1.03,0.98,2.69332,4.74897,4.73770,0.54876,1.57436,52.35325
9,1.03,0.975,2.61789,4.95737,5.89095,0.62551,1.64605,78.71677
9,1.03,0.97,2.64952,4.76603,4.54381,0.61024,1.94452,68.08591
9,1.03,0.965,2.72268,5.43469,5.39468,0.60733,1.70595,82.70473
9,1.03,0.96,2.85439,5.28713,4.88190,0.59945,1.47706,65.23395
9,1.03,0.955,2.84281,4.69974,5.64414,0.65161,1.52533,74.95013
9,1.03,0.95,2.83797,5.22352,5.97488,0.95709,1.66015,140.73454
9,1.03,0.945,2.95419,3.95713,5.75448,1.12433,1.65913,125.48670
9,1.03,0.94,2.07235,3.95713,5.87544,1.08138,1.80474,94.03161
9,1.03,0.9349999999999999,1.96734,4.11267,6.28592,1.25015,2.02417,128.70070
9,1.03,0.9299999999999999,1.82459,4.18355,6.70239,1.21891,2.13209,132.95872
9,1.03,0.925,1.74130,3.44476,5.98643,1.05905,2.01815,76.74810
9,1.03,0.9199999999999999,1.75125,3.64559,6.14717,1.01787,2.15353,86.02668
9,1.03,0.915,1.58403,3.64559,6.82017,0.85997,2.05014,69.43742
9,1.03,0.91,1.66113,3.64559,7.20058,0.91647,2.22172,88.78656
9,1.03,0.905,1.66113,3.92731,7.35516,0.72488,2.37045,82.44901
9,1.035,0.99,2.60585,3.89892,3.44747,0.55598,1.24418,24.22920
9,1.035,0.985,2.65864,4.16249,3.58497,0.53670,1.54525,32.90227
9,1.035,0.98,2.52744,4.04967,3.81846,0.54916,1.53528,32.95152
9,1.035,0.975,2.51766,4.66304,4.96932,0.60462,1.62779,57.41725
9,1.035,0.97,2.33674,4.57045,4.26998,0.60928,1.84838,51.35774
9,1.035,0.965,2.40103,5.22714,5.13971,0.62757,1.65166,66.86297
9,1.035,0.96,2.64145,5.07282,4.45211,0.58537,1.45096,50.66895
9,1.035,0.955,2.65569,4.50924,5.43889,0.64942,1.51413,64.04377
9,1.035,0.95,2.72752,5.31229,5.75760,0.88606,1.65390,122.25397
9,1.035,0.945,3.01376,4.16764,5.71915,1.04085,1.65515,123.75274
9,1.035,0.94,2.01753,4.16764,5.77408,1.00109,1.81016,87.97916
9,1.035,0.9349999999999999,1.93187,4.38323,6.28697,1.15733,2.06450,127.19930
9,1.035,0.9299999999999999,1.79170,4.34191,6.68503,1.12840,2.17458,127.61116
9,1.035,0.925,1.70990,3.57517,5.97092,0.98041,2.05836,73.66132
9,1.035,0.9199999999999999,1.71967,3.64049,6.13125,0.94229,2.11906,76.64505
9,1.035,0.915,1.55547,3.64049,6.80250,0.79758,2.01733,61.97888
9,1.035,0.91,1.63118,3.64049,7.18192,0.85241,2.18616,79.47564
9,1.035,0.905,1.63118,3.92731,7.33610,0.67421,2.33251,73.90609
9,1.04,0.99,2.06438,3.98970,3.53551,0.51001,1.16064,17.23676
9,1.04,0.985,2.06561,3.98661,3.65468,0.51210,1.22697,18.90985
9,1.04,0.98,2.09184,3.97045,3.96890,0.49419,1.31311,21.39086
9,1.04,0.975,2.08360,4.47968,5.13444,0.56104,1.40567,37.79464
9,1.04,0.97,1.91690,4.22323,3.92226,0.57714,1.81296,33.22398
9,1.04,0.965,2.14297,5.06011,4.80386,0.64095,1.62255,54.17392
9,1.04,0.96,2.33809,4.65703,4.27708,0.63682,1.42538,42.27340
9,1.04,0.955,2.45080,4.13965,5.31363,0.70443,1.50148,57.01907
9,1.04,0.95,2.56534,5.18361,5.62500,0.98760,1.64009,121.15667
9,1.04,0.945,2.86807,4.09977,5.59426,1.25438,1.64132,135.43054
9,1.04,0.94,1.92000,4.09977,6.01432,1.12959,1.79504,95.99355
9,1.04,0.9349999999999999,1.82577,4.33898,7.00111,1.30566,2.04726,148.25288
9,1.04,0.9299999999999999,1.69330,4.29809,7.53795,1.23979,2.16525,147.27150
9,1.04,0.925,1.61599,3.54606,6.73273,1.00443,2.04953,79.42404
9,1.04,0.9199999999999999,1.62523,3.61085,6.96855,0.96538,2.10997,83.29908
9,1.04,0.915,1.47005,3.61085,7.55453,0.81712,2.00868,65.81802
9,1.04,0.91,1.55153,3.61085,8.12557,0.87329,2.17678,86.53646
9,1.04,0.905,1.55153,3.92731,7.33610,0.69073,2.32250,71.71051
9,1.045,0.99,2.06791,3.05018,3.62511,0.42414,1.23795,12.00577
9,1.045,0.985,2.10289,3.10126,3.85505,0.44938,1.28601,14.52928
9,1.045,0.98,2.09942,2.88561,4.36891,0.45457,1.37835,16.58328
9,1.045,0.975,2.10230,3.06030,5.50938,0.46951,1.39032,23.13771
9,1.045,0.97,2.00184,2.94385,4.16766,0.51055,1.66041,20.82041
9,1.045,0.965,2.16102,3.62965,5.40801,0.56700,1.48039,35.60561
9,1.045,0.96,2.24937,4.01044,4.93269,0.57150,1.31208,33.36674
9,1.045,0.955,2.37041,3.64402,5.40623,0.60137,1.38160,38.79902
9,1.045,0.95,2.50441,5.71597,5.82600,0.86657,1.49988,108.39902
9,1.045,0.945,2.79967,4.54929,6.14291,1.11816,1.54214,134.91269
9,1.045,0.94,1.92983,4.54929,6.15430,1.02402,1.67295,92.56163
9,1.045,0.9349999999999999,1.69177,4.75418,7.33100,1.10207,2.01695,131.06457
9,1.045,0.9299999999999999,1.56902,4.70936,7.95292,1.07139,2.15890,135.92467
9,1.045,0.925,1.49739,3.60397,7.10337,0.90367,2.04352,70.79000
9,1.045,0.9199999999999999,1.50595,3.54813,7.03219,0.86854,2.10379,68.65786
9,1.045,0.915,1.36215,3.54813,7.62352,0.75513,2.00279,55.72313
9,1.045,0.91,1.43766,3.54813,8.19977,0.84321,2.17040,76.54793
9,1.045,0.905,1.43766,3.92731,7.40310,0.66693,2.31569,64.55456
9,1.05,0.99,1.83921,2.64633,3.12999,0.36628,1.09526,6.11146
9,1.05,0.985,1.99559,2.61844,3.18751,0.39248,1.16167,7.59383
9,1.05,0.98,2.02370,2.46370,3.72565,0.36250,1.22548,8.25187
9,1.05,0.975,2.02174,2.77168,4.34372,0.37614,1.18435,10.84328
9,1.05,0.97,1.92512,2.72495,3.28588,0.40902,1.37419,9.68860
9,1.05,0.965,2.12493,3.25473,4.37449,0.44473,1.27913,17.21065
9,1.05,0.96,2.26471,3.64366,4.21343,0.45987,1.14588,18.32151
9,1.05,0.955,2.41652,3.31076,4.98202,0.48884,1.21227,23.62048
9,1.05,0.95,2.58158,5.56880,5.46248,0.73097,1.54089,88.45202
9,1.05,0.945,2.75044,4.65366,5.10688,0.99747,1.58430,103.29776
9,1.05,0.94,1.90785,4.65366,5.15427,0.91349,1.71869,71.84658
9,1.05,0.9349999999999999,1.67250,4.86324,5.97692,0.98664,2.07209,99.38915
9,1.05,0.9299999999999999,1.55115,4.65438,6.56215,0.98342,2.21793,103.33481
9,1.05,0.925,1.48034,3.56189,5.86117,0.86791,2.09939,56.31101
9,1.05,0.9199999999999999,1.48880,3.54813,5.80243,0.83416,2.09134,53.47116
9,1.05,0.915,1.34664,3.54813,6.29035,0.72524,1.99093,43.39751
9,1.05,0.91,1.42129,3.54813,7.77857,0.81213,2.15755,68.73335
9,1.05,0.905,1.42129,3.92731,7.02282,0.64235,2.30199,57.96435
9,1.055,0.99,1.54298,2.16502,2.52273,0.39896,1.05669,3.55279
9,1.055,0.985,1.70741,2.60798,2.37257,0.41493,1.12461,4.92992
9,1.055,0.98,1.79700,2.49433,2.84691,0.37855,1.16638,5.63428
9,1.055,0.975,1.82597,2.64964,3.40880,0.37621,1.17342,7.28071
9,1.055,0.97,1.79302,2.66938,2.81913,0.41940,1.38189,7.82011
9,1.055,0.965,1.92077,3.17767,3.75310,0.44373,1.35211,13.74392
9,1.055,0.96,2.02951,2.93746,3.63191,0.44865,1.17876,11.45088
9,1.055,0.955,1.99337,2.81538,3.73318,0.49428,1.08649,11.25125
9,1.055,0.95,2.15816,5.42430,4.10691,0.66000,1.50551,47.77118
9,1.055,0.945,2.66208,4.58386,3.95729,0.92062,1.56026,69.36284
9,1.055,0.94,1.81825,4.58386,4.36877,0.84311,1.70407,52.31325
9,1.055,0.9349999999999999,1.59395,4.80457,4.65944,0.91862,2.16191,70.86558
9,1.055,0.9299999999999999,1.47830,4.69684,5.68559,0.82935,2.21569,72.54236
9,1.055,0.925,1.41081,3.77087,5.24152,0.80237,2.09728,46.92467
9,1.055,0.9199999999999999,1.41888,3.37026,5.28292,0.77118,2.08923,40.70242
9,1.055,0.915,1.28340,3.37026,5.72715,0.69643,1.98893,34.31289
9,1.055,0.91,1.37249,3.37026,8.17692,0.77986,2.15006,63.42093
9,1.055,0.905,1.37249,3.73043,7.38247,0.61683,2.30199,53.67058
9,1.06,0.99,1.59594,1.82317,2.94674,0.40234,1.03521,3.57111
9,1.06,0.985,1.77454,2.61125,2.87160,0.42102,1.10370,6.18324
9,1.06,0.98,1.86765,2.50773,3.51123,0.38826,0.98769,6.30639
9,1.06,0.975,1.89185,2.60821,3.90307,0.36843,1.00426,7.12584
9,1.06,0.97,1.79909,2.69634,3.31882,0.42041,0.95508,6.46426
9,1.06,0.965,1.93965,3.22111,3.83313,0.44480,1.03665,11.04275
9,1.06,0.96,1.91173,2.97762,3.70830,0.42785,0.94515,8.53605
9,1.06,0.955,1.87768,2.85386,3.45383,0.47287,0.89776,7.85703
9,1.06,0.95,1.88728,5.42430,3.82583,0.65834,1.58680,40.91482
9,1.06,0.945,2.32796,4.58386,3.42672,0.93749,1.68093,57.62367
9,1.06,0.94,1.63233,4.58386,3.57044,0.85856,1.73515,39.79876
9,1.06,0.9349999999999999,1.43097,4.80457,3.80799,1.04140,2.16191,58.94402
9,1.06,0.9299999999999999,1.32715,4.69684,5.68559,0.82935,2.21569,65.12500
9,1.06,0.925,1.27498,3.77087,5.24152,0.80237,2.09728,42.40674
9,1.06,0.9199999999999999,1.28273,3.37026,5.28292,0.77118,2.08923,36.79687
9,1.06,0.915,1.17511,3.37026,5.72715,0.69643,1.98893,31.41787
9,1.06,0.91,1.25669,3.37026,8.17692,0.77986,2.15006,58.07003
9,1.06,0.905,1.25669,3.73043,7.38247,0.61683,2.30199,49.14233
9,1.065,0.99,1.55300,1.84676,3.02300,0.40647,1.06545,3.75474
9,1.065,0.985,1.71388,2.38177,2.81579,0.42860,1.05792,5.21180
9,1.065,0.98,1.86038,2.58875,3.46987,0.39695,1.00623,6.67473
9,1.065,0.975,1.88447,2.67649,3.80824,0.37667,0.95532,6.91184
9,1.065,0.97,1.80041,2.59623,3.23819,0.40282,0.90875,5.54074
9,1.065,0.965,1.96941,3.08308,3.76638,0.42619,0.90310,8.80200
9,1.065,0.96,1.95457,2.85002,3.64372,0.40405,0.87348,7.16366
9,1.065,0.955,1.91976,2.74589,3.39368,0.42321,0.82969,6.28165
9,1.065,0.95,1.93857,5.21908,3.67690,0.58743,1.31754,28.79219
9,1.065,0.945,2.39548,4.63855,3.29333,0.83651,1.32290,40.49552
9,1.065,0.94,1.86002,4.63855,3.43146,0.76608,1.36558,30.97184
9,1.065,0.9349999999999999,1.73881,4.86190,3.65976,0.92923,2.25963,64.96357
9,1.065,0.9299999999999999,1.61265,4.77607,5.46427,0.74001,2.35133,73.23134
9,1.065,0.925,1.61265,4.30963,5.03749,0.78452,2.25304,61.88212
9,1.065,0.9199999999999999,1.62245,3.53135,5.07727,0.75401,2.24819,49.31223
9,1.065,0.915,1.54603,3.53135,5.50422,0.69643,2.14026,44.79164
9,1.065,0.91,1.66508,3.53135,8.17692,0.77986,2.32233,87.07821
9,1.065,0.905,1.66508,3.73043,7.38247,0.61683,2.32233,65.68773
9,1.07,0.99,1.53636,1.72085,2.89446,0.39684,1.12478,3.41572
9,1.07,0.985,1.69552,2.30039,2.69606,0.41845,1.11899,4.92381
9,1.07,0.98,1.87489,2.14400,3.32233,0.38641,1.07522,5.54864
9,1.07,0.975,1.89917,2.07888,3.64631,0.38626,1.00240,5.57399
9,1.07,0.97,1.81445,2.01653,3.10050,0.41228,0.95353,4.45972
9,1.07,0.965,1.98477,2.33115,3.61061,0.45068,0.94760,7.13429
9,1.07,0.96,1.98000,2.25118,3.49303,0.45831,0.92901,6.62915
9,1.07,0.955,1.94474,2.23185,3.25333,0.48914,0.88244,6.09494
9,1.07,0.95,1.96380,4.30093,3.52484,0.70444,1.40131,29.38841
9,1.07,0.945,2.42525,4.79890,3.15713,0.89429,1.43280,47.08197
9,1.07,0.94,1.93120,4.79890,3.28954,0.82481,1.41199,35.50497
9,1.07,0.9349999999999999,1.93120,5.03407,3.54828,1.00317,2.50534,86.69692
9,1.07,0.9299999999999999,1.79108,4.94519,5.29783,0.80253,2.62240,98.75355
9,1.07,0.925,1.79108,4.61403,4.88404,0.92857,2.51277,94.17630
9,1.07,0.9199999999999999,1.78579,3.78078,4.92262,0.89246,2.33716,69.32426
9,1.07,0.915,1.75867,3.78078,5.33655,0.74154,2.22495,58.54407
9,1.07,0.91,1.94918,3.78078,7.92784,0.84360,2.41423,118.98811
9,1.07,0.905,1.94918,4.16543,7.15759,0.69297,2.41423,97.22311
9,1.075,0.99,1.28782,1.69429,2.81506,0.47220,1.03808,3.01085
9,1.075,0.985,1.42123,2.26489,2.65146,0.49959,1.03808,4.42629
9,1.075,0.98,1.57158,2.11091,3.32505,0.47106,1.01794,5.28933
9,1.075,0.975,1.53776,2.04679,3.57721,0.43746,0.99338,4.89279
9,1.075,0.97,1.48502,1.98541,3.04174,0.48895,0.95822,4.20177
9,1.075,0.965,1.66302,2.29517,3.54219,0.53449,0.95226,6.88142
9,1.075,0.96,1.59915,2.21643,3.42683,0.51671,0.99137,6.22181
9,1.075,0.955,1.57067,2.19740,3.19167,0.55818,0.96856,5.95537
9,1.075,0.95,1.63041,4.23454,3.44288,0.83508,1.55663,30.89852
9,1.075,0.945,2.01353,4.72483,3.08372,0.99756,1.39387,40.79262
9,1.075,0.94,1.91039,4.72483,3.21306,0.90493,1.39387,36.58182
9,1.075,0.9349999999999999,1.91039,4.95637,3.46578,1.15882,2.30062,87.48785
9,1.075,0.9299999999999999,1.77178,4.94519,5.20692,0.99708,2.44555,111.24483
9,1.075,0.925,1.77178,4.61403,4.80024,1.26777,2.36643,117.73002
9,1.075,0.9199999999999999,1.76655,3.78078,4.83815,1.21847,2.20105,86.66242
9,1.075,0.915,1.73973,3.78078,5.24498,1.02917,2.14981,76.32979
9,1.075,0.91,1.94918,3.78078,7.92784,1.08163,2.33269,147.40985
9,1.075,0.905,1.94918,4.16543,7.15759,0.91442,2.33269,123.95967
9,1.08,0.99,1.20545,1.68044,2.69186,0.53243,1.10079,3.19589
9,1.08,0.985,1.33033,2.24638,2.62589,0.55649,1.10079,4.80705
9,1.08,0.98,1.49028,2.09367,3.16688,0.52470,1.09642,5.68455
9,1.08,0.975,1.48004,2.03007,3.30921,0.54665,1.07796,5.85888
9,1.08,0.97,1.44585,1.96918,2.90448,0.55082,1.06916,4.86997
9,1.08,0.965,1.43213,2.27642,3.06521,0.60260,1.05585,6.35812
9,1.08,0.96,1.40837,2.19832,3.00636,0.58256,1.11324,6.03641
9,1.08,0.955,1.40837,2.17945,2.86447,0.62931,1.08763,6.01801
9,1.08,0.95,1.38436,4.19995,2.80899,0.95207,1.52411,23.69904
9,1.08,0.945,1.38436,4.68623,2.58020,1.16119,1.48396,28.84378
9,1.08,0.94,2.01717,4.68623,2.84951,1.05337,1.48396,42.10533
9,1.08,0.9349999999999999,2.01717,4.91587,3.07364,1.34890,1.49117,61.30587
9,1.08,0.9299999999999999,1.97541,4.90479,4.01246,1.16062,1.41693,63.93372
9,1.08,0.925,1.97541,4.57633,3.69907,1.47572,1.37109,67.66083
9,1.08,0.9199999999999999,1.96958,3.74989,3.72828,1.41833,1.27527,49.80592
9,1.08,0.915,1.93967,3.74989,4.04179,1.21037,1.24558,44.32116
9,1.08,0.91,1.94918,3.74989,6.85817,1.27207,2.32856,148.48286
9,1.08,0.905,1.94918,4.16543,6.19184,1.07541,2.32856,125.89054
9,1.085,0.99,1.08547,1.64759,2.62246,0.58130,0.98952,2.69774
9,1.085,0.985,1.19791,2.20246,2.62021,0.62417,0.98952,4.26970
9,1.085,0.98,1.34194,2.05273,2.90948,0.60105,0.98559,4.74772
9,1.085,0.975,1.33272,1.99037,3.04024,0.57986,0.98559,4.60897
9,1.085,0.97,1.30194,1.93068,2.68313,0.57388,0.97511,3.77415
9,1.085,0.965,1.28959,2.24875,2.86183,0.64105,0.97511,5.18782
9,1.085,0.96,1.26819,2.17160,2.57251,0.59672,0.97279,4.11253
9,1.085,0.955,1.26819,2.15295,2.57542,0.71616,0.95041,4.78619
9,1.085,0.95,1.24657,4.14889,2.49392,0.90206,1.28705,14.97503
9,1.085,0.945,1.24657,4.62926,2.30306,1.18929,1.25314,19.80723
9,1.085,0.94,1.81640,4.62926,2.54609,1.07886,1.25314,28.94416
9,1.085,0.9349999999999999,1.81640,4.85612,2.74635,1.30521,1.25923,39.81449
9,1.085,0.9299999999999999,1.77879,4.84517,3.58520,1.12303,1.22483,42.50263
9,1.085,0.925,1.77879,4.52071,3.30518,1.42792,1.18520,44.98039
9,1.085,0.9199999999999999,1.77354,3.74989,3.33129,1.37240,1.14616,34.84940
9,1.085,0.915,1.74661,3.74989,3.38141,1.17117,1.11948,29.03661
9,1.085,0.91,1.94918,3.74989,5.73762,1.23087,2.07537,107.12943
9,1.085,0.905,1.94918,4.16543,5.18017,1.04058,2.07537,90.82922
9,1.09,0.99,1.06243,1.53804,2.41566,0.61819,0.98268,2.39794
9,1.09,0.985,1.17249,2.09844,2.30389,0.66378,0.98268,3.69745
9,1.09,0.98,1.31346,1.95578,2.55843,0.65265,0.98268,4.21511
9,1.09,0.975,1.30444,1.90150,2.67341,0.62965,0.98268,4.10298
9,1.09,0.97,1.27431,1.84447,2.47460,0.62316,0.98268,3.56172
9,1.09,0.965,1.26222,2.22068,2.63941,0.69650,0.98268,5.06362
9,1.09,0.96,1.24128,2.14450,2.37257,0.64832,0.98268,4.02365
9,1.09,0.955,1.24128,2.12609,2.37125,0.77810,0.96426,4.69522
9,1.09,0.95,1.22012,4.09712,2.20508,0.96049,0.94576,10.01334
9,1.09,0.945,1.22012,4.57150,2.03632,1.26632,0.94576,13.60288
9,1.09,0.94,1.77785,4.57150,2.26215,1.21472,0.94576,21.12181
9,1.09,0.9349999999999999,1.77785,4.79552,2.46634,1.46957,0.95035,29.36704
9,1.09,0.9299999999999999,1.74105,4.78471,3.21966,1.26446,0.95035,32.23041
9,1.09,0.925,1.74105,4.46429,3.11239,1.60774,0.91961,35.76644
9,1.09,0.9199999999999999,1.73590,3.70310,3.13697,1.54522,0.91961,28.65468
9,1.09,0.915,1.70955,3.70310,3.18417,1.49929,0.89820,27.14570
9,1.09,0.91,1.90782,3.70310,5.44429,1.57572,1.66515,100.91935
9,1.09,0.905,1.90782,4.16543,5.35288,1.33212,1.66515,94.35818
9,1.095,0.99,1.06243,1.44119,2.45053,0.73624,0.98268,2.71466
9,1.095,0.985,1.17249,1.98650,2.33714,0.79943,0.98268,4.27637
9,1.095,0.98,1.31346,1.87909,2.59535,0.76481,0.98268,4.81428
9,1.095,0.975,1.30444,1.85190,2.71200,0.75535,0.98268,4.86287
9,1.095,0.97,1.27431,1.86173,2.51031,0.75402,0.98268,4.41281
9,1.095,0.965,1.26222,2.27851,2.67750,0.81801,0.98268,6.18994
9,1.095,0.96,1.24128,2.26358,2.46677,0.78462,0.98268,5.34401
9,1.095,0.955,1.24128,2.24414,2.46539,0.94168,0.96426,6.23595
9,1.095,0.95,1.22012,4.32090,2.29263,1.11778,0.94576,12.77757
9,1.095,0.945,1.22012,5.54990,2.11717,1.37846,0.94576,18.69030
9,1.095,0.94,1.77785,5.54990,2.33341,1.32229,0.94576,28.79241
9,1.095,0.9349999999999999,1.77785,5.33736,2.54404,1.59971,0.95035,36.70046
9,1.095,0.9299999999999999,1.74105,5.12136,3.32109,1.37643,0.95035,38.73615
9,1.095,0.925,1.74105,4.77841,3.21045,1.77239,0.91961,43.53311
9,1.095,0.9199999999999999,1.73590,3.96365,3.14114,1.70347,0.91961,33.85672
9,1.095,0.915,1.70955,3.96365,3.18840,1.49929,0.89820,29.09427
9,1.095,0.91,1.90782,3.96365,5.47597,1.57572,1.66515,108.64878
9,1.095,0.905,1.90782,4.15880,5.38404,1.33212,1.66515,94.75637
9,1.1,0.99,1.06243,1.44119,2.45053,0.69545,0.98268,2.56427
9,1.1,0.985,1.17249,1.98650,2.33714,0.75755,0.98268,4.05239
9,1.1,0.98,1.31346,1.87909,2.59535,0.70931,0.98268,4.46489
9,1.1,0.975,1.30444,1.85190,2.71200,0.70182,0.98268,4.51825
9,1.1,0.97,1.27431,1.86173,2.51031,0.70059,0.98268,4.10008
9,1.1,0.965,1.26222,2.27851,2.67750,0.72444,0.98268,5.48190
9,1.1,0.96,1.24128,2.26358,2.46677,0.70716,0.98268,4.81647
9,1.1,0.955,1.24128,2.24414,2.46539,0.85782,0.96426,5.68063
9,1.1,0.95,1.22012,4.32090,2.29263,1.01824,0.94576,11.63972
9,1.1,0.945,1.22012,5.54990,2.11717,1.29332,0.94576,17.53592
9,1.1,0.94,1.77785,5.54990,2.33341,1.24062,0.94576,27.01410
9,1.1,0.9349999999999999,1.77785,5.33736,2.54404,1.50090,0.95035,34.43372
9,1.1,0.9299999999999999,1.74105,5.12136,3.32109,1.29142,0.95035,36.34368
9,1.1,0.925,1.74105,4.77841,3.21045,1.66292,0.91961,40.84436
9,1.1,0.9199999999999999,1.73590,3.96365,3.14114,1.59826,0.91961,31.76562
9,1.1,0.915,1.70955,3.96365,3.18840,1.40669,0.89820,27.29731
9,1.1,0.91,1.90782,3.96365,5.47597,1.47839,1.66515,101.93827
9,1.1,0.905,1.90782,4.15880,5.38404,1.24984,1.66515,88.90390
10,1.01,0.99,2.91333,6.93410,6.96100,0.62724,1.31611,116.08436
10,1.01,0.985,3.04497,6.39984,7.02249,0.64330,1.50164,132.19781
10,1.01,0.98,2.92670,5.68635,6.52472,0.67332,1.66430,121.68243
10,1.01,0.975,3.04331,5.57266,6.68821,0.72767,1.95513,161.37221
10,1.01,0.97,2.92309,4.53497,6.22427,0.87512,1.92271,138.83079
10,1.01,0.965,2.94077,4.59621,5.84727,0.75401,1.80699,107.68305
10,1.01,0.96,2.76942,4.89582,6.62446,0.81643,1.59240,116.77182
10,1.01,0.955,2.68379,5.19144,7.59481,0.87190,1.79279,165.40617
10,1.01,0.95,2.52437,4.56552,7.29554,1.00033,1.87052,157.32756
10,1.01,0.945,2.48693,4.55260,6.88034,1.21991,2.04418,194.25834
10,1.01,0.94,2.32600,4.20451,6.71912,1.30196,1.98391,169.72880
10,1.01,0.9349999999999999,2.16864,3.98066,7.02392,1.20075,2.08866,152.06925
10,1.01,0.9299999999999999,2.10420,4.49325,7.08495,1.24009,2.30984,191.87540
10,1.01,0.925,1.98649,4.13036,7.75852,1.19241,2.47096,187.56190
10,1.01,0.9199999999999999,1.85753,3.93079,6.88126,1.08381,2.38621,129.94068
10,1.01,0.915,1.77732,3.87681,6.91572,1.16212,2.42018,134.02260
10,1.01,0.91,1.84029,4.09680,6.83481,0.96716,2.56206,127.68699
10,1.01,0.905,1.67794,3.97081,7.06880,0.92062,2.75564,119.48254
10,1.015,0.99,2.81844,7.11135,7.40609,0.63248,1.25541,117.86418
10,1.015,0.985,3.04808,6.52927,7.49578,0.63897,1.43868,137.13619
10,1.015,0.98,2.88207,5.86433,7.09336,0.65919,1.62701,128.58113
10,1.015,0.975,3.02670,6.07180,6.87880,0.71882,1.90997,173.55958
10,1.015,0.97,2.98713,5.03014,6.34014,0.84690,1.86914,150.80196
10,1.015,0.965,3.02330,5.29925,5.95576,0.76772,1.67053,122.37448
10,1.015,0.96,2.90129,5.35940,6.43147,0.79241,1.47215,116.65919
10,1.015,0.955,2.90730,5.44688,7.42476,0.87293,1.65740,170.10909
10,1.015,0.95,2.71786,4.56376,7.28782,0.96427,1.74130,151.78147
10,1.015,0.945,2.69428,4.58975,6.87306,1.19076,1.95230,197.58333
10,1.015,0.94,2.54607,4.23882,6.68318,1.28725,1.90892,177.23417
10,1.015,0.9349999999999999,2.20954,4.01314,6.94724,1.17056,2.00970,144.91947
10,1.015,0.9299999999999999,2.16971,4.57853,7.00760,1.22863,2.22252,190.09173
10,1.015,0.925,2.04834,4.20876,7.73339,1.18139,2.37755,187.26082
10,1.015,0.9199999999999999,1.91536,4.00540,6.85898,1.07776,2.29600,130.21179
10,1.015,0.915,1.83265,4.03910,6.89332,1.15564,2.32869,137.31801
10,1.015,0.91,1.84029,4.10778,6.81267,0.96177,2.46521,122.10521
10,1.015,0.905,1.67794,3.98145,7.03906,0.91548,2.65147,114.14855
10,1.02,0.99,2.87044,6.85337,5.81320,0.66980,1.18679,90.90424
10,1.02,0.985,3.00594,6.41979,5.99369,0.66458,1.38572,106.51717
10,1.02,0.98,2.85162,5.69805,5.73134,0.71534,1.57332,104.80985
10,1.02,0.975,2.92517,5.74862,5.75667,0.77227,1.83269,137.00649
10,1.02,0.97,2.88537,4.85646,5.58721,0.98624,1.82598,140.99252
10,1.02,0.965,2.92121,5.11614,5.16486,0.92662,1.65522,118.39200
10,1.02,0.96,2.86558,5.29436,5.65456,0.95836,1.51754,124.76448
10,1.02,0.955,2.91922,5.43160,6.52786,0.97408,1.53345,154.60627
10,1.02,0.95,2.75342,4.36746,6.45423,0.99791,1.61107,124.78195
10,1.02,0.945,2.87622,4.46018,6.08691,1.23727,1.82495,176.31433
10,1.02,0.94,2.45334,4.11915,6.25474,1.25338,1.81906,144.11354
10,1.02,0.9349999999999999,2.12907,3.89985,6.50187,1.07088,1.92840,111.48462
10,1.02,0.9299999999999999,2.09202,4.46849,6.57067,1.16495,2.13261,152.60006
10,1.02,0.925,1.97500,4.13594,7.32766,1.12016,2.35174,157.67830
10,1.02,0.9199999999999999,1.84677,3.93610,6.49912,1.00667,2.29600,109.19323
10,1.02,0.915,1.79303,3.96921,6.53167,1.07179,2.32869,116.02093
10,1.02,0.91,1.82737,4.10778,6.45524,0.89198,2.46521,106.55074
10,1.02,0.905,1.66616,3.98145,6.66976,0.84906,2.65147,99.60764
10,1.025,0.99,3.00874,5.97144,5.48572,0.61519,1.14079,69.16920
10,1.025,0.985,3.06208,5.52495,6.21263,0.61396,1.37710,88.86340
10,1.025,0.98,2.80455,4.95150,5.58622,0.66615,1.48009,76.48525
10,1.025,0.975,2.75473,4.99545,5.37846,0.68211,1.70669,86.16290
10,1.025,0.97,2.81144,4.35909,5.14843,0.87121,1.70265,93.59385
10,1.025,0.965,2.69481,4.52652,4.74190,0.81854,1.53775,72.80685
10,1.025,0.96,2.65727,4.76156,5.37114,0.98222,1.42491,95.11459
10,1.025,0.955,2.70701,4.97061,6.28376,0.92586,1.46423,114.62432
10,1.025,0.95,2.55326,4.00891,6.14864,0.94852,1.53835,91.83364
10,1.025,0.945,2.71215,4.11588,5.79871,1.20908,1.74385,136.48111
10,1.025,0.94,2.36077,3.87938,6.26236,1.22483,1.73822,122.10506
10,1.025,0.9349999999999999,2.04873,3.67284,6.61391,1.07337,1.85819,99.26226
10,1.025,0.9299999999999999,2.01308,4.28652,6.68389,1.21003,2.05047,143.10217
10,1.025,0.925,1.90048,3.97441,7.50125,1.16350,2.26334,149.20560
10,1.025,0.9199999999999999,1.77709,3.78238,6.65308,1.03818,2.20970,102.58971
10,1.025,0.915,1.72537,3.82726,6.39275,1.11751,2.24116,105.72635
10,1.025,0.91,1.75842,3.96781,6.31796,0.93003,2.37254,97.26654
10,1.025,0.905,1.60330,3.84579,6.69589,0.88528,2.55180,93.26827
10,1.03,0.99,2.58987,5.23115,5.34395,0.76056,1.14914,63.27681
10,1.03,0.985,2.69735,4.94936,5.96256,0.72324,1.30157,74.93192
10,1.03,0.98,2.44889,4.68849,5.33042,0.81287,1.50116,74.68109
10,1.03,0.975,2.47960,4.92885,5.38404,0.84070,1.70119,94.10844
10,1.03,0.97,2.55781,4.50266,5.40740,1.00130,1.67517,104.46057
10,1.03,0.965,2.48722,4.94977,5.01286,1.00499,1.53415,95.15138
10,1.03,0.96,2.55170,5.14286,5.66524,1.19573,1.42157,126.37257
10,1.03,0.955,2.64317,5.10296,6.72027,1.12807,1.46080,149.36909
10,1.03,0.95,2.57437,3.89420,6.06755,1.15312,1.61903,113.56148
10,1.03,0.945,2.56604,3.98882,5.72223,1.48394,1.88326,163.68187
10,1.03,0.94,2.23359,3.75962,6.17570,1.63806,1.87718,159.46670
10,1.03,0.9349999999999999,1.93836,3.55946,6.60229,1.22968,2.00674,112.40778
10,1.03,0.9299999999999999,1.90463,4.19980,6.65820,1.29229,2.06815,142.34365
10,1.03,0.925,1.79809,3.88468,7.47242,1.24260,2.28285,148.05948
10,1.03,0.9199999999999999,1.68136,3.69699,6.62751,1.10875,2.22875,101.80167
10,1.03,0.915,1.66039,3.74086,6.36818,1.21712,2.26556,109.07022
10,1.03,0.91,1.72433,3.92085,6.29367,1.09358,2.39837,111.60150
10,1.03,0.905,1.57221,3.80027,6.68748,1.04095,2.57958,107.29196
10,1.035,0.99,2.56318,4.11759,4.92178,0.67633,1.10394,38.78374
10,1.035,0.985,2.72287,3.89443,5.32217,0.66272,1.37435,51.40270
10,1.035,0.98,2.58688,3.94402,4.94665,0.68401,1.62112,55.96332
10,1.035,0.975,2.56713,4.16318,5.39637,0.72108,1.82615,75.94503
10,1.035,0.97,2.55869,3.77939,5.31201,0.86710,1.87805,83.65142
10,1.035,0.965,2.45992,4.26874,4.99432,0.80461,1.71995,72.57714
10,1.035,0.96,2.54189,4.21781,5.24395,1.04105,1.59373,93.28020
10,1.035,0.955,2.66227,4.69251,6.35755,1.03101,1.44193,118.07412
10,1.035,0.95,2.59298,3.83733,5.83197,1.04873,1.60847,97.88601
10,1.035,0.945,2.62255,4.08506,5.51886,1.34960,1.87098,149.29562
10,1.035,0.94,2.18788,3.61134,6.00284,1.48977,1.87840,132.72624
10,1.035,0.9349999999999999,1.89870,3.41907,6.63580,1.05033,2.00804,90.85651
10,1.035,0.9299999999999999,1.87854,4.16456,6.69199,1.14729,2.06949,124.30358
10,1.035,0.925,1.77346,3.86895,7.51034,1.10318,2.28819,130.08055
10,1.035,0.9199999999999999,1.65832,3.68201,6.66115,0.98436,2.22875,89.23105
10,1.035,0.915,1.63764,3.72571,6.36818,1.08057,2.26556,95.11926
10,1.035,0.91,1.70070,3.92085,6.29367,0.97088,2.39837,97.72253
10,1.035,0.905,1.55067,3.80027,6.68748,0.92416,2.57958,93.94893
10,1.04,0.99,2.13812,3.67851,4.62530,0.74010,1.12257,30.22353
10,1.04,0.985,2.13768,3.28311,5.25425,0.68559,1.23096,31.12079
10,1.04,0.98,2.09117,3.38212,4.72585,0.69994,1.41326,33.06270
10,1.04,0.975,2.03111,3.58345,5.20618,0.73754,1.60736,44.92123
10,1.04,0.97,1.99814,3.46399,5.24575,0.90463,1.77254,58.22063
10,1.04,0.965,1.93377,4.12013,4.91751,0.84574,1.56765,51.94534
10,1.04,0.96,2.20036,4.12002,5.18063,1.15383,1.48064,80.23564
10,1.04,0.955,2.31781,4.85718,6.62082,1.13425,1.34535,113.74124
10,1.04,0.95,2.26451,3.99222,6.35604,1.12055,1.50053,96.61680
10,1.04,0.945,2.47323,4.36241,6.01479,1.45108,1.77289,166.94958
10,1.04,0.94,2.06331,3.85653,6.72484,1.60179,1.77992,152.56299
10,1.04,0.9349999999999999,1.79059,3.65120,7.64579,1.17634,1.91565,112.64320
10,1.04,0.9299999999999999,1.75867,4.25135,7.94395,1.21450,1.97427,142.41366
10,1.04,0.925,1.66029,3.94958,8.52206,1.16780,2.18291,142.45706
10,1.04,0.9199999999999999,1.55250,3.75875,7.55847,1.02279,2.12620,95.91813
10,1.04,0.915,1.53687,3.80890,7.90288,1.11319,2.16131,111.30296
10,1.04,0.91,1.59605,3.90747,7.81041,1.00019,2.32062,113.05836
10,1.04,0.905,1.45525,3.78731,8.19344,0.95206,2.49596,107.30836
10,1.045,0.99,2.04228,4.11966,4.55674,0.60364,1.16508,26.96285
10,1.045,0.985,2.05911,3.81290,4.83582,0.53830,1.22936,25.12530
10,1.045,0.98,2.04675,3.61258,4.74248,0.54870,1.33972,25.77699
10,1.045,0.975,2.04834,3.93584,5.48144,0.57817,1.48650,37.98009
10,1.045,0.97,2.01924,3.68296,5.58518,0.70916,1.74832,51.49742
10,1.045,0.965,1.95419,3.98475,5.07755,0.66300,1.48047,38.80904
10,1.045,0.96,2.19616,3.82009,5.37710,0.91270,1.31227,54.03044
10,1.045,0.955,2.35405,5.17691,6.10500,0.91236,1.23209,83.63326
10,1.045,0.95,2.29991,4.31145,5.98706,0.93278,1.37650,76.22619
10,1.045,0.945,2.51921,4.93608,5.71686,1.20792,1.73732,149.18426
10,1.045,0.94,2.09126,4.36367,6.57251,1.33337,1.76524,141.17059
10,1.045,0.9349999999999999,1.86327,4.17134,7.36435,0.97922,1.89984,106.48368
10,1.045,0.9299999999999999,1.69197,4.75805,7.39168,1.00963,1.95798,117.63432
10,1.045,0.925,1.59732,4.10015,8.06878,0.97081,2.16490,111.06337
10,1.045,0.9199999999999999,1.49362,3.90205,7.15644,0.93482,2.10866,82.21729
10,1.045,0.915,1.47858,3.72280,7.48253,1.01744,2.18087,91.39025
10,1.045,0.91,1.55210,3.81914,7.39498,0.91170,2.34161,93.58153
10,1.045,0.905,1.41518,3.70170,8.19344,0.86782,2.51854,93.81186
10,1.05,0.99,1.80090,2.89560,3.47697,0.61944,1.21937,13.69497
10,1.05,0.985,1.92201,2.69743,3.62781,0.55638,1.37934,14.43414
10,1.05,0.98,1.91046,2.60758,3.56037,0.54294,1.48147,14.26654
10,1.05,0.975,1.93954,2.90702,3.99341,0.53045,1.55004,18.51312
10,1.05,0.97,1.91198,2.74721,3.71938,0.69267,1.78880,24.20664
10,1.05,0.965,1.85039,2.99333,3.38134,0.65766,1.51197,18.62299
10,1.05,0.96,2.09303,3.02071,3.84859,0.91849,1.38845,31.03056
10,1.05,0.955,2.29204,4.11696,4.91494,0.83848,1.30361,50.69413
10,1.05,0.95,2.34922,3.22780,5.07302,0.87750,1.49051,50.31321
10,1.05,0.945,2.46607,5.00451,4.84407,1.13634,1.77501,120.58319
10,1.05,0.94,2.05111,4.45177,4.89445,1.25436,1.80353,101.10438
10,1.05,0.9349999999999999,1.82749,4.25557,5.48412,0.92119,1.94201,76.29969
10,1.05,0.9299999999999999,1.65948,4.70250,5.54858,1.01485,2.05359,90.23975
10,1.05,0.925,1.56666,4.05229,6.05685,0.97583,2.27061,85.19904
10,1.05,0.9199999999999999,1.46495,3.85649,5.37200,0.94643,2.21162,63.52545
10,1.05,0.915,1.45019,3.72280,5.74747,1.07224,2.20023,73.20322
10,1.05,0.91,1.52230,3.81914,5.68022,1.01065,2.36240,78.84688
10,1.05,0.905,1.38801,3.70170,6.29353,0.96201,2.54090,79.04094
10,1.055,0.99,1.71343,2.72730,3.11141,0.53539,1.30640,10.16970
10,1.055,0.985,1.89205,2.58867,3.27008,0.47814,1.23814,9.48189
10,1.055,0.98,1.92879,2.41175,3.41902,0.46811,1.23230,9.17461
10,1.055,0.975,1.97619,2.73251,3.86493,0.47211,1.30144,12.82330
10,1.055,0.97,1.95453,2.80182,3.69784,0.64355,1.42908,18.62366
10,1.055,0.965,1.92499,2.97746,3.43157,0.55522,1.20792,13.19072
10,1.055,0.96,2.23097,2.91893,3.51659,0.77542,1.17806,20.91918
10,1.055,0.955,2.50610,4.02524,4.22768,0.70788,1.44482,43.61778
10,1.055,0.95,2.52310,3.15589,4.43683,0.79420,1.57345,44.14845
10,1.055,0.945,2.65331,4.93623,4.27972,1.04235,1.87378,109.47918
10,1.055,0.94,2.33547,4.39103,4.33391,1.16482,1.90389,98.56444
10,1.055,0.9349999999999999,2.09363,4.19750,4.94860,0.85544,2.05008,76.26610
10,1.055,0.9299999999999999,2.01524,4.70250,5.19281,0.94241,2.22816,103.33388
10,1.055,0.925,1.90251,4.05229,6.05685,0.90617,2.49393,105.52785
10,1.055,0.9199999999999999,1.79937,3.85649,5.37200,0.88878,2.38039,78.86649
10,1.055,0.915,1.82158,3.72280,5.74747,1.01292,2.36812,93.49200
10,1.055,0.91,1.91216,3.81914,5.68022,0.95474,2.56388,101.53990
10,1.055,0.905,1.81349,3.70170,6.29353,0.90879,2.56388,98.44017
10,1.06,0.99,1.54357,2.71921,3.20764,0.49993,1.09890,7.39646
10,1.06,0.985,1.74244,2.59216,3.46344,0.46041,1.03536,7.45696
10,1.06,0.98,1.78609,2.48600,3.70478,0.45348,1.03047,7.68702
10,1.06,0.975,1.84626,2.75088,4.05993,0.46436,1.10121,10.54410
10,1.06,0.97,1.81360,2.69217,4.03390,0.54751,1.22682,13.22944
10,1.06,0.965,1.79578,2.95430,3.89325,0.51661,1.05549,11.26255
10,1.06,0.96,1.88708,2.89349,3.59624,0.71377,1.02939,14.42781
10,1.06,0.955,1.86911,4.02161,4.17307,0.60726,1.42362,27.11817
10,1.06,0.95,1.89257,3.25084,4.35633,0.68384,1.46384,26.82980
10,1.06,0.945,2.18011,4.95456,4.04242,0.90798,1.75520,69.58677
10,1.06,0.94,1.91895,4.42047,3.94723,1.01466,1.81073,61.51778
10,1.06,0.9349999999999999,1.72024,4.25736,4.87839,0.69455,1.83643,45.57050
10,1.06,0.9299999999999999,1.71491,4.76956,4.50634,0.77141,2.03375,57.82616
10,1.06,0.925,1.63033,4.23387,6.35768,0.74175,2.40272,78.21136
10,1.06,0.9199999999999999,1.56171,4.10355,5.82012,0.84261,2.33791,73.47581
10,1.06,0.915,1.58099,3.54025,6.22691,0.96381,2.32586,78.12881
10,1.06,0.91,1.65960,3.63187,6.15405,0.90845,2.51812,84.85423
10,1.06,0.905,1.57396,3.52019,6.64059,0.86473,2.51812,80.11722
10,1.065,0.99,1.46143,2.41465,2.94585,0.52587,1.03108,5.63651
10,1.065,0.985,1.59434,2.30184,3.11745,0.51261,0.95858,5.62174
10,1.065,0.98,1.63428,2.58586,3.33468,0.51671,0.88681,6.45748
10,1.065,0.975,1.80769,2.86138,3.75532,0.53144,0.87845,9.06806
10,1.065,0.97,1.77571,2.65616,3.73124,0.59068,0.94634,9.83731
10,1.065,0.965,1.75827,2.91478,3.60114,0.59897,0.84196,9.30746
10,1.065,0.96,1.84765,2.85479,3.32642,0.84323,0.82115,12.14891
10,1.065,0.955,1.83006,3.96782,3.85996,0.72506,1.12456,22.85359
10,1.065,0.95,1.85303,3.20736,3.64222,0.82956,1.15212,20.68915
10,1.065,0.945,2.13457,4.88828,3.37976,1.11160,1.30662,51.22153
10,1.065,0.94,1.87886,4.36134,3.31130,1.18838,1.28141,41.31982
10,1.065,0.9349999999999999,1.68431,4.20041,4.57275,0.84826,1.32230,36.28688
10,1.065,0.9299999999999999,1.67908,4.70576,4.22401,0.83663,2.08225,58.14253
10,1.065,0.925,1.59627,4.17723,5.95936,0.80446,2.24932,71.90374
10,1.065,0.9199999999999999,1.52908,4.04866,5.45548,0.86074,2.18864,63.62368
10,1.065,0.915,1.56985,3.49290,5.83678,0.98455,2.17736,68.60981
10,1.065,0.91,1.65960,3.58329,5.76849,0.92800,2.35735,75.04420
10,1.065,0.905,1.57396,3.47310,6.22454,0.88333,2.35735,70.85484
10,1.07,0.99,1.52602,2.39293,2.94324,0.47533,1.07601,5.49705
10,1.07,0.985,1.66481,2.31579,3.15876,0.49067,1.05610,6.31059
10,1.07,0.98,1.70651,2.59661,3.28600,0.49499,0.97703,7.04191
10,1.07,0.975,1.88758,2.73065,3.64586,0.50910,0.97703,9.34725
10,1.07,0.97,1.85419,2.59480,3.59600,0.56619,1.04509,10.23746
10,1.07,0.965,1.83597,2.88382,3.47062,0.56977,0.98485,10.31127
10,1.07,0.96,1.93929,2.82446,3.20585,0.80212,0.95336,13.42808
10,1.07,0.955,1.92719,3.63684,3.72006,0.69272,1.36677,24.68622
10,1.07,0.95,1.95138,3.19993,3.51021,0.75267,1.45297,23.97047
10,1.07,0.945,2.39523,4.87697,3.25726,1.03688,1.57762,62.24142
10,1.07,0.94,2.10830,4.47712,3.19128,1.10850,1.54718,51.66195
10,1.07,0.9349999999999999,1.88998,4.31192,4.52149,0.79396,1.51358,44.28036
10,1.07,0.9299999999999999,1.89022,5.04454,4.17666,0.83438,2.36148,78.47077
10,1.07,0.925,1.79699,4.59061,5.89256,0.80229,2.55095,99.48466
10,1.07,0.9199999999999999,1.72135,4.58018,5.39433,0.85842,2.56981,93.81853
10,1.07,0.915,1.80465,3.91758,5.77136,0.98996,2.61980,105.82210
10,1.07,0.91,1.90782,3.88392,5.70383,0.93310,2.83636,111.85705
10,1.07,0.905,1.84722,3.87361,6.15478,0.88819,2.83636,110.94733
10,1.075,0.99,1.49377,2.54608,2.83888,0.63716,1.07601,7.40229
10,1.075,0.985,1.62963,2.46400,3.04675,0.61104,1.07601,8.04361
10,1.075,0.98,1.67045,2.28015,3.16948,0.61642,1.02272,7.61064
10,1.075,0.975,1.84769,2.34335,3.51658,0.63159,1.02272,9.83509
10,1.075,0.97,1.81501,2.22677,3.46848,0.69977,1.09396,10.73127
10,1.075,0.965,1.79718,2.47480,3.34755,0.72915,1.03091,11.19164
10,1.075,0.96,1.89831,2.42386,3.09217,1.02749,0.99794,14.58873
10,1.075,0.955,1.88646,3.12101,3.65749,0.93571,1.42712,28.75611
10,1.075,0.95,1.91014,2.74607,3.45117,0.96967,1.53927,27.01999
10,1.075,0.945,2.34461,4.85755,3.20248,1.36809,1.67133,83.39699
10,1.075,0.94,2.06873,4.45930,3.17378,1.53617,1.54718,69.58656
10,1.075,0.9349999999999999,1.85451,4.29476,4.54781,1.10027,1.51358,60.32183
10,1.075,0.9299999999999999,1.86985,5.02446,4.20097,1.15629,2.36148,107.76956
10,1.075,0.925,1.77764,4.57234,5.92686,1.11183,2.55095,136.62944
10,1.075,0.9199999999999999,1.70281,4.56195,5.42572,1.20190,2.56981,130.17984
10,1.075,0.915,1.78521,3.90198,5.80495,1.24611,2.61980,132.00753
10,1.075,0.91,1.90782,3.91606,5.73703,1.17454,2.83636,142.79105
10,1.075,0.905,1.84722,3.90567,6.19060,1.11801,2.83636,141.62975
10,1.08,0.99,1.25254,2.31208,2.68538,0.60501,1.03397,4.86489
10,1.08,0.985,1.36646,2.23493,2.85197,0.59773,1.03397,5.38296
10,1.08,0.98,1.35302,2.05220,3.03087,0.68614,1.03031,5.94940
10,1.08,0.975,1.49658,2.12549,3.37822,0.64128,1.03031,7.10007
10,1.08,0.97,1.47943,2.05848,3.13979,0.71050,1.10899,7.53420
10,1.08,0.965,1.46490,2.28776,3.03032,0.79321,1.04773,8.44004
10,1.08,0.96,1.53369,2.28809,2.86693,1.26475,1.02229,13.00792
10,1.08,0.955,1.53270,2.98709,3.39107,1.15178,1.46460,26.18967
10,1.08,0.95,1.55193,2.62824,3.21011,1.19491,1.62186,25.37502
10,1.08,0.945,1.92421,4.85755,2.97879,1.69305,1.61081,75.93161
10,1.08,0.94,2.01999,4.45930,3.01772,1.91123,1.41343,73.43167
10,1.08,0.9349999999999999,1.81082,4.29476,3.66170,1.40605,1.38273,55.36501
10,1.08,0.9299999999999999,1.86985,5.02446,3.67947,1.60859,2.15821,120.01115
10,1.08,0.925,1.77764,4.57234,5.19110,1.54674,2.33137,152.14925
10,1.08,0.9199999999999999,1.70281,4.56195,4.75218,1.73663,2.34861,150.56583
10,1.08,0.915,1.78521,3.90198,5.14565,1.82499,2.39429,156.62181
10,1.08,0.91,1.90782,3.91606,5.08544,1.52285,2.59221,149.98331
10,1.08,0.905,1.84722,3.90567,5.72407,1.44956,2.59221,155.17690
10,1.085,0.99,1.14435,2.27602,2.54760,0.64083,1.08257,4.60329
10,1.085,0.985,1.24843,2.20007,2.75821,0.63313,1.08257,5.19247
10,1.085,0.98,1.23615,2.02020,2.71158,0.73327,1.07875,5.35638
10,1.085,0.975,1.36731,2.09234,3.03573,0.68533,1.07875,6.42069
10,1.085,0.97,1.36203,2.02637,2.82148,0.77576,1.16112,7.01440
10,1.085,0.965,1.34865,2.26907,2.79217,0.89460,1.10401,8.43908
10,1.085,0.96,1.42511,2.26940,2.64859,1.36956,1.10401,12.95175
10,1.085,0.955,1.43464,2.96269,2.86517,1.20646,1.58168,23.23847
10,1.085,0.95,1.42270,2.60676,2.93083,1.25163,1.52719,20.77655
10,1.085,0.945,1.76397,4.81787,2.72667,1.79284,1.52719,63.44732
10,1.085,0.94,1.85178,4.42286,2.54500,2.02389,1.34006,56.53138
10,1.085,0.9349999999999999,1.72172,4.25967,3.08809,1.57446,1.33907,47.74889
10,1.085,0.9299999999999999,1.77785,4.98340,3.10308,1.80126,1.28791,63.77883
10,1.085,0.925,1.74105,4.53498,4.00524,1.72174,1.39125,75.75054
10,1.085,0.9199999999999999,1.70955,4.52468,3.66658,1.99866,2.49576,141.47275
10,1.085,0.915,1.99039,3.87010,4.07485,2.10036,2.49576,164.53895
10,1.085,0.91,1.90782,3.88406,4.02717,1.75263,2.57920,134.89629
10,1.085,0.905,1.84722,3.87376,4.53291,1.66828,2.57920,139.56744
10,1.09,0.99,1.14435,2.17546,2.46631,0.73416,0.99723,4.49516
10,1.09,0.985,1.24843,2.10287,2.67021,0.73307,0.99723,5.12464
10,1.09,0.98,1.23615,1.98285,2.62506,0.86697,1.00021,5.57947
10,1.09,0.975,1.36731,2.05367,2.93887,0.82437,1.00021,6.80437
10,1.09,0.97,1.36203,1.98892,2.73145,0.88488,0.99097,6.48847
10,1.09,0.965,1.34865,2.22713,2.70308,0.97442,0.98861,7.82118
10,1.09,0.96,1.42511,2.23771,2.56408,1.48519,0.98861,12.00581
10,1.09,0.955,1.43464,2.99149,2.77375,1.35845,1.31193,21.21542
10,1.09,0.95,1.42270,2.63211,2.83731,1.35845,1.31193,18.93559
10,1.09,0.945,1.76397,4.86471,2.64076,2.01689,1.31193,59.96139
10,1.09,0.94,1.85178,4.56169,2.46481,2.12108,1.18705,52.42315
10,1.09,0.9349999999999999,1.72172,4.48081,3.02241,1.65007,1.18617,45.63761
10,1.09,0.9299999999999999,1.77785,4.78408,3.03708,1.88776,1.18617,57.84215
10,1.09,0.925,1.74105,4.35359,3.92005,1.84268,1.28134,70.15587
10,1.09,0.9199999999999999,1.70955,4.34370,3.58859,2.13905,2.24674,128.06758
10,1.09,0.915,1.99039,3.71531,4.04897,2.19914,2.24674,147.93974
10,1.09,0.91,1.90782,3.72871,4.00160,1.96318,2.32186,129.75514
10,1.09,0.905,1.84722,3.71882,4.50412,1.86870,2.32186,134.24827
10,1.095,0.99,1.06952,1.99060,2.45816,0.85495,0.97718,4.37218
10,1.095,0.985,1.16680,1.94316,2.45816,0.85368,0.97718,4.64925
10,1.095,0.98,1.14597,1.87006,2.41146,0.95595,0.98399,4.86114
10,1.095,0.975,1.29704,1.93852,2.71463,0.92442,0.98399,6.20862
10,1.095,0.97,1.29704,1.94571,2.52304,0.94762,0.98399,5.93720
10,1.095,0.965,1.26613,2.25627,2.51602,1.04350,0.98399,7.38018
10,1.095,0.96,1.23069,2.28490,2.45335,1.30494,0.98399,8.85844
10,1.095,0.955,1.21066,3.07807,2.43916,1.19776,0.94576,10.29653
10,1.095,0.95,1.19733,2.95987,2.61430,1.19776,0.94576,10.49518
10,1.095,0.945,1.19127,5.53096,2.43319,1.80130,0.94576,27.31203
10,1.095,0.94,1.25057,5.18644,2.27107,1.89435,0.87977,24.54916
10,1.095,0.9349999999999999,1.16274,5.10389,2.57732,1.47369,0.87912,19.81544
10,1.095,0.9299999999999999,1.77785,5.13583,2.58983,1.70743,0.87912,35.49500
10,1.095,0.925,1.74105,4.67369,3.34469,1.66665,0.94965,43.07615
10,1.095,0.9199999999999999,1.70955,4.66307,3.18061,1.75499,1.66515,74.09534
10,1.095,0.915,1.99039,3.98848,3.44996,2.12032,1.66515,96.69720
10,1.095,0.91,1.90782,3.72871,3.40959,1.89281,1.66515,76.44676
10,1.095,0.905,1.84722,3.71882,3.83777,1.80172,1.66515,79.09394
10,1.1,0.99,1.06441,1.99204,2.64310,0.90984,0.97718,4.98264
10,1.1,0.985,1.16122,1.94456,2.64310,0.90849,0.97718,5.29838
10,1.1,0.98,1.14049,1.87141,2.59289,0.98051,0.98399,5.33937
10,1.1,0.975,1.29084,1.93992,2.91887,0.94817,0.98399,6.81940
10,1.1,0.97,1.29084,1.94712,2.71287,1.00876,0.98399,6.76822
10,1.1,0.965,1.26007,2.25790,2.70532,1.11083,0.98399,8.41318
10,1.1,0.96,1.22480,2.28655,2.63793,1.25699,0.98399,9.13766
10,1.1,0.955,1.20487,3.08030,2.62267,1.15375,0.94576,10.62108
10,1.1,0.95,1.19160,2.96201,2.81099,1.15375,0.94576,10.82600
10,1.1,0.945,1.18557,5.53496,2.61626,1.74433,0.94576,28.32260
10,1.1,0.94,1.24459,5.19018,2.44194,1.83444,0.87977,25.45749
10,1.1,0.9349999999999999,1.15718,5.10758,2.79578,1.42708,0.87912,20.73065
10,1.1,0.9299999999999999,1.76935,5.13954,2.80935,1.65343,0.87912,37.13440
10,1.1,0.925,1.73272,4.67707,3.62819,1.61395,0.94965,45.06570
10,1.1,0.9199999999999999,1.70137,4.66644,3.45021,1.69949,1.66515,77.51758
10,1.1,0.915,1.99039,3.99136,3.18932,2.12032,1.66515,89.45638
10,1.1,0.91,1.90782,3.72871,3.15200,1.89281,1.66515,70.67125
10,1.1,0.905,1.84722,3.71882,3.83777,1.80172,1.66515,79.09394
11,1.01,0.99,3.13080,6.59663,6.79791,0.65641,1.50009,138.24391
11,1.01,0.985,2.91743,6.53101,6.50438,0.72414,1.75954,157.90903
11,1.01,0.98,2.65112,6.56884,6.93919,0.82131,1.97901,196.41864
11,1.01,0.975,2.94031,6.16176,7.13975,0.86074,2.08660,232.32299
11,1.01,0.97,2.92576,5.29251,5.89735,0.89012,1.97270,160.34936
11,1.01,0.965,2.77935,4.99463,6.38229,0.99165,1.80769,158.81947
11,1.01,0.96,2.56646,5.03906,8.03148,1.06206,1.90833,210.51450
11,1.01,0.955,2.54074,4.60014,8.12914,0.99755,1.95428,185.22475
11,1.01,0.95,2.49832,4.62477,8.38875,1.02902,1.76603,176.13982
11,1.01,0.945,2.51956,4.44104,7.53662,1.07213,1.65921,150.01530
11,1.01,0.94,2.23469,3.84552,8.78934,0.99907,1.70058,128.32834
11,1.01,0.9349999999999999,2.15694,3.97561,8.43133,0.90935,1.90504,125.24940
11,1.01,0.9299999999999999,2.01458,4.08624,7.78326,0.87595,2.05902,115.56056
11,1.01,0.925,1.98399,4.04596,8.21219,0.87600,2.06729,119.37903
11,1.01,0.9199999999999999,1.76663,4.07134,7.52086,0.84987,2.13133,97.98375
11,1.01,0.915,1.76663,4.33854,7.41869,0.80652,2.19288,100.56528
11,1.01,0.91,1.70536,4.22781,7.60562,0.80870,2.31628,102.71704
11,1.01,0.905,1.64642,3.61421,6.91016,0.83000,2.46792,84.22646
11,1.015,0.99,3.07233,6.18475,6.41683,0.69557,1.41621,120.11022
11,1.015,0.985,2.90256,6.15861,6.19680,0.75172,1.74578,145.37155
11,1.015,0.98,2.53116,6.61957,6.92391,0.90587,1.98057,208.13949
11,1.015,0.975,2.84228,6.20935,7.23315,0.99131,2.09995,265.74125
11,1.015,0.97,2.86944,5.50008,5.93119,1.02329,1.91459,183.39307
11,1.015,0.965,2.76962,5.23546,6.11384,1.13577,1.77687,178.90938
11,1.015,0.96,2.55747,5.33490,7.70809,1.24465,1.88247,246.40994
11,1.015,0.955,2.57889,4.95857,7.80181,1.20928,1.93082,232.94503
11,1.015,0.95,2.55268,4.71485,8.13369,1.22284,1.76820,211.66776
11,1.015,0.945,2.48173,4.34525,7.30748,1.27407,1.66125,166.78843
11,1.015,0.94,2.20113,3.78354,8.52211,1.19305,1.70837,144.65499
11,1.015,0.9349999999999999,2.12455,4.02543,8.34667,0.98438,1.92160,135.02685
11,1.015,0.9299999999999999,1.98537,4.12871,7.69372,0.94822,2.04646,122.37881
11,1.015,0.925,1.95523,4.08218,8.11771,0.94828,2.05468,126.24206
11,1.015,0.9199999999999999,1.76663,4.13611,7.43434,0.87540,2.11833,100.73521
11,1.015,0.915,1.76663,4.40757,7.33335,0.83075,2.19362,104.05889
11,1.015,0.91,1.70536,4.29507,7.51813,0.83181,2.31706,106.13409
11,1.015,0.905,1.64642,3.56459,6.83067,0.85371,2.46792,84.46072
11,1.02,0.99,2.96130,5.82619,5.81765,0.67153,1.52387,102.71311
11,1.02,0.985,2.83133,5.66605,5.66959,0.71640,1.86626,121.60500
11,1.02,0.98,2.53227,6.02749,6.49743,0.86257,2.06886,176.97610
11,1.02,0.975,2.87691,5.84539,6.84841,0.94425,2.13663,232.35104
11,1.02,0.97,2.78804,5.17770,5.74717,0.97135,1.98376,159.86526
11,1.02,0.965,2.77665,4.99208,5.98337,1.09576,1.84107,167.31462
11,1.02,0.96,2.57362,5.21816,7.57921,1.20072,1.98093,242.10208
11,1.02,0.955,2.54876,4.86952,7.67137,1.18248,2.03182,228.75156
11,1.02,0.95,2.61251,4.63018,7.77990,1.21504,1.86069,212.76283
11,1.02,0.945,2.71655,4.28016,6.98962,1.26595,1.74814,179.85521
11,1.02,0.94,2.47388,3.76976,8.15142,1.10525,1.80679,151.80706
11,1.02,0.9349999999999999,2.10913,4.01076,8.30729,0.91077,2.03231,130.07356
11,1.02,0.9299999999999999,2.01134,4.12871,7.66953,0.87732,2.05871,115.03273
11,1.02,0.925,1.98080,4.08218,8.10995,0.87737,2.09853,120.73948
11,1.02,0.9199999999999999,1.78172,4.13611,7.42723,0.83393,2.16354,98.75318
11,1.02,0.915,1.78172,4.40757,7.32634,0.79139,2.24738,102.32769
11,1.02,0.91,1.71993,4.29507,7.49841,0.80089,2.37384,105.31094
11,1.02,0.905,1.64400,3.56459,6.81275,0.86526,2.52840,87.34272
11,1.025,0.99,2.81806,5.43730,5.73366,0.71073,1.44571,90.27119
11,1.025,0.985,2.69193,5.36288,5.68726,0.82952,1.76223,120.02092
11,1.025,0.98,2.43877,5.54805,6.58848,0.96252,2.02545,173.79083
11,1.025,0.975,2.72950,5.41319,7.21474,1.05986,2.11238,238.65963
11,1.025,0.97,2.56781,4.82197,6.05459,1.10443,1.97954,163.89743
11,1.025,0.965,2.46392,4.87935,6.30299,1.18928,1.85488,167.16191
11,1.025,0.96,2.28375,5.28246,7.98952,1.23302,1.86970,222.20266
11,1.025,0.955,2.33639,4.97957,7.83650,1.21428,1.91773,212.30828
11,1.025,0.95,2.40486,4.47436,8.08144,1.31252,1.77092,202.12281
11,1.025,0.945,2.55361,4.12015,7.26053,1.36751,1.66380,173.80746
11,1.025,0.94,2.34981,3.62989,7.96396,1.18407,1.73204,139.31168
11,1.025,0.9349999999999999,2.02323,3.86195,8.23466,0.97572,1.95152,122.51695
11,1.025,0.9299999999999999,1.95349,3.97302,7.61586,0.93988,1.97785,109.87973
11,1.025,0.925,1.92383,3.94625,7.97941,0.93994,2.01610,114.79796
11,1.025,0.9199999999999999,1.73047,4.07487,7.30768,0.89340,2.07855,95.68966
11,1.025,0.915,1.73047,4.34839,7.20841,0.84783,2.21210,101.72956
11,1.025,0.91,1.67046,4.23741,7.48938,0.85800,2.33658,106.28012
11,1.025,0.905,1.59671,3.56459,6.80455,0.92697,2.48871,89.34610
11,1.03,0.99,3.17740,5.04326,5.50053,0.72091,1.45516,92.46529
11,1.03,0.985,2.93416,5.27630,5.28480,0.82842,1.67155,113.29525
11,1.03,0.98,2.73600,5.59929,5.71532,0.86335,1.90155,143.74190
11,1.03,0.975,2.95323,5.76521,6.09188,0.94920,1.96680,193.63401
11,1.03,0.97,2.80299,5.15096,5.11229,1.02202,1.84311,139.03868
11,1.03,0.965,2.71495,5.32126,5.32203,1.10238,1.72705,146.38237
11,1.03,0.96,2.53668,4.94585,7.02567,1.14255,1.75343,176.58777
11,1.03,0.955,2.66660,4.68511,7.00093,1.03637,1.79847,163.02441
11,1.03,0.95,2.79294,4.28585,7.41153,1.18087,1.72654,180.87781
11,1.03,0.945,2.70866,3.75329,6.65868,1.27760,1.64131,141.95184
11,1.03,0.94,2.49249,3.31001,7.37029,1.10622,1.71723,115.50898
11,1.03,0.9349999999999999,2.14608,3.52162,7.64686,0.98971,1.96063,112.14350
11,1.03,0.9299999999999999,1.95524,3.66315,7.16077,0.95336,1.98708,97.15924
11,1.03,0.925,1.92555,3.75073,7.39916,0.95342,2.02551,103.19749
11,1.03,0.9199999999999999,1.74115,3.87298,6.74467,1.00516,2.08369,95.25981
11,1.03,0.915,1.74115,4.16255,6.65305,0.95389,2.21757,101.99792
11,1.03,0.91,1.68077,4.05631,6.81797,0.97190,2.34236,105.81945
11,1.03,0.905,1.60656,3.44974,6.19453,1.05002,2.49486,89.93636
11,1.035,0.99,2.78946,4.18253,4.68770,0.74486,1.35772,55.30997
11,1.035,0.985,2.60299,4.41460,4.73706,0.84280,1.50880,69.21894
11,1.035,0.98,2.51138,4.80831,5.17505,0.89948,1.68750,94.85387
11,1.035,0.975,2.55406,4.99306,5.86385,0.93401,1.74494,121.87447
11,1.035,0.97,2.41954,4.58041,4.95105,0.99257,1.63520,89.05639
11,1.035,0.965,2.33602,4.84533,5.47326,1.07274,1.57228,104.48944
11,1.035,0.96,2.18264,4.79294,6.76506,1.11183,1.59630,125.60622
11,1.035,0.955,2.29443,4.84112,6.77838,1.00851,1.67426,127.12982
11,1.035,0.95,2.60057,4.48922,7.37767,1.14912,1.62698,161.02911
11,1.035,0.945,2.52986,3.93139,6.62825,1.24325,1.54667,126.76433
11,1.035,0.94,2.33521,3.25092,7.37500,1.07647,1.62916,98.18857
11,1.035,0.9349999999999999,2.00069,3.45876,7.78943,0.98926,1.84391,98.32303
11,1.035,0.9299999999999999,1.82278,3.61134,7.29427,0.97985,1.86879,87.92350
11,1.035,0.925,1.79510,3.69768,7.51672,0.97991,1.96013,95.83372
11,1.035,0.9199999999999999,1.65100,3.83947,7.11439,1.03309,2.02306,94.25541
11,1.035,0.915,1.65100,4.12654,7.01775,0.97943,2.15305,100.82313
11,1.035,0.91,1.59375,4.02121,7.39552,1.01081,2.27420,108.95458
11,1.035,0.905,1.55231,3.41989,7.34864,1.11098,2.42227,104.98500
11,1.04,0.99,2.55854,3.85902,4.72348,0.69469,1.25519,40.66603
11,1.04,0.985,2.38751,3.72049,4.79813,0.76933,1.38034,45.25985
11,1.04,0.98,2.30348,4.54226,5.48315,0.79942,1.57504,72.23581
11,1.04,0.975,2.34263,4.55793,6.14246,0.86838,1.63399,93.06188
11,1.04,0.97,2.23196,4.22876,5.37708,0.95140,1.54348,74.52617
11,1.04,0.965,2.15493,4.51134,5.63246,1.12277,1.72344,105.95509
11,1.04,0.96,2.01343,4.73340,6.69843,1.19707,1.55339,118.70863
11,1.04,0.955,2.22713,4.88011,6.87363,1.08582,1.63833,132.89907
11,1.04,0.95,2.56880,4.67493,7.08936,1.21164,1.60924,165.99947
11,1.04,0.945,2.49896,4.44053,6.36923,1.30313,1.52980,140.89787
11,1.04,0.94,2.30668,3.72381,7.28973,1.12832,1.61140,113.84701
11,1.04,0.9349999999999999,1.96933,4.01668,7.79074,0.95889,1.82381,107.77273
11,1.04,0.9299999999999999,1.79870,4.15044,7.19090,0.94977,1.84841,94.24388
11,1.04,0.925,1.77139,4.01444,7.25547,0.96245,1.93875,96.27382
11,1.04,0.9199999999999999,1.63336,4.17078,6.88441,1.01469,2.00100,95.22439
11,1.04,0.915,1.63336,4.19020,6.79089,0.97518,2.12957,96.52114
11,1.04,0.91,1.57672,4.08325,7.15083,1.00643,2.28654,105.94432
11,1.04,0.905,1.55231,3.37973,7.10551,1.09673,2.43541,99.56966
11,1.045,0.99,2.14248,3.67654,4.84775,0.62986,1.25783,30.25232
11,1.045,0.985,2.04592,3.54456,4.78148,0.69630,1.41735,34.22077
11,1.045,0.98,2.05538,4.11470,5.28719,0.69250,1.55107,48.02908
11,1.045,0.975,2.05772,4.15216,6.00171,0.79204,1.66462,67.60763
11,1.045,0.97,1.84166,3.85229,5.41097,0.84677,1.58834,51.63098
11,1.045,0.965,1.87791,4.13080,5.37554,1.02123,1.78439,75.98846
11,1.045,0.96,1.87879,4.57250,5.99920,1.08862,1.61738,90.74274
11,1.045,0.955,2.09487,4.78390,6.49360,0.98745,1.71385,110.13180
11,1.045,0.95,2.42425,4.58277,6.76319,1.11478,1.70895,143.14446
11,1.045,0.945,2.45876,4.35299,6.07619,1.20608,1.62459,127.42568
11,1.045,0.94,2.31111,3.65039,6.90429,1.06802,1.71286,106.55698
11,1.045,0.9349999999999999,2.01009,3.93749,7.32179,0.92309,1.93865,103.70340
11,1.045,0.9299999999999999,1.68082,4.11057,6.78576,0.91431,1.96480,84.22389
11,1.045,0.925,1.65530,3.97588,7.07209,0.92652,2.06083,88.87039
11,1.045,0.9199999999999999,1.51670,4.13072,6.71041,0.98241,2.12700,87.84913
11,1.045,0.915,1.51670,4.14995,6.61925,0.95097,2.26367,89.68760
11,1.045,0.91,1.46410,4.04403,6.97010,0.98144,2.47887,100.40222
11,1.045,0.905,1.44144,3.34727,6.92592,1.06837,2.45562,87.66889
11,1.05,0.99,2.15208,3.46776,4.28582,0.63032,1.37231,27.66641
11,1.05,0.985,2.06843,3.54131,4.38489,0.72530,1.48051,34.48991
11,1.05,0.98,2.06278,3.75467,4.75170,0.74170,1.54689,42.22438
11,1.05,0.975,2.08666,3.89834,5.43175,0.83070,1.63785,60.11582
11,1.05,0.97,1.89651,3.47903,4.86929,0.88810,1.56804,44.74016
11,1.05,0.965,1.93384,3.83176,4.78522,1.08512,1.79461,69.05082
11,1.05,0.96,1.94732,4.27237,5.35996,1.16718,1.66549,86.68581
11,1.05,0.955,2.20592,5.04351,5.56792,1.10096,1.80640,123.19668
11,1.05,0.95,2.50853,5.08031,6.27682,1.26185,1.68219,169.79807
11,1.05,0.945,2.40515,4.36349,5.63923,1.25392,1.59813,118.59838
11,1.05,0.94,2.26072,3.84354,6.53917,1.12587,1.68496,107.79012
11,1.05,0.9349999999999999,1.97700,4.14583,7.22921,0.90448,1.90706,102.20550
11,1.05,0.9299999999999999,1.65316,4.32807,6.69996,0.90544,1.96655,85.35849
11,1.05,0.925,1.62806,4.26545,7.26801,0.91671,2.06267,95.43562
11,1.05,0.9199999999999999,1.51284,4.12869,6.89631,0.97201,2.12890,89.13473
11,1.05,0.915,1.51284,4.14995,6.80263,0.94090,2.26569,91.04488
11,1.05,0.91,1.46038,4.04403,6.85020,0.97527,2.48109,97.89258
11,1.05,0.905,1.43777,3.34727,6.80678,1.09875,2.45781,88.46472
11,1.055,0.99,2.08027,2.54786,3.68007,0.49837,1.23292,11.98511
11,1.055,0.985,2.00865,2.64093,3.77913,0.56895,1.33799,15.26098
11,1.055,0.98,2.01616,2.68499,4.01365,0.58002,1.40294,17.68033
11,1.055,0.975,2.06510,2.84399,4.64404,0.67174,1.49981,27.47918
11,1.055,0.97,1.88540,2.64521,3.96178,0.71816,1.43588,20.37483
11,1.055,0.965,1.88143,2.89448,4.01813,0.88583,1.67560,32.47878
11,1.055,0.96,1.89454,3.27650,4.49325,0.96203,1.56887,42.09672
11,1.055,0.955,2.19260,3.86789,4.56457,0.90744,1.70161,59.77380
11,1.055,0.95,2.52703,3.89611,5.14572,1.00306,1.50065,76.26006
11,1.055,0.945,2.24994,3.37280,4.68275,0.99676,1.42566,50.49733
11,1.055,0.94,2.11483,4.18826,5.44922,0.89497,1.50312,64.93001
11,1.055,0.9349999999999999,1.85367,4.23306,5.66337,0.67015,1.70126,50.66460
11,1.055,0.9299999999999999,1.55003,4.29253,5.24876,0.67086,1.75433,41.10102
11,1.055,0.925,1.52650,4.23041,6.08385,0.67921,1.96571,52.45402
11,1.055,0.9199999999999999,1.45601,4.09478,5.77271,0.83702,2.07374,59.74034
11,1.055,0.915,1.45601,4.11587,5.69430,0.81023,2.23323,61.74620
11,1.055,0.91,1.40552,4.01082,5.73411,0.87025,2.44554,68.79486
11,1.055,0.905,1.38376,3.31978,5.69777,0.98043,2.42260,62.16935
11,1.06,0.99,1.81167,2.44853,3.54031,0.53969,1.21862,10.32853
11,1.06,0.985,1.74798,2.56180,3.66101,0.62953,1.26814,13.08775
11,1.06,0.98,1.93960,2.60277,3.92477,0.61322,1.25775,15.28168
11,1.06,0.975,2.03539,2.78588,4.03480,0.71019,1.25065,20.32093
11,1.06,0.97,1.91176,2.68607,3.62576,0.75640,1.22421,17.24078
11,1.06,0.965,1.95062,2.97142,4.42275,0.96049,1.36384,33.58053
11,1.06,0.96,2.00916,3.49383,4.74489,1.19754,1.32473,52.83974
11,1.06,0.955,2.15777,4.02591,4.82021,1.12959,1.43989,68.10596
11,1.06,0.95,2.85806,4.05528,5.74251,1.23676,1.26984,104.52675
11,1.06,0.945,2.68074,3.56209,5.18349,1.22898,1.20638,73.38632
11,1.06,0.94,2.73229,4.28988,5.48763,1.10348,1.42759,101.32660
11,1.06,0.9349999999999999,2.38321,4.38134,5.70329,0.82628,1.71652,84.46344
11,1.06,0.9299999999999999,2.12511,4.44289,5.54905,0.82715,1.77006,76.70809
11,1.06,0.925,2.09285,4.41873,6.47106,0.85077,1.98333,100.97621
11,1.06,0.9199999999999999,2.07980,4.36586,6.33496,1.09406,2.09234,131.67660
11,1.06,0.915,2.07980,4.06081,6.24890,1.09614,2.16742,125.38571
11,1.06,0.91,2.06615,3.95717,6.29260,1.18539,2.37348,144.75167
11,1.06,0.905,2.13087,3.27537,6.25271,1.20410,2.35121,123.54918
11,1.065,0.99,1.81013,2.62881,3.44336,0.64071,1.09947,11.54237
11,1.065,0.985,1.75224,2.79188,3.53079,0.71107,1.12894,13.86580
11,1.065,0.98,1.94644,2.81112,3.77783,0.70477,1.07152,15.61024
11,1.065,0.975,1.94644,2.99285,4.20082,0.76365,1.02646,19.18207
11,1.065,0.97,1.87554,2.96255,3.79233,0.82239,1.00781,17.46436
11,1.065,0.965,1.86207,2.92707,4.17043,0.96652,1.05053,23.07969
11,1.065,0.96,1.92867,3.20896,4.03273,1.14043,1.55682,44.31273
11,1.065,0.955,1.92867,3.71703,4.13349,1.09396,1.78148,57.75008
11,1.065,0.95,2.49247,3.76046,5.11324,1.20208,1.60246,92.31792
11,1.065,0.945,2.33783,3.47398,4.64919,1.20649,1.53198,69.79023
11,1.065,0.94,2.38278,4.18376,5.04413,1.08328,1.49633,81.50920
11,1.065,0.9349999999999999,2.07836,4.27230,5.32284,0.83876,1.59496,63.22836
11,1.065,0.9299999999999999,1.86560,4.35411,5.14902,0.83965,1.64471,57.76021
11,1.065,0.925,1.83727,4.35411,6.17006,0.86362,1.84512,78.65208
11,1.065,0.9199999999999999,1.84987,4.44086,6.34140,1.04470,1.80861,98.43066
11,1.065,0.915,1.84987,3.84809,6.25526,1.14856,2.21399,113.23006
11,1.065,0.91,1.83774,3.74988,6.29900,1.24208,2.42447,130.71856
11,1.065,0.905,1.89530,3.10380,6.25907,1.25854,2.40173,111.29434
11,1.07,0.99,1.76925,1.72910,2.66519,0.59929,1.04902,5.12578
11,1.07,0.985,1.71267,1.72184,2.73287,0.68013,1.01745,5.57685
11,1.07,0.98,1.93071,1.64008,2.92408,0.68054,0.97702,6.15639
11,1.07,0.975,1.93071,2.44329,3.39824,0.74323,0.95888,11.42424
11,1.07,0.97,1.86038,2.41855,3.06779,0.78274,0.90449,9.77244
11,1.07,0.965,1.84702,2.38959,3.37366,0.91820,0.94283,12.89039
11,1.07,0.96,1.91308,2.64430,3.26226,1.05823,1.44700,25.27035
11,1.07,0.955,1.91308,3.17432,3.40840,1.06409,1.53663,33.84404
11,1.07,0.95,2.47232,3.73394,4.21628,1.11673,1.38222,60.07941
11,1.07,0.945,2.31893,3.54927,3.83364,1.11517,1.25346,44.10520
11,1.07,0.94,2.36352,4.27443,4.15930,1.01097,1.22429,52.00953
11,1.07,0.9349999999999999,2.06156,4.36489,4.43971,0.79506,1.30055,41.30947
11,1.07,0.9299999999999999,1.85052,4.51821,4.29473,0.79590,1.23810,35.38411
11,1.07,0.925,1.82242,4.51821,5.30430,0.76791,1.36582,45.80859
11,1.07,0.9199999999999999,1.84987,4.60823,5.45160,0.76582,1.33879,47.64771
11,1.07,0.915,1.84987,4.06004,5.37755,1.07897,2.21399,96.48054
11,1.07,0.91,1.83774,3.95642,5.48046,1.16682,2.42447,112.72541
11,1.07,0.905,1.89530,3.37132,5.44572,1.20325,2.40173,100.55680
11,1.075,0.99,1.75019,1.72257,2.58332,0.62703,1.02146,4.98833
11,1.075,0.985,1.69422,1.71534,2.64892,0.71161,0.99072,5.42731
11,1.075,0.98,1.90991,1.63886,2.83426,0.73343,0.95135,6.19000
11,1.075,0.975,1.90991,2.37695,3.29384,0.80218,0.93369,11.19983
11,1.075,0.97,1.84034,2.35289,2.97355,0.84484,0.88073,9.58048
11,1.075,0.965,1.82712,2.32471,3.27002,1.02056,0.91806,13.01363
11,1.075,0.96,1.89247,2.57251,3.16205,1.18535,1.40899,25.71046
11,1.075,0.955,1.89247,3.08814,3.30369,1.18869,1.49627,34.34022
11,1.075,0.95,2.44569,3.63256,3.67110,1.26786,1.34591,55.65397
11,1.075,0.945,2.29395,3.45290,3.33794,1.26786,1.22054,40.91365
11,1.075,0.94,2.33806,4.15838,3.62149,1.20640,1.19213,50.63893
11,1.075,0.9349999999999999,2.03935,4.24639,3.96606,0.86881,1.26639,37.78880
11,1.075,0.9299999999999999,1.83058,4.39555,4.25781,0.86169,1.20558,35.59051
11,1.075,0.925,1.80279,4.39555,5.25871,0.83139,1.33454,46.23516
11,1.075,0.9199999999999999,1.82995,4.48312,5.40474,0.82913,1.30813,48.09141
11,1.075,0.915,1.82995,3.94982,5.33132,1.18418,2.16328,98.71463
11,1.075,0.91,1.81794,3.84900,5.43335,1.14851,2.36894,103.43962
11,1.075,0.905,1.89530,3.27979,5.39891,1.18437,2.34672,93.27826
11,1.08,0.99,1.70068,1.71237,2.59902,0.65584,1.10138,5.46724
11,1.08,0.985,1.64630,1.70518,2.66501,0.68183,1.09696,5.59556
11,1.08,0.98,1.85589,1.62915,2.85148,0.74717,1.11278,7.16819
11,1.08,0.975,1.85589,2.36286,3.24839,0.81722,1.09212,12.71348
11,1.08,0.97,1.78829,2.33894,2.93251,0.86067,1.03017,10.87528
11,1.08,0.965,1.77544,2.31093,3.22489,1.04268,1.07187,14.78787
11,1.08,0.96,1.83894,2.55726,3.11841,1.20325,1.43000,25.23307
11,1.08,0.955,1.83894,3.06984,3.25810,1.25549,1.51966,35.09223
11,1.08,0.95,2.37651,3.63256,3.62044,1.34772,1.47785,62.25039
11,1.08,0.945,2.22907,3.45290,3.29187,1.34772,1.35349,46.21740
11,1.08,0.94,2.27193,4.15838,3.57151,1.35879,1.25613,57.59147
11,1.08,0.9349999999999999,1.99708,4.24639,3.91133,1.02208,1.33437,45.23768
11,1.08,0.9299999999999999,1.79264,4.39555,4.19905,0.96472,1.27029,40.54733
11,1.08,0.925,1.76542,4.39555,5.18614,0.93080,1.27213,47.65306
11,1.08,0.9199999999999999,1.82995,4.48312,5.33015,0.92827,1.24696,50.61525
11,1.08,0.915,1.82995,3.94982,5.25775,1.32577,1.27121,64.04695
11,1.08,0.91,1.81794,3.84900,5.35837,1.31255,1.39206,68.50672
11,1.08,0.905,1.89530,3.27979,5.32440,1.35353,1.37900,61.77698
11,1.085,0.99,1.46597,1.52253,2.42846,0.67630,1.04250,3.82148
11,1.085,0.985,1.41909,1.49096,2.52415,0.69995,1.03831,3.88139
11,1.085,0.98,1.54501,1.44438,2.71315,0.85711,1.05328,5.46599
11,1.085,0.975,1.54501,2.09489,3.07188,0.85443,1.03373,8.78173
11,1.085,0.97,1.50998,2.07512,2.84052,0.87305,0.98120,7.62447
11,1.085,0.965,1.50577,2.05027,3.12373,1.10880,1.02352,10.94442
11,1.085,0.96,1.61154,2.41735,3.03368,1.34656,1.37636,21.90334
11,1.085,0.955,1.61154,2.90188,2.90452,1.44130,1.46531,28.68661
11,1.085,0.95,2.09975,3.56650,3.22753,1.54717,1.42774,53.39133
11,1.085,0.945,1.96948,3.39011,2.96462,1.54717,1.33992,41.03478
11,1.085,0.94,1.93591,4.08276,3.28802,1.74637,1.24353,56.43752
11,1.085,0.9349999999999999,2.00902,4.16917,3.60784,1.31361,1.21245,48.12980
11,1.085,0.9299999999999999,1.85818,4.39555,3.80944,1.26276,1.15423,45.34969
11,1.085,0.925,1.82996,4.39555,4.70494,1.24393,1.15590,54.41568
11,1.085,0.9199999999999999,2.00109,4.48312,4.83559,1.24329,1.13302,61.10918
11,1.085,0.915,2.00109,3.94982,4.76990,1.61302,1.15506,70.24181
11,1.085,0.91,1.98796,3.84900,4.86119,1.64338,1.26487,77.31844
11,1.085,0.905,1.90549,3.27979,4.83038,1.69469,1.25301,64.10276
11,1.09,0.99,1.46404,1.52363,2.59231,0.72907,0.98462,4.15104
11,1.09,0.985,1.41722,1.49204,2.57262,0.79248,0.97822,4.21715
11,1.09,0.98,1.54298,1.44543,2.76525,0.98732,0.97822,5.95646
11,1.09,0.975,1.54298,2.09640,3.13087,0.97579,0.97036,9.58933
11,1.09,0.97,1.50800,2.07662,2.92752,0.99705,0.92964,8.49749
11,1.09,0.965,1.50379,2.05175,2.90595,1.26628,0.90707,10.29846
11,1.09,0.96,1.60943,2.41910,2.89053,1.51049,0.90031,15.30422
11,1.09,0.955,1.60943,2.90398,2.76746,1.61676,0.96707,20.22319
11,1.09,0.95,2.09699,3.56908,3.08972,1.81115,0.94228,39.46450
11,1.09,0.945,1.96690,3.39256,2.88855,1.81115,0.90916,31.73820
11,1.09,0.94,1.93336,4.08571,3.20366,2.04434,0.84767,43.85393
11,1.09,0.9349999999999999,2.00639,4.17218,3.51527,1.53774,0.82649,37.39854
11,1.09,0.9299999999999999,1.85574,4.39872,3.44755,1.52134,0.78680,33.68532
11,1.09,0.925,1.82756,4.39872,4.25798,1.49865,0.83870,43.02372
11,1.09,0.9199999999999999,2.00109,4.48636,4.37622,1.49788,0.82210,48.37949
11,1.09,0.915,2.00109,3.95267,4.31677,1.94331,0.83809,55.60970
11,1.09,0.91,1.98796,3.85178,4.39938,1.97990,0.83809,55.89800
11,1.09,0.905,1.90549,3.27979,4.39938,2.04171,0.83809,47.04688
11,1.095,0.99,1.22689,1.47890,2.14303,0.77822,0.98462,2.97950
11,1.095,0.985,1.18462,1.44823,2.13618,0.84591,0.97822,3.03262
11,1.095,0.98,1.31303,1.40299,2.29613,1.05818,0.97822,4.37851
11,1.095,0.975,1.31303,2.03485,2.63913,1.04582,0.97036,7.15582
11,1.095,0.97,1.29481,2.01565,2.49406,1.06861,0.92964,6.46639
11,1.095,0.965,1.27293,1.99151,2.47569,1.11942,0.90707,6.37262
11,1.095,0.96,1.25317,2.36820,2.46255,1.35227,0.90031,8.89745
11,1.095,0.955,1.25317,2.84287,2.34328,1.44741,0.96707,11.68530
11,1.095,0.95,1.19768,3.49398,2.66298,1.56810,0.94228,16.46568
11,1.095,0.945,1.19768,3.32118,2.49205,1.56810,0.90916,14.13185
11,1.095,0.94,1.17726,3.99974,2.87220,1.76999,0.84767,20.29167
11,1.095,0.9349999999999999,1.22172,4.08439,2.60562,1.33138,0.82649,14.30695
11,1.095,0.9299999999999999,1.12999,4.30616,2.55542,1.31717,0.78680,12.88644
11,1.095,0.925,1.12999,4.30616,3.15613,1.29753,0.83870,16.71264
11,1.095,0.9199999999999999,2.00109,4.41560,3.24378,1.29686,0.82210,30.55819
11,1.095,0.915,2.00109,3.89033,3.19971,1.68252,0.83809,35.12504
11,1.095,0.91,1.98796,3.79104,3.32401,1.71420,0.83809,35.98998
11,1.095,0.905,1.90549,3.22806,3.32401,2.04089,0.83809,34.97211
11,1.1,0.99,1.22102,1.43130,2.12134,0.80471,1.00802,3.00729
11,1.1,0.985,1.17896,1.41344,2.11456,0.79443,1.00802,2.82176
11,1.1,0.98,1.30675,1.36929,2.27289,1.01066,1.00802,4.14324
11,1.1,0.975,1.30675,1.98597,2.61242,0.99885,0.99992,6.77133
11,1.1,0.97,1.28861,1.97237,2.46882,1.02061,0.96804,6.19947
11,1.1,0.965,1.26684,2.03031,2.45063,1.06914,0.96804,6.52367
11,1.1,0.96,1.24717,2.41433,2.43762,1.22631,0.96804,8.71333
11,1.1,0.955,1.24717,2.92307,2.31957,1.31259,0.96804,10.74470
11,1.1,0.95,1.19195,3.75933,2.63603,1.55728,0.94947,17.46470
11,1.1,0.945,1.19195,3.57340,2.46682,1.55728,0.94947,15.53536
11,1.1,0.94,1.17163,4.54038,2.86832,1.75778,0.88322,23.68861
11,1.1,0.9349999999999999,1.21588,4.63509,2.60209,1.32219,0.86114,16.69705
11,1.1,0.9299999999999999,1.12458,4.61551,2.55196,1.30808,0.85235,14.76865
11,1.1,0.925,1.12458,4.61551,3.15186,1.28858,0.90858,19.15370
11,1.1,0.9199999999999999,2.00109,4.73281,3.23939,1.28791,0.90858,35.90029
11,1.1,0.915,2.00109,4.16980,3.19538,1.67091,0.90858,40.47823
11,1.1,0.91,1.98796,4.06337,3.31952,1.70237,0.90858,41.47499
11,1.1,0.905,1.90549,3.47718,3.31952,2.04089,0.90858,40.78409
12,1.01,0.99,2.96485,5.52166,6.35522,1.40186,1.48683,216.85395
12,1.01,0.985,2.78721,6.18161,7.54840,1.49231,1.73108,335.97232
12,1.01,0.98,2.85031,5.36836,7.11700,1.45885,1.68008,266.91380
12,1.01,0.975,2.85062,4.98877,7.93454,1.34150,1.82075,275.60914
12,1.01,0.97,3.09894,4.97904,6.30398,1.39866,1.90080,258.59526
12,1.01,0.965,2.73334,4.78064,7.19033,1.34887,1.87921,238.16162
12,1.01,0.96,2.52076,4.65333,8.35157,1.51341,1.95044,289.17011
12,1.01,0.955,2.50351,4.23446,7.88149,1.69961,1.72971,245.62976
12,1.01,0.95,2.50671,4.47965,8.54535,1.41378,1.60526,217.77361
12,1.01,0.945,2.71797,4.07717,8.25407,1.15317,1.79850,189.70421
12,1.01,0.94,2.34440,3.82602,8.27036,1.18158,1.77458,155.54757
12,1.01,0.9349999999999999,2.39409,3.91189,7.09076,1.01940,1.84857,125.14095
12,1.01,0.9299999999999999,2.09861,3.91904,7.49323,1.01526,1.84632,115.52298
12,1.01,0.925,1.90157,3.79490,7.19731,1.11200,2.13781,123.46806
12,1.01,0.9199999999999999,1.85557,4.16513,7.04111,0.89216,2.11129,102.50403
12,1.01,0.915,1.88890,4.16865,7.12511,0.93023,2.15190,112.30833
12,1.01,0.91,1.86243,3.68569,7.25509,0.90293,2.12593,95.59748
12,1.01,0.905,1.72567,3.66235,7.04804,0.91432,2.48170,101.07194
12,1.015,0.99,2.90663,5.62245,6.03876,1.39066,1.39345,191.23894
12,1.015,0.985,2.69411,6.39490,7.41249,1.64310,1.61583,339.05739
12,1.015,0.98,2.71512,5.83351,6.91125,1.69973,1.56730,291.61291
12,1.015,0.975,2.72125,5.42102,7.83894,1.38829,1.67581,269.03650
12,1.015,0.97,2.98955,5.49922,6.33795,1.39876,1.74383,254.15755
12,1.015,0.965,2.66028,5.27076,6.94222,1.34897,1.79464,235.65530
12,1.015,0.96,2.46813,5.22946,8.22907,1.52089,1.86387,301.08314
12,1.015,0.955,2.45087,4.57796,7.80823,1.72830,1.65294,250.27618
12,1.015,0.95,2.45400,4.84303,8.62942,1.39639,1.56467,224.07980
12,1.015,0.945,2.71714,4.15287,8.49547,1.15617,1.74774,193.70583
12,1.015,0.94,2.36800,3.91652,8.45096,1.17487,1.74104,160.32032
12,1.015,0.9349999999999999,2.41818,4.00442,7.24561,1.01361,1.82105,129.50835
12,1.015,0.9299999999999999,2.10192,4.02641,7.54365,1.00950,1.81884,117.22392
12,1.015,0.925,1.90456,3.89887,7.25952,1.10568,2.15444,128.41228
12,1.015,0.9199999999999999,1.85085,4.27924,7.10197,0.88710,2.12772,106.17016
12,1.015,0.915,1.88410,4.25050,7.18669,0.92677,2.19541,117.10027
12,1.015,0.91,1.85769,3.75806,7.31779,0.89957,2.16892,99.67640
12,1.015,0.905,1.72127,3.73426,7.10895,0.93256,2.46076,104.85919
12,1.02,0.99,2.69997,5.45335,5.30028,1.32254,1.31671,135.90029
12,1.02,0.985,2.54972,6.30141,6.72031,1.60726,1.52270,264.25359
12,1.02,0.98,2.57499,5.74823,6.21827,1.75165,1.50605,242.81080
12,1.02,0.975,2.60148,5.39845,7.27384,1.39073,1.63453,232.21321
12,1.02,0.97,2.87218,5.65032,5.88105,1.40357,1.71901,230.27731
12,1.02,0.965,2.70138,5.43753,6.33817,1.42286,1.75449,232.41422
12,1.02,0.96,2.56316,5.54493,7.61131,1.61687,1.83426,320.82496
12,1.02,0.955,2.57551,4.87290,7.22207,1.64578,1.62668,242.65331
12,1.02,0.95,2.57480,4.63369,8.17065,1.36107,1.53982,204.30421
12,1.02,0.945,2.86655,3.98541,8.04382,1.07171,1.72418,169.80627
12,1.02,0.94,2.57516,3.79356,8.00168,1.09861,1.71588,147.35392
12,1.02,0.9349999999999999,2.56003,3.91554,6.90281,0.94781,1.81115,118.77935
12,1.02,0.9299999999999999,1.97561,3.95561,7.21960,0.95684,1.80895,97.65521
12,1.02,0.925,1.84545,3.83031,7.06167,1.04801,2.14273,112.09203
12,1.02,0.9199999999999999,1.79340,4.20399,6.90842,0.84082,2.11615,92.67671
12,1.02,0.915,1.84609,4.23300,6.99083,0.90156,2.19541,108.12765
12,1.02,0.91,1.82021,3.74258,7.11711,0.87510,2.16892,92.02271
12,1.02,0.905,1.68655,3.71888,6.91400,0.90223,2.46076,96.27791
12,1.025,0.99,2.69585,4.86450,5.25404,1.27405,1.32644,116.43896
12,1.025,0.985,2.71429,5.42975,6.70272,1.58807,1.49016,233.76934
12,1.025,0.98,2.65997,4.95308,5.81582,1.68774,1.42669,184.50156
12,1.025,0.975,2.47183,4.69960,6.83182,1.35978,1.65375,178.46561
12,1.025,0.97,2.64106,4.96625,5.52366,1.31486,1.74781,166.49724
12,1.025,0.965,2.46275,4.83050,5.97233,1.36668,1.80810,175.56781
12,1.025,0.96,2.28227,5.14891,7.13665,1.57947,1.80649,239.28955
12,1.025,0.955,2.40932,4.52488,6.84728,1.60771,1.60768,192.94174
12,1.025,0.95,2.40865,4.32098,7.74664,1.38545,1.52423,170.25962
12,1.025,0.945,2.71799,3.72119,7.62639,1.09091,1.72052,144.77551
12,1.025,0.94,2.44170,3.56306,7.58248,1.09648,1.71224,123.84838
12,1.025,0.9349999999999999,2.42736,3.66353,6.77355,0.96139,1.81768,105.26078
12,1.025,0.9299999999999999,1.93996,3.72197,7.08440,0.94448,1.81547,87.71091
12,1.025,0.925,1.82797,3.60407,6.97898,1.03447,2.04049,97.05306
12,1.025,0.9199999999999999,1.78731,3.98513,6.74666,0.82997,2.01519,80.37227
12,1.025,0.915,1.83006,4.13644,6.83356,0.89633,2.09066,96.93691
12,1.025,0.91,1.80441,3.65721,6.95700,0.87002,2.06543,82.49876
12,1.025,0.905,1.67190,3.63405,6.80658,0.89700,2.43464,90.31471
12,1.03,0.99,2.65788,5.05890,6.34213,1.03270,1.25776,110.76450
12,1.03,0.985,2.79682,6.00305,7.60315,1.34099,1.42833,244.50182
12,1.03,0.98,2.84859,5.52211,5.80536,1.41564,1.37405,177.63082
12,1.03,0.975,2.58641,5.51794,6.62448,1.15762,1.59870,174.96807
12,1.03,0.97,2.80555,5.67762,5.61449,1.17457,1.72203,180.88969
12,1.03,0.965,2.56208,5.74376,5.86261,1.26756,1.83562,200.73860
12,1.03,0.96,2.37432,5.42120,6.91385,1.43860,1.77084,226.71214
12,1.03,0.955,2.64912,4.66743,6.80205,1.49951,1.57595,198.75221
12,1.03,0.95,2.64839,4.68689,7.69547,1.24729,1.44540,172.20919
12,1.03,0.945,2.75300,3.82338,7.57601,0.99823,1.64106,130.63249
12,1.03,0.94,2.49901,3.65727,7.94551,1.04221,1.68439,127.48043
12,1.03,0.9349999999999999,2.48433,3.58849,7.07460,0.91381,1.78811,103.05601
12,1.03,0.9299999999999999,1.87580,3.64574,7.42497,0.91202,1.78594,82.70607
12,1.03,0.925,1.76751,3.53025,7.42120,1.01017,2.00730,93.89602
12,1.03,0.9199999999999999,1.74908,3.91121,7.02436,0.81046,1.98241,77.20644
12,1.03,0.915,1.79091,4.03996,7.11484,0.87527,2.09252,94.28196
12,1.03,0.91,1.76581,3.57191,7.23309,0.84958,2.06727,80.12548
12,1.03,0.905,1.63614,3.54929,7.20776,0.88426,2.43681,90.19110
12,1.035,0.99,2.63878,4.52158,6.58950,1.00129,1.17373,92.40005
12,1.035,0.985,2.68492,5.42449,7.64577,1.36215,1.37948,209.24339
12,1.035,0.98,2.75611,5.02385,5.92796,1.41182,1.34363,155.70340
12,1.035,0.975,2.47527,5.11694,6.65995,1.15450,1.57925,153.79747
12,1.035,0.97,2.69051,5.53488,5.69357,1.21394,1.61770,166.50335
12,1.035,0.965,2.46387,5.67955,5.94519,1.33104,1.75136,193.93802
12,1.035,0.96,2.28330,5.20741,7.28814,1.59533,1.68955,233.57420
12,1.035,0.955,2.55777,4.67182,7.33312,1.66287,1.50361,219.09419
12,1.035,0.95,2.58162,4.84420,7.94157,1.42675,1.38992,196.95258
12,1.035,0.945,2.68359,3.98998,7.47862,1.14186,1.57933,144.40911
12,1.035,0.94,2.43600,3.84756,7.84337,1.08873,1.62103,129.74063
12,1.035,0.9349999999999999,2.39857,3.76107,7.10931,0.95460,1.72085,105.35517
12,1.035,0.9299999999999999,1.81105,3.77475,7.46141,0.87928,1.71876,77.08709
12,1.035,0.925,1.70649,3.65518,7.45762,0.97391,1.94635,88.17634
12,1.035,0.9199999999999999,1.68870,4.03312,7.12060,0.78137,1.92221,72.83992
12,1.035,0.915,1.72909,3.94135,7.27435,0.86790,2.03293,87.46806
12,1.035,0.91,1.70486,3.48472,7.39525,0.84243,2.00839,74.33468
12,1.035,0.905,1.57966,3.46266,7.36935,0.87682,2.43681,86.12579
12,1.04,0.99,2.25018,3.65444,5.73537,0.91396,1.10501,47.63142
12,1.04,0.985,2.37166,4.04729,6.56847,1.21740,1.31170,100.68105
12,1.04,0.98,2.47625,3.82895,5.25119,1.19806,1.39884,83.44072
12,1.04,0.975,2.25657,4.10846,6.19129,0.97970,1.60412,90.20674
12,1.04,0.97,2.45445,4.64156,5.44032,1.07420,1.56659,104.29994
12,1.04,0.965,2.22323,5.21014,5.68074,1.17782,1.79583,139.18215
12,1.04,0.96,2.07558,4.86422,6.70321,1.42512,1.72840,166.69839
12,1.04,0.955,2.56617,4.62038,6.74458,1.51342,1.53819,186.16077
12,1.04,0.95,2.60159,4.89960,7.30420,1.29853,1.44362,174.53222
12,1.04,0.945,2.76605,4.03560,7.18418,1.03924,1.68621,140.53120
12,1.04,0.94,2.52139,4.10749,7.61062,0.99088,1.73073,135.17190
12,1.04,0.9349999999999999,2.48265,4.01516,6.88077,0.86881,1.84419,109.89661
12,1.04,0.9299999999999999,1.90966,4.06841,7.13082,0.80026,1.84195,81.66380
12,1.04,0.925,1.79942,3.93953,7.18226,0.90492,2.14938,99.02896
12,1.04,0.9199999999999999,1.61833,4.35361,6.85769,0.72603,2.12272,74.46290
12,1.04,0.915,1.69880,4.01905,7.06325,0.80643,2.23203,86.80295
12,1.04,0.91,1.67499,3.55342,7.20861,0.78276,2.21518,74.39555
12,1.04,0.905,1.55199,3.53092,7.18336,0.81606,2.55756,82.15804
12,1.045,0.99,2.04581,3.55596,4.53585,0.86050,1.02406,29.07755
12,1.045,0.985,2.16792,3.89909,5.47903,1.22869,1.20525,68.58561
12,1.045,0.98,2.28812,3.68874,4.40733,1.18888,1.22143,54.01822
12,1.045,0.975,2.08513,3.96705,5.71220,0.98473,1.41668,65.91601
12,1.045,0.97,2.19505,4.46463,5.11283,1.06793,1.51217,80.91580
12,1.045,0.965,1.98827,5.02819,5.33878,1.17094,1.74161,108.84647
12,1.045,0.96,1.91261,4.77988,6.23311,1.41680,1.70742,137.84636
12,1.045,0.955,2.44549,4.54027,6.32571,1.50458,1.43543,151.68936
12,1.045,0.95,2.50184,4.83769,6.92818,1.29094,1.34832,145.95456
12,1.045,0.945,2.68580,3.98461,6.49632,1.03317,1.57070,112.82103
12,1.045,0.94,2.44823,4.09452,6.84780,0.98509,1.61711,109.35115
12,1.045,0.9349999999999999,2.41888,4.00248,6.19110,0.86373,1.72312,89.20888
12,1.045,0.9299999999999999,1.86061,4.06088,6.50666,0.81349,1.72103,68.82955
12,1.045,0.925,1.78584,3.93225,6.55360,0.92970,2.00827,85.92676
12,1.045,0.9199999999999999,1.61833,4.34555,6.25744,0.74590,1.98336,65.10201
12,1.045,0.915,1.69880,4.01359,6.44501,0.83154,2.10507,76.92157
12,1.045,0.91,1.67499,3.54859,6.75981,0.80713,2.08918,67.75241
12,1.045,0.905,1.55199,3.52612,6.73613,0.84147,2.41210,74.82174
12,1.05,0.99,1.83152,3.38002,4.25984,0.90540,1.07377,25.63760
12,1.05,0.985,1.88227,3.76479,4.55987,1.23736,1.20012,47.98438
12,1.05,0.98,1.95601,3.60247,3.72504,1.14184,1.17762,35.29466
12,1.05,0.975,1.78874,3.59956,4.80671,0.94576,1.37031,40.10926
12,1.05,0.97,1.83361,3.97202,4.36083,0.97068,1.38847,42.80550
12,1.05,0.965,1.68997,4.30315,4.56741,1.06431,1.66266,58.77704
12,1.05,0.96,1.73397,4.11008,5.27132,1.29464,1.63002,79.27834
12,1.05,0.955,2.21087,3.95354,5.34964,1.37486,1.37036,88.09812
12,1.05,0.95,2.31162,4.80038,5.85914,1.17964,1.28967,98.91314
12,1.05,0.945,2.51900,3.95388,5.25399,0.96153,1.51070,76.01153
12,1.05,0.94,2.30173,4.27705,6.20225,0.91679,1.58629,88.79737
12,1.05,0.9349999999999999,2.28653,4.18091,5.60746,0.80534,1.69029,72.97157
12,1.05,0.9299999999999999,1.75881,4.36301,5.89327,0.79024,1.68823,60.33262
12,1.05,0.925,1.68813,4.22480,6.28149,0.90313,1.97000,79.70585
12,1.05,0.9199999999999999,1.52978,4.34555,6.00034,0.72389,1.94557,56.17859
12,1.05,0.915,1.61723,4.01359,6.18020,0.87765,2.06496,72.70148
12,1.05,0.91,1.59457,3.54859,6.75981,0.85190,2.04937,66.77911
12,1.05,0.905,1.47747,3.52612,6.73613,0.88401,2.36613,73.40476
12,1.055,0.99,1.98974,2.65146,4.02293,0.85811,1.16178,21.15865
12,1.055,0.985,2.05201,2.89017,4.36125,1.09812,1.30283,37.00427
12,1.055,0.98,2.14622,2.81406,3.51165,1.03774,1.25513,27.62460
12,1.055,0.975,1.98013,2.80609,4.69206,0.85954,1.36284,30.53997
12,1.055,0.97,2.01180,3.06997,4.35047,0.87954,1.36319,32.21587
12,1.055,0.965,1.88295,3.41223,4.34070,0.95653,1.69031,45.09216
12,1.055,0.96,1.93197,3.38780,5.00968,1.18724,1.65713,64.50936
12,1.055,0.955,2.49698,3.44311,5.08410,1.30324,1.42865,81.38277
12,1.055,0.95,2.44242,4.18062,5.60183,1.11819,1.27576,81.59757
12,1.055,0.945,2.73097,3.44341,5.16717,0.91680,1.49166,66.45122
12,1.055,0.94,2.56781,4.16984,6.09977,0.90100,1.54994,91.20875
12,1.055,0.9349999999999999,2.63076,4.14001,5.55987,0.79147,1.68168,80.59850
12,1.055,0.9299999999999999,2.06591,4.35079,6.15035,0.72047,1.67964,66.89795
12,1.055,0.925,1.98289,4.21297,6.59539,0.82340,1.95997,88.91716
12,1.055,0.9199999999999999,1.79690,4.33338,6.50535,0.65999,1.93566,64.71180
12,1.055,0.915,1.89962,4.01359,6.87396,0.81185,2.09062,88.95259
12,1.055,0.91,1.87299,3.54859,7.51863,0.78802,2.07484,81.70638
12,1.055,0.905,1.73545,3.52612,7.49229,0.85327,2.36613,92.56534
12,1.06,0.99,1.80886,2.58671,3.47520,0.80243,1.06641,13.91445
12,1.06,0.985,1.89009,2.68309,3.86607,1.02005,1.15946,23.18813
12,1.06,0.98,2.07554,2.63885,3.20962,0.90468,1.10906,17.63797
12,1.06,0.975,1.98323,2.73925,3.48829,0.74975,1.11324,15.81694
12,1.06,0.97,2.01495,3.17278,3.25352,0.78924,1.10468,18.13435
12,1.06,0.965,1.95658,3.43866,3.24992,0.87277,1.32287,25.24480
12,1.06,0.96,2.04084,3.43178,4.74286,1.03715,1.35224,46.58650
12,1.06,0.955,2.72344,3.59826,4.81931,1.13849,1.21626,65.39580
12,1.06,0.95,2.77008,4.36901,5.37301,0.99408,1.08610,70.20784
12,1.06,0.945,2.76697,3.65137,5.01891,0.92617,1.38266,64.93511
12,1.06,0.94,2.75779,4.42168,5.80118,0.90639,1.43668,92.11694
12,1.06,0.9349999999999999,2.79947,4.43618,4.96160,0.79621,1.55879,76.47521
12,1.06,0.9299999999999999,2.21190,4.66676,5.48854,0.70859,1.55690,62.50203
12,1.06,0.925,2.14169,4.55573,6.02389,0.80233,1.85177,87.32352
12,1.06,0.9199999999999999,2.13545,4.68594,5.98278,0.77867,1.82880,85.25314
12,1.06,0.915,2.25753,4.01359,6.32178,0.99569,2.05765,117.35509
12,1.06,0.91,2.24271,3.54859,8.01370,0.96647,2.04212,125.87303
12,1.06,0.905,2.12251,3.52612,7.43391,0.91265,2.32881,118.25032
12,1.065,0.99,1.66743,2.44827,3.48427,0.76068,1.12137,12.13305
12,1.065,0.985,1.70783,2.50333,3.82635,1.03444,1.21922,20.63181
12,1.065,0.98,1.95855,2.48539,3.48870,0.91744,1.16622,18.16981
12,1.065,0.975,1.93183,2.61536,3.68649,0.76743,1.18555,16.94620
12,1.065,0.97,1.91159,3.11638,3.49365,0.80784,1.18075,19.85224
12,1.065,0.965,1.86539,3.14051,3.50618,0.89334,1.41396,25.94533
12,1.065,0.96,1.95161,3.33692,4.09759,1.17501,1.31215,41.14247
12,1.065,0.955,2.08182,3.28289,4.22747,1.19659,1.18021,40.80201
12,1.065,0.95,2.75100,3.99480,4.85454,1.04481,1.05391,58.74539
12,1.065,0.945,2.63824,3.54063,4.51395,0.97895,1.34167,55.38061
12,1.065,0.94,2.62949,4.46014,5.31150,0.95804,1.39409,83.19720
12,1.065,0.9349999999999999,2.69000,4.37271,4.56707,0.82534,1.51258,67.06402
12,1.065,0.9299999999999999,2.12540,4.52845,5.05211,0.73557,1.51074,54.03577
12,1.065,0.925,2.10149,4.44488,5.33700,0.82898,1.80704,74.67840
12,1.065,0.9199999999999999,2.11245,4.46450,5.81984,0.82055,1.78463,80.37524
12,1.065,0.915,2.25753,3.82392,6.16211,0.94157,1.92772,96.55372
12,1.065,0.91,2.24271,3.38090,7.87687,0.91394,1.91317,104.43113
12,1.065,0.905,2.12251,3.35949,7.30698,0.86304,2.18176,98.10692
12,1.07,0.99,1.65111,2.09599,3.30238,0.79590,1.13894,10.35975
12,1.07,0.985,1.68276,2.14313,3.63210,1.10191,1.07724,15.54845
12,1.07,0.98,1.84541,2.12777,3.33389,0.95930,1.04195,13.08484
12,1.07,0.975,1.81749,2.23904,3.53937,0.90982,1.03751,13.59592
12,1.07,0.97,1.79844,2.47501,3.38872,0.94539,0.97436,13.89436
12,1.07,0.965,1.75629,2.50094,3.46354,1.04544,1.07182,17.04668
12,1.07,0.96,1.84883,3.10261,3.41502,1.38433,1.31253,35.59315
12,1.07,0.955,1.82608,3.09136,3.64977,1.43028,1.19815,35.30760
12,1.07,0.95,2.41984,3.76174,4.19115,1.40165,1.14665,61.31653
12,1.07,0.945,2.32066,3.33407,3.89710,1.06361,1.22779,39.37652
12,1.07,0.94,2.31296,4.19993,4.58566,1.04447,1.20344,55.99273
12,1.07,0.9349999999999999,2.36619,4.11760,4.03782,0.90565,1.30142,46.36777
12,1.07,0.9299999999999999,1.86955,4.26426,4.46665,0.76242,1.29984,35.28967
12,1.07,0.925,1.86081,4.18556,4.71853,0.85923,1.55753,49.18238
12,1.07,0.9199999999999999,1.89516,4.20403,5.14541,0.69804,1.53822,44.01813
12,1.07,0.915,2.02532,3.60083,5.70799,0.93323,1.66155,64.54743
12,1.07,0.91,2.01203,3.18365,7.80111,0.90584,1.64900,74.64286
12,1.07,0.905,1.95323,3.16349,7.23670,0.85539,2.17783,83.30116
12,1.075,0.99,1.65677,2.24299,3.13065,0.65522,1.12203,8.55294
12,1.075,0.985,1.68854,2.23502,3.46952,0.90714,1.05346,12.51277
12,1.075,0.98,1.85175,2.21900,3.18465,0.80580,1.01036,10.65387
12,1.075,0.975,1.82373,2.33505,3.32605,0.76245,1.00848,10.89082
12,1.075,0.97,1.80462,2.58113,3.18448,0.79842,1.00931,11.95336
12,1.075,0.965,1.76231,2.46723,3.25479,0.88292,1.07526,13.43533
12,1.075,0.96,1.85517,3.06078,3.20919,1.22440,1.38223,30.84005
12,1.075,0.955,1.83235,3.04969,3.43358,1.27345,1.28324,31.35457
12,1.075,0.95,2.42814,3.71102,3.94289,1.28922,1.23137,56.40236
12,1.075,0.945,2.32862,3.28912,3.66626,0.99489,1.27216,35.54003
12,1.075,0.94,2.32090,4.14331,4.31403,0.97698,1.30407,52.85331
12,1.075,0.9349999999999999,2.37431,4.06209,3.79864,0.83600,1.30809,40.06451
12,1.075,0.9299999999999999,1.87597,4.20677,4.29545,0.71947,1.30650,31.86436
12,1.075,0.925,1.86719,4.12913,4.53767,0.79927,1.49176,41.71351
12,1.075,0.9199999999999999,1.90166,4.16969,4.94819,0.68332,1.49176,39.99533
12,1.075,0.915,2.03227,3.57141,5.48921,0.88990,1.54142,54.65006
12,1.075,0.91,2.01893,3.15764,7.54119,0.89714,1.52978,65.98029
12,1.075,0.905,1.95994,3.13764,6.99558,0.74735,1.65465,53.19881
12,1.08,0.99,1.64349,1.70507,3.00164,0.57120,1.07503,5.16504
12,1.08,0.985,1.67500,1.64587,3.32655,0.73469,1.02836,6.92877
12,1.08,0.98,1.83690,1.63905,3.05342,0.65262,1.01331,6.07949
12,1.08,0.975,1.80910,2.32756,3.18899,0.65991,1.00841,8.93587
12,1.08,0.97,1.79015,2.57286,3.06380,0.71024,0.90896,9.10997
12,1.08,0.965,1.74818,2.46306,3.11771,0.78541,0.96929,10.21996
12,1.08,0.96,1.84030,3.05561,3.08872,1.04453,1.30809,23.73133
12,1.08,0.955,1.81766,3.04454,2.71308,1.12983,1.22906,20.84888
12,1.08,0.95,2.40867,3.82079,3.11552,1.17186,1.19101,40.01769
12,1.08,0.945,2.30995,3.38641,2.89693,0.90432,1.20550,24.70408
12,1.08,0.94,2.30229,4.38927,3.40878,0.93021,1.11286,35.65899
12,1.08,0.9349999999999999,2.35527,4.30322,3.00154,0.82307,1.04930,26.27320
12,1.08,0.9299999999999999,1.86093,4.45650,3.72262,0.70834,1.04930,22.94620
12,1.08,0.925,1.85222,4.37425,4.03470,0.79173,1.23131,31.86790
12,1.08,0.9199999999999999,1.90166,4.49124,4.39972,0.67688,1.23131,31.31847
12,1.08,0.915,2.03227,3.84682,4.88077,0.88150,1.27229,42.79390
12,1.08,0.91,2.01893,3.40115,6.70530,0.88868,1.26269,51.66607
12,1.08,0.905,1.95994,3.37961,6.22017,0.77263,1.36576,43.47663
12,1.085,0.99,1.62899,1.49283,2.84377,0.62747,1.06340,4.61437
12,1.085,0.985,1.66022,1.44100,3.11762,0.73918,1.01723,5.60824
12,1.085,0.98,1.82069,1.43503,3.13285,0.65102,1.00234,5.34128
12,1.085,0.975,1.79314,2.03784,3.33987,0.65828,0.99750,8.01380
12,1.085,0.97,1.77435,2.25909,3.20875,0.80665,0.92150,9.56070
12,1.085,0.965,1.73276,2.17402,3.26521,0.89203,0.98266,10.78187
12,1.085,0.96,1.82406,2.94043,3.23485,1.08896,1.32613,25.05558
12,1.085,0.955,1.80162,2.95187,2.84144,1.18520,1.24602,22.31590
12,1.085,0.95,2.38743,3.70450,3.10656,1.22928,1.20744,40.78099
12,1.085,0.945,2.28957,3.28334,2.88860,0.96068,1.21932,25.43631
12,1.085,0.94,2.28198,4.25568,3.39898,0.98818,1.12561,36.71592
12,1.085,0.9349999999999999,2.34200,4.17225,3.30177,0.87437,1.06132,29.93963
12,1.085,0.9299999999999999,1.85045,4.40089,3.65381,0.75765,1.06132,23.92645
12,1.085,0.925,1.84179,4.31967,3.96012,0.77210,1.27322,30.97232
12,1.085,0.9199999999999999,1.89095,4.43519,4.31839,0.66009,1.27322,30.43832
12,1.085,0.915,2.03227,3.79882,4.79055,0.85964,1.30536,41.50134
12,1.085,0.91,2.01893,3.35870,6.58135,0.86663,1.29551,50.10552
12,1.085,0.905,1.95994,3.33744,6.10519,0.75347,1.33882,40.28481
12,1.09,0.99,1.39587,1.49927,2.75032,0.71569,1.08571,4.47248
12,1.09,0.985,1.37421,1.44722,3.01517,0.77838,1.03858,4.84762
12,1.09,0.98,1.50703,1.44122,3.02990,0.75597,1.02337,5.09123
12,1.09,0.975,1.49364,2.04663,3.23011,0.83819,1.01843,8.42900
12,1.09,0.97,1.47799,2.26883,3.10331,0.84067,0.96725,8.46187
12,1.09,0.965,1.44973,2.18340,3.15791,0.91507,1.03145,9.43463
12,1.09,0.96,1.56240,2.95311,3.12855,1.03234,1.39198,20.74299
12,1.09,0.955,1.54318,2.96461,2.74806,1.18254,1.30789,19.44443
12,1.09,0.95,2.04495,3.72048,3.00448,1.27382,1.26740,36.90372
12,1.09,0.945,1.92022,3.29750,2.79368,0.99549,1.27986,22.53772
12,1.09,0.94,1.91743,4.27403,3.28728,1.02398,1.18150,32.59286
12,1.09,0.9349999999999999,2.31146,4.19025,3.22651,0.96008,1.15197,34.56290
12,1.09,0.9299999999999999,1.82632,4.41987,3.57052,0.90623,1.15197,30.08821
12,1.09,0.925,1.81777,4.33830,3.86985,0.92351,1.38197,38.94860
12,1.09,0.9199999999999999,1.87537,4.45433,4.21995,0.78953,1.38197,38.46311
12,1.09,0.915,2.03227,3.81521,4.68135,1.00102,1.41685,51.47972
12,1.09,0.91,2.01893,3.37319,6.47355,1.00916,1.40616,62.56065
12,1.09,0.905,1.95994,3.35183,6.00519,0.92086,1.45317,52.79148
12,1.095,0.99,1.40903,1.47752,2.33062,0.82854,1.09711,4.41046
12,1.095,0.985,1.38716,1.42622,2.33062,0.90235,1.11773,4.65044
12,1.095,0.98,1.53294,1.42031,2.36949,0.87692,1.10136,4.98254
12,1.095,0.975,1.51932,2.01693,2.45487,1.05945,1.09604,8.73523
12,1.095,0.97,1.50340,2.23591,2.35850,1.05257,1.04097,8.68666
12,1.095,0.965,1.47465,2.15171,2.40000,1.15652,1.11006,9.77651
12,1.095,0.96,1.60403,2.91026,2.33409,1.21908,1.49806,19.89864
12,1.095,0.955,1.59592,2.94662,2.16407,1.44227,1.46969,21.57154
12,1.095,0.95,2.11484,3.69790,2.43665,1.55360,1.42420,42.16343
12,1.095,0.945,1.93540,3.27749,2.26569,1.30727,1.43820,27.02073
12,1.095,0.94,1.93259,4.24810,2.82232,1.34469,1.32767,41.36704
12,1.095,0.9349999999999999,2.36422,4.16482,2.57114,1.26077,1.29449,41.31858
12,1.095,0.9299999999999999,1.86800,4.39305,2.69889,1.19005,1.29449,34.11874
12,1.095,0.925,1.90958,4.31198,2.62321,1.21274,1.38197,36.20041
12,1.095,0.9199999999999999,2.00795,4.42730,2.86053,1.03681,1.38197,36.43640
12,1.095,0.915,2.03227,3.79206,3.19353,1.31453,1.41685,45.83751
12,1.095,0.91,2.01893,3.35272,4.62502,1.32522,1.40616,58.33884
12,1.095,0.905,1.95994,3.33150,4.29040,1.20927,1.45317,49.22893
12,1.1,0.99,1.30199,1.46769,2.17965,0.87808,0.98101,3.58790
12,1.1,0.985,1.28551,1.43368,2.17965,0.95649,0.98101,3.76935
12,1.1,0.98,1.43387,1.42774,2.21601,0.95139,0.98101,4.23407
12,1.1,0.975,1.43387,1.40524,2.29586,1.19208,0.98654,5.44031
12,1.1,0.97,1.42401,1.55836,2.20573,1.19876,0.94947,5.57118
12,1.1,0.965,1.37733,1.53509,2.24454,1.31714,0.94947,5.93490
12,1.1,0.96,1.37733,2.07626,2.18290,1.34095,0.94947,7.94778
12,1.1,0.955,1.37037,2.12889,2.02389,1.58645,0.94947,8.89377
12,1.1,0.95,1.33100,2.67169,2.27882,1.70891,0.94947,13.14837
12,1.1,0.945,1.29962,2.57147,2.11893,1.44330,0.94947,9.70404
12,1.1,0.94,1.29773,3.38477,2.63951,1.48462,0.87420,15.04750
12,1.1,0.9349999999999999,1.58757,3.43389,2.40459,1.43258,0.85235,16.00657
12,1.1,0.9299999999999999,1.27370,3.41938,2.52407,1.35222,0.85235,12.67015
12,1.1,0.925,1.30205,3.35628,2.45329,1.37800,0.85235,12.59226
12,1.1,0.9199999999999999,1.98044,3.43005,2.67524,1.17809,0.85235,18.24838
12,1.1,0.915,2.00442,3.01484,2.98667,1.49366,0.90858,24.49375
12,1.1,0.91,1.99127,2.66555,4.32544,1.50581,0.90172,31.17397
12,1.1,0.905,1.93309,2.64868,4.01249,1.48169,0.90172,27.44881
13,1.01,0.99,2.67136,5.70519,7.51748,1.57732,1.73973,314.39556
13,1.01,0.985,2.73873,5.66541,8.06669,1.60068,1.82140,364.91059
13,1.01,0.98,2.65198,5.07355,7.59974,1.47980,1.95856,296.36013
13,1.01,0.975,2.71081,4.79075,7.25105,1.74674,2.18089,358.72766
13,1.01,0.97,2.91849,4.54313,7.35944,1.78017,2.11621,367.60465
13,1.01,0.965,2.55023,4.36338,7.51780,1.60670,1.84543,248.04297
13,1.01,0.96,2.40955,4.20386,7.82330,1.82313,1.85150,267.49424
13,1.01,0.955,2.73641,3.82136,7.86723,2.18295,1.83081,328.78337
13,1.01,0.95,2.56766,3.96230,7.11337,2.00699,1.79820,261.18099
13,1.01,0.945,2.71352,3.94238,7.89851,1.72760,1.68294,245.66873
13,1.01,0.94,2.90427,3.80530,8.73384,1.42230,1.94592,267.14671
13,1.01,0.9349999999999999,2.67204,3.68061,8.28840,1.37580,1.79654,201.47637
13,1.01,0.9299999999999999,2.21426,3.80190,7.72712,1.36716,1.71062,152.13173
13,1.01,0.925,2.07066,3.62507,7.82921,1.33811,1.81065,142.38656
13,1.01,0.9199999999999999,2.03365,3.62294,7.86159,1.30389,1.96147,148.14024
13,1.01,0.915,1.91939,3.32457,9.36838,1.13972,2.02902,138.24445
13,1.01,0.91,1.82612,3.26110,8.94962,1.13694,2.33729,141.62801
13,1.01,0.905,1.78814,3.47561,8.56227,1.06101,2.91509,164.58637
13,1.015,0.99,2.82658,5.56236,6.78088,1.41501,1.58274,238.76770
13,1.015,0.985,2.72084,5.72773,7.37144,1.44753,1.70611,283.70958
13,1.015,0.98,2.70101,5.12937,6.95368,1.31361,1.83379,232.06933
13,1.015,0.975,2.78281,4.92602,6.74872,1.50992,2.06460,288.39736
13,1.015,0.97,3.05435,4.70178,6.72719,1.53882,2.06314,306.71281
13,1.015,0.965,2.84211,4.57798,7.02634,1.38887,1.81811,230.84784
13,1.015,0.96,2.68448,4.55105,6.99921,1.59934,1.83064,250.36129
13,1.015,0.955,3.07853,3.95580,7.20409,1.92485,1.81019,305.68868
13,1.015,0.95,2.89490,4.15138,6.51377,1.76969,1.77794,246.30567
13,1.015,0.945,3.00946,3.91862,7.40404,1.58185,1.65380,228.42337
13,1.015,0.94,3.04682,3.81364,8.18708,1.30231,1.93373,239.56643
13,1.015,0.9349999999999999,2.83227,3.68975,7.76952,1.26710,1.78528,183.67233
13,1.015,0.9299999999999999,2.62959,3.82931,7.37871,1.25915,1.69990,159.03363
13,1.015,0.925,2.04400,3.65121,7.47620,1.23738,1.79930,124.22392
13,1.015,0.9199999999999999,2.00748,3.63763,7.50712,1.20574,1.94918,128.83871
13,1.015,0.915,1.84674,3.32457,9.00994,1.05392,2.01190,117.29459
13,1.015,0.91,1.81131,3.26110,8.60720,1.05135,2.30641,123.28315
13,1.015,0.905,1.77364,3.47561,8.23467,0.97752,2.82918,140.38818
13,1.02,0.99,3.11221,5.41074,7.18636,1.10110,1.68271,224.21643
13,1.02,0.985,3.11515,5.66781,7.62274,1.07044,1.78902,257.73946
13,1.02,0.98,2.97048,5.19499,7.02159,1.02483,1.86041,206.58811
13,1.02,0.975,2.65547,5.05047,6.95925,1.20527,2.10337,236.61197
13,1.02,0.97,2.89036,4.97058,6.96635,1.25193,2.15269,269.72895
13,1.02,0.965,2.69941,4.82076,6.85405,1.14701,1.90447,194.83864
13,1.02,0.96,2.54969,4.75459,6.86720,1.32698,1.90966,210.95972
13,1.02,0.955,3.00616,4.20008,7.04512,1.61512,1.90550,273.76181
13,1.02,0.95,2.82686,4.16770,6.31072,1.59541,1.71812,203.80017
13,1.02,0.945,2.93872,3.93403,7.17324,1.42607,1.59161,188.23003
13,1.02,0.94,2.97521,3.82863,7.89222,1.15516,1.84266,191.35930
13,1.02,0.9349999999999999,2.76570,3.71187,7.51530,1.12393,1.70121,147.51664
13,1.02,0.9299999999999999,2.56778,3.90555,7.26823,1.11687,1.61985,131.87085
13,1.02,0.925,1.99596,3.72391,7.36425,1.11630,1.71457,104.76427
13,1.02,0.9199999999999999,1.97231,3.71005,7.32372,1.08775,1.89557,110.49859
13,1.02,0.915,1.81439,3.39077,8.43213,0.95079,1.95657,96.50397
13,1.02,0.91,1.77958,3.32603,8.05522,0.97890,2.29393,107.06244
13,1.02,0.905,1.74257,3.54481,7.70658,0.89663,2.81387,120.10581
13,1.025,0.99,2.89659,5.57435,7.49749,1.05253,1.50475,191.73182
13,1.025,0.985,2.95118,5.81616,7.92807,1.05216,1.53960,220.43957
13,1.025,0.98,2.85984,5.37083,7.61299,1.00662,1.59225,187.41950
13,1.025,0.975,2.56672,5.34945,7.23018,1.21040,1.86983,224.68221
13,1.025,0.97,2.76624,5.08274,7.07863,1.17799,1.93901,227.33018
13,1.025,0.965,2.58349,4.97564,7.13255,1.09455,1.72348,172.95858
13,1.025,0.96,2.32410,4.97411,6.87647,1.18646,1.73730,163.85662
13,1.025,0.955,2.76853,4.49194,6.78765,1.40265,1.73351,205.24846
13,1.025,0.95,2.64086,4.48356,6.14313,1.35882,1.56305,154.48725
13,1.025,0.945,2.76375,4.02128,6.94853,1.21459,1.45218,136.20960
13,1.025,0.94,2.81692,3.92187,7.64499,1.00891,1.72692,147.15333
13,1.025,0.9349999999999999,2.64594,3.57761,7.25603,0.98163,1.59435,107.49911
13,1.025,0.9299999999999999,2.45660,3.76455,7.01748,0.97547,1.51811,96.10446
13,1.025,0.925,1.90953,3.58947,7.11019,0.97496,1.63575,77.72177
13,1.025,0.9199999999999999,1.88691,3.55434,7.07106,0.95621,1.83267,83.10612
13,1.025,0.915,1.74801,3.37766,8.21125,0.83582,1.89786,76.90325
13,1.025,0.91,1.72944,3.31317,7.84421,0.86052,2.29598,88.80344
13,1.025,0.905,1.69348,3.53111,7.50471,0.79269,2.81387,100.09948
13,1.03,0.99,2.75470,5.74266,7.46540,1.15046,1.38297,187.89931
13,1.03,0.985,2.83307,5.81074,7.99462,1.10120,1.43185,207.51551
13,1.03,0.98,2.80088,5.42547,7.73093,0.99489,1.41920,165.87592
13,1.03,0.975,2.62815,5.65902,7.51074,1.26298,1.69346,238.91536
13,1.03,0.97,2.73307,5.39263,7.56238,1.23440,1.82689,251.34938
13,1.03,0.965,2.53330,5.27365,7.24681,1.06225,1.64081,168.74502
13,1.03,0.96,2.29783,5.10914,7.40190,1.16209,1.69428,171.09418
13,1.03,0.955,2.78881,4.40096,7.27350,1.37384,1.69575,207.97204
13,1.03,0.95,2.49636,4.63233,6.58284,1.42518,1.44159,156.39836
13,1.03,0.945,2.65863,4.17719,7.18283,1.27391,1.33934,136.10297
13,1.03,0.94,2.70310,3.80659,7.90277,1.00876,1.59762,131.05069
13,1.03,0.9349999999999999,2.51479,3.46001,7.50458,0.98149,1.47498,94.53086
13,1.03,0.9299999999999999,2.33483,3.64081,7.01972,0.97189,1.40444,81.44996
13,1.03,0.925,1.81488,3.47148,7.11246,0.97836,1.51327,66.34382
13,1.03,0.9199999999999999,1.78592,3.43949,7.07332,0.92580,1.70707,68.66694
13,1.03,0.915,1.70211,3.25520,8.33572,0.80924,1.77276,66.25708
13,1.03,0.91,1.68403,3.19306,7.96312,0.83717,2.14463,76.87809
13,1.03,0.905,1.64901,3.40309,7.61847,0.77117,2.65739,87.61356
13,1.035,0.99,2.75621,5.35583,7.01984,1.07691,1.31261,146.48240
13,1.035,0.985,2.91669,5.20898,7.32575,1.05692,1.37830,162.13713
13,1.035,0.98,2.82191,4.89097,7.34598,0.95489,1.37889,133.49699
13,1.035,0.975,2.59598,5.12366,6.49441,1.32934,1.55830,178.94121
13,1.035,0.97,2.76534,4.99852,6.71207,1.30249,1.68108,203.14735
13,1.035,0.965,2.55156,5.12313,6.49771,1.17276,1.54595,153.99502
13,1.035,0.96,2.31440,4.69763,6.75775,1.28298,1.61053,151.81348
13,1.035,0.955,2.83511,4.11670,6.79627,1.48452,1.61192,189.81052
13,1.035,0.95,2.57282,4.46439,6.39403,1.54000,1.39486,157.75991
13,1.035,0.945,2.74683,4.03645,6.97681,1.29994,1.29592,130.31334
13,1.035,0.94,2.82591,3.66981,7.74919,1.04210,1.59762,133.79493
13,1.035,0.9349999999999999,2.68750,3.34424,7.36661,1.01821,1.47498,99.43395
13,1.035,0.9299999999999999,2.49518,3.55990,6.89067,1.00825,1.40444,86.67058
13,1.035,0.925,1.93952,3.39434,6.98170,0.93390,1.51327,64.95774
13,1.035,0.9199999999999999,1.74732,3.40240,6.86715,0.88633,1.70707,61.77038
13,1.035,0.915,1.66532,3.22010,8.23029,0.77473,1.77276,60.61554
13,1.035,0.91,1.66136,3.15862,7.86240,0.80147,2.14463,70.91803
13,1.035,0.905,1.62681,3.36639,7.52211,0.77640,2.65739,84.99249
13,1.04,0.99,2.54194,4.13217,6.88283,0.94745,1.18970,81.48964
13,1.04,0.985,2.69326,4.02108,7.26807,0.90777,1.25146,89.41932
13,1.04,0.98,2.61633,3.80012,7.04125,0.78533,1.26838,69.73293
13,1.04,0.975,2.50327,4.01562,6.22501,1.16533,1.32293,96.46810
13,1.04,0.97,2.51579,4.08912,6.51561,1.14179,1.43466,109.79807
13,1.04,0.965,2.31997,4.42069,6.30752,1.02392,1.45021,96.05656
13,1.04,0.96,2.10433,4.09216,6.63732,1.11245,1.51079,96.06033
13,1.04,0.955,2.81989,3.73732,6.24856,1.32526,1.51210,131.96311
13,1.04,0.95,2.55901,4.09368,5.87873,1.37479,1.31950,111.71565
13,1.04,0.945,2.74490,3.70128,6.41455,1.16048,1.25727,95.08446
13,1.04,0.94,2.91512,3.58606,7.17501,0.93030,1.54492,107.80109
13,1.04,0.9349999999999999,2.84896,3.26792,6.82077,0.90897,1.42632,82.33013
13,1.04,0.9299999999999999,2.64509,3.48037,6.51700,0.89855,1.35811,73.21336
13,1.04,0.925,2.05605,3.31851,6.60310,0.85989,1.46335,56.69116
13,1.04,0.9199999999999999,1.97679,3.32962,6.49476,0.81608,1.67439,58.41276
13,1.04,0.915,1.88402,3.18077,7.90786,0.71333,1.77234,59.91221
13,1.04,0.91,1.91018,3.12005,7.55438,0.73795,2.14463,71.25460
13,1.04,0.905,1.87045,3.32528,7.22742,0.71604,2.65739,85.53684
13,1.045,0.99,2.28593,4.16234,6.31790,0.90203,1.16502,63.17231
13,1.045,0.985,2.35521,3.99342,6.04846,0.89714,1.18605,60.53171
13,1.045,0.98,2.28793,3.87949,6.16015,0.78879,1.22178,52.69467
13,1.045,0.975,2.23861,4.06485,5.49540,1.08785,1.27961,69.60928
13,1.045,0.97,2.24981,4.54849,6.01062,1.09613,1.40616,94.80493
13,1.045,0.965,2.07469,4.81632,5.80068,0.98298,1.42869,81.40036
13,1.045,0.96,1.88185,4.69190,6.24532,1.06796,1.50156,88.42736
13,1.045,0.955,2.61797,4.38398,6.14133,1.30174,1.50286,137.89184
13,1.045,0.95,2.38942,4.93588,5.69215,1.36248,1.31144,119.95306
13,1.045,0.945,2.66777,4.55538,6.06654,1.15009,1.24959,105.95261
13,1.045,0.94,2.85861,4.41357,6.53091,0.92197,1.55406,118.05997
13,1.045,0.9349999999999999,2.80048,4.04759,5.96953,0.90084,1.43476,87.45663
13,1.045,0.9299999999999999,2.60008,4.32124,5.89791,0.89050,1.36615,80.61690
13,1.045,0.925,2.02106,4.19821,6.29916,0.85219,1.46715,66.82503
13,1.045,0.9199999999999999,1.97679,3.63205,6.29827,0.80878,1.67439,61.23773
13,1.045,0.915,1.88402,3.26805,7.48971,0.70695,1.77234,57.77934
13,1.045,0.91,1.91018,3.20566,7.15492,0.73135,2.14463,68.71794
13,1.045,0.905,1.87045,3.41652,6.84525,0.70837,2.65739,82.34409
13,1.05,0.99,2.02761,3.75016,5.09550,0.88762,1.22351,42.07815
13,1.05,0.985,2.12585,3.59796,4.82516,0.82355,1.23608,37.56965
13,1.05,0.98,2.08053,3.51384,4.72549,0.72409,1.25212,31.32134
13,1.05,0.975,2.02401,3.68173,4.45475,0.99861,1.31521,43.59927
13,1.05,0.97,1.99080,4.11979,4.41885,1.05941,1.47676,56.70010
13,1.05,0.965,1.83584,4.51471,4.62871,0.96205,1.50041,55.37739
13,1.05,0.96,1.66520,4.46925,5.14204,1.04523,1.49028,59.60971
13,1.05,0.955,2.46673,4.03961,5.49748,1.25237,1.49157,102.32968
13,1.05,0.95,2.26691,4.57568,5.09540,1.31081,1.30661,90.52132
13,1.05,0.945,2.52939,4.45226,5.43053,1.09927,1.24637,83.78969
13,1.05,0.94,2.71033,4.31366,6.43482,0.89932,1.54983,104.85807
13,1.05,0.9349999999999999,2.68428,3.95597,5.88170,0.87610,1.43085,78.29441
13,1.05,0.9299999999999999,2.49219,4.22342,5.81114,0.95622,1.36243,79.68526
13,1.05,0.925,1.93720,4.10318,6.20649,0.97744,1.46316,70.55399
13,1.05,0.9199999999999999,1.90820,3.54984,6.20561,0.92984,1.66983,65.26743
13,1.05,0.915,1.81865,3.19408,7.48971,0.81276,1.76751,62.50096
13,1.05,0.91,1.90214,3.13310,7.15492,0.84082,2.12614,76.22793
13,1.05,0.905,1.86258,3.41652,6.84525,0.71570,2.65739,82.84624
13,1.055,0.99,1.94456,3.82156,4.98297,0.84298,1.18153,36.88200
13,1.055,0.985,2.06820,3.76025,4.73061,0.78636,1.21933,35.27511
13,1.055,0.98,2.08173,3.55804,4.61135,0.70355,1.30841,31.44134
13,1.055,0.975,2.03842,3.73958,4.40148,0.99803,1.34309,44.97427
13,1.055,0.97,1.97249,3.72609,4.25946,1.01465,1.46213,46.44351
13,1.055,0.965,1.93777,4.09177,4.66689,0.90904,1.57676,53.03818
13,1.055,0.96,1.76473,4.11906,4.76231,0.98707,1.59054,54.34838
13,1.055,0.955,2.48650,3.91140,5.21222,1.29448,1.49028,97.79254
13,1.055,0.95,2.33539,5.01665,4.83100,1.38908,1.30347,102.48003
13,1.055,0.945,2.62038,4.88134,5.02327,1.16661,1.24338,93.20039
13,1.055,0.94,2.66434,4.27651,6.39480,0.98074,1.63918,117.13452
13,1.055,0.9349999999999999,2.64772,3.92189,5.50400,0.98489,1.52026,85.57604
13,1.055,0.9299999999999999,2.45825,4.18705,5.47654,0.99723,1.44756,81.37124
13,1.055,0.925,1.91082,4.06783,5.84913,1.03602,1.55459,73.22458
13,1.055,0.9199999999999999,1.90271,3.50669,5.99949,0.98557,1.83805,72.51486
13,1.055,0.915,1.81133,3.15525,7.48971,0.86148,1.94557,71.74435
13,1.055,0.91,1.89448,3.09501,7.15492,0.89121,2.24470,83.92580
13,1.055,0.905,1.85508,3.37499,6.84525,0.80019,2.72346,93.39840
13,1.06,0.99,1.90436,2.89957,4.09152,0.83012,1.16119,21.77755
13,1.06,0.985,1.88377,2.85305,3.96922,0.77487,1.18165,19.53261
13,1.06,0.98,1.93747,2.70950,3.93410,0.69864,1.27511,18.39812
13,1.06,0.975,2.04213,2.84931,3.77422,0.91006,1.20666,24.11614
13,1.06,0.97,1.98433,2.82779,3.73041,0.93474,1.33771,26.17414
13,1.06,0.965,1.97159,3.19486,4.12526,0.83745,1.49312,32.49177
13,1.06,0.96,1.85097,3.24855,4.48672,0.91147,1.52159,37.41593
13,1.06,0.955,2.62430,3.11075,5.12833,1.27290,1.42567,75.97488
13,1.06,0.95,2.52275,3.98976,4.39254,1.36592,1.21020,73.08320
13,1.06,0.945,2.70462,5.05304,4.72036,1.14716,1.17763,87.14918
13,1.06,0.94,2.62819,4.42693,5.67815,0.99156,1.63399,107.03644
13,1.06,0.9349999999999999,2.87675,4.10065,4.88718,0.99575,1.51545,86.99729
13,1.06,0.9299999999999999,2.67089,4.41075,4.86280,1.00823,1.44298,83.34363
13,1.06,0.925,2.07968,4.32445,5.19363,1.04526,1.54967,75.65921
13,1.06,0.9199999999999999,2.19107,3.45978,5.49841,0.99436,1.83805,76.18033
13,1.06,0.915,2.16752,3.11305,8.34868,0.86916,1.94557,95.26081
13,1.06,0.91,2.28416,3.05361,7.97550,0.89916,2.24470,112.27764
13,1.06,0.905,2.28453,3.32985,7.63031,0.80733,2.72346,127.62499
13,1.065,0.99,1.85638,2.82269,4.07661,0.80665,1.15033,19.82133
13,1.065,0.985,1.84952,2.81297,3.93071,0.74126,1.17298,17.78101
13,1.065,0.98,1.89642,2.68158,3.95938,0.70767,1.26575,18.03576
13,1.065,0.975,2.06536,2.65212,3.84723,0.92150,1.18321,22.97700
13,1.065,0.97,1.97528,2.72523,3.80257,0.97987,1.31172,26.30983
13,1.065,0.965,1.96851,3.14215,4.20506,0.90308,1.39050,32.66108
13,1.065,0.96,1.86902,3.31752,4.44386,1.01495,1.41552,39.58656
13,1.065,0.955,2.68932,3.23808,4.55526,1.31504,1.33506,69.64375
13,1.065,0.95,2.66172,3.93330,3.86617,1.47236,1.17456,69.99907
13,1.065,0.945,2.73665,4.85047,4.22003,1.46158,1.09221,89.42281
13,1.065,0.94,2.67445,4.31121,5.08620,1.33151,1.51546,118.33559
13,1.065,0.9349999999999999,2.77713,3.90981,4.47428,1.33907,1.40553,91.43584
13,1.065,0.9299999999999999,2.57840,4.20548,4.45197,1.26909,1.33831,81.99104
13,1.065,0.925,2.00767,4.12319,4.87883,1.27275,1.44260,74.15303
13,1.065,0.9199999999999999,2.11519,3.29876,5.16514,1.45700,1.77623,93.27018
13,1.065,0.915,2.09246,2.96817,8.34868,1.30345,1.88014,127.07197
13,1.065,0.91,2.20506,2.91150,7.97550,1.23960,2.16921,137.68208
13,1.065,0.905,2.20543,3.17488,7.63031,1.12136,2.72346,163.16572
13,1.07,0.99,1.68312,2.68357,3.56377,0.76255,1.02012,12.52162
13,1.07,0.985,1.66537,2.67434,3.44579,0.71500,0.96396,10.57752
13,1.07,0.98,1.66537,2.54942,3.48427,0.71529,1.05261,11.13821
13,1.07,0.975,1.84001,2.52141,3.60046,0.95554,0.98397,15.70557
13,1.07,0.97,1.76358,2.59092,3.55867,1.01800,1.12126,18.56051
13,1.07,0.965,1.78850,2.98729,3.93534,0.93821,1.10607,21.81882
13,1.07,0.96,1.68597,3.25719,4.39508,1.06293,1.44824,37.15407
13,1.07,0.955,1.79835,3.17920,4.50525,1.40688,1.43255,51.91288
13,1.07,0.95,2.28275,3.86177,3.82373,1.54428,1.25256,65.20173
13,1.07,0.945,2.34701,4.76227,4.18456,1.43949,1.23501,83.14906
13,1.07,0.94,2.29366,4.23281,5.04346,1.32911,1.27461,82.95133
13,1.07,0.9349999999999999,2.38939,3.83871,4.46040,1.26501,1.23628,63.98187
13,1.07,0.9299999999999999,2.21840,4.20548,4.51952,1.18316,1.17716,58.72566
13,1.07,0.925,1.72735,4.12319,4.95286,1.19807,1.26889,53.62638
13,1.07,0.9199999999999999,1.83263,3.29876,5.24351,1.35229,1.51246,64.83417
13,1.07,0.915,1.86773,2.96817,8.09360,1.20978,1.60094,86.90127
13,1.07,0.91,2.01893,2.91150,7.73182,1.15052,1.75149,91.58415
13,1.07,0.905,2.01927,3.17488,7.39718,1.07297,2.69675,137.21889
13,1.075,0.99,1.64675,2.69054,2.99307,0.71503,1.09432,10.37648
13,1.075,0.985,1.62939,2.66698,2.96258,0.67044,1.03408,8.92535
13,1.075,0.98,1.62939,2.55049,3.01779,0.67071,1.05969,8.91354
13,1.075,0.975,1.80025,2.52247,3.11843,0.89599,1.03317,13.10891
13,1.075,0.97,1.72547,2.60476,3.15378,0.95455,1.13141,15.30817
13,1.075,0.965,1.74985,2.78028,3.50271,0.85916,1.11608,16.34027
13,1.075,0.96,1.64953,3.05754,3.35018,0.97968,1.46135,24.19019
13,1.075,0.955,1.75948,2.98433,3.12193,1.29668,1.46295,31.09698
13,1.075,0.95,2.23342,3.68921,2.67361,1.45821,1.27915,41.09079
13,1.075,0.945,2.29629,4.57331,2.95735,1.35926,1.25832,53.11935
13,1.075,0.94,2.24410,4.27511,3.56435,1.32100,1.23637,55.84947
13,1.075,0.9349999999999999,2.33775,3.87707,3.15229,1.25730,1.19919,43.07771
13,1.075,0.9299999999999999,2.17046,4.29155,3.19407,1.17594,1.14184,39.94884
13,1.075,0.925,1.69003,4.20758,3.50494,1.19807,1.23082,36.75234
13,1.075,0.9199999999999999,1.79303,3.37628,3.71063,1.35229,1.47137,44.69566
13,1.075,0.915,1.84214,2.93027,6.74973,1.20978,1.57537,69.43964
13,1.075,0.91,1.99127,2.87432,6.44803,1.15052,1.62804,69.12765
13,1.075,0.905,1.99160,3.15122,6.16895,1.07297,2.60345,108.15011
13,1.08,0.99,1.64568,2.49955,2.93681,0.76606,1.13064,10.46339
13,1.08,0.985,1.62833,2.51076,2.93097,0.71829,1.11320,9.58150
13,1.08,0.98,1.62833,2.40110,2.89834,0.71859,1.11876,9.10994
13,1.08,0.975,1.79908,2.37471,2.99500,1.00440,1.09076,14.01821
13,1.08,0.97,1.72435,2.45592,3.02895,1.00133,1.19447,15.34218
13,1.08,0.965,1.74871,2.46675,3.26237,0.90127,1.17829,14.94451
13,1.08,0.96,1.64846,3.07301,3.12639,1.02769,1.54281,25.11093
13,1.08,0.955,1.75834,2.99943,2.91339,1.36024,1.54450,32.28062
13,1.08,0.95,2.23197,3.75727,2.49502,1.52969,1.39645,44.69544
13,1.08,0.945,2.29480,4.65768,2.75980,1.42588,1.37371,57.77919
13,1.08,0.94,2.24264,4.42372,3.32626,1.38574,1.34975,61.72196
13,1.08,0.9349999999999999,2.33624,4.12791,2.94172,1.31892,1.30916,48.98450
13,1.08,0.9299999999999999,2.16905,4.56921,2.98071,1.23358,1.24655,45.42660
13,1.08,0.925,1.68893,4.47980,3.35579,1.27147,1.34370,43.37817
13,1.08,0.9199999999999999,1.79303,3.59472,3.55272,1.43514,1.60630,52.78782
13,1.08,0.915,1.84214,3.11985,6.50492,1.28390,1.73159,83.11383
13,1.08,0.91,1.99127,3.11157,6.21415,1.22100,1.78948,84.12705
13,1.08,0.905,1.99160,3.45476,5.94520,1.14432,2.56687,120.15448
13,1.085,0.99,1.62956,2.14151,2.80098,0.71792,1.12415,7.88860
13,1.085,0.985,1.61237,2.15111,2.79541,0.68108,1.09931,7.25922
13,1.085,0.98,1.61237,2.06846,2.76429,0.68135,1.10903,6.96651
13,1.085,0.975,1.78145,2.04647,2.85648,0.96856,1.08304,10.92397
13,1.085,0.97,1.70746,2.18696,2.88886,0.98625,1.07415,11.42792
13,1.085,0.965,1.73158,2.20813,3.11148,0.89359,1.06183,11.28824
13,1.085,0.96,1.63231,3.02738,2.98180,1.04869,1.39033,21.48383
13,1.085,0.955,1.74111,3.00267,2.77864,1.31492,1.38679,26.48961
13,1.085,0.95,2.21010,3.75810,2.37963,1.58153,1.30432,40.77114
13,1.085,0.945,2.27231,5.06348,2.63216,1.47421,1.31715,58.80632
13,1.085,0.94,2.22066,4.84654,3.17242,1.35780,1.22847,56.95137
13,1.085,0.9349999999999999,2.31334,4.77394,2.80566,1.29232,1.22509,49.05573
13,1.085,0.9299999999999999,2.14780,4.76824,2.87244,1.20870,1.19535,42.50283
13,1.085,0.925,1.67238,4.67494,3.30255,1.28969,1.19188,39.68972
13,1.085,0.9199999999999999,1.78436,3.75131,3.54173,1.56681,1.44424,53.64580
13,1.085,0.915,1.84214,3.25575,6.48480,1.40169,1.43334,78.13958
13,1.085,0.91,1.99127,3.24711,6.19493,1.33302,1.48126,79.09216
13,1.085,0.905,1.99160,3.60525,5.92681,1.06865,2.73304,124.29145
13,1.09,0.99,1.36287,2.12726,2.65653,0.68624,1.11721,5.90474
13,1.09,0.985,1.34850,2.13680,2.66014,0.67834,1.09253,5.68063
13,1.09,0.98,1.34850,2.05471,2.70151,0.67861,1.10219,5.59868
13,1.09,0.975,1.49935,2.03286,2.79161,0.91469,1.07635,8.37707
13,1.09,0.97,1.44343,2.17242,2.82325,0.95366,1.06752,9.01276
13,1.09,0.965,1.46382,2.19345,3.04082,0.87763,1.05528,9.04240
13,1.09,0.96,1.41271,3.00725,2.62654,1.02996,1.38175,15.88018
13,1.09,0.955,1.50688,3.00826,2.45550,1.29143,1.37823,19.81188
13,1.09,0.95,1.91277,3.76509,2.10289,1.40225,1.29628,27.52805
13,1.09,0.945,1.92558,5.07290,2.34983,1.32962,1.30902,39.95103
13,1.09,0.94,1.88270,4.85557,2.89922,1.22462,1.22089,39.62585
13,1.09,0.9349999999999999,2.30695,4.78282,2.67976,1.19184,1.21753,42.90567
13,1.09,0.9299999999999999,2.14187,4.77711,2.85560,1.11432,1.18797,38.67860
13,1.09,0.925,1.66776,4.68364,3.28318,1.08441,1.18453,32.94212
13,1.09,0.9199999999999999,1.79422,3.75829,3.44572,1.31743,1.43533,43.93622
13,1.09,0.915,1.85232,3.26181,6.30901,1.17859,1.42449,63.99677
13,1.09,0.91,1.99127,3.25316,6.02700,1.12085,1.47212,64.42097
13,1.09,0.905,1.99160,3.61196,5.76614,0.96294,2.71617,108.48924
13,1.095,0.99,1.30704,1.48597,2.53435,0.70645,1.07434,3.73581
13,1.095,0.985,1.29325,1.49717,2.52150,0.69356,1.05060,3.55741
13,1.095,0.98,1.29325,1.44900,2.61636,0.71176,1.05989,3.69868
13,1.095,0.975,1.43793,1.43359,2.58816,0.89503,1.04886,5.00849
13,1.095,0.97,1.38430,1.53201,2.61059,0.91945,1.04274,5.30802
13,1.095,0.965,1.40386,1.52031,2.53736,0.80813,1.03078,4.51112
13,1.095,0.96,1.35484,2.09291,2.27929,0.98030,0.97752,6.19332
13,1.095,0.955,1.44514,2.09362,2.19247,1.22917,0.97503,7.95010
13,1.095,0.95,1.83441,2.64051,1.96764,1.34448,0.94281,12.08114
13,1.095,0.945,1.84670,3.55769,2.19869,1.27484,0.95208,17.53316
13,1.095,0.94,1.80557,3.40527,2.71275,1.17417,0.88798,17.39045
13,1.095,0.9349999999999999,2.21244,3.44008,2.50741,1.14274,0.88554,19.31170
13,1.095,0.9299999999999999,2.05412,3.43598,2.71773,1.06841,0.86404,17.70750
13,1.095,0.925,1.59944,3.36875,2.85043,1.09369,0.86154,14.47149
13,1.095,0.9199999999999999,1.72071,2.70318,2.77865,1.32870,1.40668,24.15668
13,1.095,0.915,1.81058,2.39636,5.36226,1.19189,1.39606,38.71313
13,1.095,0.91,1.99127,2.39000,5.12257,1.13350,1.44273,39.86800
13,1.095,0.905,1.99160,2.65361,4.90086,1.13061,2.66196,77.95172
13,1.1,0.99,1.33790,1.45495,2.36027,0.85626,1.08480,4.26764
13,1.1,0.985,1.33397,1.46592,2.34831,0.84333,1.08967,4.21991
13,1.1,0.98,1.33397,1.41876,2.43666,0.87599,1.09931,4.44087
13,1.1,0.975,1.48320,1.40367,2.41038,1.07017,1.08786,5.84224
13,1.1,0.97,1.44116,1.50003,2.41427,1.09937,1.08151,6.20546
13,1.1,0.965,1.46152,1.48858,2.34655,0.97136,1.15626,5.73376
13,1.1,0.96,1.41048,2.04923,2.19084,1.05105,1.09652,7.29807
13,1.1,0.955,1.51554,2.06219,2.14512,1.16172,1.09373,8.51840
13,1.1,0.95,1.92376,2.60087,1.92514,1.26730,1.05759,12.90999
13,1.1,0.945,1.88746,3.50428,2.15120,1.20166,1.06799,18.26013
13,1.1,0.94,1.86667,3.35415,2.65416,1.20445,0.99608,19.93705
13,1.1,0.9349999999999999,2.29474,3.38844,2.45960,1.17720,0.99334,22.36385
13,1.1,0.9299999999999999,2.18819,3.38440,2.42619,1.10063,0.96923,19.16726
13,1.1,0.925,1.70382,3.31818,2.56366,1.07093,0.96642,15.00066
13,1.1,0.9199999999999999,1.71198,2.66260,2.49910,1.07093,1.40420,17.13082
13,1.1,0.915,1.81058,2.36038,4.82279,0.96066,1.39360,27.59363
13,1.1,0.91,1.99127,2.35412,4.60721,0.88918,1.44019,27.65718
13,1.1,0.905,1.99160,2.64715,4.40781,1.39095,2.66196,86.04318
14,1.01,0.99,2.43949,6.14139,7.16032,1.10295,1.67967,198.73698
14,1.01,0.985,2.44211,5.63871,7.03009,1.27124,1.78046,219.11268
14,1.01,0.98,2.51180,5.53077,6.72406,1.30166,1.76998,215.21308
14,1.01,0.975,2.82016,5.05928,7.66689,1.52448,2.06065,343.64379
14,1.01,0.97,2.62423,4.26785,7.52507,1.78724,2.13735,321.94510
14,1.01,0.965,2.74023,4.11825,7.37986,1.59877,1.90655,253.85287
14,1.01,0.96,2.83802,4.44988,7.61314,1.89990,1.74065,317.95863
14,1.01,0.955,2.97527,4.09889,7.62383,1.97164,1.93748,355.16433
14,1.01,0.95,2.90181,4.16653,7.26390,1.69659,1.82631,272.12157
14,1.01,0.945,2.92212,3.75860,6.93926,1.69497,1.65465,213.75027
14,1.01,0.94,2.97303,3.50919,6.97850,1.50321,1.70186,186.25635
14,1.01,0.9349999999999999,2.76972,3.75782,6.81025,1.22136,1.73063,149.82427
14,1.01,0.9299999999999999,2.82803,3.70352,7.07547,1.40299,1.70585,177.35690
14,1.01,0.925,2.68205,3.79967,7.36723,1.48363,2.00635,223.48534
14,1.01,0.9199999999999999,2.03469,3.58274,7.99307,1.15506,2.40164,161.63723
14,1.01,0.915,2.05749,3.24305,7.47232,0.99767,2.21902,110.38143
14,1.01,0.91,1.77109,3.43360,8.43717,1.02091,2.20376,115.43500
14,1.01,0.905,1.68507,3.68915,8.43717,1.11235,2.63246,153.58406
14,1.015,0.99,2.46708,6.03703,6.51777,0.94788,1.59980,147.20561
14,1.015,0.985,2.52799,5.59721,6.46726,1.10959,1.80110,182.88099
14,1.015,0.98,2.59904,5.68264,6.17727,1.14237,1.75055,182.44854
14,1.015,0.975,2.80302,5.23980,7.13265,1.33451,2.01593,281.83089
14,1.015,0.97,2.60170,4.47380,6.91823,1.56822,2.10076,265.28518
14,1.015,0.965,2.71302,4.46130,6.65543,1.40284,1.87391,211.76244
14,1.015,0.96,2.77555,4.78194,6.80015,1.61772,1.71085,249.79665
14,1.015,0.955,2.93393,4.50653,6.61727,1.61691,1.83838,260.07161
14,1.015,0.95,2.87487,4.33739,6.32466,1.36663,1.73290,186.77120
14,1.015,0.945,2.89500,3.91273,6.04200,1.43785,1.57002,154.49988
14,1.015,0.94,2.95451,3.65309,6.24753,1.27518,1.61482,138.85070
14,1.015,0.9349999999999999,2.75247,3.89790,6.19011,1.03609,1.64211,112.99265
14,1.015,0.9299999999999999,2.79649,3.83695,6.70595,1.22367,1.61860,142.51520
14,1.015,0.925,2.65214,3.90761,7.03805,1.29400,1.90373,179.67972
14,1.015,0.9199999999999999,2.01200,3.67570,7.82543,1.00743,2.34026,136.44412
14,1.015,0.915,2.03454,3.32720,7.33272,0.87016,2.16231,93.39508
14,1.015,0.91,1.75134,3.52269,8.27954,0.93798,2.14744,102.88821
14,1.015,0.905,1.67798,3.78487,8.27954,1.01285,2.53486,135.00206
14,1.02,0.99,2.69800,5.95148,6.59885,0.93599,1.47923,146.70422
14,1.02,0.985,2.78281,5.47816,6.76511,1.10053,1.68057,190.74418
14,1.02,0.98,2.93335,5.54584,6.46177,1.15218,1.67356,202.69606
14,1.02,0.975,2.67420,5.15559,7.58137,1.24625,1.99321,259.64480
14,1.02,0.97,2.48432,4.52347,7.33815,1.39400,2.13882,245.86935
14,1.02,0.965,2.63650,4.44864,6.82905,1.25076,1.98532,198.89337
14,1.02,0.96,2.63147,4.86180,6.95896,1.43543,1.70231,217.54981
14,1.02,0.955,2.79629,4.58271,6.81412,1.44531,1.85954,234.68286
14,1.02,0.95,2.74691,4.28304,6.25266,1.22160,1.65369,148.60846
14,1.02,0.945,2.79831,4.00473,5.97322,1.30899,1.49826,131.28139
14,1.02,0.94,2.86106,3.75317,6.17641,1.16090,1.54969,119.31687
14,1.02,0.9349999999999999,2.66540,4.00468,6.11965,0.94324,1.57589,97.09659
14,1.02,0.9299999999999999,2.70803,3.99247,6.74388,1.11401,1.56384,127.02347
14,1.02,0.925,2.56825,3.80736,7.07786,1.17303,1.83932,149.32340
14,1.02,0.9199999999999999,1.94835,3.57715,7.88730,0.91711,2.28007,114.94845
14,1.02,0.915,1.97018,3.25235,7.39069,0.79214,2.10670,79.03030
14,1.02,0.91,1.69594,3.44344,8.27954,0.85389,2.09221,86.38035
14,1.02,0.905,1.62490,3.69972,8.27954,0.94102,2.53029,118.51457
14,1.025,0.99,2.52619,6.05577,6.42793,0.76645,1.43713,108.31439
14,1.025,0.985,2.65332,5.57705,6.60187,0.97948,1.66233,159.06494
14,1.025,0.98,2.82334,5.72282,6.36851,0.94650,1.65532,161.21750
14,1.025,0.975,2.47240,5.35186,7.22783,1.01962,1.84682,180.09172
14,1.025,0.97,2.31123,4.55817,6.99595,1.17150,2.06721,178.48699
14,1.025,0.965,2.49142,4.42617,6.52833,1.08269,1.91884,149.56073
14,1.025,0.96,2.47741,4.91321,6.72551,1.24694,1.67220,170.69493
14,1.025,0.955,2.67099,4.54708,6.68806,1.32287,1.80868,194.34889
14,1.025,0.95,2.62983,4.22536,6.13698,1.11811,1.60846,122.64185
14,1.025,0.945,2.68593,3.95079,5.86271,1.21554,1.45728,110.20176
14,1.025,0.94,2.73885,3.70262,6.06214,1.07802,1.50731,99.89212
14,1.025,0.9349999999999999,2.55156,3.94536,6.00643,0.89387,1.53278,82.84442
14,1.025,0.9299999999999999,2.61029,3.93332,6.72902,1.06766,1.52106,112.19633
14,1.025,0.925,2.47555,3.77456,7.06226,1.14105,1.84364,138.82311
14,1.025,0.9199999999999999,1.90993,3.56609,7.93072,0.89210,2.28794,110.25076
14,1.025,0.915,1.93617,3.24229,7.29721,0.77762,2.11397,75.30407
14,1.025,0.91,1.66666,3.44344,8.17481,0.76447,2.09943,75.29687
14,1.025,0.905,1.59685,3.69972,8.17481,0.89089,2.53902,109.24536
14,1.03,0.99,2.59512,6.00406,6.44728,0.78983,1.35528,107.53320
14,1.03,0.985,2.73144,5.59290,6.72398,0.98243,1.47954,149.30819
14,1.03,0.98,2.95467,6.05821,6.55695,0.98379,1.51390,174.80625
14,1.03,0.975,2.58244,5.65594,7.50418,1.03521,1.68529,191.22446
14,1.03,0.97,2.44351,5.02135,7.27114,1.21310,1.90234,205.88431
14,1.03,0.965,2.64169,4.74632,6.79280,1.12113,1.81338,173.15437
14,1.03,0.96,2.59985,5.26437,7.07095,1.29410,1.58030,197.91578
14,1.03,0.955,2.94086,4.60621,6.56256,1.37291,1.72617,210.67678
14,1.03,0.95,2.66489,4.47183,6.06645,1.17970,1.54700,131.93522
14,1.03,0.945,2.78264,3.86397,5.79534,1.31814,1.40806,115.65146
14,1.03,0.94,2.89175,3.62125,6.20404,1.16901,1.45640,110.60932
14,1.03,0.9349999999999999,2.69400,3.60544,6.25857,0.96932,1.48101,87.26831
14,1.03,0.9299999999999999,2.76238,3.59445,6.82300,1.06732,1.46969,106.27049
14,1.03,0.925,2.61979,3.48971,7.16089,1.19965,1.78137,139.90427
14,1.03,0.9199999999999999,2.06840,3.30208,8.04148,0.93792,2.25961,116.40076
14,1.03,0.915,2.09682,3.10789,7.31814,0.81755,2.08981,81.47988
14,1.03,0.91,1.93995,3.33166,8.17481,0.80372,2.12723,90.33396
14,1.03,0.905,1.85869,3.57963,8.17481,0.93664,2.53902,129.34934
14,1.035,0.99,2.70053,5.18698,7.11842,0.79439,1.26906,100.52230
14,1.035,0.985,2.86996,4.89928,7.51420,0.97347,1.37740,141.66835
14,1.035,0.98,3.01835,5.38076,7.50272,0.93248,1.40939,160.14217
14,1.035,0.975,2.55185,5.07895,7.48029,1.00309,1.61515,157.07164
14,1.035,0.97,2.36966,4.54227,7.35759,1.11836,1.82567,161.69643
14,1.035,0.965,2.57356,4.30962,6.52873,1.04301,1.74030,131.43680
14,1.035,0.96,2.58835,4.90508,6.73154,1.24382,1.51661,161.21913
14,1.035,0.955,3.06965,4.31435,6.36757,1.35065,1.65782,188.82494
14,1.035,0.95,2.66067,4.34612,6.01879,1.18681,1.48574,122.72296
14,1.035,0.945,2.82762,3.75534,5.74980,1.32608,1.35211,109.47246
14,1.035,0.94,2.95861,3.51944,5.81080,1.17191,1.43690,101.88705
14,1.035,0.9349999999999999,2.75628,3.54979,5.94696,0.97172,1.46119,82.61742
14,1.035,0.9299999999999999,2.83811,3.53897,6.45587,1.03261,1.45002,97.08904
14,1.035,0.925,2.69161,3.48971,6.77558,1.08594,1.78095,123.08480
14,1.035,0.9199999999999999,2.10847,3.30208,7.62794,0.84997,2.25908,101.97631
14,1.035,0.915,1.95686,3.10789,6.94180,0.74090,2.08931,65.35205
14,1.035,0.91,1.81046,3.33166,8.01477,0.72836,2.12723,74.90384
14,1.035,0.905,1.78459,3.57963,8.01477,0.84964,2.53902,110.45033
14,1.04,0.99,2.36144,4.69601,6.79000,0.72169,1.20340,65.39346
14,1.04,0.985,2.53741,4.49336,7.08301,0.89915,1.33677,97.06651
14,1.04,0.98,2.54974,4.90300,7.07219,0.87950,1.33425,103.74948
14,1.04,0.975,2.20816,4.70585,6.79839,0.95104,1.47560,99.13863
14,1.04,0.97,2.10521,4.20860,6.70372,1.04358,1.86431,115.55662
14,1.04,0.965,2.25718,4.03603,5.94853,1.00836,1.77713,97.11039
14,1.04,0.96,2.27015,4.58594,6.10852,1.25461,1.54871,123.56546
14,1.04,0.955,2.85098,4.16589,5.94370,1.35222,1.69291,161.59916
14,1.04,0.95,2.47113,4.21843,5.61814,1.18819,1.54536,107.53607
14,1.04,0.945,2.65927,3.63133,5.36706,1.33120,1.40637,97.03032
14,1.04,0.94,2.86111,3.40323,5.42399,1.17644,1.50351,93.41549
14,1.04,0.9349999999999999,2.66546,3.45344,5.56063,0.97548,1.52892,76.33947
14,1.04,0.9299999999999999,2.75985,3.44291,6.27969,1.04910,1.51723,94.97683
14,1.04,0.925,2.61739,3.42426,6.69557,1.11259,1.87295,125.05031
14,1.04,0.9199999999999999,2.05033,3.24014,7.43856,0.87084,2.37577,102.23994
14,1.04,0.915,1.90290,3.04960,6.83179,0.75908,2.19724,66.12425
14,1.04,0.91,1.76054,3.26917,7.88349,0.74624,2.18264,73.90340
14,1.04,0.905,1.73339,3.51249,7.88349,0.86724,2.53902,105.69039
14,1.045,0.99,2.15396,4.06541,6.61700,0.69041,1.18094,47.24272
14,1.045,0.985,2.31447,3.95292,6.18057,0.87036,1.28192,63.08967
14,1.045,0.98,2.32571,4.17171,6.18544,0.85134,1.27416,65.09779
14,1.045,0.975,2.01415,4.26490,6.30247,0.91012,1.32354,65.21486
14,1.045,0.97,1.95914,3.84861,6.46154,0.99868,1.71567,83.47635
14,1.045,0.965,2.10056,3.69080,6.14541,0.96497,1.63544,75.18923
14,1.045,0.96,2.10352,4.22502,6.42254,1.23561,1.42523,100.51857
14,1.045,0.955,2.82077,3.83803,6.29932,1.33174,1.60180,145.47728
14,1.045,0.95,2.44494,3.93600,6.33025,1.17019,1.45587,103.78233
14,1.045,0.945,2.62127,3.40729,6.04734,1.20378,1.32492,86.14383
14,1.045,0.94,2.82022,3.19326,6.37552,1.06383,1.41644,86.51744
14,1.045,0.9349999999999999,2.62736,3.42304,6.07843,0.88211,1.44038,69.45795
14,1.045,0.9299999999999999,2.74157,3.41260,6.41273,0.94869,1.41856,80.74210
14,1.045,0.925,2.60006,3.41132,6.83687,1.00610,1.75115,106.83860
14,1.045,0.9199999999999999,2.03676,3.22934,7.99296,0.78749,2.22128,91.96149
14,1.045,0.915,1.89030,3.03943,7.35015,0.69814,2.04552,60.30695
14,1.045,0.91,1.74888,3.25827,8.69196,0.68633,2.05561,69.87828
14,1.045,0.905,1.72191,3.50077,8.69196,0.83314,2.53896,110.83220
14,1.05,0.99,2.06254,3.92157,5.27974,0.72196,1.12410,34.65715
14,1.05,0.985,2.23934,3.85529,4.93151,0.84980,1.21526,43.96887
14,1.05,0.98,2.25022,4.06780,5.22120,0.83821,1.22208,48.95588
14,1.05,0.975,1.94876,4.21630,5.42669,0.92514,1.28815,53.13695
14,1.05,0.97,1.91421,4.04621,5.85608,1.04464,1.66842,79.05286
14,1.05,0.965,2.05239,3.88030,5.63721,1.00939,1.59040,72.06953
14,1.05,0.96,1.98053,4.64531,6.07486,1.31293,1.38597,101.70199
14,1.05,0.955,2.71041,4.32176,6.11272,1.41508,1.56079,158.14481
14,1.05,0.95,2.34929,4.56492,6.14273,1.24342,1.43424,117.48200
14,1.05,0.945,2.51872,4.30915,5.91377,1.27912,1.30618,107.23765
14,1.05,0.94,2.79669,4.03847,6.25672,1.13041,1.41227,112.81297
14,1.05,0.9349999999999999,2.60544,4.36865,6.58943,0.98945,1.43614,106.57798
14,1.05,0.9299999999999999,2.71870,4.37678,6.59615,1.19105,1.41438,132.22209
14,1.05,0.925,2.57837,4.05974,6.51203,1.26313,1.77276,152.63614
14,1.05,0.9199999999999999,2.05473,3.50191,7.61220,1.15424,2.24868,142.16599
14,1.05,0.915,1.90698,3.10443,7.00001,1.01687,2.07076,87.26151
14,1.05,0.91,1.76432,3.34785,8.27791,0.99967,2.14117,104.65780
14,1.05,0.905,1.73710,3.59702,8.27791,1.07900,2.53896,141.69915
14,1.055,0.99,1.82704,3.81306,4.15054,0.71985,1.12965,23.51337
14,1.055,0.985,1.96410,3.70352,3.89034,0.84570,1.23473,29.54980
14,1.055,0.98,2.01146,3.91012,4.14624,0.83416,1.25859,34.23659
14,1.055,0.975,1.75442,3.68768,4.34327,0.93166,1.31000,34.29530
14,1.055,0.97,1.72773,3.68341,4.98519,1.11505,1.77588,62.82253
14,1.055,0.965,1.79180,3.66475,4.41390,1.07742,1.75980,54.95429
14,1.055,0.96,1.80747,4.06380,5.16462,1.43453,1.53360,83.45677
14,1.055,0.955,2.55093,4.05690,4.72513,1.61838,1.61407,127.73482
14,1.055,0.95,2.21106,4.85634,4.74833,1.42206,1.41262,102.42166
14,1.055,0.945,2.41596,4.61074,4.57135,1.46994,1.28648,96.29628
14,1.055,0.94,2.68260,4.32111,4.83644,1.29905,1.39097,101.30275
14,1.055,0.9349999999999999,2.49915,4.25783,5.90323,1.13706,1.42096,101.49282
14,1.055,0.9299999999999999,2.61379,4.26574,6.10930,1.26334,1.46606,126.16227
14,1.055,0.925,2.47887,3.95675,6.03139,1.33980,1.83752,145.64073
14,1.055,0.9199999999999999,1.97544,3.41307,7.24364,1.22430,2.33083,139.36921
14,1.055,0.915,1.83339,3.02567,6.86941,1.09472,2.18421,91.11578
14,1.055,0.91,1.69624,3.26292,8.27755,1.07620,2.25848,111.35332
14,1.055,0.905,1.67648,3.50577,8.27755,1.16160,2.52734,142.82483
14,1.06,0.99,1.74992,3.17390,4.57772,0.81356,1.09077,22.56238
14,1.06,0.985,1.89337,3.09400,4.42492,0.92059,1.16103,27.70582
14,1.06,0.98,1.93902,3.32932,4.53493,0.90803,1.20267,31.97092
14,1.06,0.975,1.72988,3.13992,4.42062,0.98921,1.24533,29.57954
14,1.06,0.97,1.87764,3.18143,5.13995,1.25482,1.72191,66.34140
14,1.06,0.965,1.95032,3.16531,4.64183,1.18466,1.59064,53.99769
14,1.06,0.96,1.97529,3.59689,5.29246,1.58405,1.41151,84.07558
14,1.06,0.955,2.72362,3.63554,4.42305,1.69178,1.47949,109.62065
14,1.06,0.95,2.45147,4.42219,4.61787,1.48655,1.29864,96.64369
14,1.06,0.945,2.69263,4.80248,4.44575,1.53661,1.21786,107.58388
14,1.06,0.94,2.84564,4.50081,4.42290,1.35796,1.31065,100.82098
14,1.06,0.9349999999999999,2.82805,4.44811,4.74503,1.19983,1.33890,95.88881
14,1.06,0.9299999999999999,2.93129,4.48983,4.99903,1.23620,1.27601,103.78107
14,1.06,0.925,2.79962,3.95675,4.93528,1.30701,1.59933,114.27883
14,1.06,0.9199999999999999,2.27134,3.41307,5.99341,1.19434,2.03229,112.77579
14,1.06,0.915,2.24011,3.02567,5.68377,1.08817,1.90445,79.83533
14,1.06,0.91,2.07252,3.26292,8.27755,1.06976,2.25848,135.24219
14,1.06,0.905,2.06388,3.50577,8.27755,1.16160,2.52734,175.82809
14,1.065,0.99,1.82822,2.63722,3.94964,0.68747,0.97735,12.79497
14,1.065,0.985,1.86473,2.60297,3.81781,0.80155,1.01720,15.10900
14,1.065,0.98,1.90414,2.73348,3.91272,0.73025,1.05368,15.67027
14,1.065,0.975,1.79085,2.66167,3.81410,0.78331,1.08779,15.49109
14,1.065,0.97,1.95781,2.73246,4.43473,1.05979,1.61209,40.53223
14,1.065,0.965,1.98201,2.85765,4.00496,1.01583,1.48919,34.31512
14,1.065,0.96,2.06406,3.47269,4.86872,1.43594,1.32953,66.62524
14,1.065,0.955,2.90333,3.55826,4.06893,1.51166,1.39356,88.55110
14,1.065,0.95,2.65616,4.09386,4.31494,1.34189,1.22321,77.01597
14,1.065,0.945,2.65377,4.83497,4.15411,1.38707,1.14712,84.80944
14,1.065,0.94,2.66730,4.59710,4.13276,1.22581,1.23452,76.68642
14,1.065,0.9349999999999999,2.65081,4.44811,4.43375,1.08307,1.26113,71.40726
14,1.065,0.9299999999999999,2.74759,4.48983,4.71333,1.00332,1.20190,70.11592
14,1.065,0.925,2.62416,3.95675,4.65323,1.28350,1.50644,93.41776
14,1.065,0.9199999999999999,2.12899,3.41307,5.78295,1.17286,1.95299,96.25250
14,1.065,0.915,2.09972,3.02567,5.48419,1.06859,1.83014,68.13830
14,1.065,0.91,1.94263,3.26292,8.22059,1.05052,2.17035,118.80477
14,1.065,0.905,1.97992,3.50577,8.22059,1.14070,2.42871,158.08148
14,1.07,0.99,1.77929,2.60951,3.60850,0.70009,0.97272,11.40961
14,1.07,0.985,1.81482,2.57562,3.58339,0.73824,0.99556,12.31046
14,1.07,0.98,1.86103,2.73004,3.67247,0.67296,0.96678,12.13941
14,1.07,0.975,1.73951,2.65832,3.74422,0.65019,0.97979,11.02980
14,1.07,0.97,1.91479,2.72938,4.38854,0.87093,1.67303,33.41905
14,1.07,0.965,1.93846,2.85444,3.98218,0.84708,1.61831,30.20531
14,1.07,0.96,2.01718,3.46878,3.81834,1.14804,1.44481,44.31639
14,1.07,0.955,2.90144,3.59966,3.24915,1.22693,1.50896,62.82610
14,1.07,0.95,2.65444,4.14149,3.32567,1.08913,1.40064,55.77167
14,1.07,0.945,2.65204,4.89122,3.20171,1.18598,1.18444,58.34007
14,1.07,0.94,2.66556,4.65058,3.08934,1.04809,1.27468,51.16382
14,1.07,0.9349999999999999,2.64909,4.49986,3.36319,0.93741,1.28110,48.14599
14,1.07,0.9299999999999999,2.74580,4.54207,3.61247,0.92967,1.28521,53.83058
14,1.07,0.925,2.62245,4.00278,3.57111,1.26481,1.65263,78.35617
14,1.07,0.9199999999999999,2.12899,3.45278,4.15946,1.15577,1.93946,68.53814
14,1.07,0.915,2.09972,3.06087,4.82879,1.05828,1.81112,59.48298
14,1.07,0.91,1.94263,3.30088,7.35429,1.04038,2.14780,105.37715
14,1.07,0.905,1.97992,3.54655,7.35429,1.14081,2.40348,141.59455
14,1.075,0.99,1.62607,2.57957,3.42847,0.70837,1.03645,10.55832
14,1.075,0.985,1.64663,2.54607,3.43218,0.74698,1.01451,10.90430
14,1.075,0.98,1.62772,2.48537,3.51951,0.68092,0.98517,9.55136
14,1.075,0.975,1.52014,2.42008,3.67494,0.65788,0.99844,8.88039
14,1.075,0.97,1.67863,2.48478,4.32052,0.88631,1.66450,26.58565
14,1.075,0.965,1.70374,2.61939,3.92046,0.83777,1.61005,23.59961
14,1.075,0.96,1.77712,3.18315,3.77683,1.14663,1.44039,35.28626
14,1.075,0.955,2.49040,3.30324,3.23709,1.22606,1.53894,50.24567
14,1.075,0.95,2.27838,3.80046,3.32193,1.08837,1.35752,42.49875
14,1.075,0.945,2.27633,4.48846,3.19812,1.18514,1.14798,44.45591
14,1.075,0.94,2.28793,4.26763,3.10237,1.04736,1.23544,39.19590
14,1.075,0.9349999999999999,2.27379,4.12932,3.37737,0.93675,1.24166,36.88398
14,1.075,0.9299999999999999,2.35486,4.16805,3.68708,0.92902,1.24564,41.87931
14,1.075,0.925,2.26485,3.67318,3.64487,1.25562,1.60176,60.98451
14,1.075,0.9199999999999999,1.86223,3.16846,4.35566,1.14738,1.87976,55.43009
14,1.075,0.915,1.83663,2.80883,5.19501,1.05060,1.75537,49.42391
14,1.075,0.91,1.74299,3.02907,7.35429,1.03283,2.08169,83.48113
14,1.075,0.905,1.77644,3.27204,7.35429,1.13253,2.40348,116.35867
14,1.08,0.99,1.61602,2.77809,2.89399,0.67958,1.00658,8.88748
14,1.08,0.985,1.63645,2.74201,2.89712,0.73102,1.00367,9.53797
14,1.08,0.98,1.61765,2.67084,2.97084,0.70714,1.00740,9.14360
14,1.08,0.975,1.53275,2.61347,3.10204,0.68450,1.03214,8.77913
14,1.08,0.97,1.69256,2.69434,3.67497,0.92218,1.62586,25.12732
14,1.08,0.965,1.71788,2.67526,3.33469,0.87360,1.58995,21.28676
14,1.08,0.96,1.80701,2.99636,3.21251,1.13725,1.30936,25.90092
14,1.08,0.955,2.42537,3.18831,2.75342,1.22834,1.40740,36.80853
14,1.08,0.95,2.21889,3.66823,2.85119,1.10888,1.28313,33.01975
14,1.08,0.945,2.21689,4.33228,2.74492,1.22782,1.08507,35.12236
14,1.08,0.94,2.22819,4.11914,2.66274,1.08508,1.10913,29.41251
14,1.08,0.9349999999999999,2.21442,4.21312,2.89877,0.97049,1.11472,29.25736
14,1.08,0.9299999999999999,2.29337,4.27403,3.16459,0.96247,1.11829,33.38688
14,1.08,0.925,2.20571,3.78716,3.12836,1.21471,1.45761,46.26939
14,1.08,0.9199999999999999,1.82269,3.33076,3.73843,1.02966,1.74638,40.81099
14,1.08,0.915,1.79763,2.95271,4.45884,0.95381,1.65130,37.27615
14,1.08,0.91,1.70599,3.00339,7.20510,0.93768,1.59425,55.18728
14,1.08,0.905,1.78292,3.27204,7.20510,1.02819,2.38145,102.92171
14,1.085,0.99,1.60820,1.54574,2.90487,0.72972,1.03317,5.44420
14,1.085,0.985,1.62853,1.52567,2.90801,0.76255,1.03019,5.67589
14,1.085,0.98,1.60983,1.48013,2.98201,0.73764,1.03402,5.41947
14,1.085,0.975,1.52534,1.46040,3.11370,0.71302,1.05942,5.23943
14,1.085,0.97,1.68437,1.51467,3.54868,0.98180,1.68558,14.98280
14,1.085,0.965,1.70957,1.48628,3.22009,0.93626,1.64835,12.62713
14,1.085,0.96,1.79827,2.04057,3.10212,1.27468,1.42710,20.70714
14,1.085,0.955,2.41364,2.18800,2.65880,1.37679,1.53395,29.65401
14,1.085,0.95,2.20816,2.51734,2.75321,1.26789,1.39851,27.13684
14,1.085,0.945,2.20617,2.97306,2.65059,1.41764,1.18264,29.14760
14,1.085,0.94,2.21742,2.89912,2.57124,1.25283,1.20887,25.03368
14,1.085,0.9349999999999999,2.20371,2.96526,2.83097,1.12053,1.21496,25.18468
14,1.085,0.9299999999999999,2.28228,3.00814,3.09058,1.11127,1.21885,28.73936
14,1.085,0.925,2.19504,2.66547,3.05519,1.30382,1.58868,37.02621
14,1.085,0.9199999999999999,1.81388,2.34424,3.68923,1.10674,1.68573,29.26721
14,1.085,0.915,1.78894,2.07816,4.40016,1.16426,1.59395,30.35774
14,1.085,0.91,1.69774,2.07816,7.06840,1.14457,1.53889,43.92580
14,1.085,0.905,1.78292,2.29223,7.06840,1.07407,2.29875,71.32364
14,1.09,0.99,1.57695,1.53292,2.75666,0.78786,1.00767,5.29041
14,1.09,0.985,1.59689,1.53723,2.74683,0.80756,1.00476,5.47116
14,1.09,0.98,1.57855,1.49188,2.70613,0.78613,1.00849,5.05251
14,1.09,0.975,1.49570,1.46964,2.86868,0.78007,1.01021,4.96917
14,1.09,0.97,1.65164,1.58724,2.94554,0.98119,1.46626,11.10931
14,1.09,0.965,1.67635,1.56016,2.68048,0.96245,1.43690,9.69512
14,1.09,0.96,1.76333,2.13428,2.60029,1.19029,1.31252,15.28848
14,1.09,0.955,2.36674,2.32361,2.36148,1.28376,1.41079,23.52041
14,1.09,0.95,2.16526,2.84712,2.44534,1.19823,1.26472,22.84490
14,1.09,0.945,2.16331,3.67995,2.42389,1.42306,1.06950,29.36822
14,1.09,0.94,2.17433,3.64592,2.34111,1.30090,1.05848,25.55526
14,1.09,0.9349999999999999,2.16090,3.62010,2.68009,1.22516,1.06381,27.32511
14,1.09,0.9299999999999999,2.24573,3.67244,2.92586,1.12746,1.06381,28.94224
14,1.09,0.925,2.15989,3.28528,2.89610,1.10813,1.26575,28.82421
14,1.09,0.9199999999999999,1.79966,2.94687,2.89610,0.93604,1.42332,20.46266
14,1.09,0.915,1.77492,2.61239,3.45419,1.22620,1.34583,26.43101
14,1.09,0.91,1.68444,2.61239,6.00770,1.20656,1.29934,41.44497
14,1.09,0.905,1.76275,2.58896,6.00770,1.21018,2.51234,83.35888
14,1.095,0.99,1.31809,1.50359,2.71051,0.85576,1.04698,4.81303
14,1.095,0.985,1.30779,1.50781,2.71052,0.88117,1.04396,4.91675
14,1.095,0.98,1.30096,1.46333,2.69782,0.85989,1.04784,4.62764
14,1.095,0.975,1.23268,1.44152,2.79442,0.89381,1.04962,4.65844
14,1.095,0.97,1.36723,1.55686,2.67000,1.07314,1.52346,9.29162
14,1.095,0.965,1.38607,1.53031,2.43759,1.05264,1.49296,8.12555
14,1.095,0.96,1.46138,2.09343,2.36467,1.30183,1.41254,13.30301
14,1.095,0.955,2.00576,2.29868,2.16945,1.44517,1.51831,21.94750
14,1.095,0.95,1.83501,2.81657,2.24648,1.40010,1.42119,23.10322
14,1.095,0.945,1.79510,3.64046,2.22678,1.53631,1.20182,26.86832
14,1.095,0.94,1.82586,3.60679,2.15073,1.37144,1.18943,23.10408
14,1.095,0.9349999999999999,1.81457,3.58125,2.71099,1.29159,1.19542,27.20094
14,1.095,0.9299999999999999,2.18717,3.63303,3.03706,1.32120,1.19542,38.11487
14,1.095,0.925,2.10356,3.25003,3.00616,1.29855,1.26575,33.78023
14,1.095,0.9199999999999999,1.75273,2.91524,3.00616,1.09689,1.42332,23.98100
14,1.095,0.915,1.72863,2.58435,3.58546,1.43691,1.34583,30.97553
14,1.095,0.91,1.64051,2.58435,6.07059,1.41390,1.29934,47.28254
14,1.095,0.905,1.74177,2.56118,6.07059,1.41814,2.51234,96.48469
14,1.1,0.99,1.33638,1.48104,2.45734,0.86823,1.07916,4.55700
14,1.1,0.985,1.33638,1.48520,2.45735,0.90702,1.08736,4.81028
14,1.1,0.98,1.32941,1.44138,2.42872,0.91433,1.10055,4.68302
14,1.1,0.975,1.27135,1.41990,2.51569,0.99636,1.10242,4.98819
14,1.1,0.97,1.41011,1.53351,2.46103,1.22904,1.60010,10.46573
14,1.1,0.965,1.42954,1.50736,2.24681,1.20556,1.60010,9.33928
14,1.1,0.96,1.51828,2.06204,2.22080,1.29633,1.51390,13.64495
14,1.1,0.955,2.08385,2.27775,2.02567,1.40974,1.51727,20.56565
14,1.1,0.95,1.90645,2.79093,1.91870,1.36577,1.47197,20.52372
14,1.1,0.945,1.87004,3.60732,1.90679,1.49864,1.27390,24.55683
14,1.1,0.94,1.87004,3.57396,1.84168,1.33781,1.26076,20.76074
14,1.1,0.9349999999999999,1.86452,3.54865,2.32186,1.25993,1.26712,24.52602
14,1.1,0.9299999999999999,2.30819,3.59995,2.37342,1.28881,1.26712,32.20681
14,1.1,0.925,2.21996,3.22044,2.34927,1.26671,1.34166,28.54406
14,1.1,0.9199999999999999,1.72758,2.88871,2.34927,1.06999,1.36007,17.06138
14,1.1,0.915,1.70382,2.56083,2.80199,1.40168,1.33710,22.91304
14,1.1,0.91,1.61696,2.56083,4.74408,1.37923,1.29091,34.97557
14,1.1,0.905,1.71677,2.53786,4.74408,1.38337,2.43973,69.76065
15,1.01,0.99,2.63621,5.47785,5.41707,1.62717,1.58597,201.87431
15,1.01,0.985,2.45814,5.26353,5.84048,1.77607,1.44495,193.92972
15,1.01,0.98,2.59188,4.90522,6.03478,2.19263,1.60360,269.77306
15,1.01,0.975,2.66678,5.02333,6.14085,2.01163,1.53153,253.44286
15,1.01,0.97,2.61014,4.87084,6.75936,1.79500,1.70469,262.95681
15,1.01,0.965,2.62507,3.85381,6.84815,1.73772,1.87316,225.50720
15,1.01,0.96,2.62272,4.06592,5.98660,1.74799,1.65942,185.17611
15,1.01,0.955,2.63337,4.44746,6.54674,1.57270,1.79245,216.14396
15,1.01,0.95,2.58626,4.29276,6.72430,1.44246,1.66972,179.80566
15,1.01,0.945,2.57519,4.13240,7.18751,1.56712,1.57868,189.22837
15,1.01,0.94,2.68787,4.19871,6.69522,1.63160,1.54316,190.24555
15,1.01,0.9349999999999999,2.77015,3.84479,6.29034,1.41997,1.82389,173.51082
15,1.01,0.9299999999999999,2.70302,3.80565,6.77393,1.49475,1.93714,201.76674
15,1.01,0.925,2.65217,3.57739,8.09199,1.31420,2.25109,227.13264
15,1.01,0.9199999999999999,2.00875,3.69285,7.93148,1.38748,2.45530,200.43469
15,1.01,0.915,2.09279,3.38288,7.64271,1.24483,2.42524,163.35260
15,1.01,0.91,1.85980,3.38288,7.80992,1.05239,2.33965,120.98404
15,1.01,0.905,1.76942,3.44111,7.82112,0.96013,2.33398,106.71469
15,1.015,0.99,2.59172,5.71356,5.80284,1.28570,1.55866,172.19750
15,1.015,0.985,2.63270,5.45592,6.35725,1.43551,1.37592,180.36036
15,1.015,0.98,2.80460,5.08452,6.46060,1.82716,1.59438,268.38781
15,1.015,0.975,2.72755,5.14322,6.66839,1.70029,1.57893,251.14018
15,1.015,0.97,2.67746,4.88160,7.37749,1.51986,1.79207,262.63473
15,1.015,0.965,2.67006,3.86232,7.14354,1.47136,1.82886,198.23687
15,1.015,0.96,2.69596,4.25594,6.02504,1.43898,1.62017,161.16967
15,1.015,0.955,2.79859,4.73710,6.58057,1.33258,1.75019,203.46707
15,1.015,0.95,2.74245,4.57905,6.74105,1.23060,1.64988,171.87495
15,1.015,0.945,2.73072,4.40800,7.20541,1.33696,1.55992,180.88205
15,1.015,0.94,2.85020,4.22291,6.63901,1.39196,1.52483,169.60491
15,1.015,0.9349999999999999,2.95220,3.86695,6.23753,1.21142,1.80960,156.09972
15,1.015,0.9299999999999999,2.91079,3.82758,6.78340,1.27522,1.92196,185.23002
15,1.015,0.925,2.85603,3.59801,8.10331,1.12119,2.23345,208.51694
15,1.015,0.9199999999999999,2.21365,3.70998,7.94258,1.18245,2.45530,189.37850
15,1.015,0.915,2.30627,3.39857,7.65340,1.06088,2.42524,154.34190
15,1.015,0.91,2.04951,3.39857,7.82084,0.89602,2.33965,114.20114
15,1.015,0.905,1.96359,3.45708,7.83206,0.82837,2.33398,102.79226
15,1.02,0.99,2.82873,5.86870,6.13264,1.23669,1.52096,191.49614
15,1.02,0.985,2.90960,5.67050,6.65499,1.50919,1.31984,218.71001
15,1.02,0.98,2.74461,5.32783,6.54511,2.09457,1.49457,299.61227
15,1.02,0.975,2.55950,5.41669,6.77235,1.94914,1.48088,271.01309
15,1.02,0.97,2.53986,5.31905,7.30766,1.71461,1.70495,288.60203
15,1.02,0.965,2.58531,4.20843,7.07593,1.56290,1.78368,214.61727
15,1.02,0.96,2.54778,4.42907,6.10373,1.57501,1.58015,171.41570
15,1.02,0.955,2.67598,4.86874,6.77015,1.45856,1.78775,230.00076
15,1.02,0.95,2.62230,4.45036,6.91162,1.34694,1.68529,183.09684
15,1.02,0.945,2.61973,4.28411,7.25749,1.46287,1.50125,178.88112
15,1.02,0.94,2.75325,4.23085,6.91240,1.52306,1.46748,179.96699
15,1.02,0.9349999999999999,2.85911,3.87422,6.49439,1.32174,1.74752,166.15805
15,1.02,0.9299999999999999,2.81900,3.83504,7.06274,1.39135,1.85603,197.17854
15,1.02,0.925,2.76597,3.62610,8.27517,1.23174,2.15684,220.49520
15,1.02,0.9199999999999999,2.14385,3.78343,8.11103,1.31001,2.37108,204.35093
15,1.02,0.915,2.23354,3.46586,7.69485,1.18115,2.34205,164.78016
15,1.02,0.91,1.98488,3.46586,7.85205,1.14283,2.25940,139.47736
15,1.02,0.905,1.90167,3.53002,7.86331,1.05655,2.28302,127.32667
15,1.025,0.99,2.75050,5.98417,6.30570,1.19526,1.50060,186.15471
15,1.025,0.985,2.82913,5.84572,7.00638,1.51694,1.34252,235.97853
15,1.025,0.98,2.70446,5.60312,6.86471,2.14728,1.47366,329.16947
15,1.025,0.975,2.52205,5.70522,6.68273,2.00745,1.45809,281.45530
15,1.025,0.97,2.50998,5.45197,6.73306,1.82534,1.72030,289.32217
15,1.025,0.965,2.56518,4.35190,6.48768,1.64518,1.79553,213.93973
15,1.025,0.96,2.52794,4.48260,5.59630,1.58069,1.50520,150.88226
15,1.025,0.955,2.67529,4.82583,6.35996,1.46382,1.71559,206.20391
15,1.025,0.95,2.63687,4.41795,6.52582,1.37954,1.62852,170.79342
15,1.025,0.945,2.63429,4.25483,6.87603,1.55651,1.45068,174.02265
15,1.025,0.94,2.76855,4.20194,6.55961,1.62055,1.41805,175.36076
15,1.025,0.9349999999999999,2.88394,3.85166,6.16293,1.43951,1.70900,168.41418
15,1.025,0.9299999999999999,2.85007,3.83162,6.72503,1.41281,1.86372,193.37242
15,1.025,0.925,2.79645,3.62287,7.91098,1.28942,2.13918,221.07041
15,1.025,0.9199999999999999,2.16748,3.81551,7.75407,1.39764,2.36679,212.12531
15,1.025,0.915,2.23986,3.50230,7.35620,1.26016,2.33782,170.00546
15,1.025,0.91,1.99050,3.50230,7.77172,1.17845,2.25531,143.99528
15,1.025,0.905,1.90329,3.55886,7.78286,1.08948,2.35133,135.04711
15,1.03,0.99,2.68992,5.31479,6.06701,1.26174,1.39233,152.37514
15,1.03,0.985,2.81601,5.28426,6.77758,1.53300,1.25180,193.53871
15,1.03,0.98,2.60522,5.06555,6.27886,2.14672,1.37993,245.46236
15,1.03,0.975,2.46197,5.38805,6.28898,1.97639,1.48427,244.72598
15,1.03,0.97,2.46591,5.14888,6.27071,1.79710,1.79300,256.54192
15,1.03,0.965,2.52280,4.17707,6.04217,1.61973,1.88806,194.71776
15,1.03,0.96,2.56324,4.51101,5.25377,1.57851,1.58277,151.77447
15,1.03,0.955,2.55239,4.85848,5.56099,1.46064,1.80833,182.14652
15,1.03,0.95,2.51574,4.62227,5.88120,1.40567,1.57894,151.78751
15,1.03,0.945,2.55255,4.47367,6.56007,1.59508,1.40651,168.06346
15,1.03,0.94,2.69969,4.07332,6.25819,1.51662,1.37487,143.49906
15,1.03,0.9349999999999999,2.84565,3.75254,5.87975,1.34718,1.67252,141.46972
15,1.03,0.9299999999999999,2.82106,3.46496,6.42722,1.32220,1.82284,151.41842
15,1.03,0.925,2.76799,3.27618,7.34749,1.23180,2.09227,171.72259
15,1.03,0.9199999999999999,2.14541,3.43526,7.20175,1.33519,2.31299,163.91734
15,1.03,0.915,2.21706,3.30871,6.83222,1.20385,2.33782,141.05250
15,1.03,0.91,1.97024,3.30871,7.41603,1.12579,2.25531,122.74726
15,1.03,0.905,1.90204,3.55402,7.42666,1.04944,2.35133,123.88036
15,1.035,0.99,2.67668,4.71285,6.42668,1.14494,1.38743,128.78430
15,1.035,0.985,2.84112,4.71693,7.13586,1.24502,1.25619,149.56449
15,1.035,0.98,2.69674,4.54761,6.73493,1.81647,1.34827,202.28377
15,1.035,0.975,2.45084,4.85514,6.88337,1.67235,1.41098,193.27039
15,1.035,0.97,2.38935,4.74379,6.71773,1.59746,1.71126,208.14842
15,1.035,0.965,2.49369,3.84844,6.28133,1.43979,1.81778,157.76863
15,1.035,0.96,2.53367,4.04577,5.61812,1.40316,1.52385,123.13736
15,1.035,0.955,2.54304,4.56836,5.87117,1.29838,1.75613,155.52365
15,1.035,0.95,2.57326,4.41787,6.16474,1.25312,1.53445,134.75904
15,1.035,0.945,2.61090,4.26656,6.89373,1.42197,1.36689,149.26099
15,1.035,0.94,2.76141,3.88473,6.57650,1.37731,1.33614,129.82869
15,1.035,0.9349999999999999,2.91071,3.57881,6.38197,1.17358,1.68501,131.46407
15,1.035,0.9299999999999999,2.88556,3.38001,6.75407,1.15181,1.83646,139.33987
15,1.035,0.925,2.83127,3.19586,7.29216,1.06315,2.10790,147.86660
15,1.035,0.9199999999999999,2.21960,3.37973,7.17250,1.15239,2.33027,144.48752
15,1.035,0.915,2.09312,3.25522,6.77104,1.03903,2.35528,112.90161
15,1.035,0.91,1.86009,3.25522,7.38868,0.97166,2.27216,98.77182
15,1.035,0.905,1.79571,3.49656,7.39927,0.90576,2.33815,98.38996
15,1.04,0.99,2.55493,4.40527,6.24585,1.05137,1.25759,92.94767
15,1.04,0.985,2.76962,4.40908,6.67486,1.14135,1.12080,104.26988
15,1.04,0.98,2.70890,4.14885,6.38924,1.70966,1.16019,142.43313
15,1.04,0.975,2.47184,4.47376,6.76084,1.50770,1.17941,132.94618
15,1.04,0.97,2.41254,4.37116,6.86227,1.49409,1.59861,172.84542
15,1.04,0.965,2.39331,3.54614,6.41648,1.34663,1.71677,125.89539
15,1.04,0.96,2.42245,3.72797,5.80401,1.32264,1.43917,99.77226
15,1.04,0.955,2.59478,4.34753,6.06544,1.24706,1.72941,147.56814
15,1.04,0.95,2.64110,4.31419,6.59062,1.20359,1.52303,137.65700
15,1.04,0.945,2.54683,4.19437,7.56203,1.36577,1.35671,149.68209
15,1.04,0.94,2.70530,3.81901,7.29582,1.30290,1.32619,130.24355
15,1.04,0.9349999999999999,2.79391,3.52292,7.08001,1.15873,1.68152,135.78021
15,1.04,0.9299999999999999,2.78810,3.34409,7.19125,1.13724,1.81989,138.76812
15,1.04,0.925,2.73565,3.16190,7.80824,1.08717,2.08888,153.38112
15,1.04,0.9199999999999999,2.14157,3.37442,7.72684,1.15118,2.33027,149.78991
15,1.04,0.915,2.01953,3.25011,7.48335,1.03794,2.35528,120.07741
15,1.04,0.91,1.79470,3.25011,7.93738,0.99918,2.27216,105.11173
15,1.04,0.905,1.77374,3.49107,7.94876,0.93142,2.33815,107.19281
15,1.045,0.99,2.26185,4.25573,5.00256,1.01232,1.28033,62.41199
15,1.045,0.985,2.43746,4.33783,5.89312,1.13746,1.14584,81.21120
15,1.045,0.98,2.27541,4.10585,5.60948,1.73115,1.17748,106.82576
15,1.045,0.975,2.15068,4.51652,6.13496,1.55377,1.15965,107.37565
15,1.045,0.97,2.09886,4.41294,6.79048,1.49494,1.63176,153.42294
15,1.045,0.965,2.08213,3.60777,6.15977,1.34739,1.75236,109.25185
15,1.045,0.96,2.10772,3.82993,5.63566,1.32339,1.46901,88.44243
15,1.045,0.955,2.41723,4.25109,5.88951,1.30007,1.70363,134.04146
15,1.045,0.95,2.47323,4.23878,6.50623,1.25475,1.51103,129.31983
15,1.045,0.945,2.38495,4.19441,7.46519,1.41695,1.34602,142.42865
15,1.045,0.94,2.57055,3.81904,6.81832,1.35172,1.31575,119.04649
15,1.045,0.9349999999999999,2.71283,3.73922,6.61664,1.31738,1.67259,147.89028
15,1.045,0.9299999999999999,2.73453,3.61716,6.76664,1.29294,1.81022,156.65079
15,1.045,0.925,2.68308,3.43011,7.47534,1.25174,2.10803,181.53641
15,1.045,0.9199999999999999,2.10041,3.67442,7.39742,1.32544,2.35781,178.41991
15,1.045,0.915,1.98073,3.33339,7.16431,1.19506,2.38312,134.71638
15,1.045,0.91,1.76021,3.33339,7.93738,1.25396,2.29901,134.26171
15,1.045,0.905,1.73966,3.58053,7.94876,1.17900,2.27125,132.58359
15,1.05,0.99,2.05040,4.21162,4.22288,1.10731,1.27578,51.51604
15,1.05,0.985,2.20959,4.37432,4.34143,1.23420,1.14177,59.13161
15,1.05,0.98,2.06270,4.27219,4.15730,1.82709,1.16786,78.17155
15,1.05,0.975,1.99608,4.68067,4.46091,1.64242,1.11394,76.25298
15,1.05,0.97,1.94799,4.69683,5.23075,1.58284,1.52394,115.44128
15,1.05,0.965,1.93595,4.02160,4.74490,1.42661,1.63486,86.16003
15,1.05,0.96,1.89544,4.22307,4.34118,1.46223,1.37051,69.63746
15,1.05,0.955,2.24566,4.70757,4.53672,1.48541,1.59046,113.30526
15,1.05,0.95,2.29768,4.87785,4.81889,1.46631,1.41502,112.06097
15,1.05,0.945,2.21566,4.82680,5.52915,1.65586,1.26050,123.42030
15,1.05,0.94,2.43388,4.43187,5.05004,1.57963,1.23214,106.02242
15,1.05,0.9349999999999999,2.60549,4.44108,4.98884,1.70040,1.59540,156.60211
15,1.05,0.9299999999999999,2.62633,3.91062,6.25625,1.66887,1.72668,185.15701
15,1.05,0.925,2.57692,3.77855,6.91150,1.55222,2.01074,210.04238
15,1.05,0.9199999999999999,2.01731,3.67747,6.83945,1.67531,2.24899,191.17189
15,1.05,0.915,1.90235,3.33616,6.84272,1.51971,2.27717,150.28727
15,1.05,0.91,1.69057,3.33616,7.66285,1.59460,2.19680,151.39532
15,1.05,0.905,1.67082,3.58350,7.67383,1.49929,2.17028,149.50305
15,1.055,0.99,1.86691,3.67416,4.28386,1.13995,1.22465,41.02170
15,1.055,0.985,2.00800,3.81610,4.49153,1.28322,1.13974,50.33642
15,1.055,0.98,1.89434,3.75212,4.15921,1.81496,1.14999,61.70277
15,1.055,0.975,1.95225,4.19187,4.50147,1.69717,1.12127,70.10288
15,1.055,0.97,1.93713,4.20635,5.51216,1.69801,1.50264,114.59895
15,1.055,0.965,1.84029,3.76343,5.00079,1.53042,1.61747,85.73442
15,1.055,0.96,1.80918,3.87743,4.35224,1.43939,1.43082,62.87863
15,1.055,0.955,2.15870,4.32854,4.39345,1.46221,1.67597,100.60388
15,1.055,0.95,2.25872,4.48511,4.66671,1.48905,1.41285,99.46092
15,1.055,0.945,2.17810,4.64078,5.39779,1.68154,1.26432,115.99709
15,1.055,0.94,2.28143,4.26107,4.94461,1.60413,1.23588,95.29565
15,1.055,0.9349999999999999,2.51336,4.26992,4.99065,1.59878,1.60024,137.02683
15,1.055,0.9299999999999999,2.54442,3.75990,6.52155,1.56913,1.69613,166.04847
15,1.055,0.925,2.49655,3.63293,6.81700,1.45945,1.95564,176.46972
15,1.055,0.9199999999999999,1.97550,3.54713,6.74594,1.60509,2.22187,168.58319
15,1.055,0.915,1.86293,3.27752,6.67704,1.45601,2.24971,133.54163
15,1.055,0.91,1.65553,3.27752,7.47731,1.47999,2.17031,130.31905
15,1.055,0.905,1.63619,3.56824,7.48803,1.39152,2.20615,134.20940
15,1.06,0.99,1.73276,3.21797,3.85295,1.00136,1.24800,26.84839
15,1.06,0.985,1.88669,3.44975,4.09190,1.10525,1.17573,34.60840
15,1.06,0.98,1.82807,3.38461,3.79897,1.67914,1.18630,46.82214
15,1.06,0.975,1.89888,3.48374,4.16623,1.59754,1.12557,49.55798
15,1.06,0.97,1.81140,3.53469,4.72810,1.61410,1.52781,74.65415
15,1.06,0.965,1.74956,3.18374,4.46629,1.45480,1.68140,60.85381
15,1.06,0.96,1.81484,3.50284,4.08677,1.47405,1.48737,56.95982
15,1.06,0.955,2.17752,3.93125,4.12547,1.49741,1.64065,86.76028
15,1.06,0.95,2.31160,4.56084,4.37675,1.52490,1.38307,97.31841
15,1.06,0.945,2.22909,5.47216,4.72219,1.73318,1.23767,123.56057
15,1.06,0.94,2.34813,5.02443,4.32573,1.65339,1.20983,102.08691
15,1.06,0.9349999999999999,2.59916,4.54416,4.36601,1.64788,1.56651,133.11658
15,1.06,0.9299999999999999,2.50016,4.03142,5.75320,1.61732,1.66039,155.71871
15,1.06,0.925,2.45313,3.93098,6.13010,1.55979,1.91443,176.51968
15,1.06,0.9199999999999999,1.95490,3.54713,6.33713,1.71544,2.17504,163.95972
15,1.06,0.915,1.84350,3.27752,6.45709,1.57151,2.20230,135.02622
15,1.06,0.91,1.63827,3.27752,7.23101,1.44349,2.12457,119.07352
15,1.06,0.905,1.62904,3.56824,7.24137,1.35721,2.19943,125.65088
15,1.065,0.99,1.68608,2.94279,3.80900,0.86555,1.23399,20.18588
15,1.065,0.985,1.85690,3.15475,3.93591,0.89293,1.15988,23.87976
15,1.065,0.98,1.82254,3.09518,3.66791,1.37669,1.13159,32.23336
15,1.065,0.975,1.93877,3.18914,4.02135,1.35013,1.10125,36.96857
15,1.065,0.97,1.92765,3.22904,4.52981,1.36413,1.38666,53.33428
15,1.065,0.965,1.87363,2.90843,4.26534,1.22949,1.52607,43.61099
15,1.065,0.96,1.95447,3.40769,3.52691,1.25924,1.37034,40.53414
15,1.065,0.955,2.30563,3.85214,3.62361,1.27920,1.55847,64.16113
15,1.065,0.95,2.48687,4.46907,3.93831,1.30269,1.35842,77.45560
15,1.065,0.945,2.42338,5.43110,4.24915,1.55844,1.18334,103.13652
15,1.065,0.94,2.57854,4.98673,3.89240,1.48670,1.15672,86.07160
15,1.065,0.9349999999999999,2.57107,4.51006,3.92865,1.48175,1.48209,100.04312
15,1.065,0.9299999999999999,2.47110,4.03142,4.48378,1.45426,1.44716,94.00529
15,1.065,0.925,2.42461,3.93098,4.77752,1.43052,1.66858,108.68865
15,1.065,0.9199999999999999,1.95449,3.54713,4.84495,1.58089,1.90174,100.98378
15,1.065,0.915,1.84311,3.27752,5.19763,1.44824,1.93529,88.00125
15,1.065,0.91,1.63792,3.27752,7.09381,1.32873,1.86699,94.47019
15,1.065,0.905,1.62870,3.56824,7.10398,1.29722,2.17658,116.56935
15,1.07,0.99,1.80232,2.59017,3.35897,0.73599,1.04481,12.05804
15,1.07,0.985,1.85007,2.79179,3.49425,0.73540,0.93259,12.37772
15,1.07,0.98,1.84301,2.75818,3.25633,1.05601,0.90682,15.85138
15,1.07,0.975,1.96054,2.84101,3.57011,1.03564,0.91766,18.89824
15,1.07,0.97,1.96148,2.95854,4.05390,1.04796,0.96921,23.89442
15,1.07,0.965,1.94166,2.77719,3.86044,0.95897,1.51453,30.23436
15,1.07,0.96,2.03954,3.33660,3.22368,0.97838,1.37297,29.46844
15,1.07,0.955,2.41192,3.57044,2.98841,0.99389,1.56468,40.02104
15,1.07,0.95,2.61897,4.10696,2.92237,1.01964,1.33118,42.66465
15,1.07,0.945,2.58049,5.42696,3.15302,1.21982,1.15961,62.45889
15,1.07,0.94,2.53839,5.06844,2.86202,1.16367,1.13352,48.56965
15,1.07,0.9349999999999999,2.66812,4.58396,2.95816,1.08558,1.48387,58.28098
15,1.07,0.9299999999999999,2.65255,3.98155,3.37616,1.06545,1.44890,55.04390
15,1.07,0.925,2.60264,3.88235,3.76396,0.98704,1.67058,62.71277
15,1.07,0.9199999999999999,2.17736,3.50325,4.25970,1.36326,1.90403,84.33983
15,1.07,0.915,2.17736,3.23698,4.64989,1.39014,1.93761,88.27496
15,1.07,0.91,1.93495,3.23698,6.34625,1.28861,1.86923,95.74375
15,1.07,0.905,1.97202,3.55313,6.35535,1.25805,2.17658,121.93638
15,1.075,0.99,1.63039,2.73094,2.96606,0.80106,0.95521,10.10518
15,1.075,0.985,1.62012,2.68835,3.08551,0.77584,0.89147,9.29479
15,1.075,0.98,1.61150,2.65599,2.98410,1.11458,0.87627,12.47448
15,1.075,0.975,1.71657,2.74609,3.30320,1.11670,0.87837,15.27314
15,1.075,0.97,1.72698,2.71815,3.75083,1.12937,0.90310,17.95814
15,1.075,0.965,1.70824,2.55154,3.57183,1.06306,1.45927,24.15106
15,1.075,0.96,1.77338,3.06549,2.98268,1.04393,1.31983,22.34080
15,1.075,0.955,2.12086,3.32223,2.76500,1.06818,1.53885,32.02423
15,1.075,0.95,2.21011,3.82145,2.70389,1.09067,1.32043,32.88798
15,1.075,0.945,2.17763,5.04969,2.91730,1.26758,1.15024,46.77308
15,1.075,0.94,2.14211,4.71609,2.67198,1.22870,1.12437,37.29166
15,1.075,0.9349999999999999,2.25158,4.26529,2.76175,1.15582,1.49630,45.87003
15,1.075,0.9299999999999999,2.26117,3.70476,3.19006,1.13438,1.46104,44.29082
15,1.075,0.925,2.21863,3.61246,3.25643,0.96251,1.59458,40.05716
15,1.075,0.9199999999999999,1.88055,3.25972,3.71921,1.46961,1.84127,61.69284
15,1.075,0.915,1.88055,3.01195,4.55491,1.49533,1.87374,72.28679
15,1.075,0.91,1.71424,3.01195,6.21663,1.25594,1.80761,72.87001
15,1.075,0.905,1.76275,3.30613,6.22554,1.23306,2.10483,94.16403
15,1.08,0.99,1.54010,2.75191,3.34447,0.84813,0.88452,10.63359
15,1.08,0.985,1.53040,2.70899,3.47916,0.80385,0.82396,9.55363
15,1.08,0.98,1.52226,2.67638,3.36481,1.15361,0.81017,12.81232
15,1.08,0.975,1.62641,2.76718,3.77698,1.16745,0.81210,16.11616
15,1.08,0.97,1.62536,2.73902,4.11408,1.23334,0.85147,19.23402
15,1.08,0.965,1.61797,2.57113,3.97883,1.17332,1.44264,28.01701
15,1.08,0.96,1.67967,3.08902,3.28363,1.26763,1.32598,28.63695
15,1.08,0.955,2.09562,3.34773,3.02645,1.32542,1.37868,38.79822
15,1.08,0.95,2.18381,3.85079,2.95813,1.35332,1.18299,39.82537
15,1.08,0.945,2.15172,5.08846,3.23024,1.61370,1.08469,61.90627
15,1.08,0.94,2.11662,4.75230,2.95860,1.57531,1.06029,49.70762
15,1.08,0.9349999999999999,2.22478,4.29804,3.13493,1.47659,1.40398,62.14480
15,1.08,0.9299999999999999,2.23426,3.73321,3.62112,1.45803,1.37089,60.37081
15,1.08,0.925,2.19223,3.64020,3.69645,1.24602,1.49619,54.99306
15,1.08,0.9199999999999999,1.85817,3.28474,3.92734,1.59846,1.74936,67.02953
15,1.08,0.915,1.85817,3.02536,4.94149,1.66034,1.78021,82.10901
15,1.08,0.91,1.69384,3.02536,6.74424,1.41367,1.71738,83.90678
15,1.08,0.905,1.74177,3.32085,6.75390,1.23306,1.62999,78.51683
15,1.085,0.99,1.56752,2.76288,2.99787,0.83142,1.01108,10.91430
15,1.085,0.985,1.55765,2.72724,2.98542,0.79162,0.98989,9.93798
15,1.085,0.98,1.54936,2.69441,2.88440,1.09165,0.97331,12.79399
15,1.085,0.975,1.67949,2.78581,3.23772,1.10757,0.94823,15.90942
15,1.085,0.97,1.67840,2.77138,3.52670,1.17355,0.92215,17.75270
15,1.085,0.965,1.67077,2.60151,3.41076,1.13027,1.36645,22.89663
15,1.085,0.96,1.74529,2.88068,2.83445,1.22112,1.31853,22.94462
15,1.085,0.955,2.07835,3.20116,2.65983,1.28981,1.31999,30.12847
15,1.085,0.95,2.16581,3.68219,2.59979,1.31696,1.14316,31.21363
15,1.085,0.945,2.13398,4.86567,2.86466,1.57035,1.06340,49.67049
15,1.085,0.94,2.09917,4.54423,2.62377,1.53299,1.03948,39.88290
15,1.085,0.9349999999999999,2.20645,4.13139,2.85643,1.48790,1.21961,47.25068
15,1.085,0.9299999999999999,2.21585,3.79248,3.33693,1.46920,1.20808,49.77205
15,1.085,0.925,2.17416,3.72925,3.09233,1.35641,1.20021,40.81755
15,1.085,0.9199999999999999,1.85817,3.21677,3.28548,1.74007,1.40330,47.95356
15,1.085,0.915,1.85817,2.96276,4.13389,1.84699,1.47424,61.96901
15,1.085,0.91,1.69384,2.96276,6.74424,1.57259,1.43414,76.33205
15,1.085,0.905,1.74177,3.29322,6.75390,1.37167,1.36116,72.33128
15,1.09,0.99,1.51822,1.82731,2.62325,0.94815,1.04442,7.20673
15,1.09,0.985,1.50866,1.82085,2.62325,0.89185,1.02521,6.58884
15,1.09,0.98,1.50063,1.79332,2.56054,1.20721,1.00804,8.38546
15,1.09,0.975,1.62667,1.85473,2.90658,1.12937,0.98207,9.72614
15,1.09,0.97,1.62562,1.85224,3.16600,0.99585,0.95505,9.06668
15,1.09,0.965,1.61823,1.78485,3.06191,0.95912,1.42568,12.09290
15,1.09,0.96,1.69039,1.99200,2.54455,1.03101,1.37569,12.15268
15,1.09,0.955,2.01298,2.23258,2.38780,1.11628,1.37720,16.49744
15,1.09,0.95,2.09769,2.65633,2.33389,1.27837,1.25390,20.84603
15,1.09,0.945,2.06686,3.55236,2.61067,1.53303,1.16641,34.27544
15,1.09,0.94,2.03315,3.31768,2.39114,1.49656,1.14017,27.52145
15,1.09,0.9349999999999999,2.13705,3.29041,2.60316,1.45254,1.18476,31.50126
15,1.09,0.9299999999999999,2.14615,2.92251,3.04107,1.43429,1.17356,32.10585
15,1.09,0.925,2.10578,2.87379,2.81815,1.32417,1.16592,26.32968
15,1.09,0.9199999999999999,1.79973,2.47880,3.03272,1.69871,1.36321,31.33028
15,1.09,0.915,1.79973,2.19745,3.81586,1.81066,1.43212,39.13247
15,1.09,0.91,1.64057,2.19745,6.22539,1.60131,1.39317,50.06772
15,1.09,0.905,1.74177,2.44255,6.23432,1.43195,1.32227,50.21961
15,1.095,0.99,1.51049,1.51408,2.63667,0.91970,1.04195,5.77855
15,1.095,0.985,1.50098,1.51294,2.63667,0.88180,1.02279,5.40020
15,1.095,0.98,1.49299,1.49007,2.57364,1.29961,1.00567,7.48303
15,1.095,0.975,1.61839,1.56549,2.93757,1.24724,0.97924,9.08987
15,1.095,0.97,1.61734,1.56846,2.92191,1.09808,0.95230,7.75078
15,1.095,0.965,1.60999,1.49857,2.86831,1.06814,1.42157,10.50804
15,1.095,0.96,1.68179,2.05497,2.38366,1.14624,1.42157,13.42348
15,1.095,0.955,2.00273,2.30315,2.29341,1.15208,1.48596,18.10988
15,1.095,0.95,2.08701,2.81186,2.25945,1.25057,1.35292,22.43388
15,1.095,0.945,2.05634,3.79617,2.52740,1.49970,1.25852,37.23753
15,1.095,0.94,2.02280,3.60218,2.35202,1.46402,1.23021,30.86639
15,1.095,0.9349999999999999,2.12617,3.57258,2.55876,1.42907,1.13758,31.59712
15,1.095,0.9299999999999999,2.14615,3.30571,3.06868,1.42907,1.12683,35.05823
15,1.095,0.925,2.10578,3.34464,2.84374,1.31936,1.11950,29.58262
15,1.095,0.9199999999999999,1.79973,2.88494,3.10085,1.32693,1.30892,27.96331
15,1.095,0.915,1.79973,2.55749,3.90158,1.73052,1.39513,43.35638
15,1.095,0.91,1.64057,2.55749,5.70821,1.53043,1.35718,49.74600
15,1.095,0.905,1.74177,2.84275,5.71639,1.36857,1.28812,49.89692
15,1.1,0.99,1.30138,1.49664,2.63524,0.87699,1.07337,4.83157
15,1.1,0.985,1.30138,1.49552,2.63524,0.84085,1.05363,4.54385
15,1.1,0.98,1.29445,1.47291,2.57225,1.23925,1.03599,6.29639
15,1.1,0.975,1.42248,1.54746,2.57430,1.18932,1.00417,6.76758
15,1.1,0.97,1.42156,1.55040,2.57232,1.04708,1.00417,5.96106
15,1.1,0.965,1.42715,1.48132,2.57756,1.01853,1.08569,6.02566
15,1.1,0.96,1.52445,2.03130,2.14204,1.09301,1.08569,7.87127
15,1.1,0.955,1.81959,2.27663,2.08872,1.09858,1.16226,11.04784
15,1.1,0.95,1.89616,2.77948,2.05780,1.19250,1.06910,13.82661
15,1.1,0.945,1.88067,3.75246,2.29155,1.43006,0.99450,22.99927
15,1.1,0.94,1.85995,3.56070,2.16820,1.39603,0.98855,19.81662
15,1.1,0.9349999999999999,1.87029,3.53144,2.35878,1.36271,0.91412,19.40674
15,1.1,0.9299999999999999,2.25936,3.26765,2.85929,1.36271,0.89796,25.83075
15,1.1,0.925,2.21686,3.30613,2.64970,1.25809,0.88953,21.73331
15,1.1,0.9199999999999999,1.76956,2.85172,3.14299,1.26531,1.41787,28.45438
15,1.1,0.915,1.76956,2.52804,3.95460,1.65015,1.36370,39.81031
15,1.1,0.91,1.61306,2.52804,5.66213,1.45936,1.32661,44.70125
15,1.1,0.905,1.71257,2.84275,5.67025,1.30501,1.25910,45.35914
16,1.01,0.99,2.75571,6.06963,7.80936,1.40990,1.62561,299.37708
16,1.01,0.985,2.74581,5.70633,7.27619,1.47036,1.66144,278.50993
16,1.01,0.98,2.90530,5.17852,7.09771,1.66488,1.78855,317.97903
16,1.01,0.975,2.82520,4.91246,7.22568,1.59309,1.70916,273.05379
16,1.01,0.97,2.91981,4.64650,7.03783,1.37634,1.75242,230.29363
16,1.01,0.965,2.83720,3.96341,6.63484,1.31046,1.79725,175.71932
16,1.01,0.96,2.75092,3.58758,7.60756,1.25212,1.81151,170.29830
16,1.01,0.955,2.70600,4.04920,7.90379,1.21227,1.75174,183.90876
16,1.01,0.95,2.83894,4.23150,7.71363,1.13531,1.68116,176.86069
16,1.01,0.945,2.92800,4.34376,6.89564,1.12833,1.76606,174.76474
16,1.01,0.94,3.26660,3.97924,6.99441,1.18749,1.73867,187.71211
16,1.01,0.9349999999999999,3.13180,4.08399,7.70743,1.17047,1.76446,203.59188
16,1.01,0.9299999999999999,3.14096,3.88940,8.78774,1.20851,1.93046,250.45682
16,1.01,0.925,2.91061,4.05902,8.30344,1.19738,2.22426,261.26367
16,1.01,0.9199999999999999,2.50585,3.57349,8.28368,1.23902,2.51702,231.33238
16,1.01,0.915,2.19106,3.60620,8.05355,1.17063,2.82293,210.28665
16,1.01,0.91,2.23065,3.61286,7.77751,1.24376,2.57783,200.96185
16,1.01,0.905,2.05787,3.84033,7.72416,1.14864,2.57783,180.74932
16,1.015,0.99,2.78169,6.47367,7.58220,1.28418,1.37900,241.79236
16,1.015,0.985,2.80029,5.94753,7.05275,1.35764,1.55381,247.78796
16,1.015,0.98,2.75668,5.45286,7.00356,1.60068,1.70828,287.86771
16,1.015,0.975,2.68009,5.31540,7.31406,1.48597,1.65751,256.63117
16,1.015,0.97,2.85493,5.12421,6.79639,1.28380,1.72942,220.74787
16,1.015,0.965,2.76716,4.20865,6.43745,1.22234,1.80403,165.32037
16,1.015,0.96,2.70185,3.95544,7.48657,1.21321,1.81834,176.50183
16,1.015,0.955,2.69768,4.44359,7.83400,1.22277,1.75834,201.91021
16,1.015,0.95,2.83021,4.62932,7.69617,1.15231,1.68750,196.07633
16,1.015,0.945,2.91900,4.52602,6.88003,1.14523,1.77272,184.53324
16,1.015,0.94,3.26660,4.30281,6.95998,1.20488,1.75058,206.33964
16,1.015,0.9349999999999999,3.13180,4.02756,7.66949,1.18761,1.77655,204.10602
16,1.015,0.9299999999999999,3.14096,3.83565,8.77284,1.22622,1.96711,254.93943
16,1.015,0.925,2.91061,4.00294,8.19263,1.21492,2.24876,260.78025
16,1.015,0.9199999999999999,2.50585,3.53122,8.09041,1.26645,2.49251,225.98350
16,1.015,0.915,2.19106,3.58622,8.05355,1.24187,2.79544,219.68723
16,1.015,0.91,2.23065,3.61286,7.77751,1.31944,2.55273,211.11496
16,1.015,0.905,2.05787,3.84033,7.72416,1.21854,2.55273,189.88124
16,1.02,0.99,2.56597,5.87561,7.50068,1.38830,1.33789,210.04459
16,1.02,0.985,2.56750,5.71503,6.99771,1.42608,1.44154,211.08387
16,1.02,0.98,2.60669,5.22961,6.90644,1.53708,1.59762,231.19656
16,1.02,0.975,2.47746,5.20438,6.84687,1.47838,1.55391,202.80597
16,1.02,0.97,2.65553,5.10107,6.40064,1.26006,1.62404,177.42904
16,1.02,0.965,2.63577,4.22684,5.69439,1.23474,1.69247,132.57703
16,1.02,0.96,2.49851,4.05890,6.66704,1.22552,1.70590,141.34915
16,1.02,0.955,2.49465,4.38621,7.15179,1.25286,1.67839,164.55398
16,1.02,0.95,2.65274,4.33775,7.10334,1.12694,1.61076,148.37233
16,1.02,0.945,2.74875,4.24095,6.35006,1.11903,1.69211,140.16728
16,1.02,0.94,3.08584,4.03181,6.57500,1.18869,1.67097,162.48231
16,1.02,0.9349999999999999,2.95851,3.89033,7.20545,1.17151,1.69576,164.75253
16,1.02,0.9299999999999999,2.98660,3.73357,8.25399,1.20959,1.87765,209.03549
16,1.02,0.925,2.76757,3.89640,7.71392,1.23073,2.14649,219.75013
16,1.02,0.9199999999999999,2.38270,3.43724,7.64720,1.28680,2.37916,191.74144
16,1.02,0.915,2.08338,3.49078,7.61236,1.27092,2.66287,187.36003
16,1.02,0.91,2.12170,3.56535,7.35143,1.35031,2.43167,182.59760
16,1.02,0.905,1.95736,3.88076,7.56029,1.24704,2.43167,174.14499
16,1.025,0.99,2.61404,5.83682,7.35882,1.34319,1.39575,210.49524
16,1.025,0.985,2.44578,5.68194,6.81243,1.42571,1.33508,180.19967
16,1.025,0.98,2.51343,5.25711,6.26876,1.57651,1.46892,191.81811
16,1.025,0.975,2.40837,5.13865,6.21468,1.53182,1.44249,169.94631
16,1.025,0.97,2.54636,5.03665,5.81446,1.30561,1.51345,147.35053
16,1.025,0.965,2.53952,4.17346,5.17289,1.29223,1.60298,113.56668
16,1.025,0.96,2.39814,4.04640,6.14298,1.30867,1.73310,135.19993
16,1.025,0.955,2.40536,4.26581,6.71607,1.25215,1.56041,134.64497
16,1.025,0.95,2.57249,4.23206,6.67057,1.12629,1.49754,122.48931
16,1.025,0.945,2.68626,4.12801,6.18050,1.15193,1.57317,124.19759
16,1.025,0.94,3.01657,3.93131,6.40168,1.22363,1.55352,144.31523
16,1.025,0.9349999999999999,2.88293,3.79335,7.01551,1.20595,1.57235,145.47817
16,1.025,0.9299999999999999,2.91030,3.65237,7.76564,1.24515,1.74101,178.94280
16,1.025,0.925,2.69686,3.81166,7.25753,1.26691,2.03791,192.61593
16,1.025,0.9199999999999999,2.32183,3.38224,7.19475,1.32863,2.25135,169.00468
16,1.025,0.915,2.03016,3.43492,7.16197,1.28428,2.58408,165.74611
16,1.025,0.91,2.05904,3.56535,6.91648,1.36450,2.43167,168.47352
16,1.025,0.905,1.89955,3.88076,7.56029,1.26015,2.43167,170.77888
16,1.03,0.99,2.74587,5.23658,6.94229,1.30122,1.39531,181.23906
16,1.03,0.985,2.58236,5.17049,6.54402,1.28645,1.33663,150.24376
16,1.03,0.98,2.64079,4.80866,6.36881,1.45108,1.48558,174.34197
16,1.03,0.975,2.46120,4.89026,6.31387,1.42567,1.47680,159.99787
16,1.03,0.97,2.60514,4.85476,5.43232,1.20775,1.58027,131.12732
16,1.03,0.965,2.67490,4.01826,4.83292,1.23111,1.68407,107.69848
16,1.03,0.96,2.60704,3.97573,5.70614,1.24677,1.81943,134.16170
16,1.03,0.955,2.45166,3.83440,6.55806,1.18716,1.69394,123.97616
16,1.03,0.95,2.64284,3.88845,6.63876,0.98115,1.49310,99.94395
16,1.03,0.945,2.75973,3.83068,6.21982,1.02558,1.56850,105.77301
16,1.03,0.94,3.15105,3.64815,6.44240,1.08942,1.54891,124.96778
16,1.03,0.9349999999999999,3.01145,3.56214,7.10903,1.07368,1.56769,128.36124
16,1.03,0.9299999999999999,3.11080,3.42975,7.46243,1.10858,1.73585,153.21283
16,1.03,0.925,2.88266,3.58403,7.00388,1.12795,2.06423,168.48169
16,1.03,0.9199999999999999,2.48179,3.18025,6.94330,1.18817,2.28043,148.48694
16,1.03,0.915,2.17002,3.24690,6.91166,1.18916,2.58408,149.64404
16,1.03,0.91,2.02005,3.36436,6.67475,1.26344,2.43167,139.36686
16,1.03,0.905,1.86359,3.68171,7.29606,1.16681,2.43167,142.03451
16,1.035,0.99,2.70284,5.00241,6.52184,1.29307,1.30913,149.27113
16,1.035,0.985,2.55546,4.94609,6.23232,1.18459,1.20412,112.36142
16,1.035,0.98,2.55063,4.73744,6.06545,1.33619,1.32444,129.70417
16,1.035,0.975,2.37717,4.86937,5.77804,1.30554,1.32600,115.78335
16,1.035,0.97,2.53659,4.83402,5.07179,1.14445,1.47919,105.27892
16,1.035,0.965,2.61058,4.00110,4.56971,1.16759,1.58797,88.49892
16,1.035,0.96,2.54436,3.97962,5.56373,1.18244,1.66701,111.04640
16,1.035,0.955,2.39297,3.93679,6.39439,1.12591,1.60138,108.61157
16,1.035,0.95,2.64008,4.05807,6.47308,0.93052,1.41152,91.08805
16,1.035,0.945,2.75684,4.06556,6.06458,0.99068,1.50975,101.66519
16,1.035,0.94,3.15554,3.89072,6.26064,1.05507,1.49635,121.34859
16,1.035,0.9349999999999999,3.03802,3.79900,6.87692,1.03982,1.51449,124.99131
16,1.035,0.9299999999999999,3.13825,3.39014,7.24072,1.08357,1.67694,139.97892
16,1.035,0.925,2.90810,3.56381,6.79579,1.09583,1.99418,153.91215
16,1.035,0.9199999999999999,2.50369,3.18025,6.73701,1.15434,2.20305,136.41592
16,1.035,0.915,2.18917,3.24690,6.74292,1.15529,2.56420,141.98440
16,1.035,0.91,2.03788,3.36436,6.51179,1.22746,2.41734,132.47248
16,1.035,0.905,1.88003,3.68171,7.11793,1.15594,2.41734,137.67100
16,1.04,0.99,2.65182,4.57427,5.63262,1.38537,1.10110,104.22361
16,1.04,0.985,2.52266,4.69651,5.54401,1.27583,1.03103,86.40139
16,1.04,0.98,2.53833,4.50156,5.40911,1.45289,1.10787,99.48454
16,1.04,0.975,2.38579,4.77793,5.15280,1.43532,1.04950,88.47999
16,1.04,0.97,2.46642,4.76418,4.75462,1.32757,1.17456,87.11679
16,1.04,0.965,2.46217,4.00588,4.36110,1.35441,1.45079,84.52101
16,1.04,0.96,2.42474,4.07272,5.51065,1.37530,1.52114,113.84581
16,1.04,0.955,2.34232,4.07937,6.47896,1.34311,1.46125,121.50100
16,1.04,0.95,2.60784,4.23677,6.65863,1.16338,1.29634,110.95277
16,1.04,0.945,2.60321,4.26959,6.46881,1.19819,1.38655,119.44940
16,1.04,0.94,2.98158,4.10538,6.67794,1.27871,1.37424,143.64120
16,1.04,0.9349999999999999,2.87054,3.67471,7.09457,1.28111,1.37972,132.27839
16,1.04,0.9299999999999999,2.93892,3.27922,7.55988,1.25011,1.55112,141.27644
16,1.04,0.925,2.72339,3.47980,6.98255,1.26426,1.84456,154.31429
16,1.04,0.9199999999999999,2.34467,3.17134,6.86466,1.33331,2.17267,147.86634
16,1.04,0.915,2.05012,3.23940,7.06700,1.33167,2.52885,158.05172
16,1.04,0.91,1.94135,3.36718,6.82477,1.44198,2.41734,155.50882
16,1.04,0.905,1.79098,3.66943,7.45793,1.19597,2.41734,141.69836
16,1.045,0.99,2.24571,4.82838,5.36886,1.34711,1.14960,90.15396
16,1.045,0.985,2.19997,4.99583,5.10228,1.27946,1.06801,76.62841
16,1.045,0.98,2.23405,4.93734,4.97812,1.47914,1.15426,93.74818
16,1.045,0.975,2.08995,5.05641,5.04819,1.50205,1.06618,85.43386
16,1.045,0.97,2.17981,5.06753,4.53077,1.40199,1.16425,81.69124
16,1.045,0.965,2.12912,4.26094,4.24838,1.38870,1.47869,79.14313
16,1.045,0.96,2.24822,4.08921,4.88686,1.42179,1.54889,98.93803
16,1.045,0.955,2.18291,4.16879,5.74556,1.39882,1.50846,110.32477
16,1.045,0.95,2.51994,4.43074,5.90489,1.17776,1.33821,103.91070
16,1.045,0.945,2.51548,4.46506,5.77754,1.21301,1.43134,112.66723
16,1.045,0.94,2.88260,4.29333,5.96432,1.29452,1.41864,135.55666
16,1.045,0.9349999999999999,2.80359,3.86115,6.33643,1.32784,1.42429,129.72359
16,1.045,0.9299999999999999,2.87355,3.48678,6.87829,1.29571,1.60123,142.98327
16,1.045,0.925,2.66280,3.74844,6.35301,1.31037,1.91439,159.07272
16,1.045,0.9199999999999999,2.29251,3.21765,6.24575,1.34716,2.25493,139.95373
16,1.045,0.915,2.00452,3.29743,6.42985,1.34550,2.52462,144.36563
16,1.045,0.91,1.94854,3.49748,6.20945,1.45696,2.41329,148.78945
16,1.045,0.905,1.79761,3.81142,6.97543,1.14463,2.41329,132.01590
16,1.05,0.99,2.07049,4.35365,4.29095,1.22652,1.09156,51.78495
16,1.05,0.985,1.92953,4.55874,4.08032,1.16492,1.01441,42.41335
16,1.05,0.98,1.98821,4.58799,4.00917,1.29111,1.10650,52.24634
16,1.05,0.975,1.92336,4.45841,4.19560,1.31112,1.02721,48.45452
16,1.05,0.97,1.99424,4.50171,4.05148,1.22377,1.12169,49.92773
16,1.05,0.965,1.94786,3.92938,3.79896,1.28316,1.43207,53.43104
16,1.05,0.96,1.96562,3.93628,4.40545,1.31374,1.50314,67.31070
16,1.05,0.955,1.91599,4.14673,5.19049,1.30401,1.45660,78.32995
16,1.05,0.95,2.24456,4.42838,4.97543,1.09793,1.29961,70.56587
16,1.05,0.945,2.24058,4.48016,4.64066,1.17619,1.39005,76.16244
16,1.05,0.94,2.64029,4.57287,4.79069,1.28368,1.37590,102.16030
16,1.05,0.9349999999999999,2.57617,4.13018,5.08957,1.36449,1.38552,102.37843
16,1.05,0.9299999999999999,2.70742,3.80028,6.69422,1.33148,1.56303,143.34152
16,1.05,0.925,2.50886,4.07746,6.18300,1.36713,1.91100,165.24774
16,1.05,0.9199999999999999,2.15997,3.50008,6.18867,1.40550,2.25093,148.01907
16,1.05,0.915,1.88863,3.58750,6.37109,1.42816,2.52462,155.64063
16,1.05,0.91,1.83589,3.45069,6.15271,1.54647,2.41329,145.46800
16,1.05,0.905,1.69369,3.76044,6.91168,1.21495,2.41329,129.06889
16,1.055,0.99,1.94801,4.06763,3.58533,1.09505,1.14289,35.55491
16,1.055,0.985,1.81539,4.28630,3.40620,1.04911,1.06976,29.74618
16,1.055,0.98,1.87059,4.52069,3.34681,1.10272,1.15892,36.16854
16,1.055,0.975,1.85559,4.39301,3.54270,1.11980,1.10451,35.71819
16,1.055,0.97,1.92397,4.51443,3.30364,1.06639,1.16426,35.62541
16,1.055,0.965,1.87192,3.94048,3.09773,1.11814,1.58000,40.36760
16,1.055,0.96,1.91255,3.99088,4.00303,1.14479,1.66956,58.39773
16,1.055,0.955,1.87840,4.25639,4.79963,1.13631,1.62813,70.99418
16,1.055,0.95,2.22364,4.69461,4.60076,0.95674,1.37836,63.33549
16,1.055,0.945,2.21970,4.74951,4.29121,1.02492,1.47428,68.35861
16,1.055,0.94,2.61567,4.84844,4.49273,1.11860,1.45782,92.91192
16,1.055,0.9349999999999999,2.55216,4.07799,4.79348,1.28443,1.48537,95.18103
16,1.055,0.9299999999999999,2.68218,3.75226,6.62626,1.25335,1.56227,130.57977
16,1.055,0.925,2.48547,4.02396,6.12023,1.28691,1.91662,150.97863
16,1.055,0.9199999999999999,2.13984,3.45415,6.14602,1.34420,2.27944,139.18996
16,1.055,0.915,1.87102,3.54538,6.32718,1.36587,2.56948,147.30112
16,1.055,0.91,1.81877,3.41019,6.11030,1.47902,2.45617,137.67356
16,1.055,0.905,1.67790,3.71630,6.86405,1.16196,2.45617,122.15315
16,1.06,0.99,1.75119,3.69117,3.49830,1.15382,1.15771,30.20576
16,1.06,0.985,1.62451,4.12211,3.20052,1.10897,1.08363,25.75519
16,1.06,0.98,1.68057,3.96262,3.12498,1.21255,1.10874,27.97775
16,1.06,0.975,1.71350,3.76948,3.38451,1.28287,1.03481,29.02059
16,1.06,0.97,1.78543,3.87367,2.96988,1.22168,1.09482,27.47289
16,1.06,0.965,1.69766,3.41394,2.74530,1.29403,1.46892,30.24412
16,1.06,0.96,1.73724,3.65800,3.42587,1.33318,1.55218,45.05107
16,1.06,0.955,1.75340,4.04270,3.86685,1.31387,1.51367,54.51203
16,1.06,0.95,2.10366,4.93370,3.49157,1.17482,1.28145,54.55600
16,1.06,0.945,2.10386,5.24057,3.25664,1.14406,1.37063,56.30335
16,1.06,0.94,2.40530,4.81335,3.98515,1.24862,1.35533,78.07909
16,1.06,0.9349999999999999,2.35313,4.04847,4.33075,1.32368,1.44097,78.69317
16,1.06,0.9299999999999999,2.55736,3.72510,6.70440,1.29165,1.51557,125.02813
16,1.06,0.925,2.36980,4.00537,5.87997,1.32623,1.85933,137.62803
16,1.06,0.9199999999999999,2.04025,3.43820,5.90475,1.41682,2.21520,130.00010
16,1.06,0.915,1.78395,3.52901,6.07880,1.43966,2.49707,137.57573
16,1.06,0.91,1.73413,3.39443,5.87044,1.55892,2.45617,132.31246
16,1.06,0.905,1.59981,3.69913,6.76830,1.21697,2.45617,119.72583
16,1.065,0.99,1.68121,3.38672,3.46120,0.99034,1.16142,22.66737
16,1.065,0.985,1.58092,3.81756,3.21884,0.97241,1.11688,21.09861
16,1.065,0.98,1.66617,3.66986,3.18290,1.11123,1.14276,24.71446
16,1.065,0.975,1.85950,3.49846,3.53919,1.17568,1.06657,28.87042
16,1.065,0.97,1.86851,3.60009,3.19505,1.11960,1.13749,27.37132
16,1.065,0.965,1.78422,3.30554,2.96154,1.19993,1.52509,31.96360
16,1.065,0.96,1.87308,3.37995,3.29997,1.23622,1.63098,42.12319
16,1.065,0.955,1.97692,3.74069,3.72474,1.37462,1.50134,56.84542
16,1.065,0.95,2.43295,4.56514,3.46656,1.25387,1.27101,61.36030
16,1.065,0.945,2.42806,5.53429,3.20389,1.22104,1.35946,71.46532
16,1.065,0.94,2.46376,5.08312,3.74918,1.34613,1.34428,84.96559
16,1.065,0.9349999999999999,2.28347,4.28812,4.11189,1.46013,1.42923,84.02336
16,1.065,0.9299999999999999,2.49460,3.97522,4.92259,1.43148,1.50322,105.04168
16,1.065,0.925,2.31164,4.34319,4.31726,1.53857,1.84418,122.98702
16,1.065,0.9199999999999999,1.99018,3.72818,4.52914,1.51111,2.21520,112.49013
16,1.065,0.915,1.74017,3.53156,4.66264,1.41761,2.49707,101.43223
16,1.065,0.91,1.73293,3.39688,4.50282,1.53504,2.45617,99.93664
16,1.065,0.905,1.59870,3.70180,6.32490,1.19834,2.45617,110.17203
16,1.07,0.99,1.73576,3.02319,3.29327,0.99518,0.96513,16.59857
16,1.07,0.985,1.63221,3.40778,3.10038,0.99420,0.89192,15.29204
16,1.07,0.98,1.60210,3.25180,3.06577,1.20293,0.90947,17.47350
16,1.07,0.975,1.79546,3.10459,3.42722,1.27270,0.86224,20.96411
16,1.07,0.97,1.82469,3.20344,3.09397,1.26501,0.83464,19.09491
16,1.07,0.965,1.81605,2.99339,2.80244,1.35577,1.37710,28.44327
16,1.07,0.96,1.80504,3.24656,3.17491,1.39678,1.47955,38.45033
16,1.07,0.955,1.94866,3.67825,3.61477,1.58730,1.42044,58.41692
16,1.07,0.95,2.41849,4.48893,3.42953,1.44787,1.20252,64.82545
16,1.07,0.945,2.41363,5.44191,3.16967,1.40996,1.28621,75.50113
16,1.07,0.94,2.44912,4.99827,3.27667,1.55441,1.22928,76.64394
16,1.07,0.9349999999999999,2.31592,4.21654,3.79730,1.76527,1.42421,93.22637
16,1.07,0.9299999999999999,2.36191,3.90886,4.75476,1.73062,1.52462,115.82596
16,1.07,0.925,2.18869,4.30012,4.17007,1.86425,1.83689,134.39884
16,1.07,0.9199999999999999,1.88432,3.69121,4.52318,1.72956,2.20644,120.05933
16,1.07,0.915,1.64761,3.49654,4.65651,1.63859,2.49707,109.76216
16,1.07,0.91,1.67350,3.35244,4.49690,1.53592,2.45617,95.17583
16,1.07,0.905,1.54387,3.65337,6.31223,1.19902,2.45617,104.85141
16,1.075,0.99,1.67961,2.67983,2.78393,0.79702,0.99321,9.91932
16,1.075,0.985,1.57941,3.04695,2.77483,0.81281,0.91287,9.90820
16,1.075,0.98,1.55027,2.92458,2.74385,0.96470,0.94260,11.31231
16,1.075,0.975,1.73738,2.81392,3.06735,0.95778,0.89900,12.91209
16,1.075,0.97,1.76567,2.77946,2.77865,0.89258,0.85046,10.35150
16,1.075,0.965,1.75730,2.66385,2.53983,0.95662,1.35332,15.39213
16,1.075,0.96,1.74665,2.89978,2.87739,1.00031,1.42208,20.73154
16,1.075,0.955,1.89571,3.14418,2.95589,1.08665,1.41108,27.01529
16,1.075,0.95,2.36615,3.81328,2.80442,1.00277,1.19387,30.29309
16,1.075,0.945,2.36140,5.03018,2.61535,1.06533,1.31769,43.60956
16,1.075,0.94,2.39612,4.62010,2.70363,1.15865,1.25534,43.53330
16,1.075,0.9349999999999999,2.26580,3.89752,3.13322,1.24320,1.22938,42.28908
16,1.075,0.9299999999999999,2.31080,3.61312,3.55658,1.21881,1.32803,48.06391
16,1.075,0.925,2.14133,3.97478,3.11924,1.20019,1.60003,50.98268
16,1.075,0.9199999999999999,1.84355,3.41194,3.87623,1.54041,1.92193,72.18385
16,1.075,0.915,1.61196,3.23199,4.24015,1.45939,2.21864,71.52577
16,1.075,0.91,1.66024,3.09880,4.09481,1.36795,2.44896,70.57491
16,1.075,0.905,1.53165,3.42009,5.74782,1.06790,2.44896,78.74251
16,1.08,0.99,1.55845,2.57861,2.91894,0.95919,0.94895,10.67701
16,1.08,0.985,1.48095,2.95931,2.91777,0.97820,0.87219,10.90976
16,1.08,0.98,1.45968,2.84971,2.88519,1.16747,0.90059,12.61847
16,1.08,0.975,1.63709,2.77808,3.22820,1.14082,0.85893,14.38647
16,1.08,0.97,1.58064,2.74406,2.98650,1.07862,0.81256,11.35301
16,1.08,0.965,1.55911,2.60044,2.72981,1.14190,1.29301,16.34116
16,1.08,0.96,1.43691,2.94404,2.92463,1.19405,1.35871,20.07217
16,1.08,0.955,1.60041,3.18913,3.00442,1.31563,1.34820,27.19885
16,1.08,0.95,2.00492,3.89353,2.85046,1.21407,1.14067,30.81467
16,1.08,0.945,2.00089,5.13603,2.65828,1.31800,1.25897,45.32973
16,1.08,0.94,2.03031,4.78587,2.74802,1.44362,1.19940,46.23385
16,1.08,0.9349999999999999,1.91989,4.20607,3.18466,1.54450,1.17459,46.65380
16,1.08,0.9299999999999999,1.98111,3.89915,3.61497,1.52508,1.26884,54.03640
16,1.08,0.925,1.83582,4.13955,3.17044,1.53524,1.52873,56.54727
16,1.08,0.9199999999999999,1.58053,3.53108,3.93986,2.00150,1.89937,83.59015
16,1.08,0.915,1.40019,3.34485,4.24015,1.69526,2.19259,73.81375
16,1.08,0.91,1.44213,3.23193,4.09481,1.58904,2.42020,73.39841
16,1.08,0.905,1.36470,3.17199,5.74782,1.24049,2.42020,74.69932
16,1.085,0.99,1.55392,1.97948,2.75413,0.84804,0.84653,6.08164
16,1.085,0.985,1.49334,2.09562,2.77666,0.86484,0.80471,6.04740
16,1.085,0.98,1.48163,2.01392,2.77389,1.03218,0.84417,7.21205
16,1.085,0.975,1.68113,1.96243,3.21445,1.00862,0.79444,8.49749
16,1.085,0.97,1.61465,1.92737,2.97378,0.95363,0.78270,6.90757
16,1.085,0.965,1.60508,1.84055,2.73096,1.00957,1.24549,10.14467
16,1.085,0.96,1.50597,2.00451,2.92586,1.10692,1.32513,12.95541
16,1.085,0.955,1.64192,2.18777,3.02744,1.21962,1.40004,18.56909
16,1.085,0.95,2.10893,2.67099,2.87977,1.12547,1.18453,21.62588
16,1.085,0.945,2.10166,3.52336,2.74416,1.22182,1.30738,32.45931
16,1.085,0.94,2.12105,3.30035,2.83680,1.33827,1.25986,33.48156
16,1.085,0.9349999999999999,2.02308,2.90051,3.34786,1.43179,1.23380,34.70395
16,1.085,0.9299999999999999,2.22678,2.85727,3.80023,1.41379,1.33281,45.56060
16,1.085,0.925,2.09125,2.80571,3.33292,1.42321,1.56012,43.42104
16,1.085,0.9199999999999999,1.85922,2.44017,4.25517,1.85544,1.90490,68.23171
16,1.085,0.915,1.66298,2.31147,4.57948,1.57154,2.19048,60.59805
16,1.085,0.91,1.82731,2.23344,4.42251,1.47308,2.41788,64.28552
16,1.085,0.905,1.72919,2.21929,6.28063,1.14996,2.41788,67.01617
16,1.09,0.99,1.53162,1.96932,2.37336,0.95352,0.92554,6.31766
16,1.09,0.985,1.47191,2.08486,2.39038,0.97953,0.91150,6.54937
16,1.09,0.98,1.46036,2.00358,2.38799,1.07467,0.96648,7.25719
16,1.09,0.975,1.65700,1.95236,2.76726,1.06315,0.91231,8.68299
16,1.09,0.97,1.59148,1.91747,2.56007,1.00518,0.91231,7.16424
16,1.09,0.965,1.58204,1.83110,2.36743,1.09171,1.29976,9.73151
16,1.09,0.96,1.48435,1.99422,2.39400,1.19698,1.29299,10.96771
16,1.09,0.955,1.61835,2.17654,2.44191,1.23593,1.28076,13.61532
16,1.09,0.95,2.07867,2.65728,2.32280,1.14052,1.15855,16.95325
16,1.09,0.945,2.07150,3.50528,2.21342,1.23816,1.30661,26.00118
16,1.09,0.94,2.09061,3.28341,2.32887,1.36391,1.27624,27.82647
16,1.09,0.9349999999999999,1.99405,2.88563,2.58974,1.49527,1.24983,27.84874
16,1.09,0.9299999999999999,2.19482,2.84261,2.97308,1.47648,1.20688,33.05329
16,1.09,0.925,2.06124,2.79131,2.60749,1.48632,1.34263,29.93812
16,1.09,0.9199999999999999,1.83254,2.42764,3.32901,1.85362,1.49398,41.01272
16,1.09,0.915,1.63911,2.29961,3.64653,1.71598,1.71796,40.51984
16,1.09,0.91,1.80108,2.22197,3.52154,1.60846,2.63633,59.76075
16,1.09,0.905,1.70438,2.20791,5.79373,1.25565,2.63633,72.17268
16,1.095,0.99,1.53190,1.72901,2.38936,0.95333,1.01833,6.14384
16,1.095,0.985,1.47218,1.85831,2.37781,0.97344,1.00525,6.36561
16,1.095,0.98,1.46063,1.77486,2.37543,1.06799,1.02256,6.72519
16,1.095,0.975,1.65730,1.73858,2.75271,1.05654,0.96525,8.08878
16,1.095,0.97,1.59177,1.71948,2.57378,1.00382,0.96525,6.82568
16,1.095,0.965,1.58233,1.67805,2.38012,1.15391,1.36990,9.98993
16,1.095,0.96,1.48462,2.10965,2.37027,1.28044,1.37680,13.08741
16,1.095,0.955,1.61865,2.37859,2.47041,1.32211,1.38680,17.43903
16,1.095,0.95,2.07905,2.90397,2.36963,1.22428,1.25448,21.97246
16,1.095,0.945,2.07188,3.83068,2.30063,1.37344,1.41479,35.48050
16,1.095,0.94,2.09099,3.68960,2.49287,1.51292,1.38191,40.20923
16,1.095,0.9349999999999999,1.99441,3.50647,2.40790,1.66811,1.35332,38.01453
16,1.095,0.9299999999999999,2.19522,3.45420,2.76485,1.66811,1.30681,45.70185
16,1.095,0.925,2.06162,3.41808,2.52235,1.68339,1.45727,43.60351
16,1.095,0.9199999999999999,1.83287,3.01345,3.22031,1.64590,1.62155,47.47127
16,1.095,0.915,1.63941,2.85452,3.76708,1.52368,1.67696,45.04472
16,1.095,0.91,1.80108,2.63425,3.63795,1.42822,2.57341,63.43834
16,1.095,0.905,1.70438,2.61757,5.36743,1.23606,2.57341,76.16924
16,1.1,0.99,1.48632,1.56922,2.36437,0.96016,1.06248,5.62572
16,1.1,0.985,1.42837,1.68658,2.35293,0.98042,1.04884,5.82880
16,1.1,0.98,1.41717,1.63091,2.35058,1.10182,1.06690,6.38651
16,1.1,0.975,1.60799,1.59758,2.72391,1.09001,1.00710,7.68144
16,1.1,0.97,1.54441,1.59177,2.54686,1.03562,1.00710,6.53016
16,1.1,0.965,1.53525,1.56197,2.35522,1.07470,1.42930,8.67547
16,1.1,0.96,1.44045,2.09645,2.34547,1.19254,1.43649,12.13366
16,1.1,0.955,1.57049,2.36371,2.44456,1.23135,1.44693,16.16816
16,1.1,0.95,2.01719,2.88580,2.34484,1.16926,1.37602,21.96143
16,1.1,0.945,2.01023,3.80671,2.27656,1.22002,1.34284,28.54074
16,1.1,0.94,2.02877,3.66651,2.46679,1.36695,1.31162,32.89894
16,1.1,0.9349999999999999,1.93507,3.48453,2.38271,1.51300,1.28449,31.22368
16,1.1,0.9299999999999999,2.13978,3.43259,2.76485,1.51300,1.24035,38.11046
16,1.1,0.925,2.00955,3.39670,2.52235,1.52686,1.38316,36.36067
16,1.1,0.9199999999999999,1.78658,2.99460,3.22031,1.49286,1.53908,39.58597
16,1.1,0.915,1.59801,2.83666,3.76708,1.38201,1.59167,37.56249
16,1.1,0.91,1.80108,2.61777,3.63795,1.29542,2.45036,54.44553
16,1.1,0.905,1.70438,2.60120,5.36743,1.12113,2.45036,65.37173
17,1.01,0.99,2.49225,5.60090,6.79288,1.63750,1.59815,248.14212
17,1.01,0.985,2.68899,5.06605,7.36905,1.66206,1.76559,294.58314
17,1.01,0.98,2.79822,5.29133,7.64226,1.37217,1.83489,284.89511
17,1.01,0.975,2.56161,4.99230,7.64247,1.42791,1.61276,225.07033
17,1.01,0.97,2.73826,4.41995,6.68290,1.50905,1.64460,200.73310
17,1.01,0.965,2.80900,3.61525,5.81503,1.25232,1.91040,141.28012
17,1.01,0.96,2.68291,3.39808,6.38681,1.13541,1.59369,105.36136
17,1.01,0.955,2.65302,3.55086,6.95280,0.98614,1.60853,103.89633
17,1.01,0.95,2.72265,3.98334,6.30756,1.09833,1.67593,125.91800
17,1.01,0.945,2.99137,3.90177,5.83881,1.10251,1.56242,117.39170
17,1.01,0.94,2.92906,3.73548,5.74237,1.09261,1.55922,107.03832
17,1.01,0.9349999999999999,3.00157,3.94446,5.86331,1.19343,1.65364,136.99873
17,1.01,0.9299999999999999,2.88049,3.83577,7.40668,1.15541,1.55083,146.63692
17,1.01,0.925,2.96651,4.16699,7.08390,1.10052,1.69527,163.37204
17,1.01,0.9199999999999999,2.81797,3.59295,7.32675,1.04938,2.18772,170.30367
17,1.01,0.915,2.13592,3.82812,7.39315,0.98870,2.68647,160.56377
17,1.01,0.91,2.24593,3.82812,7.22959,1.04826,2.68647,175.04469
17,1.01,0.905,2.07332,3.73382,7.24779,0.98926,2.50112,138.82583
17,1.015,0.99,3.00395,5.64649,6.54493,1.55029,1.65221,284.34967
17,1.015,0.985,3.00279,4.99512,7.09186,1.54104,1.85543,304.15160
17,1.015,0.98,2.95127,5.10776,7.47597,1.32462,1.92446,287.27942
17,1.015,0.975,2.61579,4.75129,7.05056,1.33732,1.70491,199.78983
17,1.015,0.97,2.68964,4.26084,6.12331,1.41331,1.75041,173.60082
17,1.015,0.965,2.76733,3.54833,5.47601,1.20273,2.01893,130.56826
17,1.015,0.96,2.66447,3.38844,6.05769,1.09045,1.68561,100.52590
17,1.015,0.955,2.64445,3.56809,6.59451,0.94709,1.58389,93.34015
17,1.015,0.95,2.72455,3.93288,5.95409,1.07046,1.65284,112.88178
17,1.015,0.945,2.99347,4.02240,5.55809,1.02830,1.54089,106.04174
17,1.015,0.94,2.93111,3.89785,5.46627,1.04217,1.55388,101.13581
17,1.015,0.9349999999999999,3.02840,3.74021,5.58141,1.16825,1.66784,123.18058
17,1.015,0.9299999999999999,2.89703,3.71252,6.99319,1.13103,1.56415,133.06059
17,1.015,0.925,2.98354,4.03309,6.68843,1.07730,1.68507,146.09917
17,1.015,0.9199999999999999,2.83415,3.50498,7.00138,1.08321,2.21910,167.17890
17,1.015,0.915,2.14818,3.77589,7.22688,1.04134,2.68647,163.98970
17,1.015,0.91,2.24593,3.77589,7.06700,1.13133,2.68647,182.14708
17,1.015,0.905,2.07332,3.73382,7.08478,1.06765,2.50112,146.45698
17,1.02,0.99,2.76967,5.19673,7.17807,1.52912,1.51456,239.27415
17,1.02,0.985,2.79760,4.87379,7.57511,1.56351,1.74704,282.12673
17,1.02,0.98,2.75232,5.19546,7.65969,1.36439,1.85304,276.92290
17,1.02,0.975,2.42641,4.92124,7.30897,1.47951,1.60945,207.82165
17,1.02,0.97,2.59513,4.60519,6.27028,1.53263,1.64388,188.79952
17,1.02,0.965,2.59313,3.91761,5.60744,1.30876,1.90642,142.13076
17,1.02,0.96,2.52656,3.83137,6.25184,1.20059,1.59167,115.64883
17,1.02,0.955,2.53019,3.84556,6.97319,1.00254,1.49563,101.73478
17,1.02,0.95,2.60682,4.04796,6.32370,1.14582,1.57380,120.33340
17,1.02,0.945,2.87505,3.88720,5.95079,1.11315,1.46721,108.61822
17,1.02,0.94,2.84003,3.76684,5.83594,1.12817,1.47958,104.21311
17,1.02,0.9349999999999999,2.93431,3.61996,6.00784,1.28170,1.58809,129.89381
17,1.02,0.9299999999999999,2.83341,3.63605,7.52748,1.17795,1.48936,136.05480
17,1.02,0.925,2.91803,3.97808,6.62800,1.12199,1.67131,144.27467
17,1.02,0.9199999999999999,2.77191,3.45717,6.93813,1.13156,2.20525,165.91208
17,1.02,0.915,2.10101,3.74412,7.22688,1.08782,2.68298,165.92177
17,1.02,0.91,2.19662,3.74412,7.06700,1.10300,2.68298,172.00190
17,1.02,0.905,2.02779,3.70241,7.08478,1.04092,2.49787,138.29966
17,1.025,0.99,2.80000,4.80027,6.54371,1.60431,1.50950,212.99588
17,1.025,0.985,2.95550,4.54795,6.94058,1.65789,1.68757,261.01233
17,1.025,0.98,2.87887,4.81176,6.79494,1.44676,1.74563,237.71675
17,1.025,0.975,2.57189,4.45261,6.48382,1.43057,1.51616,161.04744
17,1.025,0.97,2.81765,4.19009,5.37255,1.49657,1.55464,147.57602
17,1.025,0.965,2.86824,3.61238,4.83249,1.30685,1.80916,118.38133
17,1.025,0.96,2.79461,3.61571,5.45721,1.19396,1.51048,99.44610
17,1.025,0.955,2.63510,3.66623,6.08687,0.99525,1.42604,83.45892
17,1.025,0.95,2.72237,3.87911,5.81124,1.13748,1.52122,106.18988
17,1.025,0.945,3.03887,3.75292,5.46855,1.04388,1.41819,92.32835
17,1.025,0.94,3.00186,3.64720,5.36300,1.08111,1.43014,90.78324
17,1.025,0.9349999999999999,3.13702,3.53011,5.50990,1.21913,1.53502,114.18694
17,1.025,0.9299999999999999,3.02916,3.54580,6.91208,1.12044,1.43959,119.74998
17,1.025,0.925,3.12942,3.87934,6.07365,1.05000,1.61250,124.84184
17,1.025,0.9199999999999999,2.99520,3.37136,6.44550,1.07303,2.14134,149.55003
17,1.025,0.915,2.27025,3.73879,6.83086,1.04103,2.61491,157.83431
17,1.025,0.91,2.14972,3.73879,6.67974,1.06318,2.61491,149.25664
17,1.025,0.905,1.98450,3.69714,6.69655,1.00333,2.43450,120.01113
17,1.03,0.99,2.76517,4.79765,6.10698,1.53207,1.31412,163.11374
17,1.03,0.985,2.94793,4.72956,6.74178,1.58323,1.48094,220.39071
17,1.03,0.98,2.73825,5.14447,6.60032,1.32832,1.53189,189.19329
17,1.03,0.975,2.44626,4.81959,6.29810,1.34550,1.35934,135.81069
17,1.03,0.97,2.70187,4.51371,5.27769,1.44592,1.40418,130.67958
17,1.03,0.965,2.79874,3.95300,4.65093,1.28358,1.62095,107.05836
17,1.03,0.96,2.75690,4.13800,5.30563,1.17270,1.35333,96.05901
17,1.03,0.955,2.62358,3.77586,5.97425,0.97752,1.29080,74.67565
17,1.03,0.95,2.71047,3.72515,5.72221,1.12222,1.41392,91.67628
17,1.03,0.945,2.91155,3.69489,5.43390,1.02987,1.31816,79.35775
17,1.03,0.94,2.87609,3.60661,5.35007,1.06247,1.32927,78.37716
17,1.03,0.9349999999999999,3.01303,3.25115,5.48928,1.18812,1.44862,92.54878
17,1.03,0.9299999999999999,2.90943,3.26560,6.88621,1.09194,1.35856,97.05763
17,1.03,0.925,3.00572,3.60655,6.05091,1.02329,1.52373,102.27465
17,1.03,0.9199999999999999,2.87681,3.13429,6.42637,1.04390,2.07506,125.51860
17,1.03,0.915,2.18052,3.47588,6.81059,1.01277,2.61491,136.70286
17,1.03,0.91,2.08628,3.47588,6.65991,1.01119,2.61491,127.70101
17,1.03,0.905,1.92593,3.49105,6.67667,0.95427,2.43450,104.28881
17,1.035,0.99,2.64361,4.41608,5.30772,1.58868,1.34546,132.44980
17,1.035,0.985,2.87834,4.36919,5.78108,1.67779,1.47913,180.42465
17,1.035,0.98,2.67361,4.75888,5.69600,1.37245,1.50818,150.01113
17,1.035,0.975,2.38851,4.45835,5.49388,1.38167,1.33831,108.17814
17,1.035,0.97,2.63809,4.17540,4.78875,1.51116,1.40395,111.91052
17,1.035,0.965,2.75212,3.68405,4.22005,1.31774,1.61501,91.05701
17,1.035,0.96,2.72484,3.92235,4.93436,1.22425,1.34837,87.05628
17,1.035,0.955,2.59307,3.62969,5.97857,1.02050,1.28607,73.85134
17,1.035,0.95,2.70411,3.58094,5.76302,1.17291,1.40874,92.20800
17,1.035,0.945,2.88784,3.60531,5.61240,1.08438,1.31333,83.21861
17,1.035,0.94,2.85267,3.53509,5.68267,1.12595,1.32440,85.45600
17,1.035,0.9349999999999999,2.99184,3.18668,5.94759,1.25052,1.47349,104.48537
17,1.035,0.9299999999999999,2.87534,3.20084,7.46606,1.14929,1.38189,109.13036
17,1.035,0.925,2.98062,3.53503,6.26061,1.05700,1.54486,107.71590
17,1.035,0.9199999999999999,2.85278,3.08956,6.68954,1.09731,2.13010,137.81357
17,1.035,0.915,2.16231,3.47588,7.27317,1.06459,2.61491,152.17534
17,1.035,0.91,2.06886,3.47588,7.11226,1.06292,2.61491,142.15463
17,1.035,0.905,1.90985,3.49105,7.13016,1.00309,2.43450,116.09255
17,1.04,0.99,2.56177,3.96871,5.39347,1.48926,1.16419,95.07180
17,1.04,0.985,2.73537,3.97450,5.86819,1.52701,1.27723,124.42696
17,1.04,0.98,2.58755,4.51014,5.86389,1.26535,1.32798,114.99208
17,1.04,0.975,2.33940,4.21445,5.65651,1.32230,1.20831,89.10552
17,1.04,0.97,2.47667,4.05510,5.23311,1.44623,1.21788,92.57073
17,1.04,0.965,2.51682,3.60038,4.46994,1.30970,1.58875,84.28073
17,1.04,0.96,2.50732,3.87280,4.89653,1.23451,1.32645,77.85933
17,1.04,0.955,2.39656,3.64958,6.11566,1.06672,1.26811,72.35692
17,1.04,0.95,2.56943,3.65267,5.95516,1.16487,1.39341,90.71881
17,1.04,0.945,2.77074,3.73405,5.79952,1.07695,1.29903,83.94289
17,1.04,0.94,2.75252,3.68267,5.48572,1.12956,1.30998,82.28126
17,1.04,0.9349999999999999,2.88680,3.31971,5.74146,1.25452,1.46567,101.17059
17,1.04,0.9299999999999999,2.78633,3.06637,7.43077,1.15297,1.37455,100.61658
17,1.04,0.925,2.88835,3.39683,6.23102,1.06039,1.53469,99.48770
17,1.04,0.9199999999999999,2.76447,3.03195,6.69855,1.08792,2.10611,128.64500
17,1.04,0.915,2.09537,3.42065,7.28297,1.05548,2.60471,143.51158
17,1.04,0.91,2.00481,3.42065,7.12184,1.05382,2.60471,134.06138
17,1.04,0.905,1.85073,3.49921,7.13977,0.99451,2.42501,111.51090
17,1.045,0.99,2.40390,4.21607,5.10903,1.44028,1.08927,81.23539
17,1.045,0.985,2.60659,4.29646,5.82823,1.47679,1.20195,115.85840
17,1.045,0.98,2.46573,4.91003,5.62325,1.23401,1.25336,105.29574
17,1.045,0.975,2.22926,4.61150,5.35489,1.27702,1.14041,80.17040
17,1.045,0.97,2.35743,4.29863,4.68258,1.39670,1.14443,75.84876
17,1.045,0.965,2.40587,3.90856,3.99970,1.21818,1.53699,70.42073
17,1.045,0.96,2.39679,4.04823,4.38421,1.16063,1.28324,63.35629
17,1.045,0.955,2.20139,3.81489,5.51650,1.00288,1.22680,56.99879
17,1.045,0.95,2.41469,3.85945,5.43601,1.09516,1.34067,74.38238
17,1.045,0.945,2.60388,3.94544,5.29394,1.01250,1.24987,68.82666
17,1.045,0.94,2.60995,3.89379,5.00751,1.06196,1.26041,68.11553
17,1.045,0.9349999999999999,2.72849,3.51012,5.24095,1.17945,1.41020,83.48594
17,1.045,0.9299999999999999,2.65402,3.24225,6.79001,1.08397,1.32253,83.76123
17,1.045,0.925,2.75953,3.65772,5.69371,0.99693,1.47553,84.53791
17,1.045,0.9199999999999999,2.64117,3.08410,6.04298,1.02882,1.96344,99.43372
17,1.045,0.915,2.00192,3.47949,6.74088,0.99814,2.60471,122.07585
17,1.045,0.91,1.93608,3.47949,6.59175,1.01152,2.60471,116.99649
17,1.045,0.905,1.78728,3.55939,6.60834,0.95458,2.42501,97.31650
17,1.05,0.99,2.16469,4.24984,4.51086,1.31801,1.10509,60.44284
17,1.05,0.985,2.21343,4.37001,5.14019,1.40595,1.17694,82.27230
17,1.05,0.98,2.09610,4.79520,4.93965,1.22299,1.22728,74.52175
17,1.05,0.975,1.96830,4.50364,4.91612,1.26562,1.11578,61.54030
17,1.05,0.97,2.04909,4.22957,4.87343,1.40825,1.13375,67.43600
17,1.05,0.965,2.25568,3.87353,4.21930,1.26002,1.48146,68.81590
17,1.05,0.96,2.20161,4.19070,4.82788,1.25081,1.31176,73.08455
17,1.05,0.955,2.02212,3.94914,5.82472,1.09697,1.29860,66.26075
17,1.05,0.95,2.27445,3.99527,5.03318,1.24140,1.42322,80.80674
17,1.05,0.945,2.45266,4.16729,4.90164,1.15259,1.32682,76.61600
17,1.05,0.94,2.45837,4.11274,4.63643,1.20889,1.23448,69.95782
17,1.05,0.9349999999999999,2.57003,3.73407,4.85257,1.34264,1.38120,86.35871
17,1.05,0.9299999999999999,2.54663,3.52826,6.43087,1.24356,1.29533,93.07645
17,1.05,0.925,2.64787,3.98111,5.51077,1.19455,1.49756,103.92046
17,1.05,0.9199999999999999,2.53430,3.35677,5.84882,1.25098,1.99494,124.17260
17,1.05,0.915,1.92091,3.80490,6.52429,1.15375,2.64650,145.60194
17,1.05,0.91,1.87091,3.80490,6.37996,1.19163,2.64650,143.22813
17,1.05,0.905,1.72712,3.91708,6.39601,1.14741,2.46391,122.33121
17,1.055,0.99,2.00035,3.98743,3.44649,1.41108,1.14802,44.53246
17,1.055,0.985,2.04538,4.15038,3.92732,1.50693,1.15592,58.07383
17,1.055,0.98,1.93696,4.77414,3.77411,1.24053,1.21262,52.50052
17,1.055,0.975,1.81887,4.53077,3.79930,1.28377,1.13180,45.49190
17,1.055,0.97,1.89352,4.25504,3.82345,1.42845,1.15003,50.60639
17,1.055,0.965,2.08442,3.77171,3.31025,1.27809,1.57569,52.41012
17,1.055,0.96,2.04281,4.11806,3.54107,1.26173,1.39519,52.43909
17,1.055,0.955,1.88672,3.90804,4.27221,1.10655,1.38406,48.24439
17,1.055,0.95,2.12216,4.03830,3.69165,1.19829,1.43557,54.42274
17,1.055,0.945,2.31341,4.25407,3.59517,1.11256,1.33834,52.68240
17,1.055,0.94,2.31880,4.20241,3.40065,1.16691,1.24519,48.15022
17,1.055,0.9349999999999999,2.42412,4.02218,3.55918,1.42643,1.40208,69.40465
17,1.055,0.9299999999999999,2.42739,3.53918,6.44135,1.32117,1.31492,96.13366
17,1.055,0.925,2.52390,3.98111,5.51975,1.26795,1.52020,106.90556
17,1.055,0.9199999999999999,2.41565,3.35677,5.85835,1.31232,1.99494,124.36532
17,1.055,0.915,1.83097,3.80490,6.52580,1.21032,2.64650,145.62432
17,1.055,0.91,1.78332,3.80490,6.38143,1.25007,2.64650,143.25015
17,1.055,0.905,1.64626,3.91708,6.39749,1.20368,2.46391,122.35002
17,1.06,0.99,1.83787,4.02757,2.84295,1.26675,1.16754,31.12377
17,1.06,0.985,1.90199,4.20151,3.30341,1.37318,1.19929,43.47362
17,1.06,0.98,1.82653,4.33298,3.17453,1.13042,1.25811,35.73173
17,1.06,0.975,1.72482,4.13684,3.19572,1.16982,1.17426,31.32327
17,1.06,0.97,1.80580,3.87580,3.24857,1.30166,1.11208,32.91234
17,1.06,0.965,1.95545,3.46692,2.83672,1.17195,1.52369,34.34078
17,1.06,0.96,1.96509,3.66693,3.29981,1.16642,1.34915,37.41871
17,1.06,0.955,1.81493,3.77856,4.09375,1.02297,1.34784,38.70868
17,1.06,0.95,2.05279,4.02962,3.53744,1.12322,1.39799,45.94805
17,1.06,0.945,2.28399,4.71092,3.44499,1.02809,1.30331,49.66689
17,1.06,0.94,2.33320,4.88389,3.25859,1.08048,1.21260,48.65003
17,1.06,0.9349999999999999,2.43917,4.20539,3.19039,1.23444,1.36538,55.15909
17,1.06,0.9299999999999999,2.32882,3.72817,5.79530,1.14334,1.28050,73.66547
17,1.06,0.925,2.42473,4.29142,4.97712,1.10202,1.48102,84.52633
17,1.06,0.9199999999999999,2.32073,3.61842,5.48031,1.14273,1.94514,102.29223
17,1.06,0.915,1.75903,3.78520,6.40618,1.05391,2.64650,118.97028
17,1.06,0.91,1.71325,3.78520,6.26446,1.13695,2.64650,122.23856
17,1.06,0.905,1.58157,3.89680,6.28022,1.09476,2.46391,104.40400
17,1.065,0.99,1.79920,3.42185,2.72302,0.98345,1.08863,17.94821
17,1.065,0.985,1.86938,3.56963,3.19686,1.07502,1.06267,24.37029
17,1.065,0.98,1.80689,3.68132,3.07214,0.89054,1.08624,19.76767
17,1.065,0.975,1.72540,3.51469,3.09265,0.92298,1.05375,18.24052
17,1.065,0.97,1.84029,3.29290,3.12176,1.07528,1.00392,20.42132
17,1.065,0.965,1.97415,2.92996,2.72598,0.96962,1.13517,17.35512
17,1.065,0.96,2.00941,3.12540,3.19653,1.02700,0.96468,19.88876
17,1.065,0.955,1.90740,3.20870,3.81028,0.91120,1.33356,28.33691
17,1.065,0.95,2.17568,3.43399,3.29249,1.00050,1.39864,34.42265
17,1.065,0.945,2.30428,4.01458,3.20644,0.97511,1.30440,37.72775
17,1.065,0.94,2.38101,4.74763,3.03295,1.01698,1.24206,43.30703
17,1.065,0.9349999999999999,2.36648,4.08806,2.96947,1.06977,1.30266,40.03317
17,1.065,0.9299999999999999,2.32341,3.62415,5.52787,1.00792,1.22167,57.31548
17,1.065,0.925,2.43147,4.32991,4.94859,1.13728,1.41298,83.72035
17,1.065,0.9199999999999999,2.32719,3.65087,5.44890,1.18518,1.92230,105.47346
17,1.065,0.915,1.76392,3.81915,6.36946,1.09307,2.61543,122.67018
17,1.065,0.91,1.71801,3.81915,6.22854,1.17920,2.61543,126.04010
17,1.065,0.905,1.58597,3.91917,6.24422,1.13544,2.43499,107.30651
17,1.07,0.99,1.72840,3.38344,2.66145,1.06548,0.98930,16.40572
17,1.07,0.985,1.85528,3.54383,3.16706,1.17392,0.89466,21.86949
17,1.07,0.98,1.82956,3.64836,3.04350,0.98302,0.85735,17.12138
17,1.07,0.975,1.77124,3.50074,3.13149,1.02098,0.79762,15.81255
17,1.07,0.97,1.82527,3.29671,2.77509,1.16382,0.76757,14.91734
17,1.07,0.965,1.93223,3.12281,2.42326,1.07941,0.90579,14.29601
17,1.07,0.96,2.02379,3.08878,2.84156,1.16254,0.79601,16.43746
17,1.07,0.955,1.91592,3.16108,3.38715,1.07124,1.10952,24.38201
17,1.07,0.95,2.21290,3.40751,2.94478,1.17622,1.18668,30.99366
17,1.07,0.945,2.35628,3.98363,2.93792,1.16984,1.10671,35.70332
17,1.07,0.94,2.26033,4.71103,2.77896,1.24417,1.05383,38.79889
17,1.07,0.9349999999999999,2.24654,4.05654,2.72080,1.37025,1.12165,38.10872
17,1.07,0.9299999999999999,2.21761,3.59621,4.45912,1.32763,1.05192,49.66354
17,1.07,0.925,2.32075,4.29652,4.00965,1.37062,1.34376,73.63560
17,1.07,0.9199999999999999,2.22121,3.62272,4.41503,1.32066,1.83794,86.23441
17,1.07,0.915,1.68360,3.78970,5.16092,1.21801,2.61543,104.89777
17,1.07,0.91,1.63978,3.78970,5.04674,1.35132,2.61543,110.84150
17,1.07,0.905,1.51375,3.91917,5.05944,1.30117,2.43499,95.10016
17,1.075,0.99,1.82564,3.05935,2.95021,1.09835,0.94659,17.13161
17,1.075,0.985,1.81697,3.18077,3.46141,1.19625,0.85604,20.48550
17,1.075,0.98,1.79926,3.19250,3.36699,1.00172,0.82033,15.89287
17,1.075,0.975,1.76236,3.09305,3.83187,1.04040,0.76318,16.58517
17,1.075,0.97,1.82523,2.95316,3.19343,1.17873,0.71106,14.42735
17,1.075,0.965,1.97562,2.98022,2.82842,1.15192,0.86651,16.62228
17,1.075,0.96,2.06924,2.94774,3.13654,1.24064,0.76149,18.07425
17,1.075,0.955,1.97209,3.18181,3.69919,1.14320,1.04225,27.65689
17,1.075,0.95,2.27778,3.47276,3.27774,1.25524,1.11472,36.27893
17,1.075,0.945,2.43686,4.08118,3.27821,1.24843,1.03961,42.31447
17,1.075,0.94,2.37832,4.85602,3.12230,1.32776,0.98993,47.39663
17,1.075,0.9349999999999999,2.36381,4.49320,3.13050,1.46372,1.05364,51.27818
17,1.075,0.9299999999999999,2.33761,4.10473,4.83193,1.41974,0.98814,65.04351
17,1.075,0.925,2.47927,4.46856,4.38172,1.49836,1.26309,91.87308
17,1.075,0.9199999999999999,2.37294,3.76777,4.82472,1.46006,1.77885,112.03518
17,1.075,0.915,1.87525,3.54287,5.07525,1.34658,2.61543,118.75431
17,1.075,0.91,1.95384,3.54287,4.96297,1.36324,2.61543,122.49081
17,1.075,0.905,1.84229,3.66391,4.97546,1.31265,2.43499,107.34478
17,1.08,0.99,1.75793,2.88247,2.83417,1.04284,0.91860,13.75744
17,1.08,0.985,1.74958,3.07813,3.16754,1.13149,0.84355,16.28188
17,1.08,0.98,1.74684,3.12164,3.01912,0.94749,0.80837,12.60957
17,1.08,0.975,1.73595,3.02439,3.43597,1.00614,0.75276,13.66276
17,1.08,0.97,1.79788,2.95671,2.89797,1.13991,0.71646,12.58139
17,1.08,0.965,1.94601,2.78101,2.64642,1.11399,0.87309,13.92976
17,1.08,0.96,2.05092,2.75070,2.96289,1.19979,0.78083,15.65916
17,1.08,0.955,1.98241,2.98005,3.49439,1.10556,1.04604,23.87356
17,1.08,0.95,1.98536,3.25255,3.09627,1.21390,1.13731,27.60345
17,1.08,0.945,2.33513,3.82800,2.91107,1.20732,1.08732,34.15994
17,1.08,0.94,2.27903,4.96906,2.77262,1.29136,1.03536,41.98104
17,1.08,0.9349999999999999,2.26513,4.59779,2.80977,1.42359,1.10978,46.23134
17,1.08,0.9299999999999999,2.24002,4.20028,3.98837,1.38082,1.04079,53.92936
17,1.08,0.925,2.37577,4.41279,4.22935,1.45728,1.11572,72.09238
17,1.08,0.9199999999999999,2.27387,3.72075,4.84133,1.42003,1.57130,91.39432
17,1.08,0.915,1.79697,3.49866,5.09272,1.30966,2.61321,109.57886
17,1.08,0.91,1.89853,3.49866,4.98006,1.38979,2.61321,120.13726
17,1.08,0.905,1.79013,3.61819,4.99259,1.33821,2.43292,105.28224
17,1.085,0.99,1.66377,2.92475,2.69119,1.08056,0.96702,13.68398
17,1.085,0.985,1.65803,2.83700,3.06844,1.17241,0.88876,15.03952
17,1.085,0.98,1.65072,2.87710,2.92466,0.98563,0.89083,12.19583
17,1.085,0.975,1.63007,2.78748,3.33996,1.00458,0.84456,12.87580
17,1.085,0.97,1.60141,2.72509,2.81700,1.07827,0.80384,10.65533
17,1.085,0.965,1.55186,2.56316,2.58363,0.97490,0.97957,9.81413
17,1.085,0.96,1.70480,2.53522,2.58095,1.13622,0.87606,11.10365
17,1.085,0.955,1.62185,2.74661,3.04394,1.07730,1.13469,16.57518
17,1.085,0.95,1.62426,3.02038,2.69714,1.19659,1.13271,17.93436
17,1.085,0.945,2.06232,3.55475,2.53582,1.08169,1.08293,21.77642
17,1.085,0.94,2.01277,4.61435,2.41522,1.15698,1.03118,26.76224
17,1.085,0.9349999999999999,2.00049,4.26959,2.44757,1.27546,1.10530,29.47174
17,1.085,0.9299999999999999,1.97832,3.90046,3.61514,1.23714,1.03658,35.77323
17,1.085,0.925,2.12195,4.09780,3.83356,1.30564,1.11121,48.36247
17,1.085,0.9199999999999999,2.03167,3.45516,4.44054,1.38673,1.56002,67.43401
17,1.085,0.915,1.62613,3.24892,4.63297,1.27895,2.59935,81.37134
17,1.085,0.91,1.76198,3.24892,4.53047,1.35719,2.59935,91.49302
17,1.085,0.905,1.66137,3.33607,4.54187,1.30683,2.42001,79.61093
17,1.09,0.99,1.65043,2.93027,2.75319,0.90574,1.03695,12.50561
17,1.09,0.985,1.64473,2.84235,2.82857,1.02917,1.00686,13.70252
17,1.09,0.98,1.63749,2.88253,2.79879,0.87205,1.00867,11.62010
17,1.09,0.975,1.61700,2.79274,3.23224,0.94952,1.02467,14.20131
17,1.09,0.97,1.58857,2.73023,2.73895,1.05190,0.97475,12.18041
17,1.09,0.965,1.53942,2.56799,2.51205,0.96694,1.06348,10.21193
17,1.09,0.96,1.69113,2.54001,2.29975,1.19891,1.00386,11.88915
17,1.09,0.955,1.60885,2.75179,2.61161,1.13674,1.32742,17.44643
17,1.09,0.95,1.61124,3.02608,2.36130,1.19811,1.29274,17.83196
17,1.09,0.945,2.04578,3.56146,2.29824,1.11875,1.25016,23.41973
17,1.09,0.94,1.99663,4.62306,2.22476,1.22555,1.20867,30.41945
17,1.09,0.9349999999999999,1.98445,4.27765,2.25457,1.38652,1.22525,32.51308
17,1.09,0.9299999999999999,1.96246,3.90782,3.42124,1.34485,1.21274,42.79182
17,1.09,0.925,2.10493,4.10553,3.70988,1.26665,1.22068,49.57078
17,1.09,0.9199999999999999,2.01538,3.46168,4.49328,1.48829,1.41283,65.91510
17,1.09,0.915,1.61310,3.25505,4.31176,1.37262,2.80222,87.08088
17,1.09,0.91,1.74785,3.25505,4.21637,1.32736,2.80222,89.22546
17,1.09,0.905,1.64805,3.33466,4.22698,1.27810,2.60888,77.45874
17,1.095,0.99,1.64756,1.82560,2.42251,0.91283,1.03472,6.88222
17,1.095,0.985,1.64188,1.77082,2.48884,1.03723,1.02959,7.72776
17,1.095,0.98,1.63464,1.79334,2.46263,0.88976,1.03144,6.62523
17,1.095,0.975,1.61419,1.73092,2.86387,0.96880,1.00521,7.79251
17,1.095,0.97,1.58581,1.69577,2.42680,1.07327,0.95624,6.69779
17,1.095,0.965,1.53674,1.59105,2.22576,0.98658,1.04329,5.60144
17,1.095,0.96,1.68819,1.57371,2.07461,1.22326,0.98480,6.63972
17,1.095,0.955,1.60605,1.97796,2.35595,1.17286,1.30222,11.43065
17,1.095,0.95,1.60844,2.19376,2.13014,1.23618,1.26820,11.78336
17,1.095,0.945,2.04223,2.58188,2.07325,1.15430,1.22642,15.47575
17,1.095,0.94,1.99316,3.35149,2.00697,1.26450,1.18572,20.10116
17,1.095,0.9349999999999999,1.98100,3.05050,2.07006,1.43057,1.20198,21.51039
17,1.095,0.9299999999999999,1.95905,2.78676,3.22219,1.38759,1.18972,29.04018
17,1.095,0.925,2.10128,2.86988,3.49404,1.30689,1.19751,32.97556
17,1.095,0.9199999999999999,2.01188,2.46720,3.84124,1.58819,1.39244,42.16545
17,1.095,0.915,1.61029,2.31993,3.68606,1.56665,2.76177,59.58016
17,1.095,0.91,1.74785,2.31993,3.60451,1.55273,2.76177,62.67730
17,1.095,0.905,1.64805,2.40624,3.61359,1.49511,2.57123,55.08882
17,1.1,0.99,1.72666,1.59944,2.35077,0.95422,1.01218,6.27034
17,1.1,0.985,1.72071,1.57563,2.41514,1.08425,1.00716,7.15041
17,1.1,0.98,1.71312,1.59118,2.38970,0.95471,1.00896,6.27477
17,1.1,0.975,1.70410,1.53579,2.43671,1.03952,0.98331,6.51861
17,1.1,0.97,1.67414,1.52343,2.07431,1.03952,0.93541,5.14426
17,1.1,0.965,1.62234,1.45560,1.94196,0.95989,1.02056,4.49246
17,1.1,0.96,1.78636,1.48990,1.81008,1.13820,0.96334,5.28229
17,1.1,0.955,1.70010,1.99920,2.05555,1.10608,1.27384,9.84379
17,1.1,0.95,1.69606,2.21731,1.85853,1.16580,1.24056,10.10839
17,1.1,0.945,2.17530,2.60736,1.83328,1.09480,1.19970,13.65703
17,1.1,0.94,2.13447,3.43033,1.79629,1.21987,1.15988,18.60933
17,1.1,0.9349999999999999,2.12145,3.34826,1.85277,1.37467,1.17579,21.27166
17,1.1,0.9299999999999999,2.04546,3.10969,2.92633,1.35034,1.16379,29.25151
17,1.1,0.925,2.19396,3.09855,3.29500,1.27181,1.17141,33.37149
17,1.1,0.9199999999999999,2.15747,2.70944,3.62242,1.26262,1.36210,36.41708
17,1.1,0.915,1.72682,2.54772,3.62747,1.24549,2.71966,54.05769
17,1.1,0.91,1.74785,2.54772,3.54722,1.18465,2.71966,50.89164
17,1.1,0.905,1.64805,2.54772,3.55614,1.15019,2.53202,43.48467
18,1.01,0.99,2.71173,6.03923,7.75426,1.50200,1.45110,276.77972
18,1.01,0.985,2.96740,5.19967,7.31820,1.58398,1.56734,280.32918
18,1.01,0.98,2.92430,4.66793,7.25373,1.45133,1.63608,235.11327
18,1.01,0.975,2.67241,4.59234,6.80530,1.30218,1.59725,173.71134
18,1.01,0.97,2.60417,4.15790,6.27107,1.13537,1.73059,133.41859
18,1.01,0.965,2.69534,3.27588,6.11341,0.99075,1.72970,92.50367
18,1.01,0.96,2.63073,3.02567,6.67211,1.00624,1.64066,87.67604
18,1.01,0.955,2.60619,3.43663,6.32760,1.20020,1.50705,102.50781
18,1.01,0.95,2.72333,3.74642,6.12535,1.04264,1.48996,97.08556
18,1.01,0.945,2.87220,3.86411,5.22201,0.99663,1.47450,85.16865
18,1.01,0.94,3.05453,3.82197,5.78078,1.01412,1.36799,93.62510
18,1.01,0.9349999999999999,2.98188,4.04438,5.95905,1.21665,1.37722,120.41677
18,1.01,0.9299999999999999,2.72040,4.07957,6.20635,1.25915,1.49804,129.92160
18,1.01,0.925,2.86943,3.67522,6.41482,1.14022,1.54367,119.07068
18,1.01,0.9199999999999999,2.79418,3.61155,7.20095,1.12061,1.77784,144.77128
18,1.01,0.915,2.66276,3.52857,6.83241,0.90697,2.29514,133.62998
18,1.01,0.91,2.03547,3.74767,6.55058,0.87980,2.23310,98.17443
18,1.01,0.905,2.07032,3.73558,6.87716,0.84687,2.14142,96.45439
18,1.015,0.99,3.27007,5.75140,7.65843,1.59562,1.29755,298.21116
18,1.015,0.985,3.38024,5.15777,7.27683,1.61202,1.43613,293.70725
18,1.015,0.98,3.13453,4.67470,7.07212,1.49064,1.57096,242.66855
18,1.015,0.975,2.76224,4.64491,6.60330,1.26234,1.47785,158.05436
18,1.015,0.97,2.62207,4.20549,6.10169,1.07379,1.61987,117.03285
18,1.015,0.965,2.73953,3.35875,6.07974,0.96836,1.63366,88.49918
18,1.015,0.96,2.52925,3.16469,6.63536,0.99137,1.54528,81.36331
18,1.015,0.955,2.55864,3.68802,6.41588,1.18246,1.42735,102.18193
18,1.015,0.95,2.60539,4.03491,5.76333,1.09257,1.42098,94.06322
18,1.015,0.945,2.77505,3.96678,4.91337,1.01129,1.40625,76.91791
18,1.015,0.94,3.00875,4.00591,5.48003,1.04378,1.30466,89.94487
18,1.015,0.9349999999999999,2.93719,4.25766,5.64902,1.19081,1.31346,110.49377
18,1.015,0.9299999999999999,2.67962,4.01333,5.88346,1.23241,1.42869,111.40466
18,1.015,0.925,2.82642,3.61927,6.26592,1.11600,1.48767,106.41779
18,1.015,0.9199999999999999,2.75230,3.55657,7.05260,1.09681,1.75808,133.12070
18,1.015,0.915,2.62285,3.49526,6.69165,0.88771,2.25807,122.96827
18,1.015,0.91,2.02006,3.75701,6.55058,0.85660,2.19704,93.56208
18,1.015,0.905,2.05465,3.74489,6.87716,0.82453,2.10684,91.92285
18,1.02,0.99,3.09798,5.45909,7.27672,1.86993,1.36810,314.83124
18,1.02,0.985,3.22383,4.98223,7.03066,1.80090,1.55851,316.94892
18,1.02,0.98,3.01746,4.40165,6.34448,1.63864,1.70024,234.77187
18,1.02,0.975,2.74802,4.40307,5.97420,1.37621,1.61204,160.36770
18,1.02,0.97,2.67105,4.01660,5.64221,1.17065,1.71501,121.53003
18,1.02,0.965,2.84250,3.20789,5.62191,1.04429,1.68994,90.46839
18,1.02,0.96,2.64505,3.01700,6.20372,1.06910,1.63643,86.61206
18,1.02,0.955,2.68387,3.57805,6.11376,1.27518,1.51155,113.16431
18,1.02,0.95,2.74042,3.92233,5.69631,1.12887,1.50481,104.01082
18,1.02,0.945,2.96078,3.85610,4.85624,1.06671,1.48920,88.07522
18,1.02,0.94,3.21013,3.89414,5.41398,1.08666,1.38162,101.60967
18,1.02,0.9349999999999999,3.13377,4.15315,5.58094,1.23974,1.39094,125.25408
18,1.02,0.9299999999999999,2.85897,3.92261,5.84882,1.28304,1.54447,129.97932
18,1.02,0.925,3.03839,3.53745,6.29274,1.16186,1.60823,126.37898
18,1.02,0.9199999999999999,2.95871,3.51684,7.08278,1.10356,1.90681,155.08144
18,1.02,0.915,2.87991,3.47582,6.72028,0.89317,2.44650,146.99452
18,1.02,0.91,2.21804,3.73916,6.57861,0.86187,2.36171,111.05653
18,1.02,0.905,2.00044,3.72710,6.90659,0.82960,2.26475,96.74997
18,1.025,0.99,3.19026,5.45088,7.00396,1.85219,1.31064,295.66872
18,1.025,0.985,3.19464,5.26033,6.81373,1.73351,1.47463,292.70375
18,1.025,0.98,3.03695,4.78166,5.92749,1.66597,1.62745,233.37995
18,1.025,0.975,2.79966,4.68941,5.29382,1.42212,1.54081,152.29243
18,1.025,0.97,2.63890,4.35951,5.03987,1.23098,1.67010,119.19887
18,1.025,0.965,2.82957,3.53448,5.02174,1.12235,1.64568,92.76273
18,1.025,0.96,2.63594,3.50122,5.54143,1.16617,1.56258,93.19229
18,1.025,0.955,2.65354,4.09328,5.47208,1.32802,1.44333,113.92578
18,1.025,0.95,2.70945,4.03765,5.53367,1.18893,1.43689,103.41996
18,1.025,0.945,2.92732,3.99975,4.72224,1.07321,1.42662,84.65324
18,1.025,0.94,3.16781,4.05637,5.26353,1.09364,1.32357,97.90218
18,1.025,0.9349999999999999,3.09247,4.02975,5.46967,1.24770,1.33249,113.32296
18,1.025,0.9299999999999999,2.83312,3.80607,5.79413,1.32713,1.47957,122.68211
18,1.025,0.925,3.01092,3.44910,5.71817,1.20554,1.62066,116.02143
18,1.025,0.9199999999999999,2.93196,3.42900,6.43608,1.14304,1.92155,142.12123
18,1.025,0.915,2.85387,3.38900,6.10668,0.92512,2.44650,133.67667
18,1.025,0.91,2.21804,3.73020,6.27957,0.91052,2.36171,111.72444
18,1.025,0.905,2.00044,3.71817,6.59264,0.87643,2.26475,97.33184
18,1.03,0.99,3.06078,4.99000,6.15283,1.73927,1.22918,200.90444
18,1.03,0.985,2.96519,4.99325,6.13622,1.68324,1.36814,209.22453
18,1.03,0.98,2.81882,4.58592,5.39573,1.65555,1.48629,171.62819
18,1.03,0.975,2.64806,4.49638,4.81891,1.46066,1.41642,118.70874
18,1.03,0.97,2.54295,4.26010,4.67159,1.29335,1.54172,100.91273
18,1.03,0.965,2.76295,3.51561,4.62342,1.17382,1.54315,81.34805
18,1.03,0.96,2.59079,3.53610,5.10190,1.22975,1.46522,84.21821
18,1.03,0.955,2.60809,3.77672,5.19538,1.37368,1.35340,95.14047
18,1.03,0.95,2.66434,3.71123,5.26413,1.22303,1.36321,86.78306
18,1.03,0.945,2.89836,3.68225,4.49222,1.11141,1.35347,72.11917
18,1.03,0.94,3.15771,3.73438,5.05969,1.14097,1.25570,85.48187
18,1.03,0.9349999999999999,3.08260,3.70988,5.30582,1.30170,1.26416,99.84913
18,1.03,0.9299999999999999,2.82408,3.52171,5.62057,1.38458,1.42522,110.30863
18,1.03,0.925,2.98152,3.19141,5.66927,1.25772,1.57219,106.66911
18,1.03,0.9199999999999999,2.90334,3.17437,6.38104,1.12772,1.95321,129.53771
18,1.03,0.915,2.82600,3.13735,6.05446,0.91273,2.44650,119.86591
18,1.03,0.91,2.21054,3.50735,6.22587,0.89253,2.36171,101.74784
18,1.03,0.905,1.99368,3.49603,6.53627,0.85912,2.26475,88.64045
18,1.035,0.99,2.89061,4.86272,5.74600,1.61086,1.26291,164.30996
18,1.035,0.985,2.81256,4.94797,5.74259,1.55897,1.39713,174.06462
18,1.035,0.98,2.69353,4.62125,5.12127,1.56200,1.42075,141.46795
18,1.035,0.975,2.55185,4.53103,4.60058,1.38524,1.35878,100.12391
18,1.035,0.97,2.36681,4.35156,4.52070,1.22657,1.47786,84.39906
18,1.035,0.965,2.60966,3.76199,4.56958,1.14195,1.47922,75.78054
18,1.035,0.96,2.44705,3.82064,5.13994,1.19920,1.40713,81.08915
18,1.035,0.955,2.44953,3.67149,5.31787,1.33956,1.32720,85.02785
18,1.035,0.95,2.52512,3.62144,5.42807,1.19266,1.34080,79.37544
18,1.035,0.945,2.75502,3.69455,4.63213,1.08381,1.32981,67.95316
18,1.035,0.94,3.01856,3.75680,5.33281,1.13624,1.23375,84.77565
18,1.035,0.9349999999999999,2.94676,3.73215,5.59223,1.31280,1.24207,100.28454
18,1.035,0.9299999999999999,2.69964,3.54286,5.92397,1.40988,1.40031,111.86080
18,1.035,0.925,2.86732,3.21057,5.97530,1.28071,1.51565,106.77481
18,1.035,0.9199999999999999,2.79213,3.20241,6.72548,1.16166,1.92196,134.26355
18,1.035,0.915,2.71776,3.16505,6.58645,0.94019,2.44650,130.31811
18,1.035,0.91,2.14882,3.53832,6.77292,0.91939,2.36171,111.81474
18,1.035,0.905,1.93801,3.52691,7.11059,0.88497,2.26475,97.41051
18,1.04,0.99,2.96409,4.58325,5.46495,1.52975,1.22970,139.65917
18,1.04,0.985,2.81556,4.75707,5.76591,1.48047,1.38438,158.27955
18,1.04,0.98,2.69640,4.42952,5.18710,1.34099,1.41249,117.34785
18,1.04,0.975,2.56062,4.40062,4.75410,1.19846,1.37568,88.32170
18,1.04,0.97,2.39975,4.22632,4.93001,1.06118,1.43745,76.27056
18,1.04,0.965,2.53761,3.67493,5.09861,1.00800,1.52836,73.25096
18,1.04,0.96,2.38804,3.77899,5.28894,1.05099,1.45388,72.93094
18,1.04,0.955,2.33659,3.70434,5.51431,1.20914,1.37130,79.13977
18,1.04,0.95,2.46658,3.74459,5.38615,1.07654,1.38943,74.41241
18,1.04,0.945,2.66685,3.87672,4.57785,0.97829,1.38272,64.02159
18,1.04,0.94,2.92195,3.96484,5.30099,1.02999,1.28283,81.14451
18,1.04,0.9349999999999999,2.85245,3.60387,5.57264,1.21644,1.29148,89.99716
18,1.04,0.9299999999999999,2.63992,3.42108,5.93901,1.30640,1.45602,102.02620
18,1.04,0.925,2.80390,3.12207,5.65005,1.18671,1.57948,92.70753
18,1.04,0.9199999999999999,2.73037,3.10300,6.46724,1.09397,1.99017,119.29361
18,1.04,0.915,2.65764,3.13206,6.33354,0.88541,2.56329,119.65073
18,1.04,0.91,2.10129,3.50144,6.68204,0.86581,2.39436,101.91910
18,1.04,0.905,1.89515,3.49014,7.11413,0.84888,2.29606,91.71455
18,1.045,0.99,2.73837,5.05064,5.52556,1.40268,1.15715,124.03971
18,1.045,0.985,2.54764,5.27019,5.84774,1.37629,1.31519,142.11824
18,1.045,0.98,2.45173,4.93430,5.16200,1.24390,1.34584,104.54293
18,1.045,0.975,2.38574,4.75277,4.76235,1.12374,1.32062,80.13701
18,1.045,0.97,2.24445,4.64577,4.70812,1.01307,1.38971,69.11611
18,1.045,0.965,2.37659,4.21470,4.86913,0.96230,1.45711,68.38712
18,1.045,0.96,2.19932,4.16503,5.05090,0.97991,1.39570,63.27830
18,1.045,0.955,2.16037,4.08124,5.30881,1.12202,1.31643,69.13796
18,1.045,0.95,2.33558,4.12838,5.18543,0.99898,1.33384,66.62194
18,1.045,0.945,2.53414,4.36098,4.40725,0.90780,1.32272,58.48484
18,1.045,0.94,2.82205,4.46438,5.10344,0.96096,1.22717,75.82303
18,1.045,0.9349999999999999,2.75493,4.10163,5.50485,1.13492,1.23545,87.21701
18,1.045,0.9299999999999999,2.54966,3.89231,5.88555,1.21885,1.41964,101.06604
18,1.045,0.925,2.70879,3.61931,5.59919,1.10718,1.54001,93.59871
18,1.045,0.9199999999999999,2.63776,3.61744,6.43150,1.06125,1.94225,126.49419
18,1.045,0.915,2.56750,3.44921,6.29854,0.85893,2.55359,122.34239
18,1.045,0.91,2.03002,3.94527,6.64512,0.83992,2.38529,106.62492
18,1.045,0.905,1.83087,3.93254,7.07482,0.82349,2.28736,95.94921
18,1.05,0.99,2.49406,5.25362,5.48191,1.44441,1.10305,114.44156
18,1.05,0.985,2.32034,5.53789,5.67731,1.44379,1.27018,133.78528
18,1.05,0.98,2.23300,5.24059,5.01156,1.30295,1.29638,99.06093
18,1.05,0.975,2.17289,5.04325,4.75155,1.19661,1.27477,79.42706
18,1.05,0.97,2.04421,5.03105,4.85594,1.08977,1.35154,73.55608
18,1.05,0.965,2.17996,4.45078,5.02201,1.03515,1.48921,75.11412
18,1.05,0.96,2.01735,4.49077,5.29322,1.11175,1.42466,75.95236
18,1.05,0.955,1.99267,4.51344,4.95595,1.27298,1.35565,76.91994
18,1.05,0.95,2.21519,4.61500,4.79520,1.13338,1.38095,76.72605
18,1.05,0.945,2.40351,4.87501,4.07558,1.02994,1.36945,67.35484
18,1.05,0.94,2.67658,5.02806,4.76723,1.07647,1.27052,87.74684
18,1.05,0.9349999999999999,2.61292,4.59959,5.14219,1.27134,1.27909,100.49737
18,1.05,0.9299999999999999,2.41823,4.08217,5.53820,1.31117,1.47470,105.71103
18,1.05,0.925,2.59399,3.83065,5.39371,1.19351,1.53034,97.89104
18,1.05,0.9199999999999999,2.52597,3.53343,6.19548,1.14565,1.95028,123.55143
18,1.05,0.915,2.45869,3.36910,6.06740,0.98751,2.56415,127.26405
18,1.05,0.91,1.94399,3.94527,6.40126,0.96566,2.39516,113.55138
18,1.05,0.905,1.75327,3.93254,6.81519,0.94677,2.29683,102.18216
18,1.055,0.99,2.07825,4.49439,4.88656,1.44546,0.95150,62.77469
18,1.055,0.985,1.93350,4.91057,4.93530,1.36102,1.16047,74.00919
18,1.055,0.98,1.86071,4.64695,4.26602,1.26865,1.12180,52.49592
18,1.055,0.975,1.81063,4.47197,4.14307,1.20151,1.10741,44.63598
18,1.055,0.97,1.70340,4.45185,4.60511,1.11012,1.18101,45.78446
18,1.055,0.965,1.95216,3.93838,4.84514,0.98591,1.33672,49.09266
18,1.055,0.96,1.81396,4.01031,5.17818,1.07547,1.32134,53.53034
18,1.055,0.955,1.79176,4.03055,4.78167,1.23145,1.25733,53.46780
18,1.055,0.95,1.99185,4.17518,4.62657,1.16624,1.21215,54.39169
18,1.055,0.945,2.16118,4.76905,3.93226,1.05980,1.36945,58.82134
18,1.055,0.94,2.45287,4.94517,4.25954,1.24302,1.27052,81.59768
18,1.055,0.9349999999999999,2.39452,4.54180,4.59457,1.47641,1.27909,94.36251
18,1.055,0.9299999999999999,2.22915,4.03088,5.06256,1.52266,1.47470,102.14495
18,1.055,0.925,2.41554,3.81112,5.17397,1.40498,1.53034,102.41134
18,1.055,0.9199999999999999,2.35220,3.51541,5.96206,1.24194,1.95028,119.41134
18,1.055,0.915,2.28955,3.35192,5.83880,1.07051,2.56415,122.99956
18,1.055,0.91,1.84294,3.92515,6.16009,1.12153,2.39516,119.70210
18,1.055,0.905,1.66214,3.91249,6.55842,1.07974,2.29683,105.77176
18,1.06,0.99,2.06946,4.62038,4.04382,1.42519,0.95616,52.69046
18,1.06,0.985,1.94031,4.60889,4.01243,1.34818,1.03809,50.21749
18,1.06,0.98,1.87127,4.36147,3.63743,1.25668,0.98029,36.57126
18,1.06,0.975,1.83493,4.22250,3.53259,1.18475,0.95354,30.92062
18,1.06,0.97,1.77951,4.16667,3.97169,1.09479,1.03502,33.36911
18,1.06,0.965,1.94839,3.72617,4.20364,0.97229,0.98306,29.17046
18,1.06,0.96,1.83168,3.68490,4.41307,1.06065,0.98235,31.03501
18,1.06,0.955,1.81628,3.97964,3.87361,1.23141,0.94984,32.74879
18,1.06,0.95,2.03415,4.12244,3.78091,1.14327,0.91571,33.19252
18,1.06,0.945,2.14674,4.70868,3.21350,1.04576,1.25040,42.47529
18,1.06,0.94,2.43469,4.88257,3.64039,1.22064,1.17186,61.90173
18,1.06,0.9349999999999999,2.37678,4.48430,3.95741,1.44982,1.17976,72.14477
18,1.06,0.9299999999999999,2.22395,3.97985,5.49080,1.48543,1.28780,92.96691
18,1.06,0.925,2.43247,3.76288,5.05046,1.37063,1.40082,88.75645
18,1.06,0.9199999999999999,2.36868,3.47091,5.81973,1.21158,1.87328,108.59424
18,1.06,0.915,2.30559,3.30949,5.69941,1.04434,2.46291,111.85741
18,1.06,0.91,1.85586,3.89308,6.01303,1.12380,2.30059,112.32076
18,1.06,0.905,1.67379,3.88052,6.55842,1.08193,2.20614,101.67672
18,1.065,0.99,2.01119,4.27661,3.85215,1.38058,0.95231,43.56068
18,1.065,0.985,1.92404,4.26598,3.66431,1.33253,0.94516,37.87991
18,1.065,0.98,1.85558,4.03697,3.29856,1.27563,0.92505,29.15745
18,1.065,0.975,1.83092,3.90834,3.17353,1.22782,0.81220,22.64656
18,1.065,0.97,1.78730,3.87519,3.57713,1.11692,0.88487,24.48670
18,1.065,0.965,1.97126,3.46550,3.82147,1.03020,0.84045,22.60350
18,1.065,0.96,1.85815,3.42712,4.01186,1.18044,0.84691,25.54082
18,1.065,0.955,1.84253,3.68070,3.52144,1.37048,0.83975,27.48450
18,1.065,0.95,2.06355,3.81277,3.43717,1.29941,0.80957,28.44831
18,1.065,0.945,2.20738,4.35497,2.92135,1.18857,1.11327,37.15975
18,1.065,0.94,2.33699,4.74857,3.30943,1.38734,1.04334,53.15975
18,1.065,0.9349999999999999,2.28141,4.43862,3.59762,1.64782,1.06598,63.99213
18,1.065,0.9299999999999999,2.13471,3.93931,5.40462,1.56951,1.16359,83.00206
18,1.065,0.925,2.35483,3.72454,5.11211,1.44505,1.26572,82.00725
18,1.065,0.9199999999999999,2.29308,3.43555,5.89077,1.40556,1.64640,107.39149
18,1.065,0.915,2.23200,3.27578,5.76899,1.21154,2.46291,125.86237
18,1.065,0.91,1.79662,3.85342,6.08643,1.30373,2.30059,126.38374
18,1.065,0.905,1.62037,3.84099,6.63848,1.12838,2.20614,102.85189
18,1.07,0.99,2.01663,3.64846,3.48083,1.25249,0.97111,31.15018
18,1.07,0.985,1.92925,3.67547,3.39359,1.20890,0.95587,27.80668
18,1.07,0.98,1.86060,3.47816,3.08433,1.14619,0.96301,22.03197
18,1.07,0.975,1.85134,3.36733,2.90325,1.08383,0.84553,16.58626
18,1.07,0.97,1.81451,3.38120,3.32784,1.00498,0.92119,18.90156
18,1.07,0.965,2.03291,3.02374,3.63926,0.85979,0.87494,16.82864
18,1.07,0.96,1.94026,2.99024,3.85726,0.99498,0.84228,18.75482
18,1.07,0.955,1.96973,3.16843,3.38574,1.22739,0.83516,21.65973
18,1.07,0.95,2.23739,3.28212,3.30472,1.16373,0.80514,22.73825
18,1.07,0.945,2.40785,3.74887,2.87744,1.06447,1.10718,30.61176
18,1.07,0.94,2.39495,4.65721,3.26000,1.25630,1.03764,47.40026
18,1.07,0.9349999999999999,2.34138,4.35323,3.54173,1.51012,1.06015,57.79326
18,1.07,0.9299999999999999,2.22906,3.86353,4.22100,1.43835,1.15723,60.50680
18,1.07,0.925,2.54937,3.67807,4.05218,1.32430,1.25879,63.34039
18,1.07,0.9199999999999999,2.48252,3.39268,4.66940,1.29121,1.63739,83.14700
18,1.07,0.915,2.41697,3.23490,4.57287,1.11298,2.44944,97.47138
18,1.07,0.91,2.02794,3.80534,4.82449,1.24811,2.28801,106.31876
18,1.07,0.905,1.97692,3.79306,5.30661,1.08024,2.19407,94.31249
18,1.075,0.99,1.94963,3.49524,3.51582,1.14514,0.90532,24.83808
18,1.075,0.985,1.87429,3.43266,3.41069,1.09169,0.89455,21.42940
18,1.075,0.98,1.84427,3.26836,3.20794,1.05740,0.95206,19.46626
18,1.075,0.975,1.79286,3.22526,3.15148,1.00138,0.84731,15.46212
18,1.075,0.97,1.83150,3.23854,3.40737,0.94273,0.93728,17.85786
18,1.075,0.965,1.95047,3.05341,3.52382,0.83715,0.89023,15.64022
18,1.075,0.96,1.93622,2.95507,3.73490,0.87466,0.86040,16.08216
18,1.075,0.955,1.98264,3.13117,3.27834,1.09156,0.85343,18.95924
18,1.075,0.95,2.28039,3.35673,3.19989,1.03496,0.75541,19.14989
18,1.075,0.945,2.45413,3.83408,2.78616,0.94269,1.03879,25.67239
18,1.075,0.94,2.44099,4.75325,3.15659,1.05146,0.97355,37.49085
18,1.075,0.9349999999999999,2.39811,4.55714,3.46530,1.28705,0.99467,48.48149
18,1.075,0.9299999999999999,2.30552,4.04450,4.12992,1.22588,1.08575,51.25696
18,1.075,0.925,2.44041,3.85036,4.07096,1.12867,1.18090,50.98457
18,1.075,0.9199999999999999,2.37641,3.55160,4.72804,1.24687,1.56275,77.75637
18,1.075,0.915,2.31367,3.45383,4.63029,1.07476,2.40111,95.48475
18,1.075,0.91,1.94126,3.54648,4.82551,1.20830,2.24286,90.03326
18,1.075,0.905,1.89243,3.53504,5.30773,1.04579,2.15078,79.86607
18,1.08,0.99,1.87829,3.26807,3.29545,1.09677,0.94614,20.99115
18,1.08,0.985,1.82062,3.23820,3.18006,1.04557,0.93488,18.32598
18,1.08,0.98,1.81757,3.15545,2.99102,1.03698,0.99768,17.74729
18,1.08,0.975,1.76690,3.11383,2.94687,0.98205,0.88791,14.13750
18,1.08,0.97,1.80498,2.97019,3.05001,0.92453,0.97713,14.77164
18,1.08,0.965,1.92222,2.80652,3.15425,0.82099,0.86846,12.13264
18,1.08,0.96,1.92006,2.73160,3.34319,0.85778,0.85567,12.86989
18,1.08,0.955,1.98908,2.93900,2.90781,1.08106,0.86046,15.81240
18,1.08,0.95,1.98371,3.17928,2.83822,1.02500,0.76502,14.03611
18,1.08,0.945,2.35313,3.64616,2.47126,0.93362,1.09268,21.63026
18,1.08,0.94,2.34052,4.93675,2.80528,1.04135,1.02404,34.56548
18,1.08,0.9349999999999999,2.29941,4.73307,3.14758,1.27466,1.04626,45.68479
18,1.08,0.9299999999999999,2.21063,4.22359,3.75126,1.21408,1.14207,48.56406
18,1.08,0.925,2.33996,3.85926,3.73165,1.11781,1.17052,44.09204
18,1.08,0.9199999999999999,2.27860,3.55981,4.52026,1.23487,1.54901,70.13521
18,1.08,0.915,2.21844,3.46182,4.42682,1.06442,2.38000,86.12596
18,1.08,0.91,1.86136,3.54648,4.61346,1.20708,2.22315,81.72603
18,1.08,0.905,1.81454,3.53504,5.07448,1.04473,2.13188,72.49694
18,1.085,0.99,1.68118,2.84485,3.14399,1.20087,0.95914,17.31935
18,1.085,0.985,1.62332,2.81885,2.93697,1.14481,0.94773,14.58118
18,1.085,0.98,1.61628,2.74681,2.76238,1.08978,1.02419,13.68824
18,1.085,0.975,1.58547,2.71058,2.64021,1.00693,0.90921,10.38778
18,1.085,0.97,1.61963,2.58554,2.82744,0.98263,0.89582,10.42246
18,1.085,0.965,1.72484,2.44307,2.92408,0.89518,0.79961,8.81981
18,1.085,0.96,1.72870,2.37785,3.09923,0.93529,0.72356,8.62150
18,1.085,0.955,1.64926,2.68117,2.69561,1.19950,0.84285,12.05089
18,1.085,0.95,1.64480,2.92225,2.63111,1.18303,0.74936,11.21132
18,1.085,0.945,2.28179,3.35138,2.31082,1.07757,1.09812,20.91048
18,1.085,0.94,2.26957,4.53763,2.65840,1.08666,1.03161,30.69029
18,1.085,0.9349999999999999,2.22971,4.35042,2.72636,1.39435,1.05399,38.86630
18,1.085,0.9299999999999999,2.14362,3.88213,3.24926,1.32809,1.15051,41.31584
18,1.085,0.925,2.26903,3.54726,3.26913,1.23326,1.17917,38.26458
18,1.085,0.9199999999999999,2.20953,3.27202,4.02570,1.48926,1.40877,61.06158
18,1.085,0.915,2.15119,3.18194,3.94248,1.28369,2.15903,74.79281
18,1.085,0.91,1.83310,3.30187,4.10870,1.32659,2.01673,66.53229
18,1.085,0.905,1.78699,3.29122,4.62365,1.14816,1.93393,60.38191
18,1.09,0.99,1.66041,2.84825,2.80028,1.18823,1.01095,15.90836
18,1.09,0.985,1.63999,2.82222,2.61590,1.17799,0.99893,14.24716
18,1.09,0.98,1.63981,2.75010,2.48665,1.12136,1.07615,13.53236
18,1.09,0.975,1.60854,2.71383,2.37041,1.03611,0.96680,10.36526
18,1.09,0.97,1.55033,2.58864,2.53851,1.02433,0.97538,10.17859
18,1.09,0.965,1.52896,2.44600,2.41241,0.93317,0.89521,7.53683
18,1.09,0.96,1.64724,2.38070,2.55692,0.97498,0.81825,7.99951
18,1.09,0.955,1.57154,2.68438,2.22393,1.25041,0.95314,11.18150
18,1.09,0.95,1.56729,2.92575,2.22315,1.23324,0.89464,11.24736
18,1.09,0.945,2.00699,3.35540,1.97366,1.12330,1.19862,17.89532
18,1.09,0.94,1.99624,4.54307,2.25622,1.13277,1.12602,26.09951
18,1.09,0.9349999999999999,1.96118,4.35564,2.40119,1.45556,1.12602,33.61793
18,1.09,0.9299999999999999,1.88546,3.88679,2.92087,1.38639,1.22437,36.33407
18,1.09,0.925,2.02758,3.55151,3.15578,1.28740,1.31179,38.37732
18,1.09,0.9199999999999999,1.99970,3.27594,3.88612,1.58705,1.39467,56.34801
18,1.09,0.915,1.99706,3.18576,3.85626,1.36798,1.75729,58.97841
18,1.09,0.91,1.70175,3.30582,3.64850,1.41369,1.64147,47.62976
18,1.09,0.905,1.65895,3.29516,4.10577,1.28824,1.57408,45.51203
18,1.095,0.99,1.74012,2.45749,2.57625,1.06897,1.02889,12.11691
18,1.095,0.985,1.73134,2.43503,2.40983,1.06446,1.01665,10.99446
18,1.095,0.98,1.73114,2.37280,2.37490,1.04370,1.08784,11.07592
18,1.095,0.975,1.69814,2.34151,2.27453,0.94700,1.02985,8.82030
18,1.095,0.97,1.64048,2.23350,2.41850,0.84008,1.04128,7.75158
18,1.095,0.965,1.61788,2.11042,2.28356,0.76532,0.97947,5.84466
18,1.095,0.96,1.74303,2.05409,2.48403,0.80003,0.90511,6.44004
18,1.095,0.955,1.67394,2.65878,2.17632,1.09349,0
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment