Histogram (variable bins)
40 bins
1.6
6.56
11.52
16.48
21.44
26.4
0
200
400
Histogram using Layer Cake's bin function. Each bin has x0 and x1 edges, so the x accessor is both of them and each column spans its bin. Drag the slider to change how many bins there are.
This is the server-side rendered version. ssr and percentRange on <LayerCake> put the scales in percentages, so the chart renders before the browser measures it. The axes are HTML components and the marks sit in a <ScaledSvg> that stretches to fit its box.
- +page.svelte
- ./_components/Column.svelte
- ./_components/AxisX.percent-range.html.svelte
- ./_components/AxisY.percent-range.html.svelte
- ./_modules/calcThresholds.js
- ./_data/unemployment.js
<script>
import { LayerCake, ScaledSvg, Html, bin, takeEvery } from 'layercake';
import { scaleBand } from 'd3-scale';
import { format } from 'd3-format';
import Column from './_components/Column.svelte';
import AxisX from './_components/AxisX.percent-range.html.svelte';
import AxisY from './_components/AxisY.percent-range.html.svelte';
import calcThresholds from './_modules/calcThresholds.js';
import data from './_data/unemployment.js';
const f = format('.2f');
// Each bin has x0 and x1 edges, so the x accessor is both and each column spans them
const xKey = ['x0', 'x1'];
const yKey = 'length';
let binCount = $state(40);
/** @type {[number, number]} */
const domain = [Math.min(...data), Math.max(...data)];
let thresholds = $derived(calcThresholds(domain, binCount));
let slimThresholds = $derived(takeEvery(thresholds, 5));
let binnedData = $derived(
bin(data, d => d, {
domain,
thresholds
})
);
</script>
<div class="input-container" style="position: absolute;right:10px;z-index: 9;">
<input style="margin:0;" type="range" min="4" max="100" step="4" bind:value={binCount} />
<span
class="counter-container"
style="display:inline-block;vertical-align:top;width: 70px;text-align:right;"
>{binCount} bins</span
>
</div>
<div class="chart-container">
<LayerCake
ssr
percentRange
padding={{ top: 20, right: 5, bottom: 20, left: 30 }}
x={xKey}
y={yKey}
xDomain={thresholds}
xScale={scaleBand().paddingInner(0)}
yDomain={[0, null]}
data={binnedData}
>
<Html>
<AxisX gridlines={false} showBaseline ticks={slimThresholds} format={d => String(+f(d))} />
<AxisY gridlines={false} ticks={3} />
</Html>
<ScaledSvg>
<Column fill="#fff" stroke="#000" strokeWidth={1} />
</ScaledSvg>
</LayerCake>
</div>
<style>
/* Give the wrapper a width and height. LayerCake fills it. */
.chart-container {
width: 100%;
height: 250px;
}
input {
height: auto;
}
</style><!--
@component
Generates an SVG column chart.
-->
<script>
import { getLayerCakeContext } from 'layercake';
const k = getLayerCakeContext();
/**
* @typedef {Object} Props
* @property {string} [fill='#00e047'] - The shape's fill color, used for every column. Set a `c` scale on `<LayerCake>` to color each column from its own row of data instead.
* @property {string} [stroke='#000'] - The shape's stroke color.
* @property {number} [strokeWidth=0] - The shape's stroke width.
* @property {boolean} [showLabels=false] - Show the numbers for each column.
*/
/** @type {Props} */
let { fill, stroke = '#000', strokeWidth = 0, showLabels = false } = $props();
// Use the `fill` prop if there is one, then the `c` scale's color, then the default
/** @param {any} d */
function getFill(d) {
return fill ?? k.cGet?.(d) ?? '#00e047';
}
// A histogram passes a [start, end] pair through the x accessor, so the column spans the two
/** @param {any} d */
function columnWidth(d) {
const vals = k.xGet(d);
return Math.abs(vals[1] - vals[0]);
}
// Each column starts at zero and runs out to its value, so a negative value
// hangs below zero. Keep zero inside your yDomain, or columns will be drawn
// outside the chart.
let zeroY = $derived(k.yScale(0));
</script>
<g class="column-group">
{#each k.data as d, i}
{@const valueY = k.yGet(d)}
{@const xGot = k.xGet(d)}
{@const xPos = Array.isArray(xGot) ? xGot[0] : xGot}
{@const colWidth = k.xScale.bandwidth ? k.xScale.bandwidth() : columnWidth(d)}
{@const yValue = k.y(d)}
<rect
class="group-rect"
data-id={i}
data-range={k.x(d)}
data-count={yValue}
x={xPos}
y={Math.min(zeroY, valueY)}
width={colWidth}
height={Math.abs(valueY - zeroY)}
fill={getFill(d)}
{stroke}
stroke-width={strokeWidth}
/>
{#if showLabels && yValue != null}
{@const pointsUp = valueY < zeroY}
<!--
Put the number just past the far end of the column: above a positive
column and below a negative one. Switching the text baseline keeps the
gap the same at any font size.
-->
<text
x={xPos + colWidth / 2}
y={valueY}
dy={pointsUp ? -5 : 5}
text-anchor="middle"
dominant-baseline={pointsUp ? 'auto' : 'hanging'}>{yValue}</text
>
{/if}
{/each}
</g>
<style>
text {
font-size: 12px;
}
</style><!--
@component
Generates an HTML x-axis along the bottom of the chart, for server-side rendered charts. If the x scale is a band scale, each tick sits in the middle of its band.
Positions are percentages when `percentRange={true}` and pixels otherwise, so this also works in a client-side chart with no setup. Set the `units` prop to `'%'` or `'px'` to override that.
-->
<script>
import { getLayerCakeContext } from 'layercake';
const k = getLayerCakeContext();
/**
* @typedef {Object} Props
* @property {boolean} [tickMarks=false] - Show a vertical mark at each tick.
* @property {boolean} [gridlines=true] - Show gridlines extending into the chart area.
* @property {number} [tickMarkLength=6] - The length of the tick mark.
* @property {boolean} [showBaseline=false] - Show a solid line along the bottom of the chart.
* @property {boolean} [snapLabels=false] - Instead of centering the text labels on the first and the last items, align them to the edges of the chart.
* @property {(d: any) => string} [format=d => d] - Formats a tick value for display.
* @property {number|Array<any>|((ticks: Array<any>) => Array<any>)} [ticks] - If this is a number, it passes that along to the [d3Scale.ticks](https://github.com/d3/d3-scale) function. If this is an array, hardcodes the ticks to those values. If it's a function, passes along the default tick values and expects an array of tick values in return. If nothing, it uses the default ticks supplied by the D3 function.
* @property {number} [tickGutter=0] - The gap in pixels between the bottom of the chart area and the start of the tick.
* @property {number} [dx=0] - Horizontal offset of the label in pixels.
* @property {number} [dy=0] - Vertical offset of the label in pixels.
* @property {'px'|'%'} [units] - Position with pixels or percentages. Defaults to `'%'` when `percentRange={true}`, otherwise `'px'`.
*/
/** @type {Props} */
let {
tickMarks = false,
gridlines = true,
tickMarkLength = 6,
showBaseline = false,
snapLabels = false,
format = d => d,
ticks = undefined,
tickGutter = 0,
dx = 0,
dy = 0,
units = k.percentRange === true ? '%' : 'px'
} = $props();
let tickLen = $derived(tickMarks === true ? (tickMarkLength ?? 6) : 0);
let isBandwidth = $derived(typeof k.xScale.bandwidth === 'function');
/** @type {Array<any>} */
let tickVals = $derived(
Array.isArray(ticks)
? ticks
: isBandwidth
? k.xScale.domain()
: typeof ticks === 'function'
? ticks(k.xScale.ticks())
: k.xScale.ticks(ticks)
);
let halfBand = $derived(isBandwidth ? k.xScale.bandwidth() / 2 : 0);
</script>
<div class="axis x-axis" class:snapLabels>
{#if showBaseline === true}
<div class="baseline" style="top:100%; width:100%;"></div>
{/if}
{#each tickVals as tick, i (tick)}
{@const tickValUnits = k.xScale(tick)}
{#if gridlines === true}
<div
class="gridline"
style:left="{tickValUnits + halfBand}{units}"
style="top:0; bottom:0;"
></div>
{/if}
{#if tickMarks === true}
<div
class="tick-mark"
style:left="{tickValUnits + halfBand}{units}"
style:height="{tickLen}px"
style:bottom="{-tickLen - tickGutter}px"
></div>
{/if}
<div
class="tick tick-{i}"
style:left="{tickValUnits + halfBand}{units}"
style="top:calc(100% + {tickGutter}px);"
>
<div
class="text"
style:top="{tickLen}px"
style:transform="translate(calc(-50% + {dx}px), {dy}px)"
>
{format(tick)}
</div>
</div>
{/each}
</div>
<style>
.axis,
.tick,
.tick-mark,
.gridline,
.baseline {
position: absolute;
}
.axis {
width: 100%;
height: 100%;
}
.tick {
font-size: 11px;
}
.gridline {
border-left: 1px dashed #aaa;
}
.tick-mark {
border-left: 1px solid #aaa;
}
.baseline {
border-top: 1px solid #aaa;
}
.tick .text {
color: #666;
position: relative;
white-space: nowrap;
transform: translateX(-50%);
}
/* Snapped end labels sit 40% inside their edge instead of centered on it */
.axis.snapLabels .tick:last-child {
transform: translateX(-40%);
}
.axis.snapLabels .tick.tick-0 {
transform: translateX(40%);
}
</style><!--
@component
Generates an HTML y-axis along the left edge of the chart, for server-side rendered charts. If the y scale is a band scale, each tick sits in the middle of its band.
Positions are percentages when `percentRange={true}` and pixels otherwise, so this also works in a client-side chart with no setup. Set the `units` prop to `'%'` or `'px'` to override that.
-->
<script>
import { getLayerCakeContext } from 'layercake';
const k = getLayerCakeContext();
/**
* @typedef {Object} Props
* @property {boolean} [tickMarks=false] - Show a horizontal mark at each tick.
* @property {'even'|'above'} [labelPosition='even'] - Whether the label sits level with its tick ('even') or above it ('above').
* @property {boolean} [snapBaselineLabel=false] - When labelPosition='even', adjust the lowest label so that it sits above the tick mark.
* @property {boolean} [gridlines=true] - Show gridlines extending into the chart area.
* @property {number} [tickMarkLength] - Length of the tick mark in pixels. Defaults to the width of the widest label when `labelPosition` is 'above', otherwise 6.
* @property {(d: any) => string} [format=d => d] - Formats a tick value for display.
* @property {number|Array<any>|((ticks: Array<any>) => Array<any>)} [ticks=4] - If this is a number, it passes that along to the [d3Scale.ticks](https://github.com/d3/d3-scale) function. If this is an array, hardcodes the ticks to those values. If it's a function, passes along the default tick values and expects an array of tick values in return.
* @property {number} [tickGutter=0] - The gap in pixels between the left edge of the chart area and the tick.
* @property {number} [dx=0] - Horizontal offset of the label in pixels.
* @property {number} [dy=-3] - Vertical offset of the label in pixels.
* @property {number} [charPixelWidth=7.25] - Used to calculate the widest label length to offset labels. Adjust if the automatic tick length doesn't look right because you have a bigger font (or just set `tickMarkLength` to a pixel value).
* @property {'px'|'%'} [units] - Position with pixels or percentages. Defaults to `'%'` when `percentRange={true}`, otherwise `'px'`.
*/
/** @type {Props} */
let {
tickMarks = false,
labelPosition = 'even',
snapBaselineLabel = false,
gridlines = true,
tickMarkLength = undefined,
format = d => d,
ticks = 4,
tickGutter = 0,
dx = 0,
dy = -3,
charPixelWidth = 7.25,
units = k.percentRange === true ? '%' : 'px'
} = $props();
/** @param {number} sum
* @param {string} val */
function calcStringLength(sum, val) {
if (val === ',' || val === '.') return sum + charPixelWidth * 0.5;
return sum + charPixelWidth;
}
let isBandwidth = $derived(typeof k.yScale.bandwidth === 'function');
/** @type {Array<any>} */
let tickVals = $derived(
Array.isArray(ticks)
? ticks
: isBandwidth
? k.yScale.domain()
: typeof ticks === 'function'
? ticks(k.yScale.ticks())
: k.yScale.ticks(ticks)
);
let widestTickLen = $derived(
Math.max(
10,
Math.max(...tickVals.map(d => format(d).toString().split('').reduce(calcStringLength, 0)))
)
);
let tickLen = $derived(
tickMarks === true
? labelPosition === 'above'
? (tickMarkLength ?? widestTickLen)
: (tickMarkLength ?? 6)
: 0
);
let x1 = $derived(-tickGutter - (labelPosition === 'above' ? widestTickLen : tickLen));
let halfBand = $derived(isBandwidth ? k.yScale.bandwidth() / 2 : 0);
let maxTickValUnits = $derived(Math.max(...tickVals.map(k.yScale)));
</script>
<div class="axis y-axis">
{#each tickVals as tick, i (tick)}
{@const tickValUnits = k.yScale(tick)}
<div
class="tick tick-{i}"
style="left:{k.xRange ? k.xRange[0] : 0}{units};top:{tickValUnits + halfBand}{units};"
>
{#if gridlines === true}
<div class="gridline" style="top:0;" style:left="{x1}px" style:right="0px"></div>
{/if}
{#if tickMarks === true}
<div class="tick-mark" style:top="0" style:left="{x1}px" style:width="{tickLen}px"></div>
{/if}
<div
class="text"
style:top="0"
style:text-align={labelPosition === 'even' ? 'right' : 'left'}
style:width="{widestTickLen}px"
style:left="{-widestTickLen - tickGutter - (labelPosition === 'even' ? tickLen : 0)}px"
style:transform="translate({dx + (labelPosition === 'even' ? -3 : 0)}px, calc(-50% + {dy +
(labelPosition === 'above' ||
(snapBaselineLabel === true && tickValUnits === maxTickValUnits)
? -3
: 4)}px))"
>
{format(tick)}
</div>
</div>
{/each}
</div>
<style>
.axis,
.tick,
.tick-mark,
.gridline,
.text {
position: absolute;
}
.axis {
width: 100%;
height: 100%;
}
.tick {
font-size: 11px;
width: 100%;
}
.gridline {
border-top: 1px dashed #aaa;
}
.tick-mark {
border-top: 1px solid #aaa;
}
.tick .text {
color: #666;
}
</style>/**
* @param {[number, number]} [domain]
* @param {number} [n]
* @returns {number[]}
*/
export default function calcThresholds(domain = [0, 1], n = 1) {
const breaks = [domain[0]];
const brk = (domain[1] - domain[0]) / n;
while (breaks[breaks.length - 1] < domain[1]) {
const node = breaks[breaks.length - 1] + brk;
breaks.push(node);
}
return breaks;
}export default [
5.1, 4.9, 8.6, 6.2, 5.1, 7.1, 6.7, 6.1, 5, 5, 5.2, 7.9, 11.1, 5.9, 5.5, 5.6, 6.5, 7.7, 5.7, 6.7,
5.7, 4.8, 5.6, 9.5, 5.7, 4.7, 6.3, 5.7, 6.6, 5.5, 5.4, 9.3, 7.6, 6.3, 5.6, 5.9, 5.5, 5.2, 6, 6.4,
4.9, 5, 10.3, 7.2, 4.9, 6.9, 6.1, 5.1, 6.5, 8.6, 5.6, 5.2, 10.9, 6.7, 6.4, 5.7, 5.3, 5, 4.2, 7.3,
6.4, 5.1, 5.5, 7.2, 8.3, 13.9, 7, 1.9, 2.2, 5, 14.1, 5.6, 3.2, 8.1, 4.9, 5.9, 7.3, 3.6, 6.9, 4.4,
4.8, 21.7, 9.2, 7.4, 13.6, 6.9, 16.5, 5.7, 9.4, 3, 3, 8.7, 5.4, 5.4, 5.8, 16.4, 11.8, 6.5, 6.4,
7.6, 7.3, 7.7, 6.6, 4.9, 7, 8.5, 5.4, 5.9, 13, 5, 24.4, 3.2, 6.3, 4.1, 2.7, 3.3, 5.9, 5.1, 2.8, 6,
4.5, 5, 5.7, 4.4, 5.7, 5.9, 3.1, 3.7, 4.4, 3.9, 5, 5.1, 5.7, 3.7, 3.9, 3.9, 4, 3.2, 4, 3.7, 3.6,
3.4, 5, 5.3, 5.9, 5.9, 4.8, 6.2, 4.5, 4.5, 4.9, 5.1, 4.4, 3.2, 3, 3.8, 4.3, 7.1, 4.5, 4.6, 3.7,
3.6, 5.6, 4.4, 5.5, 3.8, 4.1, 4.7, 4.7, 3.7, 3.5, 4.6, 5, 3, 3.7, 4.3, 3.5, 4.8, 5.2, 4.8, 5.6,
6.4, 2.6, 4.8, 5.3, 4.4, 4.6, 7.3, 5.7, 6.6, 5.7, 10, 4.7, 7.3, 5.1, 8.7, 7.9, 5.1, 26.4, 4.9,
9.7, 8.9, 6.3, 6.1, 5.3, 8.2, 3.5, 5.4, 5, 9.2, 6.6, 5.2, 5.6, 4, 4.8, 4.3, 4.7, 7.1, 6.9, 5.7,
6.2, 6.2, 5, 3.5, 7.7, 4.5, 3.2, 4.8, 4, 5.7, 6.8, 6.6, 7.1, 5.7, 4.1, 7.9, 7.9, 7.4, 5.9, 10.6,
6.1, 5.7, 5.5, 8, 3.6, 4.3, 3.2, 3.1, 1.8, 3.1, 2.9, 3.1, 2.4, 2.7, 3.3, 4.9, 4.8, 3.6, 3, 4.7,
3.2, 4.1, 2.8, 2.5, 2.6, 3.9, 5.1, 3.3, 2.6, 2.3, 2.1, 2, 6.2, 2.3, 3.1, 2.1, 1.8, 2.6, 2.9, 2.9,
5, 2.5, 3.3, 5.3, 1.7, 3.6, 4.5, 3.9, 3.5, 4.6, 3.2, 2.7, 2.3, 2.7, 3.5, 4.9, 5.1, 5.1, 2.6, 5.9,
2.4, 2.4, 2.2, 2.1, 3.7, 2.1, 3.5, 2.2, 5.2, 6, 4.8, 4.8, 6.1, 5.4, 4.8, 5.8, 5.1, 4.5, 3.7, 6.5,
4.4, 4.7, 4.6, 4.2, 5.2, 4.6, 5.9, 5.3, 6.8, 4.4, 5.3, 4.8, 6.1, 5.3, 5.1, 5, 5.4, 4.1, 6.3, 5.1,
6.9, 4.3, 4.4, 7.2, 11.5, 6, 6.9, 4.5, 5.6, 6.6, 5.4, 5.3, 3.8, 4.7, 4.7, 4.7, 5.2, 5.4, 5.3, 4.6,
5.9, 5, 5.6, 3.1, 4.6, 3.9, 5.8, 4.3, 5, 5.1, 5.1, 4.3, 5.8, 6, 3.6, 6, 4.6, 4.5, 4.2, 6.7, 5.1,
5.5, 4.6, 5, 4.1, 4.1, 5, 6.9, 4.6, 5.2, 8.3, 7.2, 4.8, 4.6, 5, 8.1, 6.1, 5.7, 7.6, 6.6, 4.8, 4.8,
5.6, 7.5, 5.2, 6, 5.7, 4.7, 5.9, 4.8, 5.8, 5, 8.6, 6.1, 4.1, 5.4, 9.6, 6.4, 6, 4.4, 5.6, 5.3, 4.8,
5.2, 4.9, 5.5, 5.9, 5.1, 4.5, 6.5, 5.2, 7, 5.5, 6.8, 5.3, 6.7, 4.5, 4.7, 6.2, 7.4, 4.8, 5, 4.7,
5.9, 4.1, 5.5, 5.2, 5.4, 6.3, 5, 5.3, 5.4, 5.9, 4.6, 5, 4.4, 8.9, 5.6, 4.7, 5.3, 5.8, 5.4, 5.3,
7.3, 4.1, 4.7, 6.3, 7, 7.1, 6, 4.6, 6.4, 5.3, 6.4, 4.8, 5.7, 5.7, 5.6, 5.2, 5, 7.2, 5.5, 7.6, 4.7,
6.9, 6.8, 5.5, 6.3, 4.9, 7.1, 4.8, 6.6, 6.6, 5.8, 4, 4.5, 4.5, 6.4, 4.8, 5.3, 5.1, 5.7, 5.6, 6.8,
7.7, 5.4, 8.6, 6.5, 5.5, 6.4, 6.9, 7.5, 6.5, 5.9, 5.8, 7.4, 6.6, 6.6, 5.4, 7, 7.7, 6, 6.3, 5.6,
7.3, 6.3, 7.3, 5, 6.4, 8.2, 4.5, 6.2, 5.3, 4.7, 5.4, 7, 6.3, 6.6, 8.6, 8.5, 4.4, 5.7, 6.8, 6.7, 6,
5.8, 4.1, 3, 3.4, 3.4, 3.5, 4.9, 3.6, 3.4, 4.6, 3.7, 2.8, 4.9, 4.3, 3.2, 4.1, 3.7, 2.6, 4.4, 3.2,
2.9, 3.3, 5.9, 4.1, 4.2, 2.9, 3.2, 4.3, 3, 4.8, 3.1, 2.8, 4, 3.2, 4.8, 6.9, 3.6, 2.9, 3.1, 3.1,
3.1, 3.7, 4.1, 4.2, 5.9, 2, 3.4, 4.2, 5.3, 4.7, 9.5, 4.7, 5.8, 3.2, 5.8, 5.7, 4.8, 4.8, 5, 5.8,
5.5, 6.4, 4.1, 6, 5.7, 5.6, 5, 5, 5.6, 4.6, 4.4, 6.1, 5.2, 4.5, 6, 5.3, 8, 6.9, 7.6, 5.3, 5.9,
6.1, 6.9, 8.1, 5.8, 5.4, 4.9, 5.5, 6.2, 6.5, 5.5, 4.4, 8.3, 5.1, 6.1, 4.7, 5.6, 4.8, 6.2, 7.6,
4.8, 5.2, 5.1, 6.8, 4.6, 5.1, 6.6, 5.5, 6, 6.2, 5.9, 7.1, 7.4, 3.9, 5.3, 3.9, 6.3, 4.6, 4.5, 5.3,
6.6, 6.9, 4.8, 4.4, 6.8, 8.6, 5.2, 4.8, 5.8, 6, 6.2, 8.1, 4.6, 4.9, 4.3, 5.6, 6.7, 5.6, 6, 7.1,
7.1, 6.5, 5.2, 3.8, 8.4, 6.2, 5.8, 5.4, 6.2, 6.4, 4.9, 3.8, 4.3, 3.6, 4.3, 5.7, 3.6, 3.8, 4.4,
4.7, 4.4, 5, 4, 5.6, 3.6, 4.7, 3.6, 4.2, 5.5, 3.3, 4, 5.9, 4.4, 5.9, 4.2, 4.8, 3.8, 5.1, 6.6, 3.4,
4, 4.4, 3.6, 4.7, 4.8, 4.2, 4, 5.1, 4.7, 5, 4.8, 3.8, 4.5, 4, 3.7, 6.6, 6, 5.6, 4.9, 4.7, 3.9,
4.1, 4.8, 5.1, 4.1, 4.2, 5.3, 4.2, 4.9, 5.2, 5.4, 5.1, 4.9, 4.6, 5.3, 4.3, 4.6, 4.5, 4.5, 4.5, 4,
5, 4.9, 4, 4.2, 5.2, 3.8, 6.1, 5.3, 4.3, 3.8, 4.2, 4.4, 6.5, 5.7, 4.5, 5, 4.4, 4.6, 4.9, 3.6, 3.9,
4, 3.4, 2.9, 4.9, 5.7, 3.7, 4, 5.8, 3.4, 4.2, 4.6, 4.4, 4.5, 4.7, 3.1, 3, 3.8, 4.4, 4.1, 4.6, 3.4,
4.1, 4.2, 6.1, 5.2, 3.2, 5.3, 3.5, 3.7, 5.9, 3.5, 4, 4.2, 5, 3.9, 3.8, 4.1, 4.3, 3.7, 3.6, 4, 3,
4.2, 3.7, 4.4, 3.6, 3.2, 2.8, 3.2, 4.5, 4, 4.6, 3.2, 4.4, 5.1, 3, 8.1, 4.3, 4.5, 3.8, 2.3, 3.7,
4.3, 3.4, 4.9, 4, 3, 4.6, 5.4, 4.2, 4.4, 3, 3.1, 6.4, 3.9, 2.9, 3.4, 4.1, 3.8, 4, 3.7, 3, 5.4,
3.2, 2.4, 2.9, 4.2, 3.9, 4.4, 4.9, 7.4, 3.8, 3.5, 4.6, 4.7, 4.1, 3.6, 4.2, 3.5, 4.5, 6.9, 4.6,
7.4, 4.4, 5, 5.7, 4.2, 4.6, 4.6, 5.9, 5.2, 3.3, 3, 4.8, 5.1, 8.2, 3.2, 5.1, 5.4, 4.7, 4.7, 4.7,
4.1, 3.3, 6.8, 3.4, 4.3, 3.5, 3.6, 4.8, 6.4, 3, 5, 3.9, 2.6, 2.7, 5.7, 3.2, 4, 6.3, 2.8, 2.7, 4,
4.1, 4.5, 3.7, 3.7, 4.8, 3.5, 6.2, 3.9, 4.5, 4, 7, 3.2, 4.3, 3.9, 5.9, 3.6, 2.9, 4.3, 3.1, 6.9,
4.3, 4.6, 3, 8.1, 4.1, 2.9, 4.6, 4.1, 4.5, 3.6, 3.6, 4.1, 5, 2.6, 5.2, 3.2, 4.8, 3.7, 5.5, 4.7,
4.6, 4, 2.7, 5.2, 4.9, 4.5, 2.9, 3.8, 3.7, 5, 3.3, 4.7, 4.9, 3.2, 4.2, 3.8, 3.3, 3.9, 2.6, 6.9,
6.9, 6.1, 6.1, 3.9, 3.6, 9, 4.3, 6.5, 8.3, 3.5, 4.6, 8.3, 4.5, 5.4, 8.3, 5.7, 3.8, 4.8, 5, 4.1,
3.5, 6.8, 5, 10.6, 4.4, 6, 4.5, 9.7, 6.4, 5.2, 4.6, 4, 5.4, 11.7, 5.2, 3.3, 5.5, 10.4, 3.6, 6.6,
4.4, 4.3, 4.2, 6.4, 6.2, 4, 8.8, 4.7, 4.1, 11.6, 4.4, 4.4, 4.5, 3.9, 5.1, 5.5, 6.9, 4.2, 3.6, 9.2,
3.8, 10.5, 7.5, 3.9, 5.8, 10.6, 8.3, 13.2, 11.8, 8.4, 5.6, 6.7, 4.2, 5.6, 5.7, 7.3, 4.5, 3.8,
16.3, 4.3, 5.5, 9, 6, 4.7, 7.1, 4.4, 3.8, 3.6, 6, 6.8, 6.7, 4.3, 4.9, 6.3, 3.1, 3.8, 8.7, 4.3,
10.4, 10.3, 6.9, 5, 6.1, 5.3, 5.3, 7.6, 3.6, 3.3, 4.2, 3.5, 4.8, 3.9, 5, 5.4, 6.4, 3.5, 4, 6.8,
5.5, 6.4, 9.5, 3, 7.9, 7.5, 5.3, 9, 7.8, 6.7, 8, 5.9, 7.4, 5.5, 8.4, 4.8, 9.6, 7.5, 9.2, 8, 5.7,
11.8, 6.2, 8.5, 9.6, 7.8, 9.7, 7.4, 6.3, 5.9, 6.7, 6.7, 6.7, 6.7, 7.5, 5.3, 9.4, 10.4, 8.1, 6.7,
6.7, 5.9, 7.2, 6.9, 6.8, 7.7, 7.3, 6.9, 6, 8.5, 8.1, 7.5, 8.9, 8.3, 10.1, 5.7, 7.5, 10.5, 7.3,
6.9, 7.9, 8.1, 7.9, 9.4, 6.1, 12, 5.5, 8.5, 3.2, 4.8, 2.6, 4, 3.2, 3.2, 2.7, 2.9, 4.2, 4, 4.8,
2.6, 4.9, 3.6, 4.6, 2.9, 6.4, 4, 4.7, 4.1, 4.8, 3.8, 5.3, 4.7, 6.2, 3.9, 5.2, 4.3, 3.4, 4.7, 3.4,
4.6, 3.8, 4.5, 6.5, 4, 5.2, 5.5, 5.8, 6.9, 3.4, 3.9, 4.7, 2.7, 3.9, 3.3, 5.3, 3.6, 3.2, 1.8, 3.4,
4, 3.7, 4.1, 5.8, 6.1, 3.3, 5, 5, 6.3, 6.8, 3.5, 4.7, 4.6, 4.4, 4.4, 4.4, 4.2, 3.7, 4, 6, 6, 3.4,
6.2, 5.5, 4.5, 3.6, 4.1, 5, 5.8, 5.5, 3.4, 4.5, 4.9, 5.2, 4.3, 4, 3.6, 5.8, 4.7, 4.2, 4.6, 3.7,
5.4, 3.2, 6.4, 6, 6.4, 3.5, 4.4, 4.6, 4.4, 3.1, 5.9, 4.9, 4.9, 4.2, 4.9, 5.1, 4.1, 4.8, 4.3, 4.5,
7.6, 4.8, 4.2, 4.7, 5, 6.3, 6.6, 4.9, 5.6, 4.9, 3, 6.6, 6.8, 4.6, 6.5, 3.7, 5.2, 7, 4.6, 5.3, 4.6,
3.5, 7.3, 5.1, 5.1, 3.8, 3.8, 4.8, 3.7, 4, 3.3, 3.9, 4.9, 3.4, 5.6, 4, 3.9, 3.2, 7.6, 3.1, 7.9,
4.3, 3.5, 3.6, 3, 3.9, 3.7, 3.7, 3.7, 4.1, 3.5, 3.4, 5.5, 4.2, 7.7, 4, 5.1, 3.5, 4.2, 7.7, 3.9,
4.3, 4.5, 3.7, 3.2, 3.4, 4.1, 5.2, 5.6, 3.9, 4, 4.8, 4.5, 3, 3.3, 2.9, 3.6, 4.6, 3, 3.6, 4.3, 4.8,
3, 4.4, 2.8, 3.8, 6.3, 4, 5.2, 3.6, 2.2, 4.3, 5.7, 3.2, 3.6, 3.7, 3.5, 3.8, 2.7, 4.8, 3.9, 3, 3.2,
5.1, 4, 3.4, 5.1, 3.4, 3.7, 3.5, 3.7, 8.2, 5, 7.1, 6.5, 6.5, 7.4, 5.2, 7.3, 6.3, 5.3, 12.3, 6.4,
7.8, 8.1, 6.4, 5.6, 4.1, 5.8, 6.8, 7.7, 8, 4.9, 5.9, 5.3, 5.2, 10.9, 11.2, 9.9, 4.8, 6.4, 7.8,
15.4, 9.3, 5.9, 8.2, 4.9, 4.5, 5.8, 7.4, 5.6, 4.8, 9, 5.8, 5.9, 4.2, 6.8, 5.7, 6.3, 6.3, 5.4, 5.9,
8, 5.6, 6.7, 5.9, 7, 6.7, 4.5, 5.3, 8.3, 3.8, 4.5, 8, 5.5, 5.1, 6.8, 8.4, 5.7, 5.4, 5.2, 5.1, 6.1,
4.2, 7.9, 6.4, 9.2, 7.6, 6.1, 10.1, 7.4, 6, 7, 6.7, 4.5, 5.9, 5.1, 5.3, 6, 6, 7.3, 6.2, 4.1, 4.9,
6.9, 5.6, 5.2, 5.5, 5.3, 5.9, 7.8, 5, 6.4, 5.1, 4.5, 8.7, 4.5, 5, 4.6, 5.7, 5.9, 5.6, 6.5, 4.6,
5.1, 6.6, 7.3, 9.1, 4.9, 5, 4.7, 4.6, 5.6, 4.7, 5.9, 6.6, 4, 5.4, 7.2, 8.4, 6, 5.2, 4.9, 6.1, 4.1,
6.2, 4.9, 5.4, 4.9, 4.8, 9, 4.5, 4.9, 6, 6.9, 6.8, 5, 5, 5.4, 7.7, 4.9, 5.5, 5.1, 6.4, 9.9, 5.5,
6, 7, 4.2, 8.8, 9.9, 4.3, 6.1, 5.6, 5.4, 4.4, 6.4, 6.8, 5.1, 4.4, 6.6, 5.5, 8.1, 8.4, 4.1, 7.3,
5.8, 6.7, 5.1, 5.8, 7.6, 4.6, 6.9, 8, 4.8, 7.1, 6, 7.4, 6.1, 7.6, 5.8, 4.6, 7.2, 6.1, 5.9, 3.6,
7.3, 6.6, 2.9, 7.7, 4.4, 4.3, 3.5, 2.4, 3.8, 3.6, 3.7, 2.3, 4, 4.2, 3.1, 3.3, 4.8, 2.3, 2.4, 9,
3.2, 5.5, 4.9, 4.5, 2.7, 4.8, 3.3, 3.1, 7.9, 2.1, 3.1, 4.2, 7.1, 3.5, 4.3, 3.3, 3.1, 4.6, 4.7,
2.5, 4.5, 3, 4.5, 4.9, 6.2, 6.8, 7, 3.2, 4.3, 3.9, 2.9, 3.5, 3.3, 4.1, 3, 4.9, 4.6, 3.7, 3.3, 2.5,
5.4, 4.2, 4.1, 2.8, 3.6, 2.8, 3.5, 2.8, 3.6, 3.2, 3.5, 2.8, 2.5, 2.5, 3.3, 3, 3.2, 3.2, 2.6, 4.5,
3.4, 3, 3.4, 3.4, 3.3, 3.5, 2.5, 2.8, 3.3, 2.8, 3.3, 3.5, 3.2, 2.7, 2.7, 2.6, 3.7, 3.4, 2.9, 2.9,
2.8, 4.1, 3.1, 2.7, 2.9, 2.7, 3.1, 2.4, 3, 2.3, 4.3, 2.8, 3, 3.2, 3, 3.7, 2.5, 3, 3.7, 3.5, 2.9,
4.3, 3, 3.6, 2.4, 2.5, 2.8, 2.5, 3.5, 2.7, 3.2, 3.3, 2.6, 3.1, 3.1, 3.2, 3.8, 3.1, 3.4, 3.3, 2.6,
2.7, 2.8, 3.2, 4.6, 2.9, 3.2, 3.4, 3.7, 2.7, 2.9, 5.8, 6, 5.3, 4.4, 4.7, 5.1, 5.5, 5.9, 5.3, 7.3,
8.6, 7.5, 6, 5.8, 4.9, 4.6, 6, 2.6, 2.8, 2.9, 3.5, 2.4, 3.2, 2.6, 3.1, 2.7, 2.5, 7.1, 4.7, 5, 6,
5.7, 7.9, 6.6, 5.6, 5.2, 4.1, 4.9, 4.9, 4.8, 4.2, 5.4, 6.8, 6.8, 4.4, 5, 5.6, 5.1, 6.2, 6.9, 6.9,
9.1, 5.6, 5.4, 5, 7.1, 7.2, 6.6, 6.4, 7.3, 5.4, 9.8, 6, 4.5, 10, 9.8, 8, 6.4, 7, 7.3, 6.1, 7.1,
9.4, 8.1, 5.5, 7.8, 8, 8.3, 9.3, 4.5, 7.6, 4, 4.9, 7.8, 5, 5.2, 4.4, 5.1, 5.2, 4.4, 5.1, 3.3, 4.6,
4.9, 4, 4.6, 4.1, 4.8, 5.2, 3.8, 4.5, 2.9, 4.4, 5.1, 5.9, 5.4, 4.2, 4.6, 4.6, 5.2, 3.8, 4.9, 5.2,
4.3, 4.2, 3.7, 4.2, 5.2, 5.7, 4.3, 3.9, 5, 4.1, 5.9, 4.1, 5.8, 3.5, 4.2, 4.7, 4.6, 3.8, 5, 4.3,
4.1, 4.5, 3.7, 4.3, 4.1, 3.8, 4.5, 4.2, 4.1, 3.7, 4.8, 4.5, 5.1, 5.9, 4.5, 4.8, 5.6, 6.4, 6.7,
5.7, 3.9, 5.1, 4.6, 5.3, 5.3, 4.7, 5.5, 4.9, 4.3, 5.4, 6.5, 5.1, 5.6, 6.1, 5.1, 6.3, 4.6, 4.2,
4.9, 4.6, 5.4, 4.5, 8.5, 4.9, 5.1, 5.3, 5.2, 7.1, 4.4, 5, 5.3, 7.8, 5.8, 4.4, 4.3, 6.5, 6.5, 6.4,
4.7, 5.1, 4.5, 5.1, 5.7, 5.4, 4.6, 4.6, 5.1, 4.9, 6.8, 4.7, 6, 5.2, 5, 6.8, 4.7, 7.3, 5.4, 4.5,
5.1, 6.2, 5.2, 6.3, 5.4, 5.7, 4.9, 4.8, 6.9, 7.3, 5.5, 5.5, 6.6, 5.6, 8.9, 4.7, 4.9, 4.8, 4.9,
4.8, 6.2, 4.4, 7.3, 4.2, 7, 6.9, 4.7, 5.6, 4.7, 8.1, 4.4, 5.1, 2.3, 3.2, 3.1, 2.5, 3.2, 1.8, 3.8,
2.3, 2, 1.9, 1.8, 2, 2.2, 2.8, 3.1, 2.5, 2.4, 2.3, 2.1, 2.3, 2.9, 2.6, 2, 2.9, 4.1, 2.4, 3.1, 3.1,
4.5, 2.9, 2.9, 2.9, 5.3, 4.5, 3, 2.5, 1.9, 3.5, 2.7, 14.2, 1.6, 3.7, 5.3, 2.3, 3.3, 1.7, 2.1, 2,
2.7, 3.6, 3.5, 2.7, 3.7, 6.8, 4.6, 4.3, 5.3, 6, 3.5, 6.3, 5, 4.2, 6, 4.1, 4.7, 4.1, 5.4, 6, 6.2,
5.5, 5.5, 3.7, 4.3, 3.4, 4.6, 3.9, 3.9, 3.9, 4, 6.4, 4.4, 4.2, 5.8, 4.2, 3.5, 4.9, 6.4, 4.2, 5.5,
4.5, 3.3, 5, 7, 7.4, 4.1, 4.8, 6.1, 4.1, 3.9, 5.9, 4.9, 3.5, 5.8, 4.7, 4.3, 7.6, 3, 4, 9.1, 4.6,
6.8, 4.4, 5.3, 7.3, 4.6, 4.2, 5.5, 4.2, 6.8, 4.5, 4.3, 3.2, 4.9, 4.8, 4.1, 7, 4.4, 3.7, 4.9, 4.7,
6, 5, 3.5, 3.7, 5.9, 3.9, 6.4, 3.6, 4.1, 4, 3.4, 5.8, 3.6, 7.1, 3.2, 7.7, 3.7, 4.3, 5.6, 4.3, 5.4,
5.6, 8.3, 2.7, 4, 7.5, 4.8, 5.2, 4.9, 6.3, 4.9, 5.2, 4.1, 3.7, 4.5, 5.7, 5.2, 3.1, 7.9, 3.6, 4.3,
8.8, 7.5, 4.9, 8, 6.5, 6.7, 3.6, 5.6, 9.7, 7.4, 5.5, 4.3, 3.3, 4.3, 7.7, 9.5, 4.3, 5.1, 5.5, 4.3,
6, 4, 6.5, 6.1, 4.5, 7.4, 6.1, 5.3, 7.1, 3.9, 6.5, 4.2, 5, 7.7, 5.4, 5.6, 7.3, 6.5, 10.4, 3.5,
4.5, 5.2, 5.2, 5, 7.2, 3.3, 6.4, 6.7, 5, 5.2, 5.1, 7.1, 7.3, 6.9, 7, 5.1, 7.3, 7.1, 6.1, 5.9, 4,
6.8, 6.6, 7.4, 7.2, 5.7, 6.2, 5.9, 6.7, 6.1, 5.9, 5.8, 5, 6, 4.3, 5.2, 5.9, 6.3, 5, 5.9, 5, 4.9,
5.4, 4.5, 5.9, 8, 6.8, 5.8, 5.6, 5.7, 6.5, 5.2, 5.7, 7.7, 8.2, 6.7, 4.8, 4.6, 7.2, 7.5, 7.3, 6.2,
6.7, 4.7, 5.3, 5.6, 6.7, 7.1, 8.5, 8.5, 5.7, 6.3, 8.1, 7.1, 8.3, 7.3, 5.8, 6.4, 4.8, 7, 5.1, 6.3,
6.9, 7, 7.2, 6.8, 6, 6.9, 4.7, 4.9, 5.9, 6.6, 5.1, 7.7, 6.8, 7.8, 6.7, 5.1, 7.5, 7, 5.4, 7.4, 5.4,
8, 5.9, 6.6, 5.6, 6.6, 6.2, 5.2, 5, 5.3, 4.8, 6.3, 5, 6.1, 5.6, 9.1, 5.2, 11.4, 8, 5.1, 5, 7.4,
4.5, 6.6, 8.4, 5.7, 7.1, 5.8, 6.8, 7.1, 4.9, 6.1, 7.7, 5.8, 6.6, 4.7, 5.8, 6.2, 5.4, 4.7, 5.8, 6,
5.6, 8.2, 4.5, 5.8, 8.6, 9.1, 4.8, 5.5, 11.3, 5.6, 5.4, 4.8, 5.3, 6.5, 6.5, 7.9, 5.2, 1.9, 2.3, 4,
2.4, 2.5, 2.4, 2.5, 9.8, 2.9, 2.5, 3, 2.9, 2.7, 2.6, 5.5, 3.1, 1.9, 3.6, 3.2, 14.1, 2.2, 2.1, 3.8,
2.5, 2.5, 2.6, 2.1, 2.4, 1.9, 3.2, 2.1, 2, 2, 2.8, 2.8, 2.4, 2.4, 2.1, 3, 2.9, 1.8, 5, 2.1, 3.6,
2.8, 2.7, 3.8, 2.4, 2.2, 3.6, 13.2, 2.6, 2.8, 2.3, 3.3, 2.5, 2.6, 2, 1.9, 6.8, 1.9, 2.4, 2.9, 4.3,
2.3, 5.6, 5.1, 5.3, 7.4, 6.6, 4.5, 4.7, 6.7, 4.9, 7.1, 5.9, 4, 5.7, 6.4, 6.4, 6, 4.9, 5.2, 5.9,
3.8, 7.3, 5.8, 4.4, 6.1, 5.3, 6, 5.7, 6.2, 4.3, 5.4, 5.8, 6.6, 5.3, 5, 8, 6.2, 6.2, 5.5, 6.5, 7,
6, 4.6, 7.7, 6.2, 7.3, 5.4, 4.9, 4.3, 7.3, 7.8, 5.9, 5.8, 4.4, 4.8, 5.8, 7.4, 4.5, 5.3, 6.7, 4.8,
4.2, 7.2, 5.5, 5.5, 4.2, 6.6, 7.5, 5.6, 6.2, 5.7, 5.8, 5.2, 7.5, 5.8, 4.4, 4, 7.4, 6.1, 4.2, 5.8,
4.6, 6.8, 5.5, 4.1, 5.9, 4.9, 6.9, 5.9, 5.8, 4.8, 5.1, 6.2, 7.3, 5.4, 3.7, 4, 4.8, 4.9, 6.6, 5.9,
4.5, 3.5, 5.7, 5.9, 4.6, 4.3, 4.1, 3.5, 8.5, 4.8, 4.1, 3.3, 3.4, 4.7, 5.4, 5.7, 3.9, 4.3, 4.8,
12.5, 4.8, 5.2, 3.8, 4.5, 5.5, 4.6, 7.6, 7.8, 3.5, 8.2, 3.5, 6.8, 5.5, 3.5, 4.5, 6, 3.9, 6.4, 3.8,
3.6, 5.3, 4.2, 4.6, 3.2, 4.2, 4.9, 5, 9.1, 6.7, 5.1, 4.1, 2.5, 4.2, 6, 3.5, 4.3, 3.7, 6, 5.7, 7.4,
5.3, 12.1, 5.7, 6.8, 5.2, 4.1, 5.4, 4.7, 4.6, 4.1, 4.1, 4.7, 5.5, 4.6, 5.7, 5.5, 7.2, 5.4, 3.7,
5.9, 3.8, 3.1, 4.3, 5.7, 4.6, 7.3, 4, 6.8, 7.6, 4, 6.4, 8.2, 5.3, 3.2, 4.2, 6.8, 5.8, 6.7, 2.1,
5.1, 3.7, 3.8, 5.3, 8.4, 4.8, 5.1, 5, 4.5, 5, 6.1, 7, 4.5, 6.7, 3.3, 5.2, 5.3, 8.8, 2.9, 7.6, 9.9,
11.3, 4.7, 6.2, 5.3, 4, 3.6, 5.4, 2.9, 3.9, 3.9, 3.6, 6.6, 7.9, 5.3, 5.4, 7.1, 4.6, 5.7, 4.7, 4.2,
7.3, 8.5, 6.2, 5.1, 5.5, 4.3, 4.4, 3.7, 4.5, 5.1, 4.4, 2.2, 4.8, 7.7, 4.8, 3.7, 7.6, 11.4, 4.8, 5,
4.6, 5.6, 4.6, 7.3, 5.1, 5.5, 3.2, 13.1, 3.9, 5.5, 4.6, 7.9, 5.1, 5.9, 5.4, 3.4, 7.5, 5.9, 7.5,
4.3, 2.8, 5.9, 7.1, 3.6, 11.9, 4.5, 3.2, 7.7, 5.3, 6.6, 6.1, 7.4, 4.9, 5.5, 3.9, 4.8, 6.4, 9.8,
9.6, 6.9, 7.8, 3.9, 5.9, 6.3, 4, 6.5, 3.4, 5.1, 5.1, 14.1, 5.9, 3.8, 4.9, 8.5, 4.7, 4.2, 4, 4.1,
5.5, 4, 7.2, 4.7, 3.4, 6.7, 8.2, 7.3, 5, 5.6, 6.7, 4.6, 5.7, 6.2, 6.4, 5.8, 5.6, 5.2, 5.4, 4.4,
4.6, 5.4, 13.3, 3.6, 4.2, 8.5, 5.1, 5.8, 5, 4.8, 11.2, 17.3, 6.1, 3.3, 3, 6.1, 3.4, 3.1, 8.6, 5.9,
5.3, 3.5, 4.6, 3.4, 2.8, 3.2, 2.8, 4.8, 2.2, 3.2, 7.3, 4, 4.2, 2.9, 3.9, 9.8, 3.1, 3, 3.5, 5.3,
3.7, 3.1, 4, 4.2, 2.7, 5.2, 3.2, 3.7, 3.7, 2.9, 4.5, 4, 3.1, 3.3, 3.1, 4.3, 3.6, 4.9, 4.3, 4.6,
4.7, 2.6, 3.6, 3.6, 4.1, 6.4, 3.5, 5.9, 10.9, 5.1, 4.5, 4.3, 5.9, 4.4, 5.2, 3.8, 3.3, 4.4, 3.8,
4.6, 10, 4.8, 4.7, 3.2, 3.4, 4.4, 3.4, 4.3, 3.4, 6.9, 3.6, 3.6, 5.2, 3.2, 5.1, 6.2, 3.5, 3.9, 5.4,
3, 4.4, 3.8, 4.2, 4.1, 3.7, 4.4, 6.9, 3.2, 3.7, 4.6, 3.1, 3.8, 5.6, 3.7, 4.5, 3.5, 3.3, 5, 4.4, 4,
3.9, 4.5, 4.5, 4.9, 3.6, 5.6, 4.9, 3.6, 10, 3.5, 3.3, 3.6, 4.3, 3.6, 6.5, 4.6, 3.6, 5.6, 3.8, 4.1,
4, 5.6, 5.9, 8.1, 3.9, 4.6, 4.2, 8.7, 7, 4, 2.9, 5.2, 5.1, 3.5, 4.4, 4.5, 5.8, 6.6, 6.4, 3.1, 2.7,
5.9, 4.7, 5.1, 5.7, 5.2, 6.5, 7.4, 5.5, 3.5, 3.5, 6.8, 5.1, 5.4, 7.2, 7.4, 3.6, 6.2, 6.7, 4.7,
4.4, 4, 3.9, 4.7, 4, 4.1, 5.9, 3.9, 4.8, 4.7, 6.5, 5.1, 7.6, 6.6, 5.9, 7.6, 6.6, 9.8, 6.5, 5.3,
6.6, 8.7, 6, 7.2, 3.9, 5.9, 5.8, 6.5, 8.1, 4.1, 8.3, 6.1, 7.7, 8.9, 6.5, 3.9, 6.7, 6.7, 4.3, 6.3,
7.9, 5.9, 8.4, 5.6, 6.3, 5.5, 7.3, 5.8, 4, 8.5, 6.9, 6.5, 4.8, 8.5, 9.1, 4.9, 6.8, 6.8, 6.1, 4.5,
4.1, 6.5, 5.3, 5.4, 5.9, 3.4, 5.2, 7.1, 7.4, 10, 13.1, 6, 7, 7, 6.7, 6, 11.7, 4.5, 4.5, 4.5, 8.5,
5.3, 3.5, 7.5, 5.1, 5.2, 4.6, 6.3, 5.3, 5.9, 8.5, 5.5, 5.2, 4.8, 8.1, 7, 6.3, 8.2, 8.1, 8.1, 5.7,
9.4, 5.6, 5.1, 3.9, 5.8, 3.6, 4.2, 4.9, 3.4, 3.6, 3.2, 3.3, 4.3, 2.8, 3.7, 3.4, 5.2, 3.8, 3.4,
5.5, 3.6, 6.2, 3.7, 3.1, 3.9, 3, 7, 3.7, 3.9, 4, 4.8, 3.1, 3.7, 2.9, 5.4, 4.3, 4.3, 3.4, 5.2, 4.7,
8.6, 5.5, 3.5, 3.9, 4.3, 3.5, 3.4, 3.2, 3.8, 3.8, 3.5, 3.8, 5.3, 3.4, 4.3, 4.5, 3.5, 3.1, 5.6,
3.9, 3.3, 3.5, 3.4, 3.1, 4.5, 4, 4.6, 3.4, 3.6, 3.7, 4.6, 3.7, 4.7, 3.3, 4.4, 6.8, 4.1, 6, 4, 6.6,
3.3, 4.3, 4.4, 4, 3.8, 6.8, 3.3, 3.7, 4.6, 4, 5.4, 5.7, 2, 5.3, 4.5, 4.9, 15.7, 14.5, 14.9, 14.5,
15.1, 13, 13.7, 18.7, 15, 14.1, 9.2, 12.9, 10.7, 12.8, 12.4, 8.8, 9.9, 11.2, 13.4, 16.9, 10.6,
19.5, 13.7, 12.6, 3.8, 8.5, 13.8, 15.4, 17.9, 17.3, 18.1, 6.3, 9.2, 14.1, 12.7, 14.2, 14.3, 12.5,
15.8, 13.4, 18.8, 17.8, 13.7, 14.7, 12.7, 15, 12.2, 13.7, 17.7, 14.5, 15.6, 14.3, 12.8, 13.6,
15.4, 20.6, 16.9, 13.8, 16.1, 13.3, 11.5, 16.5, 23.4, 15.4, 8.2, 13.2, 18.1, 20.6, 8.9, 9.1, 7.6,
15.3, 12, 14.3, 11.3, 19.6, 16.6, 18
];